- This folder contains the projects done during
alx-specializationin backend
-
0. 0x00-python_variable_annotaions
variable-annotations contains scripts that makes use of pythons type notation using thetypingmodule. -
1. 0x01-python_async_function
async_function contains scripts that introduces pythons asyn and await synthax according toPEP530it allows for asynchronous programming in python. The module used is theasynciomodule and some other module likerandom,time. -
2. 0x02-python_async_comprehension
async_comprehension contains scripts that further enhances the usage of theasync/awaitof 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 theasynciomodule.