Metadata-Version: 2.1
Name: pyaftership
Version: 0.0.2
Summary: A module to get information pending parcels.
Home-page: https://github.com/ludeeus/pyaftership
Author: Joakim Sorensen @ludeeus
Author-email: ludeeus@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# pyaftership

_A module to get information pending parcels._

## Notes

This has been tested with python 3.6  
This module uses these external libararies:

- requests

## Install

```bash
pip install pyaftership
```

## Sample usage

```python
from pyaftership import AfterShip

api_key = '9781915b342514bf0dede6e3d058a'
after_ship = AfterShip()

# Get parcel information:
result = after_ship.get_trackings(api_key)

# Print the result:
print(result)
```


