Metadata-Version: 2.1
Name: hou-flask-psycopg2
Version: 0.0.7
Summary: Highly Opinionated Utils: Flask Psycopg2
Home-page: https://github.com/timmartin19/hou-flask-psycopg2
Author: Tim Martin
Author-email: oss@timmartin.me
License: UNKNOWN
Keywords: oss_auth
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: psycopg2
Requires-Dist: python-rapidjson
Requires-Dist: flask
Requires-Dist: werkzeug

# Highly Opinionated Utils: Flask-Psycopg2

Provides the ability to integrate Flask directly with psycopg2
No need for a filthy ORM

## Installation

```bash
pip install hou-flask-pscyopg2
```

Sometimes on macs psycopg2 is a little pain in the ass.  You'll see
errors like 

```bash
>>> ld: library not found for -lssl
>>> clang: error: linker command failed with exit code 1 (use -v to see invocation)
>>> error: command 'clang' failed with exit status 1
```

To fix these try any of the following

1. `xcode-select --install`
2. `brew install openssl`
3. `LDFLAGS="-L/usr/local/opt/openssl/lib" CPPFLAGS="-I/usr/local/opt/openssl/include" pip install hou-flask-pscyopg2`


=======
History
=======

0.0.1 (2018-06-27)
------------------

* First release on PyPI.

