{
"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/run_server.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.4\n-----\n\n* Fix display of inline x-editable boolean fields on list view\n* Add support for several SQLAlchemy-Utils data types\n* Support searching on SQLAlchemy hybrid properties\n* Extra URL paramaters are now propagated to the next page when searching / filtering\n* Add enum34 dependency when running on legacy Python version\n* Update Mapbox API v1 URL format\n* Update jQuery and moment dependencies in templates\n* Fixed a datepicker issue, where only dates up to 2015 were showing up\n* Updated Pillow dependency version\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 * show searchable fields in search input's placeholder text\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",
"description_content_type": "",
"docs_url": "https://pythonhosted.org/Flask-Admin/",
"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": "Flask-Admin",
"package_url": "https://pypi.org/project/Flask-Admin/",
"platform": "any",
"project_url": "https://pypi.org/project/Flask-Admin/",
"project_urls": {
"Homepage": "https://github.com/flask-admin/flask-admin/"
},
"release_url": "https://pypi.org/project/Flask-Admin/1.5.4/",
"requires_dist": null,
"requires_python": "",
"summary": "Simple and extensible admin interface framework for Flask",
"version": "1.5.4"
},
"last_serial": 5986797,
"releases": {
"0.1": [
{
"comment_text": "",
"digests": {
"md5": "be26561d02e78a19d5bf8249f5a2e8fd",
"sha256": "7a363daaedd75f51fc222bea1d08ae435234ba4c6b94ca1aef7cc61c1a193794"
},
"downloads": -1,
"filename": "Flask-Admin-0.1.tar.gz",
"has_sig": false,
"md5_digest": "be26561d02e78a19d5bf8249f5a2e8fd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 268927,
"upload_time": "2011-07-11T03:20:11",
"url": "https://files.pythonhosted.org/packages/04/33/265a2e7cc17be4c44d5d60feee589ceb5a74be64f86861ec74aa542b3c24/Flask-Admin-0.1.tar.gz"
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "6dcaa380901ea146421a2cdc2b4ae900",
"sha256": "c70cb173ad84458e67db49956208623701149544e89641addcf1850b997db9f4"
},
"downloads": -1,
"filename": "Flask-Admin-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "6dcaa380901ea146421a2cdc2b4ae900",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 279484,
"upload_time": "2011-07-11T23:52:28",
"url": "https://files.pythonhosted.org/packages/7e/04/54de27926c0c065019234f34a074bc97bf28401b053ab2b5dab305b97687/Flask-Admin-0.1.1.tar.gz"
}
],
"0.1.2": [
{
"comment_text": "",
"digests": {
"md5": "a8ccb0adfc0843374e117fdf7d82b233",
"sha256": "3f4e36c90c284920a5ebfec8ef07a8811f012dab9d158d73cb7be27ca3bd5f93"
},
"downloads": -1,
"filename": "Flask-Admin-0.1.2.tar.gz",
"has_sig": false,
"md5_digest": "a8ccb0adfc0843374e117fdf7d82b233",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 279486,
"upload_time": "2011-07-11T23:55:18",
"url": "https://files.pythonhosted.org/packages/b1/13/df0d8b4378c44ee4f246f26451c9b8de0f5abd84094413fadee309e632a8/Flask-Admin-0.1.2.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "7266dd58e804c2ce2cc167e48ea8534c",
"sha256": "f8546b1aaad79c2a9280623902da1b0287b87bd391be6f259a819275bc6f1b35"
},
"downloads": -1,
"filename": "Flask-Admin-0.1.2.zip",
"has_sig": false,
"md5_digest": "7266dd58e804c2ce2cc167e48ea8534c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 234074,
"upload_time": "2011-09-16T07:38:32",
"url": "https://files.pythonhosted.org/packages/7a/c5/c96737eb2debcee84000cedb1fccab1c9de70ec2e2ccc963d5a7c1b40491/Flask-Admin-0.1.2.zip"
}
],
"0.1.3": [
{
"comment_text": "built for Linux-3.0-ARCH-x86_64-Intel-R-_Core-TM-2_Duo_CPU_T5270_@_1.40GHz-with-glibc2.2.5",
"digests": {
"md5": "b3c59078ae1842ed2363932b98d2ac75",
"sha256": "3816f61f514ebe6b6f2d8f52b48d9713291611b78ca5feec763a1543f8bfb755"
},
"downloads": -1,
"filename": "Flask-Admin-0.1.3.linux-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "b3c59078ae1842ed2363932b98d2ac75",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 201449,
"upload_time": "2011-09-16T07:47:54",
"url": "https://files.pythonhosted.org/packages/ef/58/32c6d4e308d30a8dcf00728d217c35a95a3df13a40bed6817d5505858893/Flask-Admin-0.1.3.linux-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "59cb88036f61d8110710db504b5f7acd",
"sha256": "c71a5d09690d81bb5cbfe87d1a892c41facc56eaf39094adaa67deb4d2c04736"
},
"downloads": -1,
"filename": "Flask_Admin-0.1.3-py2.7.egg",
"has_sig": false,
"md5_digest": "59cb88036f61d8110710db504b5f7acd",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 217256,
"upload_time": "2011-09-16T07:44:07",
"url": "https://files.pythonhosted.org/packages/99/ad/832c43905de63a42bc612272c3158c27883cf9e99e8226837657a90f161f/Flask_Admin-0.1.3-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "fcd98f16c317521a4790095e6824a535",
"sha256": "9064cc787a07d24f27ad3476b9620dce28acd6842ad898ce9dc5455ce02bec21"
},
"downloads": -1,
"filename": "Flask-Admin-0.1.3.tar.gz",
"has_sig": false,
"md5_digest": "fcd98f16c317521a4790095e6824a535",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 210245,
"upload_time": "2011-09-16T07:47:52",
"url": "https://files.pythonhosted.org/packages/b9/cb/cbcb3d28fc24a52c50e40d6f65e92e2c5b692b155ba4d66efbbab5da8587/Flask-Admin-0.1.3.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "e9039db67de0bc9cdd48fc1570b4df58",
"sha256": "877477efaef3d4ead9053d54a49529c492ff20b00d345d3d938cb9e14bba010b"
},
"downloads": -1,
"filename": "Flask-Admin-0.1.3.zip",
"has_sig": false,
"md5_digest": "e9039db67de0bc9cdd48fc1570b4df58",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 234075,
"upload_time": "2011-09-16T07:41:54",
"url": "https://files.pythonhosted.org/packages/e1/18/6af4a64b461db5d89e3c1820e0db6a8af228a17578a1060c13df07349a46/Flask-Admin-0.1.3.zip"
}
],
"0.1.4": [
{
"comment_text": "",
"digests": {
"md5": "2201492eb995577f8860afe0abc8db44",
"sha256": "657a7171d7748370f1154cee0f520fbc62369dcce37cbbe984fc7d28b8d36b16"
},
"downloads": -1,
"filename": "Flask-Admin-0.1.4.tar.gz",
"has_sig": false,
"md5_digest": "2201492eb995577f8860afe0abc8db44",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 210246,
"upload_time": "2011-09-16T07:52:51",
"url": "https://files.pythonhosted.org/packages/8d/44/c54c80b64fc9209c666f77d6d57ca48d4dc73f428260eabf82364b17fa30/Flask-Admin-0.1.4.tar.gz"
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "b5cfce620908d44bbbbd1f6efb08034e",
"sha256": "7f484a05df1d32fcb81a5820f8518c220273ab9b507c920073723b63a43f1b1a"
},
"downloads": -1,
"filename": "Flask-Admin-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "b5cfce620908d44bbbbd1f6efb08034e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20823,
"upload_time": "2011-10-15T06:33:24",
"url": "https://files.pythonhosted.org/packages/bc/b3/6b3bc7565dbdd469c1586776ac81ebb8345808cc89648eefa550d200b236/Flask-Admin-0.2.0.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "7b7b5c2c848624910e69b23bf6a0911d",
"sha256": "206ea8eb068ee87d796a967e1e6a6ed18ea46d0e45b88564efa90b858d9e8c36"
},
"downloads": -1,
"filename": "Flask-Admin-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "7b7b5c2c848624910e69b23bf6a0911d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 215168,
"upload_time": "2011-10-15T20:24:23",
"url": "https://files.pythonhosted.org/packages/ab/a7/991b841fe5717a733709b201f76ea35067b9ffd72affb5402a8ba4f284dd/Flask-Admin-0.2.1.tar.gz"
}
],
"0.2.2": [
{
"comment_text": "",
"digests": {
"md5": "64b0d75af493a989eeca6f2963877b6f",
"sha256": "ffee408b11ce0700d2489d8f8eec4f48e1dd7df59ba7de407603834079073224"
},
"downloads": -1,
"filename": "Flask-Admin-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "64b0d75af493a989eeca6f2963877b6f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 209612,
"upload_time": "2011-10-20T19:49:30",
"url": "https://files.pythonhosted.org/packages/f6/62/658e046e6a4a32c449f7ee8bd985ac717e100daed0e5f6b5f52b84087768/Flask-Admin-0.2.2.tar.gz"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "641c4caaa66aed3e15b67660d1e647d6",
"sha256": "ac82e70db901425a3543e2a37a5809864abc9e8f8253fdf932e2ef22fa708d5b"
},
"downloads": -1,
"filename": "Flask-Admin-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "641c4caaa66aed3e15b67660d1e647d6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 253305,
"upload_time": "2011-12-21T06:09:07",
"url": "https://files.pythonhosted.org/packages/53/16/33a2ef037d52302f1636b07a335e9591d79cc0b2fcdedd535b9d8f97b654/Flask-Admin-0.3.0.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "b3f7d60818c91e00ca3eb52b55ceb150",
"sha256": "179f2315148015bd7bc81c76909310de26866b80fd1ffa4c9ce4661ff668eade"
},
"downloads": -1,
"filename": "Flask-Admin-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "b3f7d60818c91e00ca3eb52b55ceb150",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 264761,
"upload_time": "2012-03-25T20:26:19",
"url": "https://files.pythonhosted.org/packages/57/c9/39350a3c3332fe8430fccdb91403554b200e0aa94cbafb670213a6ef9c3c/Flask-Admin-0.4.0.tar.gz"
}
],
"0.4.1": [
{
"comment_text": "",
"digests": {
"md5": "faa34ac882eea1c680cd381888604505",
"sha256": "347a4f5057990dd8daedcfbab16e464dfcdecec9f7347f5901bb2530a833fde2"
},
"downloads": -1,
"filename": "Flask-Admin-0.4.1.tar.gz",
"has_sig": false,
"md5_digest": "faa34ac882eea1c680cd381888604505",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 269698,
"upload_time": "2012-04-13T00:00:47",
"url": "https://files.pythonhosted.org/packages/11/1b/5d641870e2d57729f527af156c245ed73283f65a2bb6a05dc81fefac4098/Flask-Admin-0.4.1.tar.gz"
}
],
"0.4.2": [
{
"comment_text": "",
"digests": {
"md5": "62b79dc2efffca5309332562a2e1edb3",
"sha256": "836fa58fc63e0e257488061157ba3c3ba7fbb3262116c13e34d1a8de4320abe7"
},
"downloads": -1,
"filename": "Flask-Admin-0.4.2.zip",
"has_sig": false,
"md5_digest": "62b79dc2efffca5309332562a2e1edb3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 448038,
"upload_time": "2012-04-13T01:02:08",
"url": "https://files.pythonhosted.org/packages/97/a2/2c028f8e7fa9317591c9006380dbf328a8468120cc8a8d85b6f4f6168d28/Flask-Admin-0.4.2.zip"
}
],
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "5f3810750d587641cf5641a33c9b6076",
"sha256": "e2d39f85635d66a24bd859582cae3edb4cfc46e77ee1f381f3c2f03d8c5c5cb7"
},
"downloads": -1,
"filename": "Flask-Admin-1.0.0.zip",
"has_sig": false,
"md5_digest": "5f3810750d587641cf5641a33c9b6076",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 119316,
"upload_time": "2012-05-02T23:39:01",
"url": "https://files.pythonhosted.org/packages/e8/8c/732f9e564d49df1dbea12f41f66bbdd10645f7955a803a425d963a370eb9/Flask-Admin-1.0.0.zip"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "a11cc29015e83adfba0f3ddf46c610fc",
"sha256": "a1a8e362a5183adebfa6f5d341c4fab826596a68badbdc4deafe8d717b5ac63c"
},
"downloads": -1,
"filename": "Flask-Admin-1.0.1.zip",
"has_sig": false,
"md5_digest": "a11cc29015e83adfba0f3ddf46c610fc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 120121,
"upload_time": "2012-05-03T20:57:48",
"url": "https://files.pythonhosted.org/packages/a3/ab/c7b1faf6b40af7feab5f73f28143d756c4a782c88a7dc5f8e7bd35efcf15/Flask-Admin-1.0.1.zip"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "04d86274b508a5c45dbae4d764848623",
"sha256": "912a72bd442cffb7e9de071e93687a1c73e6b362fcc3e819b2a68cd4cbbf017a"
},
"downloads": -1,
"filename": "Flask-Admin-1.0.2.zip",
"has_sig": false,
"md5_digest": "04d86274b508a5c45dbae4d764848623",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 140115,
"upload_time": "2012-08-27T14:14:47",
"url": "https://files.pythonhosted.org/packages/65/b5/591ccfc8d148088363a0ed76aefc38e47b6c0eb8583ba533b71a4f162874/Flask-Admin-1.0.2.zip"
}
],
"1.0.3": [
{
"comment_text": "",
"digests": {
"md5": "1c9deef49f48ae55775aa267296b9913",
"sha256": "611f2e6504c2a794dcde6265e310cecb8258ef7334ca61952dbf809ab1cf6033"
},
"downloads": -1,
"filename": "Flask-Admin-1.0.3.tar.gz",
"has_sig": false,
"md5_digest": "1c9deef49f48ae55775aa267296b9913",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 154687,
"upload_time": "2012-11-05T14:14:12",
"url": "https://files.pythonhosted.org/packages/20/0a/a42e337ba4c64e253d4229b61400bb40af81faeecb5dfe9ab8608a90328a/Flask-Admin-1.0.3.tar.gz"
}
],
"1.0.4": [
{
"comment_text": "",
"digests": {
"md5": "ad917152da340b24ef41874aff7a0260",
"sha256": "e265fba32bd7704b2188d12012b9d293991e5258b29408f1b3cb022791313ca4"
},
"downloads": -1,
"filename": "Flask-Admin-1.0.4.tar.gz",
"has_sig": false,
"md5_digest": "ad917152da340b24ef41874aff7a0260",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 196746,
"upload_time": "2012-12-27T15:26:36",
"url": "https://files.pythonhosted.org/packages/4a/0e/e9021d9335de6f4af2d150249ac3ade81745c779d16184957c00f05f449e/Flask-Admin-1.0.4.tar.gz"
}
],
"1.0.5": [
{
"comment_text": "",
"digests": {
"md5": "0ab4f66ff7f693fa07c4a6ba9f75a147",
"sha256": "5fdbc85bec89eea12c1091e733774c83b57e5cd68d57fb6aef8a3fdbc0ffc5b8"
},
"downloads": -1,
"filename": "Flask-Admin-1.0.5.tar.gz",
"has_sig": false,
"md5_digest": "0ab4f66ff7f693fa07c4a6ba9f75a147",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 219719,
"upload_time": "2013-03-22T16:52:08",
"url": "https://files.pythonhosted.org/packages/a1/d2/a9b02baa4d41ab2a1c9b63d21d64c4a7ca7de5a4e5551f1c26687e1c7f35/Flask-Admin-1.0.5.tar.gz"
}
],
"1.0.6": [
{
"comment_text": "",
"digests": {
"md5": "a03fa42bba999323c655d85e49107bb2",
"sha256": "c16d1bb1b6c2b6ac8db8486b9a5e1919d1a073252e3fb0c0c226406470113a54"
},
"downloads": -1,
"filename": "Flask-Admin-1.0.6.tar.gz",
"has_sig": false,
"md5_digest": "a03fa42bba999323c655d85e49107bb2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 235842,
"upload_time": "2013-05-20T06:40:02",
"url": "https://files.pythonhosted.org/packages/5a/f3/ef9778416e5af35f2931862ed701c4dcd5edcf12f887debcb0315cb76107/Flask-Admin-1.0.6.tar.gz"
}
],
"1.0.7": [
{
"comment_text": "",
"digests": {
"md5": "37153580549e3f6eeb2ddd3bc66defc7",
"sha256": "41e8d1ffe3860213adb443f4b8e39b2a0436eec68ceb9b38103c9be524e13349"
},
"downloads": -1,
"filename": "Flask-Admin-1.0.7.tar.gz",
"has_sig": false,
"md5_digest": "37153580549e3f6eeb2ddd3bc66defc7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 330572,
"upload_time": "2014-01-19T19:32:47",
"url": "https://files.pythonhosted.org/packages/1b/6a/3f7f90b5411c91f7a236352c6744f29f1b82aaf63d64d9f737119479ed45/Flask-Admin-1.0.7.tar.gz"
}
],
"1.0.8": [
{
"comment_text": "",
"digests": {
"md5": "dd245b0d72ce1d78bb60533741871e75",
"sha256": "987e8468c0c6edb993cbcf44c25df9134748a5e554d1f631c0fdd13b8f91855a"
},
"downloads": -1,
"filename": "Flask-Admin-1.0.8.tar.gz",
"has_sig": false,
"md5_digest": "dd245b0d72ce1d78bb60533741871e75",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 342794,
"upload_time": "2014-04-21T07:30:31",
"url": "https://files.pythonhosted.org/packages/e1/81/7a4c2f00d6d1700ac372fb2ba66d9750b1db480afca1763bb4156de2b1c6/Flask-Admin-1.0.8.tar.gz"
}
],
"1.0.9": [
{
"comment_text": "",
"digests": {
"md5": "883b5126e81f8c066d11e3c7c3b5d404",
"sha256": "d1d3b9ca6af22eb23c35277a48fb84539ed0dac1406d375eb0740fcc6d74d676"
},
"downloads": -1,
"filename": "Flask-Admin-1.0.9.tar.gz",
"has_sig": false,
"md5_digest": "883b5126e81f8c066d11e3c7c3b5d404",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 675918,
"upload_time": "2014-12-09T00:59:36",
"url": "https://files.pythonhosted.org/packages/e4/ab/e2cd542a4fce2b305410cc54408c4523b24923a30bb9dd89d3e3fd2bd8b6/Flask-Admin-1.0.9.tar.gz"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "162fffcc3628a2c008a92390d1b06612",
"sha256": "28380393143a9b209e22c256494ba3ab1b6aea86f183962451896e26e75a8609"
},
"downloads": -1,
"filename": "Flask-Admin-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "162fffcc3628a2c008a92390d1b06612",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 735408,
"upload_time": "2015-03-02T15:53:06",
"url": "https://files.pythonhosted.org/packages/90/bb/24712f4c89582e179a49b0615d23a15f0ef171dd51ff4b1ef55cfb6acd3f/Flask-Admin-1.1.0.tar.gz"
}
],
"1.2.0": [
{
"comment_text": "",
"digests": {
"md5": "c5c0cb8db0e0ab0c3c951e4f93483426",
"sha256": "beb4b3edc25319e8848889ff2460f489cf85a457a46d1f1cbc09f332452d0260"
},
"downloads": -1,
"filename": "Flask-Admin-1.2.0.tar.gz",
"has_sig": false,
"md5_digest": "c5c0cb8db0e0ab0c3c951e4f93483426",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 790881,
"upload_time": "2015-06-13T23:29:14",
"url": "https://files.pythonhosted.org/packages/ec/b2/d40d4038e56bae3686a90baf86b03a74917ae014c4f573e51c6584f84cb0/Flask-Admin-1.2.0.tar.gz"
}
],
"1.3.0": [
{
"comment_text": "",
"digests": {
"md5": "b05d324814cffd8f93838b37768fdf35",
"sha256": "750d2e72670a6f0cac82fa4185998cd3fa4146dde3b647002ee03a65242248a6"
},
"downloads": -1,
"filename": "Flask-Admin-1.3.0.tar.gz",
"has_sig": false,
"md5_digest": "b05d324814cffd8f93838b37768fdf35",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 892104,
"upload_time": "2015-08-23T15:28:53",
"url": "https://files.pythonhosted.org/packages/2f/b1/6816176e11ab5a1b9a860aa538598e1558666542bcceb59ef5eecbc9607a/Flask-Admin-1.3.0.tar.gz"
}
],
"1.4.0": [
{
"comment_text": "",
"digests": {
"md5": "7b24933924f1de60c7dafc371bcbb6f4",
"sha256": "f2d58448985cf25d757be8e4764a46134a6d0a6ec7fcddc584050a6cc8732d6f"
},
"downloads": -1,
"filename": "Flask-Admin-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "7b24933924f1de60c7dafc371bcbb6f4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 868807,
"upload_time": "2016-01-02T04:57:37",
"url": "https://files.pythonhosted.org/packages/c6/ca/f31d4cc4112624c8af348f7e2b5e539acabbd7db002dcd3f8aa1f611397e/Flask-Admin-1.4.0.tar.gz"
}
],
"1.4.1": [
{
"comment_text": "",
"digests": {
"md5": "341b096c955c82ebd271566f1a6804ac",
"sha256": "88618750e08ceee1ab232a5a9ebcef31275db5db1c0b56db29e014c24c7067a4"
},
"downloads": -1,
"filename": "Flask-Admin-1.4.1.tar.gz",
"has_sig": false,
"md5_digest": "341b096c955c82ebd271566f1a6804ac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 922426,
"upload_time": "2016-06-13T15:47:42",
"url": "https://files.pythonhosted.org/packages/39/65/eb6238c40cd9ec20279969ef9ee7ac412fc7c9a6681965bcd58a63eeac2b/Flask-Admin-1.4.1.tar.gz"
}
],
"1.4.2": [
{
"comment_text": "",
"digests": {
"md5": "b12158ee16c92a447aa3da89e41eeae9",
"sha256": "7d1cfdcb29a7135d4275dc22628c0f068cccfdb84dadad885bde685d0511597c"
},
"downloads": -1,
"filename": "Flask-Admin-1.4.2.tar.gz",
"has_sig": false,
"md5_digest": "b12158ee16c92a447aa3da89e41eeae9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 922579,
"upload_time": "2016-06-14T18:00:11",
"url": "https://files.pythonhosted.org/packages/74/23/a411ce6bca79f30698fbe1d1a59c4789919bdb93fb5385bb24ea07ea7674/Flask-Admin-1.4.2.tar.gz"
}
],
"1.5.0": [
{
"comment_text": "",
"digests": {
"md5": "0b99f4b44c73b46bbd76119ed027b3b1",
"sha256": "fe3a96d99f22e293cd7e83d364de6cffd36573ef25db93d6e32102527a624bc5"
},
"downloads": -1,
"filename": "Flask-Admin-1.5.0.tar.gz",
"has_sig": false,
"md5_digest": "0b99f4b44c73b46bbd76119ed027b3b1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1598074,
"upload_time": "2017-03-12T14:25:50",
"url": "https://files.pythonhosted.org/packages/b5/90/664f46eb4187e9f5ab3dafa1a2043eb7772c01c7aaf5072b7e4ac6213533/Flask-Admin-1.5.0.tar.gz"
}
],
"1.5.1": [
{
"comment_text": "",
"digests": {
"md5": "c018e257fa72811075762315714af084",
"sha256": "e3a8268fdb6c271a44196de7f2a85faff886df18061d337e66b4b3c80e9c4f23"
},
"downloads": -1,
"filename": "Flask-Admin-1.5.1.tar.gz",
"has_sig": false,
"md5_digest": "c018e257fa72811075762315714af084",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1587527,
"upload_time": "2018-03-06T02:34:58",
"url": "https://files.pythonhosted.org/packages/c8/37/0b20d52de96b756f2a9cadedbb9f27e5e2338fd1d74b13de0e249e6e4125/Flask-Admin-1.5.1.tar.gz"
}
],
"1.5.2": [
{
"comment_text": "",
"digests": {
"md5": "0e42ca7da24017ca6c8d699d8dbec4ca",
"sha256": "752937f4af1f6600e5f4f08586c4790719a71146f163a091deba04706a48523b"
},
"downloads": -1,
"filename": "Flask-Admin-1.5.2.tar.gz",
"has_sig": false,
"md5_digest": "0e42ca7da24017ca6c8d699d8dbec4ca",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1588924,
"upload_time": "2018-08-27T05:16:19",
"url": "https://files.pythonhosted.org/packages/ef/2a/c3f081310e22443ee3bd69b09ee710d208285e4c4b44a5812fe2d8465a92/Flask-Admin-1.5.2.tar.gz"
}
],
"1.5.3": [
{
"comment_text": "",
"digests": {
"md5": "2269ccd0506193c4a36376472de4977c",
"sha256": "ca0be6ec11a6913b73f656c65c444ae5be416c57c75638dd3199376ce6bc7422"
},
"downloads": -1,
"filename": "Flask-Admin-1.5.3.tar.gz",
"has_sig": false,
"md5_digest": "2269ccd0506193c4a36376472de4977c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1673680,
"upload_time": "2018-12-20T01:12:20",
"url": "https://files.pythonhosted.org/packages/c3/bc/4cb71a88d8b0d478ed7f46e7bba632e988daae5ae07ce5413a31acbe8166/Flask-Admin-1.5.3.tar.gz"
}
],
"1.5.4": [
{
"comment_text": "",
"digests": {
"md5": "44d1c9579cd10436fef79cc7aebd81d0",
"sha256": "ed7b256471dba0f3af74f1a315733c3b36244592f2002c3bbdc65fd7c2aa807a"
},
"downloads": -1,
"filename": "Flask-Admin-1.5.4.tar.gz",
"has_sig": false,
"md5_digest": "44d1c9579cd10436fef79cc7aebd81d0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1676919,
"upload_time": "2019-10-16T23:06:46",
"url": "https://files.pythonhosted.org/packages/03/4e/a92e3c5cee3fce68fda877b437ed4657df3a0168091f6d2cab6c94d932e3/Flask-Admin-1.5.4.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "44d1c9579cd10436fef79cc7aebd81d0",
"sha256": "ed7b256471dba0f3af74f1a315733c3b36244592f2002c3bbdc65fd7c2aa807a"
},
"downloads": -1,
"filename": "Flask-Admin-1.5.4.tar.gz",
"has_sig": false,
"md5_digest": "44d1c9579cd10436fef79cc7aebd81d0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1676919,
"upload_time": "2019-10-16T23:06:46",
"url": "https://files.pythonhosted.org/packages/03/4e/a92e3c5cee3fce68fda877b437ed4657df3a0168091f6d2cab6c94d932e3/Flask-Admin-1.5.4.tar.gz"
}
]
}