Skip to main content

This module makes it simplely to run things in async.

Project description

async4s - 一个简单易用的异步执行模块

image image image

About

这是一个简单易用的异步执行模块,可以使原有方法轻松变为异步执行。

Requirements

  • Python3

Install

通过pip命令安装:

pip install async4s

Example

  • async by thread
import time

from async4s.mw.thread import Master, Worker

def work(i):
    time.sleep(i)
    return i

def callback(results):
    print(results)

print(time.perf_counter())
workers = [Worker(work, i) for i in range(5)]
m = Master(workers, callback)
print("main")
m.wait()
print(time.perf_counter())
  • async by asyncio
import time
import asyncio

from async4s.mw.coroutine import Master, Worker


async def work(i):
    await asyncio.sleep(i)
    return i


def callback(results):
    print(results)


print(time.perf_counter())
workders = (Worker(work, i) for i in range(5))
master = Master(workders, callback=callback)
print("main")
master.wait()

print(time.perf_counter())

Release History

0.0.1(2021-01-26)

  • Birth

1.0.0(2021-10-29)

  • Master-Worker mode
  • both implement by thread and asyncio

Author

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

async4s-2.3.1.zip (13.4 kB view details)

Uploaded Source

File details

Details for the file async4s-2.3.1.zip.

File metadata

  • Download URL: async4s-2.3.1.zip
  • Upload date:
  • Size: 13.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.5

File hashes

Hashes for async4s-2.3.1.zip
Algorithm Hash digest
SHA256 a54a237a31424383d92cdfe011ae64bc42aeba9ca9d9bb25c0665f49ef9e4141
MD5 d4f08a6960314b1c1dcd05b417b8ac4a
BLAKE2b-256 38bf68f563fbb44901eeb73149dcfdb411c15ecd6beca57c23915aaa69f6e5c1

See more details on using hashes here.

Supported by

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