Skip to main content

No project description provided

Project description

ygo

并发执行(加入进度条)以及延迟调用(基于joblib),以及获取对应函数的相关信息

安装

pip install -U git+https://github.com/link-yundi/ygo.git

示例

├── a
│   ├── __init__.py
│   └── b
│       ├── __init__.py
│       └── c.py
└── test.py

c.py 中定义了目标函数
def test_fn(a, b=2):
    return a+b

场景1: 并发

import ygo
import ylog
from a.b.c import test_fn

with ygo.pool(job_name="test parallel", show_progress=True) as go:
    for i in range(10):
        go.submit(test_fn)(a=i, b=2*i)
    for res in go.do():
        ylog.info(res)

场景2: 延迟调用

>>> fn = delay(test_fn)(a=1, b=2)
>>> fn()
3
>>> # 逐步传递参数
>>> fn1 = delay(lambda a, b, c: a+b+c)(a=1)
>>> fn2 = delay(fn1)(b=2)
>>> fn2(c=3)
6
>>> # 参数更改
>>> fn1 = delay(lambda a, b, c: a+b+c)(a=1, b=2)
>>> fn2 = delay(fn1)(c=3, b=5)
>>> fn2()
9

场景3: 获取目标函数信息

>>> ygo.fn_info(test_fn)
=============================================================
    a.b.c.test_fn(a, b=2)
=============================================================
    def test_fn(a, b=2):
    return a+b

场景4: 通过字符串解析函数并执行

>>> ygo.fn_from_str("a.b.c.test_fn")(a=1, b=5)
6

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ygo-1.0.1.tar.gz (16.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ygo-1.0.1-py3-none-any.whl (18.8 kB view details)

Uploaded Python 3

File details

Details for the file ygo-1.0.1.tar.gz.

File metadata

  • Download URL: ygo-1.0.1.tar.gz
  • Upload date:
  • Size: 16.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.17

File hashes

Hashes for ygo-1.0.1.tar.gz
Algorithm Hash digest
SHA256 31a3f2347cc7926482a8ccb4e275e1d8e38971a87cfc19158382b09d3dfe6f2f
MD5 5e447363482a488a6d2da271d464dd56
BLAKE2b-256 508d09ed704b8c0fc7ba98b0e67ccefa15398693b43d46fe88c5be77e2860764

See more details on using hashes here.

File details

Details for the file ygo-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: ygo-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 18.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.17

File hashes

Hashes for ygo-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 919331a41b3690b49a3d349a69302c4a359a8c00412594131696504f21914113
MD5 bdbb91c2b986b1b810c05c1e93182036
BLAKE2b-256 57c0f5bf0b513ba5e968f3dce5b5b437c87c1ba630498f1ba08525b95f834da4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page