Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 565 Bytes

File metadata and controls

38 lines (30 loc) · 565 Bytes

Asyncio Task Helpers

A small package with useful helpers for asyncio. These tools can help you with asynchronous tasks.

Roadmap:

  • Write tests
  • Write linters and formaters
  • Write code
  • Add CI/CD

Installation:

  • Install from source:
poetry build

After that, u can use package builded in dist

Development:

  • Install dependencies:
make -f Makefile install-deps
  • Run tests:
make -f Makefile test
  • Run pre-commit:
make -f Makefile pre-commit
  • Run all:
make -f Makefile