Metadata-Version: 2.1
Name: python-amcards
Version: 1.0.1
Summary: A wrapper for the AMcards API.
Home-page: https://github.com/simonesestili/python-amcards
Author: Simone Sestili
Author-email: simone.sestili@amcards.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# See [Read the Docs](https://python-amcards.readthedocs.io/en/latest/) for full documentation

[![Read the Docs](https://i.ibb.co/r4MwXQC/readthedocs.png)](https://python-amcards.readthedocs.io/en/latest/)

## Installation

To install python-amcards, simply run this command in your terminal:

```
$ pip install python-amcards
```

## Usage

All interactions with the AMcards API are made through the AMcardsClient class.

First, create an AMcardsClient as follows:

```
>>> from amcards import AMcardsClient
>>> client = AMcardsClient('youraccesstoken')
```

Here `'youraccesstoken'` will be replaced with a string containing your AMcards access token. You can generate one [here](https://amcards.com/user/connected-applications/).
