{ "info": { "author": "Moesif, Inc", "author_email": "xing@moesif.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Internet :: Log Analysis", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Debuggers", "Topic :: Software Development :: Libraries" ], "description": "# Moesif Middleware for Python WSGI based Frameworks\n\n[![Built For][ico-built-for]][link-built-for]\n[![Latest Version][ico-version]][link-package]\n[![Language Versions][ico-language]][link-language]\n[![Software License][ico-license]][link-license]\n[![Source Code][ico-source]][link-source]\n\nWSGI middleware that logs _incoming_ or _outgoing_ API calls and sends to [Moesif](https://www.moesif.com) for API analytics and log analysis.\nSupports Python Frameworks built on WSGI such as Flask, Bottle, and Pyramid.\n\n[Source Code on GitHub](https://github.com/moesif/moesifwsgi)\n\n[WSGI (Web Server Gateway Interface)](https://wsgi.readthedocs.io/en/latest/)\nis a standard (PEP 3333) that describes\nhow a web server communicates with web applications. Many Python Frameworks\nare build on top of WSGI, such as [Flask](http://flask.pocoo.org/),\n[Bottle](https://bottlepy.org/docs/dev/), [Pyramid](https://trypyramid.com/) etc.\nMoesif WSGI Middleware help APIs that are build on top of these Frameworks to\neasily integrate with [Moesif](https://www.moesif.com).\n\n## How to install\n\n```shell\npip install moesifwsgi\n```\n\n## How to use\n\n### Flask\n\nWrap your wsgi_app with the Moesif middleware.\n\n```python\nfrom moesifwsgi import MoesifMiddleware\n\nmoesif_settings = {\n 'APPLICATION_ID': 'Your Moesif Application id',\n 'LOG_BODY': True,\n # ... For other options see below.\n}\n\napp.wsgi_app = MoesifMiddleware(app.wsgi_app, moesif_settings)\n\n```\n\nYour Moesif Application Id can be found in the [_Moesif Portal_](https://www.moesif.com/).\nAfter signing up for a Moesif account, your Moesif Application Id will be displayed during the onboarding steps. \n\nYou can always find your Moesif Application Id at any time by logging \ninto the [_Moesif Portal_](https://www.moesif.com/), click on the top right menu,\nand then clicking _Installation_.\n\nFor an example with Flask, see example in the `/examples/flask` folder of this repo.\n\n### Bottle\nWrap your bottle app with the Moesif middleware.\n\n```python\n\nfrom moesifwsgi import MoesifMiddleware\n\napp = bottle.Bottle()\n\nmoesif_settings = {\n 'APPLICATION_ID': 'Your Moesif Application Id',\n 'LOG_BODY': True,\n # ... For other options see below.\n}\n\nbottle.run(app=MoesifMiddleware(app, moesif_settings))\n\n```\n\nFor an example with Bottle, see example in the `/examples/bottle` folder of this repo.\n\n### Pyramid\n\n\n```python\nfrom pyramid.config import Configurator\nfrom moesifwsgi import MoesifMiddleware\n\nif __name__ == '__main__':\n config = Configurator()\n config.add_route('hello', '/')\n config.scan()\n app = config.make_wsgi_app()\n\n # configure your moesif settings\n moesif_settings = {\n 'APPLICATION_ID': 'Your Moesif Application Id',\n 'LOG_BODY': True,\n # ... For other options see below.\n }\n # Put middleware\n app = MoesifMiddleware(app, moesif_settings)\n\n server = make_server('0.0.0.0', 8080, app)\n server.serve_forever()\n\n```\n### Other WSGI frameworks\n\nIf you are using a framework that is built on top of WSGI, it should work just by adding the Moesif middleware.\nPlease read the documentation for your specific framework on how to add middleware.\n\n## Configuration options\n\n#### __`APPLICATION_ID`__\n(__required__), _string_, is obtained via your Moesif Account, this is required.\n\n#### __`SKIP`__\n(optional) _(app, environ) => boolean_, a function that takes a WSGI app and an environ,\nand returns true if you want to skip this particular event. The app is the original WSGI app instance, and the\nenviron is a [WSGI environ](http://wsgi.readthedocs.io/en/latest/definitions.html).\n\n#### __`IDENTIFY_USER`__\n(optional, but highly recommended) _(app, environ) => string_, a function that takes an app and an environ, and returns a string that is the user id used by your system. While Moesif tries to identify users automatically,\nbut different frameworks and your implementation might be very different, it would be helpful and much more accurate to provide this function.\n\n#### __`IDENTIFY_COMPANY`__\n(optional) _(app, environ) => string_, a function that takes an app and an environ, and returns a string that is the company id for this event.\n\n#### __`GET_METADATA`__\n(optional) _(app, environ) => dictionary_, a function that takes an app and an environ, and\nreturns a dictionary (must be able to be encoded into JSON). This allows your\nto associate this event with custom metadata. For example, you may want to save a VM instance_id, a trace_id, or a tenant_id with the request.\n\n#### __`GET_SESSION_TOKEN`__\n(optional) _(app, environ) => string_, a function that takes an app and an environ, and returns a string that is the session token for this event. Again, Moesif tries to get the session token automatically, but if you setup is very different from standard, this function will be very help for tying events together, and help you replay the events.\n\n#### __`MASK_EVENT_MODEL`__\n(optional) _(EventModel) => EventModel_, a function that takes an EventModel and returns an EventModel with desired data removed. The return value must be a valid EventModel required by Moesif data ingestion API. For details regarding EventModel please see the [Moesif Python API Documentation](https://www.moesif.com/docs/api?python).\n\n#### __`DEBUG`__\n(optional) _boolean_, a flag to see debugging messages.\n\n#### __`LOG_BODY`__\n(optional) _boolean_, default True, Set to False to remove logging request and response body.\n\n#### __`CAPTURE_OUTGOING_REQUESTS`__\n_boolean_, Default False. Set to True to capture all outgoing API calls from your app to third parties like Stripe or to your own dependencies while using [Requests](http://docs.python-requests.org/en/master/) library. The options below is applied to outgoing API calls.\nWhen the request is outgoing, for options functions that take request and response as input arguments, the request and response objects passed in are [Requests](http://docs.python-requests.org/en/master/api/) request or response objects.\n\n##### __`SKIP_OUTGOING`__\n(optional) _(req, res) => boolean_, a function that takes a [Requests](http://docs.python-requests.org/en/master/api/) request and response,\nand returns true if you want to skip this particular event.\n\n##### __`IDENTIFY_USER_OUTGOING`__\n(optional, but highly recommended) _(req, res) => string_, a function that takes [Requests](http://docs.python-requests.org/en/master/api/) request and response, and returns a string that is the user id used by your system. While Moesif tries to identify users automatically,\nbut different frameworks and your implementation might be very different, it would be helpful and much more accurate to provide this function.\n\n##### __`IDENTIFY_COMPANY_OUTGOING`__\n(optional) _(req, res) => string_, a function that takes [Requests](http://docs.python-requests.org/en/master/api/) request and response, and returns a string that is the company id for this event.\n\n##### __`GET_METADATA_OUTGOING`__\n(optional) _(req, res) => dictionary_, a function that takes [Requests](http://docs.python-requests.org/en/master/api/) request and response, and\nreturns a dictionary (must be able to be encoded into JSON). This allows\nto associate this event with custom metadata. For example, you may want to save a VM instance_id, a trace_id, or a tenant_id with the request.\n\n##### __`GET_SESSION_TOKEN_OUTGOING`__\n(optional) _(req, res) => string_, a function that takes [Requests](http://docs.python-requests.org/en/master/api/) request and response, and returns a string that is the session token for this event. Again, Moesif tries to get the session token automatically, but if you setup is very different from standard, this function will be very help for tying events together, and help you replay the events.\n\n##### __`LOG_BODY_OUTGOING`__\n(optional) _boolean_, default True, Set to False to remove logging request and response body.\n\n### Example:\n\n```python\ndef identifyUser(app, environ):\n # return the user id here\n return \"my_user_id\"\n\ndef identifyCompany(app, environ):\n # return the company id here\n return \"my_company_id\"\n\ndef should_skip(app, environ):\n if \"healthprobe\" in environ.get('PATH_INFO', ''):\n return True\n else:\n return False\n\ndef get_session(app, environ):\n # extract session id from environ.\n return \"session_id\"\n\ndef mask_event(eventmodel):\n # do something to remove sensitive fields\n # be sure not to remove any required fields.\n return eventmodel\n\ndef get_metadata(app, environ):\n return { 'foo' : 'some data', 'bar' : 'another data', }\n\nmoesif_settings = {\n 'APPLICATION_ID': 'Your Moesif Application Id',\n 'DEBUG': False,\n 'LOG_BODY': True,\n 'IDENTIFY_USER': identifyUser,\n 'IDENTIFY_COMPANY': identifyCompany,\n 'GET_SESSION_TOKEN': get_token,\n 'SKIP': should_skip,\n 'MASK_EVENT_MODEL': mask_event,\n 'GET_METADATA': get_metadata,\n 'CAPTURE_OUTGOING_REQUESTS': False\n}\n\napp.wsgi_app = MoesifMiddleware(app.wsgi_app, moesif_settings)\n\n```\n\n## Update User\n\n### update_user method\nA method is attached to the moesif WSGI middleware object to update the user profile or metadata.\nThe metadata field can be any custom data you want to set on the user. The `user_id` field is required.\n\n```python\nupdate_user = MoesifMiddleware(app, moesif_settings).update_user({\n 'user_id': '12345',\n 'company_id': '67890',\n 'metadata': {'email': 'abc@email.com', 'name': 'abcde', 'image': '123'}\n })\n```\n\n### update_users_batch method\nA method is attached to the moesif WSGI middleware object to update the users profile or metadata in batch.\nThe metadata field can be any custom data you want to set on the user. The `user_id` field is required.\n\n```python\nupdate_users_batch = MoesifMiddleware(app, moesif_settings).update_users_batch([UserModel.from_dictionary({\n 'user_id': '12345',\n 'company_id': '67890',\n 'metadata': {'email': 'abc@email.com', 'name': 'abcde', 'image': '123'}\n }), UserModel.from_dictionary({\n 'user_id': '1234',\n 'company_id': '6789',\n 'metadata': {'email': 'abc@email.com', 'name': 'abcde', 'image': '123'}\n })])\n```\n\n## Update Company\n\n### update_company method\nA method is attached to the moesif WSGI middleware object to update the company profile or metadata.\nThe metadata field can be any custom data you want to set on the company. The `company_id` field is required.\n\n```python\nupdate_company = MoesifMiddleware(app, moesif_settings).update_company({\n 'company_id': '12345',\n 'company_domain': 'acmeinc.com',\n 'metadata': {'email': 'abc@email.com', 'name': 'abcde', 'image': '123'}\n })\n```\n\n### update_companies_batch method\nA method is attached to the moesif WSGI middleware object to update the companies profile or metadata in batch.\nThe metadata field can be any custom data you want to set on the company. The `company_id` field is required.\n\n```python\nupdate_companies_batch = MoesifMiddleware(app, moesif_settings).update_companies_batch([CompanyModel.from_dictionary({\n 'company_id': '12345',\n 'company_domain': 'nowhere.com',\n 'metadata': {'email': 'abc@email.com', 'name': 'abcde', 'image': '123'}\n }), CompanyModel.from_dictionary({\n 'company_id': '67890',\n 'company_domain': 'acmeinc.com',\n 'metadata': {'email': 'abc@email.com', 'name': 'abcde', 'image': '123'}\n })])\n```\n\n## Other integrations\n\nTo view more documentation on integration options, please visit __[the Integration Options Documentation](https://www.moesif.com/docs/getting-started/integration-options/).__\n\n[ico-built-for]: https://img.shields.io/badge/built%20for-python%20wsgi-blue.svg\n[ico-version]: https://img.shields.io/pypi/v/moesifwsgi.svg\n[ico-language]: https://img.shields.io/pypi/pyversions/moesifwsgi.svg\n[ico-license]: https://img.shields.io/badge/License-Apache%202.0-green.svg\n[ico-source]: https://img.shields.io/github/last-commit/moesif/moesifwsgi.svg?style=social\n\n[link-built-for]: https://en.wikipedia.org/wiki/Web_Server_Gateway_Interface\n[link-package]: https://pypi.python.org/pypi/moesifwsgi\n[link-language]: https://pypi.python.org/pypi/moesifwsgi\n[link-license]: https://raw.githubusercontent.com/Moesif/moesifwsgi/master/LICENSE\n[link-source]: https://github.com/Moesif/moesifwsgi\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://www.moesif.com/docs/server-integration/python-wsgi/", "keywords": "log analysis restful api development debug wsgi flask bottle http middleware", "license": "Apache Software License", "maintainer": "", "maintainer_email": "", "name": "moesifwsgi", "package_url": "https://pypi.org/project/moesifwsgi/", "platform": "", "project_url": "https://pypi.org/project/moesifwsgi/", "project_urls": { "Homepage": "https://www.moesif.com/docs/server-integration/python-wsgi/" }, "release_url": "https://pypi.org/project/moesifwsgi/1.2.1/", "requires_dist": [ "requests", "isodatetimehandler", "moesifapi", "moesifpythonrequest", "nose ; extra == 'test'" ], "requires_python": "", "summary": "Moesif Middleware for Python WSGI based flatforms (Flask, Bottle & Others)", "version": "1.2.1" }, "last_serial": 5930405, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "f1ae4ea78a68c0caa630b21db3d4df9d", "sha256": "ac95c0de2ae10ea9a0920b4372d201c64fe475037200e51e599a21fba34773c9" }, "downloads": -1, "filename": "moesifwsgi-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f1ae4ea78a68c0caa630b21db3d4df9d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10130, "upload_time": "2017-05-01T20:53:24", "url": "https://files.pythonhosted.org/packages/15/8a/0f8f60fe27baa6291474c3496582da00da3c03f268ef115520659c0ff74e/moesifwsgi-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ec9bca391f3f0eaccbd954b0cd60ef7", "sha256": "943f00dc9ab61fcf5afb1b3406f2a8946b09a03528010c4728b2a4146a06e837" }, "downloads": -1, "filename": "moesifwsgi-1.0.0.tar.gz", "has_sig": false, "md5_digest": "4ec9bca391f3f0eaccbd954b0cd60ef7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11625, "upload_time": "2017-05-01T20:53:25", "url": "https://files.pythonhosted.org/packages/32/46/8a8121aa3280815d1ccb6f409fd239e99ef036e9eb2e2c7d7110c01e4af9/moesifwsgi-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "ac4dbd90404739630f8aa4883bb4c42f", "sha256": "13d9d81beb5412d1043fe5a8144fbe2cb450c92e89c4b31d27fb84ab7dcbb2e2" }, "downloads": -1, "filename": "moesifwsgi-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac4dbd90404739630f8aa4883bb4c42f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6492, "upload_time": "2017-10-11T21:40:00", "url": "https://files.pythonhosted.org/packages/b8/f6/4b3c5744422bf66151fc9a27b6bf291c79d45974d55e9c56286244fda9c7/moesifwsgi-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "54278a307de2f202a5bf84572812a710", "sha256": "d440f70898de5e6d77a92612fde22c1f194768ac7e0b2cc66cb26744a4f86cd1" }, "downloads": -1, "filename": "moesifwsgi-1.1.0.tar.gz", "has_sig": false, "md5_digest": "54278a307de2f202a5bf84572812a710", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11194, "upload_time": "2017-10-11T21:40:03", "url": "https://files.pythonhosted.org/packages/01/a7/bf5181a5e01914cf2958eb18129a3ff926268e0cf5efabf927b71ec577e3/moesifwsgi-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "5e2928653c35b468a41ebd724ff09351", "sha256": "f8ddca95083fcbdf3fd9783ce1c32d0be587ca9844de2bf0f8f7e9e978f4b12b" }, "downloads": -1, "filename": "moesifwsgi-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e2928653c35b468a41ebd724ff09351", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6569, "upload_time": "2017-10-11T21:41:34", "url": "https://files.pythonhosted.org/packages/34/62/9288296828cbdf824d60f8b791a136a60a1736d1ab28c0ffdb875762c205/moesifwsgi-1.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d88b768d1cf1a63321c71bad6bec1347", "sha256": "e7e7999bda95d6ac55c566828dc7145eb56fa985d58c31934b501c48d6761d22" }, "downloads": -1, "filename": "moesifwsgi-1.1.1.tar.gz", "has_sig": false, "md5_digest": "d88b768d1cf1a63321c71bad6bec1347", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11441, "upload_time": "2017-10-11T21:41:35", "url": "https://files.pythonhosted.org/packages/89/42/c655c19129fab5669a82020054f4737bd21286e9db04593dfd6a906e9a9f/moesifwsgi-1.1.1.tar.gz" } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "6dfe6dd6313203d36834e2627aa86ee3", "sha256": "c240fc923cb68180ed5d82e9856b6a6ff69ce15e794bddcfa994643c5c792eeb" }, "downloads": -1, "filename": "moesifwsgi-1.1.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6dfe6dd6313203d36834e2627aa86ee3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12109, "upload_time": "2019-02-05T19:58:50", "url": "https://files.pythonhosted.org/packages/16/0a/7f22a60bdeca3d181d2047b0bb138b421c764fcf2c67f9840912f323eb85/moesifwsgi-1.1.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e62b3c6103552261b005c4d85a9deddf", "sha256": "b977d0949eb3305247996dcfd913a6d89fe96930038513e08a33717ecd9b200d" }, "downloads": -1, "filename": "moesifwsgi-1.1.10.tar.gz", "has_sig": false, "md5_digest": "e62b3c6103552261b005c4d85a9deddf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14423, "upload_time": "2019-02-05T19:58:52", "url": "https://files.pythonhosted.org/packages/08/d4/22a54b30c6f7de080fe0a51c7e438c8d853584b96d3079492d1eb0f399b4/moesifwsgi-1.1.10.tar.gz" } ], "1.1.11": [ { "comment_text": "", "digests": { "md5": "99590470afb9d3a37c89f4330fa098e6", "sha256": "6f0f2b17f1d9b0cf0327a15a20b1dcbcc1f45bff07763f29b8f7b1ab177de7ca" }, "downloads": -1, "filename": "moesifwsgi-1.1.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "99590470afb9d3a37c89f4330fa098e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12106, "upload_time": "2019-02-25T20:03:49", "url": "https://files.pythonhosted.org/packages/25/d1/a151501047e22ef23f29227d1792b5c59115019f0b1d11683d2ca4862f9f/moesifwsgi-1.1.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f1394b5a215affc47e2ea20d17c7bcb7", "sha256": "0da161ee37957eeceda467d618d9d4a5d36b7df873d7c70d2f8c1aa1c0d430aa" }, "downloads": -1, "filename": "moesifwsgi-1.1.11.tar.gz", "has_sig": false, "md5_digest": "f1394b5a215affc47e2ea20d17c7bcb7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14395, "upload_time": "2019-02-25T20:03:50", "url": "https://files.pythonhosted.org/packages/48/09/161c26001b93cbd9cd565a3db9eb4b2a6da532cdd7dc910bed8f27869193/moesifwsgi-1.1.11.tar.gz" } ], "1.1.12": [ { "comment_text": "", "digests": { "md5": "931a76d0df0fb62f47f1d741f334ebce", "sha256": "99926b18b8c4273f7a9dc4f33bbc427b3f6399cea50758760ebfca3120a7aefb" }, "downloads": -1, "filename": "moesifwsgi-1.1.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "931a76d0df0fb62f47f1d741f334ebce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12295, "upload_time": "2019-03-01T02:56:41", "url": "https://files.pythonhosted.org/packages/04/c4/535b4fedc13b092739f4a783e5bc9a345accac267ec56c1e3baa8bfa128e/moesifwsgi-1.1.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ecde7fead8ae21178e92d505a83a46e", "sha256": "08a4301edd808512ba49ae0a766fea4f9add60da208be4529caa610be7a98577" }, "downloads": -1, "filename": "moesifwsgi-1.1.12.tar.gz", "has_sig": false, "md5_digest": "3ecde7fead8ae21178e92d505a83a46e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14605, "upload_time": "2019-03-01T02:56:42", "url": "https://files.pythonhosted.org/packages/0e/76/5e71ab690d633d8a2ea7c82e9c26a223b1c0a09564f5988b63dfe2189946/moesifwsgi-1.1.12.tar.gz" } ], "1.1.13": [ { "comment_text": "", "digests": { "md5": "9a82d310328a6f13c21bc8bfa2945c5c", "sha256": "088686e84428af9288d80260040bfb7b6bd28ec4f78d05668d8e31da8c5eee5f" }, "downloads": -1, "filename": "moesifwsgi-1.1.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9a82d310328a6f13c21bc8bfa2945c5c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12300, "upload_time": "2019-03-16T00:09:21", "url": "https://files.pythonhosted.org/packages/0d/3f/3769a13a5defe5b9ba8b9c72bd224034dcfd1eb31ceb0531e096b5fc3830/moesifwsgi-1.1.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c4a382cb19c5ee39eadde99a33c2082", "sha256": "4114f79b68bffe70f9458f94ab392404731294f7956c7169106e9b59e7fb12cf" }, "downloads": -1, "filename": "moesifwsgi-1.1.13.tar.gz", "has_sig": false, "md5_digest": "6c4a382cb19c5ee39eadde99a33c2082", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14618, "upload_time": "2019-03-16T00:09:23", "url": "https://files.pythonhosted.org/packages/65/d5/8b327ad2cdff4e00a2150c53b8d55c4d54dd513452e32394db510fec4741/moesifwsgi-1.1.13.tar.gz" } ], "1.1.14": [ { "comment_text": "", "digests": { "md5": "e7e536d0d4870a7d5ec6672563097a62", "sha256": "581006a54b4d36de2a607922dfe5fa86f2d3c3ece548c10d281a1cb87e8d262d" }, "downloads": -1, "filename": "moesifwsgi-1.1.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e7e536d0d4870a7d5ec6672563097a62", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12294, "upload_time": "2019-04-06T01:33:05", "url": "https://files.pythonhosted.org/packages/9f/c3/c87277d7a2a4a0c08b9439b87adaae31cc6a04b09a277b36c4fbcae453a6/moesifwsgi-1.1.14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "47fcd4938b1277f41d48c0b84621bb1c", "sha256": "c98b31e3c05c583ccb46c029969d0a1aa4f961ed9bc6c253ce1f2272a82c7afc" }, "downloads": -1, "filename": "moesifwsgi-1.1.14.tar.gz", "has_sig": false, "md5_digest": "47fcd4938b1277f41d48c0b84621bb1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14610, "upload_time": "2019-04-06T01:33:07", "url": "https://files.pythonhosted.org/packages/c3/41/c9896160382bd704a6e0dc0d78383ea0b6057cb2ed5e7a13ec286cef29ed/moesifwsgi-1.1.14.tar.gz" } ], "1.1.15": [ { "comment_text": "", "digests": { "md5": "3224905b548a1fa3c816df26ad3f32a2", "sha256": "ab100ac56da7c2ec589452f380d1a98f270ab20034688ea5e872ae59e8f6ce8d" }, "downloads": -1, "filename": "moesifwsgi-1.1.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3224905b548a1fa3c816df26ad3f32a2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13911, "upload_time": "2019-05-08T04:39:55", "url": "https://files.pythonhosted.org/packages/62/5a/1dc5627195c5dd58fbcdb26a53c4dbc2270bf8170c0ce5d74282d7e78af5/moesifwsgi-1.1.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e2d20cb90404025060d79975f963b21", "sha256": "b5ed2b26bb8549aefb4db4fba97ae5933a52075e4da4cd2a71fa6dfc2a9c6a14" }, "downloads": -1, "filename": "moesifwsgi-1.1.15.tar.gz", "has_sig": false, "md5_digest": "3e2d20cb90404025060d79975f963b21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15349, "upload_time": "2019-05-08T04:39:57", "url": "https://files.pythonhosted.org/packages/f9/e1/571e55100a7bf832eb1e089a8e16326f95a41dea968523f71c9ce750f882/moesifwsgi-1.1.15.tar.gz" } ], "1.1.16": [ { "comment_text": "", "digests": { "md5": "dac396024643133c2535609b88772c7a", "sha256": "0aa31198c50e3fd6b3a1361223e6a64de0ae741084e68ca12d2bcd5aa230f7ad" }, "downloads": -1, "filename": "moesifwsgi-1.1.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dac396024643133c2535609b88772c7a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16883, "upload_time": "2019-06-07T23:58:37", "url": "https://files.pythonhosted.org/packages/15/ef/612be85f7f01a41ce60d10e141586285eda17fec4ab152bc2e3d1ae3034e/moesifwsgi-1.1.16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aa94cd14d945296806715c61349ef939", "sha256": "c85f26df8ee9ff981b5a1808212dd4da3e7328902b4f47f9b0f00cfdf1700821" }, "downloads": -1, "filename": "moesifwsgi-1.1.16.tar.gz", "has_sig": false, "md5_digest": "aa94cd14d945296806715c61349ef939", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16330, "upload_time": "2019-06-07T23:58:39", "url": "https://files.pythonhosted.org/packages/43/3b/f9116d7d4abbedb98a40087a92f63fe2a2b5a5024574e378ff0593b2b9ab/moesifwsgi-1.1.16.tar.gz" } ], "1.1.17": [ { "comment_text": "", "digests": { "md5": "721956c2a1077e3ce5d2b1072366cd64", "sha256": "64311e13b215d10840f5a7c10420b489b04eb1e450882e6ca6ea8b537fe8bd93" }, "downloads": -1, "filename": "moesifwsgi-1.1.17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "721956c2a1077e3ce5d2b1072366cd64", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16892, "upload_time": "2019-06-10T23:51:26", "url": "https://files.pythonhosted.org/packages/03/a3/0db870d3587e7c0650ffdae16761b40cc7a108180a9310975f23c9e318ef/moesifwsgi-1.1.17-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6bc9613fcb60300b0be26f9ffd24472f", "sha256": "9b5484411b4f2906a53753fedd26ec77e8cd077b26adce0941844d1b35b0f659" }, "downloads": -1, "filename": "moesifwsgi-1.1.17.tar.gz", "has_sig": false, "md5_digest": "6bc9613fcb60300b0be26f9ffd24472f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16313, "upload_time": "2019-06-10T23:51:28", "url": "https://files.pythonhosted.org/packages/69/6c/e16ac890d8563cdca4cf17492cc02df7c3b61382894b0f98eacd256a4084/moesifwsgi-1.1.17.tar.gz" } ], "1.1.18": [ { "comment_text": "", "digests": { "md5": "819172bd7a6e05f90ac7307521d12fc4", "sha256": "480a097f9b634c3a2a1023e90123134be1156f8a8105d57419e2fa02d7c722f6" }, "downloads": -1, "filename": "moesifwsgi-1.1.18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "819172bd7a6e05f90ac7307521d12fc4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17018, "upload_time": "2019-06-17T20:22:45", "url": "https://files.pythonhosted.org/packages/0a/30/be72736ee88e1663ac470c5ab76f8700e4a5f6cf6867538f42dafd7effc3/moesifwsgi-1.1.18-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f9db98954be1f56b26dfdd0f08d94ca5", "sha256": "aa68f930c2ea6df6349f3cfe7d2d1a7fa7f2be773f0f8d712530ae380cbb5858" }, "downloads": -1, "filename": "moesifwsgi-1.1.18.tar.gz", "has_sig": false, "md5_digest": "f9db98954be1f56b26dfdd0f08d94ca5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16548, "upload_time": "2019-06-17T20:22:47", "url": "https://files.pythonhosted.org/packages/ef/ec/902a77a109daad43d2c662e170e2dd5273980d43bf00807f079ad7989997/moesifwsgi-1.1.18.tar.gz" } ], "1.1.19": [ { "comment_text": "", "digests": { "md5": "21a94342c09fb0ed30402c5c50142b58", "sha256": "dfec360318ac3c2ad25a5bd5c5b1c36e1af7b7823d1980c06f2c315f16bfb5e2" }, "downloads": -1, "filename": "moesifwsgi-1.1.19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "21a94342c09fb0ed30402c5c50142b58", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17118, "upload_time": "2019-06-25T17:20:21", "url": "https://files.pythonhosted.org/packages/01/90/c2054a6fffcc8c53df442baa804a91b7b2b9a1eaa1f5744b2b22cbe76f7a/moesifwsgi-1.1.19-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "de88c99883b59e619d9dc24fca035c54", "sha256": "9b1016cfd05898d6e5023b1fe643025b66be84479dd75700fec8d3f4007971ca" }, "downloads": -1, "filename": "moesifwsgi-1.1.19.tar.gz", "has_sig": false, "md5_digest": "de88c99883b59e619d9dc24fca035c54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16667, "upload_time": "2019-06-25T17:20:23", "url": "https://files.pythonhosted.org/packages/6c/5a/894c9b29425663ac918c228025c558478df07046cfe84f5d536daea74615/moesifwsgi-1.1.19.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "db7b9cc14156a9af933e70a0f9c960f0", "sha256": "e519abe3732f66a21d208e1b46b83c85f8dbe7e28bfaa3ac88cbbddde74daa6c" }, "downloads": -1, "filename": "moesifwsgi-1.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "db7b9cc14156a9af933e70a0f9c960f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6567, "upload_time": "2018-06-08T01:56:01", "url": "https://files.pythonhosted.org/packages/87/5c/861c70e182d756cb2ca2e862c76524d9ea1492be548b7a4ecd96018e71b2/moesifwsgi-1.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8a10df2dfd83cd0dfad7ad0da09565b8", "sha256": "c2446f7743a522eb2d10e08b9b11acc3814a15512be96df2d3d85929b8829d75" }, "downloads": -1, "filename": "moesifwsgi-1.1.2.tar.gz", "has_sig": false, "md5_digest": "8a10df2dfd83cd0dfad7ad0da09565b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11387, "upload_time": "2018-06-08T01:56:02", "url": "https://files.pythonhosted.org/packages/a0/76/e5784a0aa65d30efa9d49ca6a85e40816978ef2385fb4ab6601ab93e868d/moesifwsgi-1.1.2.tar.gz" } ], "1.1.20": [ { "comment_text": "", "digests": { "md5": "2da0d243252a3c279610e9d17c9e5b96", "sha256": "c272cb330ca893b8f5cae118d7d7538b43abbed6f737a1bc34620fb9d1465fd1" }, "downloads": -1, "filename": "moesifwsgi-1.1.20-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2da0d243252a3c279610e9d17c9e5b96", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18314, "upload_time": "2019-08-09T17:32:06", "url": "https://files.pythonhosted.org/packages/bc/db/b7d8c0d86b3f4ee8c94a3810d878189bc4eb3ee7a44eb4d0a94bbb451429/moesifwsgi-1.1.20-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9137adfe29e44fbb0a6643017384b782", "sha256": "f47be3c60b54e5ea7a409b7112fb75a53c3db789124eb5949131bbb73b1efbb0" }, "downloads": -1, "filename": "moesifwsgi-1.1.20.tar.gz", "has_sig": false, "md5_digest": "9137adfe29e44fbb0a6643017384b782", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17272, "upload_time": "2019-08-09T17:32:07", "url": "https://files.pythonhosted.org/packages/c8/af/651baaa9b12d7355e44c4ea45cfd5a8ce68b5b715380a1dd04fddef7375a/moesifwsgi-1.1.20.tar.gz" } ], "1.1.21": [ { "comment_text": "", "digests": { "md5": "368f68e38837838c323c4ae4581f2185", "sha256": "c4b06e655ed004c6ae62e870f13bb1f0ab2c6d3e997996e74a5d0cad44374d9e" }, "downloads": -1, "filename": "moesifwsgi-1.1.21-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "368f68e38837838c323c4ae4581f2185", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18317, "upload_time": "2019-08-27T01:05:30", "url": "https://files.pythonhosted.org/packages/25/be/f38a623e352c6caeb9034ae40f9ff3289627c27c2479c70e1e2320499fa1/moesifwsgi-1.1.21-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "36222a73d3a39194c717d89fdbc21d04", "sha256": "466ce99d7acefc63652cbe88544b8fe53197de3cf9daa2c1e814cc06986a2fd8" }, "downloads": -1, "filename": "moesifwsgi-1.1.21.tar.gz", "has_sig": false, "md5_digest": "36222a73d3a39194c717d89fdbc21d04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20400, "upload_time": "2019-08-27T01:05:32", "url": "https://files.pythonhosted.org/packages/67/66/0d085c43b7197b5e037b7195a2d381d076e991502c66643f0cf1d34bbff5/moesifwsgi-1.1.21.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "86cd41a1b6c9b34b36a021f5b97793a3", "sha256": "2c8a8d875d7c6f65aab0baf8fe2f7db9b40aa4475d27f6cc1b9f19a0c49e2a6e" }, "downloads": -1, "filename": "moesifwsgi-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "86cd41a1b6c9b34b36a021f5b97793a3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7885, "upload_time": "2018-06-12T01:46:27", "url": "https://files.pythonhosted.org/packages/84/e2/b82b0df7795860aa5810f5064cec9668885a8ebe8c88f6a83f7d64dc878b/moesifwsgi-1.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "487b171f0d8ff213e3d2af55a8c21fdd", "sha256": "11393b16493181860eae4bc8e069f65dea93a873a2e32b5d792e7efac008b484" }, "downloads": -1, "filename": "moesifwsgi-1.1.3.tar.gz", "has_sig": false, "md5_digest": "487b171f0d8ff213e3d2af55a8c21fdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12637, "upload_time": "2018-06-12T01:46:29", "url": "https://files.pythonhosted.org/packages/15/7e/97834a071fc8c1bbb928286600c16a6a7a27d0c5dad56e39e7130326ff76/moesifwsgi-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "75e0e9ad6ede359a22d090ae4543e2c1", "sha256": "e1ae421f2f5d94df6253ea2341c110b1768e479024ca55c733899bb6af747402" }, "downloads": -1, "filename": "moesifwsgi-1.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "75e0e9ad6ede359a22d090ae4543e2c1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11093, "upload_time": "2018-10-03T20:50:31", "url": "https://files.pythonhosted.org/packages/8a/a8/442d11031c5c19fffb61d2939d58e0d786f3c8b67817985d43231837efb2/moesifwsgi-1.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ca220feb1f20be6ab41db408c6c3365f", "sha256": "2669e04481f50ef888066f2168e7b4e27e652e24425521a8ca5810b745cd4abd" }, "downloads": -1, "filename": "moesifwsgi-1.1.4.tar.gz", "has_sig": false, "md5_digest": "ca220feb1f20be6ab41db408c6c3365f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12664, "upload_time": "2018-10-03T20:50:32", "url": "https://files.pythonhosted.org/packages/04/e8/673c2c141a85f3938c67ad36d0ca1aa909547d90fc1494971fe9b95d7bdf/moesifwsgi-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "3b02c7b9c366ace2bd594a51df78b458", "sha256": "8923ec39bffebf57d55b6565be8cd4ac0193d5df2ede7d8ed59b3e9e16d28e60" }, "downloads": -1, "filename": "moesifwsgi-1.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3b02c7b9c366ace2bd594a51df78b458", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11213, "upload_time": "2018-10-08T19:55:08", "url": "https://files.pythonhosted.org/packages/c9/7a/ca2e9a760cf712922eab1dbecdf44d231b51665d3c88050613e624c3200c/moesifwsgi-1.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06d5cdfee339b84c199da53306fb506b", "sha256": "06fb2224735c3a8629cd157feccd6ad2137117ba92d61546c342344ee9c2908f" }, "downloads": -1, "filename": "moesifwsgi-1.1.5.tar.gz", "has_sig": false, "md5_digest": "06d5cdfee339b84c199da53306fb506b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13026, "upload_time": "2018-10-08T19:55:10", "url": "https://files.pythonhosted.org/packages/60/0d/460e43c1d9eff2d9a021d9d9a23183ede63327c5a08fea1afc8b8779b8d6/moesifwsgi-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "e71d1580fd45a984841489d0b727c231", "sha256": "324ba8314707ef83a0ef968af1895633a63dfa80c1c15c1627c9b3411ea88056" }, "downloads": -1, "filename": "moesifwsgi-1.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e71d1580fd45a984841489d0b727c231", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11649, "upload_time": "2018-10-19T07:25:15", "url": "https://files.pythonhosted.org/packages/d3/e5/72e499a26c786531935f89842e10d85abbc0a98301509c70beb192e6c016/moesifwsgi-1.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b3e13ece94a2cc563b134d9b9d0e2db8", "sha256": "a2b9113ceb250fe9572bab2ca74e5d1fa886515b60ecc2048095d0b138c585f1" }, "downloads": -1, "filename": "moesifwsgi-1.1.6.tar.gz", "has_sig": false, "md5_digest": "b3e13ece94a2cc563b134d9b9d0e2db8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13710, "upload_time": "2018-10-19T07:25:17", "url": "https://files.pythonhosted.org/packages/05/cb/fd298782e214dab3303d8407dd2bfc54216e1c5bd427bec4b4b576490dbc/moesifwsgi-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "0fc3519ee08585beb37ea1a72c7adce1", "sha256": "3091e002634e1c1b757291913251a35cd719b4fe52e5d3895488e9d58fa34bf8" }, "downloads": -1, "filename": "moesifwsgi-1.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0fc3519ee08585beb37ea1a72c7adce1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11728, "upload_time": "2018-11-06T18:45:11", "url": "https://files.pythonhosted.org/packages/d6/21/e38452d9d995643c85ab2523c6ef97fa993747305e85747c0d2eac92fbfa/moesifwsgi-1.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "555efd727d3fff2742049da70bb1e619", "sha256": "8cfa7d8e2ba6457178340bfc930c6c6fb27040c4671562b969d7e94ce132f0f9" }, "downloads": -1, "filename": "moesifwsgi-1.1.7.tar.gz", "has_sig": false, "md5_digest": "555efd727d3fff2742049da70bb1e619", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14070, "upload_time": "2018-11-06T18:45:12", "url": "https://files.pythonhosted.org/packages/5f/2c/68e135489812c91d9f21d5edfc7fc5972023c8d866908e486db2607ca535/moesifwsgi-1.1.7.tar.gz" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "a3315f7c77b09eb97a867b708c4668af", "sha256": "0d27f37b358b6dd890b98b4609420e8cad841c7dbfd29ed21b733825145ccb2a" }, "downloads": -1, "filename": "moesifwsgi-1.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a3315f7c77b09eb97a867b708c4668af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11825, "upload_time": "2018-11-17T02:35:42", "url": "https://files.pythonhosted.org/packages/88/8d/8ea5c0036537f4a005eb6c0dedd34570aefbebb125e769960ec474feae23/moesifwsgi-1.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9233e9e3ec330be8175ffd94a5f49d5d", "sha256": "5992825762b0534c092ae2c6068632d93a3795c54acbbb6201131e6c91009dc6" }, "downloads": -1, "filename": "moesifwsgi-1.1.8.tar.gz", "has_sig": false, "md5_digest": "9233e9e3ec330be8175ffd94a5f49d5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14159, "upload_time": "2018-11-17T02:35:44", "url": "https://files.pythonhosted.org/packages/af/d7/b7e499364f94a6ed313b71ffc92ab352cc58e7dd8f12948f32d7b4ebe6e1/moesifwsgi-1.1.8.tar.gz" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "442fc087c066a39527a3ee11b56e874d", "sha256": "9b2fa401fbe940ca69b13e854386e5b767c18edc234060eda04ad59bb58e2b73" }, "downloads": -1, "filename": "moesifwsgi-1.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "442fc087c066a39527a3ee11b56e874d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12106, "upload_time": "2019-02-05T19:35:01", "url": "https://files.pythonhosted.org/packages/db/99/44fb69fb731e7868f17baf70a8c5dd88033c6e4513167619a6406a7d9317/moesifwsgi-1.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a5b424eb79b45ef8365cdd9bcca7559d", "sha256": "075c892394b97c77c1cbfbf4be2d4023ad38149f84277c40bfe645eecb34283b" }, "downloads": -1, "filename": "moesifwsgi-1.1.9.tar.gz", "has_sig": false, "md5_digest": "a5b424eb79b45ef8365cdd9bcca7559d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14439, "upload_time": "2019-02-05T19:35:03", "url": "https://files.pythonhosted.org/packages/d7/30/17406913499c8673a3d0458f5869f6ef4c76eb74b8263e3fc1f54c6b1504/moesifwsgi-1.1.9.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "0cd9fc937660eaff34ed9b5e793737d9", "sha256": "2ffbdfdf233f3bd1b8a4fa53c1d8b6f86f9edd7dffb6c88f0eb570b394a4a10c" }, "downloads": -1, "filename": "moesifwsgi-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0cd9fc937660eaff34ed9b5e793737d9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18355, "upload_time": "2019-10-04T02:58:56", "url": "https://files.pythonhosted.org/packages/55/ee/b5b8d52eb91d77b797f49328c5edcbb1ec0439f4a42a2e869bd06e83a41b/moesifwsgi-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "00a38da213cf9cadb35a326bdb09b293", "sha256": "2e2b814babd6d71c7a0f7288ae96ebe9e9e4f21fd3cd113eff7514fc262ca5a7" }, "downloads": -1, "filename": "moesifwsgi-1.2.0.tar.gz", "has_sig": false, "md5_digest": "00a38da213cf9cadb35a326bdb09b293", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20461, "upload_time": "2019-10-04T02:58:58", "url": "https://files.pythonhosted.org/packages/ce/c7/cb4871bb830c8fc87d94453130b42b611ba52e69f63b81e5c2c09e3286d8/moesifwsgi-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "60fc0a655c7fcf4b9ccd2395c0aeddb1", "sha256": "8c2908f939eabe4c65b81b0d167209014e661da556aa26b3759079938cb9206f" }, "downloads": -1, "filename": "moesifwsgi-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "60fc0a655c7fcf4b9ccd2395c0aeddb1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18362, "upload_time": "2019-10-04T22:19:54", "url": "https://files.pythonhosted.org/packages/87/f0/70b84400f84b647223b4b6125d688f1754c6d2e460e09db22b2ff6bc6571/moesifwsgi-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1c2c2bf35c7812998cc0cd2f6720cc98", "sha256": "33312ba62c09516fbb1c0862705e30471b3a5612e4df6ac907ccb2f94acdd303" }, "downloads": -1, "filename": "moesifwsgi-1.2.1.tar.gz", "has_sig": false, "md5_digest": "1c2c2bf35c7812998cc0cd2f6720cc98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20472, "upload_time": "2019-10-04T22:19:56", "url": "https://files.pythonhosted.org/packages/cf/92/88a95c671dc95531013834d29457b68eea2ecc4c3345239dae933602f6f9/moesifwsgi-1.2.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "60fc0a655c7fcf4b9ccd2395c0aeddb1", "sha256": "8c2908f939eabe4c65b81b0d167209014e661da556aa26b3759079938cb9206f" }, "downloads": -1, "filename": "moesifwsgi-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "60fc0a655c7fcf4b9ccd2395c0aeddb1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18362, "upload_time": "2019-10-04T22:19:54", "url": "https://files.pythonhosted.org/packages/87/f0/70b84400f84b647223b4b6125d688f1754c6d2e460e09db22b2ff6bc6571/moesifwsgi-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1c2c2bf35c7812998cc0cd2f6720cc98", "sha256": "33312ba62c09516fbb1c0862705e30471b3a5612e4df6ac907ccb2f94acdd303" }, "downloads": -1, "filename": "moesifwsgi-1.2.1.tar.gz", "has_sig": false, "md5_digest": "1c2c2bf35c7812998cc0cd2f6720cc98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20472, "upload_time": "2019-10-04T22:19:56", "url": "https://files.pythonhosted.org/packages/cf/92/88a95c671dc95531013834d29457b68eea2ecc4c3345239dae933602f6f9/moesifwsgi-1.2.1.tar.gz" } ] }