Metadata-Version: 2.1
Name: bluesky-python
Version: 0.0.2
Summary: A small bluesky API Wrapper
Author-email: StupidJane <stupidjane@tutanota.com>
Project-URL: Homepage, https://github.com/astupidjane/bluesky-python
Project-URL: Issues, https://github.com/astupidjane/bluesky-python/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Bluesky-Python
Just a very lightweight wrapper around the Bluesky API


### Installation
`pip install -U bluesky-python`

### Example

```py
from bluesky import BlueskyBasicClient

client = BlueskyBasicClient.from_login_data("example.bsky.social", "1234567890")

client.say("Hello World!")
```
