معرفی شرکت ها


django-jsonresponse-0.9.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Simple wrap django views to render json
ویژگی مقدار
سیستم عامل -
نام فایل django-jsonresponse-0.9.0
نام django-jsonresponse
نسخه کتابخانه 0.9.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Yasha Borevich
ایمیل نویسنده j.borevich@gmail.com
آدرس صفحه اصلی http://github.com/jjay/django-jsonresponse
آدرس اینترنتی https://pypi.org/project/django-jsonresponse/
مجوز UNKNOWN
About ===== Wrap view functions, allowng them render python native and custom objects to json Usage ----- Simple wrap returning data into json .. code:: python from jsonresponse import to_json @to_json('plain') def hello(request): return dict(hello='world') :: GET /hello/ {"hello": "world"} Result can be wraped in some api manier. Note, you can pass debug=1 to pretty print response. Use ``JSONRESPONSE_DEFAULT_DEBUG=True`` to enable by default. .. code:: python @to_json('api') def goodbye(request): return dict(good='bye') :: GET /goodbye/?debug=1 { "data": { "good": "bye" }, "err": 0 } Automaticaly error handling, note response code is 500 here .. code:: python @to_json('api') def error(request): raise Exception('Wooot!??') :: GET /error/ { "err_class": "Exception", "err_desc": "Wooot!??", "data": null, "err": 1 } You can pass raise=1 to raise exceptions in debug purposes instead of passing info to json response :: GET /error/?raise=1 Traceback (most recent call last): Exception: Wooot!?? You can pass custom kwargs to json.dumps, just give them to constructor: .. code:: python @to_json('plain', separators=(',', ':')) def custom_kwargs(request): return ['a', { 'b': 1 }] :: GET / ["a",{"b":1}] You can serialize not only pure python data types. Implement ``serialize`` method on toplevel object or each element of toplevel array. Note, that request object is passed to serialize method. .. code:: python class User(object): def __init__(self, name, age): self.name = name self.age = age def serialize(self, request): if request.GET.get('with_age', False): return dict(name=self.name, age=self.age) else: return dict(name=self.name) @to_json('objects') def users(request): return [User('Bob', 10), User('Anna', 12)] :: GET /users/?with_age=1 { "data": [ { "age": 10, "name": "Bob" }, { "age": 12, "name": "Anna" } ], "err": 0 } It is easy to use jsonp, just pass format=jsonp :: GET /users/?format=jsonp callback({ "data": [ { "name": "Bob" }, { "name": "Anna" } ], "err": 0 }); You can override the name of callback method using ``JSONRESPONSE_CALLBACK_NAME`` option or query arg callback=another\_callback :: GET /users/?format=jsonp&callback=my_callback my_callback({ "data": [ { "name": "Bob" }, { "name": "Anna" } ], "err": 0 });


نحوه نصب


نصب پکیج whl django-jsonresponse-0.9.0:

    pip install django-jsonresponse-0.9.0.whl


نصب پکیج tar.gz django-jsonresponse-0.9.0:

    pip install django-jsonresponse-0.9.0.tar.gz