{ "info": { "author": "Jens Diemer", "author_email": "django-phpBB3@jensdiemer.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Database :: Front-Ends", "Topic :: Documentation", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application" ], "description": "-------------\nDjango-phpBB3\n-------------\n\nDjango-phpBB3 provides the database models of a existing phpBB3 installation. This is usefull for all people who like to access the phpbb forum database from a django application.\nIt's not a phpBB clone or a forum!\n\nDjango-phpBB3 has also a script for migrate a phpBB3 forum into a `DjangoBB forum `_. See below.\n\nNotes:\n\n* There are a few mismatches between the origin phpBB3 Database schema and the ``models.py`` form Django-phpBB3. Because of this: Creating the phpBB3 tables via ``syncdb`` will not work with phpBB3.\n\n * phpBB3 used often ``0`` for a not set value, but we need a real ``null`` value in db (to get ``None`` back)\n\n* phpBB3 Models with composite keys are unsupported, but stored in `django_phpBB3/unsupported_models.py `_\n\nWarning:\nWrite access to the original phpBB database is not tested, yet. So it's not guaranteed that changes trough the django admin will work with phpBB3!\nSo, in the current state, you should only access 'read-only' to the origin phpBB3 data ;)\n\nPatches are welcome! Please send pull requests.\n\n----------------\nexample projects\n----------------\n\nWe add two example projects:\n\n+-------------------------------+-----------------------------------------------------------------------+\n| **`django_phpBB3_project`_** | minimal project without extra depencies |\n+-------------------------------+-----------------------------------------------------------------------+\n| **`phpBB2DjangoBB_project`_** | DjangoBB example project for use the phpBB2DjangoBB migration command |\n+-------------------------------+-----------------------------------------------------------------------+\n\n.. _django_phpBB3_project: https://github.com/jedie/django-phpBB3/tree/master/django_phpBB3_project\n.. _phpBB2DjangoBB_project: https://github.com/jedie/django-phpBB3/tree/master/phpBB2DjangoBB_project\n\n-----\nsetup\n-----\n\n::\n\n ~$ virtualenv DjangoBB_env\n ~$ cd DjangoBB_env/\n ~/DjangoBB_env$ source bin/activate\n (DjangoBB_env)~/DjangoBB_env$ pip install django-phpBB3 # Will also install Django\n\n(If default python interpreter is <2.7: Use: ``virtualenv -p python2.7 DjangoBB_env`` - see below)\n\nOr if you will use the most recent git version:\n\n::\n\n # install git read-only clone (Will also install Django):\n (DjangoBB_env)~/DjangoBB_env$ pip install -e git+git://github.com/jedie/django-phpBB3.git#egg=django-phpBB3\n\nIf you would like to test/use the DjangoBB migration install this:\n\n::\n\n (DjangoBB_env)~/DjangoBB_env$ pip install -e git+git://github.com/slav0nic/DjangoBB.git#egg=DjangoBB\n (DjangoBB_env)~/DjangoBB_env$ pip install Whoosh\n\nMaybe you want my **dev** branch of DjangoBB (More info in `My DjangoBB github wiki page `_):\n\n::\n\n (DjangoBB_env)~/DjangoBB_env$ pip install -e git+git://github.com/jedie/DjangoBB.git@dev#egg=DjangoBB\n (DjangoBB_env)~/DjangoBB_env$ pip install Whoosh\n\nlocal_settings.py example\n=========================\n\n::\n\n # database table prefix (default is: \"phpbb3_\")\n #PHPBB_TABLE_PREFIX = \"phpbb_\"\n \n DATABASES = {\n 'default': {\n 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.\n 'NAME': 'phpbb3', # Or path to database file if using sqlite3.\n 'USER': 'phpbb3', # Not used with sqlite3.\n 'PASSWORD': 'foo bar', # Not used with sqlite3.\n 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.\n 'PORT': '', # Set to empty string for default. Not used with sqlite3.\n }\n }\n \n # settings for phpBB3 migration:\n \n # filesystem path to the /files/ sub directory of the phpBB installation:\n # Set to None, if your phpBB3 forum has no attachments\n PHPBB_ATTACHMENT_PATH = \"/path/to/phpBB/files/\"\n\ninit database\n=============\n\nIf you will test the two example projects, you need to initialises the database, e.g.:\n\n::\n\n ~$ cd DjangoBB_env/\n ~/DjangoBB_env$ source bin/activate\n (DjangoBB_env)~/DjangoBB_env$ cd src/django-phpbb3/phpBB2DjangoBB_project\n (DjangoBB_env).../phpBB2DjangoBB_project$ # create local_settings.py here, see above!\n (DjangoBB_env).../phpBB2DjangoBB_project$ ./manage.py syncdb --all\n (DjangoBB_env).../phpBB2DjangoBB_project$ ./manage.py migrate --fake\n\n------------------\ntest django-phpBB3\n------------------\n\nWe added a test project for easy start in: `/django_phpBB3_project/ `_\n\nCreate a ``local_settings.py`` into ``/django_phpBB3_project/`` see example above.\n\nYou must initialises the database (see above).\n\nYou can startup a test server with, e.g:\n\n::\n\n ./manage.py runserver --traceback --insecure\n\n-----------------------------------------\nmigrate a phpBB3 installation to DjangoBB\n-----------------------------------------\n\nWe add a example project for a phpBB3 migration in: `/phpBB2DjangoBB_project/ `_\n\nThe migration from phpBB3 to DjangoBB is implement as a migration command here: `/django_phpBB3/management/commands/phpbb2djangobb.py `_ \n\nTo run the migration you can use the minimal ``phpBB2DjangoBB`` example project example.\nThis project includes the DjangoBB forum app and django-phpBB3 app. Before start, you must install the dependencies!\n\nYou must create a ``local_settings.py`` into ``/phpBB2DjangoBB_project/`` see example above.\n\n**Before you start migration:** You should check if database encoding settings are ok.\nTo check, login and check in *admin / Django_phpBB3 / **Posts*** if non-ascii characters are ok.\n\nTypical problem are: e.g. in default ubuntu/debian setup a mysql server will use ``latin-1`` !\nSo before you start, you should correct this. e.g.:\n\n::\n\n ALTER DATABASE test DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci\n\n**Make a SQL Backup before doing anything!!!**\n\nRun the migration with ``./manage.py phpbb2djangobb``, e.g:\n\n::\n\n ~$ cd DjangoBB_env/\n ~/DjangoBB_env$ source bin/activate\n (DjangoBB_env)~/DjangoBB_env$ cd src/django-phpbb3/phpBB2DjangoBB_project\n (DjangoBB_env).../phpBB2DjangoBB_project$ ./manage.py phpbb2djangobb\n\nafter migration\n===============\n\n**Important:** No phpBB forum permissions would be migrated, yet. So: Before you make a migrated Forum available to public, you must manually *hide* any *internal* forums, if exists!\nTo limit a forum in DjangoBB, e.g.:\n\n* Create a new user group in django admin panel\n\n* Create a seperate djangobb category and add the creates user group\n\n* Move *internal* forums to the new category\n\n* To give a user the permissions to the *internal* forums: Edit the user and add the created user group.\n\nYou must update the haystack search index with e.g.:\n\n::\n\n (DjangoBB_env).../phpBB2DjangoBB_project$ ./manage.py update_index --verbosity=2\n\nmore information: `http://django-haystack.readthedocs.org/en/latest/management_commands.html `_\n\nDepend on the used database you must reset sequences.\n\n::\n\n Sequences are indexes used by some database engines to track the next available number for automatically incremented fields.\n\nmore info: `https://docs.djangoproject.com/en/dev/ref/django-admin/#sqlsequencereset-appname-appname `_\n\noptions\n=======\n\ncleanup_users\n-------------\n\nAdd ``--cleanup_users=x`` to setup which users are migrate, where **x** is a number:\n\n+-------+-----------------------------------------------------------+\n| **0** | all users |\n+-------+-----------------------------------------------------------+\n| **1** | users with email addresses (skip bots) |\n+-------+-----------------------------------------------------------+\n| **2** | users with email and has a 'lastvisit' date **(default)** |\n+-------+-----------------------------------------------------------+\n| **3** | email + lastvisit and has created at least one post |\n+-------+-----------------------------------------------------------+\n\nmigration limitations\n=====================\n\nThings that would not be transfered, yet:\n\n* Forum moderators\n\n* Category groups\n\n* sort of Category / Forum would not be converted to position number\n\nHandling missing features in DjangoBB:\n\n* We transfer phpBB Users who are in the user group ``ADMINISTRATORS`` or ``GLOBAL_MODERATORS`` to all forum moderators.\n\n* *global posts* and *announcement* converted to normal sticky posts\n\n* sub forums would be flatten\n\n* *ghost moved posts* are ignored (only the moved post would be created)\n\n* ForumWatch are ignored\n\n* Guest posts would be mapped to a new \"Anonymous\" user (has unusable password and no email address). Note: guest posts are planed in DjangoBB, see: `http://support.djangobb.org/topic/98/ `_\n\nTODO:\n\n* Handle forum permissions: Now all forums will be public, after migration!\n\n* Bugfix for user post count migration - `https://github.com/jedie/django-phpBB3/issues/6 `_\n\n* migrate user avatar - `https://github.com/jedie/django-phpBB3/issues/7 `_\n\n* add a separate command for migrate phpBB private messages to django-messages (very low priority, patches are welcome)\n\nmigration - notes\n=================\n\nusername\n--------\n\nThe migration script copied the phpBB username 1:1 and doesn't cleanup anything.\nThe django forms for creating/change a user will only limit with: ``Letters, digits and @/./+/-/_ only``\nBut the model fields is a simple ``CharField``.\nA nick will be accepted in login depend on the login form you use in your project.\n\npassword\n--------\n\nWe migrate the phpBB3 passwords and add a own password hasher.\n`Django upgrade the old password `_ with the default hasher (PBKDF2) on the first login.\nFor this, it's needed to add the phpBB3 password hasher to your settings, e.g.:\n\n::\n\n PASSWORD_HASHERS = (\n 'django.contrib.auth.hashers.PBKDF2PasswordHasher',\n 'django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher',\n 'django.contrib.auth.hashers.BCryptPasswordHasher',\n 'django.contrib.auth.hashers.SHA1PasswordHasher',\n 'django.contrib.auth.hashers.MD5PasswordHasher',\n 'django.contrib.auth.hashers.CryptPasswordHasher',\n 'django_phpBB3.hashers.PhpBB3PasswordHasher',\n )\n\nmore info: `https://docs.djangoproject.com/en/1.4/topics/auth/#how-django-stores-passwords `_\n\nmigration - open questions\n==========================\n\n* Are the phpBB times in ``phpbb_posts`` in UTC oder in local time from user?\n\ntroubleshooting\n===============\n\nHTMLParseError while post migration\n-----------------------------------\n\nMaybe you used a older Python Version than 2.7.3 In older versions the ``HTMLParser`` is not so robust as in 2.7.3\nMaybe default Python interpreter is 2.6, but 2.7 is installed to, than try:\n\n::\n\n # Display the exsiting Python version:\n ~$ python --version # Default python\n Python 2.6.6\n ~$ python2.7 --version # Try if 2.7 is available\n Python 2.7.3\n \n # Create env with 2.7:\n ~$ virtualenv -p python2.7 DjangoBB_env\n\nWork-a-round if you can't create a virtualenv with a newer Python interpreter:\nset: ``settings.DJANGOBB_SMILES_SUPPORT = False``\nMore Information here: `https://github.com/jedie/django-phpBB3/issues/14 `_\n\nUnicodeEncodeError in the terminal while running migration\n----------------------------------------------------------\n\nSolution: You must set either your locale, or the \u200bPYTHONIOENCODING environment variable, according to your terminal's encoding \u2014 in most cases, utf-8.\nMore info can be found `in the comment of issues 9 `_\n\nHow to debug migration\n----------------------\n\nWe use python built-in pdb module for debug a migration traceback.\n`pudb `_ is used, if installed. To install it, run e.g.:\n\n::\n\n ~$ cd DjangoBB_env/\n ~/DjangoBB_env$ source bin/activate\n (DjangoBB_env)~/DjangoBB_env$ pip install pudb\n\n------------\nphpBB3 links\n------------\n\nHere some links for phpBB documentations:\n\n* `http://wiki.phpbb.com/Tables `_\n\n* `http://www.phpbbdoctor.com/doc_tables.php `_\n\nThe SQL schema files from phpBB can be found here:\n\n* `https://github.com/phpbb/phpbb3/tree/develop/phpBB/install/schemas `_\n\n-------\nhistory\n-------\n\n* v0.3.0 - 25.09.2012\n\n * migrate phpBB3 passwords, too and add a PASSWORD_HASHERS for this, see below.\n\n* v0.2.1 - 21.09.2012\n\n * Add \"is_staff\" flag to all \"global moderators\"\n\n * Set \"is_active\" flag depent on \"user_inactive_time\"\n\n * Add ``--only_users`` for only migrate/update users.\n\n * Use |{get_or_create| for getting the pseudo \"Anonymous\" user account\n\n* v0.2.0 - 21.09.2012\n\n * Speedup migration by disable haystack search index creation.\n\n * Bugfix: Handle not existing phpBB users -> Map to Anonymous user.\n\n * Add support for pudb debugger (optional) and fallback to pdb\n\n * Bugfix in migration: clean user signature, too.\n\n * Don't check PHPBB_ATTACHMENT_PATH if no attachments exists in phpBB3 forum.\n\n * `Avoid UnicodeEncodeError in migration output `_\n\n * Speedup user migration by stats only output\n\n * Add ``--flush_djangobb`` and ``--max_entries`` in migration command for testing.\n\n* v0.1.6 - 29.08.2012\n\n * Add more information in README\n\n * Fix unicode errors\n\n* v0.1.5 - 31.07.2012\n\n * `migrate user language, too `_.\n\n* v0.1.4 - 30.07.2012\n\n * `many bugfixes in models `_.\n\n* v0.1.3 - 27.07.2012\n\n * catch error if a post can't be migrated and continue migration\n\n * remove django_authopenid and django_messages from phpbb2djangobb project settings\n\n * nicer output while migrating with eta time\n\n* v0.1.2 - 27.07.2012\n\n * remove date from version string\n\n * add this histroy list ;)\n\n* v0.1.0 - 24.07.2012\n\n * migrate post subscriptions, too.\n\n* 23.07.2012\n\n * migrate phpBB3 file attachments, too.\n\n * bugfixes in bbcode cleanup\n\n * handle html entities in cleanup\n\n* 20.07.2012\n\n * bbcode cleanup contributed by nitely\n\n* 19.07.2012\n\n * start with phpBB3 migration command\n\n* 16.07.2012\n\n * project starts by Jens Diemer\n\n.. |{get_or_create| image:: {get_or_create\n\n-------------\nProject links\n-------------\n\n+----------+-----------------------------------------------+\n| Homepage | `https://github.com/jedie/django-phpBB3`_ |\n+----------+-----------------------------------------------+\n| PyPi | `http://pypi.python.org/pypi/django-phpBB3/`_ |\n+----------+-----------------------------------------------+\n\n.. _https://github.com/jedie/django-phpBB3: https://github.com/jedie/django-phpBB3\n.. _http://pypi.python.org/pypi/django-phpBB3/: http://pypi.python.org/pypi/django-phpBB3/\n\ndonation\n========\n\n* `Flattr this! `_\n\n* Send `Bitcoins `_ to ``1YJk2JTMyDrZ8oTHkMhTaQtRWqSgrHPiS``\n\ncontact\n=======\n\nCome into the conversation, besides the github communication features:\n\n+---------+--------------------------------------------------------+\n| Forum | `http://www.pylucid.org/en/forum/11/`_ |\n+---------+--------------------------------------------------------+\n| IRC | #pylucid on freenode.net (Yes, the PyLucid channel...) |\n+---------+--------------------------------------------------------+\n| webchat | `http://webchat.freenode.net/?channels=pylucid`_ |\n+---------+--------------------------------------------------------+\n\n.. _http://www.pylucid.org/en/forum/11/: http://www.pylucid.org/en/forum/11/\n.. _http://webchat.freenode.net/?channels=pylucid: http://webchat.freenode.net/?channels=pylucid", "description_content_type": null, "docs_url": null, "download_url": "http://pypi.python.org/pypi/django-phpBB3/", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/jedie/django-phpBB3/", "keywords": "django,forum,phpBB3,phpBB", "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "django-phpBB3", "package_url": "https://pypi.org/project/django-phpBB3/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-phpBB3/", "project_urls": { "Download": "http://pypi.python.org/pypi/django-phpBB3/", "Homepage": "https://github.com/jedie/django-phpBB3/" }, "release_url": "https://pypi.org/project/django-phpBB3/0.3.0/", "requires_dist": null, "requires_python": null, "summary": "django database models of phpBB3", "version": "0.3.0" }, "last_serial": 790287, "releases": { "0.0.1.0723": [ { "comment_text": "", "digests": { "md5": "54fc937db31d12f7136f97079c571df9", "sha256": "c1b431a0814c966e0515c35aa5c6631086bad2ae67fcd12b6f552567a323771c" }, "downloads": -1, "filename": "django-phpBB3-0.0.1.0723.tar.gz", "has_sig": false, "md5_digest": "54fc937db31d12f7136f97079c571df9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32287, "upload_time": "2012-07-23T17:32:42", "url": "https://files.pythonhosted.org/packages/94/01/21b7ff1944265a294b043985578a0b0e9ba06fe727dc3dbc1136c5c3e2b0/django-phpBB3-0.0.1.0723.tar.gz" } ], "0.1.0.0724": [ { "comment_text": "", "digests": { "md5": "b24f4e7cd6b0dceb470fbd3d41cf638b", "sha256": "2c20130a24c6334ccfedce94326b9fb044f2f2db76edfc89c90bc263068aa493" }, "downloads": -1, "filename": "django-phpBB3-0.1.0.0724.tar.gz", "has_sig": false, "md5_digest": "b24f4e7cd6b0dceb470fbd3d41cf638b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32740, "upload_time": "2012-07-24T11:06:51", "url": "https://files.pythonhosted.org/packages/90/f4/05c8ad915f5b59ebc19167e8ecd4ab00acd339eec73cba3b4d125aa4860a/django-phpBB3-0.1.0.0724.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "32bd16fe4070e52c1fd58911c3ace262", "sha256": "9cf0b95e4dcf2264e814da076048cf3f6c0ca9fe97c9b70e3a4eece8682beb51" }, "downloads": -1, "filename": "django-phpBB3-0.1.2.tar.gz", "has_sig": false, "md5_digest": "32bd16fe4070e52c1fd58911c3ace262", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32877, "upload_time": "2012-07-27T22:13:08", "url": "https://files.pythonhosted.org/packages/91/b8/29d41ad6b4241364fb2e91f2c71e1eacd0293e8667fca07dd718638cded8/django-phpBB3-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "9bd94f38f8dc05d54837b64a5e6f662a", "sha256": "f9d0eaa8391e122264aa93687b441050327f1d71ce4e03c430dc2b02e810b965" }, "downloads": -1, "filename": "django-phpBB3-0.1.3.tar.gz", "has_sig": false, "md5_digest": "9bd94f38f8dc05d54837b64a5e6f662a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33711, "upload_time": "2012-07-27T23:52:09", "url": "https://files.pythonhosted.org/packages/23/d7/08b9bfa3d37ad307c716f84fc0a4c3fe401191327f5dd1c256f9349d67bc/django-phpBB3-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "ea0923ba5489a1732fbfa5203f52528b", "sha256": "d7543259cddcedc7f5e1867cafb510c530c501f78821305ca948471551482f8a" }, "downloads": -1, "filename": "django-phpBB3-0.1.4.tar.gz", "has_sig": false, "md5_digest": "ea0923ba5489a1732fbfa5203f52528b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33670, "upload_time": "2012-07-30T18:05:42", "url": "https://files.pythonhosted.org/packages/6d/2d/db1c0f504ac205c0f391101936579f9c7641d7a864190dbe54e26d75b9d2/django-phpBB3-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "27d0d19c2b063bd7d8c1c44abf1bb296", "sha256": "1d13f8477a3d2c06f4c8ff5eb8f288e826258d9661321940e437e8615d025dd0" }, "downloads": -1, "filename": "django-phpBB3-0.1.5.tar.gz", "has_sig": false, "md5_digest": "27d0d19c2b063bd7d8c1c44abf1bb296", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34180, "upload_time": "2012-07-31T22:48:35", "url": "https://files.pythonhosted.org/packages/ec/50/d4811103f0a6c35e68c9ad711bd3386a81ed819bc3aa9a0c78688a32ff91/django-phpBB3-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "ab1dabf7fcaf7d20fd8b4d4018faca2b", "sha256": "17fa7151456653762a92f400f6e96e8598067f7a3830b905f26baff9f19fc40b" }, "downloads": -1, "filename": "django-phpBB3-0.1.6.tar.gz", "has_sig": false, "md5_digest": "ab1dabf7fcaf7d20fd8b4d4018faca2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40031, "upload_time": "2012-08-29T16:06:49", "url": "https://files.pythonhosted.org/packages/ff/b9/eeb8a37dcd45fe94f40e5596f694f311694943ee3989d5ac41733e46a00a/django-phpBB3-0.1.6.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "eda5d4f415fd27dab078297c5fe4e3ce", "sha256": "eaea4c5cb6b676d091affd0106323ca7f0693ce0b7a0d573f0e7588ad5b0b4ec" }, "downloads": -1, "filename": "django-phpBB3-0.2.0.tar.gz", "has_sig": false, "md5_digest": "eda5d4f415fd27dab078297c5fe4e3ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44929, "upload_time": "2012-09-21T10:31:58", "url": "https://files.pythonhosted.org/packages/8e/18/1a07e8a35de5400cb0f001e0ff515efd7d66003e011d615ceb2efeb7ab9c/django-phpBB3-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "daf4084ad72f6f86513dfa0a54052e88", "sha256": "ff45c9642ef61ddebc5216504dbcd20385a58a88f9ee8259391e0aa58f2b54f1" }, "downloads": -1, "filename": "django-phpBB3-0.2.1.tar.gz", "has_sig": false, "md5_digest": "daf4084ad72f6f86513dfa0a54052e88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45991, "upload_time": "2012-09-21T16:43:49", "url": "https://files.pythonhosted.org/packages/e9/17/b7dc515af6a0697184f7b05cea63421526c359087d468e4009ce382a7e55/django-phpBB3-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "049d3f15bc7995d528db342246fed9a4", "sha256": "42d392119f9fc5d80bbd1e68e814bbbb9dd1ae5a0ba3aa355226f61db085f001" }, "downloads": -1, "filename": "django-phpBB3-0.3.0.tar.gz", "has_sig": false, "md5_digest": "049d3f15bc7995d528db342246fed9a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48210, "upload_time": "2012-09-25T13:44:03", "url": "https://files.pythonhosted.org/packages/b8/f3/0ecc5301be3819576455e618e251fa923f44049e3f24a7aac72bd84dd5f0/django-phpBB3-0.3.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "049d3f15bc7995d528db342246fed9a4", "sha256": "42d392119f9fc5d80bbd1e68e814bbbb9dd1ae5a0ba3aa355226f61db085f001" }, "downloads": -1, "filename": "django-phpBB3-0.3.0.tar.gz", "has_sig": false, "md5_digest": "049d3f15bc7995d528db342246fed9a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48210, "upload_time": "2012-09-25T13:44:03", "url": "https://files.pythonhosted.org/packages/b8/f3/0ecc5301be3819576455e618e251fa923f44049e3f24a7aac72bd84dd5f0/django-phpBB3-0.3.0.tar.gz" } ] }