A python app that extracts useful information from a property guru link.
The following class represents the extracted information on each property listing visited.
class Property:
address : str
link : str
price : float
floor : str
sqft : float
years_Left : float
year_built : int
lease_length : int
- address - the local address of the property.
- link - the full length property guru listing url
- price - listing price in dollars
- floor - high, medium, low floors
- sqft - the property's floor size in squarefeet
- years_left - number of years left on the lease to the property
- year_built - Gregarian calendar year that this property was built
- lease_length - length (in years) of the lease on this property
To install this project's depedencies, run the following command at the root of this repository:
Linux/MacOS
python -m pip install -r requirements.txt
Windows
py -m pip install -r requirements.txt OR pip install -r requirements.txt
run the cli with the command:
Linux/MacOS
python main.py
Windows
py main.py