{ "info": { "author": "Evgeniy Krysanov", "author_email": "evgeniy.krysanov@gmail.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.8", "Framework :: Django :: 1.9", "Framework :: Django :: 1.10", "Framework :: Django :: 1.11", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Framework :: Django :: 2.2", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9" ], "description": "# django-speedinfo\n\n[![Build Status](https://travis-ci.org/catcombo/django-speedinfo.svg?branch=master)](https://travis-ci.org/catcombo/django-speedinfo)\n[![Coverage Status](https://coveralls.io/repos/github/catcombo/django-speedinfo/badge.svg?branch=master)](https://coveralls.io/github/catcombo/django-speedinfo?branch=master)\n\n`django-speedinfo` is a live profiling tool for Django projects to find\nthe most high loaded views for the next optimization. `django-speedinfo` counts\nnumber of calls, cache hits, SQL queries, measures average and total call time\nand more for each of your views. Detailed report and profiler controls are\navailable in Django admin.\n\n![Speedinfo admin screenshot](https://github.com/catcombo/django-speedinfo/raw/master/screenshots/main.png)\n\n\n# Prerequisites\n\n- Python 2.7, 3.6+\n- Django 1.8+\n\n\n# Installation\n\n```\npip install django-speedinfo\n```\n\n# Upgrading from 1.x\n\nOld profiling data will be unavailable after upgrading. Don't forget to export the data in advance.\n\n- Setup one of the storage backends as shown in the section 4 of [Setup](#setup) below.\n- `SPEEDINFO_PROFILING_CONDITIONS` is empty by default. If you use `SPEEDINFO_EXCLUDE_URLS` in your\n project you need to initialize the list of conditions explicitly:\n `SPEEDINFO_PROFILING_CONDITIONS = [\"speedinfo.conditions.exclude_urls.ExcludeURLCondition\"]`\n- `SPEEDINFO_REPORT_COLUMNS` and `SPEEDINFO_REPORT_COLUMNS_FORMAT` were removed, use `SPEEDINFO_ADMIN_COLUMNS` instead.\n Every entry in `SPEEDINFO_ADMIN_COLUMNS` list is a tuple (column name, value format, attribute name).\n See [Customize admin columns](#customize-admin-columns) for details. To add extra columns\n follow the instruction in the section [Extra admin columns](#extra-admin-columns) below.\n- `speedinfo.settings` module renamed to `speedinfo.conf`\n- Base condition class was renamed from `Condition` to `AbstractCondition`\n\n\n# Setup\n\n1. Add `speedinfo` to `INSTALLED_APPS`.\n2. Add `speedinfo.middleware.ProfilerMiddleware` to the end of `MIDDLEWARE` (or `MIDDLEWARE_CLASSES` for Django < 1.10) \nlist, but before `django.middleware.cache.FetchFromCacheMiddleware` (if used):\n ```\n MIDDLEWARE = [\n ...,\n \"speedinfo.middleware.ProfilerMiddleware\",\n \"django.middleware.cache.FetchFromCacheMiddleware\",\n ]\n ```\n3. Setup any cache backend (except local-memory and dummy caching) using our proxy cache backend.\n`django-speedinfo` needs the cache to store profiler state between requests and to intercept calls to cache:\n ```\n CACHES = {\n \"default\": {\n \"BACKEND\": \"speedinfo.backends.proxy_cache\",\n \"CACHE_BACKEND\": \"django.core.cache.backends.filebased.FileBasedCache\",\n \"LOCATION\": \"/var/tmp/django_cache\",\n }\n }\n ```\n4. Setup storage for profiling data. `django-speedinfo` comes with two storages to choose from:\n - **Database storage**\n 1. Add `speedinfo.storage.database` to `INSTALLED_APPS`.\n 2. Add `SPEEDINFO_STORAGE = \"speedinfo.storage.database.storage.DatabaseStorage\"` to project settings.\n 3. Run `python manage.py migrate`.\n - **Cache storage**\n 1. Add `SPEEDINFO_STORAGE = \"speedinfo.storage.cache.storage.CacheStorage\"` to project settings.\n 2. Optionally you may define a separate cache in `CACHES` to store profiling data.\n To use it in `CacheStorage` assign `SPEEDINFO_CACHE_STORAGE_CACHE_ALIAS` to the appropriate cache alias.\n Example:\n ```\n CACHES = {\n \"default\": {\n \"BACKEND\": \"speedinfo.backends.proxy_cache\",\n \"CACHE_BACKEND\": \"django.core.cache.backends.db.DatabaseCache\",\n \"LOCATION\": \"cache_table\",\n },\n \"speedinfo-storage\": {\n \"BACKEND\": \"django.core.cache.backends.memcached.MemcachedCache\",\n \"LOCATION\": \"127.0.0.1:11211\",\n },\n })\n \n SPEEDINFO_CACHE_STORAGE_CACHE_ALIAS = \"speedinfo-storage\"\n ```\n5. Run `python manage.py collectstatic`.\n\n\n# Usage\n\nOpen `Views profiler` in Django admin. Click the `Turn on` / `Turn off` button\nto control profiler state. Press `Reset` button to delete all profiling data.\n\n\n# Advanced features\n\n## Custom page caching\n\n`django-speedinfo` automatically detects when Django use per-site caching via\n`UpdateCacheMiddleware` and `FetchFromCacheMiddleware` middlewares\nor per-view caching via `cache_page` decorator and counts cache hit\nwhen retrieving pages from the cache.\n\nIf you implement your own caching logic and want to mark the view response\nas obtained from the cache, add specified attribute to the `HttpResponse` object\nas shown below:\n```\nfrom django.views import View\nfrom from speedinfo.conf import speedinfo_settings\n\nclass CachedView(View):\n def get(self, request, *args, **kwargs):\n # ...\n # Assume that `response` was taken from the cache\n setattr(response, speedinfo_settings.SPEEDINFO_CACHED_RESPONSE_ATTR_NAME, True)\n return response\n```\nThe default value of `SPEEDINFO_CACHED_RESPONSE_ATTR_NAME` is `_is_cached`.\nBut you can override it if the attribute name is conflicts with your application logic.\n\n## Customize admin columns\n\n`SPEEDINFO_ADMIN_COLUMNS` allows to control visibility and appearance of Django admin\nprofiler columns. Every entry in the `SPEEDINFO_ADMIN_COLUMNS` list is a tuple of\n(column name, value format, `ViewProfiler` attribute name). Default value:\n```\nSPEEDINFO_ADMIN_COLUMNS = (\n (\"View name\", \"{}\", \"view_name\"),\n (\"HTTP method\", \"{}\", \"method\"),\n (\"Anonymous calls\", \"{:.1f}%\", \"anon_calls_ratio\"),\n (\"Cache hits\", \"{:.1f}%\", \"cache_hits_ratio\"),\n (\"SQL queries per call\", \"{}\", \"sql_count_per_call\"),\n (\"SQL time\", \"{:.1f}%\", \"sql_time_ratio\"),\n (\"Total calls\", \"{}\", \"total_calls\"),\n (\"Time per call\", \"{:.8f}\", \"time_per_call\"),\n (\"Total time\", \"{:.4f}\", \"total_time\"),\n)\n```\n\n## Extra admin columns\n\nTo add additional data to a storage and columns to admin follow the instruction:\n\n1. Create [custom storage backend](#custom-storage-backend) which will hold or calculate\n additional fields.\n2. Implement storage `fetch_all()` method that will return the list of the `ViewProfiler`\n instances initialized with the extra fields. Example:\n ```\n def fetch_all(self, ordering=None):\n ...\n return [\n ViewProfiler(view_name=\"...\", method=\"...\", ..., extra_field=\"...\")\n ...\n ]\n ```\n3. Implement sorting by extra fields in `fetch_all()` method.\n4. Add extra fields to `SPEEDINFO_ADMIN_COLUMNS` as described in the section\n [Customize admin columns](#customize-admin-columns).\n\n## Profiling conditions\n\n`SPEEDINFO_PROFILING_CONDITIONS` allows to declare a list of condition classes\nto filter profiling views by some rules. By default `SPEEDINFO_PROFILING_CONDITIONS` is empty.\n`django-speedinfo` comes with one build-in condition - `ExcludeURLCondition`. It allows to\nexclude some urls from profiling by adding them to the `SPEEDINFO_EXCLUDE_URLS` list.\nEach entry in `SPEEDINFO_EXCLUDE_URLS` is a regex compatible expression to test requested url.\nUsage example:\n```\nSPEEDINFO_PROFILING_CONDITIONS = [\n \"speedinfo.conditions.exclude_urls.ExcludeURLCondition\",\n]\n\nSPEEDINFO_EXCLUDE_URLS = [\n r\"/admin/\",\n r\"/news/$\",\n r\"/movie/\\d+/$\",\n]\n```\n\nTo define your own condition class, you must inherit from the base class `speedinfo.conditions.base.AbstractCondition`\nand implement all abstract methods. See `ExcludeURLCondition` source code for implementation example. Then add\nfull path to your class to `SPEEDINFO_PROFILING_CONDITIONS` list as shown above. Conditions in mentioned list\nare executed in a top-down order. The first condition returning `False` interrupts the further check.\n\n## Custom storage backend\n\n`django-speedinfo` comes with `DatabaseStorage` and `CacheStorage`. But you may want to write your\nown storage (e.g. for MongoDB, Redis or even file-based). First create the storage class based on\n`speedinfo.storage.base.AbstractStorage` and implement all abstract methods. See `speedinfo.storage.cache.storage`\nand `speedinfo.storage.database.storage` as an examples. Then add path to your custom storage class\nto the project settings `SPEEDINFO_STORAGE = \"path.to.module.CustomStorage\"`. Use our tests\nto make sure that everything works as intended (you need to clone repository to get access to the `tests` package):\n```\nfrom django.test import TestCase, override_settings\nfrom tests.test_storage import StorageTestCase\n\n@override_settings(\n SPEEDINFO_STORAGE=\"path.to.module.CustomStorage\",\n SPEEDINFO_TESTS=True,\n)\nclass CustomStorageTestCase(StorageTestCase, TestCase):\n pass\n```\n\n\n# Notice\n\nThe number of SQL queries measured by `django-speedinfo` may differ from the values\nof `django-debug-toolbar` for the same view. It happens because `django-speedinfo`\nshows the average number of SQL queries for each view. Also profiler doesn't take\ninto account SQL queries made in the preceding middlewares.\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/catcombo/django-speedinfo", "keywords": "django,profiler,views,metrics,monitoring", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django-speedinfo", "package_url": "https://pypi.org/project/django-speedinfo/", "platform": "", "project_url": "https://pypi.org/project/django-speedinfo/", "project_urls": { "Homepage": "https://github.com/catcombo/django-speedinfo", "Repository": "https://github.com/catcombo/django-speedinfo" }, "release_url": "https://pypi.org/project/django-speedinfo/2.0.2/", "requires_dist": null, "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "summary": "Live profiling tool for Django framework to measure views performance", "version": "2.0.2", "yanked": false, "yanked_reason": null }, "last_serial": 8377261, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "b64c9a77c1d7d2f2507b05f350495805", "sha256": "49a269481148cf63c1124ffe9329ed2c16558dd653566c70beadb7a052cd627e" }, "downloads": -1, "filename": "django_speedinfo-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b64c9a77c1d7d2f2507b05f350495805", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10662, "upload_time": "2017-10-06T13:49:54", "upload_time_iso_8601": "2017-10-06T13:49:54.539220Z", "url": "https://files.pythonhosted.org/packages/7b/a5/e1973480d536217fcee6d66967d2b4b60d13f698fb415c62f3002113585c/django_speedinfo-1.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac260cc1ba068e1ca67ba754d214c4a1", "sha256": "de13d0c333a2341e2196c20df758be797b46ae6343f61aec7c0635c065509751" }, "downloads": -1, "filename": "django-speedinfo-1.0.0.tar.gz", "has_sig": false, "md5_digest": "ac260cc1ba068e1ca67ba754d214c4a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6616, "upload_time": "2017-10-06T13:49:58", "upload_time_iso_8601": "2017-10-06T13:49:58.424656Z", "url": "https://files.pythonhosted.org/packages/5a/fd/c7f759c7137c2db5af08a3976bdc16813e032d649141863f1693703cfe54/django-speedinfo-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "bd5d29fc0c602731a717581aecb2fdbe", "sha256": "acbbe36e269a862b92258649dc5ddb456e3b060dcc0d8d8a2fb0013dceb0fbef" }, "downloads": -1, "filename": "django_speedinfo-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bd5d29fc0c602731a717581aecb2fdbe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11524, "upload_time": "2017-10-06T15:50:10", "upload_time_iso_8601": "2017-10-06T15:50:10.582157Z", "url": "https://files.pythonhosted.org/packages/bd/9d/0dd042299c6aed806da8f05ce41b56a5d3768dd760361f609b085f482d60/django_speedinfo-1.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "500d1f01d90e11daf8a790a6e791332a", "sha256": "d9a829dcaa8d10e8609016a6a21639fc841a956c8e775a1ca25593dbc0834b9c" }, "downloads": -1, "filename": "django-speedinfo-1.0.1.tar.gz", "has_sig": false, "md5_digest": "500d1f01d90e11daf8a790a6e791332a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7027, "upload_time": "2017-10-06T15:50:12", "upload_time_iso_8601": "2017-10-06T15:50:12.597203Z", "url": "https://files.pythonhosted.org/packages/6c/b7/fb77ada908a0aa254d4d58b89528d37f8fd3773836877ebabb7a6adfafd2/django-speedinfo-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "93fdced2d27c2c9fbc26684f01b5aa1b", "sha256": "21a9028507986ec1ede43d67aef12c210364bcdce8420a7314b0bdacd5f81b6d" }, "downloads": -1, "filename": "django_speedinfo-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "93fdced2d27c2c9fbc26684f01b5aa1b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13189, "upload_time": "2017-10-10T12:31:15", "upload_time_iso_8601": "2017-10-10T12:31:15.707356Z", "url": "https://files.pythonhosted.org/packages/23/ac/bf9b9aa3e6803860669e42db0a7ca469722898ab4305644f0697b91d8385/django_speedinfo-1.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd877b8c6d530dee4636fa608e250544", "sha256": "7839e0595cfb6e7fcc0cae041c91090d197a8bec9e0c0ae10bc331c481695b86" }, "downloads": -1, "filename": "django-speedinfo-1.1.0.tar.gz", "has_sig": false, "md5_digest": "bd877b8c6d530dee4636fa608e250544", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8059, "upload_time": "2017-10-10T12:31:17", "upload_time_iso_8601": "2017-10-10T12:31:17.383657Z", "url": "https://files.pythonhosted.org/packages/a5/42/b422e44aa28c823a2a7d891b8814aa3c13879c40229c76a37c8f740ac702/django-speedinfo-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "3ad427c4fd05f399dd50721c763b6572", "sha256": "4a9eb7fb730475d9a70fb71899e388aee4129b00619ba2490e61975e674f2ad8" }, "downloads": -1, "filename": "django_speedinfo-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3ad427c4fd05f399dd50721c763b6572", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13701, "upload_time": "2017-10-23T14:30:28", "upload_time_iso_8601": "2017-10-23T14:30:28.950555Z", "url": "https://files.pythonhosted.org/packages/ba/a4/a67e21ef0c6896a3898db9d4a33629a590ac11fbf172a0d6fa9022cb1957/django_speedinfo-1.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d0b0adfdc9beabfce36dd883a82ab75", "sha256": "aacfbc0d85dbdad30168adffd9579f4211cedfc6dfe23b3bfb09763d51fe308c" }, "downloads": -1, "filename": "django-speedinfo-1.1.1.tar.gz", "has_sig": false, "md5_digest": "3d0b0adfdc9beabfce36dd883a82ab75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8168, "upload_time": "2017-10-23T14:30:30", "upload_time_iso_8601": "2017-10-23T14:30:30.509046Z", "url": "https://files.pythonhosted.org/packages/6c/e2/cc20af9b28c3f774f5dd3fb2dc55c214fa68240dc6e44ff3cabe71f09709/django-speedinfo-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2": [ { "comment_text": "", "digests": { "md5": "511ae75c7c1c75c1f2bc490cd8ed1257", "sha256": "3f6ea61c3a03a6c720e3688930681bf01a0a0a433dfa9e770106061aa7a7a708" }, "downloads": -1, "filename": "django_speedinfo-1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "511ae75c7c1c75c1f2bc490cd8ed1257", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14782, "upload_time": "2017-11-08T15:41:43", "upload_time_iso_8601": "2017-11-08T15:41:43.462428Z", "url": "https://files.pythonhosted.org/packages/93/67/c14bf7b8c2d107394935ea48fc4f6f81121cb377c420659578a60f751c8f/django_speedinfo-1.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8e2a1d008694a5c0cb230e9bc85dca4", "sha256": "088b7dd98e3dd537ee149725615b4ea4edea5e83cf461d11bad739c9961926e2" }, "downloads": -1, "filename": "django-speedinfo-1.2.tar.gz", "has_sig": false, "md5_digest": "e8e2a1d008694a5c0cb230e9bc85dca4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8913, "upload_time": "2017-11-08T15:41:44", "upload_time_iso_8601": "2017-11-08T15:41:44.752607Z", "url": "https://files.pythonhosted.org/packages/53/00/1f4afbd41a0051b54e1d5871da556beaecd59da9457c10a94a08c91c1d36/django-speedinfo-1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3": [ { "comment_text": "", "digests": { "md5": "fd00c6a8b2c6a988b25a90498d7364d2", "sha256": "5b39ac1d67d9f4ba21b007d016f792e73d82e09dfc75534d0ff86b2bb6514186" }, "downloads": -1, "filename": "django_speedinfo-1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd00c6a8b2c6a988b25a90498d7364d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14931, "upload_time": "2017-11-11T08:31:39", "upload_time_iso_8601": "2017-11-11T08:31:39.777699Z", "url": "https://files.pythonhosted.org/packages/cd/a4/36b53d74aadacef72fc3538e7717f9972ca5f72e2467fd28dca7281223ca/django_speedinfo-1.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad4c6f1d30f363bb093bc6ef9c4081cc", "sha256": "ad1ae84af8edfc143d410148e4bb51a84d4daf297ca7f2b206faa42661a244cc" }, "downloads": -1, "filename": "django-speedinfo-1.3.tar.gz", "has_sig": false, "md5_digest": "ad4c6f1d30f363bb093bc6ef9c4081cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8976, "upload_time": "2017-11-11T08:31:42", "upload_time_iso_8601": "2017-11-11T08:31:42.177888Z", "url": "https://files.pythonhosted.org/packages/14/23/02f13086e419d6fcb05870d5791c572dcf7f2459508114b14249fa9c3e4a/django-speedinfo-1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "24b21e8eecece21ccedcc1299959e74b", "sha256": "5523cdf3dd0b387c276bb332a3587afdc2d8475b8bcfb16625ec6df2d0087ebd" }, "downloads": -1, "filename": "django_speedinfo-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24b21e8eecece21ccedcc1299959e74b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14984, "upload_time": "2018-02-07T09:25:27", "upload_time_iso_8601": "2018-02-07T09:25:27.726112Z", "url": "https://files.pythonhosted.org/packages/3d/9d/181cac7d642ffbcdb1c93485b5f66f54b0e222e5339792b6d86030371656/django_speedinfo-1.3.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6bc0b5d29d7111b0752b2f6f4f4f89e", "sha256": "588d72fe98059628ddfc8c4e721a9e9038d7477bd01ab23e73ccc73d0374789d" }, "downloads": -1, "filename": "django-speedinfo-1.3.1.tar.gz", "has_sig": false, "md5_digest": "c6bc0b5d29d7111b0752b2f6f4f4f89e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9015, "upload_time": "2018-02-07T09:25:28", "upload_time_iso_8601": "2018-02-07T09:25:28.839984Z", "url": "https://files.pythonhosted.org/packages/b6/14/a764f497bcd455df20f32e9adc88bb44df70c453089641f348a8aaf5dd9d/django-speedinfo-1.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "54abc228bf1db87de996980d2ed0d7d1", "sha256": "2ec2911b0e516e8d69683388bdf55ce52a37e8c2d231b0d0d82c55c5352c6938" }, "downloads": -1, "filename": "django_speedinfo-1.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "54abc228bf1db87de996980d2ed0d7d1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15143, "upload_time": "2018-02-19T11:15:49", "upload_time_iso_8601": "2018-02-19T11:15:49.637484Z", "url": "https://files.pythonhosted.org/packages/52/78/b507ef9f87b044f134c84d52fe1bb7a7e84b5143d180f6d0588ee24c0ee8/django_speedinfo-1.3.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5bb2a7a7e39c3fd9756a7ea42370f04", "sha256": "4ee98e5124b711adfd0d141c42add8abb92a3e2ff49c8f593466e7881a5817ce" }, "downloads": -1, "filename": "django-speedinfo-1.3.2.tar.gz", "has_sig": false, "md5_digest": "b5bb2a7a7e39c3fd9756a7ea42370f04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9126, "upload_time": "2018-02-19T11:15:52", "upload_time_iso_8601": "2018-02-19T11:15:52.824301Z", "url": "https://files.pythonhosted.org/packages/f9/1e/a84439d6a13b110bd70f33b4fdca85bbd4b5c93b22e075498ddd2239a1e4/django-speedinfo-1.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "c16bb43dea34956642cc23f5d4a4570d", "sha256": "cea5f3d583920402b3e9e4f65f73d3f79f6b3322cc845edf5d6639667b0683e9" }, "downloads": -1, "filename": "django_speedinfo-1.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c16bb43dea34956642cc23f5d4a4570d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15623, "upload_time": "2018-04-06T08:42:41", "upload_time_iso_8601": "2018-04-06T08:42:41.591142Z", "url": "https://files.pythonhosted.org/packages/8f/dd/de0178be7a0dceac121d3e08c93442513e5ccb00696e6eb9fd88b54a21c3/django_speedinfo-1.3.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5fa0a27008407d2c02294299d537068", "sha256": "773ac54a68b23071dfaba5fe5ed6dd0fbab813d92186ea47caa425093dafdf07" }, "downloads": -1, "filename": "django-speedinfo-1.3.3.tar.gz", "has_sig": false, "md5_digest": "d5fa0a27008407d2c02294299d537068", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9469, "upload_time": "2018-04-06T08:42:42", "upload_time_iso_8601": "2018-04-06T08:42:42.940666Z", "url": "https://files.pythonhosted.org/packages/fd/37/15630d3ad4769c01936aa071f880214a8f7617ef032bf7034c12f121066f/django-speedinfo-1.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "a6ab075892f130c7ec9aa245cf3ef2f0", "sha256": "fbb2e3504878af565a431f3502e642520633ac008d24dbc2831c7cc05914bfdb" }, "downloads": -1, "filename": "django_speedinfo-1.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a6ab075892f130c7ec9aa245cf3ef2f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16357, "upload_time": "2018-04-09T18:22:12", "upload_time_iso_8601": "2018-04-09T18:22:12.909301Z", "url": "https://files.pythonhosted.org/packages/1d/0b/069e042f398258d3dea695827094639fe4b7eb003ef266aedb2a4d654f8b/django_speedinfo-1.3.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32b5781fe26a72a7a0423f172d23e10c", "sha256": "2fba04154c460f8b12c121e36653129aba2fc7b17a0eb3504241442b6fbcbf76" }, "downloads": -1, "filename": "django-speedinfo-1.3.4.tar.gz", "has_sig": false, "md5_digest": "32b5781fe26a72a7a0423f172d23e10c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9737, "upload_time": "2018-04-09T18:22:14", "upload_time_iso_8601": "2018-04-09T18:22:14.089968Z", "url": "https://files.pythonhosted.org/packages/1b/c0/9090a323c3ea6ad60e180e77c5ec5a910613d09a67e2b1ec7d554341372a/django-speedinfo-1.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "d3aa0c51cb5813fcf1466a90f7147773", "sha256": "0e2acce58454c574031185b1480d617d02d68b45177075f8a168cdc4bde2abc9" }, "downloads": -1, "filename": "django_speedinfo-1.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d3aa0c51cb5813fcf1466a90f7147773", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16356, "upload_time": "2018-04-11T13:40:24", "upload_time_iso_8601": "2018-04-11T13:40:24.104033Z", "url": "https://files.pythonhosted.org/packages/c8/e2/2d513da49706d897a0ffd1ccf7670abc6d3c422a4376affdc4562a715b67/django_speedinfo-1.3.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0437237b6688e864dd942cd080410d8b", "sha256": "26dfe4c7ca2f1d1a70384aa9f6225f0d8010f84036ed4b684a3251d13536d696" }, "downloads": -1, "filename": "django-speedinfo-1.3.5.tar.gz", "has_sig": false, "md5_digest": "0437237b6688e864dd942cd080410d8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9750, "upload_time": "2018-04-11T13:40:25", "upload_time_iso_8601": "2018-04-11T13:40:25.149710Z", "url": "https://files.pythonhosted.org/packages/68/b4/8fff168f8708a184daf9170f435dc416de5cb20f019e2c201593a624a2e9/django-speedinfo-1.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.6": [ { "comment_text": "", "digests": { "md5": "d788e8457c7794f7e4b840f4af724ac9", "sha256": "4bb1020214cf5f06cf4303fd0f47cff44bb3d621b16fbe44ebf7c03ad58f11e6" }, "downloads": -1, "filename": "django_speedinfo-1.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d788e8457c7794f7e4b840f4af724ac9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17715, "upload_time": "2018-04-22T10:17:40", "upload_time_iso_8601": "2018-04-22T10:17:40.657666Z", "url": "https://files.pythonhosted.org/packages/66/20/e941c76e2d53ca0f80c244e4b9df5b1219ea8edc5c9487d3084b045269c4/django_speedinfo-1.3.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ec97ded8c572b0b7a3ae1ff9712a7ee1", "sha256": "eea8abcbe330fc7cda18e0a9296df088fe8700d1da67762800b1d5d49e11fed2" }, "downloads": -1, "filename": "django-speedinfo-1.3.6.tar.gz", "has_sig": false, "md5_digest": "ec97ded8c572b0b7a3ae1ff9712a7ee1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10533, "upload_time": "2018-04-22T10:17:41", "upload_time_iso_8601": "2018-04-22T10:17:41.656237Z", "url": "https://files.pythonhosted.org/packages/3e/7c/33cac1ede863c72c5093a5b89d2a2f9d86760d53c6050fec672614056c52/django-speedinfo-1.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.7": [ { "comment_text": "", "digests": { "md5": "b6d16b0ca16efb2a02939ac66adc29c0", "sha256": "2fa58b9d66031f63af02676090c8afd43c36b28a5a86245fb5783403af6cb289" }, "downloads": -1, "filename": "django_speedinfo-1.3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b6d16b0ca16efb2a02939ac66adc29c0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17681, "upload_time": "2018-12-06T13:59:45", "upload_time_iso_8601": "2018-12-06T13:59:45.099720Z", "url": "https://files.pythonhosted.org/packages/37/b4/635a557da63cb3b252a7ff7cb23b463a4d1520c4f7028af4623811cd5396/django_speedinfo-1.3.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c46f2cea97a67a75096d619d46318d71", "sha256": "943de8265e6f9e179cc5c160e32e15b06eb6dd4b45c9124c3c1fefb0bc8a4f63" }, "downloads": -1, "filename": "django-speedinfo-1.3.7.tar.gz", "has_sig": false, "md5_digest": "c46f2cea97a67a75096d619d46318d71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10474, "upload_time": "2018-12-06T13:59:46", "upload_time_iso_8601": "2018-12-06T13:59:46.548691Z", "url": "https://files.pythonhosted.org/packages/4f/00/0a165fa9a8c6367ef17d1e4a4858110a1cb5a1834d6933df046d76aca822/django-speedinfo-1.3.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "a7b15127aa5150b8ad9fe6eb5137db5c", "sha256": "2f66a88cf3e4040d359b0658d7e3f8dbe90397054854540424b6a26bd747c042" }, "downloads": -1, "filename": "django_speedinfo-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a7b15127aa5150b8ad9fe6eb5137db5c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20148, "upload_time": "2018-12-11T11:03:48", "upload_time_iso_8601": "2018-12-11T11:03:48.102652Z", "url": "https://files.pythonhosted.org/packages/70/62/691011a699edcd587ef64cd2e58f37d1a79dac3d9bba0be7176d2b7a9b69/django_speedinfo-1.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a06fa3220f4896e30a559ca429e37e4c", "sha256": "e080339239a8973178dcca6a53ceea3fcf0ebefdc18711f8937f956c403529e7" }, "downloads": -1, "filename": "django-speedinfo-1.4.0.tar.gz", "has_sig": false, "md5_digest": "a06fa3220f4896e30a559ca429e37e4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11684, "upload_time": "2018-12-11T11:03:50", "upload_time_iso_8601": "2018-12-11T11:03:50.415713Z", "url": "https://files.pythonhosted.org/packages/ca/77/b372bda45ba832db97ca54dd616670ed7b1f2942dfc5c875f40b7e42c50f/django-speedinfo-1.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "6228fc0c9cdcd17eda6f548ecaee77f3", "sha256": "1d50df3e43319b0169f9632c28b3da36c03e79c4de209a78ed9cdd75b78d13fc" }, "downloads": -1, "filename": "django_speedinfo-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6228fc0c9cdcd17eda6f548ecaee77f3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18873, "upload_time": "2019-06-16T14:59:57", "upload_time_iso_8601": "2019-06-16T14:59:57.295777Z", "url": "https://files.pythonhosted.org/packages/09/6f/3f8fd8de15101d03a5193b2e3949beee47d2425abb89f7678ba8f9404ba9/django_speedinfo-1.4.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e45528fed3f26d8d852d339eee5e05dc", "sha256": "b7bf6d3d1bf982a219e92f963f09fcda9c90a2b01e85b828bb5cd79fec02a32e" }, "downloads": -1, "filename": "django-speedinfo-1.4.1.tar.gz", "has_sig": false, "md5_digest": "e45528fed3f26d8d852d339eee5e05dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12363, "upload_time": "2019-06-16T14:59:59", "upload_time_iso_8601": "2019-06-16T14:59:59.126353Z", "url": "https://files.pythonhosted.org/packages/45/d9/c74c62043e21e8d7ac25fcedb3cfe249412faa25aacfe2dfddd05d1188d9/django-speedinfo-1.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "83fdafb47b9036ca91002c23efe6fcf6", "sha256": "c515d3eadee2c3249a7abbf51fed7f80bf517c5029a89a0737a508b98030b7c2" }, "downloads": -1, "filename": "django_speedinfo-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "83fdafb47b9036ca91002c23efe6fcf6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 22769, "upload_time": "2019-10-23T18:33:45", "upload_time_iso_8601": "2019-10-23T18:33:45.646486Z", "url": "https://files.pythonhosted.org/packages/32/6e/3b5bffafbe79b77a5ff1593c35255c3e5c8fd7778f7f512cdf0c02ed9e17/django_speedinfo-2.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "edf3f05dc1a93ef79baedb2046573098", "sha256": "9a4fe0e5709a7017a13371a1f73cce1fe3b3d1425c5887337e938567bd5db0e0" }, "downloads": -1, "filename": "django-speedinfo-2.0.0.tar.gz", "has_sig": false, "md5_digest": "edf3f05dc1a93ef79baedb2046573098", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 19003, "upload_time": "2019-10-23T18:33:43", "upload_time_iso_8601": "2019-10-23T18:33:43.610587Z", "url": "https://files.pythonhosted.org/packages/f6/4c/4200c56a71252c9befb4bf262c60d3031d8688a6bea35cda1210fe4edd43/django-speedinfo-2.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "cb6f303b902392ac35f61a150e729bca", "sha256": "41e03702e6d7f1d64cb268c69fd5673c2902e210df5b9a125a7949c687adaee7" }, "downloads": -1, "filename": "django_speedinfo-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cb6f303b902392ac35f61a150e729bca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 23741, "upload_time": "2019-12-05T13:42:18", "upload_time_iso_8601": "2019-12-05T13:42:18.640298Z", "url": "https://files.pythonhosted.org/packages/89/30/df0f412f1b8d52361aba57a63a3091ee0aef1e0554ae506f2cac22d2ee04/django_speedinfo-2.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60ef97b7f0bca4d2baa2970a31792361", "sha256": "5e2825dd11c8baebac772264ecf44347e08722597ea2e6019eb2bb8f8d595e34" }, "downloads": -1, "filename": "django-speedinfo-2.0.1.tar.gz", "has_sig": false, "md5_digest": "60ef97b7f0bca4d2baa2970a31792361", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 19736, "upload_time": "2019-12-05T13:42:17", "upload_time_iso_8601": "2019-12-05T13:42:17.007356Z", "url": "https://files.pythonhosted.org/packages/20/c7/bba37538a978db6fca4c9765a68eadebf6f424b2697f444735b91adc4d92/django-speedinfo-2.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "7354ec5a9ac44c9cab7765e7d8a9bf95", "sha256": "ab0049c1182143a47b9c0cc9e19ce00180bd30aca48052b55647a221b97f89af" }, "downloads": -1, "filename": "django_speedinfo-2.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7354ec5a9ac44c9cab7765e7d8a9bf95", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 23246, "upload_time": "2020-10-09T16:45:29", "upload_time_iso_8601": "2020-10-09T16:45:29.946941Z", "url": "https://files.pythonhosted.org/packages/50/0b/5fadb52e96615d9ce9f7eedc8a8979e2a176c2b93d52bdd1a580f761bcf4/django_speedinfo-2.0.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44d4c8e79df9dd3496017b575eaa91b1", "sha256": "5b7c9976ac1060f2a5a086c2cd299ace491313f2d8aaeef04a434074c2ca089c" }, "downloads": -1, "filename": "django-speedinfo-2.0.2.tar.gz", "has_sig": false, "md5_digest": "44d4c8e79df9dd3496017b575eaa91b1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 19318, "upload_time": "2020-10-09T16:45:28", "upload_time_iso_8601": "2020-10-09T16:45:28.254733Z", "url": "https://files.pythonhosted.org/packages/1c/87/a5bedf4b344a704f3fb71ad808aac1c2e091eb6f1ebce345a9cc0a36cbf5/django-speedinfo-2.0.2.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7354ec5a9ac44c9cab7765e7d8a9bf95", "sha256": "ab0049c1182143a47b9c0cc9e19ce00180bd30aca48052b55647a221b97f89af" }, "downloads": -1, "filename": "django_speedinfo-2.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7354ec5a9ac44c9cab7765e7d8a9bf95", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 23246, "upload_time": "2020-10-09T16:45:29", "upload_time_iso_8601": "2020-10-09T16:45:29.946941Z", "url": "https://files.pythonhosted.org/packages/50/0b/5fadb52e96615d9ce9f7eedc8a8979e2a176c2b93d52bdd1a580f761bcf4/django_speedinfo-2.0.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44d4c8e79df9dd3496017b575eaa91b1", "sha256": "5b7c9976ac1060f2a5a086c2cd299ace491313f2d8aaeef04a434074c2ca089c" }, "downloads": -1, "filename": "django-speedinfo-2.0.2.tar.gz", "has_sig": false, "md5_digest": "44d4c8e79df9dd3496017b575eaa91b1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 19318, "upload_time": "2020-10-09T16:45:28", "upload_time_iso_8601": "2020-10-09T16:45:28.254733Z", "url": "https://files.pythonhosted.org/packages/1c/87/a5bedf4b344a704f3fb71ad808aac1c2e091eb6f1ebce345a9cc0a36cbf5/django-speedinfo-2.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }