{ "info": { "author": "Mithril", "author_email": "eromoe@users.noreply.github.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Object Brokering" ], "description": "# A simple queue lib base on sqlite3\r\n\r\n----------\r\n\r\nFeature:\r\n- Local disk queue base on sqlite3\r\n- Simple and easy to use\r\n\r\n\r\nUsage:\r\n\r\n```python\r\n\r\nfrom sqlqueue import Queue\r\nqueue = Queue('myqueue')\r\n\r\nprint queue.get_nowait()\r\n>>> None\r\n\r\nqueue.put('sqlqueue')\r\nqueue.put(1)\r\nqueue.put({'foo':1, 'bar':2})\r\n\r\nprint queue.get_nowait()\r\n>>> 'sqlqueue'\r\nprint queue.get_nowait()\r\n>>> 1\r\nprint queue.get_nowait()\r\n>>> {'bar': 2, 'foo': 1}\r\n\r\n```\r\n\r\n\r\nThis is a copy from [http://flask.pocoo.org/snippets/88/](http://flask.pocoo.org/snippets/88/) with little alternation\r\n\r\n\r\n\r\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/eromoe/sqlqueue", "keywords": "sql,sqlite3,local,file,queue", "license": "", "maintainer": "", "maintainer_email": "", "name": "sqlqueue", "package_url": "https://pypi.org/project/sqlqueue/", "platform": "", "project_url": "https://pypi.org/project/sqlqueue/", "project_urls": { "Homepage": "https://github.com/eromoe/sqlqueue" }, "release_url": "https://pypi.org/project/sqlqueue/1.0.2/", "requires_dist": null, "requires_python": "", "summary": "A simple queue lib base on sqlite3", "version": "1.0.2" }, "last_serial": 2866324, "releases": { "1.0.2": [ { "comment_text": "", "digests": { "md5": "21a96279bb652ac9c07010e7bfde55f1", "sha256": "a2fa52e259dd4d4fa5bc093febe3a2f6c454c48a734a4c49811cd676c9ca6570" }, "downloads": -1, "filename": "sqlqueue-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "21a96279bb652ac9c07010e7bfde55f1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2759, "upload_time": "2017-05-11T07:33:40", "url": "https://files.pythonhosted.org/packages/76/33/e5d88cff70046b7639bd5add5f366ffe96c436dbb66e8b5f3e99880e4750/sqlqueue-1.0.2-py2.py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "21a96279bb652ac9c07010e7bfde55f1", "sha256": "a2fa52e259dd4d4fa5bc093febe3a2f6c454c48a734a4c49811cd676c9ca6570" }, "downloads": -1, "filename": "sqlqueue-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "21a96279bb652ac9c07010e7bfde55f1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2759, "upload_time": "2017-05-11T07:33:40", "url": "https://files.pythonhosted.org/packages/76/33/e5d88cff70046b7639bd5add5f366ffe96c436dbb66e8b5f3e99880e4750/sqlqueue-1.0.2-py2.py3-none-any.whl" } ] }