معرفی شرکت ها


django-orm-magic-0.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

An extension for IPython that help to define django's models in your interactive session.
ویژگی مقدار
سیستم عامل -
نام فایل django-orm-magic-0.4
نام django-orm-magic
نسخه کتابخانه 0.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Martin Gaitan
ایمیل نویسنده gaitan@gmail.com
آدرس صفحه اصلی https://github.com/mgaitan/django-orm-magic
آدرس اینترنتی https://pypi.org/project/django-orm-magic/
مجوز BSD
================= Django ORM Magic ================= .. image:: https://pypip.in/v/django-orm-magic/badge.png :target: https://pypi.python.org/pypi/django-orm-magic :alt: Latest PyPI version .. image:: https://pypip.in/d/django-orm-magic/badge.png :target: https://pypi.python.org/pypi/django-orm-magic :alt: Number of PyPI downloads :author: Martín Gaitán <gaitan@gmail.com> :homepage: https://github.com/mgaitan/django-orm-magic :documentation: see `this notebook`__ __ documentation_ .. _documentation: http://nbviewer.ipython.org/urls/raw.github.com/mgaitan/django-orm-magic/master/documentation.ipynb Define your django models in an IPython cell and use them on the fly. Let the magic do the boring part. Django ORM isn't conceived to be used standalone. Even for a trivial case, you need to configure a database, create an app, etc. This magic handle that automatically, and then import every model to your interactive session. Install ======= You can install or upgrade via pip pip install -U django-orm-magic or directly from the repository using the `%install_ext` magic command:: In[1]: %install_ext https://raw.github.com/mgaitan/django-orm-magic/master/django_orm_magic.py Basic usage =========== Once it's installed, you can load it with ``%load_ext django_orm_magic``. Then define your models in a cell started with the cell magic ``%%django_orm``. For example:: In[2]: %load_ext django_orm_magic In[3]: %%django_orm from django.db import models class Poll(models.Model): question = models.CharField(max_length=200) pub_date = models.DateTimeField('date published') class Choice(models.Model): poll = models.ForeignKey(Poll) choice_text = models.CharField(max_length=200) votes = models.IntegerField(default=0) And it's done. Every model is synced in a sqlite database named ``db.sqlite`` in your current path and imported automatically:: In[4]: Poll.objects.all() Out[4]: [] In[5]: from django.utils import timezone p = Poll(question="What's new?", pub_date=timezone.now()) p.save() See the documentation_ for further details. See here_ for another example .. _here: http://nbviewer.ipython.org/gist/mgaitan/7224431#modelando-resultados.gob.ar-en-una-base-de-datos Changelog ========= 0.3.1 / 2014-01-21 ------------------ - Fix bug `#4 <https://github.com/mgaitan/django-orm-magic/issues/4>`_ (now install via pip works) 0.3 / 2013-12-14 ---------------- - Added `%django_settings` magic - Added a tutorial notebook 0.2 / 2013-12-11 ----------------- - Moved the code to github. - Packaged and registered in PyPi 0.1 / 2013-10-29 ------------------- - First public release (as a gist_) .. _gist: https://gist.github.com/mgaitan/7207448


نحوه نصب


نصب پکیج whl django-orm-magic-0.4:

    pip install django-orm-magic-0.4.whl


نصب پکیج tar.gz django-orm-magic-0.4:

    pip install django-orm-magic-0.4.tar.gz