diff --git a/README.md b/README.md index 15db366..1402711 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,8 @@ -# Python client for StreamPot.io - [![PyPI](https://img.shields.io/pypi/v/streampot.svg)](https://pypi.org/project/streampot/) [![Tests](https://github.com/StreamPot/python-sdk/actions/workflows/test.yml/badge.svg)](https://github.com/StreamPot/python-sdk/actions/workflows/test.yml) [![Changelog](https://img.shields.io/github/v/release/StreamPot/python-sdk?include_prereleases&label=changelog)](https://github.com/StreamPot/python-sdk/releases) [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/StreamPot/python-sdk/blob/main/LICENSE) -API client for StreamPot - ## Installation Install this library using `pip`: @@ -15,7 +11,11 @@ pip install streampot ``` ## Usage -Usage instructions go here. +```python +from streampot import StreamPot + +client = StreamPot(secret='yourToken') +``` ## Development diff --git a/pyproject.toml b/pyproject.toml index 8835dc8..aff26f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "streampot" -version = "0.1" +version = "0.3" description = "API client for StreamPot.io" readme = "README.md" requires-python = ">=3.8"