qaviton io
Project description
Qaviton IO
Qaviton IO
is a package with a simple API, making use of python's async & multiprocessing
to enable fast execution of many asyncable operations.
Installation
pip install qaviton-io -U
Requirements
- Python 3.6+
Features
- async task manager
- process task manager
- task logger
Usage
async manager:
from time import time
from typing import List
from requests import get, Response # lets make use of requests to make async http calls
from qaviton_io import AsyncManager, Log
# we can save the responses here
rs: List[Response] = []
# let's create an async manager & log
manager = AsyncManager()
log = Log()
# first we make a simple function to make an http call
# we want to log the result
# and make sure that in case of an exception
# the manager won't stop
@log.task(exceptions=Exception)
def task():
r = get("https://qaviton.com")
r.raise_for_status()
rs.append(r)
# let's run our task once and see how long it takes
t = time()
manager.run([task for _ in range(1)])
t = time() - t
print(f'took {round(t, 3)}s')
# now let's run our task 20 times and see how long it takes
t = time()
manager.run([task for _ in range(20)])
t = time() - t
print(f'took {round(t, 3)}s')
# let's view the results in the log report
log.report()
process manager:
from time import time
from requests import get
from qaviton_io.types import Tasks
from qaviton_io import ProcessManager, Log
from traceback import format_exc
# make sure your tasks are defined at the module level,
# so they can be pickled by multiprocessing
# first we need to make a log registry
log = Log()
# now we make some tasks
# this is a nested task
# we don't want to handle any exceptions
# so in case of failure the parent will not proceed
@log.task()
def task(url):
r = get(url)
r.raise_for_status()
# this is the prent task
# we want to handle all exceptions
# so in case of failure the next task will execute
@log.task(exceptions=Exception)
def multi_task():
for url in [
"https://qaviton.com",
"https://qaviton.co.il", # make sure you enter a valid address
"https://qaviton.com1", # make sure you enter a valid address
]:
task(url)
# let's create a function to execute tasks
def execute_tasks(tasks: Tasks, timeout):
manager = ProcessManager()
t = time()
try:
manager.run_until_complete(tasks, timeout=timeout)
timed_out = None
except TimeoutError:
timed_out = format_exc()
t = time() - t
manager.log.report()
print(f'took {round(t, 3)}s\n')
manager.log.clear()
return timed_out
# now all that's left is to run the tasks
if __name__ == "__main__":
timeouts = [
execute_tasks([multi_task for _ in range(1)], timeout=3),
execute_tasks([multi_task for _ in range(20)], timeout=6),
execute_tasks([multi_task for _ in range(80)], timeout=9),
]
for timeout in timeouts:
if timeout:
print(timeout)
notes:
-
for good performance and easy usage
you should probably stick with using the AsyncManager -
The ProcessManager uses async operations as well as multi-processing.
It distributes tasks across cpus, and those tasks are executed using the AsyncManager
if you want maximum efficiency you should consider using the ProcessManager -
The ProcessManager uses the multiprocessing module
and should be treated with it's restrictions & limitations accordingly -
The ProcessManager gets stuck easily,
make sure to use timeouts when using it
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qaviton_io-2019.11.3.8.48.39.596657.tar.gz.
File metadata
- Download URL: qaviton_io-2019.11.3.8.48.39.596657.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.1.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.7.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
061e4433a1ce764e2e00aba864119acd97938ddbea4d466c3a72f674034ce749
|
|
| MD5 |
04ad5f940a6a4b7e8428622b3d545af8
|
|
| BLAKE2b-256 |
cb3f4bb522aae90c819a23a2cb287cd2230bf2e389df07650aaf7f951f818c03
|
File details
Details for the file qaviton_io-2019.11.3.8.48.39.596657-py2.py3-none-any.whl.
File metadata
- Download URL: qaviton_io-2019.11.3.8.48.39.596657-py2.py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.1.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.7.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e33e9e4c0edf187d34e7ce91cc0c625a2f4d866639c2576e8da69ddb672d8a59
|
|
| MD5 |
f7862801f8c7c90a0d8fcaf908e32649
|
|
| BLAKE2b-256 |
38ec57b6188759785db5c0486a247054403b2877de66405be71e7f2380ae1848
|