{
"info": {
"author": "Dennis Bunskoek",
"author_email": "dbunskoek@leukeleu.nl",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
"description": "Django Fiber\n============\n\n|Travis build image| |PyPI version| |Coverage Status|\n\nAn important message about this project\n---------------------------------------\n\nHi Django Fiber enthusiasts! This project was started by the people at Ride The Pony, Leukeleu and Jouw Omgeving.\nThey started Django Fiber in 2011, because they wanted a good, *simple* Django CMS available. Lots of people felt the\nsame, which was why Django Fiber became pretty popular. And it is still going strong in lots of sites, so we hear :)\n\nLater, they discovered `Wagtail `_, and found it to be even better than their own creation. So\nthey decided to move on. Nevertheless, Django Fiber was popular, used in many websites, and they didn't want to just\ndrop it. At the start of 2017 they handed over control of the project to a new group of maintainers - the discussion\nabout this handover can be found in `issue #244 `_.\n\nCurrently Django Fiber is in 'maintenance mode'. What this means it that it will be updated to run with the\nlatest releases of Django - and of other packages that Django Fiber depends on. However, no effort will be made to\nadd new features.\n\nIf a user really wants a new feature added - then a well-written PR will be reviewed and considered. But other than\nthat, Django Fiber is staying exactly as it is :)\n\nAbout Django Fiber\n------------------\n\nDo you want to see a Django Fiber screencast, to get a feel for what it can do\nfor you? `Check it out on Vimeo `_\n\nConvinced? Want to use Django Fiber in your own Django project? Then follow the\ninstructions below.\n\nRequirements\n------------\n\nThese dependencies are automatically installed::\n\n Pillow>=2.2.1\n django-mptt>=0.8\n django_compressor>=2.0\n djangorestframework>=3.4\n easy-thumbnails>=2.2\n\nInstallation\n------------\n\nWe're assuming you are using Django 1.9-2.0. Then simply install Fiber\nusing pip::\n\n $ pip install django-fiber\n\n\n\nSetup\n~~~~~\n\nOpen **settings.py** and add the following to your INSTALLED_APPS\n\n::\n\n INSTALLED_APPS = (\n ...\n 'mptt',\n 'compressor',\n 'easy_thumbnails',\n 'fiber',\n ...\n )\n\nAdd Fiber to the MIDDLEWARE_CLASSES list\n\n::\n\n import django.conf.global_settings as DEFAULT_SETTINGS\n\n MIDDLEWARE_CLASSES = DEFAULT_SETTINGS.MIDDLEWARE_CLASSES + (\n ...\n 'fiber.middleware.ObfuscateEmailAddressMiddleware',\n 'fiber.middleware.AdminPageMiddleware',\n )\n\n(Or, add the same items to ``MIDDLEWARE`` if you are using Django 1.10 or later.)\n\nAdd the request context processor\n\n::\n\n TEMPLATES = [\n {\n ...\n 'OPTIONS': {\n 'context_processors': [\n ...\n 'django.template.context_processors.request',\n ]\n }\n },\n ]\n\nAnd configure compressor\n\n::\n\n BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))\n\n STATIC_ROOT = os.path.join(BASE_DIR, 'static')\n STATIC_URL = '/static/'\n STATICFILES_FINDERS = DEFAULT_SETTINGS.STATICFILES_FINDERS + [\n 'compressor.finders.CompressorFinder',\n ]\n\nEdit your **urls.py** to add the Fiber site to your url-patterns\n\n::\n\n from django.conf.urls import include, url\n from fiber.views import page\n\n urlpatterns = [\n ...\n url(r'^api/v2/', include('fiber.rest_api.urls')),\n url(r'^admin/fiber/', include('fiber.admin_urls')),\n ...\n url(r'', page),\n ]\n\nPost-installation\n-----------------\n\nCreate database tables::\n\n $ python manage.py migrate\n\nAll static Fiber files need to be symlinked in (or copied to) your static files folder if you're not on your dev machine::\n\n $ python manage.py collectstatic --link\n\nFurther documentation\n---------------------\n\nFor further usage and configuration details take a look at our\ndocumentation project at\n`readthedocs `__.\n\nChangelog\n---------\n\nSee `CHANGELOG.md `_\nfor the latest changes.\n\n|Analytics|\n\n.. |Travis build image| image:: https://secure.travis-ci.org/django-fiber/django-fiber.svg?branch=dev\n :target: http://travis-ci.org/#!/django-fiber/django-fiber\n.. |PyPI version| image:: https://img.shields.io/pypi/v/django-fiber.svg\n :target: https://pypi.python.org/pypi/django-fiber/\n.. |Coverage Status| image:: https://coveralls.io/repos/django-fiber/django-fiber/badge.svg?branch=dev\n :target: https://coveralls.io/r/django-fiber/django-fiber\n.. |Analytics| image:: https://ga-beacon.appspot.com/UA-24341330-5/django-fiber/readme\n :target: https://github.com/django-fiber/django-fiber\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/django-fiber/django-fiber",
"keywords": "cms,django",
"license": "Apache License, Version 2.0",
"maintainer": "",
"maintainer_email": "",
"name": "django-fiber",
"package_url": "https://pypi.org/project/django-fiber/",
"platform": "",
"project_url": "https://pypi.org/project/django-fiber/",
"project_urls": {
"Homepage": "https://github.com/django-fiber/django-fiber"
},
"release_url": "https://pypi.org/project/django-fiber/1.6.1/",
"requires_dist": [
"Pillow (>=6.0.0)",
"django-mptt (<0.10.0,>=0.9.1)",
"django-compressor (>=2.2)",
"djangorestframework (>=3.9.3)",
"easy-thumbnails (>=2.6.0)"
],
"requires_python": "",
"summary": "Django Fiber - a simple, user-friendly CMS for all your Django projects",
"version": "1.6.1"
},
"last_serial": 5991987,
"releases": {
"0.10": [
{
"comment_text": "",
"digests": {
"md5": "464cc8dee11fe5eba1014530e614ac8f",
"sha256": "13a8bc46e092bc21d1e21edd57e9043e9a7ec634e34a250ca60195875a20d0fa"
},
"downloads": -1,
"filename": "django-fiber-0.10.tar.gz",
"has_sig": false,
"md5_digest": "464cc8dee11fe5eba1014530e614ac8f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2707035,
"upload_time": "2012-12-24T08:16:28",
"url": "https://files.pythonhosted.org/packages/76/13/d907bde4be906ffc0f7f8cb743f5ad49c85e13197c0f57e3737683ae84b2/django-fiber-0.10.tar.gz"
}
],
"0.10.1": [
{
"comment_text": "",
"digests": {
"md5": "c28e4f2ac46c63f5f7716672581d61dc",
"sha256": "907c70230b6399bfbfd6b86d044526ac645e7f40ee4c36d675e2245fdc59c9a7"
},
"downloads": -1,
"filename": "django-fiber-0.10.1.tar.gz",
"has_sig": false,
"md5_digest": "c28e4f2ac46c63f5f7716672581d61dc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2708553,
"upload_time": "2013-02-07T10:21:16",
"url": "https://files.pythonhosted.org/packages/06/47/ed340913bd5b5b8db4799e52d1053a427008d356b45351557060e17c43c6/django-fiber-0.10.1.tar.gz"
}
],
"0.10.2": [
{
"comment_text": "",
"digests": {
"md5": "2a3e0d953d43ca92a353fb4864bf282b",
"sha256": "d2f44018e062acfbf30e2143df502ad78d6f574d655bd3fb84ed908cf62ecf08"
},
"downloads": -1,
"filename": "django-fiber-0.10.2.tar.gz",
"has_sig": false,
"md5_digest": "2a3e0d953d43ca92a353fb4864bf282b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1476086,
"upload_time": "2013-03-22T11:17:44",
"url": "https://files.pythonhosted.org/packages/5e/60/dd2c37dd10c7686a5e46ed33f373e6e59f90bd848fe06255819c371ec1f1/django-fiber-0.10.2.tar.gz"
}
],
"0.10.3": [
{
"comment_text": "",
"digests": {
"md5": "d74771fc4dc95e1d9823c9e37822b1c6",
"sha256": "31c2a2e62cdff3dd8069c380a308158d1e23449a2917200a202a4967e4c726c1"
},
"downloads": -1,
"filename": "django-fiber-0.10.3.tar.gz",
"has_sig": false,
"md5_digest": "d74771fc4dc95e1d9823c9e37822b1c6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1476093,
"upload_time": "2013-04-25T07:47:10",
"url": "https://files.pythonhosted.org/packages/32/71/2ee8ae77845c676a1c0ee7eafe68dcebc1a35fcad2fa23c9f8b8e2b1ac68/django-fiber-0.10.3.tar.gz"
}
],
"0.10.4": [
{
"comment_text": "",
"digests": {
"md5": "f7672deb26f8708f7870fb74db8cf0fc",
"sha256": "4858e17d401c6db61abfc3c0ad67ce4bc0e54a7fe6ba48c199c54063bcd2aaec"
},
"downloads": -1,
"filename": "django-fiber-0.10.4.tar.gz",
"has_sig": false,
"md5_digest": "f7672deb26f8708f7870fb74db8cf0fc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1475952,
"upload_time": "2013-07-03T13:14:49",
"url": "https://files.pythonhosted.org/packages/d6/aa/b93c76f071523ac74af47af323e2c99de095f95ae45a5c37bdc5c0247c4c/django-fiber-0.10.4.tar.gz"
}
],
"0.10.5": [
{
"comment_text": "",
"digests": {
"md5": "ef551e007e61ee0488f49a40d91286a7",
"sha256": "5c47d62978dc73bce412fe435630d1840ae5292773fb948ba500546db84c835a"
},
"downloads": -1,
"filename": "django-fiber-0.10.5.tar.gz",
"has_sig": false,
"md5_digest": "ef551e007e61ee0488f49a40d91286a7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1476533,
"upload_time": "2013-08-27T07:50:02",
"url": "https://files.pythonhosted.org/packages/9b/f6/3fb74440729ae039766bde4b046fb16859ad92cfeff25e322aed73c7857c/django-fiber-0.10.5.tar.gz"
}
],
"0.11.0": [
{
"comment_text": "",
"digests": {
"md5": "6d01afee51e0b2ee6dc464ee8f9c7cfa",
"sha256": "9bee53fd32c3e25047373fe7d120c520763c056f2d958f533d93e8d79795cbfd"
},
"downloads": -1,
"filename": "django-fiber-0.11.0.tar.gz",
"has_sig": false,
"md5_digest": "6d01afee51e0b2ee6dc464ee8f9c7cfa",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1477327,
"upload_time": "2013-10-09T15:39:45",
"url": "https://files.pythonhosted.org/packages/b6/74/70b0865231400f42009fdba5f6b0a90c4687b021d905f36627d28d14c071/django-fiber-0.11.0.tar.gz"
}
],
"0.11.1": [
{
"comment_text": "",
"digests": {
"md5": "77e8fdc450f26ce22f6cffc881f2a53f",
"sha256": "35fc13c8ae32d1a8f7c24251038842146dfe2a84ea9a8fb907dab82ddb040772"
},
"downloads": -1,
"filename": "django-fiber-0.11.1.tar.gz",
"has_sig": false,
"md5_digest": "77e8fdc450f26ce22f6cffc881f2a53f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1478003,
"upload_time": "2013-10-14T09:59:10",
"url": "https://files.pythonhosted.org/packages/62/06/26ac7dba6aca9e3625ff6517aafbfa8fc045d530aa5e8048a514289cee9b/django-fiber-0.11.1.tar.gz"
}
],
"0.11.2": [
{
"comment_text": "",
"digests": {
"md5": "f7896af4e24e75aa39cf567f67c9067f",
"sha256": "8fd14dca50856c8b78459eed2ccd436c05da545332585eba1a333256c4d189e8"
},
"downloads": -1,
"filename": "django-fiber-0.11.2.tar.gz",
"has_sig": false,
"md5_digest": "f7896af4e24e75aa39cf567f67c9067f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1480166,
"upload_time": "2014-01-29T15:52:42",
"url": "https://files.pythonhosted.org/packages/f1/a7/12b8f0672a3a7f4f0e30b944b9ae846698aef84926a8be9264eefe20fe67/django-fiber-0.11.2.tar.gz"
}
],
"0.11.3": [
{
"comment_text": "",
"digests": {
"md5": "8bb1f692cb1a43ce4726a3398501c109",
"sha256": "c1bce7dd81830dd41c2a017ec8e6c19841e70e0f983bfcb497362f086b3d8871"
},
"downloads": -1,
"filename": "django-fiber-0.11.3.tar.gz",
"has_sig": false,
"md5_digest": "8bb1f692cb1a43ce4726a3398501c109",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1761939,
"upload_time": "2014-02-11T17:08:35",
"url": "https://files.pythonhosted.org/packages/87/fa/280e94d0215f8fff2054a6ecbacb6e4c2c2f5ca5f5e9f40d393e1d061ec3/django-fiber-0.11.3.tar.gz"
}
],
"0.11.4": [
{
"comment_text": "",
"digests": {
"md5": "e991e47bcd55c7e7bdd90b744f2ced0a",
"sha256": "408758444fb94b46bd693fedb3c508f435e0c0d3b8ea4539fd50b1ac071ea5bd"
},
"downloads": -1,
"filename": "django-fiber-0.11.4.tar.gz",
"has_sig": false,
"md5_digest": "e991e47bcd55c7e7bdd90b744f2ced0a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1761932,
"upload_time": "2014-02-11T18:50:00",
"url": "https://files.pythonhosted.org/packages/b2/68/22b088f3c51d8a456fc93bac24afa093f4e59a328259b6d2d2392578ab39/django-fiber-0.11.4.tar.gz"
}
],
"0.12": [
{
"comment_text": "",
"digests": {
"md5": "0ed6d50583a2c49bed0594afd7be0ea1",
"sha256": "0979eb4d52881b61da65ecd583517c8e6c24912b99143e706f1c585da8b7bc0c"
},
"downloads": -1,
"filename": "django-fiber-0.12.tar.gz",
"has_sig": false,
"md5_digest": "0ed6d50583a2c49bed0594afd7be0ea1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1761155,
"upload_time": "2014-02-13T12:22:36",
"url": "https://files.pythonhosted.org/packages/6f/55/cc2cd1104fa28cee5f6162dfef412c0edb56074e1217379f926363cce2f4/django-fiber-0.12.tar.gz"
}
],
"0.12.1": [
{
"comment_text": "",
"digests": {
"md5": "53fcf24ec19bfd3785a4b8c447a25f88",
"sha256": "0417c0f74b9e6916d0e8b20d3b9ef77e0bef97a9e61a99d306ab0ea3b749b500"
},
"downloads": -1,
"filename": "django-fiber-0.12.1.tar.gz",
"has_sig": false,
"md5_digest": "53fcf24ec19bfd3785a4b8c447a25f88",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1762138,
"upload_time": "2014-02-13T21:04:30",
"url": "https://files.pythonhosted.org/packages/28/3e/bc4facd54b223e073bfab6789a9be0a6773849d3958bd3227cb436f123ad/django-fiber-0.12.1.tar.gz"
}
],
"0.12.2": [
{
"comment_text": "",
"digests": {
"md5": "17b9be4a1d4bbad988cbcb75829fb147",
"sha256": "d289d1b9cb6fe3f739293e112b29f845b463e9456a0670b7cc5f70b05b493476"
},
"downloads": -1,
"filename": "django-fiber-0.12.2.tar.gz",
"has_sig": false,
"md5_digest": "17b9be4a1d4bbad988cbcb75829fb147",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1762251,
"upload_time": "2014-02-18T08:49:04",
"url": "https://files.pythonhosted.org/packages/a9/0f/324ec2f3f7067524dfdd0d4cf33e2aabc7f5bc67499ad46676cb1f6cb155/django-fiber-0.12.2.tar.gz"
}
],
"0.13": [
{
"comment_text": "",
"digests": {
"md5": "722cb13ba37a03a5fe7d6ebdc8a9e9ae",
"sha256": "e6bf7c38646335b5bfc6c31ee6a7e471952df74159b232049c221bd18f5a5ed2"
},
"downloads": -1,
"filename": "django-fiber-0.13.tar.gz",
"has_sig": false,
"md5_digest": "722cb13ba37a03a5fe7d6ebdc8a9e9ae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1761368,
"upload_time": "2014-04-01T16:40:35",
"url": "https://files.pythonhosted.org/packages/6f/ec/c9b9a202d8490c39fd4775cf38ea71fc9904e08a0c9b8fa269bb92c0fdb2/django-fiber-0.13.tar.gz"
}
],
"0.9": [
{
"comment_text": "",
"digests": {
"md5": "1a6535d17ef45b275bf7dffef1575995",
"sha256": "0591a691c18ae8fb33ec351cc6307143801ec51aae4882cedc244a9906b19b6b"
},
"downloads": -1,
"filename": "django-fiber-0.9.tar.gz",
"has_sig": false,
"md5_digest": "1a6535d17ef45b275bf7dffef1575995",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2196091,
"upload_time": "2011-05-04T17:26:40",
"url": "https://files.pythonhosted.org/packages/61/ab/ac0c14bab2bb890248e95ccadcc50dcc3f19356ce499af78d3e95a350ec9/django-fiber-0.9.tar.gz"
}
],
"0.9.1": [
{
"comment_text": "",
"digests": {
"md5": "1c4614858a5e261abc2e6c557a47fe5d",
"sha256": "4474d2478e71ffe3d8088befb20e8c805df3684cb3abdbab3359e1c35d494d97"
},
"downloads": -1,
"filename": "django-fiber-0.9.1.tar.gz",
"has_sig": false,
"md5_digest": "1c4614858a5e261abc2e6c557a47fe5d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2224964,
"upload_time": "2011-05-06T13:57:05",
"url": "https://files.pythonhosted.org/packages/ac/a6/372c60a13e1b3206f2982ee58266c3d805bb71827020be03e4c645441b70/django-fiber-0.9.1.tar.gz"
}
],
"0.9.2": [
{
"comment_text": "",
"digests": {
"md5": "433b85a78a7be4e69145627f1e26e539",
"sha256": "51b4bf1d345b3e7368b1baa4251ae15c7c27c4e2d8e544ad1d9ba7ddf699be46"
},
"downloads": -1,
"filename": "django-fiber-0.9.2.tar.gz",
"has_sig": false,
"md5_digest": "433b85a78a7be4e69145627f1e26e539",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2223555,
"upload_time": "2011-05-09T12:54:58",
"url": "https://files.pythonhosted.org/packages/2c/4e/9b7b30e4805e7edc2e001c9292825ed5b3a5f34a8f30ffcffe1d63001a63/django-fiber-0.9.2.tar.gz"
}
],
"0.9.3": [
{
"comment_text": "",
"digests": {
"md5": "2511ca725335d595842897f88297e84f",
"sha256": "b1b0814e87d3efa38abc2fc0fa635cf4fbeb8640e3c6e73a910210ce06845814"
},
"downloads": -1,
"filename": "django-fiber-0.9.3.tar.gz",
"has_sig": false,
"md5_digest": "2511ca725335d595842897f88297e84f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2226223,
"upload_time": "2011-05-18T17:59:42",
"url": "https://files.pythonhosted.org/packages/a5/d4/18f9a80a80a6bff3ec561177e237550349db4722682298fb54ae0148668f/django-fiber-0.9.3.tar.gz"
}
],
"0.9.4": [
{
"comment_text": "",
"digests": {
"md5": "f92b12b0552c0e5d60db572803e81612",
"sha256": "73b82c6ad03a4db33e77fb1a6a384a6435434726063178863b7100c6a69efcb2"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.tar.gz",
"has_sig": false,
"md5_digest": "f92b12b0552c0e5d60db572803e81612",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2232516,
"upload_time": "2011-05-30T10:44:41",
"url": "https://files.pythonhosted.org/packages/ea/f0/597da3c79a743054562a98c95bacb5fa06d5e767a46396d8884057ec1f94/django-fiber-0.9.4.tar.gz"
}
],
"0.9.4.1": [
{
"comment_text": "",
"digests": {
"md5": "1b9bdba0d144182831a7158aa2faab1e",
"sha256": "115be7931149e214d1ecd409f8ef775629539db4d03a09ee95b8a29ad8371581"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.1.tar.gz",
"has_sig": false,
"md5_digest": "1b9bdba0d144182831a7158aa2faab1e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2233499,
"upload_time": "2011-06-03T14:27:36",
"url": "https://files.pythonhosted.org/packages/17/02/d2559a8738839b58db546e4663df7180d0e0d1bcbc6c4404f19de24b1c78/django-fiber-0.9.4.1.tar.gz"
}
],
"0.9.4.10": [
{
"comment_text": "",
"digests": {
"md5": "89a7ca9efc34453f5d5c6659fc8ef509",
"sha256": "7fa814fbb79e58e9003078ef554682c28903c5e3a42d77c815b26dd489c608b6"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.10.tar.gz",
"has_sig": false,
"md5_digest": "89a7ca9efc34453f5d5c6659fc8ef509",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2234169,
"upload_time": "2011-08-31T18:16:33",
"url": "https://files.pythonhosted.org/packages/31/06/3b04e21a42277d27268b7ae3d4f3ded8fb5499ceac95d539ca54142abbc3/django-fiber-0.9.4.10.tar.gz"
}
],
"0.9.4.11": [
{
"comment_text": "",
"digests": {
"md5": "24e7e03ae14a1805f098d0e1ecba4502",
"sha256": "db67481be4d535726d17cf43dfade36a03afc204838741519d6d9486ec5c57d9"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.11.tar.gz",
"has_sig": false,
"md5_digest": "24e7e03ae14a1805f098d0e1ecba4502",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2234304,
"upload_time": "2011-08-31T19:36:40",
"url": "https://files.pythonhosted.org/packages/cb/ee/f2abe12f9e26a3ed12f9602f8f9ef71b3b0e7b5644152f9df756eca7342e/django-fiber-0.9.4.11.tar.gz"
}
],
"0.9.4.12": [
{
"comment_text": "",
"digests": {
"md5": "cdc8b15348d8cad159b8289d7b00ffdd",
"sha256": "e2060b6f9114ca1d0a7ef3ccf45ea7d046d8bfc8ec567f5a5dca62bd837852ef"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.12.tar.gz",
"has_sig": false,
"md5_digest": "cdc8b15348d8cad159b8289d7b00ffdd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2234344,
"upload_time": "2011-09-05T15:43:57",
"url": "https://files.pythonhosted.org/packages/1b/70/00f6a183870d8319860b406f5a671d7d73b5143353cb05e8f57338f39792/django-fiber-0.9.4.12.tar.gz"
}
],
"0.9.4.13": [
{
"comment_text": "",
"digests": {
"md5": "e849f891496885728fe51a0ed207d82a",
"sha256": "5ca010295dee33ecfa3dcaba5264c2d3677161306f7acba7dd5c7c7824516314"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.13.tar.gz",
"has_sig": false,
"md5_digest": "e849f891496885728fe51a0ed207d82a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2234737,
"upload_time": "2011-09-06T18:51:07",
"url": "https://files.pythonhosted.org/packages/69/d5/c61490a23ef992a55134986295a09930c3e7dd5783166f8d380fd76955dc/django-fiber-0.9.4.13.tar.gz"
}
],
"0.9.4.14": [
{
"comment_text": "",
"digests": {
"md5": "49e3e423b5a3c354cb432ff7da3bfacd",
"sha256": "185e80b79ab4cf49d57fbb9510e134d2f205b8cef3312924d0efff1be126b5b9"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.14.tar.gz",
"has_sig": false,
"md5_digest": "49e3e423b5a3c354cb432ff7da3bfacd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2241320,
"upload_time": "2011-10-06T17:21:44",
"url": "https://files.pythonhosted.org/packages/67/75/ec26effb320c441137b9187a888ed2b92846ae306a65853c14b4d9fccda0/django-fiber-0.9.4.14.tar.gz"
}
],
"0.9.4.15": [
{
"comment_text": "",
"digests": {
"md5": "9c975f5f51630d8b79276baf5bb641b0",
"sha256": "70ff9aa3e0b5ff8ab0b6c4e6fa0890b0fadd7a6bf7bf92e6bfb170cc08821384"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.15.tar.gz",
"has_sig": false,
"md5_digest": "9c975f5f51630d8b79276baf5bb641b0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2215116,
"upload_time": "2011-10-13T10:55:35",
"url": "https://files.pythonhosted.org/packages/16/de/8fd4a8db8a045c6b06420c54ccf55f2f1be384a154b22836da7d9a25b3d5/django-fiber-0.9.4.15.tar.gz"
}
],
"0.9.4.16": [
{
"comment_text": "",
"digests": {
"md5": "7ea1f65baf5694dc80c9d9be8a55b8a8",
"sha256": "0c480e60b3770ce5bedf21ed28792c43e5c9f9bacebb3ccf6e27844d4a4898c3"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.16.tar.gz",
"has_sig": false,
"md5_digest": "7ea1f65baf5694dc80c9d9be8a55b8a8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2346737,
"upload_time": "2011-10-19T00:16:45",
"url": "https://files.pythonhosted.org/packages/35/71/c6e72c76eae4e96af39ff1adf6f8a21a2e25093b447b815531ebe283e0ab/django-fiber-0.9.4.16.tar.gz"
}
],
"0.9.4.17": [
{
"comment_text": "",
"digests": {
"md5": "c046e17061d27694792cce607df7417c",
"sha256": "b70ab5a52742f157efd04779c5023359ff6b3cf0bebe7a3db1b6194c1502d0f6"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.17.tar.gz",
"has_sig": false,
"md5_digest": "c046e17061d27694792cce607df7417c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2347308,
"upload_time": "2011-10-25T23:39:19",
"url": "https://files.pythonhosted.org/packages/7f/41/f2286198e67fcf9d854ab620a7b591d527f51a384e79e916656b49fbd916/django-fiber-0.9.4.17.tar.gz"
}
],
"0.9.4.18": [
{
"comment_text": "",
"digests": {
"md5": "8d63236a36b6b2dafead062bb64b0ee9",
"sha256": "e144dd703e5795bad766936ff0509d68bfe504f7d43999cbe61e425b4def8997"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.18.tar.gz",
"has_sig": false,
"md5_digest": "8d63236a36b6b2dafead062bb64b0ee9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2346666,
"upload_time": "2011-10-26T00:21:53",
"url": "https://files.pythonhosted.org/packages/dc/96/4ade9651dcae42f91fe3dc7347f32d3255e07ec15cd425e1d9f1af7f3d7a/django-fiber-0.9.4.18.tar.gz"
}
],
"0.9.4.19": [
{
"comment_text": "",
"digests": {
"md5": "739c52acbe99f154b47fcba5b89a6c74",
"sha256": "401191af1f703ca19fe0180cb8074fc316be9e250dd95f79be66bdb09a7ef4c8"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.19.tar.gz",
"has_sig": false,
"md5_digest": "739c52acbe99f154b47fcba5b89a6c74",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2348399,
"upload_time": "2011-11-03T15:51:40",
"url": "https://files.pythonhosted.org/packages/ea/c6/18abb3152dd404b56e8efa4e361791ef6d542b0ddef6d6d019c56097638c/django-fiber-0.9.4.19.tar.gz"
}
],
"0.9.4.2": [
{
"comment_text": "",
"digests": {
"md5": "b732854b98d868ca6972a6621659fda1",
"sha256": "8c5eb246faefaa6e201b918e412be9f783dcd7f672ee6844ccd7d9cb934d58df"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.2.tar.gz",
"has_sig": false,
"md5_digest": "b732854b98d868ca6972a6621659fda1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2233484,
"upload_time": "2011-06-08T10:29:39",
"url": "https://files.pythonhosted.org/packages/16/f2/411839e29794d7425460ad54cb5cc43f87a32b730a5e08546d5b4039e9b8/django-fiber-0.9.4.2.tar.gz"
}
],
"0.9.4.3": [
{
"comment_text": "",
"digests": {
"md5": "7ccf31c6d05b2051a807b085d7b4b981",
"sha256": "955e16094232eb6ef5cad84c9d12d45757dab8982ff0b1d0e3cf894e230c3834"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.3.tar.gz",
"has_sig": false,
"md5_digest": "7ccf31c6d05b2051a807b085d7b4b981",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2196184,
"upload_time": "2011-06-20T17:17:16",
"url": "https://files.pythonhosted.org/packages/0b/43/cc380e5b9638c9f9da22d0d2b5982a1cb3ecc2fb638c22cd373c8c8bab7f/django-fiber-0.9.4.3.tar.gz"
}
],
"0.9.4.4": [
{
"comment_text": "",
"digests": {
"md5": "4735b5ca1164b1fbb0063eda110d0078",
"sha256": "0640b7033ad2844b68de6e9b684eb4e00931d64ade431f4c0de20f8e902b83e6"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.4.tar.gz",
"has_sig": false,
"md5_digest": "4735b5ca1164b1fbb0063eda110d0078",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2196224,
"upload_time": "2011-06-22T17:30:51",
"url": "https://files.pythonhosted.org/packages/88/8b/b39fcbb07e194db17be6a2f05ca94ec0029013696d1f048ec7168b4f32a6/django-fiber-0.9.4.4.tar.gz"
}
],
"0.9.4.5": [
{
"comment_text": "",
"digests": {
"md5": "e5e7369698b04b889106ada7cdfe6d10",
"sha256": "9ab2b0376c95f2d02589e03d60b964c219c2d2cad20bf3c759423ba95460bfcd"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.5.tar.gz",
"has_sig": false,
"md5_digest": "e5e7369698b04b889106ada7cdfe6d10",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2233245,
"upload_time": "2011-07-18T23:54:20",
"url": "https://files.pythonhosted.org/packages/ce/92/74adbd22b93fe6cb3730ab2fea5953950da7f8da8a44fb9c350bb6b9db9b/django-fiber-0.9.4.5.tar.gz"
}
],
"0.9.4.6": [
{
"comment_text": "",
"digests": {
"md5": "5d495cb4a160f506f32372b051694c1d",
"sha256": "c855afbbd8f7747b48f068012a0f1791e8eb34a8c3af0052a9d99e6c9b492ea0"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.6.tar.gz",
"has_sig": false,
"md5_digest": "5d495cb4a160f506f32372b051694c1d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2233339,
"upload_time": "2011-08-10T18:20:41",
"url": "https://files.pythonhosted.org/packages/c1/30/0c23bbc7531eeb2764ec1f5326ab2bd61faa9dffb272ed6c25cd87d6564b/django-fiber-0.9.4.6.tar.gz"
}
],
"0.9.4.7": [
{
"comment_text": "",
"digests": {
"md5": "4f197ea9585e040a6b976abad225391a",
"sha256": "519ca4b99ce48c27c4c353304550cc8500667bf7aac69b5014aad5778feaaff9"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.7.tar.gz",
"has_sig": false,
"md5_digest": "4f197ea9585e040a6b976abad225391a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2234192,
"upload_time": "2011-08-11T18:13:52",
"url": "https://files.pythonhosted.org/packages/b3/e4/ed6ca1a5caaf405209d20b0ab58b842d52445ccaae88180961eba000abf5/django-fiber-0.9.4.7.tar.gz"
}
],
"0.9.4.8": [
{
"comment_text": "",
"digests": {
"md5": "c57fdaa06ed207715ea223892b18143a",
"sha256": "2170365a904d9475620ac9eb5d7c5ff9f33c549c2a192a91c8727a8281ec7a96"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.8.tar.gz",
"has_sig": false,
"md5_digest": "c57fdaa06ed207715ea223892b18143a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2234310,
"upload_time": "2011-08-22T10:47:53",
"url": "https://files.pythonhosted.org/packages/b1/4e/71dd7690baae36aa7b1a4cef9f90050aea2989dd394a417e379861045b6d/django-fiber-0.9.4.8.tar.gz"
}
],
"0.9.4.9": [
{
"comment_text": "",
"digests": {
"md5": "468fcf049854a6e58bd49a5e6dbfdb15",
"sha256": "082c9bb84d67baf8d8ee1615e2b0ab55346258557428fffb7e2bc4405bbc3084"
},
"downloads": -1,
"filename": "django-fiber-0.9.4.9.tar.gz",
"has_sig": false,
"md5_digest": "468fcf049854a6e58bd49a5e6dbfdb15",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2234432,
"upload_time": "2011-08-24T18:07:08",
"url": "https://files.pythonhosted.org/packages/6a/f8/09fafa50119b12dfb62526c856aa60d53e9a08564de0c43a32b16a8b4558/django-fiber-0.9.4.9.tar.gz"
}
],
"0.9.5": [
{
"comment_text": "",
"digests": {
"md5": "a27b318c3c9d113fd0c703dfd3121d11",
"sha256": "e46392d27689ecedc689588d4b59c24b09f4471c1e5cbe95f355bf5e798f7d94"
},
"downloads": -1,
"filename": "django-fiber-0.9.5.tar.gz",
"has_sig": false,
"md5_digest": "a27b318c3c9d113fd0c703dfd3121d11",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2346224,
"upload_time": "2011-11-09T09:18:37",
"url": "https://files.pythonhosted.org/packages/42/af/18a06f36f5988670e793e1aed3ecfdcab3adad39ba54e271115618e47990/django-fiber-0.9.5.tar.gz"
}
],
"0.9.5.1": [
{
"comment_text": "",
"digests": {
"md5": "08d47d0be011ad8fa422de7db09c01a7",
"sha256": "0c41403b495516c93727c91c5c9c8007bd90f27909f74c2548e921b6a58eb62d"
},
"downloads": -1,
"filename": "django-fiber-0.9.5.1.tar.gz",
"has_sig": false,
"md5_digest": "08d47d0be011ad8fa422de7db09c01a7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2346572,
"upload_time": "2011-11-25T10:05:55",
"url": "https://files.pythonhosted.org/packages/7e/ac/f445443fb74f7660e4bf3f72e093faa1784ebf900b02887fa02755debfc4/django-fiber-0.9.5.1.tar.gz"
}
],
"0.9.5.2": [
{
"comment_text": "",
"digests": {
"md5": "64910649b2d40a08cb52674bb2e26c27",
"sha256": "dca88c145b6dd76d02297d090c8c68ce8950a4626e83f52b7fe21747eeb42b15"
},
"downloads": -1,
"filename": "django-fiber-0.9.5.2.tar.gz",
"has_sig": false,
"md5_digest": "64910649b2d40a08cb52674bb2e26c27",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2346442,
"upload_time": "2012-01-04T11:51:26",
"url": "https://files.pythonhosted.org/packages/e3/1e/c66f8d7befb412a5a2e987f0d8502942f2dbe29defe428da3ce28f7aba47/django-fiber-0.9.5.2.tar.gz"
}
],
"0.9.6": [
{
"comment_text": "",
"digests": {
"md5": "1fa386820613ab02774072cf060c1700",
"sha256": "f1f31b146000a257bc33cacf6a81bdaa699264dd0156f7ca4ef875ec8b4dfc64"
},
"downloads": -1,
"filename": "django-fiber-0.9.6.tar.gz",
"has_sig": false,
"md5_digest": "1fa386820613ab02774072cf060c1700",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2349282,
"upload_time": "2012-01-19T21:49:38",
"url": "https://files.pythonhosted.org/packages/d9/f3/591f9116083888c6f10f5addc92403c8195cd583408983178dcec74efcae/django-fiber-0.9.6.tar.gz"
}
],
"0.9.6.1": [
{
"comment_text": "",
"digests": {
"md5": "93510bb7d55f1039b139a8c76ab73b6c",
"sha256": "997482d5ff67f473e2883df2ee1a0bfa3e62d680ecba9511a321a02666cb281f"
},
"downloads": -1,
"filename": "django-fiber-0.9.6.1.tar.gz",
"has_sig": false,
"md5_digest": "93510bb7d55f1039b139a8c76ab73b6c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2349331,
"upload_time": "2012-01-19T22:31:52",
"url": "https://files.pythonhosted.org/packages/49/51/e5a28a04c07b90301a508af515e30721f84c99561b8ddb1c6e35b6e55c8b/django-fiber-0.9.6.1.tar.gz"
}
],
"0.9.6.2": [
{
"comment_text": "",
"digests": {
"md5": "da64693a4a18c37d6cc3402a9b8aa9cb",
"sha256": "07ef1dcbfa9c9828f3a7d5ad8a63010d2e8cbecfa04d543093c1fdebe803a1b2"
},
"downloads": -1,
"filename": "django-fiber-0.9.6.2.tar.gz",
"has_sig": false,
"md5_digest": "da64693a4a18c37d6cc3402a9b8aa9cb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2349044,
"upload_time": "2012-01-19T23:01:59",
"url": "https://files.pythonhosted.org/packages/38/37/bc4fe2c1f99b3738bb29267337f4a24a7caf9fb3370eeacfb2fcefb92b22/django-fiber-0.9.6.2.tar.gz"
}
],
"0.9.6.3": [
{
"comment_text": "",
"digests": {
"md5": "71285ec33085be6ad107e6e3de9aa689",
"sha256": "76c4ad93f0a6186a10c551a7ea8f6ea300b3f2e25374700e97d5b2f520090c5c"
},
"downloads": -1,
"filename": "django-fiber-0.9.6.3.tar.gz",
"has_sig": false,
"md5_digest": "71285ec33085be6ad107e6e3de9aa689",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2350820,
"upload_time": "2012-02-22T19:09:07",
"url": "https://files.pythonhosted.org/packages/46/17/95b588bf55726474aecb4f8f14a53ccdd6dd2f43547548f90119342b9146/django-fiber-0.9.6.3.tar.gz"
}
],
"0.9.6.4": [
{
"comment_text": "",
"digests": {
"md5": "27259209e80e60affbbfeb737e69f6d2",
"sha256": "5c6546183a6f1917f3942b3ae6e04b3901200d51e1599163be157b58894f0974"
},
"downloads": -1,
"filename": "django-fiber-0.9.6.4.tar.gz",
"has_sig": false,
"md5_digest": "27259209e80e60affbbfeb737e69f6d2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2175254,
"upload_time": "2012-02-23T11:32:10",
"url": "https://files.pythonhosted.org/packages/c2/19/368f8bca545c037dd84bc4187d88f4377cd0035fff393316f7c5023badfb/django-fiber-0.9.6.4.tar.gz"
}
],
"0.9.6.5": [
{
"comment_text": "",
"digests": {
"md5": "e7edb65be4d63df694fc27e1bb92e351",
"sha256": "2285371e4a6046a9b49636e18fde3f5ada05c1a8ea480d22f56fe02b620ed3dd"
},
"downloads": -1,
"filename": "django-fiber-0.9.6.5.tar.gz",
"has_sig": false,
"md5_digest": "e7edb65be4d63df694fc27e1bb92e351",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2175248,
"upload_time": "2012-02-24T12:14:40",
"url": "https://files.pythonhosted.org/packages/ad/6e/8058bdf00bf6c4d9775048f66763558be1028ca4e5d7cba7c7e23e9439ed/django-fiber-0.9.6.5.tar.gz"
}
],
"0.9.6.6": [
{
"comment_text": "",
"digests": {
"md5": "fef605a08c5a3d4ae576b8ac621e0ca1",
"sha256": "9c0710fc32c9c77147b46b88214cf7cbe943f542f81b3c420fd96c7c59da16c0"
},
"downloads": -1,
"filename": "django-fiber-0.9.6.6.tar.gz",
"has_sig": false,
"md5_digest": "fef605a08c5a3d4ae576b8ac621e0ca1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2175140,
"upload_time": "2012-04-03T00:17:26",
"url": "https://files.pythonhosted.org/packages/83/46/02ab202bd317730d93447153b5f2e22b44363b5429672dd8b13f551afe14/django-fiber-0.9.6.6.tar.gz"
}
],
"0.9.7": [
{
"comment_text": "",
"digests": {
"md5": "90de7a2dec61c722b9d14b539772707a",
"sha256": "993c62fe23fdf8d10a15f8bb967106828512f3a576da2f04005580566cbf523f"
},
"downloads": -1,
"filename": "django-fiber-0.9.7.tar.gz",
"has_sig": false,
"md5_digest": "90de7a2dec61c722b9d14b539772707a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1927558,
"upload_time": "2012-07-20T16:10:58",
"url": "https://files.pythonhosted.org/packages/da/5c/a4032f736e8dba6298ad9e7425ce1c044cb1df5e2ae9b07bed4b3c18f7a3/django-fiber-0.9.7.tar.gz"
}
],
"0.9.7.1": [
{
"comment_text": "",
"digests": {
"md5": "d33030390cde1c985f35824061f5de9b",
"sha256": "159a1ec5dd367618f784e06de307132d6f573ac6b67023939c0cf1e9e4cb4b3c"
},
"downloads": -1,
"filename": "django-fiber-0.9.7.1.tar.gz",
"has_sig": false,
"md5_digest": "d33030390cde1c985f35824061f5de9b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1929039,
"upload_time": "2012-07-31T12:43:48",
"url": "https://files.pythonhosted.org/packages/51/1b/7e24781262fb85fbf8ebd9141158c5aecb25a69f2298d1e2e68ba7351102/django-fiber-0.9.7.1.tar.gz"
}
],
"0.9.7.2": [
{
"comment_text": "",
"digests": {
"md5": "4b574d39b9ee21f5b3b0fce174122ccb",
"sha256": "22210e2ad887a93404be7341d08bc565d3292b534a5a1036e4085f185cb38e5a"
},
"downloads": -1,
"filename": "django-fiber-0.9.7.2.tar.gz",
"has_sig": false,
"md5_digest": "4b574d39b9ee21f5b3b0fce174122ccb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1929882,
"upload_time": "2012-08-17T15:28:30",
"url": "https://files.pythonhosted.org/packages/0d/68/c577178a2282386d0161e3ab786709b0a991ed8a4322bc1688ccb0f31c3c/django-fiber-0.9.7.2.tar.gz"
}
],
"0.9.8": [
{
"comment_text": "",
"digests": {
"md5": "c2ee0e25ff2780b5c1df28c1a49bc790",
"sha256": "16d816dec9a3dbdc6aa7a0da633421bad3048d097d576e11aef78acba86b18d6"
},
"downloads": -1,
"filename": "django-fiber-0.9.8.tar.gz",
"has_sig": false,
"md5_digest": "c2ee0e25ff2780b5c1df28c1a49bc790",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2711850,
"upload_time": "2012-08-26T20:01:35",
"url": "https://files.pythonhosted.org/packages/af/ac/e61fa254d542e368c3623d1becf2baf333f9902e04a587745d66ff15bfb2/django-fiber-0.9.8.tar.gz"
}
],
"0.9.8.1": [
{
"comment_text": "",
"digests": {
"md5": "de5bfaacdb00a363bd2c56554bf86e78",
"sha256": "576bc67ac1e012442a4fadc6b5f8f2b3b64c8497445762b74cbf76a153003862"
},
"downloads": -1,
"filename": "django-fiber-0.9.8.1.tar.gz",
"has_sig": false,
"md5_digest": "de5bfaacdb00a363bd2c56554bf86e78",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2714026,
"upload_time": "2012-08-26T21:33:52",
"url": "https://files.pythonhosted.org/packages/dd/bb/f9f31d6b78796e4fc0196bfec4e613423cb2a3afd9bdafc68a0c568a21d8/django-fiber-0.9.8.1.tar.gz"
}
],
"0.9.8.2": [
{
"comment_text": "",
"digests": {
"md5": "fa46c8a490a6892df66059a23cef0f88",
"sha256": "ec9bb4cec81f72f3fb5bbded9836d93e06f7d1ea163637f77fc84a4673fb904d"
},
"downloads": -1,
"filename": "django-fiber-0.9.8.2.tar.gz",
"has_sig": false,
"md5_digest": "fa46c8a490a6892df66059a23cef0f88",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2711270,
"upload_time": "2012-08-27T09:00:25",
"url": "https://files.pythonhosted.org/packages/ad/53/d55571373b9104363c05d54abd46050539de84b949a2ac188197da50d950/django-fiber-0.9.8.2.tar.gz"
}
],
"0.9.8.3": [
{
"comment_text": "",
"digests": {
"md5": "7e2170e503b01bcdc0d86183081dba5a",
"sha256": "00fbfb56c1ba9669d9da1a142746db5b1d0654fa09a8b791336d3cf2266785e1"
},
"downloads": -1,
"filename": "django-fiber-0.9.8.3.tar.gz",
"has_sig": false,
"md5_digest": "7e2170e503b01bcdc0d86183081dba5a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2714189,
"upload_time": "2012-08-30T09:25:07",
"url": "https://files.pythonhosted.org/packages/f5/c6/91967b4b26d96331ba670cc1c610861bbc7844ac813e49864df253b1a62d/django-fiber-0.9.8.3.tar.gz"
}
],
"0.9.8.4": [
{
"comment_text": "",
"digests": {
"md5": "99e6639ba598b342830c5bf77f47868c",
"sha256": "6c100c2dd2e60f662bc650e7829d8cfa8705f1dd8c3d9225d562b6964ea7b565"
},
"downloads": -1,
"filename": "django-fiber-0.9.8.4.tar.gz",
"has_sig": false,
"md5_digest": "99e6639ba598b342830c5bf77f47868c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2714184,
"upload_time": "2012-08-30T14:52:21",
"url": "https://files.pythonhosted.org/packages/f1/d8/b0deafa38d8478d8bc4b617f78c8ca46e35175c81f645dd069436e15f7bf/django-fiber-0.9.8.4.tar.gz"
}
],
"0.9.8.5": [
{
"comment_text": "",
"digests": {
"md5": "ae1716a6d93b759965c7220975083762",
"sha256": "09c7793846a7ab1b4e865070257ffd97481d1dfc5b737575f999d4ba5a91bfc4"
},
"downloads": -1,
"filename": "django-fiber-0.9.8.5.tar.gz",
"has_sig": false,
"md5_digest": "ae1716a6d93b759965c7220975083762",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2712923,
"upload_time": "2012-10-04T13:19:50",
"url": "https://files.pythonhosted.org/packages/24/7e/2432513439d6328b4705a7ffaeffc9e188983740300a462b59458bf106d6/django-fiber-0.9.8.5.tar.gz"
}
],
"0.9.8.6": [
{
"comment_text": "",
"digests": {
"md5": "926cdbdc1179ae82967a5e38d31c57de",
"sha256": "73df6ebc257958fe651224bfcb7fac569d84161d9bc73f1961878bf92e9f73b9"
},
"downloads": -1,
"filename": "django-fiber-0.9.8.6.tar.gz",
"has_sig": false,
"md5_digest": "926cdbdc1179ae82967a5e38d31c57de",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2711655,
"upload_time": "2012-10-05T12:00:36",
"url": "https://files.pythonhosted.org/packages/33/1d/f3900fbcb436c60a013066488b545b163cb449926aff865604367c6f8d1b/django-fiber-0.9.8.6.tar.gz"
}
],
"0.9.8.7": [
{
"comment_text": "",
"digests": {
"md5": "72267f85512bdf19ba0f3cbe2d34436a",
"sha256": "cc14f1b6b134ce75efea32ec6733699a66d9a2badfd57cdf7d0980eb84660cdb"
},
"downloads": -1,
"filename": "django-fiber-0.9.8.7.tar.gz",
"has_sig": false,
"md5_digest": "72267f85512bdf19ba0f3cbe2d34436a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2711347,
"upload_time": "2012-10-05T12:29:33",
"url": "https://files.pythonhosted.org/packages/a8/b7/07aa8c112a7742940645e36e8c31a03921ed8fb486d5a8e0585c9072bb75/django-fiber-0.9.8.7.tar.gz"
}
],
"0.9.8.8": [
{
"comment_text": "",
"digests": {
"md5": "e83e49243e83663c44cf4b851ca86fa4",
"sha256": "dec28efef046700ac00afc6820aa16e1a327db9e8386339e6d974b33125bb326"
},
"downloads": -1,
"filename": "django-fiber-0.9.8.8.tar.gz",
"has_sig": false,
"md5_digest": "e83e49243e83663c44cf4b851ca86fa4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2712234,
"upload_time": "2012-11-05T13:30:00",
"url": "https://files.pythonhosted.org/packages/89/6e/744b7b3fa31dc34a20302c8350c99f02c9d6bc44e68a2686f8c48fe07136/django-fiber-0.9.8.8.tar.gz"
}
],
"0.9.8.9": [
{
"comment_text": "",
"digests": {
"md5": "87b3b19ea8b258995816e737635fadc3",
"sha256": "064ba0fb92384b22df21403b906b58381b35a99bd1cbb4d7d415d63dbced06f0"
},
"downloads": -1,
"filename": "django-fiber-0.9.8.9.tar.gz",
"has_sig": false,
"md5_digest": "87b3b19ea8b258995816e737635fadc3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2712258,
"upload_time": "2012-11-05T16:16:06",
"url": "https://files.pythonhosted.org/packages/3b/72/04ed07008f8de5df9c23e0ba2281e3c7b311442445b599f48b356642458d/django-fiber-0.9.8.9.tar.gz"
}
],
"0.9.9": [
{
"comment_text": "",
"digests": {
"md5": "aa89e58e42a5cba8ce2286d51380f47b",
"sha256": "1c8517e50f62349ad6ac15f70a472bfc288f12b4103ce3184238e09fc80e81ba"
},
"downloads": -1,
"filename": "django-fiber-0.9.9.tar.gz",
"has_sig": false,
"md5_digest": "aa89e58e42a5cba8ce2286d51380f47b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2710031,
"upload_time": "2012-11-27T15:15:58",
"url": "https://files.pythonhosted.org/packages/bf/92/6e9b4323d8827ce15b4c39c56661279367f9852e73133fea499938e2fbf2/django-fiber-0.9.9.tar.gz"
}
],
"0.9.9.1": [
{
"comment_text": "",
"digests": {
"md5": "c08fd6b8bec8156ea1f5179770192856",
"sha256": "42ae422617ea064c0e55880c0c888e810b41115c8df89dd1945d6787e566c370"
},
"downloads": -1,
"filename": "django-fiber-0.9.9.1.tar.gz",
"has_sig": false,
"md5_digest": "c08fd6b8bec8156ea1f5179770192856",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2712901,
"upload_time": "2012-12-06T09:07:46",
"url": "https://files.pythonhosted.org/packages/1e/72/383252326906bbf34ef0d7b4d359e9ba25c87c087092cb8fa40e7451d9bc/django-fiber-0.9.9.1.tar.gz"
}
],
"1.0": [
{
"comment_text": "",
"digests": {
"md5": "1cb8a53b5411c519e1c4c52df7901a17",
"sha256": "6f3b97cb272db1b9dc934ebf60ceb3001052c4053b68340814f0ecd6ef5cf7c4"
},
"downloads": -1,
"filename": "django_fiber-1.0-py2.7.egg",
"has_sig": false,
"md5_digest": "1cb8a53b5411c519e1c4c52df7901a17",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 2455981,
"upload_time": "2014-11-26T11:07:29",
"url": "https://files.pythonhosted.org/packages/76/ed/4ef6caa04b2b2a06b227d976b8d9ecc9132f1d7fea04b3b4527d383c555a/django_fiber-1.0-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "04f84fe859b5d0bab7ec71cdaba310e5",
"sha256": "7ecb278d936000978ef8d8c3c9a6ac4ddb4493e12925373b3f3571178c28ef23"
},
"downloads": -1,
"filename": "django_fiber-1.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "04f84fe859b5d0bab7ec71cdaba310e5",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 2403652,
"upload_time": "2014-11-26T11:07:33",
"url": "https://files.pythonhosted.org/packages/52/dd/82932d0f1df60c11ba8b335e2725bd61136493dfef1f4d9c2deac1034a70/django_fiber-1.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3a1792cbf7214fb3b28fb292c7e7ae7d",
"sha256": "781bce01d9d3d1517615cd2d1c8d54d528d39f38422a3fefd389cf1043234ba8"
},
"downloads": -1,
"filename": "django-fiber-1.0.tar.gz",
"has_sig": false,
"md5_digest": "3a1792cbf7214fb3b28fb292c7e7ae7d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1773539,
"upload_time": "2014-11-26T11:07:24",
"url": "https://files.pythonhosted.org/packages/2e/02/49dc239718c76af72c42e0584999eae1353745b3c9cc9f51e797d1c387da/django-fiber-1.0.tar.gz"
}
],
"1.1": [
{
"comment_text": "",
"digests": {
"md5": "205782d9c97652354829dcdc3bc373de",
"sha256": "79a73c9a67149a919808d9dfa285453beaecaafe07b141ad2e9d130e77f1ee2f"
},
"downloads": -1,
"filename": "django_fiber-1.1-py2.7.egg",
"has_sig": false,
"md5_digest": "205782d9c97652354829dcdc3bc373de",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 2458630,
"upload_time": "2015-02-10T10:25:08",
"url": "https://files.pythonhosted.org/packages/81/6b/39c14cf188f9ae6f8d7cc0e40fd46115388a9ce38ec85649d967371ab9a9/django_fiber-1.1-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "3de83ba994d904add349253653d6b92d",
"sha256": "f759f4803df0411fee427f15efed7ceb090b00487007357a8954dd8128a6037d"
},
"downloads": -1,
"filename": "django_fiber-1.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "3de83ba994d904add349253653d6b92d",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 2403193,
"upload_time": "2015-02-10T10:25:13",
"url": "https://files.pythonhosted.org/packages/01/4e/624c483c53466b958e78be803f09eeb478ff25ff6bafb2b90004ed431f77/django_fiber-1.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "69aa9c1e220c6d5c6a7e61aa9b7bd76f",
"sha256": "4764301f19a849967ca8d79f3a8829b4e998053e2ad95ebea2174aaacc2cf708"
},
"downloads": -1,
"filename": "django-fiber-1.1.tar.gz",
"has_sig": false,
"md5_digest": "69aa9c1e220c6d5c6a7e61aa9b7bd76f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1781755,
"upload_time": "2015-02-10T10:25:05",
"url": "https://files.pythonhosted.org/packages/fc/66/c891e9f53f2e26aac6164ebd03c436b026c93702328c135e9ba832e64908/django-fiber-1.1.tar.gz"
}
],
"1.2": [
{
"comment_text": "",
"digests": {
"md5": "9b95e6df8e22ea0237a3576f583e12db",
"sha256": "312242bcd300a47875d667da8a242041e6d6728dcb6cb7bd8fe5eb6d83e85b28"
},
"downloads": -1,
"filename": "django_fiber-1.2-py2.7.egg",
"has_sig": false,
"md5_digest": "9b95e6df8e22ea0237a3576f583e12db",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 2456522,
"upload_time": "2015-07-29T11:26:45",
"url": "https://files.pythonhosted.org/packages/1b/9d/299c04334cd9079fca5e1f35bab2ea04566a70ce348cf07be2b4f9c5ef6e/django_fiber-1.2-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "99d588700380fc02b66f73f43fd3f8bc",
"sha256": "096c8e47c8dad9bf2b2abe71c213634960dc4bb03816997afa4d92afa200471b"
},
"downloads": -1,
"filename": "django_fiber-1.2-py2-none-any.whl",
"has_sig": false,
"md5_digest": "99d588700380fc02b66f73f43fd3f8bc",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 2400604,
"upload_time": "2015-07-29T11:26:52",
"url": "https://files.pythonhosted.org/packages/d1/dc/096d6e033de0be653fd193702ea43294163b8b9702aed79d6ca714fb4137/django_fiber-1.2-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fcaa22199786754fa31b097b6d7e4343",
"sha256": "5a64142421360639ac07278eacf53bedd37dd5309551433c0aab06f70e9c5dee"
},
"downloads": -1,
"filename": "django-fiber-1.2.tar.gz",
"has_sig": false,
"md5_digest": "fcaa22199786754fa31b097b6d7e4343",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1779838,
"upload_time": "2015-07-29T11:26:38",
"url": "https://files.pythonhosted.org/packages/83/66/5ed2197a37b86156e680645fc61d51dbced29e38feb9236c0609c3504ddd/django-fiber-1.2.tar.gz"
}
],
"1.3": [],
"1.3.1": [
{
"comment_text": "",
"digests": {
"md5": "2393ba4fe93835133844a3c377c1d532",
"sha256": "dbbb454ed232e00c4485ed478a7e378c93b5d23073d1cb4ee0fb0dc035d608a2"
},
"downloads": -1,
"filename": "django_fiber-1.3.1-py2.7.egg",
"has_sig": false,
"md5_digest": "2393ba4fe93835133844a3c377c1d532",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 2542395,
"upload_time": "2015-10-27T09:03:55",
"url": "https://files.pythonhosted.org/packages/99/76/ec89dd2dc60e3f1a7dd89b305445111d5c0ede70396e8b4deab62b6e47ae/django_fiber-1.3.1-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "ad6988cf752f407481b50d10687c4b32",
"sha256": "4db8df7afc7e38ab3f3b05f019ecd95023622298db532a350c132ef392aac371"
},
"downloads": -1,
"filename": "django_fiber-1.3.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "ad6988cf752f407481b50d10687c4b32",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 2452013,
"upload_time": "2015-10-27T09:04:02",
"url": "https://files.pythonhosted.org/packages/17/f6/a3c71ace31a19a5a5d95b8890274b7a85fbb9406b69000d37ef46b49017f/django_fiber-1.3.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4530612ae50a101607dc82d703d7f932",
"sha256": "5e581fb6b918ad457cfd239e9308af14606ce81260c526ed116d06a05ece0231"
},
"downloads": -1,
"filename": "django-fiber-1.3.1.tar.gz",
"has_sig": false,
"md5_digest": "4530612ae50a101607dc82d703d7f932",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1818714,
"upload_time": "2015-10-27T09:03:36",
"url": "https://files.pythonhosted.org/packages/5b/02/1bae4575911914cff373d5735f18d759e275b4d45b762f584c187e670d71/django-fiber-1.3.1.tar.gz"
}
],
"1.4.0": [
{
"comment_text": "",
"digests": {
"md5": "a51099a72eb74c52915ed8d968e366ec",
"sha256": "2fb9cafda8ceb9c9493ad93693b256d5f3d5fd2f7b755ed5d177ce8fd0205169"
},
"downloads": -1,
"filename": "django_fiber-1.4.0-py2.7.egg",
"has_sig": false,
"md5_digest": "a51099a72eb74c52915ed8d968e366ec",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 2570318,
"upload_time": "2017-01-23T15:36:02",
"url": "https://files.pythonhosted.org/packages/c3/fd/b4f318d51d9467a701bbd8bb208d83bdf908030ffb17756ac3e7f1e9724b/django_fiber-1.4.0-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "181944df63c5ffd0d56b6eedbdf7a5c1",
"sha256": "dfe99f47f35842d621eccd42885243b8b2f5e90b6e1ddbbfd874d60473a7c290"
},
"downloads": -1,
"filename": "django_fiber-1.4.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "181944df63c5ffd0d56b6eedbdf7a5c1",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 2480946,
"upload_time": "2017-01-23T15:36:07",
"url": "https://files.pythonhosted.org/packages/18/32/00206ac0489bd989dfe22d945f8b1d48265a86df65454c22ee394dc037de/django_fiber-1.4.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0f77fe5d11a767dffc1d8defb64d59cd",
"sha256": "40348b4f484cc3da316a16b140580200bd1d2fdea5f31da32cee27b8b95396bd"
},
"downloads": -1,
"filename": "django-fiber-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "0f77fe5d11a767dffc1d8defb64d59cd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1820377,
"upload_time": "2017-01-23T15:35:57",
"url": "https://files.pythonhosted.org/packages/22/c1/246373b480c3e9d8382e1dd3229fec9ce47cadc1a773ee819eceed44dbb2/django-fiber-1.4.0.tar.gz"
}
],
"1.4.1": [
{
"comment_text": "",
"digests": {
"md5": "5b2883e36db5dfc3a2bc20e91ddc45dd",
"sha256": "f27e8875befb1497c7b7af4d22cd70c08120b87dfc4d1f8a0441c93e7eb3d2b6"
},
"downloads": -1,
"filename": "django_fiber-1.4.1-py2.7.egg",
"has_sig": false,
"md5_digest": "5b2883e36db5dfc3a2bc20e91ddc45dd",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 2573845,
"upload_time": "2017-09-12T13:42:03",
"url": "https://files.pythonhosted.org/packages/89/56/3d3c0118d33414935e3c876c27d140b5f6cc6aa1a79790462376328e4a9a/django_fiber-1.4.1-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "26c19e8c34ca382238f8607596e510fe",
"sha256": "4e8edfc4e9d591f02570631b1977385d0dcbd31e944101c7fadf2194ef3067a7"
},
"downloads": -1,
"filename": "django_fiber-1.4.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "26c19e8c34ca382238f8607596e510fe",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 2481970,
"upload_time": "2017-09-12T13:42:10",
"url": "https://files.pythonhosted.org/packages/c6/ec/4823659522bad6712abe0e7a7cc07ab0b952fbfe220ccc638bcbd3423961/django_fiber-1.4.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4958ca52dfe76e7c4144987a148427a9",
"sha256": "aae96d143ba168c431932e2a61819335a52f020f080278a5c5fb3731c3a4c3aa"
},
"downloads": -1,
"filename": "django-fiber-1.4.1.tar.gz",
"has_sig": false,
"md5_digest": "4958ca52dfe76e7c4144987a148427a9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1820813,
"upload_time": "2017-09-12T13:41:57",
"url": "https://files.pythonhosted.org/packages/b8/29/8cca4cf5aeb06c12e43256aef482e0df18cb6824e6f14a12505227ea1715/django-fiber-1.4.1.tar.gz"
}
],
"1.5": [
{
"comment_text": "",
"digests": {
"md5": "f5e498b955b391af50173818021e7c2c",
"sha256": "b501c907fe1b3fb1dd5fa56f0bb89485ff77dbaee0fe54f3e9c415b198c18be6"
},
"downloads": -1,
"filename": "django_fiber-1.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f5e498b955b391af50173818021e7c2c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 2487719,
"upload_time": "2018-01-19T20:27:21",
"url": "https://files.pythonhosted.org/packages/6c/8f/d576441f961755d646b0416c309961e47a40b9938519410697e676e77358/django_fiber-1.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6f48ba221091978834430e054e75be6c",
"sha256": "c6cb34a893be74407aaa434fe452088e494d8a3f82276504f9e6323054d5e911"
},
"downloads": -1,
"filename": "django-fiber-1.5.tar.gz",
"has_sig": false,
"md5_digest": "6f48ba221091978834430e054e75be6c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1861777,
"upload_time": "2018-01-19T20:27:13",
"url": "https://files.pythonhosted.org/packages/50/e3/d3387dd416e77162a08c2c9673b93ea75576d9095e0ec99b252613f74c3e/django-fiber-1.5.tar.gz"
}
],
"1.6": [
{
"comment_text": "",
"digests": {
"md5": "9226aa5c9c601a74e861591559b89726",
"sha256": "3dafd81bb9264196b57a50a8ba2a8be3180c8f7e641ed9c096d28d912a173162"
},
"downloads": -1,
"filename": "django_fiber-1.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9226aa5c9c601a74e861591559b89726",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 2466853,
"upload_time": "2019-06-20T18:34:55",
"url": "https://files.pythonhosted.org/packages/3a/ae/0b9d3acb4f0cfaa720bdf251d9bd2e196390072b3f6994311f1ddcdba5d3/django_fiber-1.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "169840fd1fbcf5ffe3045ce201e904c8",
"sha256": "3540de51cb66cbb0727a38364281fb0144e321709435c156493cb3fb4a79b9c2"
},
"downloads": -1,
"filename": "django-fiber-1.6.tar.gz",
"has_sig": false,
"md5_digest": "169840fd1fbcf5ffe3045ce201e904c8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1853808,
"upload_time": "2019-06-20T18:34:59",
"url": "https://files.pythonhosted.org/packages/ef/0b/ff6f6e2c0bcf6fe77f087d53263a04e5994f12a3df64b30fb3093ee8040c/django-fiber-1.6.tar.gz"
}
],
"1.6.1": [
{
"comment_text": "",
"digests": {
"md5": "d2d709b25055e09a931563ea9fec8a42",
"sha256": "bdec21c2847da395ca76398a1f9784ac0087ddb75b6925d3506a02f1ca81a8d0"
},
"downloads": -1,
"filename": "django_fiber-1.6.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d2d709b25055e09a931563ea9fec8a42",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 2466887,
"upload_time": "2019-10-17T19:41:11",
"url": "https://files.pythonhosted.org/packages/95/d6/8e8cff8b9b6a991a695dcdb54cb9dbd78b5e2c095a66268fb9e29473ad5b/django_fiber-1.6.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f438b9f78edd20a861f20ad6c4427fc0",
"sha256": "52fc0488d8a736373bc8b2fe5148bf021459acfbd0127e9e765eb4ff7353d2c6"
},
"downloads": -1,
"filename": "django-fiber-1.6.1.tar.gz",
"has_sig": false,
"md5_digest": "f438b9f78edd20a861f20ad6c4427fc0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1854192,
"upload_time": "2019-10-17T19:41:35",
"url": "https://files.pythonhosted.org/packages/19/10/3bf168149ca19219f0dca4afd509bd26dc5c80ecd727460776dd262c6b66/django-fiber-1.6.1.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "d2d709b25055e09a931563ea9fec8a42",
"sha256": "bdec21c2847da395ca76398a1f9784ac0087ddb75b6925d3506a02f1ca81a8d0"
},
"downloads": -1,
"filename": "django_fiber-1.6.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d2d709b25055e09a931563ea9fec8a42",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 2466887,
"upload_time": "2019-10-17T19:41:11",
"url": "https://files.pythonhosted.org/packages/95/d6/8e8cff8b9b6a991a695dcdb54cb9dbd78b5e2c095a66268fb9e29473ad5b/django_fiber-1.6.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f438b9f78edd20a861f20ad6c4427fc0",
"sha256": "52fc0488d8a736373bc8b2fe5148bf021459acfbd0127e9e765eb4ff7353d2c6"
},
"downloads": -1,
"filename": "django-fiber-1.6.1.tar.gz",
"has_sig": false,
"md5_digest": "f438b9f78edd20a861f20ad6c4427fc0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1854192,
"upload_time": "2019-10-17T19:41:35",
"url": "https://files.pythonhosted.org/packages/19/10/3bf168149ca19219f0dca4afd509bd26dc5c80ecd727460776dd262c6b66/django-fiber-1.6.1.tar.gz"
}
]
}