معرفی شرکت ها


casbin-django-orm-adapter-1.0.2


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Django's ORM adapter for PyCasbin
ویژگی مقدار
سیستم عامل -
نام فایل casbin-django-orm-adapter-1.0.2
نام casbin-django-orm-adapter
نسخه کتابخانه 1.0.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Yang Luo
ایمیل نویسنده hsluoyz@qq.com
آدرس صفحه اصلی https://github.com/pycasbin/django-orm-adapter
آدرس اینترنتی https://pypi.org/project/casbin-django-orm-adapter/
مجوز Apache 2.0
# Django ORM Adapter for PyCasbin [![Build Status](https://www.travis-ci.org/pycasbin/django-orm-adapter.svg?branch=master)](https://www.travis-ci.org/pycasbin/django-orm-adapter) [![Coverage Status](https://coveralls.io/repos/github/pycasbin/django-orm-adapter/badge.svg)](https://coveralls.io/github/pycasbin/django-orm-adapter) [![Version](https://img.shields.io/pypi/v/casbin-django-orm-adapter.svg)](https://pypi.org/project/casbin-django-orm-adapter/) [![PyPI - Wheel](https://img.shields.io/pypi/wheel/casbin-django-orm-adapter.svg)](https://pypi.org/project/casbin-django-orm-adapter/) [![Pyversions](https://img.shields.io/pypi/pyversions/casbin-django-orm-adapter.svg)](https://pypi.org/project/casbin-django-orm-adapter/) [![Download](https://img.shields.io/pypi/dm/casbin-django-orm-adapter.svg)](https://pypi.org/project/casbin-django-orm-adapter/) [![License](https://img.shields.io/pypi/l/casbin-django-orm-adapter.svg)](https://pypi.org/project/casbin-django-orm-adapter/) Django ORM Adapter is the [Django](https://www.djangoproject.com/)'s [ORM](https://docs.djangoproject.com/en/3.0/ref/databases/) adapter for [PyCasbin](https://github.com/pycasbin/django-orm-adapter). With this library, Casbin can load policy from Django ORM supported database or save policy to it. Based on [Officially Supported Databases](https://docs.djangoproject.com/en/3.0/ref/databases/), The current supported databases are: - PostgreSQL - MariaDB - MySQL - Oracle - SQLite - IBM DB2 - Microsoft SQL Server - Firebird - ODBC ## Installation ``` pip install casbin-django-orm-adapter ``` Add `casbin_adapter.apps.CasbinAdapterConfig` to your `INSTALLED_APPS` ```python # settings.py BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) INSTALLED_APPS = [ ... 'casbin_adapter.apps.CasbinAdapterConfig', ... ] CASBIN_MODEL = os.path.join(BASE_DIR, 'casbin.conf') ``` To run schema migration, execute `python manage.py migrate casbin_adapter` ## Simple Example ```python # views.py from casbin_adapter.enforcer import enforcer def hello(request): sub = "alice" # the user that wants to access a resource. obj = "data1" # the resource that is going to be accessed. act = "read" # the operation that the user performs on the resource. if e.enforce(sub, obj, act): # permit alice to read data1casbin_django_orm_adapter pass else: # deny the request, show an error pass ``` ## Configuration ### `CASBIN_MODEL` A string containing the file location of your casbin model. ### `CASBIN_LOG_ENABLED` If `True`, enables logging. `False` by default. ### `CASBIN_ADAPTER` A string containing the adapter import path. Defaults to the django adapter shipped with this package: `casbin_adapter.adapter.Adapter` ### `CASBIN_ADAPTER_ARGS` A tuple of arguments to be passed into the constructor of the adapter specified in `CASBIN_ADAPTER`. Refer to adapters to see available arguments. E.g. if you wish to use the file adapter set the adapter to `casbin.persist.adapters.FileAdapter` and use `CASBIN_ADAPTER_ARGS = ('path/to/policy_file.csv',)` ### `CASBIN_WATCHER` Watcher instance to be set as the watcher on the enforcer instance. ### `CASBIN_ROLE_MANAGER` Role manager instance to be set as the role manager on the enforcer instance. ### Getting Help - [PyCasbin](https://github.com/casbin/pycasbin) ### License This project is licensed under the [Apache 2.0 license](LICENSE).


نیازمندی

مقدار نام
- casbin
- django


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl casbin-django-orm-adapter-1.0.2:

    pip install casbin-django-orm-adapter-1.0.2.whl


نصب پکیج tar.gz casbin-django-orm-adapter-1.0.2:

    pip install casbin-django-orm-adapter-1.0.2.tar.gz