Dependencies - python3
-
Clone the project
-
cd into the hash/ directory
-
Run with
python reverse_hash.py
-
Run test with
python test_reverse_hash.py
hash_to_str method in HashIt class contains the logic of reversing the hash
Dependencies - python3, BeautifulSoup, requests
Note - Make sure you have pip and virtualenv installed
-
Clone the project
-
cd into the project directory
-
Create virtual environment -
virtualenv -p /usr/bin/python3 venv
-
Activate env -
source venv/bin/activate
-
Install dependencies -
pip install -r requirements.txt
-
cd into crawler/ directory
-
For query 1-
python crawler.py <keyword>
python crawler.py abc
python crawler.py abc_def_ghi
(For multiple words keyword use underscores)python crawler.py subtle_art_of_not_giving_a
Expect total number of results for search keyword or relevant error message.
-
For query 2-
python crawler.py <keyword> <page number>
Note Arguments are expected to be in order as mentioned in question for desired results.python crawler.py abc 8
python crawler.py abc_def 5
python crawler.py subtle_art_of_not_giving_a 3
Expect a dictionary with {position : product_name} for all products on requested page number for search keyword or relevant error message
-
Run tests with
python test_crawler.py