Metadata-Version: 2.1
Name: arya-api-framework
Version: 0.1.0
Summary: A simple API framework used in many other API clients I create.
Home-page: https://github.com/Aryathel/ApiFramework
Author: Aryathel
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.10.0
Description-Content-Type: text/markdown
Provides-Extra: sync
Provides-Extra: async
Provides-Extra: all

# Api Framework Package

This is an extremely simple package that is meant to be a 
[pydantic](https://pydantic-docs.helpmanual.io/) implementation
for a basic RESTful API interaction client. This includes both sync and async usages.

## Installation
Synchronous implementation - if you aren't sure, you probably want this:
```
python -m pip install arya-api-framework[sync]
```
Asynchronous implementation:
```
python -m pip install arya-api-framework[async]
```

----
### Note
This may be documented properly in the future, but I don't really see a reason for that
right now, given that I am only creating for specific usages.
