{
"info": {
"author": "Fairiz Azizi",
"author_email": "coderfi@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7"
],
"description": "================\nFlask Hypertable\n================\n\n\n.. image:: https://travis-ci.org/coderfi/Flask-Hypertable.png?branch=master\n :target: https://travis-ci.org/coderfi/Flask-Hypertable\n\n.. image:: https://badge.fury.io/gh/coderfi%2FFlask-Hypertable.png\n :target: http://badge.fury.io/gh/coderfi%2FFlask-Hypertable\n\n.. image:: https://coveralls.io/repos/coderfi/Flask-Hypertable/badge.png?branch=master\n :target: https://coveralls.io/r/coderfi/flask-hypertable?branch=master\n\n.. image:: https://pypip.in/d/PYPI_PKG_NAME/badge.png\n :target: https://pypi.python.org/pypi//Flask-Hypertable/\n :alt: Downloads\n\n``Flask-Hypertable`` - A Flask extension which provides connectivity to \n`Hypertable `_ over `Thrift `_.\n\n\nFeatures\n--------\n\n* ``FlaskHypertable`` ``hypertable.thrift.ThriftClient`` Flask extension.\n\n\nInstallation\n------------\n\n.. code-block:: bash\n\n pip install Flask-Hypertable\n\nOr if you *must* use easy_install:\n\n.. code-block:: bash\n\n alias easy_install=\"pip install $1\"\n easy_install Flask-Hypertable\n\n\nConfiguration\n-------------\n\nYour configuration should be declared within your Flask config.\n\n.. code-block:: python\n\n HYPERTABLE_HOST = \"localhost\"\n HYPERTABLE_PORT = 38080\n\nTo create the Hypertable instance within your application\n\n.. code-block:: python\n\n from flask import Flask\n from flask_hypertable import FlaskHypertable\n\n app = Flask(__name__)\n ht = FlaskHypertable(app) \n\nor\n\n.. code-block:: python\n\n from flask import Flask\n from flask_hypertable import FlaskHypertable\n\n ht = FlaskHypertable()\n\n def create_app():\n app = Flask(__name__)\n ht.init_app(app)\n return app\n\n\n============== ==========================================================\nHypertable 0.9.5.6 (other versions likely to work) http://hypertable.com/documentation/reference_manual/thrift_api\nThrift https://thrift.apache.org/docs/\nPython support Python 2.7\nSource https://github.com/coderfi/flask-hypertable\nDocs http://flask-hypertable.rtfd.org\nChangelog http://flask-hypertable.readthedocs.org/en/latest/history.html\nAPI http://flask-hypertable.readthedocs.org/en/latest/api.html\nIssues https://github.com/coderfi/Flask-Hypertable/issues\nTravis http://travis-ci.org/coderfi/Flask-Hypertable\nTest coverage https://coveralls.io/r/coderfi/Flask-Hypertable\npypi https://pypi.python.org/pypi/Flask-Hypertable\nOhloh https://www.ohloh.net/p/Flask-Hypertable\nLicense `BSD`_.\ngit repo .. code-block:: bash\n\n $ git clone https://github.com/coderfi/Flask-Hypertable.git\ninstall dev .. code-block:: bash\n\n $ git clone https://github.com/coderfi/Flask-Hypertable.git flask-hypertable\n $ cd ./flask-hypertable\n $ virtualenv .env\n $ source .env/bin/activate\n $ pip install -e .\ntests .. code-block:: bash\n\n $ python setup.py test\n\n or\n\n .. code-block:: bash\n\n $ tox\n\n or\n\n .. code-block:: bash\n\n $ python run-tests.py\n\n\n============== ==========================================================\n\nAbout This Project\n------------------\n\nProject started with `cookiecutter-pypackage `_.\n\n.. _BSD: http://opensource.org/licenses/BSD-3-Clause\n.. _Documentation: http://flask-hypertable.readthedocs.org/en/latest/\n.. _API: http://flask-hypertable.readthedocs.org/en/latest/api.html\n\n\n=========\nChangelog\n=========\n\nHere you can find the recent changes to Flask Hypertable.\n\n.. changelog::\n :version: dev\n :released: Ongoing\n\n .. change::\n :tags: docs\n\n Updated CHANGES.\n\n.. changelog::\n :version: 0.3.0\n :released: 2014-03-30\n\n .. change::\n :tags: project\n\n Added HYPERTABLE_TIMEOUT_MSECS option (defaults to 5000 msecs)\n Removed superflous _qo member from FlaskPooledHypertable\n FlaskPooledHypertable constructor now takes an optional ``qClass``\n override.\n Now supports ``with`` semantics.\n\n.. changelog::\n :version: 0.2.0\n :released: 2014-03-26\n\n .. change::\n :tags: project\n\n Now supports connection pooling with FlaskPooledHypertable!\n Added the 'mns' helper object in order to support managed\n\n.. changelog::\n :version: 0.1.4\n :released: 2014-03-23\n\n .. change::\n :tags: project\n\n Added Hypertable 0.9.5.6 version info to README.rst\n \n.. changelog::\n :version: 0.1.3\n :released: 2014-03-22\n\n .. change::\n :tags: project\n\n Added Hypertable license information.\n \n.. changelog::\n :version: 0.1.2\n :released: 2014-03-22\n\n .. change::\n :tags: project\n\n First commit to `github `_\n \n Docs available on `readthedocs.org `_\n \n CI available at `travis-ci.org `_\n \n Added project to `badge.fury.io `_\n \n Added project to `coveralls.io `_\n \n Added project to `oholoh.net `_\n \n.. todo:: vim: set filetype=rst:",
"description_content_type": null,
"docs_url": null,
"download_url": "UNKNOWN",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/coderfi/Flask-Hypertable",
"keywords": "Flask Hypertable",
"license": "BSD",
"maintainer": null,
"maintainer_email": null,
"name": "Flask-Hypertable",
"package_url": "https://pypi.org/project/Flask-Hypertable/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/Flask-Hypertable/",
"project_urls": {
"Download": "UNKNOWN",
"Homepage": "https://github.com/coderfi/Flask-Hypertable"
},
"release_url": "https://pypi.org/project/Flask-Hypertable/0.3.0/",
"requires_dist": null,
"requires_python": null,
"summary": "A Flask extension for Hypertable over Thrift.",
"version": "0.3.0"
},
"last_serial": 1046348,
"releases": {
"0.1.3": [
{
"comment_text": "built for Darwin-13.1.0",
"digests": {
"md5": "2bade20e5f15c8ae24941c3dfe6f3f51",
"sha256": "edff9a26d6cc708b629d24d6a66185954ce675bbc4f0f9518c21a7fd8dbdd2ee"
},
"downloads": -1,
"filename": "Flask-Hypertable-0.1.3.macosx-10.9-intel.tar.gz",
"has_sig": false,
"md5_digest": "2bade20e5f15c8ae24941c3dfe6f3f51",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 137764,
"upload_time": "2014-03-23T07:32:27",
"url": "https://files.pythonhosted.org/packages/8d/06/7b882909d10af9ada21e293b0ab164e05b8d388075213df7903ab35a7136/Flask-Hypertable-0.1.3.macosx-10.9-intel.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "2ad28a8dea4a0b961675dc5d5f316f09",
"sha256": "5a227db75c4b897de8ed715a59ed2bb9b3c1e6171ad5061666d9ea9dde547646"
},
"downloads": -1,
"filename": "Flask-Hypertable-0.1.3.tar.gz",
"has_sig": false,
"md5_digest": "2ad28a8dea4a0b961675dc5d5f316f09",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 65002,
"upload_time": "2014-03-23T07:32:24",
"url": "https://files.pythonhosted.org/packages/3e/9d/988bc0f1cb55923df6f2eb933f7b2c9c3b9835d45290b98435e5fc9d0d96/Flask-Hypertable-0.1.3.tar.gz"
}
],
"0.2.0": [
{
"comment_text": "built for Darwin-13.1.0",
"digests": {
"md5": "855aeb3fe20166bbb54e39270a9dcd1b",
"sha256": "c61b84d45a0adf566d14a8a94d0d673864abfac0d066e8255beb9afbe3305f88"
},
"downloads": -1,
"filename": "Flask-Hypertable-0.2.0.macosx-10.9-intel.tar.gz",
"has_sig": false,
"md5_digest": "855aeb3fe20166bbb54e39270a9dcd1b",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 141197,
"upload_time": "2014-03-27T04:33:44",
"url": "https://files.pythonhosted.org/packages/36/37/ddf7a486ee655198fbf06e35061130cef7334353138465f9bc97970e1c0a/Flask-Hypertable-0.2.0.macosx-10.9-intel.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "6daf1c28c8ac710c05f8361a4616a012",
"sha256": "0abc19836e5c763cfe545ff3f83722f2f582e252495dab82fa809e2b2c1807e5"
},
"downloads": -1,
"filename": "Flask-Hypertable-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "6daf1c28c8ac710c05f8361a4616a012",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 66936,
"upload_time": "2014-03-27T04:33:41",
"url": "https://files.pythonhosted.org/packages/2a/90/e44939700f7a7d832e4d1ddef1ad7f8724787672cd770ade4e9a0e3e868f/Flask-Hypertable-0.2.0.tar.gz"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "21df031a208b688a547d95e19675b1ba",
"sha256": "fc8618db7b6a43aa23a0a8c9369d1f15acd818cd2b09c3f84aa2875ff51b2aac"
},
"downloads": -1,
"filename": "Flask-Hypertable-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "21df031a208b688a547d95e19675b1ba",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 67862,
"upload_time": "2014-03-31T01:03:20",
"url": "https://files.pythonhosted.org/packages/d1/5d/c9163181fe5e6ba2395405f25a0193de47196794bfb1f4657c7672e188a2/Flask-Hypertable-0.3.0.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "21df031a208b688a547d95e19675b1ba",
"sha256": "fc8618db7b6a43aa23a0a8c9369d1f15acd818cd2b09c3f84aa2875ff51b2aac"
},
"downloads": -1,
"filename": "Flask-Hypertable-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "21df031a208b688a547d95e19675b1ba",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 67862,
"upload_time": "2014-03-31T01:03:20",
"url": "https://files.pythonhosted.org/packages/d1/5d/c9163181fe5e6ba2395405f25a0193de47196794bfb1f4657c7672e188a2/Flask-Hypertable-0.3.0.tar.gz"
}
]
}