{ "info": { "author": "Flask-Admin team", "author_email": "serge.koval+github@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Flask-Admin\n===========\n\nThe project was recently moved into its own organization. Please update your\nreferences to *git@github.com:flask-admin/flask-admin.git*.\n\n.. image:: https://d322cqt584bo4o.cloudfront.net/flask-admin/localized.svg\n\t:target: https://crowdin.com/project/flask-admin\n\n.. image:: https://travis-ci.org/flask-admin/flask-admin.svg?branch=master\n\t:target: https://travis-ci.org/flask-admin/flask-admin\n\nIntroduction\n------------\n\nFlask-Admin is a batteries-included, simple-to-use `Flask `_ extension that lets you\nadd admin interfaces to Flask applications. It is inspired by the *django-admin* package, but implemented in such\na way that the developer has total control of the look, feel and functionality of the resulting application.\n\nOut-of-the-box, Flask-Admin plays nicely with various ORM's, including\n\n- `SQLAlchemy `_,\n\n- `MongoEngine `_,\n\n- `pymongo `_ and\n\n- `Peewee `_.\n\nIt also boasts a simple file management interface and a `redis client `_ console.\n\nThe biggest feature of Flask-Admin is flexibility. It aims to provide a set of simple tools that can be used for\nbuilding admin interfaces of any complexity. So, to start off with you can create a very simple application in no time,\nwith auto-generated CRUD-views for each of your models. But then you can go further and customize those views & forms\nas the need arises.\n\nFlask-Admin is an active project, well-tested and production ready.\n\nExamples\n--------\nSeveral usage examples are included in the */examples* folder. Please add your own, or improve\non the existing examples, and submit a *pull-request*.\n\nTo run the examples in your local environment::\n\n 1. Clone the repository::\n\n git clone https://github.com/flask-admin/flask-admin.git\n cd flask-admin\n\n 2. Create and activate a virtual environment::\n\n virtualenv env -p python3\n source env/bin/activate\n\n 3. Install requirements::\n\n pip install -r 'examples/sqla/requirements.txt'\n\n 4. Run the application::\n\n python examples/sqla/app.py\n\nDocumentation\n-------------\nFlask-Admin is extensively documented, you can find all of the documentation at `https://flask-admin.readthedocs.io/en/latest/ `_.\n\nThe docs are auto-generated from the *.rst* files in the */doc* folder. So if you come across any errors, or\nif you think of anything else that should be included, then please make the changes and submit them as a *pull-request*.\n\nTo build the docs in your local environment, from the project directory::\n\n tox -e docs-html\n\nAnd if you want to preview any *.rst* snippets that you may want to contribute, go to `http://rst.ninjs.org/ `_.\n\nInstallation\n------------\nTo install Flask-Admin, simply::\n\n pip install flask-admin\n\nOr alternatively, you can download the repository and install manually by doing::\n\n git clone git@github.com:flask-admin/flask-admin.git\n cd flask-admin\n python setup.py install\n\nTests\n-----\nTest are run with *nose*. If you are not familiar with this package you can get some more info from `their website `_.\n\nTo run the tests, from the project directory, simply::\n\n pip install -r requirements-dev.txt\n nosetests\n\nYou should see output similar to::\n\n .............................................\n ----------------------------------------------------------------------\n Ran 102 tests in 13.132s\n\n OK\n\nFor all the tests to pass successfully, you'll need Postgres & MongoDB to be running locally. For Postgres::\n\n > psql postgres\n CREATE DATABASE flask_admin_test;\n \\q\n\n > psql flask_admin_test\n CREATE EXTENSION postgis;\n CREATE EXTENSION hstore;\n\nYou can also run the tests on multiple environments using *tox*.\n\n3rd Party Stuff\n---------------\n\nFlask-Admin is built with the help of `Bootstrap `_, `Select2 `_\nand `Bootswatch `_.\n\nIf you want to localize your application, install the `Flask-BabelEx `_ package.\n\nYou can help improve Flask-Admin's translations through Crowdin: https://crowdin.com/project/flask-admin\n\n\nChangelog\n=========\n\n1.5.3\n-----\n\n* Fixed XSS vulnerability\n* Support nested categories in the navbar menu\n* SQLAlchemy\n * sort on multiple columns with `column_default_sort`\n * sort on related models in `column_sortable_list`\n * fix: inline model forms can now also be used for models with multiple primary keys\n * support for using mapped `column_property`\n* Upgrade Leaflet and Leaflet.draw plugins, used for geoalchemy integration\n* Specify `minimum_input_length` for ajax widget\n* Peewee: support composite keys\n* MongoEngine: when searching/filtering the input is now regarded as case-insensitive by default\n* FileAdmin\n * handle special characters in filename\n * fix a bug with listing directories on Windows\n * avoid raising an exception when unknown sort parameter is encountered\n* WTForms 3 support\n\n1.5.2\n-----\n\n* Fixed XSS vulnerability\n* Fixed Peewee support\n* Added detail view column formatters\n* Updated Flask-Login example to work with the newer version of the library\n* Various SQLAlchemy-related fixes\n* Various Windows related fixes for the file admin\n\n1.5.1\n-----\n\n* Dropped Python 2.6 support\n* Fixed SQLAlchemy >= 1.2 compatibility\n* Fixed Pewee 3.0 compatibility\n* Fixed max year for a combo date inline editor\n* Lots of small bug fixes\n\n1.5.0\n-----\n\n* Fixed CSRF generation logic for multi-process deployments\n* Added WTForms >= 3.0 support\n* Flask-Admin would not recursively save inline models, allowing arbitrary nesting\n* Added configuration properties that allow injection of additional CSS and JS dependencies into templates without overriding them\n* SQLAlchemy backend\n - Updated hybrid property detection using new SQLAlchemy APIs\n - Added support for association proxies\n - Added support for remote hybrid properties filters\n - Added support for ARRAY column type\n* Localization-related fixes\n* MongoEngine backend is now properly formats model labels\n* Improved Google App Engine support:\n - Added TextProperty, KeyProperty and SelectField support\n - Added support for form_args, excluded_columns, page_size and after_model_update\n* Fixed URL generation with localized named filters\n* FileAdmin has Bootstrap 2 support now\n* Geoalchemy fixes\n - Use Google Places (by default) for place search\n* Updated translations\n* Bug fixes\n\n1.4.2\n-----\n* Small bug fix release. Fixes regression that prevented usage of \"virtual\" columns with a custom formatter.\n\n1.4.1\n-----\n\n* Official Python 3.5 support\n* Customizable row actions\n* Tablib support (exporting to XLS, XLSX, CSV, etc)\n* Updated external dependencies (jQuery, x-editable, etc)\n* Added settings that allows exceptions to be raised on view errors\n* Bug fixes\n\n1.4.0\n-----\n\n* Updated and reworked documentation\n* FileAdmin went through minor refactoring and now supports remote file systems. Comes with the new, optional, AWS S3 file management interface\n* Configurable CSV export for model views\n* Added overridable URL generation logic. Allows using custom URLs with parameters for administrative views\n* Added column_display_actions to ModelView control visibility of the action column without overriding the template\n* Added support for the latest MongoEngine\n* New SecureForm base class for easier CSRF validation\n* Lots of translation-related fixes and updated translations\n* Bug fixes\n\n1.3.0\n-----\n\n* New feature: Edit models in the list view in a popup\n* New feature: Read-only model details view\n* Fixed XSS in column_editable_list values\n* Improved navigation consistency in model create and edit views\n* Ability to choose page size in model list view\n* Updated client-side dependencies (jQuery, Select2, etc)\n* Updated documentation and examples\n* Updated translations\n* Bug fixes\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/flask-admin/flask-admin/", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "oy-libs-Flask-Admin", "package_url": "https://pypi.org/project/oy-libs-Flask-Admin/", "platform": "any", "project_url": "https://pypi.org/project/oy-libs-Flask-Admin/", "project_urls": { "Homepage": "https://github.com/flask-admin/flask-admin/" }, "release_url": "https://pypi.org/project/oy-libs-Flask-Admin/1.5.3/", "requires_dist": [ "Flask (>=0.7)", "wtforms", "boto ; extra == 'aws'", "azure-storage-blob ; extra == 'azure'" ], "requires_python": "", "summary": "Simple and extensible admin interface framework for Flask", "version": "1.5.3" }, "last_serial": 4810412, "releases": { "1.5.3": [ { "comment_text": "", "digests": { "md5": "932552c29a6e4ef4c46d7bb23f237c04", "sha256": "6fc30b397b4ccaf007cb92dae5d5d9ef3800381ac1ec86fd49948c86883fb338" }, "downloads": -1, "filename": "oy_libs_Flask_Admin-1.5.3-py3-none-any.whl", "has_sig": false, "md5_digest": "932552c29a6e4ef4c46d7bb23f237c04", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1857236, "upload_time": "2019-02-12T11:49:14", "url": "https://files.pythonhosted.org/packages/2c/db/f84fe1d68305321e23812ca36923e6aed097c716f0b3b2e9e0076dc384ec/oy_libs_Flask_Admin-1.5.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "939692b3b95618d98097267332bf8ade", "sha256": "9869159f6578f258098c8493a659ee1bb505772762ef02d3cdfcf5fe50024565" }, "downloads": -1, "filename": "oy-libs-Flask-Admin-1.5.3.tar.gz", "has_sig": false, "md5_digest": "939692b3b95618d98097267332bf8ade", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1661172, "upload_time": "2019-02-12T12:02:44", "url": "https://files.pythonhosted.org/packages/bf/79/6eb964fabbd9e00961d51ea625b74430d64f0d96d4605392924ae9707ccb/oy-libs-Flask-Admin-1.5.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "932552c29a6e4ef4c46d7bb23f237c04", "sha256": "6fc30b397b4ccaf007cb92dae5d5d9ef3800381ac1ec86fd49948c86883fb338" }, "downloads": -1, "filename": "oy_libs_Flask_Admin-1.5.3-py3-none-any.whl", "has_sig": false, "md5_digest": "932552c29a6e4ef4c46d7bb23f237c04", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1857236, "upload_time": "2019-02-12T11:49:14", "url": "https://files.pythonhosted.org/packages/2c/db/f84fe1d68305321e23812ca36923e6aed097c716f0b3b2e9e0076dc384ec/oy_libs_Flask_Admin-1.5.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "939692b3b95618d98097267332bf8ade", "sha256": "9869159f6578f258098c8493a659ee1bb505772762ef02d3cdfcf5fe50024565" }, "downloads": -1, "filename": "oy-libs-Flask-Admin-1.5.3.tar.gz", "has_sig": false, "md5_digest": "939692b3b95618d98097267332bf8ade", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1661172, "upload_time": "2019-02-12T12:02:44", "url": "https://files.pythonhosted.org/packages/bf/79/6eb964fabbd9e00961d51ea625b74430d64f0d96d4605392924ae9707ccb/oy-libs-Flask-Admin-1.5.3.tar.gz" } ] }