{ "info": { "author": "Rhumbix", "author_email": "dev@rhumbix.com", "bugtrack_url": null, "classifiers": [], "description": "django-request-logging\n==========================\n\nPlug django-request-logging into your Django project and you will have intuitive and color coded request/response payload logging, for both web requests and API requests. Supports Django 1.8+.\n\n## Installing\n\n```bash\n$ pip install django-request-logging\n```\n\nThen add ```request_logging.middleware.LoggingMiddleware``` to your ```MIDDLEWARE```.\n\nFor example:\n\n```python\nMIDDLEWARE = (\n ...,\n 'request_logging.middleware.LoggingMiddleware',\n ...,\n)\n```\n\nAnd configure logging in your app:\n\n```python\nLOGGING = {\n 'version': 1,\n 'disable_existing_loggers': False,\n 'handlers': {\n 'console': {\n 'class': 'logging.StreamHandler',\n },\n },\n 'loggers': {\n 'django.request': {\n 'handlers': ['console'],\n 'level': 'DEBUG', # change debug level as appropiate\n 'propagate': False,\n },\n },\n}\n```\n\n## Details\n\nMost of times you don't have to care about these details. But in case you need to dig deep:\n\n* All logs are configured using logger name \"django.request\".\n* If HTTP status code is between 400 - 599, URIs are logged at ERROR level, otherwise they are logged at INFO level.\n* If HTTP status code is between 400 - 599, data are logged at ERROR level, otherwise they are logged at DEBUG level.\n\nSee `REQUEST_LOGGING_HTTP_4XX_LOG_LEVEL` setting to override this. \n\n\nA `no_logging` decorator is included for views with sensitive data.\n\n## Django settings\nYou can customized some behaves of django-request-logging by following settings in Django `settings.py`.\n### REQUEST_LOGGING_DATA_LOG_LEVEL\nBy default, data will log in DEBUG level, you can change to other valid level (Ex. logging.INFO) if need.\n### REQUEST_LOGGING_ENABLE_COLORIZE\nIf you want to log into log file instead of console, you may want to remove ANSI color. You can set `REQUEST_LOGGING_ENABLE_COLORIZE=False` to disable colorize.\n### REQUEST_LOGGING_DISABLE_COLORIZE (Deprecated)\nThis legacy setting will still available, but you should't use this setting anymore. You should use `REQUEST_LOGGING_ENABLE_COLORIZE` instead.\nWe keep this settings for backward compatibility. \n### REQUEST_LOGGING_MAX_BODY_LENGTH\nBy default, max length of a request body and a response content is cut to 50000 characters.\n### REQUEST_LOGGING_HTTP_4XX_LOG_LEVEL\nBy default, HTTP status codes between 400 - 499 are logged at ERROR level. You can set `REQUEST_LOGGING_HTTP_4XX_LOG_LEVEL=logging.WARNING` (etc) to override this.\nIf you set `REQUEST_LOGGING_HTTP_4XX_LOG_LEVEL=logging.INFO` they will be logged the same as normal requests.\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://github.com/Rhumbix/django-request-logging.git", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django-request-logging", "package_url": "https://pypi.org/project/django-request-logging/", "platform": "", "project_url": "https://pypi.org/project/django-request-logging/", "project_urls": { "Homepage": "https://github.com/Rhumbix/django-request-logging.git" }, "release_url": "https://pypi.org/project/django-request-logging/0.7.0/", "requires_dist": [ "Django" ], "requires_python": "", "summary": "Django middleware that logs http request body.", "version": "0.7.0" }, "last_serial": 5307449, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "493af494cd987f03c06420d02e2a372c", "sha256": "ac14c6e53fec8f10656728a895cc8d4860446b56344273b4f285e575f09ea006" }, "downloads": -1, "filename": "django-request-logging-0.1.tar.gz", "has_sig": false, "md5_digest": "493af494cd987f03c06420d02e2a372c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1451, "upload_time": "2015-08-14T07:44:06", "url": "https://files.pythonhosted.org/packages/9e/21/c0cb99d1dca731c5e6ef42d8fbe096d530028cc3c1af4d2677522534fcd7/django-request-logging-0.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "22443a9769b354e76c9517e9e62c7d91", "sha256": "df2983cfe3febf90798d2f1f252a2cca0dd5601a38b8e2436ce60ba11cba81ea" }, "downloads": -1, "filename": "django-request-logging-0.2.0.tar.gz", "has_sig": false, "md5_digest": "22443a9769b354e76c9517e9e62c7d91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1504, "upload_time": "2015-08-14T11:15:39", "url": "https://files.pythonhosted.org/packages/96/7f/4f1a4096dd62ac9c5b92a4945699fb83f1f23aec0861af4bfb5c401f6062/django-request-logging-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "6cd68dff93966ed6644773d877823d25", "sha256": "6937ef5e1b85ac1a323945ed82dacdd862e305fd1f9803a5003cce6509276044" }, "downloads": -1, "filename": "django-request-logging-0.2.1.tar.gz", "has_sig": false, "md5_digest": "6cd68dff93966ed6644773d877823d25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1509, "upload_time": "2015-08-14T11:28:41", "url": "https://files.pythonhosted.org/packages/81/d2/f9a4c6fbe2eaa6210184d45c499bca55e05f99dcb2b5ff40fe01d31a2ae3/django-request-logging-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "dfb33d149fbf5c3d0a51b922f3355f18", "sha256": "d758f9f0b343b2ee238fe2455bfa756a019717465f200999e7a94ee7e1081881" }, "downloads": -1, "filename": "django-request-logging-0.2.2.tar.gz", "has_sig": false, "md5_digest": "dfb33d149fbf5c3d0a51b922f3355f18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1533, "upload_time": "2015-08-14T11:42:57", "url": "https://files.pythonhosted.org/packages/9f/4e/d53d1eb979f49ab96f6b99fe11e15ff1353617d7c6605847fde53d2a6ee3/django-request-logging-0.2.2.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "79743f8872c6deb033246cf0c6a5f571", "sha256": "74e8feb1f4f379f4f24fe1eeef279e1e7282a8f1b3f070f2c5e95dcc9dbe6f0c" }, "downloads": -1, "filename": "django-request-logging-0.2.4.tar.gz", "has_sig": false, "md5_digest": "79743f8872c6deb033246cf0c6a5f571", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1486, "upload_time": "2015-08-14T12:01:22", "url": "https://files.pythonhosted.org/packages/5e/c2/e0ff179cbe8576235e070e077e2a3329c641c8524fce799804421ee0bf52/django-request-logging-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "05eeb3adc8d8a5ea5263e1d8513d836d", "sha256": "c6cd74da4ef3aec48b759fba08ba25e403c093da08905fb7f0f1dd36cba357bd" }, "downloads": -1, "filename": "django-request-logging-0.3.0.tar.gz", "has_sig": false, "md5_digest": "05eeb3adc8d8a5ea5263e1d8513d836d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1545, "upload_time": "2015-08-14T19:13:44", "url": "https://files.pythonhosted.org/packages/be/ef/0a476e13c690c869311659c92d0ff4f00ca81483e69806fc8198c84c1a98/django-request-logging-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "5d57675c5ea6115ed0bea5c52e053f23", "sha256": "3a2845c4e33cb9183d103420d5dc3459359866981d442a615ff8e3653b2ed83b" }, "downloads": -1, "filename": "django-request-logging-0.4.0.tar.gz", "has_sig": false, "md5_digest": "5d57675c5ea6115ed0bea5c52e053f23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1548, "upload_time": "2015-09-09T19:15:48", "url": "https://files.pythonhosted.org/packages/38/d2/88c643c15099d57769d7dca999a152d5a8d1e19b3127fad2c00d284d7c83/django-request-logging-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "12af644e382f948e79c546dd7e6d855c", "sha256": "712a24bdd025ff7116c5e0e7c16d7b167958eea24219e129fe880f7cf2971133" }, "downloads": -1, "filename": "django-request-logging-0.4.1.tar.gz", "has_sig": false, "md5_digest": "12af644e382f948e79c546dd7e6d855c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1560, "upload_time": "2015-09-11T23:46:31", "url": "https://files.pythonhosted.org/packages/ad/76/5a60dd31388eba1de4cb0e1748ff838085c101e531f692788631cea1058f/django-request-logging-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "954fb5cb8f7dd5be963cad8399b07936", "sha256": "471f497444a557321df264ccd4884cd7d9c7a30408889718e5d0259780c96a80" }, "downloads": -1, "filename": "django-request-logging-0.4.2.tar.gz", "has_sig": false, "md5_digest": "954fb5cb8f7dd5be963cad8399b07936", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1560, "upload_time": "2015-09-12T00:04:39", "url": "https://files.pythonhosted.org/packages/24/be/5628a3fc04d69afc3613f62496feffe6b0a3e97555f2d159adc06e341165/django-request-logging-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "142ed4316209a761d524bd1f85515537", "sha256": "a67c2860ca4a004e1980aac3a2ae512b6a650ce73551f3d4a2e1f7c4a1dda478" }, "downloads": -1, "filename": "django-request-logging-0.4.3.tar.gz", "has_sig": false, "md5_digest": "142ed4316209a761d524bd1f85515537", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1548, "upload_time": "2015-09-12T00:11:53", "url": "https://files.pythonhosted.org/packages/e1/e3/5dd71cb4d3ecf9226d3169b1c3f0acf4af101f197b1151f261e64a585e79/django-request-logging-0.4.3.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "f38f40480c3b1f2346b17400361cdd00", "sha256": "df7bb1a5ab22d19fc4fc22739938eb1a33dda33dec5212daada77eee9d3af5fd" }, "downloads": -1, "filename": "django-request-logging-0.4.5.tar.gz", "has_sig": false, "md5_digest": "f38f40480c3b1f2346b17400361cdd00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1559, "upload_time": "2015-12-29T17:34:22", "url": "https://files.pythonhosted.org/packages/81/e1/dce2c2757103f56e53d62b1da0da522f8fa0312a7d36760b6420cc46c94c/django-request-logging-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "bca1d23dfb40e109b0bb9ff53a2d13da", "sha256": "bdc971011bd10a4156ce527720a11b45cbc6e1a42130bbc34d644cf89ef37d46" }, "downloads": -1, "filename": "django-request-logging-0.4.6.tar.gz", "has_sig": false, "md5_digest": "bca1d23dfb40e109b0bb9ff53a2d13da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1536, "upload_time": "2016-06-20T22:57:12", "url": "https://files.pythonhosted.org/packages/8f/ac/3b80e8ca55683e573843608fe9f3b2b2f939d9404a6dda1e9a3a6b2dd2d7/django-request-logging-0.4.6.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "b6ccf43e37cb257315f28a9cad5e7ca9", "sha256": "5cb7403e9c2dd2a4bed5936fb182f427d822e6ae451bfa66042d42ac9895f30c" }, "downloads": -1, "filename": "django-request-logging-0.5.0.tar.gz", "has_sig": false, "md5_digest": "b6ccf43e37cb257315f28a9cad5e7ca9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1937, "upload_time": "2017-06-15T17:58:08", "url": "https://files.pythonhosted.org/packages/84/d5/e084a67951e776604e91f43ad2fd1ab2d6e0b999081d838c8c9952bb25c8/django-request-logging-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "6cc4946b8c58e7ec380f4005383102ea", "sha256": "b2194128efdb21558f1253df7f69ededcb974ec217cb8d95ad2db76425143d6b" }, "downloads": -1, "filename": "django-request-logging-0.5.1.tar.gz", "has_sig": false, "md5_digest": "6cc4946b8c58e7ec380f4005383102ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1946, "upload_time": "2017-06-16T17:08:06", "url": "https://files.pythonhosted.org/packages/a6/27/3cb2061c74eeb32d03eadec2f475f7e55aabeab27955c61c088b048396c0/django-request-logging-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "d32d67092b4218d7152e544405142644", "sha256": "a8441dfff294a538c437caec25166fe25bfc03f4aa0ce1ed6752fba39873dcfb" }, "downloads": -1, "filename": "django-request-logging-0.5.2.tar.gz", "has_sig": false, "md5_digest": "d32d67092b4218d7152e544405142644", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2587, "upload_time": "2017-10-05T20:21:21", "url": "https://files.pythonhosted.org/packages/55/51/291e93301f729f84732dfa12d18369fd441c4a7031562cf97bf64bdea4d6/django-request-logging-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "1dcba9d5cd6c9d89851b254a9fb5f149", "sha256": "c97f1413cc2fd8309e9736a693a674bcf0bc83a4db974d9c4b60b4725e4b2ec4" }, "downloads": -1, "filename": "django-request-logging-0.5.3.tar.gz", "has_sig": false, "md5_digest": "1dcba9d5cd6c9d89851b254a9fb5f149", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2830, "upload_time": "2017-10-21T13:16:59", "url": "https://files.pythonhosted.org/packages/92/0f/4fe136b3a7d39ae4052118806b34b981b1ea329b7269b37a7cf2ba7a684d/django-request-logging-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "b10132c374ddf3420b98305490ab5063", "sha256": "8bd9d3984f51d7df28ef7198795eb1a4179d129f3dbdaed43ab028040cb1951d" }, "downloads": -1, "filename": "django_request_logging-0.5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b10132c374ddf3420b98305490ab5063", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5939, "upload_time": "2017-11-09T16:38:12", "url": "https://files.pythonhosted.org/packages/96/e8/c754a3d1dd26e9dcf8603818a1ec2a3a8a936a306b483c3f42711202c248/django_request_logging-0.5.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "82f81ecdccddde950952d98233f2c3bd", "sha256": "2e343cefcb511453e3eb0e040142836ce8b5526311d2173a9124c091f6bc3e0a" }, "downloads": -1, "filename": "django-request-logging-0.5.4.tar.gz", "has_sig": false, "md5_digest": "82f81ecdccddde950952d98233f2c3bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3398, "upload_time": "2017-11-09T16:38:13", "url": "https://files.pythonhosted.org/packages/55/d1/337a93ebe7bb5151062064b69cb16b7e4ec72ee5fa7950704b5b41c43a62/django-request-logging-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "5fa2f248228d8afd916a0ed3c1118d26", "sha256": "5d38d72553d6c16867136920ec0efab32a042458f2ad8e02bfe4e2b27e3bef5e" }, "downloads": -1, "filename": "django_request_logging-0.5.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5fa2f248228d8afd916a0ed3c1118d26", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6066, "upload_time": "2018-01-12T20:43:04", "url": "https://files.pythonhosted.org/packages/da/fa/4fbfa15f6ad61bfcf2748a8ecfbb5b3fc2a304e5f4613a2d5f767def95f2/django_request_logging-0.5.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6e490cb280c52cc0bda8f3089578c5b", "sha256": "4981c562bb6192c13ba2dc745b3b235d5020643eb16cb055ed703de4656f03f7" }, "downloads": -1, "filename": "django-request-logging-0.5.5.tar.gz", "has_sig": false, "md5_digest": "f6e490cb280c52cc0bda8f3089578c5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3529, "upload_time": "2018-01-12T20:43:05", "url": "https://files.pythonhosted.org/packages/3a/b0/2ea7e0e1bdd9a4edb5240aeb03265822b5111a7bc6c3523e7d9346292e00/django-request-logging-0.5.5.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "79bca30c25797fd45f63a6371c9146a2", "sha256": "6500bb45dbbd9671b607e544d6341096bedba66dd12f9ef242bbfcd67cab31de" }, "downloads": -1, "filename": "django-request-logging-0.6.0.tar.gz", "has_sig": false, "md5_digest": "79bca30c25797fd45f63a6371c9146a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3653, "upload_time": "2018-04-23T15:44:04", "url": "https://files.pythonhosted.org/packages/07/b2/77fb6500302f79c0fecff4e0979df932944301eea360bd8fbbf0a51487aa/django-request-logging-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "4217b68d27ef7d06dd8e83a44581995c", "sha256": "3ec20bcd7411b527f46088c24ae2753e85aada2a7888d81c1bdc3908801fff5d" }, "downloads": -1, "filename": "django-request-logging-0.6.1.tar.gz", "has_sig": false, "md5_digest": "4217b68d27ef7d06dd8e83a44581995c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3633, "upload_time": "2018-04-24T21:57:26", "url": "https://files.pythonhosted.org/packages/6b/54/fda79d50188e85602acd2961fa10abfa47446d073b59a10e3af275317f04/django-request-logging-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "0dbc56103e51a0fa51ae2cad56961a61", "sha256": "1b4495f81a52c402d26c5041b06691d81f1b06ab4a5267ccc678527da89b9c7d" }, "downloads": -1, "filename": "django-request-logging-0.6.2.tar.gz", "has_sig": false, "md5_digest": "0dbc56103e51a0fa51ae2cad56961a61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5247, "upload_time": "2018-05-01T00:37:49", "url": "https://files.pythonhosted.org/packages/97/ff/50f7d4dbeb725abf62bf68590b4c53c5cfc03456067001b56580523a322c/django-request-logging-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "e1fb6a84a2d36039645539e212b6f3ff", "sha256": "9005eda380f7a276c7f0f235af6a5bd180c40e5627892f506e7f9c05fee10546" }, "downloads": -1, "filename": "django-request-logging-0.6.3.tar.gz", "has_sig": false, "md5_digest": "e1fb6a84a2d36039645539e212b6f3ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5267, "upload_time": "2018-05-11T22:44:09", "url": "https://files.pythonhosted.org/packages/03/dd/c596645b6fa2a297ab7cd8687137b5fb034be817f60fa9f448d0eef52e86/django-request-logging-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "2b1adeb089a0d9d1f9c87b3bf281623f", "sha256": "714f3faea79c833fea9f68b3b1e725ad79e734f764b1044b05742b64ed2184bc" }, "downloads": -1, "filename": "django-request-logging-0.6.4.tar.gz", "has_sig": false, "md5_digest": "2b1adeb089a0d9d1f9c87b3bf281623f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5283, "upload_time": "2018-05-12T22:59:33", "url": "https://files.pythonhosted.org/packages/25/53/52a1e020b7466b034afc586263f9b922bc5126da37d4e11e54dd828be70b/django-request-logging-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "48510aeec5f2c553fb0e6f6aa5f1b046", "sha256": "741195492657b6e97ac6dfd92691d076f62cea9e245b18e3efbb2e6e60acbca9" }, "downloads": -1, "filename": "django-request-logging-0.6.5.tar.gz", "has_sig": false, "md5_digest": "48510aeec5f2c553fb0e6f6aa5f1b046", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5277, "upload_time": "2018-05-12T23:13:06", "url": "https://files.pythonhosted.org/packages/24/df/2d0a371200d8d2340ce53f1d699cde3be828fe697c2f7e421fbecb37853b/django-request-logging-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "0659999752108908da257196dbb15767", "sha256": "1c82e2331af2b7eb76bcf6783c855ec591088206b944c4a1088098c7d8d5dffb" }, "downloads": -1, "filename": "django_request_logging-0.6.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0659999752108908da257196dbb15767", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6862, "upload_time": "2018-10-24T13:00:29", "url": "https://files.pythonhosted.org/packages/09/a4/369f43005c6035db50e9810dea55435093ef475f094b2bf1b55caa78fe90/django_request_logging-0.6.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd2f5b85c476b70394db5f7ca5fe362b", "sha256": "94f4452e00a0927f514e80dedb549e6354651628b2fb9bc42b7b1b2b3d95ee27" }, "downloads": -1, "filename": "django-request-logging-0.6.6.tar.gz", "has_sig": false, "md5_digest": "fd2f5b85c476b70394db5f7ca5fe362b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6076, "upload_time": "2018-10-24T13:00:31", "url": "https://files.pythonhosted.org/packages/f1/cf/24253a844d064cd8f6039f0f559cf5db31c9b01d2254f31f42f019a151c9/django-request-logging-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "54173cd9ed59f46c7a9f4feb64137f72", "sha256": "d5a59779a4de571addea6c5a5539b3fc379a031ee46070534c9283ece3f13d0a" }, "downloads": -1, "filename": "django_request_logging-0.6.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "54173cd9ed59f46c7a9f4feb64137f72", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6914, "upload_time": "2019-02-19T15:49:11", "url": "https://files.pythonhosted.org/packages/e0/3b/de326292698491f5046389c8c7254539be53bff672f483c97eab39b7c434/django_request_logging-0.6.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23d7e9bb0b1b136eddb502221c270eb6", "sha256": "b36b8a355d58c4054a8151753d027e8c5f691e4a387a47ac7e9c9cb070656e2c" }, "downloads": -1, "filename": "django-request-logging-0.6.7.tar.gz", "has_sig": false, "md5_digest": "23d7e9bb0b1b136eddb502221c270eb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6495, "upload_time": "2019-02-19T15:49:15", "url": "https://files.pythonhosted.org/packages/f0/5c/b6e696e2a131dbf87549c2b15cc0e36357931c519ecb21a1c4a038769984/django-request-logging-0.6.7.tar.gz" } ], "0.6.8": [ { "comment_text": "", "digests": { "md5": "d31b64b0b9647d1d86507c2e75e196e6", "sha256": "1e29dc5f713525b2287714ebbd8673cc7c937c1283349cfdce1b502935255ee6" }, "downloads": -1, "filename": "django_request_logging-0.6.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d31b64b0b9647d1d86507c2e75e196e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7010, "upload_time": "2019-05-02T00:59:32", "url": "https://files.pythonhosted.org/packages/dd/7f/1379f0f53accb2d9edc3dcc1e35a6dc0ceb24d4b37eb0d516d01c1c9879c/django_request_logging-0.6.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "55587e9a7e1389dcd84889b9a574c368", "sha256": "172b0c7865f8ea93e66c08eab83b1af2ea4a4bb6d4b048135498482dd129ec0b" }, "downloads": -1, "filename": "django-request-logging-0.6.8.tar.gz", "has_sig": false, "md5_digest": "55587e9a7e1389dcd84889b9a574c368", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6494, "upload_time": "2019-05-02T00:59:34", "url": "https://files.pythonhosted.org/packages/ea/b2/a84ccb5c872d6f07020b1681cf0d7965362fe5650e9760723358c7420e5e/django-request-logging-0.6.8.tar.gz" } ], "0.6.9": [ { "comment_text": "", "digests": { "md5": "49f8fda27873ded5672a5894541412ef", "sha256": "35a39b0536a1e344f1870b73764c5ffebb1c5ab2a24c6872a7dca045769a0438" }, "downloads": -1, "filename": "django_request_logging-0.6.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "49f8fda27873ded5672a5894541412ef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7032, "upload_time": "2019-05-02T12:57:05", "url": "https://files.pythonhosted.org/packages/e8/eb/27174b195b597d0462e69dbfa28adb8016721697fabe8cedcd3e631c711a/django_request_logging-0.6.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2015dc303a4aa2180546fa9cd2fbe3f3", "sha256": "736ae1ff1393d59358d4af50b53658f0ce212a499297549c36257f407f359542" }, "downloads": -1, "filename": "django-request-logging-0.6.9.tar.gz", "has_sig": false, "md5_digest": "2015dc303a4aa2180546fa9cd2fbe3f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6595, "upload_time": "2019-05-02T12:57:07", "url": "https://files.pythonhosted.org/packages/1b/64/6927087e9010145f1310c972f443651190ce392115a0da5080eb6349d6ba/django-request-logging-0.6.9.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "2362c4de01970bd98cb9bfe2dadf9c92", "sha256": "17e8f536fe0209f2f17c499ae32bed0aa64955fda063e167f36361ac2bed4e05" }, "downloads": -1, "filename": "django_request_logging-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2362c4de01970bd98cb9bfe2dadf9c92", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6915, "upload_time": "2019-05-23T12:58:39", "url": "https://files.pythonhosted.org/packages/7e/e9/da4f1260d37bd078f95bf86b311e3cd39f57709f00472ac579b768645660/django_request_logging-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c06680100fe7437ba74b767d0f48c2d", "sha256": "56a269cdad83ef0332adc5e3438b19822b225458884ced98308d0a7237137962" }, "downloads": -1, "filename": "django-request-logging-0.7.0.tar.gz", "has_sig": false, "md5_digest": "0c06680100fe7437ba74b767d0f48c2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6486, "upload_time": "2019-05-23T12:58:40", "url": "https://files.pythonhosted.org/packages/ed/4b/48aa535c90efed8aba951d4d36e570c1f471433f1c37834c5c0a71924220/django-request-logging-0.7.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2362c4de01970bd98cb9bfe2dadf9c92", "sha256": "17e8f536fe0209f2f17c499ae32bed0aa64955fda063e167f36361ac2bed4e05" }, "downloads": -1, "filename": "django_request_logging-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2362c4de01970bd98cb9bfe2dadf9c92", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6915, "upload_time": "2019-05-23T12:58:39", "url": "https://files.pythonhosted.org/packages/7e/e9/da4f1260d37bd078f95bf86b311e3cd39f57709f00472ac579b768645660/django_request_logging-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c06680100fe7437ba74b767d0f48c2d", "sha256": "56a269cdad83ef0332adc5e3438b19822b225458884ced98308d0a7237137962" }, "downloads": -1, "filename": "django-request-logging-0.7.0.tar.gz", "has_sig": false, "md5_digest": "0c06680100fe7437ba74b767d0f48c2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6486, "upload_time": "2019-05-23T12:58:40", "url": "https://files.pythonhosted.org/packages/ed/4b/48aa535c90efed8aba951d4d36e570c1f471433f1c37834c5c0a71924220/django-request-logging-0.7.0.tar.gz" } ] }