Giter Club home page Giter Club logo

airbnb_clone's Introduction

This directory contains all the solutions to the ALX group project 0x00. AirBnB clone - The console

Project Description

This project is the first step towards building a full web application: the AirBnB clone. In this project the focus will be placed on the console. The command interpreter should be able to do the following:

Create a new object (ex: a new User or a new Place) Retrieve an object from a file, a database etc… Do operations on objects (count, compute stats, etc…) Update attributes of an object Destroy an object

All the tasks are detailed below as follows:

Task 0

Write a README.md: description of the project description of the command interpreter: how to start it how to use it examples You should have an AUTHORS file at the root of your repository, listing all individuals having contributed content to the repository. For format, reference Docker’s AUTHORS page You should use branches and pull requests on GitHub - it will help you as team to organize your work

Task 1

Write beautiful code that passes the pycodestyle checks.

Task 2

All your files, classes, functions must be tested with unit tests Unit tests must also pass in non-interactive mode:

Task 3 in File(s) models/base_model.py, models/init.py, tests/

Write a class BaseModel that defines all common attributes/methods for other classes:

models/base_model.py Public instance attributes: id: string - assign with an uuid when an instance is created: you can use uuid.uuid4() to generate unique id but don’t forget to convert to a string the goal is to have unique id for each BaseModel created_at: datetime - assign with the current datetime when an instance is created updated_at: datetime - assign with the current datetime when an instance is created and it will be updated every time you change your object str: should print: [] (<self.id>) <self.dict> Public instance methods: save(self): updates the public instance attribute updated_at with the current datetime to_dict(self): returns a dictionary containing all keys/values of dict of the instance: by using self.dict, only instance attributes set will be returned a key class must be added to this dictionary with the class name of the object created_at and updated_at must be converted to string object in ISO format: format: %Y-%m-%dT%H:%M:%S.%f (ex: 2017-06-14T22:31:03.285259) you can use isoformat() of datetime object This method will be the first piece of the serialization/deserialization process: create a dictionary representation with “simple object type” of our BaseModel

Task 4 in File(s) models/base_model.py, tests/

Previously we created a method to generate a dictionary representation of an instance (method to_dict()).

Now it’s time to re-create an instance with this dictionary representation.

<class 'BaseModel'> -> to_dict() -> <class 'dict'> -> <class 'BaseModel'> Update models/base_model.py:

init(self, *args, **kwargs): you will use *args, **kwargs arguments for the constructor of a BaseModel. (more information inside the AirBnB clone concept page) *args won’t be used if kwargs is not empty: each key of this dictionary is an attribute name (Note class from kwargs is the only one that should not be added as an attribute. See the example output, below) each value of this dictionary is the value of this attribute name Warning: created_at and updated_at are strings in this dictionary, but inside your BaseModel instance is working with datetime object. You have to convert these strings into datetime object. Tip: you know the string format of these datetime otherwise: create id and created_at as you did previously (new instance)

Task 5 in Files(s) models/engine/file_storage.py, models/engine/init.py, models/init.py, models/base_model.py, tests/

Now we can recreate a BaseModel from another one by using a dictionary representation:

<class 'BaseModel'> -> to_dict() -> <class 'dict'> -> <class 'BaseModel'> It’s great but it’s still not persistent: every time you launch the program, you don’t restore all objects created before… The first way you will see here is to save these objects to a file.

Writing the dictionary representation to a file won’t be relevant:

Python doesn’t know how to convert a string to a dictionary (easily) It’s not human readable Using this file with another program in Python or other language will be hard. So, you will convert the dictionary representation to a JSON string. JSON is a standard representation of a data structure. With this format, humans can read and all programming languages have a JSON reader and writer.

Now the flow of serialization-deserialization will be:

<class 'BaseModel'> -> to_dict() -> <class 'dict'> -> JSON dump -> <class 'str'> -> FILE -> <class 'str'> -> JSON load -> <class 'dict'> -> <class 'BaseModel'> Magic right?

