|
Description:
|
|
Sponsored by us! Support our work through:
Michael #1: Making a trading bot asynchronous using Python’s “unsync” library
- by Matt Gosden
- The older way — using the threading and multiprocessing libraries
- The newer way — using
async and await from the asyncio library embedded into core Python from 3.7 onwards
- The easier way (I think)— using the
@unsync decorator from the Python unsync library
- Somewhat realistic example worth looking at.
- Could discuss scalability more
- Also, proper def async and asyncio.sleep() for those playing at home
- But its absence kind shows unsync winning anyway.
|