{"id":19583424,"url":"https://github.com/richardmiruka/alx-backend-python","last_synced_at":"2026-06-18T05:31:50.017Z","repository":{"id":227616972,"uuid":"771936471","full_name":"RichardMiruka/alx-backend-python","owner":"RichardMiruka","description":"Backend Python 🐍 is a solution for building scalable and reliable web applications and APIs using the Python programming language. It leverages popular Python frameworks such as Flask and SQLAlchemy, and provides a clean and modular architecture for easy maintenance and scalability","archived":false,"fork":false,"pushed_at":"2024-04-08T07:32:54.000Z","size":79,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-26T12:26:23.216Z","etag":null,"topics":["backend","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RichardMiruka.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-14T08:22:47.000Z","updated_at":"2024-03-14T09:00:26.000Z","dependencies_parsed_at":"2024-04-06T10:26:40.556Z","dependency_job_id":"67d73b2d-8d8a-4e83-a4b0-9b860536941f","html_url":"https://github.com/RichardMiruka/alx-backend-python","commit_stats":null,"previous_names":["richardmiruka/alx-backend-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RichardMiruka/alx-backend-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RichardMiruka%2Falx-backend-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RichardMiruka%2Falx-backend-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RichardMiruka%2Falx-backend-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RichardMiruka%2Falx-backend-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RichardMiruka","download_url":"https://codeload.github.com/RichardMiruka/alx-backend-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RichardMiruka%2Falx-backend-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34478105,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-18T02:00:06.871Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backend","python3"],"created_at":"2024-11-11T07:42:29.348Z","updated_at":"2026-06-18T05:31:50.001Z","avatar_url":"https://github.com/RichardMiruka.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# alx-backend-python\n\n## :page_with_curl: Topics Covered\n1. Python annotation; Strongly dynamically typed.\n2. mypy python paackage\n\n## :wrench: Project setup.\n```bash\n# Install mypy\npython3 -m pip install mypy\n\n# Check if installed\nmypy --version\n\n# Create project directory and readme.\nmkdir ./alx-backend-python/\ntouch ./alx-backend-python/README.md\n\ncd alx-backend-python\n\ngit init\ngit add .\ngit commit -m 'first commit'\ngit remote add origin \u003cREMOTE_URL\u003e\ngit push\n\ntouch .gitignore\n\necho '*/__pycache__/\n' \u003e .gitignore\n```\n\n\n# :computer: Projects\n\n![Python annotation; Strongly dynamically typed](https://i.redd.it/y9y25tefi5401.png)\n## [0x00. Python - Variable Annotations](0x00-python_variable_annotations)\nType Annotation (Strongly Dynamically typed) in python. Reason for implementing type Annotation:\n1. Code documentation.\n2. Linting and validation.\n\n### :wrench: Project setup.\n```bash\n# Create project directory and readme.\nmkdir ./0x00-python_variable_annotations/\ntouch ./0x00-python_variable_annotations/README.md\ncd 0x00-python_variable_annotations\n```\n\n\u003e [:point_right: Go to project](0x00-python_variable_annotations)\n\n![0x01. Python - Async](https://s3.amazonaws.com/alx-intranet.hbtn.io/uploads/medias/2019/12/4aeaa9c3cb1f316c05c4.png?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=AKIARDDGGGOUSBVO6H7D%2F20230109%2Fus-east-1%2Fs3%2Faws4_request\u0026X-Amz-Date=20230109T084811Z\u0026X-Amz-Expires=86400\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=cb0c5eafff2d6059744f50a49e7c4a53c834899a619d9b2a07e23864a04e7f62)\n## [0x00. Python - Variable Annotations](0x01-python_async_function)\nType Annotation (Strongly Dynamically typed) in python. Reason for implementing type Annotation:\n1. Code documentation.\n2. Linting and validation.\n\n### :wrench: Project setup.\n```bash\n# Create project directory and readme.\nmkdir ./0x01-python_async_function/\ntouch ./0x01-python_async_function/README.md\ncd 0x01-python_async_function\n```\n\n\u003e [:point_right: Go to project](0x00-python_variable_annotations)\n\n\n![0x02. Python - Async Comprehension](https://s3.amazonaws.com/alx-intranet.hbtn.io/uploads/medias/2019/12/ee85b9f67c384e29525b.png?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=AKIARDDGGGOUSBVO6H7D%2F20230110%2Fus-east-1%2Fs3%2Faws4_request\u0026X-Amz-Date=20230110T151042Z\u0026X-Amz-Expires=86400\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=0e47e3b3f27e61fe826c4521bb00eb04fb9e07b8bd1c4927e1c8577d1623e539)\n## [0x02. Python - Async Comprehension](0x02-python_async_comprehension)\nType Annotation (Strongly Dynamically typed) in python. Reason for implementing type Annotation:\n1. Code documentation.\n2. Linting and validation.\n\n### :wrench: Project setup.\n```bash\n# Create project directory and readme.\nmkdir ./0x02-python_async_comprehension/\ntouch ./0x02-python_async_comprehension/README.md\ncd 0x02-python_async_comprehension\n```\n\n\u003e [:point_right: Go to project](0x02-python_async_comprehension)\n\n\n# :man: Author and Credits.\nThis project was done by [SE. Richard Miruka](https://github.com/RichardMiruka). Feel free to get intouch with me;\n\n:iphone: WhatsApp [+254700129706](https://wa.me/254700129706)\n\n:email: Email [richardmiruka96@gmail.com](mailto:richardmiruka96@gmail.com)\n\n:thumbsup: A lot of thanks to [ALX-Africa Software Engineering](https://www.alxafrica.com/) program for the project requirements.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frichardmiruka%2Falx-backend-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frichardmiruka%2Falx-backend-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frichardmiruka%2Falx-backend-python/lists"}