{
"info": {
"author": "Mathieu Requillart",
"author_email": "mathieu.requillart@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.10",
"Framework :: Django :: 1.11",
"Framework :: Django :: 1.7",
"Framework :: Django :: 1.8",
"Framework :: Django :: 1.9",
"Framework :: Django :: 2.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
],
"description": "django-initial-avatars\n\n======================\n\n.. image:: https://badge.fury.io/py/django-initial-avatars.svg \n :target: https://badge.fury.io/py/django-initial-avatars\n.. image:: https://travis-ci.org/axiome-oss/django-initial-avatars.svg?branch=master\n :target: https://travis-ci.org/axiome-oss/django-initial-avatars\n\ndjango-initial-avatars is a simple Django app which generates avatars based on username and initials. If django_gravatar is installed, user's gravatar is preferred.\n\nExamples\n-----------\n\n* API endpoint\n\n.. image:: https://metod-site.s3.amazonaws.com/media/25/initial_avatars.png\n :target: http://www.metod.io/fr/blog/2015/12/02/release-django-initial-avatars/\n :alt: example of django-initial-avatars on Metod\n \n* Template tag\n\n.. image:: https://metod-site.s3.amazonaws.com/media/25/initial_avatars_email.png\n :target: http://www.metod.io/fr/blog/2015/12/02/release-django-initial-avatars/\n :alt: example of django-initial-avatars in Metod emails\n\nDependencies\n------------\n\nGenerating avatars requires a `Pillow` installation with `freetype` support.\n\n``freetype`` can easily be installed on ubuntu with::\n\t\n\t$ sudo aptitude install libfreetype6-dev\n\nor on OS X with `homebrew`::\n\n $ brew install freetype\n\nMake sure the following packet are installed on your system to enable PNG and JPG support on Pillow::\n\n $ sudo aptitude install libjpeg-dev zlib1g-dev libpng12-dev\n\nPillow may need to be rebuilt after installing the libraries.\n\nFont licensing\n--------------\n\nThe font ``Ubuntu Monospace`` is used to generate the avatar.\nThe font is licensed under the Ubuntu Font Licence, see the\n`License `_\n\nQuick start\n-----------\n1. install app requirements\n\n2. install django-initial-avatars through pip::\n\n pip install django-initial-avatars\n\n3. If you want to use gravatar for users who have one, install django-gravatar2::\n\n pip install django-gravatar2\n\n4. Add \"django-initial-avatars\" to your INSTALLED_APPS setting like this::\n\n INSTALLED_APPS = (\n ...\n 'initial_avatars',\n ['django_gravatar',]\n )\n\n5. Include the django-initial-avatar URLconf in your project urls.py like this::\n\n url(r'^avatar/', include('initial_avatars.urls')),\n\n6. Launch development server::\n\n\tpython manage.py runserver\n\n7. Each user has now an endpoint for his avatar::\n\n\tlocalhost:8000/avatar/user_id/[size/]\n\n8. In your templates, use::\n\n {% load initialavatar %}\n\n {% get_initial_avatar user [size] ['shape'] %}\n\n {% get_initial_avatar user.email [size] ['shape'] %}\n\n\nSettings\n-----------\n\nA few settings are at your disposal\n\n* AVATAR_STORAGE_BACKEND allows you to use a custom storage backend instead of the default one::\n\n AVATAR_STORAGE_BACKEND = 'myproject.custom_storages.AvatarStorage'\n\n* AVATAR_STORAGE_FOLDER allows you to customize the root folder on the storage backend, default to 'avatars'::\n\n AVATAR_STORAGE_FOLDER = 'myfolder'\n\n* AVATAR_DEFAULT_SHAPE allows you to choose the default shape of the image, possible options are 'circle' or 'square', default to 'square'\n\n More shapes can be easily addded, just open an issue on github::\n\n AVATAR_DEFAULT_SHAPE = 'circle'\n\n* GRAVATAR_DEFAULT_SIZE allows you to choose the default size of the image, setting name used for compatibility with django_gravatar, default to '80'::\n\n GRAVATAR_DEFAULT_SIZE = 100\n\n\nExperimental settings\n------------\nThose feature are available but miss tests, contributions would be appreciated :)\n\n* AVATAR_HIGH_RESOLUTION can be used to display retina ready avatas, default to False::\n\n AVATAR_HIGH_RESOLUTION = True\n\n* AVATAR_COLORS can be used to randomly choose a color from a tuple of pre-defined colors at first avatar generation, no default::\n\n AVATAR_COLORS = ((37, 114, 221), (26, 193, 255),)\n\n* AVATAR_DEFAULT_FOREGROUND can be used to define a default color to the foreground, 'black' and 'white' available, no default. I advise not to use it without AVATAR_COLORS::\n\n AVATAR_DEFAULT_FOREGROUND = 'white'\n\n* AVATAR_GENERATOR_BACKEND can be used to extend the avatar generator and adjust it to your needs, especially for font customization. Refer to initial_avatars/generator.py for more information::\n\n AVATAR_GENERATOR_BACKEND = 'my_project.avatar_backend.MyAvatarBackend'\n\n\n.. code-block:: python\n from initial_avatars.generator import AvatarGenerator\n from PIL import ImageFont\n import os\n class MyAvatarBackend(AvatarGenerator):\n def font(self):\n font_path = '/path/to/your/font'\n font_size = self.font_size()\n return ImageFont.truetype(font_path, size=font_size)\n\n\n\nTests\n--------------\n\nDjango-initial-avatars is provided with tests, they require django-gravatar2 and tox\n\nYou can launch them in the virtualenv like this::\n\n tox\n\nIt might happen that a calculated position fails because of a minor difference in the result, don't care about it.\n\nContributions\n--------------\n\nContributions are welcome ! Feel free to write an issue for any feedback you have or send a pull request on `Github `_\n\nUsed on\n--------------\n\n* `Metod `_\n* Add your website here !\n",
"description_content_type": null,
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/axiome-oss/django-initial-avatars",
"keywords": "django avatar gravatar",
"license": "BSD License",
"maintainer": "",
"maintainer_email": "",
"name": "django-initial-avatars",
"package_url": "https://pypi.org/project/django-initial-avatars/",
"platform": "",
"project_url": "https://pypi.org/project/django-initial-avatars/",
"project_urls": {
"Homepage": "https://github.com/axiome-oss/django-initial-avatars"
},
"release_url": "https://pypi.org/project/django-initial-avatars/0.9.1/",
"requires_dist": null,
"requires_python": "",
"summary": "A simple Django app to get avatars based on username and initials if no gravatars is associated with the email address.",
"version": "0.9.1"
},
"last_serial": 3529734,
"releases": {
"0.1": [
{
"comment_text": "",
"digests": {
"md5": "3e7f02dfe5268dd53f32b94a41edd4f3",
"sha256": "16e58ee627e7eaad378d6be33b3061227d85560a4a16a66a3a0fb7d2f1fc6956"
},
"downloads": -1,
"filename": "django-initial-avatars-0.1.tar.gz",
"has_sig": false,
"md5_digest": "3e7f02dfe5268dd53f32b94a41edd4f3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114179,
"upload_time": "2015-09-30T13:53:34",
"url": "https://files.pythonhosted.org/packages/ea/2f/73e6d0d9b5e04b8fa8ac3fd8b8123233f002bbe8116486b164d00a852156/django-initial-avatars-0.1.tar.gz"
}
],
"0.2": [
{
"comment_text": "",
"digests": {
"md5": "22ff3ebe6a2c4edb66b5ca34c85027a7",
"sha256": "ffb804cab519538a5ffdc3d1e2c353905376ff3b9479441d7c73c36159c8b156"
},
"downloads": -1,
"filename": "django-initial-avatars-0.2.tar.gz",
"has_sig": false,
"md5_digest": "22ff3ebe6a2c4edb66b5ca34c85027a7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114554,
"upload_time": "2015-10-01T09:53:32",
"url": "https://files.pythonhosted.org/packages/27/cf/43f2c71009d6b2e0eeee3b6052708d2b09662f5d5e24597d7ba6e3b63c18/django-initial-avatars-0.2.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "0459df6bf749432cd355e960dfcf38ef",
"sha256": "0271029b7986299c7f2348a1410e614e60549a198dd7413a3ff288da80c9fc14"
},
"downloads": -1,
"filename": "django-initial-avatars-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "0459df6bf749432cd355e960dfcf38ef",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114582,
"upload_time": "2015-10-01T12:54:32",
"url": "https://files.pythonhosted.org/packages/ea/03/3983bcd16474299fe91474b5c670ae4802acb37d9e504ada12add836e37e/django-initial-avatars-0.2.1.tar.gz"
}
],
"0.2.2": [],
"0.2.3": [
{
"comment_text": "",
"digests": {
"md5": "653e125968bd89525c9af9d4b9c33d05",
"sha256": "61b01e2272314476e8dec12db5f9a454fc8ca2d35c29c539048bafa2bf4ec1d3"
},
"downloads": -1,
"filename": "django-initial-avatars-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "653e125968bd89525c9af9d4b9c33d05",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114597,
"upload_time": "2015-10-01T13:03:42",
"url": "https://files.pythonhosted.org/packages/c7/97/4f97b30783057ce041ce04fa79871810f23f5ff3a3137a70629a4eca0a39/django-initial-avatars-0.2.3.tar.gz"
}
],
"0.2.4": [
{
"comment_text": "",
"digests": {
"md5": "5681784b5bbd1909af4761e368d48585",
"sha256": "cf162e835ae011e9dd82b06c1769f02586e92be60eb173efac6fcadf954ec9d1"
},
"downloads": -1,
"filename": "django-initial-avatars-0.2.4.tar.gz",
"has_sig": false,
"md5_digest": "5681784b5bbd1909af4761e368d48585",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114591,
"upload_time": "2015-10-01T13:10:38",
"url": "https://files.pythonhosted.org/packages/54/45/5555da899d9dc53b8870fb0d8dcc306376892957c1a8a6ca32f047c29e81/django-initial-avatars-0.2.4.tar.gz"
}
],
"0.2.5": [
{
"comment_text": "",
"digests": {
"md5": "70bc51638222cc7320594fa2b26a01fb",
"sha256": "3befd7388090fb3cecc2445db9bb09ab8325fa65e3dcf461a51a9f81c9bea86f"
},
"downloads": -1,
"filename": "django-initial-avatars-0.2.5.tar.gz",
"has_sig": false,
"md5_digest": "70bc51638222cc7320594fa2b26a01fb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114547,
"upload_time": "2015-10-01T14:21:57",
"url": "https://files.pythonhosted.org/packages/94/52/ed858e64a24858ae49b101f212768b338d4ba6780371384c231b8bad999f/django-initial-avatars-0.2.5.tar.gz"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "96b0a07a10ba87b0ef9ed44e1905a821",
"sha256": "dd54cf3390542ab42afef071004625511da9653dd898494d91fa305e658714ea"
},
"downloads": -1,
"filename": "django-initial-avatars-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "96b0a07a10ba87b0ef9ed44e1905a821",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114566,
"upload_time": "2015-10-02T09:59:39",
"url": "https://files.pythonhosted.org/packages/49/c7/a267cb9bdea3854211263f5a17abbdf012b1eed4506b57ceb6a5d992ffde/django-initial-avatars-0.3.0.tar.gz"
}
],
"0.3.1": [
{
"comment_text": "",
"digests": {
"md5": "bd87849995b3e493662066cb89fcaea5",
"sha256": "b78e3280ed80fb272cbc097b0877d6d0688d446950bb90bf6b7ddc7170ba4844"
},
"downloads": -1,
"filename": "django-initial-avatars-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "bd87849995b3e493662066cb89fcaea5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114788,
"upload_time": "2015-10-05T21:43:59",
"url": "https://files.pythonhosted.org/packages/5e/fa/01c7581ed658f507a3135c6841963a8479e8320df1fe600633e4689540d4/django-initial-avatars-0.3.1.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "ef920604a8b788f54ce2e28d443dd67d",
"sha256": "c1e636dceb32061c34760a7206dc36623ff1b67769e18f74853d2dd1db03203f"
},
"downloads": -1,
"filename": "django-initial-avatars-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "ef920604a8b788f54ce2e28d443dd67d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114847,
"upload_time": "2015-11-13T19:12:31",
"url": "https://files.pythonhosted.org/packages/7f/e5/07403eec54f0b1eefd094ced236c056de6022023a13932276fc3bf68d09d/django-initial-avatars-0.4.0.tar.gz"
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "fa592b86515d8f92d59c9b64dd633cc9",
"sha256": "7c9305cd63a4baec292257698d8e5140649daa2ceb227452fe5869769a2862ce"
},
"downloads": -1,
"filename": "django-initial-avatars-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "fa592b86515d8f92d59c9b64dd633cc9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114773,
"upload_time": "2015-11-14T13:18:28",
"url": "https://files.pythonhosted.org/packages/ed/0c/ea3bfff8cdac1646af05faf33ae6a9967ba36b4b2fc70cee0cfb27545215/django-initial-avatars-0.5.0.tar.gz"
}
],
"0.5.1": [
{
"comment_text": "",
"digests": {
"md5": "2cbe6d848253ba00911f646ebcead858",
"sha256": "bb72082ae6f2b318539aff304dc7e1097fa33df75ca9a704b4b51c92bce5599d"
},
"downloads": -1,
"filename": "django-initial-avatars-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "2cbe6d848253ba00911f646ebcead858",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114968,
"upload_time": "2015-11-17T14:24:58",
"url": "https://files.pythonhosted.org/packages/35/e8/39c8e2db187a3f1caa85600b6fe204faa5ce1308f216f5ef623e47dbb8ec/django-initial-avatars-0.5.1.tar.gz"
}
],
"0.5.2": [
{
"comment_text": "",
"digests": {
"md5": "754090ff0578374984ebb9629718d700",
"sha256": "24e21a0db26e82213947962165d92fa36fb3d2287f521f6615ce49852d6a9a4d"
},
"downloads": -1,
"filename": "django-initial-avatars-0.5.2.tar.gz",
"has_sig": false,
"md5_digest": "754090ff0578374984ebb9629718d700",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 115515,
"upload_time": "2015-11-25T13:53:56",
"url": "https://files.pythonhosted.org/packages/93/ef/7526a5e7a53564a2a13a85e34b3f06197695f6c22f3848c31b43f2ae6b0f/django-initial-avatars-0.5.2.tar.gz"
}
],
"0.6": [
{
"comment_text": "",
"digests": {
"md5": "0c794367d0f7bc07b0588b967933a603",
"sha256": "d7b6876532f957a8a87e951fed20f1c0149feb5382dbe13090448ddaeb41f810"
},
"downloads": -1,
"filename": "django-initial-avatars-0.6.tar.gz",
"has_sig": false,
"md5_digest": "0c794367d0f7bc07b0588b967933a603",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 115924,
"upload_time": "2015-12-04T13:27:26",
"url": "https://files.pythonhosted.org/packages/22/5d/29ff3a874e38fc48bef0361ccdf6f8da1142f11e7cd9b3c23b1ace87a14a/django-initial-avatars-0.6.tar.gz"
}
],
"0.7": [
{
"comment_text": "",
"digests": {
"md5": "e4bf304f621586aa71e4a938c0d68556",
"sha256": "74e01889f299f8996072422d4bdbefa543e907117475de419b12fbc7ccf656ac"
},
"downloads": -1,
"filename": "django-initial-avatars-0.7.tar.gz",
"has_sig": false,
"md5_digest": "e4bf304f621586aa71e4a938c0d68556",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 115906,
"upload_time": "2015-12-04T18:48:31",
"url": "https://files.pythonhosted.org/packages/82/a0/bb8c8caf0135825a41927d415810b7b48d9b45833a1ad342b1553934bcc8/django-initial-avatars-0.7.tar.gz"
}
],
"0.7.1": [
{
"comment_text": "",
"digests": {
"md5": "e83bb1f3c978bb4a32825ad0ef8fb389",
"sha256": "adfcb4420b3c30f9aa28d09bae5c1d3586205fa1d3e452f9ded99c9883b912c3"
},
"downloads": -1,
"filename": "django-initial-avatars-0.7.1.tar.gz",
"has_sig": false,
"md5_digest": "e83bb1f3c978bb4a32825ad0ef8fb389",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 116018,
"upload_time": "2015-12-08T10:15:31",
"url": "https://files.pythonhosted.org/packages/5a/fa/6821bc6d23e23183d3f393e9ecc7956e343e9f4c70481c8d3722671e34aa/django-initial-avatars-0.7.1.tar.gz"
}
],
"0.7.2": [
{
"comment_text": "",
"digests": {
"md5": "42a2d6bbbe9031e946f0b7c9f7b26d11",
"sha256": "125147e53ede200904756481dbb801a4e486c0d9116ca93c0da53e242534b36c"
},
"downloads": -1,
"filename": "django-initial-avatars-0.7.2.tar.gz",
"has_sig": false,
"md5_digest": "42a2d6bbbe9031e946f0b7c9f7b26d11",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 115965,
"upload_time": "2015-12-08T10:40:12",
"url": "https://files.pythonhosted.org/packages/b3/e3/820196c7f07b0115dd6963eec21de64e4f4874b1385993f4f200840cfc1d/django-initial-avatars-0.7.2.tar.gz"
}
],
"0.7.3": [
{
"comment_text": "",
"digests": {
"md5": "003c64d68dcb5eb69cfd8609b6351e35",
"sha256": "ec30b11997b0e86ba0be413dd9d5a50e9cee8dd5d53328e903b62cd1ad38381b"
},
"downloads": -1,
"filename": "django-initial-avatars-0.7.3.tar.gz",
"has_sig": false,
"md5_digest": "003c64d68dcb5eb69cfd8609b6351e35",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 115961,
"upload_time": "2015-12-23T16:52:56",
"url": "https://files.pythonhosted.org/packages/46/22/eb220f63cccfe2ef3516d4525d942fd897b9412ea57cc61774d399b2e6c9/django-initial-avatars-0.7.3.tar.gz"
}
],
"0.7.4": [
{
"comment_text": "",
"digests": {
"md5": "5bd84fd87967eb9bf1d173bffb161056",
"sha256": "f9e8dd83d4f7fccffc66f1c4488c6ebaa87733c1280a8d713ea510b07070d7eb"
},
"downloads": -1,
"filename": "django-initial-avatars-0.7.4.tar.gz",
"has_sig": false,
"md5_digest": "5bd84fd87967eb9bf1d173bffb161056",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 117030,
"upload_time": "2016-01-29T16:32:36",
"url": "https://files.pythonhosted.org/packages/f8/84/3c9f851729a871fa3b10394104d360a56c6269ffac6477cf92f55e202b75/django-initial-avatars-0.7.4.tar.gz"
}
],
"0.7.5": [
{
"comment_text": "",
"digests": {
"md5": "17a564fe9f113ff986ea7486701aec0a",
"sha256": "d73faf65e373b65833393cb7b8f04ddc7a6e127742bc6fa700685379e655f32a"
},
"downloads": -1,
"filename": "django-initial-avatars-0.7.5.tar.gz",
"has_sig": false,
"md5_digest": "17a564fe9f113ff986ea7486701aec0a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 115598,
"upload_time": "2016-01-31T14:19:52",
"url": "https://files.pythonhosted.org/packages/2c/6c/c241052539c0405fc1abb07ac7227297507d117e36ab426459741ec52bfc/django-initial-avatars-0.7.5.tar.gz"
}
],
"0.8.1": [
{
"comment_text": "",
"digests": {
"md5": "b0092579ed531d813b65a47e5a6a9ffd",
"sha256": "256d8a0f133dd3b7bae166edd7c43becfa93a626a1d45918b246c6810e4dd490"
},
"downloads": -1,
"filename": "django-initial-avatars-0.8.1.tar.gz",
"has_sig": false,
"md5_digest": "b0092579ed531d813b65a47e5a6a9ffd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 116618,
"upload_time": "2016-02-18T12:34:48",
"url": "https://files.pythonhosted.org/packages/82/f0/84c5d58464109375d15e8469afb3ac7c9d0c1666d393bcc5c1e7c19dd1cb/django-initial-avatars-0.8.1.tar.gz"
}
],
"0.9": [
{
"comment_text": "",
"digests": {
"md5": "5c9f0e1bb2ac94b4f06f040a3b9e22a9",
"sha256": "82afb6b5c6d19ba777c0bd1fff94f780e210b6f68f362ce1fe7b1052e1c53ec2"
},
"downloads": -1,
"filename": "django-initial-avatars-0.9.tar.gz",
"has_sig": false,
"md5_digest": "5c9f0e1bb2ac94b4f06f040a3b9e22a9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 118605,
"upload_time": "2016-09-10T17:28:14",
"url": "https://files.pythonhosted.org/packages/27/ef/527bec8bd0a101a2ec21a4f01d29951d3899be71bb95975f5357c69d2ec6/django-initial-avatars-0.9.tar.gz"
}
],
"0.9.1": [
{
"comment_text": "",
"digests": {
"md5": "8431ee889c432c7bcc1f41c6da6cf013",
"sha256": "b19221af28c9440956511cd8dbc9f85f7960dabe1373e0bfdc1fec65d6d6dd33"
},
"downloads": -1,
"filename": "django-initial-avatars-0.9.1.tar.gz",
"has_sig": false,
"md5_digest": "8431ee889c432c7bcc1f41c6da6cf013",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 118962,
"upload_time": "2018-01-28T20:02:43",
"url": "https://files.pythonhosted.org/packages/14/15/a257148b8184a1fb6b7477c2efd56e5bfbfc39f1ba7e53f292e044c5b8c7/django-initial-avatars-0.9.1.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "8431ee889c432c7bcc1f41c6da6cf013",
"sha256": "b19221af28c9440956511cd8dbc9f85f7960dabe1373e0bfdc1fec65d6d6dd33"
},
"downloads": -1,
"filename": "django-initial-avatars-0.9.1.tar.gz",
"has_sig": false,
"md5_digest": "8431ee889c432c7bcc1f41c6da6cf013",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 118962,
"upload_time": "2018-01-28T20:02:43",
"url": "https://files.pythonhosted.org/packages/14/15/a257148b8184a1fb6b7477c2efd56e5bfbfc39f1ba7e53f292e044c5b8c7/django-initial-avatars-0.9.1.tar.gz"
}
]
}