Giter VIP home page Giter VIP logo

airbnb_clone's Introduction

65f4a1dd9c51265f49d0

AirBnb clone project

Contents

Description ๐Ÿ“„

HBnB is a complete web application, intergrating database storage, a back-end API, a front-end interfacing in a clone of AirBnB.

This version of the project currently only implements the back-end console(command line interpreter)

Environment ๐Ÿ’ป

The console has been developed on Ubuntu 20.04LTS using python3 (version 3.8.10).

Further information ๐Ÿ“‘

For further information on python version, and documentation visit python.org.

Requirements ๐Ÿ“

Knowledge in python3, how to use a command line interpreter, a computer with Ubuntu 20.04, python3 and pep8 style corrector.

Repo Contents ๐Ÿ“‹

This repository constains the following files:

File Description
AUTHORS Contains info about authors of the project
base_model.py Defines BaseModel class (parent class), and methods
user.py Defines subclass User
amenity.py Defines subclass Amenity
city.py Defines subclass City
place.py Defines subclass Place
review.py Defines subclass Review
state.py Defines subclass State
file_storage.py Creates new instance of class, serializes and deserializes data
console.py creates object, retrieves object from file, does operations on objects, updates attributes of object and destroys object
test_base_model.py unittests for base_model
test_user.py unittests for user
test_amenity.py unittests for amenity
test_city.py unittests for city
test_place.py unittests for place
test_review.py unittests for review
test_state.py unittests for state
test_file_storage.py unittests for file_storage
test_console.py unittests for console

Installation ๐Ÿ› ๏ธ

Clone the repository and run the console.py

$ git clone https://github.com/------/AirBnB_clone.git

Usage ๐Ÿ”ง

Method Description
create Creates object of given class
show Prints the string representation of an instance based on the class name and id
all Prints all string representation of all instances based or not on the class name
update Updates an instance based on the class name and id by adding or updating attribute (save the change into the JSON file)
destroy Deletes an instance based on the class name and id (save the change into the JSON file)
count Retrieve the number of instances of a class
help Prints information about specific command
quit/ EOF Exit the program
Example No.1
โžœ  AirBnB_clone git:(feature) โœ— ./console.py
(hbnb)
(hbnb) create User
c32c3dfc-1f46-4181-9b58-ec2075f72c2b
(hbnb) show User c32c3dfc-1f46-4181-9b58-ec2075f72c2b
[User] (c32c3dfc-1f46-4181-9b58-ec2075f72c2b) {'id': 'c32c3dfc-1f46-4181-9b58-ec2075f72c2b', 'created_at': datetime.datetime(2022, 11, 27, 9, 50, 33, 971380), 'updated_at': datetime.datetime(2022, 11, 27, 9, 50, 33, 971413)}
(hbnb) all User
["[User] (c32c3dfc-1f46-4181-9b58-ec2075f72c2b) {'id': 'c32c3dfc-1f46-4181-9b58-ec2075f72c2b', 'created_at': datetime.datetime(2022, 11, 27, 9, 50, 33, 971380), 'updated_at': datetime.datetime(2022, 11, 27, 9, 50, 33, 971413)}"]
(hbnb) show User
** instance id missing **
Example No.2
โžœ  AirBnB_clone git:(feature) โœ— ./console.py
(hbnb)
(hbnb) User.create()
121bd33c-9b9f-4009-aeee-862fc0f9551b
(hbnb) User.all()
["[User] (c32c3dfc-1f46-4181-9b58-ec2075f72c2b) {'id': 'c32c3dfc-1f46-4181-9b58-ec2075f72c2b', 'created_at': datetime.datetime(2022, 11, 27, 9, 50, 33, 971380), 'updated_at': datetime.datetime(2022, 11, 27, 9, 50, 33, 971413)}", "[User] (121bd33c-9b9f-4009-aeee-862fc0f9551b) {'id': '121bd33c-9b9f-4009-aeee-862fc0f9551b', 'created_at': datetime.datetime(2022, 11, 27, 9, 58, 52, 159042), 'updated_at': datetime.datetime(2022, 11, 27, 9, 58, 52, 159084)}"]
(hbnb) User.show(121bd33c-9b9f-4009-aeee-862fc0f9551b)
[User] (121bd33c-9b9f-4009-aeee-862fc0f9551b) {'id': '121bd33c-9b9f-4009-aeee-862fc0f9551b', 'created_at': datetime.datetime(2022, 11, 27, 9, 58, 52, 159042), 'updated_at': datetime.datetime(2022, 11, 27, 9, 58, 52, 159084)}
(hbnb) quit
โžœ  AirBnB_clone git:(feature) โœ—

Authors ๐Ÿ–‹๏ธ

airbnb_clone's People

Contributors

lourdel avatar k-e-ian avatar

Watchers

 avatar

Forkers

lourdel

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.