{"id":19465160,"url":"https://github.com/brendon45/airbnb_clone","last_synced_at":"2026-06-10T22:31:21.472Z","repository":{"id":221238380,"uuid":"753804041","full_name":"Brendon45/AirBnB_clone","owner":"Brendon45","description":"This is the AirBnB clone - The console (hbnb) repository from ALX","archived":false,"fork":false,"pushed_at":"2024-02-19T21:13:52.000Z","size":99,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T13:41:54.069Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/Brendon45.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":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-06T20:27:21.000Z","updated_at":"2024-04-09T19:04:54.000Z","dependencies_parsed_at":"2025-02-25T13:49:54.653Z","dependency_job_id":null,"html_url":"https://github.com/Brendon45/AirBnB_clone","commit_stats":null,"previous_names":["brendon45/airbnb_clone"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Brendon45/AirBnB_clone","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Brendon45%2FAirBnB_clone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Brendon45%2FAirBnB_clone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Brendon45%2FAirBnB_clone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Brendon45%2FAirBnB_clone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Brendon45","download_url":"https://codeload.github.com/Brendon45/AirBnB_clone/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Brendon45%2FAirBnB_clone/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34174148,"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-10T02:00:07.152Z","response_time":89,"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":[],"created_at":"2024-11-10T18:19:02.523Z","updated_at":"2026-06-10T22:31:21.453Z","avatar_url":"https://github.com/Brendon45.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 0x00. AirBnB clone - The console\n\n## Welcome to the AirBnB clone project!\nBefore starting, please read the AirBnB concept page.\n\n## First step: Write a command interpreter to manage your AirBnB objects.\nThis is the first step towards building your first full web application: the AirBnB clone. This first step is very important because you will use what you build during this project with all other following projects: HTML/CSS templating, database storage, API, front-end integration…\n\n## Each task is linked and will help you to:\n\n- put in place a parent class (called BaseModel) to take care of the initialization, serialization and deserialization of your future instances\n- create a simple flow of serialization/deserialization: Instance \u003c-\u003e Dictionary \u003c-\u003e JSON string \u003c-\u003e file\n- create all classes used for AirBnB (User, State, City, Place…) that inherit from BaseModel\n- create the first abstracted storage engine of the project: File storage.\n- create all unittests to validate all our classes and storage engine\n\n![AIRBNB!](https://s3.amazonaws.com/alx-intranet.hbtn.io/uploads/medias/2018/6/65f4a1dd9c51265f49d0.png?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=AKIARDDGGGOUSBVO6H7D%2F20240206%2Fus-east-1%2Fs3%2Faws4_request\u0026X-Amz-Date=20240206T193524Z\u0026X-Amz-Expires=86400\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=67432a4202eff52e372532c801cf0e2d532b9a14d8309fe5b2463a4e74634a29)\n\n## What’s a command interpreter?\n## Do you remember the Shell? It’s exactly the same but limited to a specific use-case. In our case, we want to be able to manage the objects of our project:\n\n- Create a new object (ex: a new User or a new Place)\n- Retrieve an object from a file, a database etc…\n- Do operations on objects (count, compute stats, etc…)\n- Update attributes of an object\n- Destroy an object\n\n## Execution\n## Your shell should work like this in interactive mode:\n\n$ ./console.py\n(hbnb) help\n\nDocumented commands (type help \u003ctopic\u003e):\n========================================\nEOF  help  quit\n\n(hbnb) \n(hbnb) \n(hbnb) quit\n$\n\n## But also in non-interactive mode: (like the Shell project in C)\n\n$ echo \"help\" | ./console.py\n(hbnb)\n\n## Documented commands (type help \u003ctopic\u003e):\n========================================\nEOF  help  quit\n(hbnb) \n$\n$ cat test_help\nhelp\n$\n$ cat test_help | ./console.py\n(hbnb)\n\n## Documented commands (type help \u003ctopic\u003e):\n========================================\nEOF  help  quit\n(hbnb) \n$\n\nAll tests should also pass in non-interactive mode: $ echo \"python3 -m unittest discover tests\" | bash\n\n![CHEESE!](https://s3.amazonaws.com/alx-intranet.hbtn.io/uploads/medias/2018/6/815046647d23428a14ca.png?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=AKIARDDGGGOUSBVO6H7D%2F20240206%2Fus-east-1%2Fs3%2Faws4_request\u0026X-Amz-Date=20240206T211943Z\u0026X-Amz-Expires=86400\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=ea727ba4aaff1301048c1d1fd51b72319caca67f05c837af4f07bca6f19bc8ab)\n\n## AUTHORS\nBrendon Jeje \u003cjejebrendon722@gmai.com\u003e\n\n![AKUREK](https://www.codester.com/static/uploads/items/000/021/21656/preview.jpg)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrendon45%2Fairbnb_clone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrendon45%2Fairbnb_clone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrendon45%2Fairbnb_clone/lists"}