An open API service indexing awesome lists of open source software.

https://github.com/xnuinside/pyclbr_with_async

Python pyclbr with support of Async functions in Classes and in global scope
https://github.com/xnuinside/pyclbr_with_async

Last synced: about 1 year ago
JSON representation

Python pyclbr with support of Async functions in Classes and in global scope

Awesome Lists containing this project

README

          

Readme in comments in file example/example_how_to_use.py

To run example:

1. Python3.7 && add pyclbr_with_async.py to your python path
2. cd ./pyclbr_with_async
3. python example/example_how_to_use.py
4. as result output you will see in console:

class TestSomeClass:

def test_with_some_sync_method(self):
pass

async def test_and_with_some_sync_method(self):
pass

def test_and_some_sync_methods_without_class(self):
pass


async def test_and_some_async_methods_without_class(self):
pass


TODO:

1. Readme.MD