Backend Python

  • This folder contains the projects done during alx-specialization in backend

Directories

  • 0. 0x00-python_variable_annotaions
    variable-annotations contains scripts that makes use of pythons type notation using the typing module.

  • 1. 0x01-python_async_function
    async_function contains scripts that introduces pythons asyn and await synthax according to PEP530 it allows for asynchronous programming in python. The module used is the asyncio module and some other module like random, time.

  • 2. 0x02-python_async_comprehension
    async_comprehension contains scripts that further enhances the usage of the async/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 the asyncio module.