{ "info": { "author": "Rocky Burt", "author_email": "rocky@serverzen.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. -*-rst-*-\n\n=======\nClueBin\n=======\n\n\nOverview\n========\n\nClueBin is a pastebin application with colour-syntax support for most major\ntext formats. It is implemented as a WSGI application and easily integrates with\nWSGI stacks. The data backend is configurable and currently there are datastores\nfor Google App Engine (BigTable) and SQLAlchemy (SQLite by default).\n\nTest the live version at http://cluebin.appspot.com\n\n\nDependencies\n============\n\n * (required) Python 2.5+\n\n * (required) Pygments 0.9+\n\n * (required) WebOb 0.9.1+\n\n * (optional) SQLAlchemy: only required if you want SQL-based datastore support\n\n * (optional) Google Apps SDK: only required if deployed on the Google App\n Engine\n\n\nInstallation\n============\n\nClueBin was designed to be installed using standard easy_install methods. A\nsimple \"easy_install ClueBin\" should suffice. This should generate a new\nscript called ``cluebin``.\n\n\nUsage\n=====\n\nClueBin was designed to be a pluggable WSGI app. The factory for this app is\n``cluebin.pastebin.make_app``.\n\nTo setup ClueBin within it's own constrained directory try using virtualenv\nfrom http://pypi.python.org/pypi/virtualenv/1.0 Once virtualenv is installed\ndo this::\n\n $ virtualenv cluebinenv\n $ cd cluebinenv\n $ ./bin/easy_install SQLAlchemy\n $ ./bin/easy_install ClueBin\n\nTo use ClueBin in stand-alone mode, run the ``cluebin`` script. See the help\nusage for standard information.\n::\n\n $ ./bin/cluebin -h\n\nHere is an example of running ClueBin against a local ``foo.db`` sqlite db.\nMake sure your local PYTHONPATH includes both SQLAlchemy and python SQLite\nbindings.\n::\n\n $ ./bin/cluebin -s cluebin.sqldata.SqlPasteDataStore sqlite:///foo.db True\n\nThe ``-s`` option takes some random datastore factory name. All extra arguments\nare passed as arguments to the factory call. For the sql based datastore\nthe current arguments are \"db-uri\" and an optional second argument to determine\nif the base schema should be auto-created.\n\n\nCredits\n=======\n\n * Rocky Burt (maintainer) - rocky AT serverzen DOT com\n\n * Nate Aune - natea AT jazkarta DOT com\n.. -*-rst-*-\n\n===============\nClueBin History\n===============\n\nv0.2.3 (2008-07-07)\n===================\n\n * Removed top dependency requirement for Pygments and Webob\n\n\nv0.2.2 (2008-05-17)\n===================\n\n * Fixed up ordering of retrieved posts to be by date descending\n\n * Added more tests\n\n * Fixed #2: last used username is now being retrieved from cookie\n\n\nv0.2.1 (2008-05-15)\n===================\n\n * Did minor refactoring and added more tests (new utils module)\n\n\nv0.2 (2008-05-07)\n=================\n\n * Added cmd-line execution mode for cluebin.pastebin so that by default\n it will serve a local http server with the pastebin app\n\n * Now has sql support in addition to google support via sqlalchemy\n\n * Added line numbers for pastes\n\n * Changed google data usage of 'paste' from StringProperty to TextProperty\n for data of limitless size\n\n * Language/lexer selection is now available (don't have to use auto-detection)\n\n * Stores last-used language and name in cookies\n\n\nv0.1 (2008-05-03)\n=================\n\n * got Google BigTable backend working", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "UNKNOWN", "keywords": "", "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "ClueBin", "package_url": "https://pypi.org/project/ClueBin/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/ClueBin/", "project_urls": { "Download": "UNKNOWN", "Homepage": "UNKNOWN" }, "release_url": "https://pypi.org/project/ClueBin/0.2.3/", "requires_dist": null, "requires_python": null, "summary": "Pastebin application", "version": "0.2.3" }, "last_serial": 783960, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "4bd44544e3807ebe205de915e3becb77", "sha256": "4aad6a5283d664fc556f078a3e95ca4e5e6016f6fa97ce25345610f1bd32193c" }, "downloads": -1, "filename": "ClueBin-0.1-py2.5.egg", "has_sig": false, "md5_digest": "4bd44544e3807ebe205de915e3becb77", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 6580, "upload_time": "2008-05-03T16:17:20", "url": "https://files.pythonhosted.org/packages/ea/b9/88eb33ff8f3cca855f3ae08d2e9b0d5dc44a63a495cf425ef800ced9a154/ClueBin-0.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "8cf6803730fa59c22c9992107eaae0c2", "sha256": "26be9d09bfe9c0020a8291f2b2331a80f531f4c2d2c4a5bc497ec7787fe21621" }, "downloads": -1, "filename": "ClueBin-0.1.tar.gz", "has_sig": false, "md5_digest": "8cf6803730fa59c22c9992107eaae0c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3062, "upload_time": "2008-05-03T16:17:20", "url": "https://files.pythonhosted.org/packages/07/16/90d73cc3e7c46ee68ccc132b8471061757a2ed9f6162f78c602b815f5a42/ClueBin-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "5c205f12717b3fba5412938ae551c2e3", "sha256": "32d91def3a50f05b7d7a74c261aecb5eb21c2d721470d95d151c9e9b614e9f03" }, "downloads": -1, "filename": "ClueBin-0.2-py2.5.egg", "has_sig": false, "md5_digest": "5c205f12717b3fba5412938ae551c2e3", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 16684, "upload_time": "2008-05-07T18:50:24", "url": "https://files.pythonhosted.org/packages/44/2b/9e1092ab7998f6112e2fb732970cd8e2dd97c3abc0b2cf7a215571c9f65f/ClueBin-0.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "9f3ad2ef186050a259fb4e10032f3f84", "sha256": "8e8373e5f78ac595bdb9cd8525b57691901333e13c3f7cc2c59735cfb313aed7" }, "downloads": -1, "filename": "ClueBin-0.2.tar.gz", "has_sig": false, "md5_digest": "9f3ad2ef186050a259fb4e10032f3f84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11125, "upload_time": "2008-05-07T18:50:25", "url": "https://files.pythonhosted.org/packages/80/73/59e47f878499166f2bc49d6d39bdc23b537e7119e8d78fab2ea09aaa90b2/ClueBin-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "df0c821b92055f18d335c5f27cc2ffc5", "sha256": "b2ec205262217531a0b5c2db13dabbef22e36250e08951b5e9ea150148930465" }, "downloads": -1, "filename": "ClueBin-0.2.1-py2.5.egg", "has_sig": false, "md5_digest": "df0c821b92055f18d335c5f27cc2ffc5", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 18372, "upload_time": "2008-05-15T17:54:22", "url": "https://files.pythonhosted.org/packages/3b/b7/8c4df57c4a415d6dbfcf8f40b43a1870594a68537d8658f8f72ed2633427/ClueBin-0.2.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "ef33df0bf9d5b58a92b5d85f2294ffb4", "sha256": "412abf26622cb9941e2cc2c64c77995a6e29fa227abdbc676e78142a705c5dad" }, "downloads": -1, "filename": "ClueBin-0.2.1.tar.gz", "has_sig": false, "md5_digest": "ef33df0bf9d5b58a92b5d85f2294ffb4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11724, "upload_time": "2008-05-15T17:54:23", "url": "https://files.pythonhosted.org/packages/6d/d1/d072f0d8e07137f903d843debae6baf1019c080ed42c25c9307049987545/ClueBin-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "ce4f32a3435456552002c19eff6b18aa", "sha256": "8de1a0f1443bb4bbfe10c531d333bcad673112d253861fc4e25eab25070975ec" }, "downloads": -1, "filename": "ClueBin-0.2.2-py2.5.egg", "has_sig": false, "md5_digest": "ce4f32a3435456552002c19eff6b18aa", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 19041, "upload_time": "2008-05-17T15:04:59", "url": "https://files.pythonhosted.org/packages/d2/80/6e49496022a83bef7523cbe8c1cb9559dc7111e9daa40f01a4c675d0c184/ClueBin-0.2.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "dc3847f8428e6511fb31c2b891150ed9", "sha256": "33f3070170fe4d4891b2ce9f7ded4b61125b29557939afb451b59183868c1b5d" }, "downloads": -1, "filename": "ClueBin-0.2.2.tar.gz", "has_sig": false, "md5_digest": "dc3847f8428e6511fb31c2b891150ed9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12056, "upload_time": "2008-05-17T15:05:00", "url": "https://files.pythonhosted.org/packages/22/f4/32831460f7280c90eb4b843bbb92cdfba6986c07b06bc1f90c8d87d27fc9/ClueBin-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "c6b2d24d0e0fea1e10aa59a628ed456d", "sha256": "58b9473eacb9a441fc293b9bc3d7d1280fcf77a3471e9ffdae82253f7bf81dd6" }, "downloads": -1, "filename": "ClueBin-0.2.3-py2.5.egg", "has_sig": false, "md5_digest": "c6b2d24d0e0fea1e10aa59a628ed456d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 19064, "upload_time": "2008-07-07T15:37:14", "url": "https://files.pythonhosted.org/packages/6e/86/0e516988cc0f54ba5dabc88fd87ccaa103719459790e1e582c08c3807c5d/ClueBin-0.2.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "3d55fd9f0f1e6dc54ffb07cae7e46407", "sha256": "17c99210c078daef5e178461970641c621ae30ae94c076b600aa144f3ba5d1c5" }, "downloads": -1, "filename": "ClueBin-0.2.3.tar.gz", "has_sig": false, "md5_digest": "3d55fd9f0f1e6dc54ffb07cae7e46407", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12100, "upload_time": "2008-07-07T15:37:15", "url": "https://files.pythonhosted.org/packages/8a/86/45cd824296cb12fe75d4945f122f0299b53ab0e2be12da149d863e6b97c4/ClueBin-0.2.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c6b2d24d0e0fea1e10aa59a628ed456d", "sha256": "58b9473eacb9a441fc293b9bc3d7d1280fcf77a3471e9ffdae82253f7bf81dd6" }, "downloads": -1, "filename": "ClueBin-0.2.3-py2.5.egg", "has_sig": false, "md5_digest": "c6b2d24d0e0fea1e10aa59a628ed456d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 19064, "upload_time": "2008-07-07T15:37:14", "url": "https://files.pythonhosted.org/packages/6e/86/0e516988cc0f54ba5dabc88fd87ccaa103719459790e1e582c08c3807c5d/ClueBin-0.2.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "3d55fd9f0f1e6dc54ffb07cae7e46407", "sha256": "17c99210c078daef5e178461970641c621ae30ae94c076b600aa144f3ba5d1c5" }, "downloads": -1, "filename": "ClueBin-0.2.3.tar.gz", "has_sig": false, "md5_digest": "3d55fd9f0f1e6dc54ffb07cae7e46407", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12100, "upload_time": "2008-07-07T15:37:15", "url": "https://files.pythonhosted.org/packages/8a/86/45cd824296cb12fe75d4945f122f0299b53ab0e2be12da149d863e6b97c4/ClueBin-0.2.3.tar.gz" } ] }