{ "info": { "author": "Erik van Zijst", "author_email": "erik.van.zijst@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Debuggers", "Topic :: Utilities" ], "description": "=======================================\nDogslow -- Django Slow Request Watchdog\n=======================================\n\n\nOverview\n--------\n\nDogslow is a Django watchdog middleware class that logs tracebacks of slow\nrequests.\n\nIt started as an `internal project inside Bitbucket`_ to help trace\noperational problems.\n\n.. _internal project inside Bitbucket: http://blog.bitbucket.org/2011/05/17/tracking-slow-requests-with-dogslow/\n\n\nInstallation\n------------\n\nInstall dogslow::\n\n $ pip install dogslow\n\nThen add ``dogslow.WatchdogMiddleware`` to your list of middleware classes in\nyour Django settings.py file::\n\n MIDDLEWARE_CLASSES = (\n 'dogslow.WatchdogMiddleware',\n ...\n )\n\nIt can also be used as a Django 2.0-style middleware function::\n\n MIDDLEWARE = (\n 'dogslow.WatchdogMiddleware',\n ...\n )\n\nFor best results, make it one of the first middlewares that is run.\n\n\nConfiguration\n-------------\n\nYou can use the following configuration properties in your ``settings.py``\nfile to tune the watchdog::\n\n # Watchdog is enabled by default, to temporarily disable, set to False:\n DOGSLOW = True\n\n # By default, Watchdog will create log files with the backtraces.\n # You can also set the location of where it stores them:\n DOGSLOW_LOG_TO_FILE = True\n DOGSLOW_OUTPUT = '/tmp'\n\n # Log requests taking longer than 25 seconds:\n DOGSLOW_TIMER = 25\n\n # When both specified, emails backtraces:\n # (DOGSLOW_EMAIL_TO can also be a list of addresses)\n DOGSLOW_EMAIL_TO = 'errors@atlassian.com'\n DOGSLOW_EMAIL_FROM = 'no-reply@atlassian.com'\n\n # Also log to this logger (defaults to none):\n DOGSLOW_LOGGER = 'syslog_logger'\n DOGSLOW_LOG_LEVEL = 'WARNING'\n\n # Tuple of url pattern names that should not be monitored:\n # (defaults to none -- everything monitored)\n # Note: this option is not compatible with Django < 1.3\n DOGSLOW_IGNORE_URLS = ('some_view', 'other_view')\n\n # Print (potentially huge!) local stack variables (off by default, use\n # True for more detailed, but less manageable reports)\n DOGSLOW_STACK_VARS = True\n\n\nUsage\n-----\n\nEvery incoming HTTP request gets a 25 second timeout in the watchdog. If a\nrequest does not return within that time, the watchdog activates and takes a\npeek at the request thread's stack and writes the backtrace (including all\nlocal stack variables -- Django style) to a log file.\n\nEach slow request is logged in a separate file that looks like this::\n\n Undead request intercepted at: 16-05-2011 02:10:12 UTC\n\n GET http://localhost:8000/?delay=2\n Thread ID: 140539485042432\n Process ID: 18010\n Started: 16-05-2011 02:10:10 UTC\n\n File \"/home/erik/work/virtualenv/bit/lib/python2.7/site-packages/django/core/management/commands/runserver.py\", line 107, in inner_run\n run(self.addr, int(self.port), handler, ipv6=self.use_ipv6)\n File \"/home/erik/work/virtualenv/bit/lib/python2.7/site-packages/django/core/servers/basehttp.py\", line 696, in run\n httpd.serve_forever()\n File \"/usr/lib/python2.7/SocketServer.py\", line 227, in serve_forever\n self._handle_request_noblock()\n File \"/usr/lib/python2.7/SocketServer.py\", line 284, in _handle_request_noblock\n self.process_request(request, client_address)\n File \"/usr/lib/python2.7/SocketServer.py\", line 310, in process_request\n self.finish_request(request, client_address)\n File \"/usr/lib/python2.7/SocketServer.py\", line 323, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"/home/erik/work/virtualenv/bit/lib/python2.7/site-packages/django/core/servers/basehttp.py\", line 570, in __init__\n BaseHTTPRequestHandler.__init__(self, *args, **kwargs)\n File \"/usr/lib/python2.7/SocketServer.py\", line 639, in __init__\n self.handle()\n File \"/home/erik/work/virtualenv/bit/lib/python2.7/site-packages/django/core/servers/basehttp.py\", line 615, in handle\n handler.run(self.server.get_app())\n File \"/home/erik/work/virtualenv/bit/lib/python2.7/site-packages/django/core/servers/basehttp.py\", line 283, in run\n self.result = application(self.environ, self.start_response)\n File \"/home/erik/work/virtualenv/bit/lib/python2.7/site-packages/django/contrib/staticfiles/handlers.py\", line 68, in __call__\n return self.application(environ, start_response)\n File \"/home/erik/work/virtualenv/bit/lib/python2.7/site-packages/django/core/handlers/wsgi.py\", line 273, in __call__\n response = self.get_response(request)\n File \"/home/erik/work/virtualenv/bit/lib/python2.7/site-packages/django/core/handlers/base.py\", line 111, in get_response\n response = callback(request, *callback_args, **callback_kwargs)\n File \"/home/erik/work/middleware/middleware/sleep/views.py\", line 6, in sleep\n time.sleep(float(request.GET.get('delay', 1)))\n\n Full backtrace with local variables:\n\n File \"/home/erik/work/virtualenv/bit/lib/python2.7/site-packages/django/core/management/commands/runserver.py\", line 107, in inner_run\n run(self.addr, int(self.port), handler, ipv6=self.use_ipv6)\n\n ...loads more...\n\nThe example above shows that the request thread was blocked in\n``time.sleep()`` at the time ``dogslow`` took its snapshot.\n\nRequests that return before ``dogslow``'s timeout expires do not get logged.\n\nNote that ``dogslow`` only takes a peek at the thread's stack. It does not\ninterrupt the request, or influence it in any other way. Using ``dogslow`` is\ntherefore safe to use in production.\n\n\nSentry Integration\n------------------\n\nDogslow natively integrates with Sentry. You can set it up by configuring\nDogslow to use ``DOGSLOW_LOGGER`` and ``DOGSLOW_LOG_TO_SENTRY`` and by\n`configuring Raven`_ to collect Dogslow's reports. ::\n\n DOGSLOW_LOGGER = 'dogslow' # can be anything, but must match `logger` below\n DOGSLOW_LOG_TO_SENTRY = True\n \n DOGSLOW_LOG_LEVEL = 'WARNING' # optional, defaults to 'WARNING'\n \n # Add a new sentry handler to handle WARNINGs. It's not recommended to\n # modify the existing sentry handler, as you'll probably start seeing\n # other warnings unnecessarily sent to Sentry.\n LOGGING = {\n ...\n 'handlers': {\n ...\n 'dogslow': {\n 'level': 'WARNING',\n 'class': 'raven.contrib.django.handlers.SentryHandler',\n }\n ...\n }\n 'loggers': {\n ...\n 'dogslow': {\n 'level': 'WARNING',\n 'handlers': ['dogslow'], # or whatever you named your handler\n }\n ...\n }\n ...\n }\n \n\n.. _configuring Raven: http://raven.readthedocs.org/en/latest/config/django.html#integration-with-logging\n\n\nCaveats\n-------\n\nDogslow uses multithreading. It has a single background thread that handles the\nwatchdog timeouts and takes the tracebacks, so that the original request\nthreads are not interrupted. This has some consequences.\n\n\nMultithreading and the GIL\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIn CPython, the GIL (Global Interpreter Lock) prevents multiple threads from\nexecuting Python code simultaneously. Only when a thread explicitly releases\nits lock on the GIL, can a second thread run.\n\nReleasing the GIL is done automatically whenever a Python program makes\nblocking calls outside of the interpreter, for example when doing IO.\n\nFor ``dogslow`` this means that it can only reliably intercept requests that\nare slow because they are doing IO, calling sleep or busy waiting to acquire\nlocks themselves.\n\nIn most cases this is fine. An important cause of slow Django requests is an\nexpensive database query. Since this is IO, ``dogslow`` can intercept those\nfine. A scenario where CPython's GIL is problematic is when the request's\nthread hits an infinite loop in Python code (or legitimate Python that is\nextremely expensive and takes a long time to execute), never releasing the\nGIL. Even though ``dogslow``'s watchdog timer thread does become runnable, it\ncannot log the stack.\n\n\nCo-routines and Greenlets\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\n``Dogslow`` is intended for use in a synchronous worker configuration. A\nwebserver that uses dedicated threads (or single-threaded, dedicated worker\nprocesses) to serve requests. Django's built-in wsgi server does this, as\ndoes ``Gunicorn`` in its default sync-worker mode.\n\nWhen running with a \"co-routines framework\" where multiple requests are served\nconcurrently by one thread, backtraces might become nonsensical.\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://bitbucket.org/evzijst/dogslow", "keywords": "django debug watchdog middleware traceback", "license": "GNU LGPL", "maintainer": "", "maintainer_email": "", "name": "dogslow", "package_url": "https://pypi.org/project/dogslow/", "platform": "", "project_url": "https://pypi.org/project/dogslow/", "project_urls": { "Homepage": "https://bitbucket.org/evzijst/dogslow" }, "release_url": "https://pypi.org/project/dogslow/1.2/", "requires_dist": null, "requires_python": "", "summary": "A Django middleware that logs tracebacks of slow requests.", "version": "1.2" }, "last_serial": 3462642, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "b2076fece98dee7d9eb73587101307dc", "sha256": "e6b89ca033f1a92a74eb8aa4951ec0a0792c131e29361a0170459132139501a4" }, "downloads": -1, "filename": "dogslow-0.1.tar.gz", "has_sig": false, "md5_digest": "b2076fece98dee7d9eb73587101307dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13446, "upload_time": "2011-05-16T07:28:36", "url": "https://files.pythonhosted.org/packages/82/84/69a35dd84e91136e2160ccb98346a2f90837aa3ebcfd567c65af6b23639e/dogslow-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "df4feda2c4d4889f4c53ac404edccba3", "sha256": "ff2ab2840dc0c9b9a4974cc063c7776f046a4d16adb293206d7feeb3e148a761" }, "downloads": -1, "filename": "dogslow-0.2.tar.gz", "has_sig": false, "md5_digest": "df4feda2c4d4889f4c53ac404edccba3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15504, "upload_time": "2011-05-16T08:32:37", "url": "https://files.pythonhosted.org/packages/3a/24/ddb6a2ebe873eaf9337ecde286168d8d4b4211bfe43249e234291904be00/dogslow-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "e5cb26543a98d3f05a28679626229ade", "sha256": "be421e6d8e37d9b3dfbe74553f5a86be6c2eeaec0e05f5fde85b3525b657defa" }, "downloads": -1, "filename": "dogslow-0.3.tar.gz", "has_sig": false, "md5_digest": "e5cb26543a98d3f05a28679626229ade", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15536, "upload_time": "2011-05-16T08:57:08", "url": "https://files.pythonhosted.org/packages/8b/44/8052bc1d6689d03a18e21d7b26f8d2dfaf2901953098a06cd155ca849946/dogslow-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "de9ab0db0a74f143253e497fac3536a8", "sha256": "37494d4d4ce8db6fb15b236a6edbcab6b826ac16f572d14ba01ff3ebf34f286c" }, "downloads": -1, "filename": "dogslow-0.4.tar.gz", "has_sig": false, "md5_digest": "de9ab0db0a74f143253e497fac3536a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15546, "upload_time": "2011-05-16T10:25:41", "url": "https://files.pythonhosted.org/packages/47/b7/4462ccdfeeda7f5f506962ec3200629796f6cac08d229848dfb9f53ba6c3/dogslow-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "154d014cfdaef12b4a6f5768bc206959", "sha256": "c5be1d920cdde5f7a1a079a760a17b66315d0a74062d5b117d86f4a4a7d35e72" }, "downloads": -1, "filename": "dogslow-0.5.tar.gz", "has_sig": false, "md5_digest": "154d014cfdaef12b4a6f5768bc206959", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17324, "upload_time": "2011-05-17T09:49:26", "url": "https://files.pythonhosted.org/packages/14/9e/34e46e8ba2365bdfbee2472608ca70fada22e4869af899dce75ae6a54929/dogslow-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "6166a63f3cf0792c027255c5aba52b64", "sha256": "1d0216dbc0f0f52877401c4cae1bf98d51c653404fa5375fc198d36829fe25c5" }, "downloads": -1, "filename": "dogslow-0.6.tar.gz", "has_sig": false, "md5_digest": "6166a63f3cf0792c027255c5aba52b64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17347, "upload_time": "2011-05-19T14:18:38", "url": "https://files.pythonhosted.org/packages/88/bc/7330793e0f7cd64d65b60b8e19a30a11f25253814b8594b556e13744ebc2/dogslow-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "75d70b8a4cba65ae672792c22c61bb3e", "sha256": "c25f59f6124e2eb16b9fd188c195b9842f958c76d909858dcbadd4ab27ebfcaa" }, "downloads": -1, "filename": "dogslow-0.7.tar.gz", "has_sig": false, "md5_digest": "75d70b8a4cba65ae672792c22c61bb3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17788, "upload_time": "2011-07-15T04:37:18", "url": "https://files.pythonhosted.org/packages/58/89/1252457c1d29fc39eb9e99c9fe48f6999677168f958f4d0cfc089fbb1e4d/dogslow-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "34494ab7175094bfc95a7baf54df6bde", "sha256": "9e015942b431181b2b6e12b7cc14f8915bb1fe2ddee121358aef50518a431198" }, "downloads": -1, "filename": "dogslow-0.8.tar.gz", "has_sig": false, "md5_digest": "34494ab7175094bfc95a7baf54df6bde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17738, "upload_time": "2011-08-02T07:11:49", "url": "https://files.pythonhosted.org/packages/f1/0c/22d8aa564c726c2b8386a3e412d3a8cdbe2cbd29032009c35adad1937a8a/dogslow-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "b4a0af937c8f8840999372cba6085fa6", "sha256": "8eb7f811bc548393df6ba770f92a5f29bc5b25dc4f1d6e4a62e114963514c3c9" }, "downloads": -1, "filename": "dogslow-0.9.tar.gz", "has_sig": false, "md5_digest": "b4a0af937c8f8840999372cba6085fa6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17973, "upload_time": "2011-08-02T08:11:43", "url": "https://files.pythonhosted.org/packages/c3/69/2dc5de22e8728975c0f826aa1adbeca4a855e403d93146e3bfc0820d802a/dogslow-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "8a302ede2e701995cc176ea698d73541", "sha256": "29be33c9f0f319bdab62c35a6753f42add9fd0aa6e9d442342c6bcc0be0c8504" }, "downloads": -1, "filename": "dogslow-0.9.1.tar.gz", "has_sig": false, "md5_digest": "8a302ede2e701995cc176ea698d73541", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17966, "upload_time": "2011-08-09T14:53:45", "url": "https://files.pythonhosted.org/packages/b1/aa/b9fd6f865adfae4d5f86aa17b766bd247dc0047d7ce629159f76346989fc/dogslow-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "8796822250b1b634f57d6a32efbe866d", "sha256": "2f5fa3e964bad0ee27975d910ebcefd0c1b3cbff0798ed567db0c58bb65becfc" }, "downloads": -1, "filename": "dogslow-0.9.2.tar.gz", "has_sig": false, "md5_digest": "8796822250b1b634f57d6a32efbe866d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17987, "upload_time": "2011-09-01T14:43:37", "url": "https://files.pythonhosted.org/packages/69/23/d84f35b4cca0f8a56531b709188ab381a52a841e5018ee7098319dfe756a/dogslow-0.9.2.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "96c6468021598c14b2c589aca0fb3dce", "sha256": "ebd3b12bbe36e3af53c0987d148648016d904af130306f9e69b1cc427bd9271d" }, "downloads": -1, "filename": "dogslow-0.9.4.tar.gz", "has_sig": false, "md5_digest": "96c6468021598c14b2c589aca0fb3dce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17933, "upload_time": "2012-06-12T03:15:42", "url": "https://files.pythonhosted.org/packages/12/98/76fbc40a47cfa899050cc13dece781df94094e66146c74bb12c31c03827c/dogslow-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "2f3d2ac2f1afe65014efda1514e20232", "sha256": "7166d38cd58413786ed89b1c30ddd1e5aea9c11ea29fd539651f076d40af9875" }, "downloads": -1, "filename": "dogslow-0.9.5.tar.gz", "has_sig": false, "md5_digest": "2f3d2ac2f1afe65014efda1514e20232", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18485, "upload_time": "2013-01-18T02:18:25", "url": "https://files.pythonhosted.org/packages/2d/d3/d55768232193ea7d7ee59332d37d20165980227497103ee46cb6bbfc6469/dogslow-0.9.5.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "846c6bd82e5d8ac4876230e1cd8af14d", "sha256": "6679479171f39c3cc081f7a244674f4ad98e26e1dadba20fffdab2e5eb90ba07" }, "downloads": -1, "filename": "dogslow-0.9.7.tar.gz", "has_sig": false, "md5_digest": "846c6bd82e5d8ac4876230e1cd8af14d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18693, "upload_time": "2013-05-13T18:41:27", "url": "https://files.pythonhosted.org/packages/2c/ce/b6f56a579c8c3b71a42f9a64d6ccdcd6a3e5bd6892663217746dd7098106/dogslow-0.9.7.tar.gz" } ], "0.9.8-rc2": [ { "comment_text": "", "digests": { "md5": "a0872244456cebdca530e15ec82a05e6", "sha256": "f292812a2708d0528e4e94c46ab78901456da64c00221ec616e449350dba9714" }, "downloads": -1, "filename": "dogslow-0.9.8-rc2.tar.gz", "has_sig": false, "md5_digest": "a0872244456cebdca530e15ec82a05e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18870, "upload_time": "2017-06-02T22:02:05", "url": "https://files.pythonhosted.org/packages/e6/75/c5481d479481a68172202c9565c0f6015b25d855ed6fc614fe812687674d/dogslow-0.9.8-rc2.tar.gz" } ], "0.9.8-rc3": [ { "comment_text": "", "digests": { "md5": "ba0ee0ffa001581cd61735e59f891786", "sha256": "64d4eb82d6fb494a8b4d61bc323a764bc13be68bac57ccf632d11d6f1fe42bc5" }, "downloads": -1, "filename": "dogslow-0.9.8-rc3.tar.gz", "has_sig": false, "md5_digest": "ba0ee0ffa001581cd61735e59f891786", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19039, "upload_time": "2017-06-09T20:13:23", "url": "https://files.pythonhosted.org/packages/40/38/faf60a79b7c3f58011c62b4329d3e94c7afea0a333a04081934285ccfe5d/dogslow-0.9.8-rc3.tar.gz" } ], "0.9.9": [ { "comment_text": "", "digests": { "md5": "ce39f9ac67dc32383c9ddbe802dc6bc8", "sha256": "6e4e8f9fd361137477595a567495e5c9fb1707107a7b9f70c60bd746987f7e00" }, "downloads": -1, "filename": "dogslow-0.9.9.tar.gz", "has_sig": false, "md5_digest": "ce39f9ac67dc32383c9ddbe802dc6bc8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19681, "upload_time": "2017-06-16T03:43:53", "url": "https://files.pythonhosted.org/packages/c8/d4/c9d98a9895d749fdf34f5529923b304a51e7e5acbf67f2392015b46e2ed0/dogslow-0.9.9.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "ec49de1487b03ad6c515d5823620f41e", "sha256": "13fa0fc97eba57c9a533d8bdc61aa49d42d02b7bac49e80e7d1a796333fa4969" }, "downloads": -1, "filename": "dogslow-1.0.0.tar.gz", "has_sig": false, "md5_digest": "ec49de1487b03ad6c515d5823620f41e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19595, "upload_time": "2017-06-28T20:45:06", "url": "https://files.pythonhosted.org/packages/28/be/9fb712eef354f74641d31bd9812d062a50eb7aeca44d3ed61b16453150f7/dogslow-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "b49dc7ce298dfa7818b8ef3e3acd11c2", "sha256": "4af701cd0bca4e43739280542d8f9b98b77071cdbc7e201eaab0e885dcca4632" }, "downloads": -1, "filename": "dogslow-1.0.1.tar.gz", "has_sig": false, "md5_digest": "b49dc7ce298dfa7818b8ef3e3acd11c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19457, "upload_time": "2017-12-15T16:06:23", "url": "https://files.pythonhosted.org/packages/27/c0/0222fe79e540c97a9b9cdc54f7be774029cd37dbf4ea22c6426eb7ad89dd/dogslow-1.0.1.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "c2828d302b8f8b803b34e0f94aabe156", "sha256": "86656620d2da4a5b3d9b4055a6ec6a40e845a6af9089ed9d18393703d2c85f5a" }, "downloads": -1, "filename": "dogslow-1.1.tar.gz", "has_sig": false, "md5_digest": "c2828d302b8f8b803b34e0f94aabe156", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19502, "upload_time": "2018-01-02T21:18:47", "url": "https://files.pythonhosted.org/packages/14/08/631b94f9b9e383f45715790e7f8ae23203667845ab899f7db4028fc0d200/dogslow-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "1797319efe6c73eba3b41bd794493510", "sha256": "ad02632828d500dfe00ac7f0b852b60fd6008b7c7213f6e3233e0b881513fb2b" }, "downloads": -1, "filename": "dogslow-1.2.tar.gz", "has_sig": false, "md5_digest": "1797319efe6c73eba3b41bd794493510", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19692, "upload_time": "2018-01-04T20:28:03", "url": "https://files.pythonhosted.org/packages/df/4a/71818986c7a678698d0d2e24f7f3ac6ee0a6f1a8902e57976d5b82348c54/dogslow-1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1797319efe6c73eba3b41bd794493510", "sha256": "ad02632828d500dfe00ac7f0b852b60fd6008b7c7213f6e3233e0b881513fb2b" }, "downloads": -1, "filename": "dogslow-1.2.tar.gz", "has_sig": false, "md5_digest": "1797319efe6c73eba3b41bd794493510", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19692, "upload_time": "2018-01-04T20:28:03", "url": "https://files.pythonhosted.org/packages/df/4a/71818986c7a678698d0d2e24f7f3ac6ee0a6f1a8902e57976d5b82348c54/dogslow-1.2.tar.gz" } ] }