{"id":23095308,"url":"https://github.com/micahondiwa/alx-higher_level_programming","last_synced_at":"2026-05-08T17:45:26.429Z","repository":{"id":63896537,"uuid":"571579586","full_name":"micahondiwa/alx-higher_level_programming","owner":"micahondiwa","description":"Higher-level programming at Holberton School/Alx-Africa with specialization in Python 3, JavaScript and SQL","archived":false,"fork":false,"pushed_at":"2023-08-21T08:16:05.000Z","size":483,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-03T19:34:30.979Z","etag":null,"topics":["alchemy","datastructures","devo","higher-level-languages","higher-level-programming","orm","python-3","python-data-structures","python-script","sql","sqlite","sqlite3","sqlserver","webdevelopment","webscraping"],"latest_commit_sha":null,"homepage":"https://github.com/micahondiwa/alx-higher_level_programming","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/micahondiwa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2022-11-28T12:46:02.000Z","updated_at":"2024-01-12T18:49:46.000Z","dependencies_parsed_at":"2025-02-09T07:45:03.814Z","dependency_job_id":null,"html_url":"https://github.com/micahondiwa/alx-higher_level_programming","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/micahondiwa/alx-higher_level_programming","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/micahondiwa%2Falx-higher_level_programming","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/micahondiwa%2Falx-higher_level_programming/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/micahondiwa%2Falx-higher_level_programming/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/micahondiwa%2Falx-higher_level_programming/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/micahondiwa","download_url":"https://codeload.github.com/micahondiwa/alx-higher_level_programming/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/micahondiwa%2Falx-higher_level_programming/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32791399,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["alchemy","datastructures","devo","higher-level-languages","higher-level-programming","orm","python-3","python-data-structures","python-script","sql","sqlite","sqlite3","sqlserver","webdevelopment","webscraping"],"created_at":"2024-12-16T22:21:34.963Z","updated_at":"2026-05-08T17:45:26.393Z","avatar_url":"https://github.com/micahondiwa.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Higher Level Programming\n\n- Projects done during my Full Stack Software Engineering studies at [ALX Africa](https://www.alxafrica.com/software-engineering-2022/), a course offered by [Holberton School](https://www.holbertonschool.com/)\n\n## Technologies\n\n- Files written in ```vi```, ```vim```, and ```emacs``` editors. \n- C files compiled using ```gcc 9.4.0```.\n- C files wriiten according to the betty coding style. Checked using [betty-style.pl](https://github.com/holbertonschool/Betty/blob/master/betty-style.pl) and [betty-doc.pl](https://github.com/holbertonschool/Betty/blob/master/betty-doc.pl).\n- Files tested on ```Ubuntu 20.04``` LTS using ```gcc```.\n- ```Python3.4``` files \n- SQL files executed on Ubuntu 20.04 LTS using MySQL 8.0 (version 8.0.25)\n\n## Directories \n\n| Directory  | Description |\n| ---  | --- |\n|[0x00-python-hello_world](0x00-python-hello_world) |Fundamental introduction to Python programming.|\n|[0x01-python-if_else_loops_functions](0x01-python-if_else_loops_functions)|Implenting ```if```, ```if``` ... ```else``` statements, ```while``` and ```for``` loops, ```break``` and ```continues``` statements, ```else```  clauses on loops, ```pass``` statement do, and when to use it, and ```range``` in ```Python3```|\n|[0x02-python-import_modules](0x02-python-import_modules)|Implents python Modules, Command line arguments, and Pycodestyle – Style Guide for Python Code|\n|[0x03-python-data_structures](0x03-python-data_structures)|Implements data structures n python - lists and tuples.|\n|[0x04-python-more_data_structures](0x04-python-more_data_structures)| More on data Structures: Set, Dictionary in python.|\n|[0x05-python-exceptions](0x05-python-exceptions)|Implementng Errors and Exceptions in Python.|\n|[0x06-python-classes](0x06-python-classes)|Implements objects and classes in Python.|\n|[0x07-python-test_driven_development](0x07-python-test_driven_development)|Implementing both Unit Test and Doctest in Python.\n|[0x08-python-more_classes](0x08-python-more_classes)|Implements python Objects and Classes|\n|[0x09-python-everything_is_object](0x09-python-everything_is_object)|Examines how Python works with different types of objects.|\n|[0x0A-python-inheritance](0x0A-python-inheritance)| Implementes inheritance in classes using python|\n|[0x0B-python-input_output](0x0B-python-input_output)|Implenting I/O in python.|\n|[0x0C-python-almost_a_circle](0x0C-python-almost_a_circle)| Python logics and output.|\n|[0x0D-SQL_introduction](0x0D-SQL_introduction)| Introduction to SQL|\n|[0x0E-SQL_more_queries](0x0E-SQL_more_queries)| More on SQL including creating, databases, tablers users, and granting permissions to users|\n|[0x0F-python-object_relational_mapping](0x0F-python-object_relational_mapping)|Python object relational mapping- SQLAlchemy.|\n|[0x10-python-network_0](0x10-python-network_0)|Networking in Python|\n|[0x11-python-network_1](0x11-python-network_1)| Networking in Python.|\n|[0x12-javascript-warm_up](0x12-javascript-warm_up)| An introduction to JavaScript.|\n|[0x13-javascript_objects_scopes_closures](0x13-javascript_objects_scopes_closures)| Implementting objects, closures and classes in Javascript|\n|[0x14-javascript-web_scraping](0x14-javascript-web_scraping)|Implenting web scrapping in JavaScript|\n|[0x15-javascript-web_jquery](0x15-javascript-web_jquery)|JavaScript JQuery|\n\nContributors: [micah Ondiwa](github.com/micahondiwa)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicahondiwa%2Falx-higher_level_programming","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmicahondiwa%2Falx-higher_level_programming","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicahondiwa%2Falx-higher_level_programming/lists"}