{ "info": { "author": "Zope Foundation and Contributors", "author_email": "bluebream@zope.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Zope3", "Intended Audience :: Developers", "License :: OSI Approved :: Zope Public License", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI" ], "description": ".. contents:: Table of Contents\n :depth: 2\n\nBlueBream\n*********\n\nIntroduction\n------------\n\n`BlueBream `_ -- formerly known as **Zope\n3** -- is a web framework written in the Python programming language.\n\nBlueBream is free/open source software, owned by the `Zope Foundation\n`_, licensed under the `Zope Public\nLicense `_ (BSD\nlike, GPL compatible license).\n\nFeatures\n--------\n\nHere are the features distinguishing BlueBream from other Python web frameworks:\n\n- BlueBream is built on top of the `Zope Toolkit\n `_ (ZTK), which has many years of\n experience proving it meets the demanding requirements for stable,\n scalable software.\n\n- BlueBream uses the powerful and familiar Buildout_ building system written in\n Python.\n \n- BlueBream employs the Zope Object Database ZODB_, a transactional\n object database, providing extremely powerful and easy to use\n persistence.\n \n- BlueBream registers components with Zope Component Markup Language\n (`ZCML `_), an XML\n based configuration language, providing limitless flexibility.\n\n- BlueBream features the `Zope Component Architecture\n `_ (ZCA) which implements\n *Separation of concerns* to create highly cohesive reusable\n components (zope.component_).\n\n- BlueBream implements the `WSGI` specification (`Web Server Gateway Interface\n `_) with the help of `PasteDeploy\n `_.\n\n- BlueBream includes a number of well tested components to implement\n common activities. A few of these are:\n \n - zope.publisher_ publishes Python objects on the web, emphasizing\n `WSGI `_ compatibility\n\n - zope.security_ provides a generic mechanism for pluggable \n security policies\n\n - zope.testing_ and zope.testbrowser_ offer unit and functional testing \n frameworks \n\n - zope.pagetemplate_ is an XHTML-compliant language for developing\n templates\n\n - zope.schema_ is a schema engine to describe your data models\n\n - zope.formlib_ is a tool for automatically generating forms from your schemas\n\n.. _Buildout: http://www.buildout.org\n.. _ZODB: http://www.zodb.org\n.. _zope.component: http://pypi.python.org/pypi/zope.component\n.. _zope.publisher: http://pypi.python.org/pypi/zope.publisher\n.. _zope.security: http://pypi.python.org/pypi/zope.security\n.. _zope.testing: http://pypi.python.org/pypi/zope.testing\n.. _zope.testbrowser: http://pypi.python.org/pypi/zope.testbrowser\n.. _zope.pagetemplate: http://pypi.python.org/pypi/zope.pagetemplate\n.. _zope.schema: http://pypi.python.org/pypi/zope.schema\n.. _zope.formlib: http://pypi.python.org/pypi/zope.formlib\n\nInstallation\n------------\n\nIf you have installed `setuptools\n`_ or `distribute\n`_ an ``easy_install``\ncommand will be available. Then, you can install BlueBream using\n``easy_install`` command like this::\n\n $ easy_install bluebream\n\nInternet access to `PyPI `_ is required\nto perform installation of BlueBream.\n\nThe ``bluebream`` distribution provides a quick project\ncreation tool based on PasteScript templates. Once BlueBream is installed,\nrun ``paster`` command to create the project directory structure.\nThe ``create`` sub-command provided by paster will show a wizard to\ncreate the project directory structure.\n\n::\n\n $ paster create -t bluebream\n\nThis will bring a wizard asking details about your new project. If you provide\na package name and version number, you will get a working application which can\nbe modified further. The project name will be used as the egg name. You can\nalso change the values provided later.\n\nThe project name can be given as a command line argument::\n\n $ paster create -t bluebream sampleproject\n\nYou can provide a dotted name so that the package be created in a namespace,\nwith any number of levels, such as \"sample.main\" or \"sample.app.main\". It will\nresult in a nested structure allowing you to split large projects into several\npackages.\n\nIf you provide an option from the command line, it will not be\nprompted by the wizard. The other variables are given below, you can\ngive the values from the command line, if required:\n\n- ``interpreter`` -- Name of the custom Python interpreter\n\n- ``bluebream`` -- The version of BlueBream\n\n- ``version`` -- The version of your project (eg:- 0.1)\n\n- ``description`` -- One-line description of the package\n\n- ``long_description`` -- Multi-line description (in reStructuredText)\n\n- ``keywords`` -- Space-separated keywords/tags\n\n- ``author`` -- Author name\n\n- ``author_email`` -- Author email\n\n- ``url`` -- URL of the homepage\n\n- ``license_name`` -- License name\n\nIf you are in a hurry, you can simply press *Enter/Return* key and\nchange the values later. But it would be a good idea, if you provide\na good name for your project.\n\nUsage\n-----\n\nThe generated package is bundled with Buildout configuration and the\nBuildout bootstrap script (``bootstrap.py``). First you need to\nbootstrap the buildout itself::\n\n $ cd sampleproject\n $ python bootstrap.py\n\nThe bootstrap script will install the ``zc.buildout`` and ``distribute``\npackages. Also, it will create the basic directory structure. Next step is\nbuilding the application. To build the application, run the buildout::\n\n $ ./bin/buidout\n\nThe buildout script will download all dependencies and setup the\nenvironment to run your application.\n\nThe most common thing you need while developing an application is\nrunning the server. BlueBream use the ``paster`` command provided by\nPasteScript to run the WSGI server. To run the server, you can pass\nthe PasteDeploy configuration file as the argument to ``serve``\nsub-command as given here::\n\n $ ./bin/paster serve debug.ini\n\nOnce you run the server, you can access it here:\nhttp://localhost:8080/ . The port number (``8080``) can be changed\nfrom the PasteDeploy configuration file (``debug.ini``).\n\nThe second most common thing must be running the test cases.\nBlueBream creates a testrunner using the ``zc.recipe.testrunner``\nBuildout recipe. You can see a ``test`` command inside the ``bin``\ndirectory. To run test cases, just run this command::\n\n $ ./bin/test\n\nSometimes you may want to get the debug shell. BlueBream provides a\nPython prompt with your application object. You can invoke the debug\nshell like this::\n\n $ ./bin/paster shell debug.ini\n\nMore about the test runner and debug shell will be explained in the\nBlueBream Manual. You can continue reading about BlueBream from the\n`documentation site `_.\n\nResources\n---------\n\n- `Website with documentation `_\n\n- `Project blog `_\n\n- The bugs and issues are tracked at `launchpad\n `_.\n\n- `BlueBream Wiki `_\n\n- `PyPI Home `_\n\n- `Twitter `_\n\n- `Mailing list `_\n\n- IRC Channel: `#bluebream at irc.freenode.net `_\n\n- `Buildbot `_\n\n- The source code is managed at `Zope reposistory\n `_. You can perform a read-only\n checkout of trunk code like this (Anonymous access)::\n\n svn co svn://svn.zope.org/repos/main/bluebream/trunk bluebream\n\n You can also `become a source code contributor (committer) after signing a\n contributor agreement\n `_\n\n You can see `more details about contributing in wiki\n `_.\n\n\nChangelog\n*********\n\n1.0 (2011-01-18)\n----------------\n\n- Include `zope.location`, `zope.keyreference`, `zope.intid` and\n `zope.contentprovider`, `zope.i18n`\n from `site.zcml` file.\n- Reorganized zcml files (for deploy, debug and testing)\n- updated to ZTK 1.0.1\n\n1.0b4 (2010-08-26)\n------------------\n\n- Change custom interpreter name: s/breampy/bbpy\n- Fixed the generated buildout and make it repeatable\n- Added the \"extends-cache\" Buildout option to cache\n the extended configuration files\n- warn the user if the project template has significant changes\n- Added empty overrides.zcml - show best practices to developers\n- updated to ZTK 1.0a3\n- Automatically find and suggest the latest *minor* version online\n- added zope.app.http registrations to get the correct unauthorized view\n\n1.0b3 (2010-07-11)\n------------------\n\n- Directly depend on the ZTK!\n- Removed the bbkit package\n- Ask the version of BlueBream at project creation\n- Automatically find and suggest the latest version online\n\n\n1.0b2 (2010-06-30)\n------------------\n\n- Include zope.error & zope.principalregistry from site.zcml\n\n1.0b1 (2010-04-27)\n------------------\n\n- Set `name` & `description` for the sample application\n- Use project name as i18n_domain in base template\n- Merge the two templates into a single one by allowing to create a\n flat or nested namespace structure, and choose the package name.\n- Enabled Distribute by default instead of Setuptools\n- Added zope.app.schema registrations to be able to register a named vocabulary\n- removed buildout templating and include two zope.conf files,\n one for deployment and one for debugging with devmode\n\n1.0a5 (2010-03-28)\n------------------\n\n- Include the sample application in the `bluebream_simple` template\n- Move the sample application provided by `bluebream` template\n to a sub-package named `welcome` similar to `bluebream_simple`\n The sample application can be easily removed.\n- The sample application object use 'zope.site.interfaces.IFolder`\n instead of `zope.container.interfaces.IContainer`\n- Include `zope.session` from `site.zcml`\n- Include `browser` namespace in `site.zcml` for convenience.\n- Added an empty `[versions]` part in `versions.cfg` with\n a recommendation to pin-down versions of other dependencies.\n- Remove `zope.app.twisted` from dependency list\n- Since BlueBream requires ZODB 3.9, FileStorage need not be\n wrapped with BlobStorage proxy to get ZODB blobs support.\n- The default ZODB blob layout should be 'bushy'\n Fix LP #543525\n- Use relative paths in etc/zope.conf Fix LP #543451\n- Specify i18n domain in ftesting.zcml Fix LP #543516\n- zope.browserresource package registration was missing\n Fix LP #541457 \n\n1.0a4 (2010-03-07)\n------------------\n\n- Added an empty PKG-INFO\n Work around fix for \"empty directory\" problem.\n (refer: LP #503301)\n\n1.0a3 (2010-03-07)\n------------------\n\n- The summary of ``bluebream_base`` template changed to:\n \"A BlueBream project, base template\"\n- Enable ``bluebream_simple`` again. Documentation is\n available here:\n http://wiki.zope.org/bluebream/AlternateProjectTemplates\n\n1.0a2 (2010-03-02)\n------------------\n\n- Use a template to display default page for the root\n folder\n- Use ``zope.formlib.form.DisplayForm`` as base class for\n views instead of ``zope.publisher.browser.BrowserView``\n- Sample application add form view name is changed from\n ``@@add`` to ``@@add_sample_app``\n- Add links to to BlueBream website & mailing list\n- Added license file\n- Improve \"Usage\" section in README.txt\n- Include ``zest.release`` to prepare release\n- Include ``bluebream_simple`` template (This will not be released\n with 1.0a2 as the documentation is not ready yet)\n- Move ``bluebream`` template code to ``bluebream_base``\n- Add static resource directory with CSS to ``bluebream_base``\n (based on ``bluebream_simple``). The new style applied to main page.\n\n1.0a1 (2010-02-06)\n------------------\n\n- Use released package distribution versions:\n http://download.zope.org/bluebream/bluebream-1.0a1.cfg\n- Include new packages to `site.zcml` template:\n\n - `zope.app.publisher.xmlrpc` (meta.zcml)\n - `zope.copypastemove`\n - `zope.app.pagetemplate`\n\n- Changed template summary into: A BlueBream project\n- Removed `Sphinx-PyPI-upload` -- no more used as the\n website is moved to http://bluebream.zope.org\n- Added `zope.traversing.browser` from site.zcml\n in the project template. Ref: http://bit.ly/80xltO\n\n0.1.9 (2010-01-13)\n------------------\n\n- LP #506879: debug shell added. Basic usage::\n\n ./bin/paster shell debug.ini\n\n0.1.8 (2010-01-12)\n------------------\n\n- Use `zope` ZCML namespace as default in configure.zcml\n- Documentation improvements\n- Create a sample application by default\n\n0.1.7 (2010-01-10)\n------------------\n\n- Update version: zope.tales = 3.5.0\n- LP #505362: Fix. Main package name is hard-coded as 'main'\n- Change 'defaultView' registration location and interface\n- LP #505413: Name of default custom Python interpreter\n should be able to customize\n\n0.1.6 (2010-01-07)\n------------------\n\n- LP #502819: Main page after a fresh installation\n- Removed ``hello`` view from template.\n- LP #502941: Add trove classifiers.\n- Mention all resources in PyPI page.\n\n0.1.5 (2010-01-07)\n------------------\n\n- LP #503388: Value of \"namespace_package\" should not be\n empty string. \n- Updated description, added promotional video.\n\n0.1.4 (2010-01-04)\n------------------\n\n- LP #503301: Work around fix for \"empty directory\" problem.\n- Change author as \"BlueBream\" team and email to zope-dev list.\n\n0.1.3 (2010-01-04)\n------------------\n\n- LP #502817: var directory and its subdirectories not exist\n- Documentation improvements: added \"Usage\" section\n\n0.1.2 (2010-01-03)\n------------------\n\n- Added functional testing support for project\n- Sphinx based documentation infrastruture improvements\n- LP #502529: Update wizard to ask all package meta to\n be updated in setup.py\n\n0.1.1 (2010-01-02)\n------------------\n\n- Fix missing package data. The 0.1.0 releases was broken.\n- Improve documentation.\n\n0.1.0 (2010-01-02)\n------------------\n\n- Initial release.\n\n\nDownload\n********", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://bluebream.zope.org", "keywords": null, "license": "ZPL", "maintainer": null, "maintainer_email": null, "name": "bluebream", "package_url": "https://pypi.org/project/bluebream/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/bluebream/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://bluebream.zope.org" }, "release_url": "https://pypi.org/project/bluebream/1.0/", "requires_dist": null, "requires_python": null, "summary": "The Zope Web Framework", "version": "1.0" }, "last_serial": 753762, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "c736b3f2e59c305e6ac7cdee3f9e805d", "sha256": "e36223f9fa8b8d0eebf56cd69959d15453ff4a9321b4ef14f8eb73f42ea700bb" }, "downloads": -1, "filename": "bluebream-0.1.0.tar.gz", "has_sig": false, "md5_digest": "c736b3f2e59c305e6ac7cdee3f9e805d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8171, "upload_time": "2010-01-02T13:18:33", "url": "https://files.pythonhosted.org/packages/d5/f0/e153307f47193812b65126e9c14e61fba8a4e8c9dfff0549074f486c2e08/bluebream-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "9198486e04fa22fa40bdfd8ac2e7aa02", "sha256": "cc21b77555574889bb8ac85058d8718d132d65f74e776cebfab5ef0ca7258873" }, "downloads": -1, "filename": "bluebream-0.1.1.tar.gz", "has_sig": false, "md5_digest": "9198486e04fa22fa40bdfd8ac2e7aa02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9083, "upload_time": "2010-01-02T15:12:33", "url": "https://files.pythonhosted.org/packages/55/ec/9fc8b0a9775b4f5060fb0561fccfabfd3337ac2759d83c6b6dec72cb7b5e/bluebream-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "55b367b75541b28bd3199b09c66d7343", "sha256": "1dc8919626ab86cb73de7e058b9cd4af01b5289a1a3127542d8b21af5c9ea2a8" }, "downloads": -1, "filename": "bluebream-0.1.2.tar.gz", "has_sig": false, "md5_digest": "55b367b75541b28bd3199b09c66d7343", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14800, "upload_time": "2010-01-03T16:26:09", "url": "https://files.pythonhosted.org/packages/0a/d9/06e98c5a329b336c007f4baec9f567fd4e0c3f019e61ed7fa5512af5298d/bluebream-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "2e587bd55abf5c8eab15d371798e6ecd", "sha256": "860f6856f3145605fd96e9b415ad98ac3cdac006fd90694cf0db8f529f171834" }, "downloads": -1, "filename": "bluebream-0.1.3.tar.gz", "has_sig": false, "md5_digest": "2e587bd55abf5c8eab15d371798e6ecd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15917, "upload_time": "2010-01-04T07:14:47", "url": "https://files.pythonhosted.org/packages/8e/08/50c839836fc57e0d4f14d61cdb17fd032e8dce7e0efab9f524d1f328f8b8/bluebream-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "b2df52c7ccb94d12c9989a819a063029", "sha256": "170df9c34e5722b2720ed4d93107e799f8eee494e80921b48fa1a9ef67296f94" }, "downloads": -1, "filename": "bluebream-0.1.4.tar.gz", "has_sig": false, "md5_digest": "b2df52c7ccb94d12c9989a819a063029", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20794, "upload_time": "2010-01-05T14:49:59", "url": "https://files.pythonhosted.org/packages/af/73/e5127ef395b5e16afc0c67861d5cb62bc3661c32d94b6e1c6da70ff730da/bluebream-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "8152c33f7cda315284bab01294501244", "sha256": "d0aad6fb9b50acce22b03f0c5f7ec3c5fcc043ec5d77f5600f15c973c7182963" }, "downloads": -1, "filename": "bluebream-0.1.5.tar.gz", "has_sig": false, "md5_digest": "8152c33f7cda315284bab01294501244", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22151, "upload_time": "2010-01-07T06:49:11", "url": "https://files.pythonhosted.org/packages/33/18/0f7be6b4c5b9cd730a5771d720716bb197e81b1d6624f1b03733011a37cf/bluebream-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "a573f36111c2410bf2222935826e88b0", "sha256": "be51447ae82d583516ac7da21d87737494c0def80e05a838ac3dcb3b66f0d1a0" }, "downloads": -1, "filename": "bluebream-0.1.6.tar.gz", "has_sig": false, "md5_digest": "a573f36111c2410bf2222935826e88b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23939, "upload_time": "2010-01-07T13:16:47", "url": "https://files.pythonhosted.org/packages/eb/c9/bbd3d91ed79d4eb6cc850979f289d7d9574d493a9e2aa7b8e447e5afb39b/bluebream-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "830862bb7fd6e311d7b96b411816f4fd", "sha256": "44d0575867926d4f490d41d4c59b0b3913c8539a3588abeba7fc7214952100d2" }, "downloads": -1, "filename": "bluebream-0.1.7.tar.gz", "has_sig": false, "md5_digest": "830862bb7fd6e311d7b96b411816f4fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46198, "upload_time": "2010-01-10T12:34:52", "url": "https://files.pythonhosted.org/packages/45/01/9cae92fd895c5909f95cd0760d979dfc8692584ad1eb22322d55fe5d528d/bluebream-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "3ddfd01f50ca8918f3185887d3f4a0b9", "sha256": "13f475d2842ce92ade2e6471d5ecf74af4bc426a6a94094e79c6a60dc7d2ec54" }, "downloads": -1, "filename": "bluebream-0.1.8.tar.gz", "has_sig": false, "md5_digest": "3ddfd01f50ca8918f3185887d3f4a0b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50323, "upload_time": "2010-01-12T06:37:56", "url": "https://files.pythonhosted.org/packages/59/d0/95cd7632ba68932cafa6ad4d42634e4ffdb070db92dbdba15940a0051f61/bluebream-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "6c5943348a100775a7a27a90f9259a76", "sha256": "8d577a09f074432924a1cacd9d08a435d8b9937aebeef1c83e5f627a1a9b3561" }, "downloads": -1, "filename": "bluebream-0.1.9.tar.gz", "has_sig": false, "md5_digest": "6c5943348a100775a7a27a90f9259a76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52627, "upload_time": "2010-01-13T14:36:05", "url": "https://files.pythonhosted.org/packages/6c/09/fd0525c9d9e5762b7f720ace8dabf49de7b972c8e862f4a9cc3975da7c03/bluebream-0.1.9.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "389c82cf372cf292942f38fe09f8d1b4", "sha256": "e9f8753d183105928487ae7a4b1158c1b30ec50fe105705aa216c9b524167067" }, "downloads": -1, "filename": "bluebream-1.0.tar.gz", "has_sig": false, "md5_digest": "389c82cf372cf292942f38fe09f8d1b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42551, "upload_time": "2011-01-18T22:57:15", "url": "https://files.pythonhosted.org/packages/07/07/d5f9ed9c8acb4a05e01ae4dce95bd591d7d1173d0f856278608d2310c74e/bluebream-1.0.tar.gz" } ], "1.0a1": [ { "comment_text": "", "digests": { "md5": "8005cae361399a14e307025c7080f363", "sha256": "510bd5621d3b907029f3616cc88f4cec5c4bad9647760a28992777fdd5407b7d" }, "downloads": -1, "filename": "bluebream-1.0a1.tar.gz", "has_sig": false, "md5_digest": "8005cae361399a14e307025c7080f363", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20830, "upload_time": "2010-02-06T04:35:23", "url": "https://files.pythonhosted.org/packages/b7/a3/c1bc4a7a3157d446c2dd0febf01bfd4213619288d902341f1958c7edd05a/bluebream-1.0a1.tar.gz" } ], "1.0a2": [ { "comment_text": "", "digests": { "md5": "7e35d1dc309fd3e14077ffff07f36702", "sha256": "9dcba15b24059de901bc3702880a46fb32e145ad192c570988947c5290b25861" }, "downloads": -1, "filename": "bluebream-1.0a2.tar.gz", "has_sig": false, "md5_digest": "7e35d1dc309fd3e14077ffff07f36702", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45305, "upload_time": "2010-03-02T04:15:14", "url": "https://files.pythonhosted.org/packages/52/ab/28d3d6f9be081601097073a399dcc863450b7cc420b1f287bf9e2fe0574b/bluebream-1.0a2.tar.gz" } ], "1.0a3": [ { "comment_text": "", "digests": { "md5": "8aa9b64290b61255f382f0b48d8e80d0", "sha256": "82144d186487b0b059d4fd12d4ba7a0f41e125260967191e5e1f459e0c8fe34f" }, "downloads": -1, "filename": "bluebream-1.0a3.tar.gz", "has_sig": false, "md5_digest": "8aa9b64290b61255f382f0b48d8e80d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45521, "upload_time": "2010-03-07T07:46:28", "url": "https://files.pythonhosted.org/packages/0f/ef/e4eb581acfd61423563beb81be7702b723c8f786781b069205bac9f6b0e1/bluebream-1.0a3.tar.gz" } ], "1.0a4": [ { "comment_text": "", "digests": { "md5": "e92a567e8d3c0cffe0a78822dc852016", "sha256": "51cc810d6ff3646600fd8cb6f4e702106c5b3464765181fe2b2175c44cccfaf6" }, "downloads": -1, "filename": "bluebream-1.0a4.tar.gz", "has_sig": false, "md5_digest": "e92a567e8d3c0cffe0a78822dc852016", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45607, "upload_time": "2010-03-07T14:53:50", "url": "https://files.pythonhosted.org/packages/bd/ef/f565f6094eefc0c262d74f92beb8ac500bd25b02af2772becf85277e34e2/bluebream-1.0a4.tar.gz" } ], "1.0a5": [ { "comment_text": "", "digests": { "md5": "c7c55b98049d7933f39ec1ecf207d4db", "sha256": "3ef8b9c41ebe7e8ae2980923368e9b6c2b3593a4a59dcf082ab7fc35f45ccb16" }, "downloads": -1, "filename": "bluebream-1.0a5.tar.gz", "has_sig": false, "md5_digest": "c7c55b98049d7933f39ec1ecf207d4db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46788, "upload_time": "2010-03-28T04:03:51", "url": "https://files.pythonhosted.org/packages/b7/8c/21fb9b03b54e04e8b068fa63058bbd2e62bbd708c7f559238bdc6cbdf68c/bluebream-1.0a5.tar.gz" } ], "1.0b1": [ { "comment_text": "", "digests": { "md5": "0a2e11b9e81fe3b608f347f41a30abd7", "sha256": "d1255ece0dd69479f4971b3f81bd15a58cbf1f0c2adb0bc441b8492f68a1dcc6" }, "downloads": -1, "filename": "bluebream-1.0b1.tar.gz", "has_sig": false, "md5_digest": "0a2e11b9e81fe3b608f347f41a30abd7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35534, "upload_time": "2010-04-27T03:52:42", "url": "https://files.pythonhosted.org/packages/67/38/b6f050817705edb613c9451232dc819bbdff7a7cee85c87881ece53c025e/bluebream-1.0b1.tar.gz" } ], "1.0b2": [ { "comment_text": "", "digests": { "md5": "9f9fcb4433a3dc55cf24a306904335b5", "sha256": "0a607874233178f2f821b055661a2e6cf14484298495e43503597c9b3d68b6ad" }, "downloads": -1, "filename": "bluebream-1.0b2.tar.gz", "has_sig": false, "md5_digest": "9f9fcb4433a3dc55cf24a306904335b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34446, "upload_time": "2010-07-02T12:54:37", "url": "https://files.pythonhosted.org/packages/15/53/18963c9369d0b91fd52dc6261829405fa0df1399d860c503533d58d2f896/bluebream-1.0b2.tar.gz" } ], "1.0b3": [ { "comment_text": "", "digests": { "md5": "c2d85ca44d9f78c361cd71fdaf962022", "sha256": "0244a956b858c595ec8e6a3312b6cafce4a29c61d420d471b2252fb5744769a5" }, "downloads": -1, "filename": "bluebream-1.0b3.tar.gz", "has_sig": false, "md5_digest": "c2d85ca44d9f78c361cd71fdaf962022", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39570, "upload_time": "2010-07-11T11:51:34", "url": "https://files.pythonhosted.org/packages/1a/f5/73d38f4cf6efb66de4d099fdb64ca1c70398c89d2c20d3a5b47e823a01d2/bluebream-1.0b3.tar.gz" } ], "1.0b4": [ { "comment_text": "", "digests": { "md5": "c3fa124eb64bda641bf11d923208696b", "sha256": "7c9ee0d8e2863d39271a2d9ff45ca3eff1cdb059a352aebfc67ce46faf59d554" }, "downloads": -1, "filename": "bluebream-1.0b4.tar.gz", "has_sig": false, "md5_digest": "c3fa124eb64bda641bf11d923208696b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41931, "upload_time": "2010-08-26T15:53:51", "url": "https://files.pythonhosted.org/packages/2f/b3/be0b307c86d171c958943cfd54f8a0ae679bf53b17e53872a909a2fcced3/bluebream-1.0b4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "389c82cf372cf292942f38fe09f8d1b4", "sha256": "e9f8753d183105928487ae7a4b1158c1b30ec50fe105705aa216c9b524167067" }, "downloads": -1, "filename": "bluebream-1.0.tar.gz", "has_sig": false, "md5_digest": "389c82cf372cf292942f38fe09f8d1b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42551, "upload_time": "2011-01-18T22:57:15", "url": "https://files.pythonhosted.org/packages/07/07/d5f9ed9c8acb4a05e01ae4dce95bd591d7d1173d0f856278608d2310c74e/bluebream-1.0.tar.gz" } ] }