Metadata-Version: 2.1
Name: splight-lib
Version: 5.2.6
Summary: Splight Library
Author: Splight Dev
Author-email: dev@splight-ae.com
Requires-Python: >=3.8.1,<4
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: apscheduler (==3.10.4)
Requires-Dist: concurrent-log-handler (==0.9.21)
Requires-Dist: cryptography (==42.0.4)
Requires-Dist: email-validator (>=2.1.0.post1,<3.0.0)
Requires-Dist: furl (==2.1.3)
Requires-Dist: geojson-pydantic (==1.0.1)
Requires-Dist: hexbytes (==0.2.2)
Requires-Dist: httpx (==0.23.3)
Requires-Dist: jinja2 (==3.1.3)
Requires-Dist: mergedeep (==1.3.4)
Requires-Dist: pandas (==1.5.2)
Requires-Dist: parameterized (==0.8.1)
Requires-Dist: pathspec (==0.11.1)
Requires-Dist: protobuf (==4.21.6)
Requires-Dist: py7zr (==0.20.8)
Requires-Dist: pydantic (==2.4.2)
Requires-Dist: pydantic-settings (==2.0.3)
Requires-Dist: pysher (==1.0.8)
Requires-Dist: pytz (==2021.3)
Requires-Dist: pyyaml (==6.0.1)
Requires-Dist: requests (>=2.26.0)
Requires-Dist: retry (==0.9.2)
Requires-Dist: simplejson (==3.17.6)
Requires-Dist: strenum (==0.4.9)
Requires-Dist: typer (==0.9.0)
Requires-Dist: typing-extensions (>=4.6.1,<5.0.0)
Description-Content-Type: text/markdown

# Splight Python SDK

![snyk_code](https://github.com/splightplatform/splight-lib-python/blob/gh-pages/snyk_code.svg?raw=True)
![snyk_dependencies](https://github.com/splightplatform/splight-lib-python/blob/gh-pages/snyk_dependencies.svg?raw=True)

---

## Installation

A release version can be installed using `pip` with

```bash 
pip install --upgrade splight-lib
```

or if you want one particular version you can use
```bash 
pip install splight-lib==x.y.z
```

### For Development

To install the library in development mode you need to have `poetry` installed
```bash
pip install poetry==1.7.0
```

Then to insall the library you can use the command

```bash
poetry install
```

## Tests

```
make test
```

