{ "info": { "author": "Caktus Consulting Group, LLC", "author_email": "solutions@caktusgroup.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Office/Business :: Financial :: Accounting", "Topic :: Office/Business :: Scheduling", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "django-timepiece\n================\n\ndjango-timepiece is a multi-user application for tracking people's time on\nprojects. Documentation is available on `Read The Docs`_.\n\n:master: |master-status|\n:develop: |develop-status|\n\n.. |master-status| image::\n https://api.travis-ci.org/caktus/django-timepiece.png?branch=master\n :alt: Build Status\n :target: https://travis-ci.org/caktus/django-timepiece\n\n.. |develop-status| image::\n https://api.travis-ci.org/caktus/django-timepiece.png?branch=develop\n :alt: Build Status\n :target: https://travis-ci.org/caktus/django-timepiece\n\nFeatures\n--------\n\n * A simple CRM with projects and businesses\n * User dashboards with budgeted hours based on project contracts\n * Time sheets with daily, weekly, and monthly summaries\n * Verified, approved, and invoiced time sheet workflows\n * Monthly payroll reporting with overtime, paid leave, and vacation summaries\n * Project invoicing with hourly summaries\n\nRequirements\n------------\n\ndjango-timepiece is compatible with Django 1.8 (on Python 2.7 and Python 3.5) and\nDjango 1.9 (on Python 2.7 and Python 3.5). PostgreSQL is the only\nofficially supported backend. For a full list of required libraries, see\nthe `requirements/base.txt` from the project source on `GitHub`_.\n\nWe actively support desktop versions of Chrome and Firefox, as well as common\nmobile platforms. We do not support most versions of Internet Explorer. We\nwelcome pull requests to fix bugs on unsupported browsers.\n\nDocumentation\n-------------\n\nDocumentation is hosted on `Read The Docs`_.\n\nTo build the documentation locally:\n\n#. Download a copy of the `django-timepiece` source, either through\n use of `git clone` or by downloading a zipfile from `GitHub`_.\n\n#. Make sure that the top-level directory is on your Python path. If you're\n using a virtual environment, this can be accomplished via::\n\n cd /path/to/django-timepiece/ && add2virtualenv .\n\n#. Install the requirements in `requirements/docs.txt` from the project\n source on `GitHub`_.\n\n#. Run ``make html`` from within the `docs/` directory. HTML files will be\n output in the `docs/_build/html/` directory.\n\nInstallation\n------------\n\n#. django-timepiece is available on `PyPI`_, so the easiest way to\n install it and its dependencies is to use `pip`_::\n\n $ pip install django-timepiece\n\n#. Ensure that `less`_ is installed on your machine and the version is <=1.4.0::\n\n # Install node.js and npm:\n $ sudo apt-get install python-software-properties\n $ sudo add-apt-repository ppa:chris-lea/node.js\n $ sudo apt-get update\n $ sudo apt-get install nodejs npm\n\n # Use npm to install less from package.json:\n $ npm install\n\n#. If you are starting from the included example project, copy the example\n local settings file at `example_project/settings/local.py.example` to\n `example_project/settings/local.py`.\n\n If you are using an existing project, you will need to make the following\n changes to your settings:\n\n - Add `timepiece` and its dependencies to ``INSTALLED_APPS``::\n\n INSTALLED_APPS = (\n ...\n 'bootstrap_toolkit',\n 'compressor',\n 'selectable',\n\n # Must come last.\n 'timepiece',\n 'timepiece.contracts',\n 'timepiece.crm',\n 'timepiece.entries',\n 'timepiece.reports',\n )\n\n - Configure your middleware::\n\n MIDDLEWARE_CLASSES = (\n 'django.middleware.common.CommonMiddleware',\n 'django.contrib.sessions.middleware.SessionMiddleware',\n 'django.middleware.csrf.CsrfViewMiddleware',\n 'django.contrib.auth.middleware.AuthenticationMiddleware',\n 'django.contrib.messages.middleware.MessageMiddleware',\n )\n\n - Add `django.core.context_processors.request` and django-timepiece context\n processors to ``TEMPLATE_CONTEXT_PROCESSORS``::\n\n TEMPLATE_CONTEXT_PROCESSORS = (\n \"django.contrib.auth.context_processors.auth\",\n \"django.core.context_processors.debug\",\n \"django.core.context_processors.i18n\",\n \"django.core.context_processors.media\",\n \"django.contrib.messages.context_processors.messages\",\n \"django.core.context_processors.request\", # <----\n \"timepiece.context_processors.quick_clock_in\", # <----\n \"timepiece.context_processors.quick_search\", # <----\n \"timepiece.context_processors.extra_settings\", # <----\n )\n\n - Configure compressor settings::\n\n COMPRESS_PRECOMPILERS = (\n ('text/less', 'lessc {infile} {outfile}'),\n )\n COMPRESS_ROOT = '%s/static/' % PROJECT_PATH\n INTERNAL_IPS = ('127.0.0.1',)\n\n - Set ``USE_TZ`` to ``False``. django-timepiece does not currently support\n timezones.\n\n#. Run ``syncdb`` and ``migrate``.\n\n#. Add URLs for django-timepiece and selectable to `urls.py`, e.g.::\n\n urlpatterns = [\n ...\n (r'^selectable/', include('selectable.urls')),\n (r'', include('timepiece.urls')),\n ...\n ]\n\n#. Add the ``django.contrib.auth`` URLs to `urls.py`, e.g.::\n\n urlpatterns = [\n ...\n url(r'^accounts/login/$', 'django.contrib.auth.views.login',\n name='auth_login'),\n url(r'^accounts/logout/$', 'django.contrib.auth.views.logout_then_login',\n name='auth_logout'),\n url(r'^accounts/password-change/$',\n 'django.contrib.auth.views.password_change',\n name='change_password'),\n url(r'^accounts/password-change/done/$',\n 'django.contrib.auth.views.password_change_done'),\n url(r'^accounts/password-reset/$',\n 'django.contrib.auth.views.password_reset',\n name='reset_password'),\n url(r'^accounts/password-reset/done/$',\n 'django.contrib.auth.views.password_reset_done'),\n url(r'^accounts/reset/(?P[0-9A-Za-z]+)-(?P.+)/$',\n 'django.contrib.auth.views.password_reset_confirm'),\n url(r'^accounts/reset/done/$',\n 'django.contrib.auth.views.password_reset_complete'),\n ...\n ]\n\n#. Create registration templates. For examples, see the registration templates\n in `example_project/templates/registration`. Ensure that your project's\n template directory is added to ``TEMPLATE_DIRS``::\n\n TEMPLATE_DIRS = (\n ...\n '%s/templates' % PROJECT_PATH,\n ...\n )\n\nDevelopment sponsored by `Caktus Group`_.\n\n\n.. _Caktus Group: https://www.caktusgroup.com/services\n.. _GitHub: https://github.com/caktus/django-timepiece\n.. _less: http://lesscss.org\n.. _pip: http://pip.openplans.org/\n.. _PyPI: http://pypi.python.org/pypi/django-timepiece\n.. _Read The Docs: http://django-timepiece.readthedocs.org", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/caktus/django-timepiece", "keywords": null, "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "django-timepiece", "package_url": "https://pypi.org/project/django-timepiece/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-timepiece/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/caktus/django-timepiece" }, "release_url": "https://pypi.org/project/django-timepiece/1.1.0/", "requires_dist": null, "requires_python": null, "summary": "A multi-user application for tracking employee time on projects.", "version": "1.1.0" }, "last_serial": 1983082, "releases": { "0.3.1": [ { "comment_text": "", "digests": { "md5": "e5a8e9e0080f5f5b334d814af6363d2e", "sha256": "a9776452ef0674be0d59183f8df9ada3d9e28483a04d1482c489910dd6327a52" }, "downloads": -1, "filename": "django-timepiece-0.3.1.tar.gz", "has_sig": false, "md5_digest": "e5a8e9e0080f5f5b334d814af6363d2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 911166, "upload_time": "2011-10-20T23:39:10", "url": "https://files.pythonhosted.org/packages/b5/52/eb0086db15dd039aa1e8252e958a70cc8fdf8714ccbe5cab55aeb043b223/django-timepiece-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "c306fd7b32e73de8a5b0af6478034b05", "sha256": "0f35504711a3136a94db134eaf511222ba6f1f11f67e1d397f72825c6215749c" }, "downloads": -1, "filename": "django-timepiece-0.3.2.tar.gz", "has_sig": false, "md5_digest": "c306fd7b32e73de8a5b0af6478034b05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 913002, "upload_time": "2011-10-28T15:51:17", "url": "https://files.pythonhosted.org/packages/ef/d8/de1ee4cb3dcecee4d25801f7068639fc8e0742b829f5f1cdd9798a0b2b3e/django-timepiece-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "6a459eb3905ae092f38204a840804e43", "sha256": "f9b9482d58316527e136702b8c94db2ca26539e59671eeb28d06d07dd8624d19" }, "downloads": -1, "filename": "django-timepiece-0.3.3.tar.gz", "has_sig": false, "md5_digest": "6a459eb3905ae092f38204a840804e43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 913212, "upload_time": "2011-10-31T18:59:37", "url": "https://files.pythonhosted.org/packages/f4/7a/4d3d0cac92ad0ccd410c143cbb1910518687ef2ba00d1bd7d90853f306c3/django-timepiece-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "642abe19cae604f9541675aa4b453b25", "sha256": "a58e79a4915a75624ac73975a2c6bd3f6ebdfea3528bebc1512b7b4d74a69ddb" }, "downloads": -1, "filename": "django-timepiece-0.3.4.tar.gz", "has_sig": false, "md5_digest": "642abe19cae604f9541675aa4b453b25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 914634, "upload_time": "2011-11-14T19:55:31", "url": "https://files.pythonhosted.org/packages/ec/c9/f8815acbfc528703d9b5f2d546fe15b04618ccffd7e08e1b8b3f9862818a/django-timepiece-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "5e2540b2c5654801fc5470630bac723a", "sha256": "296e45978be883be988e8a571e5ba4bce95b2d5c11b36ab553336a11d675eda9" }, "downloads": -1, "filename": "django-timepiece-0.3.5.tar.gz", "has_sig": false, "md5_digest": "5e2540b2c5654801fc5470630bac723a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 915957, "upload_time": "2011-12-09T16:51:57", "url": "https://files.pythonhosted.org/packages/92/20/499f728d7a77d635d46e9b961ae466040a59d46109692f827e9d0e0b095d/django-timepiece-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "082b75f2494b3d05414346d1e54ef632", "sha256": "3b1a51960c0d2c21a04dd2aca435cfc077f2477a95d0916c8e60cb9d3ea036ee" }, "downloads": -1, "filename": "django-timepiece-0.3.6.tar.gz", "has_sig": false, "md5_digest": "082b75f2494b3d05414346d1e54ef632", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 927504, "upload_time": "2012-02-01T14:52:34", "url": "https://files.pythonhosted.org/packages/19/14/aab5040128eeb6718e36877ff8c5ce9cc468c9c03510fa9062b7645c1e91/django-timepiece-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "f061d430a12799fe8a88ab1ecc1f1a32", "sha256": "9c2418c03e7900ef13e3b924b0483df02c395196d6c0529116f578675ba805d2" }, "downloads": -1, "filename": "django-timepiece-0.3.7.tar.gz", "has_sig": false, "md5_digest": "f061d430a12799fe8a88ab1ecc1f1a32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 927595, "upload_time": "2012-02-01T22:22:14", "url": "https://files.pythonhosted.org/packages/25/c8/15297224a3743eec01169e33fecb18fafc9813b0d11b69db8d05b656400b/django-timepiece-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "60da823069ed76e38d8af6183959458d", "sha256": "4bb12ef460095bc6e8eaededd3fe9fc106c2bc8f4485ffc4b167c303cab3fcae" }, "downloads": -1, "filename": "django-timepiece-0.3.8.tar.gz", "has_sig": false, "md5_digest": "60da823069ed76e38d8af6183959458d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 929152, "upload_time": "2012-02-16T14:50:58", "url": "https://files.pythonhosted.org/packages/f3/42/a9d10b47fc206c81d64276514c2aca1d8b7441c28e6fbbbe26326812e0ff/django-timepiece-0.3.8.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "0a0156212ce2bb943c77e953df3cce62", "sha256": "eddd683ded59c211915854413cb6b830668346aa458565b89e58415920e1f639" }, "downloads": -1, "filename": "django-timepiece-0.4.0.tar.gz", "has_sig": false, "md5_digest": "0a0156212ce2bb943c77e953df3cce62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 928778, "upload_time": "2012-04-27T23:13:40", "url": "https://files.pythonhosted.org/packages/1b/90/21d0a05d8cb57d250e28df1ada8cad3bf66cbe2c0cabdf040823637f01a9/django-timepiece-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "468bc326cdadeced220de23eaa232ef5", "sha256": "67ee421a257212f5d9fea97eecc19d017fc03578ad2b7698b190d1cd01c84943" }, "downloads": -1, "filename": "django-timepiece-0.4.1.tar.gz", "has_sig": false, "md5_digest": "468bc326cdadeced220de23eaa232ef5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 937302, "upload_time": "2012-06-04T14:26:55", "url": "https://files.pythonhosted.org/packages/7d/a9/7334cb29cd1402b223a321a795bc19e8dd2efee0b2b34da4ea1c9fd75d95/django-timepiece-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "f1ededbe0ea0554ebed1fb040d115dc2", "sha256": "b47cddb56b4312e3053c578b39c3cca1edb73d6ee6882575ebfe745895ef951b" }, "downloads": -1, "filename": "django-timepiece-0.4.2.tar.gz", "has_sig": false, "md5_digest": "f1ededbe0ea0554ebed1fb040d115dc2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 941568, "upload_time": "2012-06-15T20:55:01", "url": "https://files.pythonhosted.org/packages/24/c7/4205f2c60ef3cd3aae9573591d2b486a2827f0223b834702f780c62b721b/django-timepiece-0.4.2.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "67733f51fda0f11ca2233de725b829b8", "sha256": "d65d4d42b3305f4bbdd86d96eb83f983659beb2712c87f96ecf6de4bdc1171b7" }, "downloads": -1, "filename": "django-timepiece-0.5.tar.gz", "has_sig": false, "md5_digest": "67733f51fda0f11ca2233de725b829b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1020871, "upload_time": "2012-07-12T18:34:56", "url": "https://files.pythonhosted.org/packages/55/9d/95fafc65c81b92f7a90f6536eaa3af12f9d88872f840c32460149c066910/django-timepiece-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "c7d9d068db038c011965f9eec79a0605", "sha256": "938b21551cb94fff19e2ff1cbea85278ae8e87a455dce52a274e92dfa375a54a" }, "downloads": -1, "filename": "django-timepiece-0.5.1.tar.gz", "has_sig": false, "md5_digest": "c7d9d068db038c011965f9eec79a0605", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1023269, "upload_time": "2012-07-20T16:02:52", "url": "https://files.pythonhosted.org/packages/4c/3f/be88fb80b85bcb0ce6b44e648cafbe5b14125e07e7839b6eafbe4685b888/django-timepiece-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "c0ca03c4139572bbe6358a8e0f13a555", "sha256": "cb35943eb2aa683a0b8997618e42e00de2783eeccce42e3528f693c745cbc92e" }, "downloads": -1, "filename": "django-timepiece-0.5.2.tar.gz", "has_sig": false, "md5_digest": "c0ca03c4139572bbe6358a8e0f13a555", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1186656, "upload_time": "2012-08-01T18:44:37", "url": "https://files.pythonhosted.org/packages/5c/61/d88100733c356d43df57d1a18c31a0c5043d9e4330793f269038ed802f37/django-timepiece-0.5.2.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "79763adc80cbccc092e095dd2edf3227", "sha256": "f573f362a5fc76675e052a6c1f9cff740e3c3ff3eb51c3d89b176b3dd71a8948" }, "downloads": -1, "filename": "django-timepiece-0.5.4.tar.gz", "has_sig": false, "md5_digest": "79763adc80cbccc092e095dd2edf3227", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1222984, "upload_time": "2012-09-14T11:58:52", "url": "https://files.pythonhosted.org/packages/e7/9e/62b79e051b97b91012fcd833ba1d16a9809d1969acbb63e3e4d092ef7a81/django-timepiece-0.5.4.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "ea2e8fb3409dafa703e10b9897568789", "sha256": "47ed8b2e971296b12d53de3e20c08e85de1c20ffab63cf1cc435e6ef8b65081d" }, "downloads": -1, "filename": "django-timepiece-0.6.tar.gz", "has_sig": false, "md5_digest": "ea2e8fb3409dafa703e10b9897568789", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1190071, "upload_time": "2012-10-04T14:23:02", "url": "https://files.pythonhosted.org/packages/b0/ba/46614c8baa2056be69c6e60c4ebf2258271b9392703f5648df8c4ee82300/django-timepiece-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "609095de4d1ad21260ab321f6071dc8f", "sha256": "b565bd8e654e90da69409ff63e1851d2d00ae3f614cc65a8a502b5095e652827" }, "downloads": -1, "filename": "django-timepiece-0.7.tar.gz", "has_sig": false, "md5_digest": "609095de4d1ad21260ab321f6071dc8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 544355, "upload_time": "2012-11-16T15:58:10", "url": "https://files.pythonhosted.org/packages/c7/bd/da16f6c2df28af9293452ce8c519ebc35e95c318c61581cd9eca6c8303b8/django-timepiece-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "6a00a6922d3eddde2cafa898f287b799", "sha256": "8dbabed1b697ba472b24b3b67cdf63c0c9d5cff0cceb005fedd63c189e35e62a" }, "downloads": -1, "filename": "django-timepiece-0.7.1.tar.gz", "has_sig": false, "md5_digest": "6a00a6922d3eddde2cafa898f287b799", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 544765, "upload_time": "2012-11-28T15:38:33", "url": "https://files.pythonhosted.org/packages/62/f8/5d08dc184181a7dcc2e1f30fd45569396fbc8b494b98246a7d38894bee79/django-timepiece-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "cc1d5eed4870af078f48c69c76a7c985", "sha256": "8ad32db2eca4a4d61a55df9ce81260ec914d6f0842392070f0c87e31e523ef27" }, "downloads": -1, "filename": "django-timepiece-0.7.2.tar.gz", "has_sig": false, "md5_digest": "cc1d5eed4870af078f48c69c76a7c985", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 544770, "upload_time": "2012-11-28T16:02:49", "url": "https://files.pythonhosted.org/packages/b4/aa/9e53169a68800b2943c82e07c163ef40c955d14b7736a0013da02bfa62f7/django-timepiece-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "66fceeebb8bf46029f48d3422c63a8c6", "sha256": "6885fe46c970177fed146a70f23afec7df62baf315183cfeadae031c5bda53c7" }, "downloads": -1, "filename": "django-timepiece-0.7.3.tar.gz", "has_sig": false, "md5_digest": "66fceeebb8bf46029f48d3422c63a8c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 548072, "upload_time": "2013-01-07T15:22:49", "url": "https://files.pythonhosted.org/packages/13/30/b856d2a6d8b093838c9c93877958a3a4308e4dd475fee248d6f710064f83/django-timepiece-0.7.3.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "a30fb2b09c0512204786dfbd78d35ed6", "sha256": "906e57552b68b995aa740689956359951f2e0fea5ef508c970dd49f63071cf0b" }, "downloads": -1, "filename": "django-timepiece-0.8.tar.gz", "has_sig": false, "md5_digest": "a30fb2b09c0512204786dfbd78d35ed6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 561209, "upload_time": "2013-01-21T22:24:58", "url": "https://files.pythonhosted.org/packages/58/ca/ae784f12c30ae4b5b7ddf2c42f97a3fae01792eafeb7cdd5e91d9b1e34c5/django-timepiece-0.8.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "578c5a7d7582751129a43ea0318afbbf", "sha256": "b000d00d6c79aefbf1ee7a794f84ed827f8c1ff1f0654479e1080e1fd59b476e" }, "downloads": -1, "filename": "django-timepiece-0.8.1.tar.gz", "has_sig": false, "md5_digest": "578c5a7d7582751129a43ea0318afbbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 562150, "upload_time": "2013-01-22T15:40:25", "url": "https://files.pythonhosted.org/packages/32/8c/f39548c51b88ced87d058f6abb006fbdbcb818f60bb6a712340e5f9c05cc/django-timepiece-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "3b57d89c71da6cce8d9f16c3ef1044fd", "sha256": "70048c9d34d448cd9f783a6a4c90c6e9ea1a3b483e474ba5cbcff00597f1e4ba" }, "downloads": -1, "filename": "django-timepiece-0.8.2.tar.gz", "has_sig": false, "md5_digest": "3b57d89c71da6cce8d9f16c3ef1044fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 562225, "upload_time": "2013-01-25T17:04:35", "url": "https://files.pythonhosted.org/packages/d8/76/751682692a3e3f93480c0110cba3ba164edc0a3ed0b185918a34aeca3b38/django-timepiece-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "854148c7ef04f9b019442d9e39f90fcf", "sha256": "0ce4c7430b37b5f76b83c8d632e91fec31fa3a0e6c40a7c6b0ab89e01e21e92f" }, "downloads": -1, "filename": "django-timepiece-0.8.3.tar.gz", "has_sig": false, "md5_digest": "854148c7ef04f9b019442d9e39f90fcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 567241, "upload_time": "2013-03-27T15:41:18", "url": "https://files.pythonhosted.org/packages/1c/af/40a2bd66370e30c11d4ffdf436a78c60931f3fea76adb5b60854dd933398/django-timepiece-0.8.3.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "edfbca255fb1fa60e7b54d8db460d8ac", "sha256": "2d142893853ac179f6a5ecefef51a3ac1b177cfb18b58775a6a720259b96dae5" }, "downloads": -1, "filename": "django-timepiece-0.9.tar.gz", "has_sig": false, "md5_digest": "edfbca255fb1fa60e7b54d8db460d8ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 528629, "upload_time": "2013-05-10T15:13:57", "url": "https://files.pythonhosted.org/packages/ca/6c/94d5c5e84c7d6547447263801a418c278b0b601df5c80ed4c948bb9b9006/django-timepiece-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "889e1c439dc2a8e0b468d038b87172d4", "sha256": "5b23f856c2c548d2f0ccf1f14dde4ea917d348691bbf864542192637fa1f1078" }, "downloads": -1, "filename": "django-timepiece-0.9.1.tar.gz", "has_sig": false, "md5_digest": "889e1c439dc2a8e0b468d038b87172d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 529006, "upload_time": "2013-05-14T13:57:29", "url": "https://files.pythonhosted.org/packages/27/c6/5f8ebe3e29ec20d9addd5707efcd63556b7addee9dd8835b7167f510b983/django-timepiece-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "d305f03786562cfc6c0fea7bb3f66f51", "sha256": "5fb33332ba6de815406e3f994a99f29971339924209193de1f87fedfa84562ba" }, "downloads": -1, "filename": "django-timepiece-0.9.2.tar.gz", "has_sig": false, "md5_digest": "d305f03786562cfc6c0fea7bb3f66f51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 448312, "upload_time": "2013-05-31T18:48:26", "url": "https://files.pythonhosted.org/packages/c0/11/ff1cf605430a31167611b1a736df9cd7072444779cc2d3f64fbe76f9cd97/django-timepiece-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "fc3ec6d17719ee70743686c68e9a89b6", "sha256": "6d8b41b24508855609961038f5987fff321410bf43c08c2a8027e6ceae216070" }, "downloads": -1, "filename": "django-timepiece-0.9.3.tar.gz", "has_sig": false, "md5_digest": "fc3ec6d17719ee70743686c68e9a89b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 534187, "upload_time": "2013-11-06T18:09:52", "url": "https://files.pythonhosted.org/packages/1e/e5/bd16367da2c33cf1bcd18ad9774d1445972a619ee760c2d3f89ad889cef2/django-timepiece-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "f06701d39d05a20299656ef937658cc9", "sha256": "e0f199bbac983862debdfc0948b8367356f0e20f5def84d0791545ee52f73ee9" }, "downloads": -1, "filename": "django-timepiece-0.9.4.tar.gz", "has_sig": false, "md5_digest": "f06701d39d05a20299656ef937658cc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 455387, "upload_time": "2014-04-01T02:54:47", "url": "https://files.pythonhosted.org/packages/c9/73/53d43b161137bfe3606bde7b73019ee88af1fe39903eeaf2c98193736391/django-timepiece-0.9.4.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "1f7ce10c8938abbc37625d077531cb13", "sha256": "2f5c0388f742cb156cd9dd7af307788011650f46fabab4db1678801c8287989b" }, "downloads": -1, "filename": "django-timepiece-1.0.0.tar.gz", "has_sig": false, "md5_digest": "1f7ce10c8938abbc37625d077531cb13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 444112, "upload_time": "2016-01-15T01:37:04", "url": "https://files.pythonhosted.org/packages/1a/5d/449e65b285b7e607db94263a4bf8f89c0b58a36a3d006367c132cb39bfe7/django-timepiece-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "fa43bb74ea61656933f408c52e96e11b", "sha256": "a0b8d0bbcecffc681af508bb6255484ea3b9217db1ea0426cd7cba401f9230d5" }, "downloads": -1, "filename": "django-timepiece-1.1.0.tar.gz", "has_sig": false, "md5_digest": "fa43bb74ea61656933f408c52e96e11b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 645481, "upload_time": "2016-03-01T00:26:16", "url": "https://files.pythonhosted.org/packages/ed/cb/e501955f4520f2c8fe1b111412b015b116d55007b30d38fe3a7f5a69204a/django-timepiece-1.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "fa43bb74ea61656933f408c52e96e11b", "sha256": "a0b8d0bbcecffc681af508bb6255484ea3b9217db1ea0426cd7cba401f9230d5" }, "downloads": -1, "filename": "django-timepiece-1.1.0.tar.gz", "has_sig": false, "md5_digest": "fa43bb74ea61656933f408c52e96e11b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 645481, "upload_time": "2016-03-01T00:26:16", "url": "https://files.pythonhosted.org/packages/ed/cb/e501955f4520f2c8fe1b111412b015b116d55007b30d38fe3a7f5a69204a/django-timepiece-1.1.0.tar.gz" } ] }