File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
Simple client library for the excellent [ apify.com API] ( https://www.apify.com/docs )
2
2
## Installation
3
3
### Using pip (Recommended)
4
- ` pip install apify `
4
+ ` pip install apify_unofficial `
5
5
### From source
6
6
1 . Clone this repository
7
7
1 . ` python setup.py install `
8
8
9
9
## First use
10
10
To ensure the module works, create a .json configuration file like the example ` apify_config.json ` , then run this python code:
11
11
``` python
12
- import apify
12
+ import apify_unofficial as apify
13
13
print (apify.get_private_user_data(config = < CONFIG FILE > ))
14
14
```
15
15
Original file line number Diff line number Diff line change 12
12
from setuptools import find_packages , setup , Command
13
13
14
14
# Package meta-data.
15
- NAME = 'apify '
15
+ NAME = 'apify_unofficial '
16
16
DESCRIPTION = 'Unofficial client for the apify.com API'
17
17
URL = 'https://github.com/ctrl-q/apify'
18
18
EMAIL = ''
You can’t perform that action at this time.
0 commit comments