# Python : Pallets : Flask Addons
## Flask-Admin
\[ [pypi](https://pypi.org/project/Flask-Admin/) | [src](https://github.com/flask-admin/flask-admin/) | [docs](https://flask-admin.readthedocs.io/en/latest/) ]
Haven't tried it yet. Looks impressive, and has some recent activity, but is mostly dead.
## Flask-CORS
\[ [pypi](https://pypi.org/project/Flask-Cors/) | [src](https://github.com/corydolphin/flask-cors/) | [docs](https://flask-cors.readthedocs.io/en/latest/) ]
```python
from flask_cors import CORS
app = Flask( ... )
CORS( app )
```
## Flask-Login
\[ [pypi](https://pypi.org/project/Flask-Login/) | [src](https://github.com/maxcountryman/flask-login/) | [docs](https://flask-login.readthedocs.io/en/latest/) ]
Not bound to a particular DB or permissions model. The only integration points are a few methods on User and a
callback that can return a user by ID.
Haven't tried it yet.