{
"info": {
"author": "YunoJuno",
"author_email": "code@yunojuno.com",
"bugtrack_url": null,
"classifiers": [
"Environment :: Web Environment",
"Framework :: Django",
"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 :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
],
"description": ".. image:: https://badge.fury.io/py/django-request-profiler.svg\n :target: https://badge.fury.io/py/django-request-profiler\n\n.. image:: https://travis-ci.org/yunojuno/django-request-profiler.svg\n :target: https://travis-ci.org/yunojuno/django-request-profiler\n\nDjango Request Profiler\n=======================\n\n**This package now requires Python3 and Django 1.11 and above. For previous versions please refer to the Python2 branch.**\n\nA very simple request profiler for Django.\n\nIntroduction\n------------\n\n Premature optimization is the root of all evil.\n\nThere are a lot of very good, and complete, python and django profilers\navailable. They can give you detailed stack traces and function call timings,\noutput all the SQL statements that have been run, the templates that have been\nrendered, and the state of any / all variables along the way. These tools are\ngreat for optimisation of your application, once you have decided that the\ntime is right.\n\n``django-request-profiler`` is not intended to help you optimise, but to help\nyou decide whether you need to optimise in the first place. It is complimentary.\n\nRequirements\n------------\n\n1. Small enough to run in production\n2. Able to configure profiling at runtime\n3. Configurable to target specific URLs or users\n4. Record basic request metadata:\n\n- Duration (request-response)\n- Request path, remote addr, user-agent\n- Response status code, content length\n- View function\n- Django user and session keys (if appropriate)\n- Database query count (if DEBUG=True)\n\nIt doesn't need to record all the inner timing information - the goal is to have\na system that can be used to monitor site response times, and to identify\nproblem areas ahead of time.\n\nTechnical details\n-----------------\n\nThe profiler itself runs as Django middleware, and it simply starts a timer when\nit first sees the request, and stops the timer when it is finished with the\nresponse. It should be installed as the first middleware in\n``MIDDLEWARE_CLASSES`` in order to record the maximum duration.\n\nIt hooks into the ``process_request`` method to start the timer, the\n``process_view`` method to record the view function name, and the\n``process_response`` method to stop the timer, record all the request\ninformation and store the instance.\n\nThe profiler is controlled by adding ``RuleSet`` instances which are used to\nfilter which requests are profiled. There can be many, overlapping,\nRuleSets, but if any match, the request is profiled. The RuleSet model\ndefines two core matching methods:\n\n1. uri_regex - in order to profile a subset of the site, you can supply a regex\nwhich is used match the incoming request path. If the url matches, the request\ncan be profiled.\n\n2. user_filter_type - there are three choices here - profile all users, profile\nonly authenticated users, and profile authenticated users belonging to a given\nGroup - e.g. create a groups called \"profiling\" and add anyone you want to\nprofile.\n\nThese filter properties are an AND (must pass the uri and user filter), but the\nrules as a group are an OR - so if a request passes all the filters in any rule,\nthen it's profiled.\n\nThese filters are pretty blunt, and there are plenty of use cases where you may\nwant more sophisticated control over the profiling. There are two ways to do\nthis. The first is a setting, ``REQUEST_PROFILER_GLOBAL_EXCLUDE_FUNC``, which is\na function that takes a request as the single argument, and must return True or\nFalse. If it returns False, the profile is cancelled, irrespective of any rules.\nThe primary use case for this is to exclude common requests that you are not\ninterested in, e.g. from search engine bots, or from Admin users etc. The\ndefault for this function is to prevent admin user requests from being profiled.\n\nThe second control is via the ``cancel()`` method on the ``ProfilingRecord``,\nwhich is accessible via the ``request_profile_complete`` signal. By hooking\nin to this signal you can add additional processing, and optionally cancel\nthe profiler. A typical use case for this is to log requests that have\nexceeded a set request duration threshold. In a high volume environment you\nmay want to, for instance, only profile a random subset of all requests.\n\n.. code:: python\n\n from django.dispatch import receiver\n from request_profiler.signals import request_profile_complete\n\n @receiver(request_profiler_complete)\n def on_request_profile_complete(sender, **kwargs):\n profiler = kwargs.get('instance')\n if profiler.elapsed > 2:\n # log long-running requests\n # NB please don't use 'print' for real - use logging\n print u\"Long-running request warning: %s\" % profiler\n else:\n # calling cancel means that it won't be saved to the db\n profiler.cancel()\n\n\nInstallation\n------------\n\nThis app has dropped support for Django < 1.7, since v0.11.\n\nFor use as the app in Django project, use pip:\n\n.. code:: shell\n\n $ pip install django-request-profiler\n # For hacking on the project, pull from Git:\n $ git pull git@github.com:yunojuno/django-request-profiler.git\n\nTests\n-----\n\nThe app installer contains a test suite that can be run using the Django\ntest runner:\n\n.. code:: shell\n\n $ pip install -r requirements.txt\n $ python manage.py test test_app request_profiler\n\nIf you want to test coverage you'll need to add some dependencies:\n\n.. code:: shell\n\n $ pip install coverage django-coverage\n $ python manage.py test_coverage test_app request_profiler\n\nThe tests also run using `tox `_:\n\n.. code:: shell\n\n $ pip install tox\n $ tox\n\n**Note: To test with a custom user model, you should override the default User model\nby providing a value for the AUTH_USER_MODEL (in testapp/settings) setting that references a custom model**\n\nThe tests run on `Travis `_ on commits to master.\n\nUsage\n-----\n\nOnce installed, add the app and middleware to your project's settings file.\nIn order to add the database tables, you should run the ``migrate`` command:\n\n.. code:: bash\n\n $ python manage.py migrate request_profiler\n\nNB the middleware must be the **first** item in ``MIDDLEWARE_CLASSES``.\n\n.. code:: python\n\n INSTALLED_APPS = (\n 'django.contrib.admin',\n 'django.contrib.auth',\n 'django.contrib.contenttypes',\n 'django.contrib.sessions',\n 'django.contrib.messages',\n 'django.contrib.staticfiles',\n 'request_profiler',\n )\n\n MIDDLEWARE_CLASSES = [\n # this package's middleware\n 'request_profiler.middleware.ProfilingMiddleware',\n # default django middleware\n 'django.middleware.common.CommonMiddleware',\n 'django.contrib.sessions.middleware.SessionMiddleware',\n 'django.contrib.auth.middleware.AuthenticationMiddleware',\n 'django.middleware.csrf.CsrfViewMiddleware',\n 'django.contrib.messages.middleware.MessageMiddleware',\n ]\n\nConfiguration\n-------------\n\nTo configure the app, open the admin site, and add a new request profiler\n'Rule set'. The default options will result in all non-admin requests being\nprofiled.\n\nLicence\n-------\n\nMIT (see LICENCE)\n\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/yunojuno/django-request-profiler",
"keywords": "",
"license": "",
"maintainer": "YunoJuno",
"maintainer_email": "code@yunojuno.com",
"name": "django-request-profiler",
"package_url": "https://pypi.org/project/django-request-profiler/",
"platform": "",
"project_url": "https://pypi.org/project/django-request-profiler/",
"project_urls": {
"Homepage": "https://github.com/yunojuno/django-request-profiler"
},
"release_url": "https://pypi.org/project/django-request-profiler/0.14/",
"requires_dist": [
"Django (>=1.11)"
],
"requires_python": "",
"summary": "Django Request Profiler - a simple profiler for timing HTTP requests.",
"version": "0.14"
},
"last_serial": 5675406,
"releases": {
"0.10": [
{
"comment_text": "",
"digests": {
"md5": "e3606e021b791a895181da826d0ad9a1",
"sha256": "9d02de3603b029c772ddd8ccfea32edd4d173fc22f78872753028077121a7389"
},
"downloads": -1,
"filename": "django-request-profiler-0.10.tar.gz",
"has_sig": false,
"md5_digest": "e3606e021b791a895181da826d0ad9a1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14831,
"upload_time": "2016-08-06T23:28:53",
"url": "https://files.pythonhosted.org/packages/b9/37/2458475d5fe2b8c24a435e6be78c9790cc16626f68f76f0fcc26f7285139/django-request-profiler-0.10.tar.gz"
}
],
"0.11.0": [
{
"comment_text": "built for Darwin-16.1.0",
"digests": {
"md5": "4d587379d74e510ab5e9e7cbf36d0f41",
"sha256": "a4e4d98b0208ed6a210f16b0c5715c5549974488581d9494981e2f6210946344"
},
"downloads": -1,
"filename": "django-request-profiler-0.11.0.macosx-10.12-intel.tar.gz",
"has_sig": false,
"md5_digest": "4d587379d74e510ab5e9e7cbf36d0f41",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 36271,
"upload_time": "2016-11-09T10:02:17",
"url": "https://files.pythonhosted.org/packages/0f/df/5c559d257fff46a0bad5f72b0dd98224fd9e01b718d0d5eb77b3efafcb79/django-request-profiler-0.11.0.macosx-10.12-intel.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "211f717ef29e4343045bfe4a51eafd86",
"sha256": "ebbe2bcdd22088282a1f977184b1a8a24f0ed7a51e8b47297070c373b5e05c33"
},
"downloads": -1,
"filename": "django_request_profiler-0.11.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "211f717ef29e4343045bfe4a51eafd86",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 31020,
"upload_time": "2016-11-09T10:02:20",
"url": "https://files.pythonhosted.org/packages/40/ae/8affa48f3bd0378635f0e0e2326b369dfe7bba9705a7156b71802efb5b2d/django_request_profiler-0.11.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "dff96d201f38f1be530e152feca92ff4",
"sha256": "452d6ea32190e358cda87e53a72e07e3a4850de029429cdd445e9aa1345ffec5"
},
"downloads": -1,
"filename": "django-request-profiler-0.11.0.tar.gz",
"has_sig": false,
"md5_digest": "dff96d201f38f1be530e152feca92ff4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16908,
"upload_time": "2016-11-09T10:02:14",
"url": "https://files.pythonhosted.org/packages/44/ed/86a4f067165116efd8fa81e01f57302379a64a1e8e41227afe30f6e5b8b8/django-request-profiler-0.11.0.tar.gz"
}
],
"0.11.1": [
{
"comment_text": "",
"digests": {
"md5": "3b0a398d4c5dd57d2fec332efd6e244b",
"sha256": "be8f9b5eca904856c0930ea900eeab64c393dcfd3a9a84db55111c6a1af0ec25"
},
"downloads": -1,
"filename": "django-request-profiler-0.11.1.tar.gz",
"has_sig": false,
"md5_digest": "3b0a398d4c5dd57d2fec332efd6e244b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17002,
"upload_time": "2017-01-16T17:37:55",
"url": "https://files.pythonhosted.org/packages/1d/af/bc0c8fb410a860f9df4dbc343a79e82fe6798392f2e2e017f81c844b3d2b/django-request-profiler-0.11.1.tar.gz"
}
],
"0.12": [
{
"comment_text": "",
"digests": {
"md5": "dd52558994f45b2f76b55ac357cac87e",
"sha256": "134492acfa4f5cf953aa84078622829488245752c31cb9fd93cc693555423797"
},
"downloads": -1,
"filename": "django_request_profiler-0.12-py2-none-any.whl",
"has_sig": false,
"md5_digest": "dd52558994f45b2f76b55ac357cac87e",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 43421,
"upload_time": "2017-04-08T22:50:23",
"url": "https://files.pythonhosted.org/packages/c9/72/bf101ad6e8068b1d73a6b7f5492949ff12e8bf80526c734ef418f88866ce/django_request_profiler-0.12-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f164da94ac89dc21247dc1a1c8aacae7",
"sha256": "c20738e46d99e81d5db601c6073d15ebb36fe31543e1b974bc4e0e3f287e9ec8"
},
"downloads": -1,
"filename": "django-request-profiler-0.12.tar.gz",
"has_sig": false,
"md5_digest": "f164da94ac89dc21247dc1a1c8aacae7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16997,
"upload_time": "2017-04-08T22:50:20",
"url": "https://files.pythonhosted.org/packages/97/07/c09545e4caee4a45232e27d8e8401d7ba5e33b4d276916c63e92152a9d14/django-request-profiler-0.12.tar.gz"
}
],
"0.12.1": [
{
"comment_text": "",
"digests": {
"md5": "8d3ab2bcee6a2fbd489b5e0fe609b4c8",
"sha256": "b1854b343df151fae5fa51c4e5e61af1f2aab1108683fa1f8ed2d5d79b40e125"
},
"downloads": -1,
"filename": "django-request-profiler-0.12.1.tar.gz",
"has_sig": false,
"md5_digest": "8d3ab2bcee6a2fbd489b5e0fe609b4c8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17335,
"upload_time": "2017-05-26T14:28:09",
"url": "https://files.pythonhosted.org/packages/e4/ac/24ba46d0a82a425c78232a8bd2b9524fe6f587a74a2ca8af8a65cdc89fce/django-request-profiler-0.12.1.tar.gz"
}
],
"0.12.2": [
{
"comment_text": "",
"digests": {
"md5": "4183852e3d6fd58d6011b68c5f6c6eee",
"sha256": "96f9a69c095f049c5c0ae8c79ddd4414f22e5525a9148b09c4d4959b0b375c32"
},
"downloads": -1,
"filename": "django_request_profiler-0.12.2-py2-none-any.whl",
"has_sig": false,
"md5_digest": "4183852e3d6fd58d6011b68c5f6c6eee",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 24813,
"upload_time": "2017-07-06T10:25:05",
"url": "https://files.pythonhosted.org/packages/a4/5a/23adafb14f5040c1573b3f13e9f8bed053f59da866cf0182e9d00189ebd7/django_request_profiler-0.12.2-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6ac3ce7618e5f880a471cc8afdf786d9",
"sha256": "d86ac757458867a803feb744e979db2fc9ecccffb77d48a852c1ecd3319c486f"
},
"downloads": -1,
"filename": "django-request-profiler-0.12.2.tar.gz",
"has_sig": false,
"md5_digest": "6ac3ce7618e5f880a471cc8afdf786d9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16682,
"upload_time": "2017-07-06T10:25:03",
"url": "https://files.pythonhosted.org/packages/22/98/b7f55cc1f29bc24bc8f62a0a00a177d30563badce0dcb105e3a90c958e29/django-request-profiler-0.12.2.tar.gz"
}
],
"0.13": [
{
"comment_text": "",
"digests": {
"md5": "0b84755f0c88f24bff1077e075892826",
"sha256": "62c3afbb17e17c8973da337eb77154306435273350fe40115096b8a1ab789207"
},
"downloads": -1,
"filename": "django_request_profiler-0.13-py3-none-any.whl",
"has_sig": false,
"md5_digest": "0b84755f0c88f24bff1077e075892826",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 20428,
"upload_time": "2018-05-11T11:33:42",
"url": "https://files.pythonhosted.org/packages/cc/8a/614497de26f286a979db9ad55ee76e12fd74324a01d97141270fa511f3a8/django_request_profiler-0.13-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6360e5ae61ad67a9024c03801e6b5a39",
"sha256": "74db088d23a2c4de3c99fe807345bcf3f1b62d1f48c2060d2c66b3a825bf037e"
},
"downloads": -1,
"filename": "django-request-profiler-0.13.tar.gz",
"has_sig": false,
"md5_digest": "6360e5ae61ad67a9024c03801e6b5a39",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16550,
"upload_time": "2018-05-11T11:33:40",
"url": "https://files.pythonhosted.org/packages/4a/e1/ccedc2dd81d881ff6069ef24dcfd32641be609027df85115884ec9f47bd2/django-request-profiler-0.13.tar.gz"
}
],
"0.13.1": [
{
"comment_text": "",
"digests": {
"md5": "83b6cf280c094acb7b0a9a5c917be029",
"sha256": "d01e42c3ca2efeb9712ceb89eb105e2ecdddaf8db66b021943d99efc406dc986"
},
"downloads": -1,
"filename": "django_request_profiler-0.13.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "83b6cf280c094acb7b0a9a5c917be029",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 21922,
"upload_time": "2019-04-09T09:28:21",
"url": "https://files.pythonhosted.org/packages/03/57/320d9917555ba801b77a6929cb7d47b9ad5696874dd8ce1d10769d51067b/django_request_profiler-0.13.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "97e893e7b5bbb0d2d7e217243b9d1ff9",
"sha256": "907c34e5452d42c809bf5e436f027c996be67432e2b64146003c9793a95ae94b"
},
"downloads": -1,
"filename": "django-request-profiler-0.13.1.tar.gz",
"has_sig": false,
"md5_digest": "97e893e7b5bbb0d2d7e217243b9d1ff9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 18904,
"upload_time": "2019-04-09T09:28:23",
"url": "https://files.pythonhosted.org/packages/5e/ec/b70ea030bcb01e1c2e7af4591be3ae6d22ab3748939a7e0324a4229e1966/django-request-profiler-0.13.1.tar.gz"
}
],
"0.14": [
{
"comment_text": "",
"digests": {
"md5": "0e572bf8a15635d46771d87c551a6c2f",
"sha256": "fddf2ca9536507d91edaf0b1544dcc48b9292417f3874ab1b396b12ab5c3e85b"
},
"downloads": -1,
"filename": "django_request_profiler-0.14-py3-none-any.whl",
"has_sig": false,
"md5_digest": "0e572bf8a15635d46771d87c551a6c2f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 22733,
"upload_time": "2019-08-14T08:05:43",
"url": "https://files.pythonhosted.org/packages/96/bf/dff6598e6824a05ab3d2a598c8eb6981ff0ac39838898cba936ce6fb92b2/django_request_profiler-0.14-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4b8e2596af2355cd0cc28d3248c77a78",
"sha256": "45a47545cbf80c0b9c87009c85922e6e58e57145fa7dabc800d5153a948a4c27"
},
"downloads": -1,
"filename": "django-request-profiler-0.14.tar.gz",
"has_sig": false,
"md5_digest": "4b8e2596af2355cd0cc28d3248c77a78",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17061,
"upload_time": "2019-08-14T08:05:45",
"url": "https://files.pythonhosted.org/packages/2e/7b/e87778558517383989b2ee9f90797cfebcb90c384edeed31bcfd00ec1b37/django-request-profiler-0.14.tar.gz"
}
],
"0.2": [
{
"comment_text": "built for Darwin-13.4.0",
"digests": {
"md5": "0c11b7d2ec2d3c3dbb8cc746fb9c33b6",
"sha256": "741d53ab6f6288b892fef82cf3a5c5d65604af7d666ed7a216e075550e4b2fe5"
},
"downloads": -1,
"filename": "django-request-profiler-0.2.macosx-10.6-intel.tar.gz",
"has_sig": false,
"md5_digest": "0c11b7d2ec2d3c3dbb8cc746fb9c33b6",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 15533,
"upload_time": "2014-10-17T13:37:38",
"url": "https://files.pythonhosted.org/packages/90/c4/5eba1a7768938aaf3f63f0a449cc33f2037ebfbbd2647a0e266dbf28a0e0/django-request-profiler-0.2.macosx-10.6-intel.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "be0039ca4025559513bdd198bbfb594e",
"sha256": "ea898877b3bbdb70d2e516c38215c6f2151a46af6643b608173f8fd18b2ba8e3"
},
"downloads": -1,
"filename": "django_request_profiler-0.2-py2-none-any.whl",
"has_sig": false,
"md5_digest": "be0039ca4025559513bdd198bbfb594e",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 13623,
"upload_time": "2014-10-17T13:37:40",
"url": "https://files.pythonhosted.org/packages/9d/23/48a74628f97948715d93d782d1f9db2519f7ab0e299a5a23788c5984e1b1/django_request_profiler-0.2-py2-none-any.whl"
}
],
"0.2.1": [
{
"comment_text": "built for Darwin-13.4.0",
"digests": {
"md5": "bb835191e557bae88792167d1c11b05c",
"sha256": "0c2c481e0cc1a363917f16acf6c102a74de91c75ec5439abb02656057a16a108"
},
"downloads": -1,
"filename": "django-request-profiler-0.2.1.macosx-10.6-intel.tar.gz",
"has_sig": false,
"md5_digest": "bb835191e557bae88792167d1c11b05c",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 18569,
"upload_time": "2014-10-17T13:59:53",
"url": "https://files.pythonhosted.org/packages/44/23/1764fa659f26ef90837daf4e431e1f31d9afdb26683da8a40dc97b7ebed2/django-request-profiler-0.2.1.macosx-10.6-intel.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "81256ab116df05f4a2efa5ff3c4827c7",
"sha256": "eddd0c736d30c66fcf5592600bd916201fa35d2e4d6b0c7693f3f0b2312d19a9"
},
"downloads": -1,
"filename": "django_request_profiler-0.2.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "81256ab116df05f4a2efa5ff3c4827c7",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 15369,
"upload_time": "2014-10-17T13:59:56",
"url": "https://files.pythonhosted.org/packages/52/b4/fe754cf00518db63bd3c68dc5e4e537e6eca3c265f7202c086fe27c64dc7/django_request_profiler-0.2.1-py2-none-any.whl"
}
],
"0.3": [
{
"comment_text": "built for Darwin-13.4.0",
"digests": {
"md5": "e4c9308b4a09aaedd56a9f8ff241f557",
"sha256": "d455c74cd84d779bd729c1d130c5a333820b9ca5d02b5376577eff3e130e65f7"
},
"downloads": -1,
"filename": "django-request-profiler-0.3.macosx-10.6-intel.tar.gz",
"has_sig": false,
"md5_digest": "e4c9308b4a09aaedd56a9f8ff241f557",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 21512,
"upload_time": "2014-10-18T14:09:11",
"url": "https://files.pythonhosted.org/packages/c4/d0/09f95b1cb0b6782944480e061ed74e3f1760d685dd845e84213aa4202299/django-request-profiler-0.3.macosx-10.6-intel.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "3931772d3c096ee0d5a2b5ff295ffdee",
"sha256": "9ed0e1e955b53920e5d34ea8636cf412266b3300f5aa9207a0de6bcd81b63a2b"
},
"downloads": -1,
"filename": "django_request_profiler-0.3-py2-none-any.whl",
"has_sig": false,
"md5_digest": "3931772d3c096ee0d5a2b5ff295ffdee",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 19121,
"upload_time": "2014-10-18T14:09:14",
"url": "https://files.pythonhosted.org/packages/be/6b/39b84d1ab904bca04e7415b188045e3c7702e92013c48811297a2e75431c/django_request_profiler-0.3-py2-none-any.whl"
}
],
"0.3.1": [
{
"comment_text": "built for Darwin-13.4.0",
"digests": {
"md5": "f18797f8423019303bbbaa6b35f95bd5",
"sha256": "a843428f29188fef2877a2292c4f813ff3ea0d59608758e0548aec082d4e455b"
},
"downloads": -1,
"filename": "django-request-profiler-0.3.1.macosx-10.6-intel.tar.gz",
"has_sig": false,
"md5_digest": "f18797f8423019303bbbaa6b35f95bd5",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 21535,
"upload_time": "2014-10-18T14:15:34",
"url": "https://files.pythonhosted.org/packages/48/c1/ff18d53f7398bb4fb9df2464902190a2adcbee2d1bfa885e45a34c5fbce1/django-request-profiler-0.3.1.macosx-10.6-intel.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "d5f3d6622cf45eb4888a5c3917a2dfba",
"sha256": "a1b3bf8127704624c2ebb1292f7a92c088fe1d77d0ab6705e2a44707f275c427"
},
"downloads": -1,
"filename": "django_request_profiler-0.3.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "d5f3d6622cf45eb4888a5c3917a2dfba",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 19180,
"upload_time": "2014-10-18T14:15:38",
"url": "https://files.pythonhosted.org/packages/3a/40/c4d7537f832df7b8ebcf815b2757042f67cf5a1d992f8a3c55725ed1304e/django_request_profiler-0.3.1-py2-none-any.whl"
}
],
"0.3.2": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "8004d526fd2f28acada861e6dd66644c",
"sha256": "781b1fa040b1042aab300ca318d415553766a2ff2878f9a22cb3d70428341f73"
},
"downloads": -1,
"filename": "django-request-profiler-0.3.2.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "8004d526fd2f28acada861e6dd66644c",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 21625,
"upload_time": "2014-10-19T11:00:22",
"url": "https://files.pythonhosted.org/packages/2a/1f/f0142c194d9426783924fa49d86785d02b18c5d22bc7c1def6c75318255d/django-request-profiler-0.3.2.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "84ca3c7fe2e78d58bf5dad6962cf7612",
"sha256": "76bdb6434c3df69c99386a99c897f55821ec29d45c7d519640de76d6f027cdd5"
},
"downloads": -1,
"filename": "django_request_profiler-0.3.2-py2-none-any.whl",
"has_sig": false,
"md5_digest": "84ca3c7fe2e78d58bf5dad6962cf7612",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 19204,
"upload_time": "2014-10-19T11:00:25",
"url": "https://files.pythonhosted.org/packages/2b/e4/d5a125ca5b15c09f151aea2f9dff126ecb2f419faa8b9b8b32bb30ee6e8f/django_request_profiler-0.3.2-py2-none-any.whl"
}
],
"0.3.3": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "5f2d1c61360f238718622a92b5a2d371",
"sha256": "f40e92399ed63e7fc1b3ddccd4cd0bda60e70f503fbdb9e487c34da9b8b93250"
},
"downloads": -1,
"filename": "django-request-profiler-0.3.3.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "5f2d1c61360f238718622a92b5a2d371",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 21647,
"upload_time": "2014-10-19T11:08:13",
"url": "https://files.pythonhosted.org/packages/32/e6/8b108a8508d8cc6c3c6a005c86966de4f66f91fe8984afe2c418cc490584/django-request-profiler-0.3.3.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "79e4f13d87af339aca9fd5e8075b7c45",
"sha256": "21a4fe79c8aecdd6728eea56094f3ae733f384b25a1012b7b12e1c66abcce467"
},
"downloads": -1,
"filename": "django_request_profiler-0.3.3-py2-none-any.whl",
"has_sig": false,
"md5_digest": "79e4f13d87af339aca9fd5e8075b7c45",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 19207,
"upload_time": "2014-10-19T11:08:17",
"url": "https://files.pythonhosted.org/packages/e3/97/785b555092cba9d835cfb2e30c2dd570fb9e05a76a6a9b8530e292a35640/django_request_profiler-0.3.3-py2-none-any.whl"
}
],
"0.4": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "d2d4ac1a04b07afba550c3dfe85d29c4",
"sha256": "75964e15f365fe0a6aab0b2ce4a4da7245e4d9f747829866667e2204ca932a4d"
},
"downloads": -1,
"filename": "django-request-profiler-0.4.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "d2d4ac1a04b07afba550c3dfe85d29c4",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 21628,
"upload_time": "2014-10-19T11:10:35",
"url": "https://files.pythonhosted.org/packages/94/50/473015ee64731bf2c27c46ade5884d4762fe66552feea7f030e6a9748d4d/django-request-profiler-0.4.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "b197bb0cb7c3714f6734edd310208c32",
"sha256": "1380e85cf3de617cc1b8b704039a384283b38ba76e6e1f7888b5592629651404"
},
"downloads": -1,
"filename": "django_request_profiler-0.4-py2-none-any.whl",
"has_sig": false,
"md5_digest": "b197bb0cb7c3714f6734edd310208c32",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 19178,
"upload_time": "2014-10-19T11:10:39",
"url": "https://files.pythonhosted.org/packages/98/c9/625f9e84dea801b72ae1eb790f254a7b62307d69755a265454bdda2bfe58/django_request_profiler-0.4-py2-none-any.whl"
}
],
"0.4.1": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "20a6151908d95ca75d5e2a6d2ad8ca75",
"sha256": "a6f5e6301ec1ab8df13b6f923ebf28febbaee1173a295e04f35ace741513e9b4"
},
"downloads": -1,
"filename": "django-request-profiler-0.4.1.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "20a6151908d95ca75d5e2a6d2ad8ca75",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 22021,
"upload_time": "2014-10-19T12:14:31",
"url": "https://files.pythonhosted.org/packages/a4/47/65458d6126b2314a2bc911576dfaca6dc562f99806191dfc692d644993b2/django-request-profiler-0.4.1.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "0f392e30c7ee41b1a4aaec774fc5abf6",
"sha256": "3e2b954d96f222550dec509117224bd7f09965618849dcdeb7c4601a3bc0473d"
},
"downloads": -1,
"filename": "django_request_profiler-0.4.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "0f392e30c7ee41b1a4aaec774fc5abf6",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 19512,
"upload_time": "2014-10-19T12:14:35",
"url": "https://files.pythonhosted.org/packages/fc/08/e2ea19dc516884c831f34583ea0fd46d3eb881186fe74abb35b53d790bf5/django_request_profiler-0.4.1-py2-none-any.whl"
}
],
"0.5": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "349b6a4a6c59681343d97603bb17f9cf",
"sha256": "314e61fba459eabb464b9715b467d974277f530b7c3e5be3185662d26d80a520"
},
"downloads": -1,
"filename": "django-request-profiler-0.5.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "349b6a4a6c59681343d97603bb17f9cf",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 22661,
"upload_time": "2014-10-21T10:18:37",
"url": "https://files.pythonhosted.org/packages/89/8c/5644d55ca6c1b59e5e95685b333599361290818af07d3283d6991476157a/django-request-profiler-0.5.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "e8661b17d347e98cd4fc7f4d9847c6e1",
"sha256": "8f805b2e65af279c83333943c3ed0ecb0656e2c753318e4328d1b75a0553d940"
},
"downloads": -1,
"filename": "django_request_profiler-0.5-py2-none-any.whl",
"has_sig": false,
"md5_digest": "e8661b17d347e98cd4fc7f4d9847c6e1",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 19851,
"upload_time": "2014-10-21T10:18:41",
"url": "https://files.pythonhosted.org/packages/29/bc/fb32506b5f52f7e0b38b0a18b214b2d7ff7b8a8d1e8972ece1179fb09261/django_request_profiler-0.5-py2-none-any.whl"
}
],
"0.6": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "ba4671b94f6e92a80f36440c48479498",
"sha256": "ce263edc42e155f0391133ed2c081464adb547e3e40a661e13fee24273f7731f"
},
"downloads": -1,
"filename": "django-request-profiler-0.6.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "ba4671b94f6e92a80f36440c48479498",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 23834,
"upload_time": "2014-10-21T11:38:12",
"url": "https://files.pythonhosted.org/packages/3b/38/a10a78278f592b890a4d4d8d6323b66e5668d4fbd712fa6278cb7d9c99d4/django-request-profiler-0.6.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "316f522c720138f1ecd576938f5a9608",
"sha256": "1b1c01732e3bfbfbab67e76174629220093a0509134711428f0633357b47a78a"
},
"downloads": -1,
"filename": "django_request_profiler-0.6-py2-none-any.whl",
"has_sig": false,
"md5_digest": "316f522c720138f1ecd576938f5a9608",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 21351,
"upload_time": "2014-10-21T11:38:15",
"url": "https://files.pythonhosted.org/packages/3e/42/a6f57ce6b933eac34b2ac8c71f40541aaa791065d4f5faa7d3b41aa8a48e/django_request_profiler-0.6-py2-none-any.whl"
}
],
"0.6.1": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "2e3d6cc85762abd38d08b1ff2ca4f2d7",
"sha256": "d8898c76be8e828e6967c7f3f0549d95b83410b5fdbb2f47486fdd03437aa486"
},
"downloads": -1,
"filename": "django-request-profiler-0.6.1.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "2e3d6cc85762abd38d08b1ff2ca4f2d7",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 23838,
"upload_time": "2014-10-21T11:39:38",
"url": "https://files.pythonhosted.org/packages/14/0a/8c1d386040aefca758f1540f0488a1e708556889c472d26b30a0533e6a1c/django-request-profiler-0.6.1.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "0ff71845923b9a81bb234682de39830d",
"sha256": "9cab38fa49d61bc00af354f5cdec3a7c644df64f068483ee24ef507dd9c91e5b"
},
"downloads": -1,
"filename": "django_request_profiler-0.6.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "0ff71845923b9a81bb234682de39830d",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 21383,
"upload_time": "2014-10-21T11:39:41",
"url": "https://files.pythonhosted.org/packages/a9/5c/959a33e994d17fde5f7926259c455ab0c3659726a78f8d7a2e05cfd192aa/django_request_profiler-0.6.1-py2-none-any.whl"
}
],
"0.6.2": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "880ee197c167d1c848867d5651969c11",
"sha256": "377d53b2b8389106230531b3dcb6ff02a05f320d5e6e1e5c7c891a0da0e87bc2"
},
"downloads": -1,
"filename": "django-request-profiler-0.6.2.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "880ee197c167d1c848867d5651969c11",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 23835,
"upload_time": "2014-10-21T11:40:27",
"url": "https://files.pythonhosted.org/packages/3e/06/152189b004bb7c72fc724d05ff20af1e66faee4def477e89f085ce9e0d68/django-request-profiler-0.6.2.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "629e3e042899116765a1aa32477c9a87",
"sha256": "3744d6f7abe7d9620eeee48864116bc90993003982c506cda27d94d873845a0b"
},
"downloads": -1,
"filename": "django_request_profiler-0.6.2-py2-none-any.whl",
"has_sig": false,
"md5_digest": "629e3e042899116765a1aa32477c9a87",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 21377,
"upload_time": "2014-10-21T11:40:30",
"url": "https://files.pythonhosted.org/packages/a8/d8/3ecf1a2eedb55c07de48c61801aa45717d40490657558908873a4c87bf6e/django_request_profiler-0.6.2-py2-none-any.whl"
}
],
"0.6.3": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "5fa12de3e1cbba0f7613a27d7d9152a7",
"sha256": "bf909015c557e4431317aed2870b7f5fec02d693b4c74a5d7fd33eca857b89a4"
},
"downloads": -1,
"filename": "django-request-profiler-0.6.3.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "5fa12de3e1cbba0f7613a27d7d9152a7",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 23771,
"upload_time": "2014-10-21T12:39:50",
"url": "https://files.pythonhosted.org/packages/64/64/a7e3382a8a088bdd87ccb07818e60adf871be320fe67bcdb5b842f871e71/django-request-profiler-0.6.3.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "9ced7b404d21b79a3acb019eaf0788ff",
"sha256": "12b4d1b237881aceb9d017cb054a99925667fc555186595c086e7792f1f74cef"
},
"downloads": -1,
"filename": "django_request_profiler-0.6.3-py2-none-any.whl",
"has_sig": false,
"md5_digest": "9ced7b404d21b79a3acb019eaf0788ff",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 21347,
"upload_time": "2014-10-21T12:39:53",
"url": "https://files.pythonhosted.org/packages/ef/53/b40e52632b22681d9dfe785b2939bb86228ed57a132e779c6e2b1a96eda0/django_request_profiler-0.6.3-py2-none-any.whl"
}
],
"0.6.4": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "76dcbd892b9804eeeecb10ab060963ac",
"sha256": "f9855f18ea244f87f3c915974a0d1245ae3a6be3751fa4cfa16b599e652a2332"
},
"downloads": -1,
"filename": "django-request-profiler-0.6.4.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "76dcbd892b9804eeeecb10ab060963ac",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 23241,
"upload_time": "2014-10-22T08:11:40",
"url": "https://files.pythonhosted.org/packages/18/b0/3fb871b6f9751400de0989676b5fdfbb7e093decb708d36a96fed87c5289/django-request-profiler-0.6.4.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "d73df5204c5062bbeb55e65ddf365784",
"sha256": "9fd4f595c2f222e7d4299ef09564fd1530c28fe3cc8d4007dccfc675ff70a690"
},
"downloads": -1,
"filename": "django_request_profiler-0.6.4-py2-none-any.whl",
"has_sig": false,
"md5_digest": "d73df5204c5062bbeb55e65ddf365784",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 21421,
"upload_time": "2014-10-22T08:11:43",
"url": "https://files.pythonhosted.org/packages/5f/79/43621f43dfe4bc45b6d5dd30b31f226b351f33acc263e2d49a4ffdd20a94/django_request_profiler-0.6.4-py2-none-any.whl"
}
],
"0.6.4-a": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "f096e82e75e6cd4526d6a9d9f5185d05",
"sha256": "d88e6b2f619665471f85a99866c4e490381f2c175d8c227b970e436eefc35ee0"
},
"downloads": -1,
"filename": "django-request-profiler-0.6.4-a.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "f096e82e75e6cd4526d6a9d9f5185d05",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 23451,
"upload_time": "2014-10-22T13:46:01",
"url": "https://files.pythonhosted.org/packages/99/07/c01953a20fb7720710a0dcd0cc2a3c754de4fef543e2cb1a18eb47ceb921/django-request-profiler-0.6.4-a.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "5cb73919bef122615fbaf5ebb98408fe",
"sha256": "716c07fc056a3993351f01720d3b02e00796033ff55e70335bf8e25de22058f6"
},
"downloads": -1,
"filename": "django_request_profiler-0.6.4_a-py2-none-any.whl",
"has_sig": false,
"md5_digest": "5cb73919bef122615fbaf5ebb98408fe",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 21922,
"upload_time": "2014-10-22T13:46:04",
"url": "https://files.pythonhosted.org/packages/db/68/9fe609efb0eebb22d3fe27a02a16cd29c08c734af2cdaf1682710362617f/django_request_profiler-0.6.4_a-py2-none-any.whl"
}
],
"0.7": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "db9dbedd3f39f1a5eb69a394aff5e2ad",
"sha256": "213c1bb4a64f016d7cabf9f227f99deca7f8b6c1f5dbaa7bf490d27cd10e0e2a"
},
"downloads": -1,
"filename": "django-request-profiler-0.7.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "db9dbedd3f39f1a5eb69a394aff5e2ad",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 28520,
"upload_time": "2014-10-30T15:06:55",
"url": "https://files.pythonhosted.org/packages/1a/88/0e2953bcc572ecc0ac9695f8c22c7f89ccdc3464be7accde8e0efa6a1eb2/django-request-profiler-0.7.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "46897a66f4b26d0c23e5f4311232a031",
"sha256": "4e3a56e9f27ed6968783e9b97504c3b484298c68b34fea64a524d03df95ebf23"
},
"downloads": -1,
"filename": "django_request_profiler-0.7-py2-none-any.whl",
"has_sig": false,
"md5_digest": "46897a66f4b26d0c23e5f4311232a031",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 25668,
"upload_time": "2014-10-30T15:06:57",
"url": "https://files.pythonhosted.org/packages/da/16/c3885f00a96c985651af5ac966623b77d9a1eb5e7f7c45825c6bb51b0a29/django_request_profiler-0.7-py2-none-any.whl"
}
],
"0.7.1": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "75008a22c3aff8f56d81000c8cae85e8",
"sha256": "7ae2eae9e4cb97deb4b0fe65527ca3e0c3f08bc9b1e0661765097e069395ad56"
},
"downloads": -1,
"filename": "django-request-profiler-0.7.1.macosx-10.10-intel.tar.gz",
"has_sig": false,
"md5_digest": "75008a22c3aff8f56d81000c8cae85e8",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 25310,
"upload_time": "2014-11-06T17:36:54",
"url": "https://files.pythonhosted.org/packages/da/ec/961f9343db89820a51ea126b554dd104aa0b9c2feecb38b22c6ac93a147f/django-request-profiler-0.7.1.macosx-10.10-intel.tar.gz"
},
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "54c26a30103db88cc23793abce216ffd",
"sha256": "372e2be636ddd9d61d84567b0b31efa34c6927471704edb5e2ebf50a14e8a6f0"
},
"downloads": -1,
"filename": "django-request-profiler-0.7.1.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "54c26a30103db88cc23793abce216ffd",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 28565,
"upload_time": "2014-12-22T14:00:17",
"url": "https://files.pythonhosted.org/packages/6b/3b/f010131d63725359c955d90a97fdfdaa04852c3bc10335f2273192776944/django-request-profiler-0.7.1.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "e2a32acd77a2302a8fbff1bf16365b44",
"sha256": "2e6942612dde8e29252128b6dff28c1d5358ce0836704e3d2a31304f0fe6b615"
},
"downloads": -1,
"filename": "django_request_profiler-0.7.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "e2a32acd77a2302a8fbff1bf16365b44",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 22863,
"upload_time": "2014-11-06T17:36:56",
"url": "https://files.pythonhosted.org/packages/ea/90/3c0fcdf6a629f47a4a1b1afc131730f0a39f6505fbb9e436e29dc1301504/django_request_profiler-0.7.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "169623120342d32c95190acdafb6b636",
"sha256": "c9dd9f50b8556b2ebd4ca6195dd9e017c174c029363c210478cab4b6f907a493"
},
"downloads": -1,
"filename": "django-request-profiler-0.7.1.tar.gz",
"has_sig": false,
"md5_digest": "169623120342d32c95190acdafb6b636",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13752,
"upload_time": "2014-12-22T14:00:20",
"url": "https://files.pythonhosted.org/packages/76/4d/9be4234019073089d9882078ec3dab1c70da740f545e2d001cdf78dfee19/django-request-profiler-0.7.1.tar.gz"
}
],
"0.7.2": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "d3e6dad275ab832feeeb2fcd43670c5d",
"sha256": "93f9597e914b5ddf801ba0be30630090754f1155ca187c1075a6d70e57b1899b"
},
"downloads": -1,
"filename": "django-request-profiler-0.7.2.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "d3e6dad275ab832feeeb2fcd43670c5d",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 28577,
"upload_time": "2014-12-22T14:01:42",
"url": "https://files.pythonhosted.org/packages/dc/ec/a078f19a3343657bf6d2f02f41ad8e57a133361ae4920775585d741cc43b/django-request-profiler-0.7.2.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "df4e17f21d391cde0fbd682542f2c615",
"sha256": "85a1394bec60556fb7e6300333d72079796ade774a40c54db966539368032809"
},
"downloads": -1,
"filename": "django_request_profiler-0.7.2-py2-none-any.whl",
"has_sig": false,
"md5_digest": "df4e17f21d391cde0fbd682542f2c615",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 25713,
"upload_time": "2014-12-22T14:01:48",
"url": "https://files.pythonhosted.org/packages/c1/2c/11434254d4d653106172bc4d0d9127b69f0af44fd862fbd4cb2a8a155f04/django_request_profiler-0.7.2-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3f1d3b5f10b7d384f1c89799159319ae",
"sha256": "107b43d14a033d299564a74c64318b88c052c33c79c9c7920168791ff20eadfd"
},
"downloads": -1,
"filename": "django-request-profiler-0.7.2.tar.gz",
"has_sig": false,
"md5_digest": "3f1d3b5f10b7d384f1c89799159319ae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13760,
"upload_time": "2014-12-22T14:01:45",
"url": "https://files.pythonhosted.org/packages/31/6b/489ceb9f74d06daa310eb8d6295fecb931de1054182c5d6c3d92319fba78/django-request-profiler-0.7.2.tar.gz"
}
],
"0.7.3": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "b4b258dbcd5a42018504fcf1a5726273",
"sha256": "56b5014bb96da0d6d2124e151a988d2074b821457cac6962b3baca9429e2196c"
},
"downloads": -1,
"filename": "django-request-profiler-0.7.3.macosx-10.6-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "b4b258dbcd5a42018504fcf1a5726273",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 28821,
"upload_time": "2014-12-23T14:10:06",
"url": "https://files.pythonhosted.org/packages/d0/f3/10607faf614811f7a6e7ab11f92aee903f03a196eab49f46d93aba9fc138/django-request-profiler-0.7.3.macosx-10.6-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "6d8922098d417345d180127fe34069b6",
"sha256": "241ae78b143d9e57dcaac6d936a91db7ad640c6f4270866827b3ca6ab274900d"
},
"downloads": -1,
"filename": "django_request_profiler-0.7.3-py2-none-any.whl",
"has_sig": false,
"md5_digest": "6d8922098d417345d180127fe34069b6",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 25883,
"upload_time": "2014-12-23T14:10:13",
"url": "https://files.pythonhosted.org/packages/aa/79/9fbe951cffe28ad13a1b4f5638a723438a4f49d80cc0f477399d28cb1260/django_request_profiler-0.7.3-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a52ade3a92cd5017901a62141e7f87ce",
"sha256": "39bd4e25297c33b771eeddc286791674727be7806787fc90b3ded6c55bfbe2b0"
},
"downloads": -1,
"filename": "django-request-profiler-0.7.3.tar.gz",
"has_sig": false,
"md5_digest": "a52ade3a92cd5017901a62141e7f87ce",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13878,
"upload_time": "2014-12-23T14:10:10",
"url": "https://files.pythonhosted.org/packages/69/f5/99ee652fd8260a13acbc4ec5ef51e39a3e516455b5c744d105bb0481deeb/django-request-profiler-0.7.3.tar.gz"
}
],
"0.8": [
{
"comment_text": "built for Darwin-14.0.0",
"digests": {
"md5": "ad24b8f92d192ac7facb25f3b4a812b6",
"sha256": "814487cb7cc6bbc917d6b1501ded187d5652f114303f68653b4d64f00570598e"
},
"downloads": -1,
"filename": "django-request-profiler-0.8.macosx-10.10-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "ad24b8f92d192ac7facb25f3b4a812b6",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 26275,
"upload_time": "2015-01-12T11:48:31",
"url": "https://files.pythonhosted.org/packages/eb/45/df5c9f60f446ce542d43915e0d8f7d76b9009b217f3f9acdb68a6d7273a5/django-request-profiler-0.8.macosx-10.10-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "2203db7662f288ab688585cd0e3a937c",
"sha256": "a7196aa7b4779ecbea12972ffb899a100ffa4c8994f32d6ea7aa7186002046db"
},
"downloads": -1,
"filename": "django_request_profiler-0.8-py2-none-any.whl",
"has_sig": false,
"md5_digest": "2203db7662f288ab688585cd0e3a937c",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 23685,
"upload_time": "2015-01-12T11:48:40",
"url": "https://files.pythonhosted.org/packages/c0/e3/7dd6ccb3572ec440c597a436ffc8ebd3b8c2d58a7902f9fc6036f0101f20/django_request_profiler-0.8-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "cb9adfe211a8dc56f45288550bd2bbf4",
"sha256": "f29e1add24398226376fda86b078edc8f8ea3f77bef13b6efd1194906a04bce8"
},
"downloads": -1,
"filename": "django-request-profiler-0.8.tar.gz",
"has_sig": false,
"md5_digest": "cb9adfe211a8dc56f45288550bd2bbf4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14068,
"upload_time": "2015-01-12T11:48:27",
"url": "https://files.pythonhosted.org/packages/18/de/928534bd8a12ccbe46e3fc5cf9e2c473fc82f21ac578cdb0f64381f062eb/django-request-profiler-0.8.tar.gz"
}
],
"0.9": [
{
"comment_text": "built for Darwin-14.5.0",
"digests": {
"md5": "7bd0140cf705f37caebfc9903688e1c1",
"sha256": "e7588cf4b38778ee91430b4a8c0655d71f5d63e037257cbc68c0b6591133061a"
},
"downloads": -1,
"filename": "django-request-profiler-0.9.macosx-10.10-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "7bd0140cf705f37caebfc9903688e1c1",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 31284,
"upload_time": "2015-09-18T13:07:38",
"url": "https://files.pythonhosted.org/packages/e7/f2/f0236f6a38fe4f3bf1baa6752047358db890e52ed929ee59e8677b880712/django-request-profiler-0.9.macosx-10.10-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "4efb1ee5edde1ac1231b7f32aaeffd2f",
"sha256": "7a8bca88199acab4a04211063af6de4af01ca76f7f4428d3a85c7fde5953abb7"
},
"downloads": -1,
"filename": "django_request_profiler-0.9-py2-none-any.whl",
"has_sig": false,
"md5_digest": "4efb1ee5edde1ac1231b7f32aaeffd2f",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 28482,
"upload_time": "2015-09-18T13:07:42",
"url": "https://files.pythonhosted.org/packages/79/cc/7372deb1b08a7c09160dfb3496f03a23d495226d3cc5005b2c72e83aba64/django_request_profiler-0.9-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "98e91df8a2e41cd4e04921c1e05076ad",
"sha256": "d0982c8d690a1539ba31799d1fdb337a15c4977305549acf611f4f03ddec18dc"
},
"downloads": -1,
"filename": "django-request-profiler-0.9.tar.gz",
"has_sig": false,
"md5_digest": "98e91df8a2e41cd4e04921c1e05076ad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14843,
"upload_time": "2015-09-18T13:07:34",
"url": "https://files.pythonhosted.org/packages/6f/ec/96c9ab3f546b6e1bbce2532f5e45217bdcf5446e568c7a6df8960328ce63/django-request-profiler-0.9.tar.gz"
}
],
"0.9.1": [
{
"comment_text": "built for Darwin-15.3.0",
"digests": {
"md5": "e991feaa32d595bf34740ffcc504ca09",
"sha256": "24939558ef95a840218deffaeb90fef95b8926343c6c6957f88b8f1899558899"
},
"downloads": -1,
"filename": "django-request-profiler-0.9.1.macosx-10.11-intel.tar.gz",
"has_sig": false,
"md5_digest": "e991feaa32d595bf34740ffcc504ca09",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 28121,
"upload_time": "2016-02-11T17:38:14",
"url": "https://files.pythonhosted.org/packages/1b/25/22d9be9720025c2db6ecee95e7e8a217263be74cb6c270b9ea1d5bcfb624/django-request-profiler-0.9.1.macosx-10.11-intel.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "eab3a40e62c3fee40ddbbfd6199f964a",
"sha256": "59dc837d71ba7d638539e00be7010465e6e3ff3e780f2bbb5a3ffb3d6d0e31b6"
},
"downloads": -1,
"filename": "django_request_profiler-0.9.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "eab3a40e62c3fee40ddbbfd6199f964a",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 25678,
"upload_time": "2016-02-11T17:38:19",
"url": "https://files.pythonhosted.org/packages/62/ca/7fe9253d33aeb217faa5eaf49f05f190dd481382eabd186c6b2f475cafeb/django_request_profiler-0.9.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e129a0865428c34515702e41426d5683",
"sha256": "a38c7b36e8a2a9d6104e9edaf8607df9d8404ae6e3da0746c477f69464290cb4"
},
"downloads": -1,
"filename": "django-request-profiler-0.9.1.tar.gz",
"has_sig": false,
"md5_digest": "e129a0865428c34515702e41426d5683",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14788,
"upload_time": "2016-02-11T17:38:06",
"url": "https://files.pythonhosted.org/packages/50/d6/c5e468d6c6617a1e512988a7e238283a8db1b3a60e049cb64b324588b3d3/django-request-profiler-0.9.1.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "0e572bf8a15635d46771d87c551a6c2f",
"sha256": "fddf2ca9536507d91edaf0b1544dcc48b9292417f3874ab1b396b12ab5c3e85b"
},
"downloads": -1,
"filename": "django_request_profiler-0.14-py3-none-any.whl",
"has_sig": false,
"md5_digest": "0e572bf8a15635d46771d87c551a6c2f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 22733,
"upload_time": "2019-08-14T08:05:43",
"url": "https://files.pythonhosted.org/packages/96/bf/dff6598e6824a05ab3d2a598c8eb6981ff0ac39838898cba936ce6fb92b2/django_request_profiler-0.14-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4b8e2596af2355cd0cc28d3248c77a78",
"sha256": "45a47545cbf80c0b9c87009c85922e6e58e57145fa7dabc800d5153a948a4c27"
},
"downloads": -1,
"filename": "django-request-profiler-0.14.tar.gz",
"has_sig": false,
"md5_digest": "4b8e2596af2355cd0cc28d3248c77a78",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17061,
"upload_time": "2019-08-14T08:05:45",
"url": "https://files.pythonhosted.org/packages/2e/7b/e87778558517383989b2ee9f90797cfebcb90c384edeed31bcfd00ec1b37/django-request-profiler-0.14.tar.gz"
}
]
}