معرفی شرکت ها


django-ripozo-1.1.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Integrates ripozo with django for fast, flexible Hypermedia, HATEOAS, and other REST apis
ویژگی مقدار
سیستم عامل -
نام فایل django-ripozo-1.1.0
نام django-ripozo
نسخه کتابخانه 1.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Tim Martin
ایمیل نویسنده tim.martin@vertical-knowledge.com
آدرس صفحه اصلی http://django-ripozo.readthedocs.org/
آدرس اینترنتی https://pypi.org/project/django-ripozo/
مجوز UNKNOWN
django-ripozo ============= .. image:: https://travis-ci.org/vertical-knowledge/django-ripozo.svg?branch=master&style=flat :target: https://travis-ci.org/vertical-knowledge/django-ripozo :alt: test status .. image:: https://coveralls.io/repos/vertical-knowledge/django-ripozo/badge.svg?branch=master&style=flat :target: https://coveralls.io/r/vertical-knowledge/django-ripozo?branch=master :alt: test coverage .. image:: https://readthedocs.org/projects/django-ripozo/badge/?version=latest&style=flat :target: https://django-ripozo.readthedocs.org/ :alt: documentation status Integrates ripozo with django for fast, flexible Hypermedia, HATEOAS, and other REST apis. `Full django-ripozo documentation <http://django-ripozo.readthedocs.org/>`_ Looking for the `ripozo documentation? <http://ripozo.readthedocs.org/>`_ Supports Django 1.6, 1.7, and 1.8. python 2.6, 2.7, 3.3, 3.4, pypy NOTE ---- Currently there are `compatibility issues <https://code.djangoproject.com/ticket/23763>`_ with Django 1.6, 1.7 and python 3.5. There is currently a fix in progress. However, two of our test environments will fail until the fix is deployed. All tests pass otherwise. Minimal App ----------- You'll need to instantiate the django project in the standard manner. If you aren't sure how to do this, check out the excellent `django documentation. <https://docs.djangoproject.com/en/1.8/intro/tutorial01/>`_ In your app you'll need a resources.py file. .. code-block:: python from ripozo import ResourceBase, apimethod class MyResource(ResourceBase): @apimethod(methods=['GET']) def say_hello(cls, request): return cls(properties=dict(hello='world')) And in your urls.py file .. code-block:: python from ripozo.adapters import SirenAdapter, HalAdapter from .resources import MyResource dispatcher = DjangoDispatcher() dispatcher.register_resources(MyResource) dispatcher.register_adapters(SirenAdapter, HalAdapter) urlpatterns = dispatcher.url_patterns And just like that you have a fully functional application. Looking for a more extensive example? Check out an `example <http://django-ripozo.readthedocs.org/en/latest/tutorial/setup.html>`_ with database interactions as well.


نحوه نصب


نصب پکیج whl django-ripozo-1.1.0:

    pip install django-ripozo-1.1.0.whl


نصب پکیج tar.gz django-ripozo-1.1.0:

    pip install django-ripozo-1.1.0.tar.gz