Metadata-Version: 2.1
Name: pyatproto
Version: 0.0.1
Summary: A wrapper for interacting with the AT Protocol API.
Home-page: https://github.com/capjamesg/pyatproto
Author: capjamesg
Author-email: jamesg@jamesg.blog
Project-URL: Bug Tracker, https://github.com/capjamesg/pyatproto/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown; charset=UTF-8
License-File: LICENSE

# AT Protocol Python Library

A wrapper for interacting with the [AT Protocol API](https://atproto.com/).

## Getting Started

To install the library, run:

```
pip install pyatproto
```

## Quickstart

```
import pyatproto
import os

ENDPOINT = os.environ.get("ATPROTO_ENDPOINT")
USERNAME = os.environ.get("ATPROTO_USERNAME")
PASSWORD = os.environ.get("ATPROTO_PASSWORD")

ap = pyatproto.AtProtoConfiguration(ENDPOINT, USERNAME, PASSWORD)

create_post = ap.create_post("My First Post")

print(create_post)
```

## Contributing

Contributions are welcome, especially those that add more methods to the library. Please open an issue or pull request to contribute to the library.

## License

This project is licensed under an [MIT 0 License](LICENSE).

## Contributors

- capjamesg
