{ "info": { "author": "ramusus", "author_email": "ramusus@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Django Facebook Graph API Posts\n===============================\n\n[![PyPI version](https://badge.fury.io/py/django-facebook-posts.png)](http://badge.fury.io/py/django-facebook-posts) [![Build Status](https://travis-ci.org/ramusus/django-facebook-posts.png?branch=master)](https://travis-ci.org/ramusus/django-facebook-posts) [![Coverage Status](https://coveralls.io/repos/ramusus/django-facebook-posts/badge.png?branch=master)](https://coveralls.io/r/ramusus/django-facebook-posts)\n\nApplication for interacting with Facebook Graph API Posts objects using Django model interface\n\nInstallation\n------------\n\n pip install django-facebook-posts\n\nAdd into `settings.py` lines:\n\n INSTALLED_APPS = (\n ...\n 'oauth_tokens',\n 'facebook_api',\n 'facebook_applications',\n 'facebook_pages',\n 'facebook_users',\n 'facebook_posts',\n )\n\n # oauth-tokens settings\n OAUTH_TOKENS_HISTORY = True # to keep in DB expired access tokens\n OAUTH_TOKENS_FACEBOOK_CLIENT_ID = '' # application ID\n OAUTH_TOKENS_FACEBOOK_CLIENT_SECRET = '' # application secret key\n OAUTH_TOKENS_FACEBOOK_SCOPE = ['offline_access'] # application scopes\n OAUTH_TOKENS_FACEBOOK_USERNAME = '' # user login\n OAUTH_TOKENS_FACEBOOK_PASSWORD = '' # user password\n\nUsage examples\n--------------\n\n### Fetch post by Graph ID\n\n >>> from facebook_posts.models import Post\n >>> post = Post.remote.fetch('19292868552_10150189643478553')\n >>> post\n \n >>> post.__dict__\n {'_application_cache': ,\n '_author_cache': ,\n '_author_content_type_cache': ,\n '_external_links_post_save': [],\n '_external_links_to_add': [],\n '_foreignkeys_post_save': [],\n '_state': ,\n 'actions': [{'link': 'http://www.facebook.com/19292868552/posts/10150189643478553',\n 'name': 'Comment'},\n {'link': 'http://www.facebook.com/19292868552/posts/10150189643478553',\n 'name': 'Like'},\n {'link': 'http://networkedblogs.com/hGWk3?a=share', 'name': 'Share'}],\n 'application_id': 18,\n 'author_content_type_id': 82,\n 'author_id': 9,\n 'author_json': {'category': 'Product/service',\n 'id': '19292868552',\n 'name': 'Facebook Developers'},\n 'caption': '',\n 'comments_count': 753,\n 'comments_json': {'count': 753,\n 'data': [{'created_time': '2012-12-30T17:07:19+0000',\n 'from': {'id': '100004288712236', 'name': 'Jian Liu'},\n 'id': '19292868552_10150189643478553_24586753',\n 'likes': 1,\n 'message': 'dsa'}, ...]},\n 'comments_real_count': 594,\n 'created_time': datetime.datetime(2011, 5, 10, 18, 35, 38, tzinfo=tzutc()),\n 'description': u'\\nWe continue to make Platform more secure for users. Earlier this year, we introduced the ability for users to browse Facebook over HTTPS. As a result, we provided \\u201cSecure Canvas URL\\u201d and \\u201cSecure Tab URL\\u201d fields in the Developer App for developers to serve their apps through an H',\n 'expanded_height': None,\n 'expanded_width': None,\n 'graph_id': '19292868552_10150189643478553',\n 'icon': 'http://m.ak.fbcdn.net/photos-b.ak/photos-ak-snc7/v85006/169/9953271133/app_2_9953271133_841622721.gif',\n 'id': 4364,\n 'likes_count': 8270,\n 'likes_json': {'count': 8270,\n 'data': [{'id': '100000499350811', 'name': u'Nguy\\u1ec5n V\\u0103n Linh'},\n {'id': '670265477', 'name': 'Soonsang Hong'},\n {'id': '100005341900488', 'name': 'Aloha Sanjay'},\n {'id': '527488241', 'name': 'Princess Grace Dimaculangan'}]},\n 'likes_real_count': 0,\n 'link': 'http://developers.facebook.com/blog/post/497',\n 'message': '',\n 'message_tags': None,\n 'name': 'Developer Roadmap Update: Moving to OAuth 2.0 + HTTPS',\n 'object_id': None,\n 'owners_json': None,\n 'picture': 'http://m.ak.fbcdn.net/platform.ak/www/app_full_proxy.php?app=9953271133&v=3&size=z&cksum=e15ac22d55f6a9501d3b3ac64c5fb763&src=http%3A%2F%2Fimg.bitpixels.com%2Fgetthumbnail%3Fcode%3D78793%26size%3D120%26url%3Dhttp%3A%2F%2Fdevelopers.facebook.com%2Fblog%2F',\n 'place': None,\n 'privacy': {'value': ''},\n 'properties': [{'href': 'http://apps.facebook.com/blognetworks/blog/official_facebook_developer_blog',\n 'name': 'source',\n 'text': 'Official Facebook Developer Blog'},\n {'href': 'http://developers.facebook.com/blog/post/497',\n 'name': 'link',\n 'text': 'Full Article...'}],\n 'source': '',\n 'status_type': 'app_created_story',\n 'story': '',\n 'story_tags': None,\n 'type': 'link',\n 'updated_time': datetime.datetime(2013, 3, 15, 1, 24, 46, tzinfo=tzutc()),\n 'with_tags': None}\n\n### Fetch post comments\n\n >>> from facebook_posts.models import Post\n >>> post = Post.remote.fetch('19292868552_10150189643478553')\n >>> post.fetch_comments()\n [, , , '...(remaining elements truncated)...']\n >>> post.comments.count()\n 82\n >>> post.comments.all()[0].__dict__\n Out[53]:\n {'_external_links_post_save': [],\n '_external_links_to_add': [],\n '_foreignkeys_post_save': [],\n '_state': ,\n 'author_content_type_id': 87,\n 'author_id': 6447,\n 'author_json': {u'id': u'767515690', u'name': u'Tim McKnight'},\n 'can_remove': False,\n 'created_time': datetime.datetime(2013, 3, 15, 5, 24, 46),\n 'graph_id': u'19292868552_10150189643478553_25321001',\n 'id': 3605,\n 'likes_count': 0,\n 'likes_real_count': 0,\n 'message': u'test',\n 'post_id': 4364,\n 'user_likes': False}\n\nFetch all comments of post\n\n >>> post.fetch_comments(all=True)\n [, , , '...(remaining elements truncated)...']\n >>> page.wall_comments.count()\n 610\n\n### Fetch post likes\n\n >>> from facebook_posts.models import Post\n >>> post = Post.remote.fetch('19292868552_10150189643478553')\n >>> post.likes_count # field with likes ammount transfered via API\n 8270\n >>> post.likes_real_count # field with ammount of real likes connections\n 0\n >>> post.fetch_likes()\n [, , '...(remaining elements truncated)...']\n >>> post.like_users.count()\n 4316\n >>> post.likes_real_count # strange, but real ammount of likes often less than value of likes_count field\n 4316\n\n### Fetch comment likes\n\n >>> from facebook_posts.models import Post, Comment\n >>> post = Post.remote.fetch('19292868552_10150189643478553')\n >>> comment = Comment.remote.fetch('19292868552_10150189643478553_16210808')\n >>> comment.likes_count # field with likes ammount transfered via API\n 480\n >>> comment.likes_real_count # field with ammount of real likes connections\n 0\n >>> comment.fetch_likes()\n [, , '...(remaining elements truncated)...']\n >>> comment.like_users.count()\n 480\n >>> comment.likes_real_count\n 480\n\nLicensing\n---------\n\nThis library uses the [Apache License, version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html).\nPlease see the library's individual files for more information.", "description_content_type": null, "docs_url": null, "download_url": "http://pypi.python.org/pypi/django-facebook-posts", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ramusus/django-facebook-posts", "keywords": null, "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "django-facebook-posts", "package_url": "https://pypi.org/project/django-facebook-posts/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-facebook-posts/", "project_urls": { "Download": "http://pypi.python.org/pypi/django-facebook-posts", "Homepage": "https://github.com/ramusus/django-facebook-posts" }, "release_url": "https://pypi.org/project/django-facebook-posts/0.6.1/", "requires_dist": null, "requires_python": null, "summary": "Django implementation for Facebook Graph API Posts", "version": "0.6.1" }, "last_serial": 1838265, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "7e6a34994b7d0109daa0c0745b9c4061", "sha256": "49a8dea48e2e839654c60fba8cb08d1ff56d3ab055633c18c3a45ff7bbd61d07" }, "downloads": -1, "filename": "django-facebook-posts-0.1.0.tar.gz", "has_sig": false, "md5_digest": "7e6a34994b7d0109daa0c0745b9c4061", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31231, "upload_time": "2013-03-22T20:22:04", "url": "https://files.pythonhosted.org/packages/60/bc/115643a82fbadb6f70cd9fffd1b7600ce34bd2bcb2902bc9012e5668d4b0/django-facebook-posts-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "9faa06a5d471fbe340f101572fe2ab90", "sha256": "21631af7cb3b9cb4c1831758b4f4471243b85fbe5eb1135021aac26e416d90fd" }, "downloads": -1, "filename": "django-facebook-posts-0.1.1.tar.gz", "has_sig": false, "md5_digest": "9faa06a5d471fbe340f101572fe2ab90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31252, "upload_time": "2013-03-23T10:34:49", "url": "https://files.pythonhosted.org/packages/e7/37/24657c132467eb68da66005300e32b1640c0c35d2fec873d4c81c77bcc8e/django-facebook-posts-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "29c6e4d630643ff4134151d4cffec70d", "sha256": "58e3c4878979ea1e1f1ccc9b988ac911dcd27e5a80685ff83d1cbb67a8e0a0d2" }, "downloads": -1, "filename": "django-facebook-posts-0.1.10.tar.gz", "has_sig": false, "md5_digest": "29c6e4d630643ff4134151d4cffec70d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39587, "upload_time": "2014-05-11T14:19:39", "url": "https://files.pythonhosted.org/packages/19/55/095e66ef0df62f3f3eda1e19e7429ed086d18de0ebf5047b31ca749810b0/django-facebook-posts-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "f13661509cf74b95a5a87b37b44fbb06", "sha256": "6c5cc7a972ad2aad4d0212e12148a08a129496ebaa1307aef09db98d2017df53" }, "downloads": -1, "filename": "django-facebook-posts-0.1.11.tar.gz", "has_sig": false, "md5_digest": "f13661509cf74b95a5a87b37b44fbb06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48106, "upload_time": "2014-10-09T12:47:53", "url": "https://files.pythonhosted.org/packages/0f/b6/afd5f8a466efe79c4f9e481be38dc1a177829a7115f91fc541b49e551759/django-facebook-posts-0.1.11.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "82427dc5c5e03d18d5bb1dbc1a453e83", "sha256": "fffa6ae11d1572e24092fc31560accacff44e1b5f167f8d9366029905e621fb3" }, "downloads": -1, "filename": "django-facebook-posts-0.1.12.tar.gz", "has_sig": false, "md5_digest": "82427dc5c5e03d18d5bb1dbc1a453e83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48152, "upload_time": "2014-10-10T20:28:39", "url": "https://files.pythonhosted.org/packages/c2/f1/1b21e192c37cec52f568d3059e19829e10624d9593cf984f444dcc01e148/django-facebook-posts-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "9541e4aff7209c5019134d093532bcec", "sha256": "029f8aa489d5b3b21efc0cd5da7166fc720174ab33523c3cec4301d991711dde" }, "downloads": -1, "filename": "django-facebook-posts-0.1.13.tar.gz", "has_sig": false, "md5_digest": "9541e4aff7209c5019134d093532bcec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48422, "upload_time": "2014-10-24T15:52:20", "url": "https://files.pythonhosted.org/packages/aa/17/97871b46febc47382180e906d37cf9e8f2f95e1b396bae8a71da16f16b11/django-facebook-posts-0.1.13.tar.gz" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "6d97f2720dbbb780e7397776e46b2a2f", "sha256": "63c86342ffc2a26d0c197c94bca91a050c0184fbda03b368da616c23749a7136" }, "downloads": -1, "filename": "django-facebook-posts-0.1.14.tar.gz", "has_sig": false, "md5_digest": "6d97f2720dbbb780e7397776e46b2a2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48278, "upload_time": "2014-11-13T12:35:06", "url": "https://files.pythonhosted.org/packages/04/5c/ea8826129b8cbc205c87aa8d78f616f3ea4bf1ad9b47b20c88c5366bb572/django-facebook-posts-0.1.14.tar.gz" } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "1f2b0b04c01085c33f7d847e7440fffe", "sha256": "41dc4c39f55a5692f2551691f865761360022986c6642599a03350d534043321" }, "downloads": -1, "filename": "django-facebook-posts-0.1.15.tar.gz", "has_sig": false, "md5_digest": "1f2b0b04c01085c33f7d847e7440fffe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48572, "upload_time": "2014-11-15T16:11:26", "url": "https://files.pythonhosted.org/packages/d6/f8/43e1e04b96dee73480a686c0a9755e742ca4a9991cab2c9cbc8871756fdf/django-facebook-posts-0.1.15.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "b099bc095b3a2611966f786241ee1fa8", "sha256": "aa862168e57aba309234a4e0007fb740af1c62baea86a2434e1e04553553315b" }, "downloads": -1, "filename": "django-facebook-posts-0.1.2.tar.gz", "has_sig": false, "md5_digest": "b099bc095b3a2611966f786241ee1fa8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33047, "upload_time": "2013-04-29T22:22:18", "url": "https://files.pythonhosted.org/packages/4c/1b/c507df7bb8f3d093f85c829645d02dc48c3dda1eb2d4078ae7031b9f92ce/django-facebook-posts-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "6feb6320721a87ed16116f89b078c155", "sha256": "3b9c41298bc9fce45c68b251c794fe9bc0a688dc583211a2507fe95bde1eac80" }, "downloads": -1, "filename": "django-facebook-posts-0.1.3.tar.gz", "has_sig": false, "md5_digest": "6feb6320721a87ed16116f89b078c155", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35615, "upload_time": "2013-10-02T14:26:55", "url": "https://files.pythonhosted.org/packages/2d/b0/ad09c94a23bcb01cfa0ff6373d9b0f2ab3cc0c1b146cb5718711ee44fca3/django-facebook-posts-0.1.3.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "d3ce13c3ba3496578b14cf3ed2001121", "sha256": "406e553704cf866cfde0323b30019230d105f018ca264cf097df3efe5079a550" }, "downloads": -1, "filename": "django-facebook-posts-0.1.5.tar.gz", "has_sig": false, "md5_digest": "d3ce13c3ba3496578b14cf3ed2001121", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36964, "upload_time": "2013-10-03T16:22:37", "url": "https://files.pythonhosted.org/packages/c9/44/6e1a9c0abc35f0c2bdd1985498f1811730d1f8e2e009bb8082e0bf76f6f3/django-facebook-posts-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "43b9ccce9b2e8db00af473b618fdc206", "sha256": "dd6a606da92db26b28e289069f20c3a8535dea70bcc63ea861e35c42484f25bb" }, "downloads": -1, "filename": "django-facebook-posts-0.1.6.tar.gz", "has_sig": false, "md5_digest": "43b9ccce9b2e8db00af473b618fdc206", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37958, "upload_time": "2014-02-12T11:56:17", "url": "https://files.pythonhosted.org/packages/66/73/e91a46e6699e818d6bb1f2dbb03feb3c7045d224231cdfa501c0408f9e99/django-facebook-posts-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "e379e7d29a322ac3e1eb941ffb774fe8", "sha256": "8869a25fae07ceb5d7159781c6e23eb762f7d94f534bd6fe402bfa55caae852b" }, "downloads": -1, "filename": "django-facebook-posts-0.1.7.tar.gz", "has_sig": false, "md5_digest": "e379e7d29a322ac3e1eb941ffb774fe8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38619, "upload_time": "2014-03-22T16:59:17", "url": "https://files.pythonhosted.org/packages/82/67/b8ba42961e8bdafaf42194a8b851d9f9546cffb3c18ce133f9cd4c94785d/django-facebook-posts-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "38681b8df1bd2afe81a924c3be72434e", "sha256": "3ab7d4641947a5106e3022086ec950f34a5c7c54d09a743d418aa1a72599c707" }, "downloads": -1, "filename": "django-facebook-posts-0.1.8.tar.gz", "has_sig": false, "md5_digest": "38681b8df1bd2afe81a924c3be72434e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39032, "upload_time": "2014-03-22T18:18:38", "url": "https://files.pythonhosted.org/packages/07/6f/7ab6b318c07f91720b203fef9f0f49568e8d0254efa58605c3914ce8522b/django-facebook-posts-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "e40db0e6047282714d81308bef046b80", "sha256": "b69d711392373a5661cabeebc1e38baa48246d60e9549d0a8d7b14030c1b781e" }, "downloads": -1, "filename": "django-facebook-posts-0.1.9.tar.gz", "has_sig": false, "md5_digest": "e40db0e6047282714d81308bef046b80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38712, "upload_time": "2014-04-07T08:55:13", "url": "https://files.pythonhosted.org/packages/73/45/bc152dc20efa3469d5310cbe23a71f442373850e543011f79c0bd43b3ce5/django-facebook-posts-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "c3deba31e461ae1a55d69f78974afb35", "sha256": "fc6af0abf4db73af27c6f923611ab837bfb71ffe4f02e7f41f68679c93538de2" }, "downloads": -1, "filename": "django-facebook-posts-0.2.0.tar.gz", "has_sig": false, "md5_digest": "c3deba31e461ae1a55d69f78974afb35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48608, "upload_time": "2014-11-19T14:13:01", "url": "https://files.pythonhosted.org/packages/08/8a/3d86a3e2f147c536e6f4252cfcc8352cde48f551bd8b1cfe19dd1fe3a901/django-facebook-posts-0.2.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "d5ccd406a876bf87f933b46f05ba99ce", "sha256": "e2c5b0b81e2d3f3cdec2c22917fcb55fdad9c259276fcd250043357a4dd8ef53" }, "downloads": -1, "filename": "django-facebook-posts-0.3.1.tar.gz", "has_sig": false, "md5_digest": "d5ccd406a876bf87f933b46f05ba99ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47742, "upload_time": "2014-12-04T10:52:05", "url": "https://files.pythonhosted.org/packages/df/03/1ba86bd0889eb5aea677a2d348eac9126c0336d8001b2f777ab458e38087/django-facebook-posts-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "df83f1f7d6e908049affbe767ddc9e08", "sha256": "2abbcee651bea9da18566b8c6e4720018b5609d26c209ad9cce0c340e65d3d16" }, "downloads": -1, "filename": "django-facebook-posts-0.3.2.tar.gz", "has_sig": false, "md5_digest": "df83f1f7d6e908049affbe767ddc9e08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49021, "upload_time": "2014-12-08T17:16:34", "url": "https://files.pythonhosted.org/packages/4e/90/01c74d4dbfc0ff18d9cb52c63474b48363bba5a4a1e306855ca5051e3ff2/django-facebook-posts-0.3.2.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "436f7d1737c1977953d420988f242f11", "sha256": "1d7395924262fa90b3f08d88346be50dad32a5a73d9b16c6dc6f9767b8d8c9ab" }, "downloads": -1, "filename": "django-facebook-posts-0.4.0.tar.gz", "has_sig": false, "md5_digest": "436f7d1737c1977953d420988f242f11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49032, "upload_time": "2014-12-22T16:45:40", "url": "https://files.pythonhosted.org/packages/9e/bf/10a4cf478169dc38de16eef33907d26235624a4778476b09ce4bd94ea28b/django-facebook-posts-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "99093cfb978327d6673f6234172faf38", "sha256": "cf8dbb5b607f4bf99049fa145c6fde1cf77f4abc7f959b9520f468933862c7dc" }, "downloads": -1, "filename": "django-facebook-posts-0.4.1.tar.gz", "has_sig": false, "md5_digest": "99093cfb978327d6673f6234172faf38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49097, "upload_time": "2015-01-07T09:55:13", "url": "https://files.pythonhosted.org/packages/95/ef/f5a012653f4d18f8173f840d5baec559e41d0b6f0c8d162f65ceec2cc0ba/django-facebook-posts-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "4083870f325ca51af63688eb964d0705", "sha256": "4fc7254acce4dc8f8bc249fc596b8b0a6e0643632c997fa2eed135ae94a767b9" }, "downloads": -1, "filename": "django-facebook-posts-0.4.2.tar.gz", "has_sig": false, "md5_digest": "4083870f325ca51af63688eb964d0705", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29701, "upload_time": "2015-02-19T09:15:11", "url": "https://files.pythonhosted.org/packages/04/fe/75f5b8f04e977c77dd1e426930ba96e2c837a3ec733d5629883fc1a1e82d/django-facebook-posts-0.4.2.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "db15c9454776c649bb617211598d33c9", "sha256": "caaad89dd5a7e96df3d2a9ab4e9473beef599ff9708283b344473f65e399c61a" }, "downloads": -1, "filename": "django-facebook-posts-0.5.0.tar.gz", "has_sig": false, "md5_digest": "db15c9454776c649bb617211598d33c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43197, "upload_time": "2015-04-13T10:26:35", "url": "https://files.pythonhosted.org/packages/29/cf/baa8beb878bc6a2fbd4122405a4b99910e626e56809a4e6ed668773bb6d7/django-facebook-posts-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "1452be9836df8c151662e21b78d9ca18", "sha256": "c16199ce090aeafadda31ab3d7e16407ecf8a7135983a46e22574980429e2588" }, "downloads": -1, "filename": "django-facebook-posts-0.6.0.tar.gz", "has_sig": false, "md5_digest": "1452be9836df8c151662e21b78d9ca18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45271, "upload_time": "2015-10-06T17:58:15", "url": "https://files.pythonhosted.org/packages/d1/13/b6abb0483847b97b5c43eeea8c3b34623d924d88aa87cd4d875ff7050994/django-facebook-posts-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "42eed46becb2b17169c0a8d9a71c0f93", "sha256": "a05041ad9cf2356362928734347bc639a15ba0e6d9971c8bd1e2eea195996dfc" }, "downloads": -1, "filename": "django-facebook-posts-0.6.1.tar.gz", "has_sig": false, "md5_digest": "42eed46becb2b17169c0a8d9a71c0f93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35395, "upload_time": "2015-11-29T14:24:39", "url": "https://files.pythonhosted.org/packages/11/69/0a18afd278fa354498095f299ffcaa83ef1a5b14e4951471dc3b6d9400a7/django-facebook-posts-0.6.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "42eed46becb2b17169c0a8d9a71c0f93", "sha256": "a05041ad9cf2356362928734347bc639a15ba0e6d9971c8bd1e2eea195996dfc" }, "downloads": -1, "filename": "django-facebook-posts-0.6.1.tar.gz", "has_sig": false, "md5_digest": "42eed46becb2b17169c0a8d9a71c0f93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35395, "upload_time": "2015-11-29T14:24:39", "url": "https://files.pythonhosted.org/packages/11/69/0a18afd278fa354498095f299ffcaa83ef1a5b14e4951471dc3b6d9400a7/django-facebook-posts-0.6.1.tar.gz" } ] }