{ "info": { "author": "Tim Allen", "author_email": "tim@pyphilly.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 2.2", "Framework :: Django :: 3", "Framework :: Django :: 4", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "# Django Tempus Dominus\n\nDjango Tempus Dominus provides Django widgets for the [Tempus Dominus Bootstrap 4 DateTime](https://tempusdominus.github.io/bootstrap-4/ \"Tempus Dominus\") date and time picker.\n\n## A Note About the Future of This Package\n\nThe parent project to this package, Tempus Dominus, is being reworked. This package will not receive any feature updates until the parent project releases version 6, which will deprecate jQuery and Bootstrap as dependencies. When that occurs, we'll update this package to support v6.\n\n## Installation\n\n* From PyPI: `pip install django-tempus-dominus`\n\nThen add `tempus_dominus` to `INSTALLED_APPS` in your Django settings.\n\n## Usage & Django Settings\n\nThe following settings are available:\n\n* `TEMPUS_DOMINUS_LOCALIZE` (default: `False`): if `True`, widgets will be translated to the selected browser language and use the localized date and time formats.\n* `TEMPUS_DOMINUS_INCLUDE_ASSETS` (default: `True`): if `True`, loads Tempus Dominus and `moment` JS and CSS from Cloudflare's CDN, otherwise loading the JS and CSS are up to you.\n* `TEMPUS_DOMINUS_DATE_FORMAT` (default: `YYYY-MM-DD`)\n* `TEMPUS_DOMINUS_DATETIME_FORMAT` (default: `YYYY-MM-DD HH:mm:ss`)\n* `TEMPUS_DOMINUS_TIME_FORMAT` (default: `HH:mm:ss`)\n\nThree widgets are provided:\n\n* `DatePicker`\n * Defaults to `L` if `TEMPUS_DOMINUS_LOCALIZE` is `True`, otherwise `TEMPUS_DOMINUS_DATE_FORMAT`\n* `DateTimePicker`\n * Defaults to `L LTS` if `TEMPUS_DOMINUS_LOCALIZE` is `True`, otherwise `TEMPUS_DOMINUS_DATETIME_FORMAT`\n* `TimePicker`\n * Defaults to `LTS` if `TEMPUS_DOMINUS_LOCALIZE` is `True`, otherwise `TEMPUS_DOMINUS_TIME_FORMAT`\n\nIn your Django form, you can use the widgets like this:\n\n```python\nfrom django import forms\nfrom tempus_dominus.widgets import DatePicker, TimePicker, DateTimePicker\n\nclass MyForm(forms.Form):\n date_field = forms.DateField(widget=DatePicker())\n date_field_required_with_min_max_date = forms.DateField(\n required=True,\n widget=DatePicker(\n options={\n 'minDate': '2009-01-20',\n 'maxDate': '2017-01-20',\n },\n ),\n initial='2013-01-01',\n )\n \"\"\"\n In this example, the date portion of `defaultDate` is irrelevant;\n only the time portion is used. The reason for this is that it has\n to be passed in a valid MomentJS format. This will default the time\n to be 14:56:00 (or 2:56pm).\n \"\"\"\n time_field = forms.TimeField(\n widget=TimePicker(\n options={\n 'enabledHours': [9, 10, 11, 12, 13, 14, 15, 16],\n 'defaultDate': '1970-01-01T14:56:00'\n },\n attrs={\n 'input_toggle': True,\n 'input_group': False,\n },\n ),\n )\n datetime_field = forms.DateTimeField(\n widget=DateTimePicker(\n options={\n 'useCurrent': True,\n 'collapse': False,\n },\n attrs={\n 'append': 'fa fa-calendar',\n 'icon_toggle': True,\n }\n ),\n )\n```\n\nThen in your template, include jQuery, `{{ form.media }}`, and render the form:\n\n```HTML+Django\n\n \n {# Include FontAwesome; required for icon display #}\n \n\n {# Include Bootstrap 4 and jQuery #}\n \n \n\n {# Django Tempus Dominus assets are included in `{{ form.media }}` #}\n {{ form.media }}\n \n\n \n
\n
\n
\n
\n {% csrf_token %}\n {{ form.as_p }}\n
\n
\n
\n
\n \n\n```\n\n## Widget Options\n\n* `options` (dictionary): This dictionary will be passed to Tempus Dominus. [A full list of options is available here](https://tempusdominus.github.io/bootstrap-4/Options/).\n* `input_toggle` (boolean, default `True`): Controls whether clicking on the input field toggles the datepicker popup. Typically is set to False when an icon is in use.\n* `input_group` (boolean, default `True`): Whether to include a Bootstrap 4 `input-group` around the picker.\n* `size` (string): Controls the size of the input group (`small` or `large`). Defaults to the default size.\n* `prepend` (string): Name of a Font Awesome icon to prepend to the input field (`fa fa-calendar`).\n* `append` (string): Name of a Font Awesome icon to append to the input field (`fa fa-calendar`).\n* `icon_toggle` (boolean, default `True`): Controls whether clicking on the icon toggles the datepicker popup. Typically is set to False when an icon is in use.\n\n## Release Notes and Contributors\n\n* [Release notes](https://github.com/flipperpa/django-tempus-dominus/releases)\n* [Our wonderful contributors](https://github.com/flipperpa/django-tempus-dominus/graphs/contributors)\n\n## Maintainers\n\n* Timothy Allen (https://github.com/FlipperPA)\n* Ian Stewart (https://github.com/ianastewart)\n\nThis package is largely maintained by the staff of [Wharton Research Data Services](https://wrds.wharton.upenn.edu/). We are thrilled that [The Wharton School](https://www.wharton.upenn.edu/) allows us a certain amount of time to contribute to open-source projects. We add features as they are necessary for our projects, and try to keep up with Issues and Pull Requests as best we can. Due to time constraints (our full time jobs!), Feature Requests without a Pull Request may not be implemented, but we are always open to new ideas and grateful for contributions and our package users.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/FlipperPA/django-tempus-dominus", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "django-tempus-dominus", "package_url": "https://pypi.org/project/django-tempus-dominus/", "platform": null, "project_url": "https://pypi.org/project/django-tempus-dominus/", "project_urls": { "Homepage": "https://github.com/FlipperPA/django-tempus-dominus" }, "release_url": "https://pypi.org/project/django-tempus-dominus/5.1.2.17/", "requires_dist": [ "django" ], "requires_python": "", "summary": "A Django widget for the Tempus Dominus Bootstrap 4 DateTime picker.", "version": "5.1.2.17", "yanked": false, "yanked_reason": null }, "last_serial": 13348071, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "7e6ceb6a15be4223d256e1ad8751b17f", "sha256": "269f67fc4f4fa37e03c93f5bd5c18444df74475806eeca0226da31d443a722d4" }, "downloads": -1, "filename": "django_tempus_dominus-0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7e6ceb6a15be4223d256e1ad8751b17f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3596, "upload_time": "2018-04-17T14:31:19", "upload_time_iso_8601": "2018-04-17T14:31:19.227396Z", "url": "https://files.pythonhosted.org/packages/c2/c3/656c47e6d937898f47e579fa67595f20d38f1f72a27349f27a0bb710a6a3/django_tempus_dominus-0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a33188423b1733430e2d7bd637946c3", "sha256": "1a4ea90f4252cf7c8df86c686da86b7622ec4bf88a1f951b057b8e5fb7f32a8d" }, "downloads": -1, "filename": "django-tempus-dominus-0.1.tar.gz", "has_sig": false, "md5_digest": "6a33188423b1733430e2d7bd637946c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3331, "upload_time": "2018-04-17T14:31:20", "upload_time_iso_8601": "2018-04-17T14:31:20.194427Z", "url": "https://files.pythonhosted.org/packages/3c/7a/694d4399b0134788d555f23d8ba0ae0f033d11d7ba3667ce31261824089b/django-tempus-dominus-0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "390cc84b1bb0589a1ea8a7598dd160e6", "sha256": "b93c6f9effa8ef2b6bb9210c316c7573c5fc1325f8f8cc92d8e3cb35dcf19358" }, "downloads": -1, "filename": "django_tempus_dominus-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "390cc84b1bb0589a1ea8a7598dd160e6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3678, "upload_time": "2018-04-17T15:45:38", "upload_time_iso_8601": "2018-04-17T15:45:38.600569Z", "url": "https://files.pythonhosted.org/packages/50/ab/04e0186b7a346d2077277e005ba05a9f6a25507c58facd1e97c4b9a868db/django_tempus_dominus-0.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3e81fcc7751722d8ec3903a0a40697b", "sha256": "7df71b1dca960c74b3b970481d6e26f9ccee934381465ad4296f3beaef40a32a" }, "downloads": -1, "filename": "django-tempus-dominus-0.1.1.tar.gz", "has_sig": false, "md5_digest": "a3e81fcc7751722d8ec3903a0a40697b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3404, "upload_time": "2018-04-17T15:45:39", "upload_time_iso_8601": "2018-04-17T15:45:39.545275Z", "url": "https://files.pythonhosted.org/packages/ad/f5/5f1341b2c7fb65c31d38f8b5916d4872cf360f525e4596a2517b4103b6e0/django-tempus-dominus-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "eb8a31ea3dda5e9cf1cbab4e6c391d3c", "sha256": "a7b2a1fada7816a885243a599c9980049ebd926c57dbcebd919d05e2616d7c2a" }, "downloads": -1, "filename": "django_tempus_dominus-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "eb8a31ea3dda5e9cf1cbab4e6c391d3c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3810, "upload_time": "2018-05-26T01:38:29", "upload_time_iso_8601": "2018-05-26T01:38:29.527271Z", "url": "https://files.pythonhosted.org/packages/28/48/f8f25477c7c05c39160f0bc9a35d71b52f3a313c2de22158729ec7ec3167/django_tempus_dominus-0.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b30147096896e4cb2b72dc43bb0bfe73", "sha256": "83b5c711cd27061e080ae192cb7445827fa59345a68ff419e3c97da9094b6afc" }, "downloads": -1, "filename": "django-tempus-dominus-0.1.2.tar.gz", "has_sig": false, "md5_digest": "b30147096896e4cb2b72dc43bb0bfe73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3578, "upload_time": "2018-05-26T01:38:30", "upload_time_iso_8601": "2018-05-26T01:38:30.907543Z", "url": "https://files.pythonhosted.org/packages/39/f3/ec63abcddd7959d6e1e9b028e8713dd7b42164812d29e06e858a03339a70/django-tempus-dominus-0.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "3026cef7d0ddf0846216b5c45e94b911", "sha256": "2f6e93607cae6bf485a86e3f24435acc2f57f95057368a025549ae10b3a50802" }, "downloads": -1, "filename": "django_tempus_dominus-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "3026cef7d0ddf0846216b5c45e94b911", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3812, "upload_time": "2018-05-26T20:03:41", "upload_time_iso_8601": "2018-05-26T20:03:41.986905Z", "url": "https://files.pythonhosted.org/packages/81/fa/9918e310e21fa58cfa8baabbeea2a22ad03340e518334442eea5ca34f328/django_tempus_dominus-0.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea903e22fc8999e46e6af533d3f65da4", "sha256": "527253cf9863900105987a84617b5c08116d33447fc125ed24ccf9f0a0f88d2d" }, "downloads": -1, "filename": "django-tempus-dominus-0.1.3.tar.gz", "has_sig": false, "md5_digest": "ea903e22fc8999e46e6af533d3f65da4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3581, "upload_time": "2018-05-26T20:03:44", "upload_time_iso_8601": "2018-05-26T20:03:44.106447Z", "url": "https://files.pythonhosted.org/packages/b5/7f/63e382779181f9b43cb7b2bd74bfc1bf0e2790290723d8bd8e8ca52a3002/django-tempus-dominus-0.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "373b562e9c90c4130acb93b513181ce3", "sha256": "99c81a3384df8733c3c4d7bef854ebff8ffe7c34979a8567d3390769e77d60b2" }, "downloads": -1, "filename": "django_tempus_dominus-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "373b562e9c90c4130acb93b513181ce3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3800, "upload_time": "2018-05-29T15:15:43", "upload_time_iso_8601": "2018-05-29T15:15:43.149036Z", "url": "https://files.pythonhosted.org/packages/db/2b/607277e9bb73402ac06e996ddbe358750eb97ab0d765bdcf6213522d6125/django_tempus_dominus-0.1.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37b87e0d701a70b71d398eade5a98d08", "sha256": "e13c573f11d43b5cce65f1b4bc68b352f153855d275d9806ab597ca5f3d6e23a" }, "downloads": -1, "filename": "django-tempus-dominus-0.1.4.tar.gz", "has_sig": false, "md5_digest": "37b87e0d701a70b71d398eade5a98d08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3572, "upload_time": "2018-05-29T15:15:44", "upload_time_iso_8601": "2018-05-29T15:15:44.291225Z", "url": "https://files.pythonhosted.org/packages/a9/c9/e2931a7a6f2d39196340f1b0e93a90634b576213f6cc1b93a6728244a356/django-tempus-dominus-0.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.1.0": [ { "comment_text": "", "digests": { "md5": "fe4f5c2edc0404e602734074b5d55091", "sha256": "07bb4a19ef7aa148a1f51eaccc3837bc27291d1d7afdc4d004c8a41bb77aaa6b" }, "downloads": -1, "filename": "django_tempus_dominus-5.0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "fe4f5c2edc0404e602734074b5d55091", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4409, "upload_time": "2018-08-13T14:30:07", "upload_time_iso_8601": "2018-08-13T14:30:07.571175Z", "url": "https://files.pythonhosted.org/packages/ef/f8/126fd553b1b44f634b9a5d9971258cf84fb3e0df923756aba313fff8d32e/django_tempus_dominus-5.0.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0f9cab312ddf1a27466f87239d8c225", "sha256": "8b1ca2194253d6abb9ab776abd69d7a9385dd1f9ce50b202f99e81cf97de3fd9" }, "downloads": -1, "filename": "django-tempus-dominus-5.0.1.0.tar.gz", "has_sig": false, "md5_digest": "a0f9cab312ddf1a27466f87239d8c225", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4136, "upload_time": "2018-08-13T14:30:08", "upload_time_iso_8601": "2018-08-13T14:30:08.758267Z", "url": "https://files.pythonhosted.org/packages/ae/32/908f14b0ff634241d1609fb33989768a43313eb3a22edbe0024daf4b3f3e/django-tempus-dominus-5.0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.1.1": [ { "comment_text": "", "digests": { "md5": "6e388d91483183e7ec053f04704fec75", "sha256": "28cb051da6aabb828cc64e241f4a8cf2dbf45cd62c5553588d2e556d5ea0e3b7" }, "downloads": -1, "filename": "django_tempus_dominus-5.0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6e388d91483183e7ec053f04704fec75", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4775, "upload_time": "2018-09-09T23:19:15", "upload_time_iso_8601": "2018-09-09T23:19:15.409867Z", "url": "https://files.pythonhosted.org/packages/9e/31/c572e5ee30f45192924c5c796f2743e71946c9ee53d39836dc56f5232fce/django_tempus_dominus-5.0.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28f14eb020800210e6150afa13161861", "sha256": "0caf69fd210d9cbdcbff025b082e5fcaa39d1fd1ec4238163d6373d4c76bf590" }, "downloads": -1, "filename": "django-tempus-dominus-5.0.1.1.tar.gz", "has_sig": false, "md5_digest": "28f14eb020800210e6150afa13161861", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4597, "upload_time": "2018-09-09T23:19:16", "upload_time_iso_8601": "2018-09-09T23:19:16.684445Z", "url": "https://files.pythonhosted.org/packages/7a/c6/a1dacb6a47f34068d0d6960dbf332e282161042d5dc7d6f24d082c139e8c/django-tempus-dominus-5.0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.1.2": [ { "comment_text": "", "digests": { "md5": "23930cb17c28ee3c4b61ac113158541a", "sha256": "5266b725f8bb4811074a856b3c26b79f498b8deac0ff9ec3886ee84278648d9e" }, "downloads": -1, "filename": "django_tempus_dominus-5.0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "23930cb17c28ee3c4b61ac113158541a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4834, "upload_time": "2018-09-10T11:26:35", "upload_time_iso_8601": "2018-09-10T11:26:35.293583Z", "url": "https://files.pythonhosted.org/packages/63/31/1021a424bd16ebc4683e69179c01f471355c28fdad78822cdb3b51497d53/django_tempus_dominus-5.0.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "968ca7d5ec680aebf231e7be29eed61c", "sha256": "2f5832713decd45d612a40d13f8920c11451284e577eb98a9108995aafcc4324" }, "downloads": -1, "filename": "django-tempus-dominus-5.0.1.2.tar.gz", "has_sig": false, "md5_digest": "968ca7d5ec680aebf231e7be29eed61c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4669, "upload_time": "2018-09-10T11:26:36", "upload_time_iso_8601": "2018-09-10T11:26:36.719201Z", "url": "https://files.pythonhosted.org/packages/a1/0a/efab6703109abc1ff2370f6560bfc84e90ef4e63da13ce08b53804566da8/django-tempus-dominus-5.0.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.1.3": [ { "comment_text": "", "digests": { "md5": "4ca6b4e295877ceb989d501790cc52fa", "sha256": "4ec27277c5a3e0318f0d3e31e46e44cf3772c44c4593e83e211683cc736e4890" }, "downloads": -1, "filename": "django_tempus_dominus-5.0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "4ca6b4e295877ceb989d501790cc52fa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7033, "upload_time": "2018-10-21T15:09:03", "upload_time_iso_8601": "2018-10-21T15:09:03.834669Z", "url": "https://files.pythonhosted.org/packages/ff/1b/11e19a5e29cef4e5881395a2bf43192ddedb78267f91776ff69f48b0abe2/django_tempus_dominus-5.0.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2ecb10fa10fd5b8cac922b6b1b6fba1", "sha256": "ef883238cf1a924f0f21e286b342228ca5e775eb7b3504a5e1a9e9d20c7eb9a0" }, "downloads": -1, "filename": "django-tempus-dominus-5.0.1.3.tar.gz", "has_sig": false, "md5_digest": "c2ecb10fa10fd5b8cac922b6b1b6fba1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5775, "upload_time": "2018-10-21T15:09:05", "upload_time_iso_8601": "2018-10-21T15:09:05.316527Z", "url": "https://files.pythonhosted.org/packages/4e/cd/13c01e646e1768a10385e143adb48da57ffb26b80202f5a46425a2946734/django-tempus-dominus-5.0.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.1.4": [ { "comment_text": "", "digests": { "md5": "7b0a5dd9c89381f4aa2aacec225b69e9", "sha256": "7990269f21310045ffda215471bd87e3eb01d19ab06974e90b218de8643cf93f" }, "downloads": -1, "filename": "django_tempus_dominus-5.0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "7b0a5dd9c89381f4aa2aacec225b69e9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7474, "upload_time": "2018-10-28T23:10:54", "upload_time_iso_8601": "2018-10-28T23:10:54.061553Z", "url": "https://files.pythonhosted.org/packages/93/f4/a32eece25b6bcd10e47cff094fd8543927f6eb8674de336a5d80ecc8c8d7/django_tempus_dominus-5.0.1.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "142e120517bd93d8856240f9b33e7dc8", "sha256": "05257233eb57afb7f5495f31d9eff5ffbdf684c11b646279bf154209175bdac5" }, "downloads": -1, "filename": "django-tempus-dominus-5.0.1.4.tar.gz", "has_sig": false, "md5_digest": "142e120517bd93d8856240f9b33e7dc8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6025, "upload_time": "2018-10-28T23:10:55", "upload_time_iso_8601": "2018-10-28T23:10:55.731238Z", "url": "https://files.pythonhosted.org/packages/fe/a9/f65b6185b60d75665d6953c525db6841118dc6207700d7f4c1a25f74f8a4/django-tempus-dominus-5.0.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.0": [ { "comment_text": "", "digests": { "md5": "c323bff0f84f14b483569353498c3ca0", "sha256": "19b5d082ef556b0c1f947f5492ae797945aa8f07b0686cfb43e22f85518cf887" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c323bff0f84f14b483569353498c3ca0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10133, "upload_time": "2018-11-16T15:20:26", "upload_time_iso_8601": "2018-11-16T15:20:26.994704Z", "url": "https://files.pythonhosted.org/packages/c4/5b/c63c781d690574ae5b450ba0d83d5137249bcd0b9b5c1b6b659d77d1d80b/django_tempus_dominus-5.1.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88900552c6536dc40412b51a0bb5ec9e", "sha256": "73ecc7491a0d8c1831e5b8a907947aeeac939772a6431592c4a73f256b638af0" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.0.tar.gz", "has_sig": false, "md5_digest": "88900552c6536dc40412b51a0bb5ec9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7722, "upload_time": "2018-11-16T15:20:28", "upload_time_iso_8601": "2018-11-16T15:20:28.630291Z", "url": "https://files.pythonhosted.org/packages/4d/35/394e1737854bae54d130d6af25db2a4f70a93228657d22ab52ad62565761/django-tempus-dominus-5.1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.1": [ { "comment_text": "", "digests": { "md5": "cd45371ae4df5ff357177b9329a2415c", "sha256": "8a0ddbddc71440817dfdee408e2e8522dc7a0dd8f8cc4b73ede38fcc8a34c9bb" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "cd45371ae4df5ff357177b9329a2415c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9156, "upload_time": "2018-12-15T21:55:52", "upload_time_iso_8601": "2018-12-15T21:55:52.009223Z", "url": "https://files.pythonhosted.org/packages/c3/47/dc1b9301d0638ac58704b2b82d7529641ed52fd61df5af04250975fa60bb/django_tempus_dominus-5.1.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d94a36fa993bdddc5f57d94b0579a7d", "sha256": "e17c0987656ce7be1cc17c42d1a7a1d657fc2e9cf6469c6e5951cd09cbbf0eea" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.1.tar.gz", "has_sig": false, "md5_digest": "3d94a36fa993bdddc5f57d94b0579a7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7794, "upload_time": "2018-12-15T21:55:53", "upload_time_iso_8601": "2018-12-15T21:55:53.258636Z", "url": "https://files.pythonhosted.org/packages/28/28/8e93aab4df3c0eeeb863411990296b16129b074fa85bd8ec76952478922d/django-tempus-dominus-5.1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.11": [ { "comment_text": "", "digests": { "md5": "f128e06e067d09cb082c981c8ef443fb", "sha256": "bcc0a4617fff90e8b0421df60e29b8005a776d0be5663090634c8710014942d5" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.11-py3-none-any.whl", "has_sig": false, "md5_digest": "f128e06e067d09cb082c981c8ef443fb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11739, "upload_time": "2020-01-18T13:13:46", "upload_time_iso_8601": "2020-01-18T13:13:46.771304Z", "url": "https://files.pythonhosted.org/packages/ee/1f/2b2a8a5af983702d073cc9024731cf3241c8a5eaf10c16caa1234305d3d4/django_tempus_dominus-5.1.2.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d8f9b240bd38606cb346fdf08468c5e", "sha256": "b539229898fc4049f91d3f00698dabdf25ebd7bf40e253a3ff08640f1f82e919" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.11.tar.gz", "has_sig": false, "md5_digest": "6d8f9b240bd38606cb346fdf08468c5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13787, "upload_time": "2020-01-18T13:13:48", "upload_time_iso_8601": "2020-01-18T13:13:48.556819Z", "url": "https://files.pythonhosted.org/packages/51/0d/2a10d6ad346336ff5b71d7ef059f54fccbd3cc2c197f1fe30e3020e88f80/django-tempus-dominus-5.1.2.11.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.13": [ { "comment_text": "", "digests": { "md5": "27d39b286e46de928e4a14250afd20fe", "sha256": "6a44c3d55c82680a133867b6ad8d727213282eab681441e0ba3b5639740847f7" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.13-py3-none-any.whl", "has_sig": false, "md5_digest": "27d39b286e46de928e4a14250afd20fe", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12041, "upload_time": "2020-01-18T14:49:06", "upload_time_iso_8601": "2020-01-18T14:49:06.576312Z", "url": "https://files.pythonhosted.org/packages/89/f3/901fb39b91afe325ec6887aa018597cbe8701e6c2e4ac43b4552cf849c84/django_tempus_dominus-5.1.2.13-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a635a5bde56ff1c8e5ee31ef7a8c606", "sha256": "b0edf8a5b4f919192ef4ca0f40c9e0ebe35604323037990e8d97b583e589e99b" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.13.tar.gz", "has_sig": false, "md5_digest": "2a635a5bde56ff1c8e5ee31ef7a8c606", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14477, "upload_time": "2020-01-18T14:49:08", "upload_time_iso_8601": "2020-01-18T14:49:08.165669Z", "url": "https://files.pythonhosted.org/packages/85/f5/b8f0a85574367ab52b811f7c69598ca81d93bd92959d48fa24dc58588342/django-tempus-dominus-5.1.2.13.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.14": [ { "comment_text": "", "digests": { "md5": "e8ed5916e6d365a665b4c8135141d942", "sha256": "f766d2d2c2885276cd0f39dbfadd2416d661a48dc992a0f0ee09a3461d484bbd" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.14-py3-none-any.whl", "has_sig": false, "md5_digest": "e8ed5916e6d365a665b4c8135141d942", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11901, "upload_time": "2021-05-25T17:05:29", "upload_time_iso_8601": "2021-05-25T17:05:29.694869Z", "url": "https://files.pythonhosted.org/packages/4e/cb/67e21fb858938fb8bd33fb94c5930a4232aead94afe25c794aeeb2573ffb/django_tempus_dominus-5.1.2.14-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3fde8c023527393713847e057b4fd2f", "sha256": "6d766148302333d1ce97859bbb02f2c24e193895ed5f001bfd40f4fffdd7096e" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.14.tar.gz", "has_sig": false, "md5_digest": "f3fde8c023527393713847e057b4fd2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11343, "upload_time": "2021-05-25T17:05:30", "upload_time_iso_8601": "2021-05-25T17:05:30.993206Z", "url": "https://files.pythonhosted.org/packages/7b/0b/41c43c24af842a1887dc7daf60fbc1fffb21d9fa99934242a7decf52e2ad/django-tempus-dominus-5.1.2.14.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.15": [ { "comment_text": "", "digests": { "md5": "2f4cf495b8ff868ed27b2dbb10795046", "sha256": "af39178247a41951085c9803e53620b0c315916d51816babf7bb993b87f10de4" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.15-py3-none-any.whl", "has_sig": false, "md5_digest": "2f4cf495b8ff868ed27b2dbb10795046", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11158, "upload_time": "2021-08-12T17:59:09", "upload_time_iso_8601": "2021-08-12T17:59:09.410127Z", "url": "https://files.pythonhosted.org/packages/e1/46/b5afc7c8f27f267a820adf5473175ee42f46df6478dde1d5a91c456cf09c/django_tempus_dominus-5.1.2.15-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8697262864801ddb5918f8349be00f9", "sha256": "1ef793d5163c6dbbe0291fbbac608f416a776c0a747c87742e89129361a5670a" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.15.tar.gz", "has_sig": false, "md5_digest": "d8697262864801ddb5918f8349be00f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10580, "upload_time": "2021-08-12T17:59:10", "upload_time_iso_8601": "2021-08-12T17:59:10.630680Z", "url": "https://files.pythonhosted.org/packages/0e/9a/1019dc8c3333a4f5a3e27ddd2933304db4d48e8702817270ba98934ee883/django-tempus-dominus-5.1.2.15.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.16": [ { "comment_text": "", "digests": { "md5": "bd9329800eed91206a7ede31ccefddba", "sha256": "1db4a8da59f6ff35f8de456676973edceeb3e34b532554aac7c19988fde4f37e" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.16-py3-none-any.whl", "has_sig": false, "md5_digest": "bd9329800eed91206a7ede31ccefddba", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11170, "upload_time": "2021-08-12T23:02:46", "upload_time_iso_8601": "2021-08-12T23:02:46.403129Z", "url": "https://files.pythonhosted.org/packages/f4/23/4ed898147019a52a33e41be025442d83c325dba9340919d895dec6dead31/django_tempus_dominus-5.1.2.16-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e63ad02f459e43a8e1fb73c9b529284", "sha256": "6833918a8b076292179b30a36bec147e06ad2aebd59c639ade0b29102fa40a5d" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.16.tar.gz", "has_sig": false, "md5_digest": "2e63ad02f459e43a8e1fb73c9b529284", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10629, "upload_time": "2021-08-12T23:02:47", "upload_time_iso_8601": "2021-08-12T23:02:47.626505Z", "url": "https://files.pythonhosted.org/packages/5c/ab/44dbe546eaa67e4c751cbc70f463c509b573991e23a1f6c14ae8801988dc/django-tempus-dominus-5.1.2.16.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.17": [ { "comment_text": "", "digests": { "md5": "75b8b2c564e48d82c414a3276842a43c", "sha256": "f449e0e4dfde3b312aa153b552f83aa80c7b58f980ee75ba82b0e9cf6c35ff3c" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.17-py3-none-any.whl", "has_sig": false, "md5_digest": "75b8b2c564e48d82c414a3276842a43c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10978, "upload_time": "2022-03-21T14:42:14", "upload_time_iso_8601": "2022-03-21T14:42:14.108341Z", "url": "https://files.pythonhosted.org/packages/a6/47/3e81e26786f570a1a10834ae315044ced4e936017c7bece798824c02d618/django_tempus_dominus-5.1.2.17-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c37fc476a2013f5a35d754343dbde73f", "sha256": "a254c4550287e8f4e958c5d8dd9e39eec0a15aaad7469ad182b46f7f888e97ec" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.17.tar.gz", "has_sig": false, "md5_digest": "c37fc476a2013f5a35d754343dbde73f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10283, "upload_time": "2022-03-21T14:42:15", "upload_time_iso_8601": "2022-03-21T14:42:15.643961Z", "url": "https://files.pythonhosted.org/packages/b7/14/48064b01708dd67358ef5b857037068d2f215d28fe42189d0ce462827271/django-tempus-dominus-5.1.2.17.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.2": [ { "comment_text": "", "digests": { "md5": "7b5065554691666a9acd6af4685c296b", "sha256": "0e9f4515973e2982c308906994a04423042b9c7e7590148aa4d78c1c02bd098c" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "7b5065554691666a9acd6af4685c296b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10193, "upload_time": "2019-01-24T14:48:38", "upload_time_iso_8601": "2019-01-24T14:48:38.219554Z", "url": "https://files.pythonhosted.org/packages/e0/cd/8811da7e687aa77c0596939b83460ee8edbe63b9388ab11b232b053c8944/django_tempus_dominus-5.1.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "38ce01c9ae05365efeef2b80edc32405", "sha256": "1bf9598318993799056d1344af10a5169e772d235c3c1daf43ace0b4eed820f4" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.2.tar.gz", "has_sig": false, "md5_digest": "38ce01c9ae05365efeef2b80edc32405", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7768, "upload_time": "2019-01-24T14:48:40", "upload_time_iso_8601": "2019-01-24T14:48:40.270981Z", "url": "https://files.pythonhosted.org/packages/01/1c/10d64eb6662737ddac88add3b6a0d36240d535284d777826c939811217dd/django-tempus-dominus-5.1.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.3": [ { "comment_text": "", "digests": { "md5": "1b9e5833d8a918d684e9296983354840", "sha256": "0b6886f56d383c5f2453b81abdf4158a5d5bf87fb81d4772caaee8e6a2ea3528" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "1b9e5833d8a918d684e9296983354840", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10222, "upload_time": "2019-03-09T19:26:59", "upload_time_iso_8601": "2019-03-09T19:26:59.667650Z", "url": "https://files.pythonhosted.org/packages/de/11/b16546042f7031f120f0b4a5a2e39cf3ab452d5debad31f31cfa82c50170/django_tempus_dominus-5.1.2.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c12919ce62d4369804d4e074e9f3550", "sha256": "dbcc6ae0565d42fa4ffd4851db41411dd8eea5ea4edd337aedd3f42afae8ff3c" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.3.tar.gz", "has_sig": false, "md5_digest": "8c12919ce62d4369804d4e074e9f3550", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7866, "upload_time": "2019-03-09T19:27:00", "upload_time_iso_8601": "2019-03-09T19:27:00.671110Z", "url": "https://files.pythonhosted.org/packages/c2/30/34a823cede68d9b49b815af2e1f7b5cac6d6fc3439558d8cf883a8a847bb/django-tempus-dominus-5.1.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.4": [ { "comment_text": "", "digests": { "md5": "74b49f5ea77f37992d43d0d2bccbc709", "sha256": "2b914693f16d6bdd3c457c54a7da1507189bbe7d430ba7deb327223c4e4ed61d" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "74b49f5ea77f37992d43d0d2bccbc709", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10320, "upload_time": "2019-03-15T14:13:30", "upload_time_iso_8601": "2019-03-15T14:13:30.362618Z", "url": "https://files.pythonhosted.org/packages/2c/fa/caa327c860940bee6847bba94a48acc67aa8bc6a84ad4358c9b98f22dac7/django_tempus_dominus-5.1.2.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2aff5f1230c6d20405abf5e2cb7c1ba", "sha256": "4ac5c3e7fa27540b164954943d79b7fb33255d5ab1407861d3ea1e9a4497c1d5" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.4.tar.gz", "has_sig": false, "md5_digest": "f2aff5f1230c6d20405abf5e2cb7c1ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7984, "upload_time": "2019-03-15T14:13:31", "upload_time_iso_8601": "2019-03-15T14:13:31.653101Z", "url": "https://files.pythonhosted.org/packages/6a/6e/2b2084dce52ec2a4884c26f449f755d4b7c482af400b7848f4819b1f1d0b/django-tempus-dominus-5.1.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.5": [ { "comment_text": "", "digests": { "md5": "5b437858b5c84810ac2c6e5e861008d4", "sha256": "8038ecf7b8ed28568e26d3882066de4715712f057050452bffec952c970b20f7" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.5-py3-none-any.whl", "has_sig": false, "md5_digest": "5b437858b5c84810ac2c6e5e861008d4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10502, "upload_time": "2019-05-14T18:49:36", "upload_time_iso_8601": "2019-05-14T18:49:36.915788Z", "url": "https://files.pythonhosted.org/packages/24/0c/72f3e67242f8354fa7e01a79c1e2d49508f7be537b556f948ca4f4037ac2/django_tempus_dominus-5.1.2.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bfc4a8caf508126bf99420cbee8dd658", "sha256": "c657b1b868c09523f71aa41a5d5c278bad5523f9313ab452f7325b0f0d882cc7" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.5.tar.gz", "has_sig": false, "md5_digest": "bfc4a8caf508126bf99420cbee8dd658", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8206, "upload_time": "2019-05-14T18:49:38", "upload_time_iso_8601": "2019-05-14T18:49:38.302031Z", "url": "https://files.pythonhosted.org/packages/94/8c/e3830757dc6e5ef2989dee8650c95976a30c607350eee5ea3d6c0db60fa6/django-tempus-dominus-5.1.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.6": [ { "comment_text": "", "digests": { "md5": "38c6e9b2ae6f24dc82cab08402f9980c", "sha256": "e4086eff5098b17c0ed9f5314b37ca8108c1ec90658f1b6e30ba5fbfc437f794" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.6.tar.gz", "has_sig": false, "md5_digest": "38c6e9b2ae6f24dc82cab08402f9980c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8471, "upload_time": "2019-08-14T17:49:48", "upload_time_iso_8601": "2019-08-14T17:49:48.494599Z", "url": "https://files.pythonhosted.org/packages/3f/f5/adcd3997f99ba02e6d947ddfd1c56359047d477aba882d583c2476d950ba/django-tempus-dominus-5.1.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.6.post1": [ { "comment_text": "", "digests": { "md5": "54e49206330429b726dc8d02d84bec2c", "sha256": "433c1d85ccfdef71d9ca015876fd9b535fb3dbff48c887f3fe300514ba6dd386" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.6.post1-py3-none-any.whl", "has_sig": false, "md5_digest": "54e49206330429b726dc8d02d84bec2c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10748, "upload_time": "2019-08-16T18:42:00", "upload_time_iso_8601": "2019-08-16T18:42:00.718645Z", "url": "https://files.pythonhosted.org/packages/05/bb/0d82d3b4d46de0c155e93e3499629ab0fc5d9cca59779435d6581a4c8203/django_tempus_dominus-5.1.2.6.post1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a75f7f0055455b6f8fd07f110921c57b", "sha256": "bff4fd463d3c3be060eb4f4baeafc1e3d6b2e185ef5eb3b9862f52dcf3df2c4c" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.6.post1.tar.gz", "has_sig": false, "md5_digest": "a75f7f0055455b6f8fd07f110921c57b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8390, "upload_time": "2019-08-16T18:42:02", "upload_time_iso_8601": "2019-08-16T18:42:02.459798Z", "url": "https://files.pythonhosted.org/packages/ce/3e/9b00b377f4624a7e3638fe4aec5d4362c4e270dc8ec80b9197c00a874665/django-tempus-dominus-5.1.2.6.post1.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.7": [ { "comment_text": "", "digests": { "md5": "df9554efdec82f972a8e84f960c8a8ff", "sha256": "f63d9d2d21ddc4c2ed60bf2a92a1fbcd98646cd4d25ce6cbb85edc7413428980" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.7-py3-none-any.whl", "has_sig": false, "md5_digest": "df9554efdec82f972a8e84f960c8a8ff", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11036, "upload_time": "2019-09-13T20:01:05", "upload_time_iso_8601": "2019-09-13T20:01:05.217451Z", "url": "https://files.pythonhosted.org/packages/2a/92/92097caf1513f392c4525a3a17e2c5832d71b78e48afaeb439d4c1902fc9/django_tempus_dominus-5.1.2.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74b6f7e48752dd4c6e0b6f0b101f0d8b", "sha256": "c55f8fadbc3ab2a7dd6e15a7adcb12a88f6b20744507f185e8efb843c2e19a21" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.7.tar.gz", "has_sig": false, "md5_digest": "74b6f7e48752dd4c6e0b6f0b101f0d8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8788, "upload_time": "2019-09-13T20:01:07", "upload_time_iso_8601": "2019-09-13T20:01:07.013020Z", "url": "https://files.pythonhosted.org/packages/e8/ff/15a2fdbf30e996bba9d3a6abc4cdbd4b73e2ccf57892274d68c10325e867/django-tempus-dominus-5.1.2.7.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.8": [ { "comment_text": "", "digests": { "md5": "406d5be54b2e51a161c5e607ac82c8f2", "sha256": "5ad14b23d3e87b9a53801ca101f44a2edad619ac37d553a86790f73ac81c05b2" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.8-py3-none-any.whl", "has_sig": false, "md5_digest": "406d5be54b2e51a161c5e607ac82c8f2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11050, "upload_time": "2019-09-15T18:05:52", "upload_time_iso_8601": "2019-09-15T18:05:52.485778Z", "url": "https://files.pythonhosted.org/packages/4e/ab/6fe0d8cf6c2b811f634dbc74953d083763e2d05a48db430234d0b842cde2/django_tempus_dominus-5.1.2.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95d5a97801b44d48c8e0d4db1669dcf8", "sha256": "551b87ae707623f7f7019647aa8013a3682f8c3c7bda2699204b4e723c0510a1" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.8.tar.gz", "has_sig": false, "md5_digest": "95d5a97801b44d48c8e0d4db1669dcf8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8811, "upload_time": "2019-09-15T18:05:53", "upload_time_iso_8601": "2019-09-15T18:05:53.828021Z", "url": "https://files.pythonhosted.org/packages/7d/3e/987f2fd6fc1b13bfe7dafb930e0b98d15fb04a56aaf58d8be10846c4b33a/django-tempus-dominus-5.1.2.8.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.2.9": [ { "comment_text": "", "digests": { "md5": "5d931f11967d5a23ce171e08c3076d9f", "sha256": "29b75e30d06c04edeac55025b10c07ccd35de7e420cc149fffe5a80c9511171d" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.9-py3-none-any.whl", "has_sig": false, "md5_digest": "5d931f11967d5a23ce171e08c3076d9f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11668, "upload_time": "2019-10-26T18:20:52", "upload_time_iso_8601": "2019-10-26T18:20:52.164050Z", "url": "https://files.pythonhosted.org/packages/94/95/8f33897cac72fddb0dcd78c0a1fb1844ef8cc4c7deb7fb85013f213358b7/django_tempus_dominus-5.1.2.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3431aba0a6285cacb8060c81785ea6cb", "sha256": "bd7f25d659a3e74f0543151c97aeb5b6cf330a6e5ca861a49b656d16b0999a75" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.9.tar.gz", "has_sig": false, "md5_digest": "3431aba0a6285cacb8060c81785ea6cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13623, "upload_time": "2019-10-26T18:20:53", "upload_time_iso_8601": "2019-10-26T18:20:53.906264Z", "url": "https://files.pythonhosted.org/packages/01/23/ce6e3b00887198d46cee70319abe4e6d0b7c50857460989eef04a2ad60e2/django-tempus-dominus-5.1.2.9.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "75b8b2c564e48d82c414a3276842a43c", "sha256": "f449e0e4dfde3b312aa153b552f83aa80c7b58f980ee75ba82b0e9cf6c35ff3c" }, "downloads": -1, "filename": "django_tempus_dominus-5.1.2.17-py3-none-any.whl", "has_sig": false, "md5_digest": "75b8b2c564e48d82c414a3276842a43c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10978, "upload_time": "2022-03-21T14:42:14", "upload_time_iso_8601": "2022-03-21T14:42:14.108341Z", "url": "https://files.pythonhosted.org/packages/a6/47/3e81e26786f570a1a10834ae315044ced4e936017c7bece798824c02d618/django_tempus_dominus-5.1.2.17-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c37fc476a2013f5a35d754343dbde73f", "sha256": "a254c4550287e8f4e958c5d8dd9e39eec0a15aaad7469ad182b46f7f888e97ec" }, "downloads": -1, "filename": "django-tempus-dominus-5.1.2.17.tar.gz", "has_sig": false, "md5_digest": "c37fc476a2013f5a35d754343dbde73f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10283, "upload_time": "2022-03-21T14:42:15", "upload_time_iso_8601": "2022-03-21T14:42:15.643961Z", "url": "https://files.pythonhosted.org/packages/b7/14/48064b01708dd67358ef5b857037068d2f215d28fe42189d0ce462827271/django-tempus-dominus-5.1.2.17.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }