Metadata-Version: 2.1
Name: drf-rbac-plus
Version: 1.1.1
Summary: rbac permission plus
Home-page: https://github.com/MangoodLuck/drf-rbac-plus.git
Author: Xiao Man
Author-email: cloudbye@163.com
Maintainer: Xiao Man
Maintainer-email: cloudbye@163.com
License: MIT
Platform: linux
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE.md

# Django RBAC plus

**tool**

---


# Requirements

- Python (3.5, 3.6, 3.7, 3.8)
- Django (2.1, 2.2, 3.0)

I **highly recommend** and only officially support the latest patch release of each Python and Django series.
# Installation
Install using pip...

```
pip install drf-rbac-plus
```

Add 'drf_rbac' to your INSTALLED_APPS setting.

```
INSTALLED_APPS = [
    ...
    'drf_rbac',
]
```
## Example

### RegexValidator

These validators can be used to customized regex, the value must be match the 'word'(r"^[a-zA-Z\u4e00-\u9fa5]+$")

```
    aa
```


