An open API service indexing awesome lists of open source software.

https://github.com/narrativescience-old/pysaql

Python SAQL query builder
https://github.com/narrativescience-old/pysaql

Last synced: 12 months ago
JSON representation

Python SAQL query builder

Awesome Lists containing this project

README

          

# pysaql
[![](https://img.shields.io/pypi/v/pysaql.svg)](https://pypi.org/pypi/pysaql/) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)

Python SAQL query builder

Features:

-

Table of Contents:

- [Installation](#installation)
- [Guide](#guide)
- [Development](#development)

## Installation

pysaql requires Python 3.9 or above.

```bash
pip install pysaql
# or
poetry add pysaql
```

## Guide

## Development

To develop pysaql, install dependencies and enable the pre-commit hook:

```bash
pip install pre-commit poetry
poetry install
pre-commit install -t pre-commit -t pre-push
```

To run tests:

```bash
poetry run pytest
```