Metadata-Version: 2.1
Name: amazon_purchase
Version: 1.0.0
Summary: Use python to make Buy Now purchases from Amazon.
Author-email: Justin Kumpe <jakumpe@kumpes.com>
License-Expression: GPL-3.0
License-File: LICENSE
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: amazoncaptcha
Requires-Dist: selenium
Description-Content-Type: text/markdown

# amazon_purchase
![PyPI - Version](https://img.shields.io/pypi/v/amazon_purchase) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/amazon_purchase)
![PyPI - License](https://img.shields.io/pypi/l/amazon_purchase)

### Install
```python
pip install amazon_purchase --upgrade
```

### Make A Purchase
```python
from amazon_purchase import AMAZON

amazon = AMAZON(username, password)
link = "amazon link to the item you wish to purchase"
amazon.purchase(link)
```
