Description
1. Go through the available public apis listed here: https://github.com/toddmotto/public-apis. Select any 2 of your favorite APIs and write a python script to:
– collect data from those APIs
– save the data in a file (json/txt file)
2. Write a python script to fetch the present, future and past contest details from **Codechef** using **web scraping**.
– URL: https://www.codechef.com/contests
– Show data to user in tabular form. Check out
[tabulate](https://pypi.python.org/pypi/tabulate) package.
Install using the pip command:
“`
pip install tabulate
“`
– Also save the data in csv files.
3. Write a python script to fetch latest ICC rankings and show them to user in tabular form.
– URL: http://www.espncricinfo.com/rankings/content/page/211271.html
Reviews
There are no reviews yet.