Metadata-Version: 2.1
Name: valarpy
Version: 2.0.0
Summary: Python ORM to talk to Valar.
Home-page: https://github.com/dmyersturnbull/valarpy
License: Apache-2.0
Keywords: valar,orm,zebrafish
Author: Douglas Myers-Turnbull
Maintainer: Douglas Myers-Turnbull
Requires-Python: >=3.8,<4
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Database
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Scientific/Engineering :: Chemistry
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides-Extra: dev
Requires-Dist: PyMySQL (>=0.9,<1.0)
Requires-Dist: pandas (>=1,<2)
Requires-Dist: peewee (>=3,<4)
Project-URL: CI, https://github.com/dmyersturnbull/valarpy/actions
Project-URL: Documentation, https://valarpy.readthedocs.io
Project-URL: Download, https://pypi.org/project/valarpy/
Project-URL: Issues, https://github.com/dmyersturnbull/valarpy/issues
Project-URL: Repository, https://github.com/dmyersturnbull/valarpy
Description-Content-Type: text/markdown

# Valarpy

[![Version status](https://img.shields.io/pypi/status/valarpy)](https://pypi.org/project/valarpy/)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/valarpy)](https://pypi.org/project/valarpy/)
[![GitHub release (latest SemVer including pre-releases)](https://img.shields.io/github/v/release/dmyersturnbull/valarpy?include_prereleases&label=GitHub)](https://github.com/dmyersturnbull/valarpy/releases)
[![Latest version on PyPi](https://badge.fury.io/py/valarpy.svg)](https://pypi.org/project/valarpy/)
[![Documentation status](https://readthedocs.org/projects/valarpy/badge/?version=latest&style=flat-square)](https://valarpy.readthedocs.io/en/stable/)
[![Build & test](https://github.com/dmyersturnbull/valarpy/workflows/Build%20&%20test/badge.svg)](https://github.com/dmyersturnbull/valarpy/actions)

Python code to talk to [Valar](https://github.com/dmyersturnbull/valar).
There is more documentation available in the Valar readme.
[See the docs](https://valarpy.readthedocs.io/en/stable/).

Usage:

```python
from valarpy import Valar, model
with Valar():
    print(list(model.Refs.select()))
```

An example connection config file:

```json
{
    "port": 3306,
    "user": "kaletest",
    "password": "kale123",
    "database": "valartest",
    "host": "127.0.0.1"
}
```

[New issues](https://github.com/dmyersturnbull/valarpy/issues) and pull requests are welcome.
Please refer to the [contributing guide](https://github.com/dmyersturnbull/valarpy/blob/master/CONTRIBUTING.md).
Generated with [Tyrannosaurus](https://github.com/dmyersturnbull/tyrannosaurus).

