Metadata-Version: 2.1
Name: apifyunofficial
Version: 0.0.3
Summary: Unofficial client for the apify.com API
Home-page: https://github.com/ctrl-q/apify
Author: ctrl-q
Author-email: 
License: GPLv3
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.0.0
Description-Content-Type: text/markdown
Requires-Dist: requests


Simple client library for the excellent [apify.com API](https://www.apify.com/docs) 
## Installation
### Using pip (Recommended)
`pip install apifyunofficial`
### From source
1. Clone this repository
1. `python setup.py install`

## First use
To ensure the module works, create a .json configuration file like the example `apify_config.json`, then run this python code:
```python
import apifyunofficial as apify
print(apify.get_private_user_data(config=<CONFIG FILE>))
```

## What you get
* Most functions specified in the official API docs.
* Object-oriented structure that follows the docs closely.
* Fairly simple code
* Bugs (probably)

## How to help
* Contributing to this source code
* Finding bugs! (then filing issues)
* Suggesting ideas and improvements


