This project is a review of everything learned in Python up until 09/13/17:
- Import
- Exceptions
- Class
- Private attribute
- Getter/Setter
- Class method
- Static method
- Inheritance
- Unittest
- Read/Write file
- args and kwargs
- Serialization/Deserialization
- JSON
- models
- base.py - Contains the base class
Base
- rectangle.py - Contains the class
Rectangle
, a subclass ofBase
- square.py - Contains the class
Square
, a subclass ofRectangle
- base.py - Contains the base class
- tests
- test_models
- test_base.py - Contains all tests pertaining to class
Base
- test_rectangle.py - Contains all tests pertaining to class
Rectangle
- test_square.py - Contains all tests pertaining to class
Square
- test_base.py - Contains all tests pertaining to class
- test_models