Metadata-Version: 2.1
Name: wf-postgres-client
Version: 0.1.0
Summary: A client for communicating with PostgreSQL databases
Home-page: https://github.com/WildflowerSchools/wf-postgres-client
License: MIT
Author: Theodore Quinn
Author-email: ted.quinn@wildflowerschools.org
Maintainer: Theodore Quinn
Maintainer-email: ted.quinn@wildflowerschools.org
Requires-Python: >=3.8,<4.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: pandas (>=1.5,<2.0)
Requires-Dist: psycopg2 (>=2.9,<3.0)
Requires-Dist: toml (>=0.10.2,<0.11.0)
Project-URL: Repository, https://github.com/WildflowerSchools/wf-postgres-client
Description-Content-Type: text/markdown

# postgres_client

A client for communicating with PostgreSQL databases

## Installation

`pip install wf-postgres-client`

## Development

### Requirements

* [Poetry](https://python-poetry.org/)
* [just](https://github.com/casey/just)

### Install

`poetry install`


#### Install w/ Python Version from PyEnv

```
# Specify pyenv python version
pyenv shell --unset
pyenv local <<VERSION>>

# Set poetry python to pyenv version
poetry env use $(pyenv which python)
poetry cache clear . --all
poetry install
```

## Task list
* TBD

