{ "info": { "author": "Konstantinos Siaterlis", "author_email": "siaterliskonsta@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "# Django Command Monitoring\n\n### Description\nDjango Command Monitoring is a tool that logs the progress of django commands. It writes the progress into FireBase where you can then read and do whatever you want with the data. Currently it keeps the log of the last 100 iterations for each command to avoid overuse of Firebase database.\n\nCurrently supports:\n\n- Django>=1.11\n- Python 2 & 3\n\n\n## How to install\n\n#### Package installation\nUse \n - `pip install django-command-monitor`\n - `pip install git+https://github.com/orfium/django-command-monitoring.git`\n\n#### Set up environment\nIn your django settings file you have to include your FireBase credentials and the FireBase folder that identifies your \nproject.\n\nFor your FireBase credentials: \n```python\nFIREBASE_MONITORING = {\n 'API_KEY': '',\n 'DOMAIN': '',\n 'NAME': '',\n 'PROJECT_ID': '',\n 'SENDER_ID': ''\n}\n```\n\nFor your FireBase folder:\n```python\nFIREBASE_MONITORING_KEY = 'monitor-myapp-production'\n```\n\n#### How to run with django-command-monitoring\nWhen you are done setting up the only thing you have to do is to include the tool and use `MonitoredCommand` class \ninstead of Django's `BaseCommand`\n\n```python\nfrom django_command_monitor import monitor\n\nclass Command(monitor.MonitoredCommand):\n ...\n```\n\n#### Settings variables and command inputs\n- To disable the command monitoring feature for one command for development runs you can include the input \n`--disable_monitor` as argument in your command\n\n- If you want to disable the monitoring in the testing env, you can add a variable in your testing settings:\n`TESTING=True`\n\n- To set the time between each ping set the following variable in settings `FIREBASE_MONITORING_INTERVAL_PING=`, where ``\nis integer, default is 30 seconds.\n\n- To disable the monitoring for the entire project set the variable in settings `FIREBASE_MONITORING_RUN=False`\n\n## After installation\nYour data in FireBase will look like this:\n\n```json\n{\"monitor-myapp-production\":{\n \"commands\":{\n \"\":{\n \"log\":[{\n \"finished\": \"\",\n \"id\": \"\",\n \"latest\": \"\",\n \"message\": \"\",\n \"name\": \"\",\n \"params\": \"\",\n \"started\": \"\",\n \"status\": \"\",\n \"exception_type\": \"\"\n },\n {\"...\":\"...\"},\n \"...\" \n ]\n },\n \"\":{\"...\":\"...\"}\n }\n }\n}\n```\n\nFirst of all the name of the FireBase table is the same as the one in settings `FIREBASE_TABLE`.\nUnder the key `commands` all the commands that have ran under the `monitor.MonitoredCommand` are listed there.\n\nEach command is identified by its name along side with its parameters i.e. when running \n`python manage.py test_command --verbosity=2` the command name is transformed to `test_command__verbosity_2`.\n\nUnder each command there is the key `log` that contains a list of all runs of this command with the respective details\n\nFor each log it keeps the following data:\n- `id`: the identifier of the command(for now is the same as the key of the command mentioned above)\n- `name` : The name of the command i.e. when running `python manage.py test_command --verbossity=2` the name is `test_command`\n- `status`: the status of the command\n - `STARTED` : The command has just started\n - `RUNNING` : The command currently running\n - `FINISHED` : The command has naturally finished\n - `FAILED` : There was an error when running the command. `message` holds the error message and `exception_type`\n holds the type of the exception\n - `SYSTEM_KILL`: The command is killed by the system i.e. Heroku restarts the dyno based on the given interval. This \n status is assigned when the same command starts a new cycle and the previous log has status `RUNNING`, meaning the \n command is forced to stop before writing to FireBase\n- `started` : The datetime of when the process started\n- `finished`: The datetime of when the process finished. If the process is not yet finished the value is None\n- `latest`: The datetime of the latest ping. The process is running under a thread where it pings to FireBase under a \ntime interval\n- `message`: The message of the failed command\n- `exception_type` : The type of the exception when the command failed\n- `params`: The parameters of the command i.e. `python manage.py test_command --verbosity=2` goes to `verbosity=2`. \nMultiple parameters are comma separated\n\nFinally the `` format is as follows: YYYY-MM-DDTHH:MM:SS.(float)Z\n\n## TODO\n- [X] Handle the timeouts on FireBase, with at least 3 times retry\n- [ ] Add support for other command classes other than `BaseCommand`", "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/Orfium/django-command-monitoring", "keywords": "", "license": "LICENSE", "maintainer": "", "maintainer_email": "", "name": "django-command-monitor", "package_url": "https://pypi.org/project/django-command-monitor/", "platform": "", "project_url": "https://pypi.org/project/django-command-monitor/", "project_urls": { "Homepage": "https://github.com/Orfium/django-command-monitoring" }, "release_url": "https://pypi.org/project/django-command-monitor/0.3.0/", "requires_dist": null, "requires_python": "", "summary": "A toolset for monitoring django commands through FireBase.", "version": "0.3.0" }, "last_serial": 5396155, "releases": { "0.1.10": [ { "comment_text": "", "digests": { "md5": "657dd72c5af498b43b6598c9da385757", "sha256": "7e1cc7e50a25ad8fbad9de93f5dcdc3156bae4cf4e6b7e4e5f2a974eff532132" }, "downloads": -1, "filename": "django_command_monitor-0.1.10.tar.gz", "has_sig": false, "md5_digest": "657dd72c5af498b43b6598c9da385757", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5109, "upload_time": "2018-10-12T09:21:50", "url": "https://files.pythonhosted.org/packages/a5/9b/b8849c58e56ab0e87a5b237e8295ae7f4fe46f3e3d731ee7f48ec077859e/django_command_monitor-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "eee8ea2dede3b779b7f4225721659a8e", "sha256": "6a49d6f4b1f279b636022f64eaba870744e0744435916b1c61f93e932cacba7b" }, "downloads": -1, "filename": "django_command_monitor-0.1.11.tar.gz", "has_sig": false, "md5_digest": "eee8ea2dede3b779b7f4225721659a8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5128, "upload_time": "2018-10-12T15:20:06", "url": "https://files.pythonhosted.org/packages/f7/ea/469b8040dc61f86a95a0f56c2be7e55d6585cda76143f14afe339e798aba/django_command_monitor-0.1.11.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "63fdbfcb7a54006d92a91927c82bffd9", "sha256": "7bf5d0c286cb79a0b1d57a393bf43facc07356c3a428707b99c09aa3b5ad0a65" }, "downloads": -1, "filename": "django_command_monitor-0.1.12.tar.gz", "has_sig": false, "md5_digest": "63fdbfcb7a54006d92a91927c82bffd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5172, "upload_time": "2018-10-12T15:23:29", "url": "https://files.pythonhosted.org/packages/ab/6f/ac472e069bde3ee4a78708f941ff6181f16a984d720cde56c5999a5b5a89/django_command_monitor-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "d268240b337b7ff0fced979ea266fe9c", "sha256": "66c973b0da9ef55f35ea8bf385d17ef0acf3e8c32eeb9bb5c8cbcf8127ee9514" }, "downloads": -1, "filename": "django_command_monitor-0.1.13.tar.gz", "has_sig": false, "md5_digest": "d268240b337b7ff0fced979ea266fe9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5376, "upload_time": "2018-10-22T11:25:13", "url": "https://files.pythonhosted.org/packages/b9/36/7800bdf880830b5e59b0e00cc6809f53f5f08a2db34c452e7b99f92891bd/django_command_monitor-0.1.13.tar.gz" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "36deff3b085dbfae093ba8e09aade35f", "sha256": "968f54cb927ceb34b2eb128be7a923d74c841715af489cfda5d62dbfa350915a" }, "downloads": -1, "filename": "django_command_monitor-0.1.14-py2-none-any.whl", "has_sig": false, "md5_digest": "36deff3b085dbfae093ba8e09aade35f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 5612, "upload_time": "2018-10-24T08:54:51", "url": "https://files.pythonhosted.org/packages/d5/a8/820b3e79e43d47613bc1c8437cd22c22688aaa09f904cb6d60852a6d8968/django_command_monitor-0.1.14-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "15e44b2ce0bb5f807fffdc4676671d2d", "sha256": "638e534a4ffa1cbc44ce7e788627bdbdf278ec61fe60b16edf152efed7278128" }, "downloads": -1, "filename": "django_command_monitor-0.1.14.tar.gz", "has_sig": false, "md5_digest": "15e44b2ce0bb5f807fffdc4676671d2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5493, "upload_time": "2018-10-24T08:54:52", "url": "https://files.pythonhosted.org/packages/5a/4e/77dd3b882637c406d88c865929de09ad6f19c46dc3664873d8a2302fe3c9/django_command_monitor-0.1.14.tar.gz" } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "fc161facaa935368291a167dc5b4b013", "sha256": "49d47cc47ebc3feb1e264e6111906453e5908ee226c3f61472c8037d0d5f3adf" }, "downloads": -1, "filename": "django_command_monitor-0.1.15.tar.gz", "has_sig": false, "md5_digest": "fc161facaa935368291a167dc5b4b013", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5470, "upload_time": "2018-11-12T15:08:37", "url": "https://files.pythonhosted.org/packages/e3/9f/77f2b9694e9b12f095aa118320d6147707219ba8b85ccab788856c3d4c83/django_command_monitor-0.1.15.tar.gz" } ], "0.1.16": [ { "comment_text": "", "digests": { "md5": "deca1a9f5ffedb5b051d909edfa1a0ff", "sha256": "474fda1cb8d0c17509403ec7e7fdd9559e67e133fd0faa95233c8b964d29cea0" }, "downloads": -1, "filename": "django_command_monitor-0.1.16.tar.gz", "has_sig": false, "md5_digest": "deca1a9f5ffedb5b051d909edfa1a0ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5473, "upload_time": "2018-11-12T15:51:46", "url": "https://files.pythonhosted.org/packages/87/73/8df88464672b8127bb80ac5768f94d70e83a4b6fbc914589726ebbadb72e/django_command_monitor-0.1.16.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "d8609a4d47b0ded08bc1fd4b601de8ab", "sha256": "bce32d77372fe59d5bbc3bf2ed4e68f509037e4397b600b7b3d3d7e073048dbb" }, "downloads": -1, "filename": "django_command_monitor-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "d8609a4d47b0ded08bc1fd4b601de8ab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5154, "upload_time": "2018-09-17T10:39:47", "url": "https://files.pythonhosted.org/packages/9c/52/697201ce8692c902a2e6fd0ebc52589569498c0ddb81e2e0ada377ebb04a/django_command_monitor-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "55d5f2b44b57adc0c44750c6f6724f25", "sha256": "dc5821109635ba8977a0810caa904fa19c327a41918d37601a555c2c45a151bb" }, "downloads": -1, "filename": "django_command_monitor-0.1.3.tar.gz", "has_sig": false, "md5_digest": "55d5f2b44b57adc0c44750c6f6724f25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5011, "upload_time": "2018-09-17T10:39:48", "url": "https://files.pythonhosted.org/packages/99/43/31628a813d36d02b12a05c1f0fffa4056fe4fc3cccca8ee3ff37844acbb2/django_command_monitor-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "321a3af4ac40a18a69b9c439f3728fd2", "sha256": "48e1458f3915b916fcbff71c9df403eb842a2ba50f1f4d4d3abc611a8e16007b" }, "downloads": -1, "filename": "django_command_monitor-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "321a3af4ac40a18a69b9c439f3728fd2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5153, "upload_time": "2018-09-17T14:32:22", "url": "https://files.pythonhosted.org/packages/01/8a/3522a45780a77babb35999de15cf1ed391e8c783dedcb95384e5fcae164a/django_command_monitor-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "047502dbd556998292c1b406c36eb599", "sha256": "955b1786a938afad18a94cbb1e6e0c6213b06fd11a7b69bc258cc93569a93440" }, "downloads": -1, "filename": "django_command_monitor-0.1.4.tar.gz", "has_sig": false, "md5_digest": "047502dbd556998292c1b406c36eb599", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5004, "upload_time": "2018-09-17T14:32:24", "url": "https://files.pythonhosted.org/packages/91/2c/b4cd15ed5c5727ddc94452d10aa8f790026c8b4a6b468d6f9d49248ac3a5/django_command_monitor-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "eeeb60efe47e032de07933560d7d44f4", "sha256": "9934dd6f9430217f689d5e3e486e2ac644060abbbf3346b132b3a3e208702a08" }, "downloads": -1, "filename": "django_command_monitor-0.1.5.tar.gz", "has_sig": false, "md5_digest": "eeeb60efe47e032de07933560d7d44f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5051, "upload_time": "2018-10-08T15:21:04", "url": "https://files.pythonhosted.org/packages/bd/70/44e0c710d1d9ebf23565cdac613bf794eb48a586f7e276c1bbf4052363ea/django_command_monitor-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "770f716b5a0bee3415b1511a148377bb", "sha256": "19a2789ea17fa2ca3d175de1437ccc45afcd31d8c345c600bdbd86e93df3ff2b" }, "downloads": -1, "filename": "django_command_monitor-0.1.6.tar.gz", "has_sig": false, "md5_digest": "770f716b5a0bee3415b1511a148377bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5051, "upload_time": "2018-10-10T13:39:23", "url": "https://files.pythonhosted.org/packages/90/5e/14b9c5594528830b7bae5acdbb374b27bffd22e10661fb79258bbb2ef414/django_command_monitor-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "171911f151d2a2eee57db786f5648f06", "sha256": "075dbe614d2cfc9988b54ba2302885fff0b6f00a32a273c7db50ebb9569521d6" }, "downloads": -1, "filename": "django_command_monitor-0.1.7.tar.gz", "has_sig": false, "md5_digest": "171911f151d2a2eee57db786f5648f06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5099, "upload_time": "2018-10-10T13:55:07", "url": "https://files.pythonhosted.org/packages/e4/e2/704eaad8d7871d0b8791b7488cec180cc4fd5653bd288a5cec191bf025b8/django_command_monitor-0.1.7.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "4bf1c66a031062f4fa7aaf228ca7a164", "sha256": "f5ee795287818de1707e3ade4f0033d5e3cd23c20be65efed3e6672b89deffb6" }, "downloads": -1, "filename": "django_command_monitor-0.1.9.tar.gz", "has_sig": false, "md5_digest": "4bf1c66a031062f4fa7aaf228ca7a164", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5101, "upload_time": "2018-10-12T08:32:55", "url": "https://files.pythonhosted.org/packages/e3/5d/f0880e2e9e9c1d070311c49ccaea3a182cbc05ff70fb857f18b5afa3a59b/django_command_monitor-0.1.9.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "319f5ee4c405c83f73e7fcf29f5f3cea", "sha256": "93ae3b7856c56121fc65d0953f1b67b852864a50b0d98774e24e3d1b39e18887" }, "downloads": -1, "filename": "django_command_monitor-0.2.1.tar.gz", "has_sig": false, "md5_digest": "319f5ee4c405c83f73e7fcf29f5f3cea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5490, "upload_time": "2018-11-12T16:05:33", "url": "https://files.pythonhosted.org/packages/d1/d8/6c0087f061441ffc8e11c10a925d0311a973c86e9ad0ccba65acf4287536/django_command_monitor-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "dc47ee636646574e0562e3a9c56de872", "sha256": "dd06333347e774164cab088966f878f93b92cc0ebdc94cf28ccfdd60bbb43c84" }, "downloads": -1, "filename": "django_command_monitor-0.2.2.tar.gz", "has_sig": false, "md5_digest": "dc47ee636646574e0562e3a9c56de872", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5488, "upload_time": "2018-11-12T16:09:34", "url": "https://files.pythonhosted.org/packages/72/d6/51a7e95f6ae47f0e8bcfd7b3cf96c60ee5f414485b18db3efa64be2d1617/django_command_monitor-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "0c2d371a3dab14591660fbc898cff63c", "sha256": "721c90ead4256f0c032f3ef812ff1d0c3624b99750cd0a5771b811782c0e20b6" }, "downloads": -1, "filename": "django_command_monitor-0.2.3.tar.gz", "has_sig": false, "md5_digest": "0c2d371a3dab14591660fbc898cff63c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5495, "upload_time": "2018-11-19T13:39:04", "url": "https://files.pythonhosted.org/packages/54/96/79536cdb513bbc729c40f95d560ca79e3009da5c73aff3097f686473559c/django_command_monitor-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "de51498afb8418a5a333c4782f8e4bdc", "sha256": "aaba4a44f72e8a9231b8d7b96b2deeb8b5a97f434c795802ce6850d2ab078611" }, "downloads": -1, "filename": "django_command_monitor-0.2.4.tar.gz", "has_sig": false, "md5_digest": "de51498afb8418a5a333c4782f8e4bdc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5491, "upload_time": "2018-11-20T13:56:53", "url": "https://files.pythonhosted.org/packages/df/b7/8996fa555f7650d8032e1ab14681a1fc0f754f9cdcf539e10068ee46d0dd/django_command_monitor-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "7623c5df56401f14dad12ff03c8d0432", "sha256": "a8f8df0e7ed3f4082bfba98b6daf2fd115a2d8bbe4eeeb8a0942106907105fac" }, "downloads": -1, "filename": "django_command_monitor-0.2.5.tar.gz", "has_sig": false, "md5_digest": "7623c5df56401f14dad12ff03c8d0432", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5519, "upload_time": "2018-11-20T14:14:06", "url": "https://files.pythonhosted.org/packages/4d/9f/f5b257440551b497e3036d73eca72cb401fc243ff1279447a64a1d6071f5/django_command_monitor-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "c54ca89f384153bcddc88230d383c4ab", "sha256": "ff124f574f8dbe92585ab99eb93b211b26468033c742b91e64409fb3edbff575" }, "downloads": -1, "filename": "django_command_monitor-0.2.6.tar.gz", "has_sig": false, "md5_digest": "c54ca89f384153bcddc88230d383c4ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5526, "upload_time": "2018-11-20T14:21:56", "url": "https://files.pythonhosted.org/packages/75/f9/c8df745f2ce2f361a68023b55bbb4e21162d4eb828293591b23d4fd06994/django_command_monitor-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "136562df8da7be0324592ea37830a8ca", "sha256": "9df061b2e9d55803d3384931a4ef8b3e6425734e3271f6e6528cd71f6cb0a5df" }, "downloads": -1, "filename": "django_command_monitor-0.2.7.tar.gz", "has_sig": false, "md5_digest": "136562df8da7be0324592ea37830a8ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5554, "upload_time": "2018-12-20T10:05:17", "url": "https://files.pythonhosted.org/packages/a5/40/861b3c69f49bbaaca0028816f6a914ff428ad095aed91e96c46f9fe8a49d/django_command_monitor-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "558d74f659f90af59905b223cf3f0369", "sha256": "d53c3027b2e16f65f047b69f9961506e3afed561233fccbbf15a435234bbf255" }, "downloads": -1, "filename": "django_command_monitor-0.2.8.tar.gz", "has_sig": false, "md5_digest": "558d74f659f90af59905b223cf3f0369", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5524, "upload_time": "2018-12-20T10:11:50", "url": "https://files.pythonhosted.org/packages/2e/12/e42dc63f003db1ac9d1435e724ea2932886ce08d4be6bacb6e2fb7575ed8/django_command_monitor-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "51c644e40a7ae45828837cf2704ebe4a", "sha256": "9956c9787ffd7e64ef5ea3659664e004ee5fede73ae76497bbb5c47adf6708e5" }, "downloads": -1, "filename": "django_command_monitor-0.2.9.tar.gz", "has_sig": false, "md5_digest": "51c644e40a7ae45828837cf2704ebe4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5549, "upload_time": "2018-12-20T10:20:44", "url": "https://files.pythonhosted.org/packages/62/6b/f309673e1d339d6d89ce6447fe1ea97806c632dc91df19b2900745da8dbd/django_command_monitor-0.2.9.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "105e6b2db4e87cbcffec6dfdc71d0468", "sha256": "4da7315de81027d9c66d28f85f1c26d4f3f8d99ee6b08a70ec8ab330ee49d15e" }, "downloads": -1, "filename": "django_command_monitor-0.3.0.tar.gz", "has_sig": false, "md5_digest": "105e6b2db4e87cbcffec6dfdc71d0468", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5685, "upload_time": "2019-06-13T14:27:37", "url": "https://files.pythonhosted.org/packages/09/c9/b06886797b8af6b4b85c0fa3aec624922972d0870470457ac550390fe9b6/django_command_monitor-0.3.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "105e6b2db4e87cbcffec6dfdc71d0468", "sha256": "4da7315de81027d9c66d28f85f1c26d4f3f8d99ee6b08a70ec8ab330ee49d15e" }, "downloads": -1, "filename": "django_command_monitor-0.3.0.tar.gz", "has_sig": false, "md5_digest": "105e6b2db4e87cbcffec6dfdc71d0468", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5685, "upload_time": "2019-06-13T14:27:37", "url": "https://files.pythonhosted.org/packages/09/c9/b06886797b8af6b4b85c0fa3aec624922972d0870470457ac550390fe9b6/django_command_monitor-0.3.0.tar.gz" } ] }