Giter Site home page Giter Site logo

airbnb_clone's Introduction

AirBnB clone - The console

Description

This team project is part of the Holberton School Full-Stack Software Engineer program. It's the first step towards building our first full web application: an AirBnB clone. This first step consists of a custom command-line interface for data management and the base classes for the storage of this data.

Usage

Our console works in interactive mode and non-interactive mode, like a Unix shell.

It prints the prompt (hbnb) and waits for the user for input.

Command Example
Run the console ./console.py
Quit the console (hbnb) quit
Display the help for a command (hbnb) help <command>
Create an object (prints its id) (hbnb) create <class>
Show an object (hbnb) show <class> <id> or (hbnb) <class>.show(<id>)
Destroy an object (hbnb) destroy <class> <id> or (hbnb) <class>.destroy(<id>)
Show all objects, or all instances of a class (hbnb) all or (hbnb) all <class>
Update an attribute of an object (hbnb) update <class> <id> <attribute name> "<attribute value>" or (hbnb) <class>.update(<id>, <attribute name>, "<attribute value>")
Count the number of instances of an object (hbnb) <class>.count()
Update attributes of an object using an dictionary (hbnb) <class>.update("<id>", {dictionary representation})

Note: For updating attributes using a dictionary representation:

  • The class ID must be in double quotes in order for the dictionary to be parsed correctly
  • If the attribute value is a string, use the format: 'key': "value"
  • If the attribute value is a number, use the format: "key": value

Non-interactive mode example

$ echo "help" | ./console.py
(hbnb)
Documented commands (type help <topic>):
========================================
EOF  all  create  destroy  help  quit  show  update

(hbnb)
$

Models

The folder models contains all the classes used in this project.

File Description Attributes
base_model.py BaseModel class for all the other classes id, created_at, updated_at
user.py User class for future user information email, password, first_name, last_name
amenity.py Amenity class for future amenity information name
city.py City class for future location information state_id, name
state.py State class for future location information name
place.py Place class for future accommodation information city_id, user_id, name, description, number_rooms, number_bathrooms, max_guest, price_by_night, latitude, longitude, amenity_ids
review.py Review class for future user/host review information place_id, user_id, text

File storage

The folder engine manages the serialization and de-serialization of all the data, following a JSON format.

A FileStorage class is defined in file_storage.py with methods like so: <object> -> to_dict() -> <dictionary> -> JSON dump -> <json string> -> FILE -> <json string> -> JSON load -> <dictionary> -> <object>

The init.py file contains the instantiation of the FileStorage class called storage, followed by a call to the method reload() on that instance. This allows the storage to be reloaded automatically at initialization, which recovers the serialized data.

Tests

All the code is tested with the unittest module.

The tests for the classes are in the test_models folder.

Tests for file storage are in test_engine.

Tests for the console itself are in tests.

Shoutouts

This project was made possible through an alliance between Vim and Emacs users.

This README was created in stackedit.io.

This pandemic is the worst.

Authors

airbnb_clone's People

Contributors

tabbykatz avatar zacwoll avatar

Watchers

 avatar  avatar  avatar

Forkers

zacwoll

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.