{ "info": { "author": "Kirill Klenov", "author_email": "horneds@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Natural Language :: Russian", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Testing", "Topic :: Utilities" ], "description": "The Flask-PW\n############\n\n.. _badges:\n\n.. .. image:: http://img.shields.io/travis/klen/falsk-pw.svg?style=flat-square\n .. :target: http://travis-ci.org/klen/falsk-pw\n .. :alt: Build Status\n\n.. .. image:: http://img.shields.io/pypi/v/flask-pw.svg?style=flat-square\n .. :target: https://pypi.python.org/pypi/flask-pw\n .. :alt: Version\n\n.. .. image:: http://img.shields.io/pypi/dm/flask-pw.svg?style=flat-square\n .. :target: https://pypi.python.org/pypi/flask-pw\n .. :alt: Downloads\n\n.. _description:\n\nThe Flask-PW -- Peewee_ ORM intergration for Flask_ framework.\n\nThe plugin configures DB connection and provides some tools such as migrations\nand signals. It also provides Peewee_ ORM support for Flask-Debugtoolbar_\n\n.. _contents:\n\n.. contents::\n\nRequirements\n=============\n\n- python 2.7+,3.4+\n\n.. _installation:\n\nInstallation\n=============\n\n**Flask-PW** should be installed using pip: ::\n\n pip install flask-pw\n\n.. _usage:\n\nUsage\n=====\n\nSettings\n--------\n\nFlask-PW settings (default values): ::\n\n # Connection URI\n PEEWEE_DATABASE_URI = 'sqlite:///peewee.sqlite'\n\n # Connection params (for example for pgsql: { encoding: 'utf-8' })\n PEEWEE_CONNECTION_PARAMS = {}\n\n # Path to directory which contains migrations\n PEEWEE_MIGRATE_DIR = 'migrations'\n\n # Name of database table with migrations\n PEEWEE_MIGRATE_TABLE = 'migratehistory'\n\n # Path to module which contains you applications' Models\n # Needed by automatic migrations\n PEEWEE_MODELS_MODULE = ''\n\n # Models which should be ignored in migrations\n PEEWEE_MODELS_IGNORE = []\n\n # Base models class\n # Use `db.Model` as your models' base class for automatically DB binding \n PEEWEE_MODELS_CLASS = \n\n # Don't connect to db when request starts and close when it ends automatically\n PEEWEE_MANUAL = False\n\n\nExample\n-------\n\n::\n\n import peewee as pw\n from flask import Flask\n\n from flask_pw import Peewee\n\n\n app = Flask(__name__)\n\n app.config['PEEWEE_DATABASE_URI'] = 'sqlite:///:memory:'\n\n db = Peewee(app)\n\n\n class User(db.Model):\n\n name = pw.CharField(255)\n title = pw.CharField(127, null=True)\n active = pw.BooleanField(default=True)\n rating = pw.IntegerField(default=0)\n\n\n @User.post_save.connect\n def update(user, created=False):\n if created:\n # Do something\n\n\nMigrations\n----------\n\nIf you use `Flask-Script` just add 'db' command to your manager: ::\n\n manager = Manager(create_app)\n manager.add_command('db', db.manager)\n\nAnd use `db create`, `db migrate` and `db rollback` commands.\n\nIf you use `Flask >= 0.11` connect the plugin's command to your CLI: ::\n\n pw = Peewee(app)\n app.cli.add_command(pw.cli, 'db')\n\n\n::\n\n if __name__ == '__main__':\n with app.app_context():\n app.cli()\n\n\n\nFlask-Debugtoolbar\n------------------\n\nJust add `flask_pw.debugtoolbar.PeeweeDebugPanel` to Flask-Debugtoolbar_ panels in your\napplication's configuration: ::\n\n DEBUG_TB_PANELS = [\n 'flask_debugtoolbar.panels.versions.VersionDebugPanel',\n 'flask_debugtoolbar.panels.timer.TimerDebugPanel',\n 'flask_debugtoolbar.panels.headers.HeaderDebugPanel',\n 'flask_debugtoolbar.panels.request_vars.RequestVarsDebugPanel',\n 'flask_debugtoolbar.panels.template.TemplateDebugPanel',\n 'flask_debugtoolbar.panels.sqlalchemy.SQLAlchemyDebugPanel',\n 'flask_debugtoolbar.panels.logger.LoggingPanel',\n 'flask_debugtoolbar.panels.profiler.ProfilerDebugPanel',\n\n # Add the Peewee panel\n 'flask_pw.flask_debugtoolbar.PeeweeDebugPanel',\n ]\n\nEnjoy!\n\n\n.. _bugtracker:\n\nBug tracker\n===========\n\nIf you have any suggestions, bug reports or\nannoyances please report them to the issue tracker\nat https://github.com/klen/flask-pw/issues\n\n.. _contributing:\n\nContributing\n============\n\nDevelopment of The Flask-pw happens at: https://github.com/klen/flask-pw\n\n\nContributors\n=============\n\n* `Kirill Klenov `_\n\n.. _license:\n\nLicense\n========\n\nLicensed under a MIT license (See LICENSE)\n\nIf you wish to express your appreciation for the project, you are welcome to\nsend a postcard to: ::\n\n Kirill Klenov\n pos. Severny 8-3\n MO, Istra, 143500\n Russia\n\n.. _links:\n\n.. _klen: https://github.com/klen\n.. _Flask: http://flask.pocoo.org/\n.. _Peewee: http://docs.peewee-orm.com/en/latest/\n.. _Flask-Debugtoolbar: https://flask-debugtoolbar.readthedocs.org/en/latest/\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/klen/flask-pw", "keywords": "flask,peewee,migrations,migrate,signals", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "Flask-PW", "package_url": "https://pypi.org/project/Flask-PW/", "platform": "Any", "project_url": "https://pypi.org/project/Flask-PW/", "project_urls": { "Homepage": "https://github.com/klen/flask-pw" }, "release_url": "https://pypi.org/project/Flask-PW/1.1.3/", "requires_dist": [ "Flask (>=0.11.1)", "peewee-migrate (>=0.9.3)" ], "requires_python": "", "summary": "Peewee ORM integration for Flask framework", "version": "1.1.3" }, "last_serial": 3280884, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "d0ba1ddc8090afd2dc2ceed9406853dd", "sha256": "72512a594f4ce70332aaf726981de38654bfd7499986d142b51da37a819ddf5b" }, "downloads": -1, "filename": "Flask_PW-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d0ba1ddc8090afd2dc2ceed9406853dd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7347, "upload_time": "2016-04-03T05:53:42", "url": "https://files.pythonhosted.org/packages/84/ee/e4473ec22b60c1d702c6a0c3ccf6b7f57b6ae185693e33e7b95d0662932c/Flask_PW-0.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d6fe3ddd8e498038f5d0ad7d90df822d", "sha256": "1384a3a2597120abeda2d9947d57da2dbe7935bd884b9d9bbf2be8f7647d13cc" }, "downloads": -1, "filename": "Flask-PW-0.0.1.tar.gz", "has_sig": false, "md5_digest": "d6fe3ddd8e498038f5d0ad7d90df822d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6117, "upload_time": "2016-04-03T05:53:47", "url": "https://files.pythonhosted.org/packages/8e/97/a77cc6c3fe8d5900628cb0a78a4819b8c11f35399485682c4a73cf3f67ed/Flask-PW-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "a786d9d3781a6f8a997a13122597c89b", "sha256": "bb6ce6398d6a74e0a66543b5e2bef4f39f6cee08944c0dc9f804c719787d839e" }, "downloads": -1, "filename": "Flask_PW-0.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a786d9d3781a6f8a997a13122597c89b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7412, "upload_time": "2016-04-06T23:15:17", "url": "https://files.pythonhosted.org/packages/5c/58/a2549120b0235638e78a99b5cd4f49e01aef18c12691b32cc65d7da07037/Flask_PW-0.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f52c2871e61a6d39a8e8c516da5f323e", "sha256": "b2e7d6381f79d417831f74cd4402a88798ceb63c97bc7a5cbeb7d10574f36ece" }, "downloads": -1, "filename": "Flask-PW-0.0.2.tar.gz", "has_sig": false, "md5_digest": "f52c2871e61a6d39a8e8c516da5f323e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6184, "upload_time": "2016-04-06T23:15:25", "url": "https://files.pythonhosted.org/packages/da/71/a64ba61cc8c95f4992571023ae303fa5aef56e40394deac2de248b56d14d/Flask-PW-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "1825ad5b29ad3fd310c8ae0526c715ea", "sha256": "8f1e584243cf5ecb1696a02411288e21411533744491a2a659d2999d7002bf57" }, "downloads": -1, "filename": "Flask_PW-0.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1825ad5b29ad3fd310c8ae0526c715ea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7414, "upload_time": "2016-04-06T23:17:47", "url": "https://files.pythonhosted.org/packages/94/30/6c093afd3929e8c230c9bec22911ed97971a54d6225a3e13d91182b95784/Flask_PW-0.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0c06e32af5a9349f5c6ba9a68d81fa6", "sha256": "b7a45d3c969acee24020d639831b40d5e2ac88fd827a3cf1bb57b9d9709a3d8f" }, "downloads": -1, "filename": "Flask-PW-0.0.3.tar.gz", "has_sig": false, "md5_digest": "f0c06e32af5a9349f5c6ba9a68d81fa6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6180, "upload_time": "2016-04-06T23:17:59", "url": "https://files.pythonhosted.org/packages/64/4b/215880692488ddebe3b36487ffea130f06d3bd8d901902db7abb4cc1a46d/Flask-PW-0.0.3.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "48ddf09f8798b9bfebf5be94389dfaa0", "sha256": "4ebacd93fe21d9e950570f09411ccd10c66e16a300e8b2b10886898752e2ad72" }, "downloads": -1, "filename": "Flask_PW-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48ddf09f8798b9bfebf5be94389dfaa0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9550, "upload_time": "2016-04-09T01:06:38", "url": "https://files.pythonhosted.org/packages/68/45/304c94bd017ae643d4eedccba6bd3892914d6a209560ecb4ae567fb1f96a/Flask_PW-0.1.1-py2.py3-none-any.whl" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "4dd0d7f94c146fb16510c54f0d5f73ff", "sha256": "e0a495b54e385940bf0f1378bf4785aa8f385e0a85d4e6937ab86fcce20dbf4b" }, "downloads": -1, "filename": "Flask_PW-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4dd0d7f94c146fb16510c54f0d5f73ff", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9558, "upload_time": "2016-04-09T01:39:44", "url": "https://files.pythonhosted.org/packages/4f/85/03860c93cfdb5f832a5dca5985d727a88c437015ad6cbb7f44ac637ca387/Flask_PW-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d89f3e2fbaa011f75eb01ddb87d6db3", "sha256": "c143a976199d2f800c8ba4da9d1e5fd4524ec042e7993d3caf30904f8a50dd7a" }, "downloads": -1, "filename": "Flask-PW-0.1.2.tar.gz", "has_sig": false, "md5_digest": "1d89f3e2fbaa011f75eb01ddb87d6db3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7538, "upload_time": "2016-04-09T01:39:55", "url": "https://files.pythonhosted.org/packages/ea/ff/5da1c4e0a9d3ac6c832eb5240b22d559a176d9e08c9a712434000f5add6c/Flask-PW-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "de1dd43accad968e0502aad81a2cb5f0", "sha256": "dde3f63355cde34e0a52f1a907bab0292ff41863901be274ab87d59fca1c946c" }, "downloads": -1, "filename": "Flask_PW-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "de1dd43accad968e0502aad81a2cb5f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9559, "upload_time": "2016-04-11T23:58:44", "url": "https://files.pythonhosted.org/packages/d2/d3/e697c037545f4865df1a42ea93f826804c173274bfa8bdac95fa12246f82/Flask_PW-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "070282804a25f682bf5a1919e02a69e9", "sha256": "4e0737174177444bb08498f8fd184175b3bbf18e06a9bda3fdada009288b5ba1" }, "downloads": -1, "filename": "Flask-PW-0.1.3.tar.gz", "has_sig": false, "md5_digest": "070282804a25f682bf5a1919e02a69e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7558, "upload_time": "2016-04-11T23:58:52", "url": "https://files.pythonhosted.org/packages/d4/a2/06ee9f8dca443f9fea4c2a23bd4731225a22facd47e4cb044b44c2228664/Flask-PW-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "c83e2833057b62fb223fe9708e11b155", "sha256": "67a07f72e82b15a5df2007720a943e4ba875e38114c600d6610a80763205972c" }, "downloads": -1, "filename": "Flask_PW-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c83e2833057b62fb223fe9708e11b155", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9557, "upload_time": "2016-04-12T00:29:23", "url": "https://files.pythonhosted.org/packages/40/f3/2342a2ac75edf6aa83ed405d43af01a42bb3260ef99a5f0a88369310f0d6/Flask_PW-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a5d813e4b94c1c3bb92e098a68d95a98", "sha256": "23aedc73e0f1f095b22bb5ac6a168443bb5b7b662e25569393458d95e7f52ea4" }, "downloads": -1, "filename": "Flask-PW-0.1.4.tar.gz", "has_sig": false, "md5_digest": "a5d813e4b94c1c3bb92e098a68d95a98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7555, "upload_time": "2016-04-12T00:29:29", "url": "https://files.pythonhosted.org/packages/a9/5e/d0a79fe17d371534babb80fdab5bdccca31d7373980eb4c606390410506b/Flask-PW-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "5096bf2640aee4d96563ad99536c08e5", "sha256": "268234ddec90162426f5b5f8aeeef12b7fdf0ec6a2e725621249925a5c4e3631" }, "downloads": -1, "filename": "Flask_PW-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5096bf2640aee4d96563ad99536c08e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9612, "upload_time": "2016-04-20T19:16:57", "url": "https://files.pythonhosted.org/packages/de/a8/627dd20af9e49670fbad1404f2a48c59e73c43497167de64cafa177f349d/Flask_PW-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14488898d74f39052779db7f48ea41f5", "sha256": "3245824f41af2924ff4b39b5a94806f18c9c2c34a7b692dfde55aece15aac829" }, "downloads": -1, "filename": "Flask-PW-0.1.5.tar.gz", "has_sig": false, "md5_digest": "14488898d74f39052779db7f48ea41f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7592, "upload_time": "2016-04-20T19:17:15", "url": "https://files.pythonhosted.org/packages/e0/19/f4cbfc5c53d3da392d0ed130ff6839690bb485af72cf6619771ceebe456a/Flask-PW-0.1.5.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "e5401972fa6793a37ace157b8203a06d", "sha256": "271bdc1ebe76951e8d08d24e73e7756ba42a2da3cc66dbadf267e0266874532a" }, "downloads": -1, "filename": "Flask_PW-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e5401972fa6793a37ace157b8203a06d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9815, "upload_time": "2016-06-29T16:09:10", "url": "https://files.pythonhosted.org/packages/a9/d1/543992c25de834eaaf231264f77be46974f7abb81e740dd35eeda68a3438/Flask_PW-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "02b231a37f063ab5557c04f7a0a7b3d0", "sha256": "5e46e10fdf334bea0f204054123752f3a1bb7c79d557a3b23f8c9244d7b1f017" }, "downloads": -1, "filename": "Flask-PW-0.2.0.tar.gz", "has_sig": false, "md5_digest": "02b231a37f063ab5557c04f7a0a7b3d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7788, "upload_time": "2016-06-29T16:09:14", "url": "https://files.pythonhosted.org/packages/19/9d/b10ab235dda0b3df264b945928679466bb3010ee905ed1aede30fb300752/Flask-PW-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "df004258bd4634cd452f1c15f19ce6e8", "sha256": "ea1344d0cb0dcd6b21091f4ddc397624b3121593066f9564eb7662d7dddca871" }, "downloads": -1, "filename": "Flask_PW-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "df004258bd4634cd452f1c15f19ce6e8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9995, "upload_time": "2016-06-29T16:43:56", "url": "https://files.pythonhosted.org/packages/59/8a/af2540569a245480d58f9c4b1a3abaf01ff1a1109391af43ade07867e59d/Flask_PW-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "152ba1914d8a8fabd27c5c7e07184b84", "sha256": "a206389363bb611bdb1890581f4486a024dae425f1f1fec8a72cbae853e19f7a" }, "downloads": -1, "filename": "Flask-PW-0.2.1.tar.gz", "has_sig": false, "md5_digest": "152ba1914d8a8fabd27c5c7e07184b84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7901, "upload_time": "2016-06-29T16:44:01", "url": "https://files.pythonhosted.org/packages/b3/2a/a7b3070fa71aefd5dd7f16ef7ff623005dd644296942d43371aea4f29011/Flask-PW-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "bd1feb47dcea992c114530c8f76befde", "sha256": "3ab3ecc740dc4802bf4ce8d20e88fe2c4d885cab9ef52dfaae97519809e3835d" }, "downloads": -1, "filename": "Flask_PW-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bd1feb47dcea992c114530c8f76befde", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10006, "upload_time": "2016-06-29T16:47:02", "url": "https://files.pythonhosted.org/packages/43/3c/31de8211a7a31a16e3c01443b3e1013e0be5b90b1ae190ae01b949a1f154/Flask_PW-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0ec99805b84626c3be86ed9a0499194", "sha256": "6027480f87b66b702491dd6ece37d4dbf86e67c1b1990dbc2de51f8b2f152a52" }, "downloads": -1, "filename": "Flask-PW-0.2.2.tar.gz", "has_sig": false, "md5_digest": "d0ec99805b84626c3be86ed9a0499194", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7912, "upload_time": "2016-06-29T16:47:07", "url": "https://files.pythonhosted.org/packages/83/24/e8b9bd3c63f46d126e49cb0d07ededf2926d64cc81e29cf6f1054d6229b5/Flask-PW-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "3e565c95feeba0513241d06081769a0c", "sha256": "c14a2ee666bf04b53844f1eff7682ddc7e5aa2ff288879b2306754551509ae3b" }, "downloads": -1, "filename": "Flask_PW-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3e565c95feeba0513241d06081769a0c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10014, "upload_time": "2016-06-29T16:54:42", "url": "https://files.pythonhosted.org/packages/a2/b8/c10bd6cc62d539c7d1e12c90946d0632423519f3feb2922c415ceddb694c/Flask_PW-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8097b5094054961b9ea96171576a748", "sha256": "2a6216bfc3833d28d3e6dfc2f0de7bab4fc40e5cde4064003db8ec1ab6ad1cf4" }, "downloads": -1, "filename": "Flask-PW-0.2.3.tar.gz", "has_sig": false, "md5_digest": "f8097b5094054961b9ea96171576a748", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7922, "upload_time": "2016-06-29T16:54:46", "url": "https://files.pythonhosted.org/packages/03/2f/3539c2e0e7ac646392c801bb38e3e0c309e1253f712c9b0d16821dae1b56/Flask-PW-0.2.3.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "7817952a1d156988c4539c277a4eeb7b", "sha256": "d33eac6a55aca1b2c851075733b65dc52ab066a8108483c9c537835c37503d3c" }, "downloads": -1, "filename": "Flask_PW-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7817952a1d156988c4539c277a4eeb7b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10113, "upload_time": "2016-09-29T14:05:53", "url": "https://files.pythonhosted.org/packages/bc/07/90336310f6447b6574a05e6e75e7a6706c6666d108ae2f483118b84b5e1a/Flask_PW-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc37c5662f5fca14adfa9a705c72d982", "sha256": "92db1248cc54c851a133753aa9bb82b5ba7f2dd438a4f1602ebd5117900204bc" }, "downloads": -1, "filename": "Flask-PW-1.0.0.tar.gz", "has_sig": false, "md5_digest": "bc37c5662f5fca14adfa9a705c72d982", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7966, "upload_time": "2016-09-29T14:05:56", "url": "https://files.pythonhosted.org/packages/c2/b3/c72c5e17eabf71021401c58ece069f7085ae927f9e335f586c63b1f50439/Flask-PW-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "838ee1ac8892e3f1450d623d3e702255", "sha256": "7145710d4a30b3b3fc144c1a89bd57748a466b0c59d984ac45a8946bfcbbc40c" }, "downloads": -1, "filename": "Flask_PW-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "838ee1ac8892e3f1450d623d3e702255", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10140, "upload_time": "2017-02-21T11:38:21", "url": "https://files.pythonhosted.org/packages/b9/c6/b69e9f2586d88665bfdc51676eb19f3d47980453ff9cf843db3d947c8cbf/Flask_PW-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9586d73fb2454cd59abc63c1dc2d633d", "sha256": "9b93c58916b7e1f11100071aa54fa51dd34d55798a3673fe297d490a0fa66ac8" }, "downloads": -1, "filename": "Flask-PW-1.0.1.tar.gz", "has_sig": false, "md5_digest": "9586d73fb2454cd59abc63c1dc2d633d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7999, "upload_time": "2017-02-21T11:38:24", "url": "https://files.pythonhosted.org/packages/46/7f/6fc833400d202f71df6905f193a4b3d80d47d8ef7b914b4da5eeba6e059e/Flask-PW-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "13135636a42d7e2043488e7f11d954c7", "sha256": "933136d76bc69eccb14c15f870d2ca7e1a00d8f592ad590d349ecc4cb20a8b79" }, "downloads": -1, "filename": "Flask_PW-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "13135636a42d7e2043488e7f11d954c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10145, "upload_time": "2017-02-21T11:49:02", "url": "https://files.pythonhosted.org/packages/fb/16/ecaf14f920d97fcd2aadd57451a963b3dde42ca6f6e0e37dc738c79a221e/Flask_PW-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e3c348ff7ffbb46ad7a2765905bd2180", "sha256": "aaf07c2f61a37f6634fba03d6f94e2ff112532cd93da5e179252ad65bb1f2be4" }, "downloads": -1, "filename": "Flask-PW-1.0.2.tar.gz", "has_sig": false, "md5_digest": "e3c348ff7ffbb46ad7a2765905bd2180", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7995, "upload_time": "2017-02-21T11:49:04", "url": "https://files.pythonhosted.org/packages/50/f8/dc1caa3e858917af5c71afce2deaa9a113bef0f21de3b21ded1b580a0635/Flask-PW-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "b7a0a23dd4ebad5c89c05d2d38524e04", "sha256": "280ea000819e7a9b7689597e73367dfaa768614ec35ccb52bb25d19b5e48fc05" }, "downloads": -1, "filename": "Flask_PW-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b7a0a23dd4ebad5c89c05d2d38524e04", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10146, "upload_time": "2017-02-21T11:58:35", "url": "https://files.pythonhosted.org/packages/7e/5b/b29c4422d9f518680e8ca5662407d1af53a96b87d1abc4ba0996f2b70e46/Flask_PW-1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac5128046a0f74ca1d9c7b955f83c399", "sha256": "177333e90a29fadb6bbb8cec6266777353e0ca0e68285b6d088508c962809125" }, "downloads": -1, "filename": "Flask-PW-1.0.3.tar.gz", "has_sig": false, "md5_digest": "ac5128046a0f74ca1d9c7b955f83c399", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7998, "upload_time": "2017-02-21T11:58:36", "url": "https://files.pythonhosted.org/packages/2e/60/57dcd84df78e59905b991b0cbd148aaf98c39eb7d9e3e173d317678331bb/Flask-PW-1.0.3.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "9d2515b176106073695a59f7614f489e", "sha256": "292dfe43e48dbd2649c274b4914e1fbbe351c1a64f72ad3296de827d8c5d1324" }, "downloads": -1, "filename": "Flask_PW-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9d2515b176106073695a59f7614f489e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10496, "upload_time": "2017-10-24T09:55:54", "url": "https://files.pythonhosted.org/packages/03/46/3bc0ba4546fa4e527525e130e79dd7e67d4cc46a07fb6399c5417733a296/Flask_PW-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1925dec4bb44eb6826812bdf9212201e", "sha256": "aa26ecc2185d08be2ac459ac2326db93a9338d9f53dd962ab72642bb37c0126f" }, "downloads": -1, "filename": "Flask-PW-1.1.0.tar.gz", "has_sig": false, "md5_digest": "1925dec4bb44eb6826812bdf9212201e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8408, "upload_time": "2017-10-24T09:55:56", "url": "https://files.pythonhosted.org/packages/1f/0e/d6656598f79b9fc1c4544560de5da57fe0684d669d3f4ada0c463a116868/Flask-PW-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "1f34c2c7080de3447853fc8c12412863", "sha256": "0c29ee2f05676212af178b023434a88714c028b7bc7d9a02fbb09a937abb8d90" }, "downloads": -1, "filename": "Flask_PW-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1f34c2c7080de3447853fc8c12412863", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10499, "upload_time": "2017-10-24T15:12:52", "url": "https://files.pythonhosted.org/packages/37/65/e08670fa2423262ae09c76a2151938b7a3c22d7cc20d07eab9194b0f6021/Flask_PW-1.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d9ee9c77103b27167dd5ae095dc1aa97", "sha256": "67b3a1ade4c51b6e9fd941b1716b639d5fd26824e4b2ec46ee275686127b6b1e" }, "downloads": -1, "filename": "Flask-PW-1.1.1.tar.gz", "has_sig": false, "md5_digest": "d9ee9c77103b27167dd5ae095dc1aa97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8414, "upload_time": "2017-10-24T15:12:54", "url": "https://files.pythonhosted.org/packages/f2/9b/824f45fc2436cb562a20efdbaa7825cf09706d7e4178a2647b0074f49181/Flask-PW-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "56681f365cd2c49d35500bdd29c2c5d7", "sha256": "f52c041149ada1c517361fe9ca57b9ca987dedf7e2bbb821418a51384e7f9113" }, "downloads": -1, "filename": "Flask_PW-1.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "56681f365cd2c49d35500bdd29c2c5d7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10502, "upload_time": "2017-10-24T15:13:50", "url": "https://files.pythonhosted.org/packages/2c/16/9df3ee35869ac4b87aef9b5cf365d6a6aadbffb5a6de2ca65383ebd2cf72/Flask_PW-1.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5777a5233cc98f7c7b8eccdc5fc7ba74", "sha256": "e3ee83eb3a1b0d9fec945cad85057456db1b67104f8f09cc3fd41978bf165901" }, "downloads": -1, "filename": "Flask-PW-1.1.2.tar.gz", "has_sig": false, "md5_digest": "5777a5233cc98f7c7b8eccdc5fc7ba74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8415, "upload_time": "2017-10-24T15:13:51", "url": "https://files.pythonhosted.org/packages/12/2d/d3cf29c6b18f7e12add3cbe05b98ea4c84fce1c404325cfbea7d66120e5b/Flask-PW-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "c7d38bed4f18d768d8166452e8a0f8ad", "sha256": "89d7edc466957aebce65943e8896aafc29edb4903e0d0f9c8993b10b7a63665e" }, "downloads": -1, "filename": "Flask_PW-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c7d38bed4f18d768d8166452e8a0f8ad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10515, "upload_time": "2017-10-26T12:54:41", "url": "https://files.pythonhosted.org/packages/ae/08/c5ee0abf4ed209a19eb96aa7484dae7aa919b9bdc6ccf6e72431a050e5ee/Flask_PW-1.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c50c1cc648b3bbb8d43e80b0b2a1766d", "sha256": "146fb499d3b334d9e2537d89fc67b937deeb80644f3fe398327ed0989e1e02a3" }, "downloads": -1, "filename": "Flask-PW-1.1.3.tar.gz", "has_sig": false, "md5_digest": "c50c1cc648b3bbb8d43e80b0b2a1766d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8429, "upload_time": "2017-10-26T12:54:42", "url": "https://files.pythonhosted.org/packages/db/2f/a0b9c33438c24050d55835c0e126ad97a6a53d31abcbf7daad9f1b70b877/Flask-PW-1.1.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c7d38bed4f18d768d8166452e8a0f8ad", "sha256": "89d7edc466957aebce65943e8896aafc29edb4903e0d0f9c8993b10b7a63665e" }, "downloads": -1, "filename": "Flask_PW-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c7d38bed4f18d768d8166452e8a0f8ad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10515, "upload_time": "2017-10-26T12:54:41", "url": "https://files.pythonhosted.org/packages/ae/08/c5ee0abf4ed209a19eb96aa7484dae7aa919b9bdc6ccf6e72431a050e5ee/Flask_PW-1.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c50c1cc648b3bbb8d43e80b0b2a1766d", "sha256": "146fb499d3b334d9e2537d89fc67b937deeb80644f3fe398327ed0989e1e02a3" }, "downloads": -1, "filename": "Flask-PW-1.1.3.tar.gz", "has_sig": false, "md5_digest": "c50c1cc648b3bbb8d43e80b0b2a1766d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8429, "upload_time": "2017-10-26T12:54:42", "url": "https://files.pythonhosted.org/packages/db/2f/a0b9c33438c24050d55835c0e126ad97a6a53d31abcbf7daad9f1b70b877/Flask-PW-1.1.3.tar.gz" } ] }