Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alioguzhan/async-python
Async and Parallel requests in Python
https://github.com/alioguzhan/async-python
Last synced: 25 days ago
JSON representation
Async and Parallel requests in Python
- Host: GitHub
- URL: https://github.com/alioguzhan/async-python
- Owner: alioguzhan
- License: mit
- Created: 2017-08-24T10:05:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-24T15:16:02.000Z (over 7 years ago)
- Last Synced: 2024-10-28T03:16:24.713Z (2 months ago)
- Language: Python
- Size: 188 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# async-python
Async and Parallel requests in PythonIt runs 4 different methods to compare:
- Synchronous Requests
- Asynchronous Requests with `Tornado`
- Asynchronous Requests with `Grequests`
- Asynchronous Requests with ` built-in multiprocessing`## Install and Run
To make things work,- Clone the repo
- `cd` into repo
- run -> `python3.6 -m venv venv`
- then -> `source venv/bin/activate`
- then -> `pip install -r req.pip`And finaly to just run main file:
`python3 main.py`
An Example output would be:
![Example Output](example.png)