flask-mongoengine2


Nameflask-mongoengine2 JSON
Version 2.0.0 PyPI version JSON
download
home_page
SummaryFlask extension that provides integration with MongoEngine.
upload_time2024-01-18 14:16:53
maintainer
docs_urlNone
author
requires_python>=3.8
licenseBSD 3-Clause License
keywords flask forms mongo pymongo mongoengine extension
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Flask-MongoEngine2

[![PyPI version](https://badge.fury.io/py/flask-mongoengine2.svg)](https://badge.fury.io/py/flask-mongoengine2)
[![CI Tests](https://github.com/ahmetelgun/flask-mongoengine2/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/ahmetelgun/flask-mongoengine2/actions/workflows/tests.yml)
[![Documentation Status](https://readthedocs.org/projects/flask-mongoengine2/badge/?version=latest)](http://docs.mongoengine.org/projects/flask-mongoengine2/en/latest/?badge=latest)
[![Maintainability](https://api.codeclimate.com/v1/badges/709e5854f7b76b27637c/maintainability)](https://codeclimate.com/github/ahmetelgun/flask-mongoengine2/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/709e5854f7b76b27637c/test_coverage)](https://codeclimate.com/github/ahmetelgun/flask-mongoengine2/test_coverage)
![PyPI - Downloads](https://img.shields.io/pypi/dm/flask-mongoengine2)

Flask-MongoEngine2 is a Flask extension that provides integration with [MongoEngine]
and [FlaskDebugToolbar].

## Installation

By default, Flask-MongoEngine2 will install integration only between [Flask] and
[MongoEngine]. Integration with [FlaskDebugToolbar] are optional and
should be selected as extra option, if required. This is done by users request, to
limit amount of external dependencies in different production setup environments.

All methods end extras described below are compatible between each other and can be
used together.

### Installation with MongoEngine only support

```bash
# For Flask >= 2.3.0
pip install flask-mongoengine2
```

### Installation with Flask Debug Toolbar support

Flask-mongoengine provide beautiful extension to [FlaskDebugToolbar] allowing to monitor
all database requests. To use this extension [FlaskDebugToolbar] itself required. If
you need to install flask-mongoengine2 with related support, use:

```bash
# With FlaskDebugToolbar dependencies
pip install flask-mongoengine2[toolbar]
```

## Flask configuration

Flask-mongoengine does not provide any configuration defaults. User is responsible
for setting up correct database settings, to exclude any possible misconfiguration
and data corruption.

There are several options to set connection. Please note, that all except
recommended are deprecated and may be removed in future versions, to lower code base
complexity and bugs. If you use any deprecated connection settings approach, you should
update your application configuration.

Please refer to [complete connection settings description] for more info.

## Usage and API documentation

Full project documentation available on [read the docs].

## Contributing and testing

We are welcome for contributors and testers! Check [Contribution guidelines].

## License

Flask-MongoEngine2 is distributed under [BSD 3-Clause License].

[MongoEngine]: https://github.com/MongoEngine/mongoengine

[FlaskDebugToolbar]: https://github.com/flask-debugtoolbar/flask-debugtoolbar

[read the docs]: https://flask-mongoengine2.readthedocs.io/en/latest/

[Flask]: https://github.com/pallets/flask

[BSD 3-Clause License]: LICENSE.md

[Contribution guidelines]: CONTRIBUTING.md

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "flask-mongoengine2",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Andrey Shpak <ashpak@ashpak.ru>",
    "keywords": "flask,forms,mongo,pymongo,mongoengine,extension",
    "author": "",
    "author_email": "Ross Lawley <ross.lawley@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/84/35/33e0313169955ed5255aa5e45dfcd3bbe4a573ac9905872f38d8ed3555ac/flask-mongoengine2-2.0.0.tar.gz",
    "platform": "any",
    "description": "# Flask-MongoEngine2\n\n[![PyPI version](https://badge.fury.io/py/flask-mongoengine2.svg)](https://badge.fury.io/py/flask-mongoengine2)\n[![CI Tests](https://github.com/ahmetelgun/flask-mongoengine2/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/ahmetelgun/flask-mongoengine2/actions/workflows/tests.yml)\n[![Documentation Status](https://readthedocs.org/projects/flask-mongoengine2/badge/?version=latest)](http://docs.mongoengine.org/projects/flask-mongoengine2/en/latest/?badge=latest)\n[![Maintainability](https://api.codeclimate.com/v1/badges/709e5854f7b76b27637c/maintainability)](https://codeclimate.com/github/ahmetelgun/flask-mongoengine2/maintainability)\n[![Test Coverage](https://api.codeclimate.com/v1/badges/709e5854f7b76b27637c/test_coverage)](https://codeclimate.com/github/ahmetelgun/flask-mongoengine2/test_coverage)\n![PyPI - Downloads](https://img.shields.io/pypi/dm/flask-mongoengine2)\n\nFlask-MongoEngine2 is a Flask extension that provides integration with [MongoEngine]\nand [FlaskDebugToolbar].\n\n## Installation\n\nBy default, Flask-MongoEngine2 will install integration only between [Flask] and\n[MongoEngine]. Integration with [FlaskDebugToolbar] are optional and\nshould be selected as extra option, if required. This is done by users request, to\nlimit amount of external dependencies in different production setup environments.\n\nAll methods end extras described below are compatible between each other and can be\nused together.\n\n### Installation with MongoEngine only support\n\n```bash\n# For Flask >= 2.3.0\npip install flask-mongoengine2\n```\n\n### Installation with Flask Debug Toolbar support\n\nFlask-mongoengine provide beautiful extension to [FlaskDebugToolbar] allowing to monitor\nall database requests. To use this extension [FlaskDebugToolbar] itself required. If\nyou need to install flask-mongoengine2 with related support, use:\n\n```bash\n# With FlaskDebugToolbar dependencies\npip install flask-mongoengine2[toolbar]\n```\n\n## Flask configuration\n\nFlask-mongoengine does not provide any configuration defaults. User is responsible\nfor setting up correct database settings, to exclude any possible misconfiguration\nand data corruption.\n\nThere are several options to set connection. Please note, that all except\nrecommended are deprecated and may be removed in future versions, to lower code base\ncomplexity and bugs. If you use any deprecated connection settings approach, you should\nupdate your application configuration.\n\nPlease refer to [complete connection settings description] for more info.\n\n## Usage and API documentation\n\nFull project documentation available on [read the docs].\n\n## Contributing and testing\n\nWe are welcome for contributors and testers! Check [Contribution guidelines].\n\n## License\n\nFlask-MongoEngine2 is distributed under [BSD 3-Clause License].\n\n[MongoEngine]: https://github.com/MongoEngine/mongoengine\n\n[FlaskDebugToolbar]: https://github.com/flask-debugtoolbar/flask-debugtoolbar\n\n[read the docs]: https://flask-mongoengine2.readthedocs.io/en/latest/\n\n[Flask]: https://github.com/pallets/flask\n\n[BSD 3-Clause License]: LICENSE.md\n\n[Contribution guidelines]: CONTRIBUTING.md\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License",
    "summary": "Flask extension that provides integration with MongoEngine.",
    "version": "2.0.0",
    "project_urls": {
        "Changelog": "https://github.com/ahmetelgun/flask-mongoengine2/releases",
        "Documentation": "https://flask-mongoengine2.readthedocs.io",
        "Homepage": "https://github.com/ahmetelgun/flask-mongoengine2",
        "Repository": "https://github.com/ahmetelgun/flask-mongoengine2"
    },
    "split_keywords": [
        "flask",
        "forms",
        "mongo",
        "pymongo",
        "mongoengine",
        "extension"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "315fe6a618c9abfa162bb56dacfca0b585cfb4e814a1b94c61f96999ce4f5b43",
                "md5": "8ecd43df7591f2e2fc3677203bceca25",
                "sha256": "775ba17276fdab264fc918f20611ebbf95832a5e9f74001ebf3f80a8372f516f"
            },
            "downloads": -1,
            "filename": "flask_mongoengine2-2.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8ecd43df7591f2e2fc3677203bceca25",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 17322,
            "upload_time": "2024-01-18T14:16:49",
            "upload_time_iso_8601": "2024-01-18T14:16:49.873801Z",
            "url": "https://files.pythonhosted.org/packages/31/5f/e6a618c9abfa162bb56dacfca0b585cfb4e814a1b94c61f96999ce4f5b43/flask_mongoengine2-2.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "843533e0313169955ed5255aa5e45dfcd3bbe4a573ac9905872f38d8ed3555ac",
                "md5": "35ae9e1aa3f58817fc934ab45ca92858",
                "sha256": "023c248351853857e2434583821615e28e4f6022beb41dc95458b0e1e933758a"
            },
            "downloads": -1,
            "filename": "flask-mongoengine2-2.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "35ae9e1aa3f58817fc934ab45ca92858",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 192941,
            "upload_time": "2024-01-18T14:16:53",
            "upload_time_iso_8601": "2024-01-18T14:16:53.083720Z",
            "url": "https://files.pythonhosted.org/packages/84/35/33e0313169955ed5255aa5e45dfcd3bbe4a573ac9905872f38d8ed3555ac/flask-mongoengine2-2.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-18 14:16:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ahmetelgun",
    "github_project": "flask-mongoengine2",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "flask-mongoengine2"
}
        
Elapsed time: 0.27170s