معرفی شرکت ها


django-shared-schema-tenants-0.1.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

A lib to help in the creation of shared schema multi tenants applications without suffering
ویژگی مقدار
سیستم عامل -
نام فایل django-shared-schema-tenants-0.1.0
نام django-shared-schema-tenants
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Hugo Bessa
ایمیل نویسنده hugo@bessa.me
آدرس صفحه اصلی https://github.com/hugobessa/django-shared-schema-tenants
آدرس اینترنتی https://pypi.org/project/django-shared-schema-tenants/
مجوز MIT
============================= Django Shared Schema Tenants ============================= .. image:: https://badge.fury.io/py/django-shared-schema-tenants.svg :target: https://badge.fury.io/py/django-shared-schema-tenants .. image:: https://travis-ci.org/hugobessa/django-shared-schema-tenants.svg?branch=master :target: https://travis-ci.org/hugobessa/django-shared-schema-tenants .. image:: https://codecov.io/gh/hugobessa/django-shared-schema-tenants/branch/master/graph/badge.svg :target: https://codecov.io/gh/hugobessa/django-shared-schema-tenants A lib to help in the creation applications with shared schema without suffering Documentation ------------- The full documentation is at https://django-shared-schema-tenants.readthedocs.io. Quickstart ---------- Install Django Shared Schema Tenants:: pip install django-shared-schema-tenants Add it to your `INSTALLED_APPS`: .. code-block:: python INSTALLED_APPS = ( ... 'shared_schema_tenants.apps.SharedSchemaTenantsConfig', ... ) Add Django Shared Schema Tenants's URL patterns: .. code-block:: python from shared_schema_tenants import urls as shared_schema_tenants_urls urlpatterns = [ ... url(r'^', include(shared_schema_tenants_urls)), ... ] Add TenantMiddleware to your `MIDDLEWARES`: .. code-block:: python MIDDLEWARES = [ # ... 'shared_schema_tenants.middleware.TenantMiddleware', # ... ] Features -------- * **Tenants synced with django requests:** The active tenant can be extracted from the domain of the request and from a specific http header attribute. * **Easy data isolation between tenants:** You retrieve and create data the same way you do without tenants. The active tenant can be retrieved from the request, and can also be forcedly set. * **Partially shared data:** If there is data that can be accessed from more then one tenant in your applidation, you don't need to duplicate it. 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 History ------- 0.1.0 (2017-08-10) ++++++++++++++++++ * First release on PyPI.


نحوه نصب


نصب پکیج whl django-shared-schema-tenants-0.1.0:

    pip install django-shared-schema-tenants-0.1.0.whl


نصب پکیج tar.gz django-shared-schema-tenants-0.1.0:

    pip install django-shared-schema-tenants-0.1.0.tar.gz