Metadata-Version: 2.1
Name: sourcestack
Version: 0.0.6
Summary: A python package for using the https://sourcestack.co/ API.
Home-page: https://github.com/workflowing/sourcestack
Author: Kevin Sylvestre
Author-email: kevin@ksylvest.com
License: MIT
Keywords: sourcestack
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# SourceStack

[![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/workflowing/sourcestack/blob/main/LICENSE)
[![PyPi](https://img.shields.io/pypi/v/sourcestack)](https://pypi.org/project/sourcestack/)
[![GitHub](https://img.shields.io/badge/github-repo-blue.svg)](https://github.com/workflowing/sourcestack)

## Installation

```bash
pip install sourcestack
```

## Usage

```python
from sourcestack.client import Client

client = Client(api_key="fake-api-key")
client.jobs.all()
client.jobs.by_name(name="...")
client.jobs.by_parent(parent="...")
client.jobs.by_url(url="https://...")
client.jobs.by_uses_product(uses_product="...")
client.jobs.by_uses_category(uses_category="...")
```

## Building

```bash
pip install setuptools
```

```bash
bin/build
```

## Publishing

```bash
pip install twine
```

```bash
bin/publish
```
