• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H21-Nov-2020-319293

docs/H21-Nov-2020-1,6981,203

examples/H21-Nov-2020-203145

flask_mongoengine/H21-Nov-2020-1,6551,257

tests/H21-Nov-2020-1,202840

.gitignoreH A D21-Nov-2020173 2221

.pre-commit-config.yamlH A D21-Nov-2020478 2019

.travis.ymlH A D21-Nov-20201.7 KiB7462

AUTHORSH A D21-Nov-20201.4 KiB4538

CONTRIBUTING.rstH A D21-Nov-20202.9 KiB6751

LICENSEH A D21-Nov-20201.4 KiB3225

MANIFEST.inH A D21-Nov-2020249 1110

README.rstH A D21-Nov-20201.7 KiB5440

codecov.ymlH A D21-Nov-202015 21

pyproject.tomlH A D21-Nov-2020203 1817

setup.cfgH A D21-Nov-2020255 119

setup.pyH A D21-Nov-20202.5 KiB7862

tox.iniH A D21-Nov-2020247 1714

README.rst

1=================
2Flask-MongoEngine
3=================
4:Info: MongoEngine for Flask web applications.
5:Repository: https://github.com/MongoEngine/flask-mongoengine
6
7.. image:: https://travis-ci.org/MongoEngine/flask-mongoengine.svg?branch=master
8  :target: https://travis-ci.org/MongoEngine/flask-mongoengine
9
10.. image:: https://coveralls.io/repos/github/MongoEngine/flask-mongoengine/badge.svg?branch=master
11  :target: https://coveralls.io/github/MongoEngine/flask-mongoengine?branch=master
12
13About
14=====
15Flask-MongoEngine is a Flask extension that provides integration with MongoEngine. It handles connection management for your app.
16You can also use WTForms as model forms for your models.
17
18Documentation
19=============
20You can find the documentation at https://flask-mongoengine.readthedocs.io
21
22Installation
23============
24You can install this package using pypi: ``pip install flask-mongoengine``
25
26Tests
27=====
28To run the test suite, ensure you are running a local copy of Flask-MongoEngine
29and simply run: ``pytest``.
30
31To run the test suite on every supported versions of Python, PyPy and MongoEngine you can use ``tox``.
32Ensure tox and each supported Python, PyPy versions are installed in your environment:
33
34.. code-block:: shell
35
36    # Install tox
37    $ pip install tox
38    # Run the test suites
39    $ tox
40
41To run a single or selected test suits, use pytest `-k` option.
42
43Contributing
44============
45We welcome contributions! see  the `Contribution guidelines <https://github.com/MongoEngine/flask-mongoengine/blob/master/CONTRIBUTING.rst>`_
46
47Community
48=========
49- `#flask-mongoengine IRC channel <http://webchat.freenode.net/?channels=flask-mongoengine>`_
50
51License
52=======
53Flask-MongoEngine is distributed under MIT license, see LICENSE for more details.
54