{ "info": { "author": "Lance Edgar", "author_email": "lance@edbob.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "Environment :: Web Environment", "Environment :: Win32 (MS Windows)", "Environment :: X11 Applications", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Affero General Public License v3", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "edbob\n=====\n\nedbob is a Pythonic software framework, released under the GNU Affero General\nPublic License.\n\nIt aims to be \"environment-neutral\" in that it can assist with development for\nconsole, web, or GUI applications. Pay only for what you eat; however all of\nits functionality combined may be considered a \"full stack\" of sorts.\n\nFor more information, please see `edbob.org `_ or send email\nto `Lance Edgar `_.\n\n\nInstallation\n------------\n\nInstall the software with::\n\n $ pip install edbob\n\n\nUsage\n-----\n\nBuilt-in help can be seen with::\n\n $ edbob help\n\n\n\n0.1.2\n-----\n\n* Allow config file to prevent logging configuration from happening.\n\n\n0.1.1\n-----\n\n* Some random things required in production at MaMa Jean's...\n\n Specifically this is known to replace occurrences of e.g. ``edbob.User`` with\n a more standard (properly imported) reference to ``User``.\n\n\n0.1a29\n------\n\n* Removed ``setup.cfg`` file.\n\n* Changed some logging instances from ``INFO`` to ``DEBUG``.\n\n* Updated ``repr()`` output for model classes.\n\n\n0.1a28\n------\n\n- [bug] Secured daemon PID files. They are no longer readable or writeable\n (whoops) by anyone other than the user who owns the process.\n\n- [feature] Added ``--progress`` argument to command system.\n\n- [general] Added initial Fabric script.\n\n\n0.1a27\n------\n\n- [feature] Overhauled file monitors. Added the \"process existing\" (defaults\n to true) and \"stop on error\" (defaults to false) features to both Linux and\n Win32 file monitors. Both features may be overridden in config. The Linux\n file monitor was rewritten as an ``edbob.daemon.Daemon`` class.\n\n0.1a26\n------\n\n- [feature] Added ``StrippingFieldRenderer``.\n\n- [general] Some style tweaks.\n\n- [bug] Fixed ``graft()`` function when called with module reference.\n\n0.1a25\n------\n\n- [feature] Added \"sqlerror\" tween which, in combination with ``pyramid_tm``,\n can allow Pyramid apps to gracefully handle database server restarts. Any\n transaction which fails due to a disconnection from the server may be\n attempted more than once. The assumption is that the second attempt will\n succeed, since the underlying connection pool will have been invalidated upon\n the first failure.\n\n- [feature] Added ``PHONE_TYPE`` enumeration.\n\n- [general] Added some ``__unicode__()`` methods to database models.\n\n- [bug] Fixed CSS in the ``progress.mako`` template.\n\n- [feature] Improved the ``load_spec()`` function so that it raises an\n ``InvalidSpec`` exception if the spec doesn't contain exactly one colon.\n\n0.1a24\n------\n\n- [bug] Fixed bug where creating a new ``Role`` with the UI would use default\n permissions of the Guest role. Now the default permissions are empty.\n\n- [bug] Fixed ``User.roles`` UI so that the Guest role is never shown.\n\n0.1a23\n------\n\n- [feature] Added ``capture_output()`` function to ``win32`` module. This is a\n convenience function which works around an issue when attempting to capture\n output from a command when the calling application is a Windows GUI app which\n was launched via the Windows console (DOS terminal).\n\n- [feature] Updated ``User`` and ``Role`` management views for Pyramid apps.\n\n0.1a22\n------\n\n- [feature] Added a view which allows a user to change his/her password from\n within Pyramid web apps.\n\n- [general] Tweaked styles for form validation errors.\n\n- [general] Added convenience subclass of ``formencode.Schema``.\n\n- [general] Split CSS styles into ``base.css`` and ``layout.css``, since really\n they serve different purposes.\n\n- [feature] Added ``overwriting_move()`` convenience function.\n\n0.1a21\n------\n\n- [feature] Added the ability to specify a Mako template for use when\n generating error emails. Templates may be referenced in the config file\n using either a resource path or an absolute file path. If no template is\n specified, the plain text fallback will be used. The ``content_type`` of the\n email is also configurable (defaults to ``'text/html'`` if a Mako template is\n used; ``'text/plain'`` otherwise).\n\n0.1a20\n------\n\n- [feature] Added ability to configure path to the PID file used by file\n monitor daemons running on Linux. This was necessary to allow multiple\n daemons to run on the same machine.\n\n0.1a19\n------\n\n- [general] Added ``active_extensions`` stubs to alembic migration script\n template.\n\n- [general] Updated pyramid user views and templates. These were sorely out of\n date.\n\n0.1a18\n------\n\n- [feature] Added ``engine_from_config()`` function to ``edbob.sqlalchemy``\n module. This was done to provide awareness of the ``poolclass`` parameter to\n engine configuration.\n\n0.1a17\n------\n\n- [feature] Added ``display()`` method to ``AutocompleteView``. This allows\n overriding the display text for autocomplete results, in the event that\n ``str(result)`` isn't good enough.\n\n- [bug] Fixed ``request.has_perm()`` function so that it can check for\n permissions on the \"guest\" role, in the event a user is not logged in.\n\n0.1a16\n------\n\n- Add ``alembic/*.py`` to ``MANIFEST.in``.\n\n- Various progress tweaks.\n\n- Add ``OrderedDict`` import to ``util`` module.\n\n0.1a15\n------\n\n- Add ``alembic`` to ``db`` dependencies.\n\n- Fix alembic ``env.py`` template.\n\n0.1a14\n------\n\n- Slight overhaul of init() system; added ``edbob.init_modules()`` function.\n\n- Added ``read_service()`` method to ``AppConfigParser`` class, for use with\n Windows services.\n\n- Added generic ``Service`` class to ``edbob.win32`` module. (File monitor now\n inherits from it.)\n\n- Tweaked ``edbob.db`` initialization somewhat. (``Base.metadata`` no longer\n binds to ``edbob.db.engine``.)\n\n- Fixed guest role bug in ``edbob.db.auth.has_permission()`` function.\n\n- Added \"automagical\" enumeration support for database extensions.\n\n- Added ``EMAIL_PREFERENCE`` enum to ``contact`` database extension.\n\n- Tweaked ``edbob.pyramid.includeme()``.\n\n- Tweaked ``people`` Pyramid views.\n\n- Added ``edbob.daemon`` module.\n\n0.1a13\n------\n\n- ``edbob.pyramid.Session`` uses ``sessionmaker()`` instead of\n ``edbob.db.Session``.\n\n- ``edbob.pyramid.includeme()`` now configures ``pyramid_beaker`` directly.\n\n- ``edbob.pyramid.includeme()`` now configures auth/auth policies directly.\n\n- Pyramid progress indicator added.\n\n- ``edbob.pyramid.Session`` added to global template render context.\n\n- ``request.get_referrer()`` method added (removed ``edbob.pyramid.util``\n module).\n\n- ``request.get_setting()`` and ``request.save_setting()`` methods added.\n\n- ``Grid.column_header()`` now supports ``title`` attribute.\n\n- ``Grid.editable`` support added.\n\n- Template / style tweaks.\n\n- ``text`` argument to ``disable_button()`` JS function is now optional.\n\n- Forbidden view flash message no longer duplicated when multiple redirects\n occur.\n\n- ``CrudView`` class improved to support various workflow needs\n (e.g. post-delete procesing).\n\n- Extra renderer keyword args support added to ``GridView`` class.\n\n- ``SearchableAlchemyGridView`` class improved to support various workflow\n needs (e.g. obtaining an unsorted query).\n\n- Fixed file monitor on Linux.\n\n- Added ``pyramid_exclog`` dependency for Pyramid apps.\n\n- Added ``beaker`` and ``pyramid_exclog`` settings to scaffold INI files.\n\n- Added ``edbob.files.locking_copy()`` function.\n\n- Added file lock support to Linux file monitor.\n\n0.1a12\n------\n\n- Fix ``MANIFEST.in`` to include jQuery UI theme.\n\n0.1a11\n------\n\n- Add ``alembic`` stuff to scaffold.\n\n- Overhaul Pyramid templates and styles.\n\n- Fix ``current_time()`` in ``sqlalchemy`` module.\n\n- Improve web redirection on user logout.\n\n- Move database extension to subdir in scaffold.\n\n- Add ``BooleanSearchFilter`` class.\n\n- Overhaul CRUD form (create ``CrudView`` class).\n\n- Add ``get_referer()`` in ``pyramid.util`` module.\n\n- Overhaul file monitor Windows service.\n\n0.1a10\n------\n\n- Fix reStructuredText in changelog.\n\n0.1a9\n-----\n\n- Clean up ``edbob.init()``; fix call in Pyramid app scaffold.\n\n- Add ``grant_permission()`` function to ``edbob.db.auth``.\n\n- Overhaul ``Grid``, ``GridView`` classes in ``edbob.pyramid``.\n\n- Restructure ``edbob.pyramid.forms.formalchemy``.\n\n- Tweak Pyramid templates.\n\n- Add ``core_schema_installed()`` function to ``edbob.db.util``.\n\n- Add generic autocomplete template.\n\n- Overhaul ``edbob.time``.\n\n- Add ``contact`` database extension; moved ``Person`` to it.\n\n- Improve ``CrudView`` class.\n\n- Add ``get_user_dir()``, ``get_user_file()`` methods to ``AppConfigParser``.\n\n- Add ``DosFile`` class (for writing DOS files) to ``edbob.files``.\n\n- Add jQuery ``smoothness`` CSS to static folder.\n\n- Add ``edbob.errors`` (overrides ``sys.excepthook``).\n\n- Add debug logging to ``edbob.filemon.win32_server``; made it call\n ``sys.excepthook()`` when actions fail.\n\n0.1a8\n-----\n\n- Changed ``py-bcrypt`` requirement to ``py-bcrypt-w32`` when running on Win32.\n\n- Removed explicit ``INFO`` level from ``basic_logging()`` function.\n\n0.1a7\n-----\n\n- Tweaked logging and initialization semantics for shell command.\n\n- Added \"foo\" views and templates to Pyramid scaffold.\n\n- Added ``edbob.pyramid.forms.FieldSet.allow_continue`` attribute.\n\n- Made ``sort`` keyword optional for grids.\n\n- Added ``edbob.pyramid.views.Crud`` class.\n\n- Added ``edbob.pyramid.views.GridView`` class.\n\n- Added \"Guest\" role to auth / permissions framework.\n\n- Added ``edbob.pyramid.forms.formalchemy.AutocompleteFieldRenderer`` class.\n\n- Added ``edbob.Object.__str__()`` method.\n\n- Added ``edbob.sqlalchemy.current_time()`` function to provide UTC timestamp\n as a default field value.\n\n- Added ``pyramid_tm`` tween to Pyramid apps.\n\n- Tweaked login, object index and CRUD templates.\n\n- Added file monitor for Linux.\n\n0.1a6\n-----\n\n- Fixed MANIFEST.in file.\n\n0.1a5\n-----\n\n- Added ``edbob.csv`` module.\n\n- Tweaked logging configuration and initialization semantics.\n\n0.1a4\n-----\n\n- Fixed call to sleep() in filemon service.\n\n0.1a3\n-----\n\n- Various tweaks to Pyramid code.\n\n0.1a2\n-----\n\n- Add ``win32.send_data_to_printer()`` function.\n\n- Various tweaks to Pyramid code.\n\n0.1a1\n-----\n\n- Initial version", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://edbob.org/", "keywords": null, "license": "GNU Affero GPL v3", "maintainer": null, "maintainer_email": null, "name": "edbob", "package_url": "https://pypi.org/project/edbob/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/edbob/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://edbob.org/" }, "release_url": "https://pypi.org/project/edbob/0.1.2/", "requires_dist": null, "requires_python": null, "summary": "Pythonic Software Framework", "version": "0.1.2" }, "last_serial": 1819658, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "27c6bd40de681d1b6b39615f423e97d8", "sha256": "4d6ee2b322346d7fd05f24997f6d7138c4d1eb92f5466eb5af7a974e901826df" }, "downloads": -1, "filename": "edbob-0.1.1.tar.gz", "has_sig": false, "md5_digest": "27c6bd40de681d1b6b39615f423e97d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 316756, "upload_time": "2014-01-28T17:14:36", "url": "https://files.pythonhosted.org/packages/57/b7/4b0acfd1b47b78d58228256ecb012a585567e545135c2c1906b90cbfe753/edbob-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "864d143b928a37dd79f9db9943e8b7c8", "sha256": "0b5c93daf50163d2e701e15ce27037e7f405a38e2722771557a79bc3ee47cec4" }, "downloads": -1, "filename": "edbob-0.1.2.tar.gz", "has_sig": false, "md5_digest": "864d143b928a37dd79f9db9943e8b7c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 316816, "upload_time": "2014-04-28T21:27:54", "url": "https://files.pythonhosted.org/packages/af/80/72bf9674b64187eb1a75d46b1da02366f2562141a3b394ff392f96f930e5/edbob-0.1.2.tar.gz" } ], "0.1a1": [ { "comment_text": "", "digests": { "md5": "e28c269dfe1e305d6c09ef28e58b063f", "sha256": "31ff8559bbae1e58d4ea83e85cb03b3d88404c54689d5814d63bf92542e2f862" }, "downloads": -1, "filename": "edbob-0.1a1.zip", "has_sig": false, "md5_digest": "e28c269dfe1e305d6c09ef28e58b063f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109570, "upload_time": "2012-05-08T18:29:53", "url": "https://files.pythonhosted.org/packages/4a/fb/2839258b0558851daf62740054a8033049fc3bd5481952c7e06f0e3d5345/edbob-0.1a1.zip" } ], "0.1a1.dev": [], "0.1a10": [ { "comment_text": "", "digests": { "md5": "93ebe8f36d5035e6b1e34319c0432629", "sha256": "7869e417814d0e6c708e3b70a8f2803275dd083b651ebc10de5cb8238a926085" }, "downloads": -1, "filename": "edbob-0.1a10.zip", "has_sig": false, "md5_digest": "93ebe8f36d5035e6b1e34319c0432629", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373924, "upload_time": "2012-08-12T21:45:46", "url": "https://files.pythonhosted.org/packages/5b/c1/409d9c092868a9f25b601c8691e81e69a30cdf02f76f040544f696c8a881/edbob-0.1a10.zip" } ], "0.1a11": [ { "comment_text": "", "digests": { "md5": "c02d54be503797e735a570aa45effe40", "sha256": "2f3197b2507f050dc50fb0110471a4f661906dd5d42321b27f5f06d76a3faa80" }, "downloads": -1, "filename": "edbob-0.1a11.tar.gz", "has_sig": false, "md5_digest": "c02d54be503797e735a570aa45effe40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 291293, "upload_time": "2012-08-17T16:36:27", "url": "https://files.pythonhosted.org/packages/c6/98/d6a598f460974363e8e14574e50214d14ad953c5debe46615a46a9e58a78/edbob-0.1a11.tar.gz" } ], "0.1a12": [ { "comment_text": "", "digests": { "md5": "aeb56574d9a8bf5b183b11a07b65ee5c", "sha256": "86b2d6a8c65a2a70297a373c534e433257b34e2633bb14c2997fb3f500bc6b74" }, "downloads": -1, "filename": "edbob-0.1a12.tar.gz", "has_sig": false, "md5_digest": "aeb56574d9a8bf5b183b11a07b65ee5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305160, "upload_time": "2012-08-20T15:19:25", "url": "https://files.pythonhosted.org/packages/dc/eb/382ae87d1ef7c7608216c91a8a56ccff99039bfab21c5b20927573684cd8/edbob-0.1a12.tar.gz" } ], "0.1a13": [ { "comment_text": "", "digests": { "md5": "70c249850f6a5d078f6e5915522c7ed1", "sha256": "20f49b75a2fec81c90239f5fcec3d73ef5c9168bf5e02bf92388fab494b0bf38" }, "downloads": -1, "filename": "edbob-0.1a13.tar.gz", "has_sig": false, "md5_digest": "70c249850f6a5d078f6e5915522c7ed1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308270, "upload_time": "2012-09-06T21:18:54", "url": "https://files.pythonhosted.org/packages/d5/2d/fe3bee9d2f20ee67a2a6c9ec0c20d239c568f6965093bad5708ba113b240/edbob-0.1a13.tar.gz" } ], "0.1a14": [ { "comment_text": "", "digests": { "md5": "9d51863becef193472f2259ed7d4b2f8", "sha256": "1c2fb0ba1a63cc0afcd9256b84c12ab0f9030ba99c5e2fb3425770d07ce5dca7" }, "downloads": -1, "filename": "edbob-0.1a14.tar.gz", "has_sig": false, "md5_digest": "9d51863becef193472f2259ed7d4b2f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 311219, "upload_time": "2012-09-19T01:46:23", "url": "https://files.pythonhosted.org/packages/5f/fc/990233e63c07a99f59472702ad89066143eae72484a2726af520fc34ca62/edbob-0.1a14.tar.gz" } ], "0.1a15": [ { "comment_text": "", "digests": { "md5": "503122885d70c172a6f6356c022d50c8", "sha256": "590bd5a491fc4e5115c519aa901ab7f540c0a9b4f62dd9c6fa495764086eeb76" }, "downloads": -1, "filename": "edbob-0.1a15.tar.gz", "has_sig": false, "md5_digest": "503122885d70c172a6f6356c022d50c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 311299, "upload_time": "2012-09-22T23:52:13", "url": "https://files.pythonhosted.org/packages/02/84/5cb25993d321e7247f090000746e42a71b71fa2d540b9ee6ea45ad01ba96/edbob-0.1a15.tar.gz" } ], "0.1a16": [ { "comment_text": "", "digests": { "md5": "e0a61cef1a1df2a617b42b1489105ed6", "sha256": "a57cbce9ae535e2a414ddf9f413a19987ffd56af5d0f6e12ebf2d01315edbfa0" }, "downloads": -1, "filename": "edbob-0.1a16.tar.gz", "has_sig": false, "md5_digest": "e0a61cef1a1df2a617b42b1489105ed6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 311857, "upload_time": "2012-09-28T16:22:07", "url": "https://files.pythonhosted.org/packages/31/13/df18a67191ff8d053f6bab2abdac190af53110be91cc4c4dc4408aa1cbb9/edbob-0.1a16.tar.gz" } ], "0.1a17": [ { "comment_text": "", "digests": { "md5": "7dbc5d2a1570708ddada4e98967f3319", "sha256": "69cc8f4cef5425f88f76effbdc339e335552f94fa8b071ae52be8929eed1bd53" }, "downloads": -1, "filename": "edbob-0.1a17.tar.gz", "has_sig": false, "md5_digest": "7dbc5d2a1570708ddada4e98967f3319", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 312020, "upload_time": "2012-10-05T20:46:53", "url": "https://files.pythonhosted.org/packages/3b/93/18cb7dbeae5c33964118a19f6fe853613b02eacecb5d27212b142d547fb8/edbob-0.1a17.tar.gz" } ], "0.1a18": [ { "comment_text": "", "digests": { "md5": "ab153bd42615b748007f7af4a7d229d5", "sha256": "83dfcb105e8258bf020a80dde328f806707121a4c5750b62b6097c803b29d780" }, "downloads": -1, "filename": "edbob-0.1a18.tar.gz", "has_sig": false, "md5_digest": "ab153bd42615b748007f7af4a7d229d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 312367, "upload_time": "2012-10-08T17:50:52", "url": "https://files.pythonhosted.org/packages/a3/5a/d6bbfbe4661ac83a23b2b6109630a59951360a027104ad0774584f559a7b/edbob-0.1a18.tar.gz" } ], "0.1a19": [ { "comment_text": "", "digests": { "md5": "a47d01cdc87c08beb5c24c68413b28d0", "sha256": "6c668fcf2b0f2830e15afa8c016836f7286e9e0d98e1cf7d8141f18b5b37fbf9" }, "downloads": -1, "filename": "edbob-0.1a19.tar.gz", "has_sig": false, "md5_digest": "a47d01cdc87c08beb5c24c68413b28d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 312601, "upload_time": "2012-10-09T23:33:14", "url": "https://files.pythonhosted.org/packages/c8/1c/ac6da2b5383714063c1b442c7d90d9207ab68870a8019f4c3dbff7e35999/edbob-0.1a19.tar.gz" } ], "0.1a2": [ { "comment_text": "", "digests": { "md5": "beded4f7bc044ec918cf809c76322b50", "sha256": "1f119cd47705ac7b174d10ada0a31ade9fad06cb13b660684702435d7dfb052d" }, "downloads": -1, "filename": "edbob-0.1a2.tar.gz", "has_sig": false, "md5_digest": "beded4f7bc044ec918cf809c76322b50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67534, "upload_time": "2012-05-29T20:54:43", "url": "https://files.pythonhosted.org/packages/1f/dc/33ac13fae71724078da9c6b126ddb104b4ef6d030f4358c037f95ea25103/edbob-0.1a2.tar.gz" } ], "0.1a20": [ { "comment_text": "", "digests": { "md5": "2f46a18f5ea80ee4095ff2d06433a6f7", "sha256": "e99ac0cf7c2798ce3f4dbe00e76a8a6551cb45cd69bb502abd3b7076a846e1e9" }, "downloads": -1, "filename": "edbob-0.1a20.tar.gz", "has_sig": false, "md5_digest": "2f46a18f5ea80ee4095ff2d06433a6f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 313301, "upload_time": "2012-10-26T17:25:55", "url": "https://files.pythonhosted.org/packages/81/52/c706cf6360a06510c8365fd5ee9f460cca120b868e9750f8042535b5bbb3/edbob-0.1a20.tar.gz" } ], "0.1a21": [ { "comment_text": "", "digests": { "md5": "795c89cab7f7022f2eca169f0024e6ad", "sha256": "036e71d6334fe8198017050262d6d15ea4fd095874864d9f6971084878817fe5" }, "downloads": -1, "filename": "edbob-0.1a21.tar.gz", "has_sig": false, "md5_digest": "795c89cab7f7022f2eca169f0024e6ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 314117, "upload_time": "2012-11-06T16:09:57", "url": "https://files.pythonhosted.org/packages/26/2c/25c1c469400f6fa174c68a375994e83208926d037882b4f9190e735c23fb/edbob-0.1a21.tar.gz" } ], "0.1a22": [ { "comment_text": "", "digests": { "md5": "0363199b11414bae90f292558970e67c", "sha256": "bd70512500f863b8855d19bd170fc97a70a1fd5bc815d66f1568ae784d30e346" }, "downloads": -1, "filename": "edbob-0.1a22.tar.gz", "has_sig": false, "md5_digest": "0363199b11414bae90f292558970e67c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 315588, "upload_time": "2012-11-09T03:07:43", "url": "https://files.pythonhosted.org/packages/67/c4/bada13f0489b0bc749b473acdd0dc1f7897777491e54a554a9e3ad09273f/edbob-0.1a22.tar.gz" } ], "0.1a23": [ { "comment_text": "", "digests": { "md5": "d6a94915b26e2367ca15208b0671d578", "sha256": "85e310d3a7a8b225fdf93be1bb6cf4857ca65ed66063ac8099871b29c503c450" }, "downloads": -1, "filename": "edbob-0.1a23.tar.gz", "has_sig": false, "md5_digest": "d6a94915b26e2367ca15208b0671d578", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 313114, "upload_time": "2012-11-12T23:15:21", "url": "https://files.pythonhosted.org/packages/33/19/d552b23fd61f3b77a7bb41bb2f43933abb1db4a9b1343c5913d8f985a9e7/edbob-0.1a23.tar.gz" } ], "0.1a24": [ { "comment_text": "", "digests": { "md5": "6009cadc8588812d4941e04e357639d9", "sha256": "dbe3ed2580dbe9091c3c4752ce6696662494a4dc7b1f73a359d9cebea8b73ace" }, "downloads": -1, "filename": "edbob-0.1a24.tar.gz", "has_sig": false, "md5_digest": "6009cadc8588812d4941e04e357639d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 313219, "upload_time": "2012-11-13T15:56:10", "url": "https://files.pythonhosted.org/packages/4b/b9/bed05e5373d9fbcca639f8e202404ae3d00a10bbbdb0a8cf8f4e34803e87/edbob-0.1a24.tar.gz" } ], "0.1a25": [ { "comment_text": "", "digests": { "md5": "59fba6f70f7cba2f5c5e900407d2a4eb", "sha256": "dcc6fa8ce41c66e45a2bc22d5f7208973a5f6523fa904412f77bea5bcee376e0" }, "downloads": -1, "filename": "edbob-0.1a25.tar.gz", "has_sig": false, "md5_digest": "59fba6f70f7cba2f5c5e900407d2a4eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 314073, "upload_time": "2012-11-28T05:37:18", "url": "https://files.pythonhosted.org/packages/84/72/f34e97b152cb4f3a6c2360d08488ee241a972b657f8d5dcdee9a3183fef5/edbob-0.1a25.tar.gz" } ], "0.1a26": [ { "comment_text": "", "digests": { "md5": "df627add52f19e7d0a97f0c0c86cd4dc", "sha256": "4f3441cf65a2899c870019a04be8868ad3469574e7cb2ae1303db440f55a7f2c" }, "downloads": -1, "filename": "edbob-0.1a26.tar.gz", "has_sig": false, "md5_digest": "df627add52f19e7d0a97f0c0c86cd4dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 314168, "upload_time": "2013-02-13T06:16:11", "url": "https://files.pythonhosted.org/packages/9a/25/dbcdc8ea9113f6a953fde9fcf077523106a63eca1343a47fc6d6938ffde7/edbob-0.1a26.tar.gz" } ], "0.1a27": [ { "comment_text": "", "digests": { "md5": "fa5496d8bef655ec71552c8023341882", "sha256": "2eb76f3ed57d6288cad1d35ea7ed58a88bc17c0a8deca6f81c67eeec5d43e054" }, "downloads": -1, "filename": "edbob-0.1a27.tar.gz", "has_sig": false, "md5_digest": "fa5496d8bef655ec71552c8023341882", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 314768, "upload_time": "2013-02-17T17:01:17", "url": "https://files.pythonhosted.org/packages/f3/05/5adf6e4a561bebbc591de361a6957291f28a23c7ebe31c3fd8f9d95f816d/edbob-0.1a27.tar.gz" } ], "0.1a28": [ { "comment_text": "", "digests": { "md5": "047445609687a8138cd35f4351eacc4e", "sha256": "f15f81029ebb74e3b2aec8669fd9562b12e0efded705cf935a3b80003002bb22" }, "downloads": -1, "filename": "edbob-0.1a28.tar.gz", "has_sig": false, "md5_digest": "047445609687a8138cd35f4351eacc4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 314970, "upload_time": "2013-04-30T23:17:18", "url": "https://files.pythonhosted.org/packages/ff/e8/ee53de6588add6ba3b4e7eeb953757e16b1eb08c861d2bb5cf43a0376ad4/edbob-0.1a28.tar.gz" } ], "0.1a29": [ { "comment_text": "", "digests": { "md5": "a440b1f72974e40c2a8028585ae392aa", "sha256": "a3623d8f53cc7403ac18b5306d46724d5f6f3139997760f3c8c077f528889fca" }, "downloads": -1, "filename": "edbob-0.1a29.tar.gz", "has_sig": false, "md5_digest": "a440b1f72974e40c2a8028585ae392aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 315101, "upload_time": "2013-07-05T05:48:13", "url": "https://files.pythonhosted.org/packages/e3/7c/9ed82957707d4be12d5cd2804f402577ca1ac4056bed0d0d02372232d12c/edbob-0.1a29.tar.gz" } ], "0.1a3": [ { "comment_text": "", "digests": { "md5": "ef2b4146a20825f43014bd11df368ab4", "sha256": "c732fd809d9dd32197c56f5a296c13a98a0649c17aa2ca514ca867830a29213c" }, "downloads": -1, "filename": "edbob-0.1a3.tar.gz", "has_sig": false, "md5_digest": "ef2b4146a20825f43014bd11df368ab4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67771, "upload_time": "2012-06-14T21:40:36", "url": "https://files.pythonhosted.org/packages/da/17/dd47a4233cbd844d31f4349930a9c5110a937f24556b214e40d3103e6723/edbob-0.1a3.tar.gz" } ], "0.1a4": [ { "comment_text": "", "digests": { "md5": "9f5333342b039bc0724c5f214cd748a6", "sha256": "f31879f09ae03d2a768ef15df7a604249b0ae5e59e039c70a112e0f6ed1dd5f8" }, "downloads": -1, "filename": "edbob-0.1a4.tar.gz", "has_sig": false, "md5_digest": "9f5333342b039bc0724c5f214cd748a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67774, "upload_time": "2012-06-20T02:43:37", "url": "https://files.pythonhosted.org/packages/48/12/58bf82e1700dcfce3ea0e52d525fd8c98b48293e0697741b0bedb7f51233/edbob-0.1a4.tar.gz" } ], "0.1a5": [ { "comment_text": "", "digests": { "md5": "8ed862c567f5d6d343c63c555d075a16", "sha256": "87e06fcfbf1ed05f0e6c8e4e0a87d2c115044fcb133c2d7588fa90c96cd1fb39" }, "downloads": -1, "filename": "edbob-0.1a5.tar.gz", "has_sig": false, "md5_digest": "8ed862c567f5d6d343c63c555d075a16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68081, "upload_time": "2012-07-09T09:03:18", "url": "https://files.pythonhosted.org/packages/26/2a/e9b70c16404c0af1d9c702d88ff5d12bdc211edac90b07e7fd32f022eb9c/edbob-0.1a5.tar.gz" } ], "0.1a6": [ { "comment_text": "", "digests": { "md5": "eb5ac30179dc0779a364b221b3f2ab9a", "sha256": "25904d9948413bb2b7352d6f1b3a2c4c7288f3d66e893cf072cd9d18e6ec8fe7" }, "downloads": -1, "filename": "edbob-0.1a6.tar.gz", "has_sig": false, "md5_digest": "eb5ac30179dc0779a364b221b3f2ab9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 281052, "upload_time": "2012-07-09T10:31:36", "url": "https://files.pythonhosted.org/packages/8c/89/8e280a47a1e6d69fc40cb9d1ef099b1c8ee3b74a4261b375de746880b4b6/edbob-0.1a6.tar.gz" } ], "0.1a7": [ { "comment_text": "", "digests": { "md5": "c1c1c1d74628e82c0b5226f44ee09085", "sha256": "756dc4a5032f5a026f7e53e92ee75c1dd3628b2b99c6d48ebe3d2ad0167091e9" }, "downloads": -1, "filename": "edbob-0.1a7.zip", "has_sig": false, "md5_digest": "c1c1c1d74628e82c0b5226f44ee09085", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 353957, "upload_time": "2012-07-17T16:34:05", "url": "https://files.pythonhosted.org/packages/50/c0/63ccc42aa8f35cd37fc2ed36c24a922d2064e180277d60204687c9e726a4/edbob-0.1a7.zip" } ], "0.1a8": [ { "comment_text": "", "digests": { "md5": "bdb9003d09db973176b0d8335ab0a06e", "sha256": "6767f2611ff06c04140ca4cf79ddaad50fba536d27ce79b4030897ef3f9895f0" }, "downloads": -1, "filename": "edbob-0.1a8.zip", "has_sig": false, "md5_digest": "bdb9003d09db973176b0d8335ab0a06e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 353989, "upload_time": "2012-07-25T22:17:39", "url": "https://files.pythonhosted.org/packages/66/97/d1c7f9187fdefe5d8a6cb6eb91fb6a726166bb14f9e0b5c4394630ed332b/edbob-0.1a8.zip" } ], "0.1a9": [ { "comment_text": "", "digests": { "md5": "3a8d7c913ca09eb1a739414237071308", "sha256": "e74e0b9e5b05d7bf1c1ba866007cae613c280a67721994717c66bf6f83195652" }, "downloads": -1, "filename": "edbob-0.1a9.zip", "has_sig": false, "md5_digest": "3a8d7c913ca09eb1a739414237071308", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373592, "upload_time": "2012-08-12T21:13:03", "url": "https://files.pythonhosted.org/packages/4c/60/4dac826afd575ac79d65bea3c2bda59cb40ca3e5818bac2fde3aa70acde2/edbob-0.1a9.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "864d143b928a37dd79f9db9943e8b7c8", "sha256": "0b5c93daf50163d2e701e15ce27037e7f405a38e2722771557a79bc3ee47cec4" }, "downloads": -1, "filename": "edbob-0.1.2.tar.gz", "has_sig": false, "md5_digest": "864d143b928a37dd79f9db9943e8b7c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 316816, "upload_time": "2014-04-28T21:27:54", "url": "https://files.pythonhosted.org/packages/af/80/72bf9674b64187eb1a75d46b1da02366f2562141a3b394ff392f96f930e5/edbob-0.1.2.tar.gz" } ] }