معرفی شرکت ها


django-web-exceptions-0.1.4


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Throwing web exceptions like in AioHTTP
ویژگی مقدار
سیستم عامل -
نام فایل django-web-exceptions-0.1.4
نام django-web-exceptions
نسخه کتابخانه 0.1.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Maks Skorokhod
ایمیل نویسنده samael500@gmail.com
آدرس صفحه اصلی https://github.com/samael500/web-exceptions
آدرس اینترنتی https://pypi.org/project/django-web-exceptions/
مجوز MIT
============================= Django Web Exceptions ============================= .. image:: https://badge.fury.io/py/django-web-exceptions.svg :target: https://badge.fury.io/py/django-web-exceptions .. image:: https://travis-ci.org/samael500/web-exceptions.svg?branch=master :target: https://travis-ci.org/samael500/web-exceptions .. image:: https://codecov.io/gh/samael500/web-exceptions/branch/master/graph/badge.svg :target: https://codecov.io/gh/samael500/web-exceptions .. image:: https://readthedocs.org/projects/web-exceptions/badge/?version=latest :target: http://web-exceptions.readthedocs.io/en/latest/readme.html :alt: Documentation Status Throwing web exceptions like in AioHTTP What and why? ------------- In AioHTTP_ you can raise any response as exception (this is very cool). But Django can raise only 3+1 web exceptions. - `400` `SuspiciousOperation <https://docs.djangoproject.com/en/1.11/ref/exceptions/#suspiciousoperation>`_ - `403` `PermissionDenied <https://docs.djangoproject.com/en/1.11/ref/exceptions/#permissiondenied>`_ - `404` `Http404 <https://docs.djangoproject.com/en/1.11/topics/http/views/#the-http404-exception>`_ - `500` Any other non catched exception This package allow you to raise as exception any of HTTP response. .. And configure any custome `handlerXXX` for that. Documentation ------------- The full documentation is at https://web-exceptions.readthedocs.io. Quickstart ---------- Install Django Web Exceptions:: pip install django-web-exceptions Add it to your `MIDDLEWARE`: .. code-block:: python # settings.py MIDDLEWARE = ( # ... 'web_exceptions.middleware.WebExceptionsMiddleware', # ... ) Features -------- Import exceptions and raise anywhere .. code-block:: python # views.py from web_exceptions import exceptions # ... def index(request): """ Simple view raise redirectexception """ raise exceptions.HTTPMovedPermanently('/foo') Also you can customize any kind of exception status code as custom handler, defined in `urls.py` like `django error handlers <https://docs.djangoproject.com/en/1.11/topics/http/views/#customizing-error-views>`_ . .. code-block:: python # urls.py from myapp import views handler300 = <callable view> handler400 = <callable view> handler<status_code> = <callable view> For more example see `example proj <https://github.com/samael500/web-exceptions/tree/master/example>`_ Running Tests ------------- Does the code actually work? :: source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox Credits ------- Tools used in rendering this package: * Cookiecutter_ * `cookiecutter-djangopackage`_ .. _Cookiecutter: https://github.com/audreyr/cookiecutter .. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage .. _AioHTTP: https://github.com/aio-libs/aiohttp


نحوه نصب


نصب پکیج whl django-web-exceptions-0.1.4:

    pip install django-web-exceptions-0.1.4.whl


نصب پکیج tar.gz django-web-exceptions-0.1.4:

    pip install django-web-exceptions-0.1.4.tar.gz