devin stevenson
devin stevenson
see my PR https://github.com/dropbox/PyHive/pull/122 to install on Windows. for dependencies make sure to use the --no-deps flag with pip. Also requires pure-sasl. ** Note that for Anaconda, the dependency versions...
For all those Windows users, I have made a thrift transport library that uses pure-sasl. Please check it out. https://github.com/devinstevenson/pure-transport. There are example files in the repo.
@parisni The basic usage over HTTPS is ``` from sqlalchemy.engine import create_engine engine = create_engine( 'presto://:@:/hive', connect_args={'protocol': 'https'}) ``` This will automatically use HttpBasicAuth. Note that you must include the...