معرفی شرکت ها


django-rework-0.5.2


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Rapid develop framework base on Django
ویژگی مقدار
سیستم عامل -
نام فایل django-rework-0.5.2
نام django-rework
نسخه کتابخانه 0.5.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده rework union
ایمیل نویسنده josh.yu_8@live.com
آدرس صفحه اصلی https://github.com/rework-union/django-rework
آدرس اینترنتی https://pypi.org/project/django-rework/
مجوز MIT
# Django Rework [![Downloads](https://pepy.tech/badge/django-rework)](https://pepy.tech/project/django-rework) [![PyPI](https://img.shields.io/pypi/v/django-rework)](https://pypi.org/project/django-rework/) [![Python](https://img.shields.io/pypi/pyversions/django)](https://www.python.org) [![Django](https://img.shields.io/pypi/djversions/django-rework)](https://www.djangoproject.com) [![License](https://img.shields.io/pypi/l/django-rework)](https://opensource.org/licenses/MIT) Rapid develop framework base on Django, integrated with Django-Ninja. # _Installation_ & Cli commands ## Requirements - Python >= 3.8 - Django >= 3.2 - Django REST framework >=3.13,<4.0 ## Install django-rework ```bash pip install django-rework ``` ## Generic CLI Commands ### Start a new project ```bash # It will create project in current dir # eg: initialize a new project named `pony` rework init pony ``` ### Add build-in contrib Apps ```bash rework add users ``` ### Add deployment configurations ```bash rework deploy --init ``` ### Deploy to test or production ```bash rework deploy # or 'fab -H web1 deploy' ``` # _Core docs_ ## Custom exceptions The exception handler must also be configured in your settings, using the EXCEPTION_HANDLER setting key. For example: ```python REST_FRAMEWORK = { 'EXCEPTION_HANDLER': 'rework.core.views.exception_handler' } ``` Use build-in custom exceptions: ```python from rework.core.exceptions import ValidateError ValidateError( detail='You do not have permission to perform this action.', code='permission_denied', ) ``` 🥭 [Build-in custom exceptions](rework/core/exceptions.py) # _App docs_ | App | Description | docs in English | 简体中文文档 | | -------- | ----------- | --------------- | ----------- | | users | Users system | [users.md](docs/users.md) | [users_cn.md](docs/users_cn.md) | # _DevOps Fabric scripts_ ## Setup hosts `django-rework` deal with DevOps using `Fabric`. You should add hosts configurations in `fabfile.py`. ```python import os from rework.core.devops.hosts import loads # The first argument `default` is host alias # `user` is optional, default value is `root` # `envs` is the server support deploy environments # `exclude_components` is optional, it's been used in `fab setup_server` loads( 'default', { 'host': 'your-server-ip', 'port': 22, 'user': 'root', 'connect_kwargs': { 'password': 'server-password', }, 'envs': ['test', 'prod'], 'exclude_components': ['redis'], } ) # Using SSH key loads( 'web1', { 'host': 'your-server-ip', 'connect_kwargs': { 'key_filename': os.path.join(os.path.abspath('.'), '.deploy/private.pem'), }, } ) ``` You can change host alias as you like: `web1` etc. ```bash fab -H web1 deploy ``` if not `-H` provided, the default alias will use according the order below: 1. environment name: `dev`, `test`, `prod` 2. `default` ## Deploy environments By default, environments is `dev`, `test`, `prod`, every environment name is a generic fabric tasks. ```bash # deploy to `test` environment fab test deploy ``` If you want to update requirements, you should add arguments `-r` or `--requirements_update` ```bash fab test deploy -r ``` # _Code Format_ Code format using Google 的 `yapf`,recommend to install `yapf` globally: ```bash # install yapf using pip in python3 $ python3 -m pip install yapf # find and create soft link to `/usr/local/bin/yapf` # find yapf execute file $ which yapf # (/usr/local/python3.7/bin/yapf) possible location $ ln -s /usr/local/python3.7/bin/yapf /usr/local/bin/yapf ```


نیازمندی

مقدار نام
<5.0,>=3.2 Django
<4.0,>=3.13.0 django-cors-headers
<1.0,>=0.9.0 django-environ
<23,==22.1 django-filter
~=4.7 django-mysql
~=0.20 django-ninja
<4.0,>=3.13 djangorestframework
~=5.2 djangorestframework-simplejwt
<3.0,>=2.7.1 fabric
~=3.4 Markdown
~=2.1 mysqlclient
~=1.0.1 patchwork
~=9.0 Pillow
~=0.93 drf-nested-routers
~=1.21 drf-yasg
~=1.8 wechatpy


نحوه نصب


نصب پکیج whl django-rework-0.5.2:

    pip install django-rework-0.5.2.whl


نصب پکیج tar.gz django-rework-0.5.2:

    pip install django-rework-0.5.2.tar.gz