Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 1.18 KB

README.md

File metadata and controls

38 lines (21 loc) · 1.18 KB

atlantis-assignment

Assignment-1

Write a python program to scrape the list of links available in this Github repository (https://github.com/vinta/awesome-python) and search them by exact name from the console. Search result should return the github url of the result repository. 

Assignment-2

Write a python class that is able to return the meaning of an English language word provided to it in the terminal. (Use https://dictionaryapi.dev/)

Note:

Used US english dictionary.

Assignment-3

Write a python class that is able to return the flight distance between two cities given their latitude and longitude coordinates.

Note:

Used Haversine's formula

Assignment-4

Write a python class that is able to find three available WiFi networks with the strongest signal and connect to the one where the password is provided.

Note:

Check interface variable in config.py. This can different value(eg:- wlan0). Must be root to connect to wifi. Install the wifi package in root.

Run the program:

Install python 3.x.
Run in terminal:
  pip install -r requirements.txt
Run main.py in each assignment directory to check results