- This folder contains the projects done during
alx-specialization
in backend
-
0. 0x00-python_variable_annotaions
variable-annotations contains scripts that makes use of pythons type notation using thetyping
module. -
1. 0x01-python_async_function
async_function contains scripts that introduces pythons asyn and await synthax according toPEP530
it allows for asynchronous programming in python. The module used is theasyncio
module and some other module likerandom
,time
. -
2. 0x02-python_async_comprehension
async_comprehension contains scripts that further enhances the usage of theasync/await
of python asynchronous concept. This directory focuses on generating comprehension asynchronously as can be done synchronously. list, set, dict comprehension can all be generated asynchronously, by making use of a generator function. The module used in this directory is theasyncio
module.