Metadata-Version: 2.0
Name: pypresto
Version: 1.0.3
Summary: Python wrapper for running queries on Presto server
Home-page: https://github.com/NonWhite/pyprestowrapper
Author: NonWhite
Author-email: wperezurcia@gmail.com
License: LICENSE
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Development Status :: 4 - Beta
Requires-Dist: pandas (==0.20.3)
Requires-Dist: requests (==2.18.4)

# pyprestowrapper
Package for making queries on Presto server

## 1. Install package

	pip install pypresto

## 2. Use package

	from pypresto import PrestoConnection
	conn = PrestoConnection(host, user, catalog)
	query = 'select * from my_table limit 1'
	conn.run_query(query)

## 3. Usage for authenticated Presto:

	from pypresto import PrestoConnection
	conn = PrestoConnection(host, user, catalog, port, schema, password)
	query = 'select * from my_table limit 1'
	conn.run_query(query, auth=True)


