Metadata-Version: 2.1
Name: sdssdb
Version: 0.13.0
Summary: SDSS product for database management
Author-email: José Sánchez-Gallego <gallegoj@uw.edu>, Brian Cherinka <bcherinka@stsci.edu>
License: BSD 3-Clause License
Project-URL: Homepage, https://github.com/sdss/sdssdb
Project-URL: Repository, https://github.com/sdss/sdssdb
Project-URL: Documentation, https://sdssdb.readthedocs.org
Keywords: astronomy,software,database
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: pgpasslib >=1.1.0
Requires-Dist: psycopg2-binary >=2.7.7
Requires-Dist: peewee >=3.17.6
Requires-Dist: sqlalchemy <2,>=1.3.6
Requires-Dist: numpy >=1.18.2
Requires-Dist: sdsstools <1.0.0,>=0.1.0 ; python_version < "3.8"
Requires-Dist: sdsstools >=1.7.0 ; python_version >= "3.8"
Provides-Extra: all
Requires-Dist: psycopg[binary] ; extra == 'all'
Requires-Dist: progressbar2 >=3.46.1 ; extra == 'all'
Requires-Dist: pydot >=1.4.1 ; extra == 'all'
Requires-Dist: astropy >=4.0.0 ; extra == 'all'
Requires-Dist: pandas >=1.0.0 ; extra == 'all'
Requires-Dist: inflect >=4.1.0 ; extra == 'all'
Requires-Dist: h5py >=3.8.0 ; extra == 'all'
Requires-Dist: sdssdb[dev] ; extra == 'all'
Requires-Dist: sdssdb[docs] ; extra == 'all'
Provides-Extra: dev
Requires-Dist: pytest >=5.2 ; extra == 'dev'
Requires-Dist: pytest-cov >=2.4.0 ; extra == 'dev'
Requires-Dist: pytest-sugar >=0.8.0 ; extra == 'dev'
Requires-Dist: ipython >=7.13.0 ; extra == 'dev'
Requires-Dist: ipdb >=0.13.2 ; extra == 'dev'
Requires-Dist: pytest-postgresql <6,>=2.2.1 ; extra == 'dev'
Requires-Dist: factory-boy >=2.12.0 ; extra == 'dev'
Requires-Dist: pytest-factoryboy >=2.0.3 ; extra == 'dev'
Requires-Dist: astropy >=4.0.0 ; extra == 'dev'
Requires-Dist: pydot >=1.4.2 ; extra == 'dev'
Requires-Dist: pyyaml >=5.1 ; extra == 'dev'
Requires-Dist: ruff >=0.6.3 ; extra == 'dev'
Requires-Dist: flake8 >=7.1.1 ; extra == 'dev'
Requires-Dist: flake8-pyproject >=1.2.3 ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: Sphinx >=7.0.0 ; extra == 'docs'
Requires-Dist: sphinx-bootstrap-theme >=0.4.12 ; extra == 'docs'
Requires-Dist: releases >=2.0.0 ; extra == 'docs'

# sdssdb

![Versions](https://img.shields.io/badge/python->=3.6-blue)
[![Documentation Status](https://readthedocs.org/projects/sdssdb/badge/?version=latest)](https://sdssdb.readthedocs.io/en/latest/?badge=latest)
[![Test](https://github.com/sdss/sdssdb/actions/workflows/test.yml/badge.svg)](https://github.com/sdss/sdssdb/actions/workflows/test.yml)

[SDSS](https://sdss.org>) product for database management.

**sdssdb is in active development. Although the code is stable and can be used for production, the implementation of existing features may be changed without previous notice. This will change when we reach version 1.0.0.**

## Useful links

- GitHub: [https://github.com/sdss/sdssdb](https://github.com/sdss/sdssdb)
- Documentation: [https://sdssdb.readthedocs.org](https://sdssdb.readthedocs.org)
- Issues: [https://github.com/sdss/sdssdb/issues](https://github.com/sdss/sdssdb/issues)

## How to use

```python

    >>> from sdssdb.peewee.sdss5db import catalogdb
    >>> targets = catalogdb.GaiaDR2Source.select().where(catalogdb.GaiaDR2Source.phot_g_mean_mag < 15)
```
