Metadata-Version: 2.1
Name: amiami
Version: 0.0.1
Summary: amiami lame api scraper that works through the api
Home-page: https://bitbucket.org/marvinody/amiami/
Author: marvinody
Author-email: manny@sadpanda.moe
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.5
Description-Content-Type: text/markdown

# Amiami API

A simple api wrapper around the amiami site.

Simple usage can be something like

```python
import amiami

results = amiami.search("fumofumo plush")
for item in results.items:
  print("{}, {}".format(item.productName, item.productURL))
```