Terms:

simple Python data structure: Dictionaries, arrays, number and string. ex: { '12': { 'numbers': [1, 2, 3], 'name': "John" } } JSON string representation: String representing a simple data structure in JSON format. ex: '{ "12": { "numbers": [1, 2, 3], "name": "John" } }' Write a class FileStorage that serializes instances to a JSON file and deserializes JSON file to instances:

models/engine/file_storage.py Private class attributes: __file_path: string - path to the JSON file (ex: file.json) __objects: dictionary - empty but will store all objects by .id (ex: to store a BaseModel object with id=12121212, the key will be BaseModel.12121212) Public instance methods: all(self): returns the dictionary __objects new(self, obj): sets in __objects the obj with key .id save(self): serializes __objects to the JSON file (path: __file_path) reload(self): deserializes the JSON file to __objects (only if the JSON file (__file_path) exists ; otherwise, do nothing. If the file doesn’t exist, no exception should be raised) Update models/init.py: to create a unique FileStorage instance for your application

import file_storage.py create the variable storage, an instance of FileStorage call reload() method on this variable Update models/base_model.py: to link your BaseModel to FileStorage by using the variable storage

import the variable storage in the method save(self): call save(self) method of storage init(self, *args, **kwargs): if it’s a new instance (not from a dictionary representation), add a call to the method new(self) on storage

Task 6 in File(s) console.py

Write a program called console.py that contains the entry point of the command interpreter:

You must use the module cmd Your class definition must be: class HBNBCommand(cmd.Cmd): Your command interpreter should implement: quit and EOF to exit the program help (this action is provided by default by cmd but you should keep it updated and documented as you work through tasks) a custom prompt: (hbnb) an empty line + ENTER shouldn’t execute anything Your code should not be executed when imported

Task 7 in Files(s) console.py

Update your command interpreter (console.py) to have these commands:

create: Creates a new instance of BaseModel, saves it (to the JSON file) and prints the id. Ex: $ create BaseModel If the class name is missing, print ** class name missing ** (ex: $ create) If the class name doesn’t exist, print ** class doesn't exist ** (ex: $ create MyModel) show: Prints the string representation of an instance based on the class name and id. Ex: $ show BaseModel 1234-1234-1234. If the class name is missing, print ** class name missing ** (ex: $ show) If the class name doesn’t exist, print ** class doesn't exist ** (ex: $ show MyModel) If the id is missing, print ** instance id missing ** (ex: $ show BaseModel) If the instance of the class name doesn’t exist for the id, print ** no instance found ** (ex: $ show BaseModel 121212) destroy: Deletes an instance based on the class name and id (save the change into the JSON file). Ex: $ destroy BaseModel 1234-1234-1234. If the class name is missing, print ** class name missing ** (ex: $ destroy) If the class name doesn’t exist, print ** class doesn't exist ** (ex:$ destroy MyModel) If the id is missing, print ** instance id missing ** (ex: $ destroy BaseModel) If the instance of the class name doesn’t exist for the id, print ** no instance found ** (ex: $ destroy BaseModel 121212) all: Prints all string representation of all instances based or not on the class name. Ex: $ all BaseModel or $ all. The printed result must be a list of strings (like the example below) If the class name doesn’t exist, print ** class doesn't exist ** (ex: $ all MyModel) update: Updates an instance based on the class name and id by adding or updating attribute (save the change into the JSON file). Ex: $ update BaseModel 1234-1234-1234 email "[email protected]". Usage: update "" Only one attribute can be updated at the time You can assume the attribute name is valid (exists for this model) The attribute value must be casted to the attribute type If the class name is missing, print ** class name missing ** (ex: $ update) If the class name doesn’t exist, print ** class doesn't exist ** (ex: $ update MyModel) If the id is missing, print ** instance id missing ** (ex: $ update BaseModel) If the instance of the class name doesn’t exist for the id, print ** no instance found ** (ex: $ update BaseModel 121212) If the attribute name is missing, print ** attribute name missing ** (ex: $ update BaseModel existing-id) If the value for the attribute name doesn’t exist, print ** value missing ** (ex: $ update BaseModel existing-id first_name) All other arguments should not be used (Ex: $ update BaseModel 1234-1234-1234 email "[email protected]" first_name "Betty" = $ update BaseModel 1234-1234-1234 email "[email protected]") id, created_at and updated_at cant’ be updated. You can assume they won’t be passed in the update command Only “simple” arguments can be updated: string, integer and float. You can assume nobody will try to update list of ids or datetime Let’s add some rules:

