SDK of vortezwohl.
Project description
vortezwohl-sdk
Useful Python SDKs
Installation
pip install -U git+https://github.com/vortezwohl/vortezwohl-sdk.git
Quick Start
-
Thread Pool
-
Import SDKs
import random import time from vortezwohl.concurrent import ThreadPool
-
Create callables
def job1(x: int, y: int) -> int: res = x + y time.sleep(res / 2) return res def job2() -> int: _delay = random.randint(1, 4) time.sleep(_delay / 2) return _delay def job3(x) -> int: time.sleep(x / 2) return x
-
Gather jobs (tasks)
with ThreadPool() as t: for fn, param, result in t.gather(jobs=[job1, job1, job1, job2, job2, job3], arguments=[(1, 2), (2, 3), {'x': 3, 'y': 4}, None, None, 5]): print('fn={}, param={}, result={}'.format(fn, param, result))
stdout:
fn=<function job2 at 0x00000183016C0180>, param=None, result=1 fn=<function job1 at 0x00000183013B63E0>, param=(1, 2), result=3 fn=<function job2 at 0x00000183016C0180>, param=None, result=3 fn=<function job1 at 0x00000183013B63E0>, param=(2, 3), result=5 fn=<function job3 at 0x00000183016C0220>, param=5, result=5 fn=<function job1 at 0x00000183013B63E0>, param={'x': 3, 'y': 4}, result=7 -
Submit jobs respectively
with ThreadPool() as t: t.submit(job1, 1, 2) t.submit(job1, 2, 3) t.submit(job1, x=3, y=4) t.submit(job2) t.submit(job2) t.submit(job3, 5) for fn, param, result in t.next_result: print('fn={}, param={}, result={}'.format(fn, param, result))
stdout:
fn=<function job2 at 0x000001B82B61C0E0>, param=None, result=2 fn=<function job1 at 0x000001B82B31A480>, param=(1, 2), result=3 fn=<function job2 at 0x000001B82B61C0E0>, param=None, result=4 fn=<function job1 at 0x000001B82B31A480>, param=(2, 3), result=5 fn=<function job3 at 0x000001B82B61C180>, param=(5,), result=5 fn=<function job1 at 0x000001B82B31A480>, param={'x': 3, 'y': 4}, result=7
-
-
Seed Generator
-
Import SDKs
import random from vortezwohl.random import next_seed
-
Do random stuff
for _ in range(10): next_seed() print(random.randint(1, 10))
stdout:
3 4 4 8 9 6 8 7 1 10
-
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
vortezwohl-0.0.1.tar.gz
(3.8 kB
view details)
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 vortezwohl-0.0.1.tar.gz.
File metadata
- Download URL: vortezwohl-0.0.1.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26e56bfb05ea15ce801f24809529140850d1a638009c2e3dd3b3f4724855a576
|
|
| MD5 |
c815e6e5f058704766d601989371d699
|
|
| BLAKE2b-256 |
d223a59fec3985488b719b04c9e1b0e86203bf67f0cf8b068caad831a47efd6e
|
File details
Details for the file vortezwohl-0.0.1-py3-none-any.whl.
File metadata
- Download URL: vortezwohl-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0accad2f3bee826d636d4b97bc0d488eafb3072caa838343bd9aa7e2c12a674
|
|
| MD5 |
639f85b715286219862e0a0a9527b643
|
|
| BLAKE2b-256 |
a48897adb3f8f2a777ab045efeaed203706b25ca30102bd99dfde0ea5070ac48
|