You can assume arguments are always in the right order Each arguments are separated by a space A string argument with a space must be between double quote The error management starts from the first argument to the last one

Task 8 in File(s) models/user.py, models/engine/file_storage.py, console.py, tests/

Write a class User that inherits from BaseModel:

models/user.py Public class attributes: email: string - empty string password: string - empty string first_name: string - empty string last_name: string - empty string Update FileStorage to manage correctly serialization and deserialization of User.

Update your command interpreter (console.py) to allow show, create, destroy, update and all used with User.

Task 9 in File(s) models/state.py, models/city.py, models/amenity.py, models/place.py, models/review.py, tests/

Write all those classes that inherit from BaseModel:

State (models/state.py): Public class attributes: name: string - empty string City (models/city.py): Public class attributes: state_id: string - empty string: it will be the State.id name: string - empty string Amenity (models/amenity.py): Public class attributes: name: string - empty string Place (models/place.py): Public class attributes: city_id: string - empty string: it will be the City.id user_id: string - empty string: it will be the User.id name: string - empty string description: string - empty string number_rooms: integer - 0 number_bathrooms: integer - 0 max_guest: integer - 0 price_by_night: integer - 0 latitude: float - 0.0 longitude: float - 0.0 amenity_ids: list of string - empty list: it will be the list of Amenity.id later Review (models/review.py): Public class attributes: place_id: string - empty string: it will be the Place.id user_id: string - empty string: it will be the User.id text: string - empty string

Task 10 in File(s) console.py, models/engine/file_storage.py, tests/

Update FileStorage to manage correctly serialization and deserialization of all our new classes: Place, State, City, Amenity and Review

Update your command interpreter (console.py) to allow those actions: show, create, destroy, update and all with all classes created previously.

Enjoy your first console!

No unittests needed for the console

Task 11 in File(s) console.py

Update your command interpreter (console.py) to retrieve all instances of a class by using: .all().

Task 12 in File(s) console.py

Update your command interpreter (console.py) to retrieve the number of instances of a class: .count().

Task 13 in File(s) console.py

Update your command interpreter (console.py) to retrieve an instance based on its ID: .show().

Errors management must be the same as previously.

Task 14 in File(s) console.py

Update your command interpreter (console.py) to destroy an instance based on his ID: .destroy().

Errors management must be the same as previously.

Task 15 in File(s) console.py

Update your command interpreter (console.py) to update an instance based on his ID: .update(, , ).

Errors management must be the same as previously.

Task 16 in File(s) console.py

Update your command interpreter (console.py) to update an instance based on his ID with a dictionary: .update(, ).

Errors management must be the same as previously.

Task 17 in File(s) tests/test_console.py

Write all unittests for console.py, all features!

For testing the console, you should “intercept” STDOUT of it, we highly recommend you to use:

with patch('sys.stdout', new=StringIO()) as f: HBNBCommand().onecmd("help show") Otherwise, you will have to re-write the console by replacing precmd by default.

Contributors

airbnb_clone's People

Contributors

pasebukky avatar 0xnuru avatar

Watchers

Kostas Georgiou avatar  avatar

Forkers

0xnuru

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.