Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 1.35 KB

README.md

File metadata and controls

25 lines (21 loc) · 1.35 KB

Python-Projects

Built 3 small basic python projects for practicing python concepts like conditional loops, if-else-elif, working with json files, using API.

1. To-Do app

It is a normal CLI based functionality which is using CRUD functions where we can add tasks, update tasks, read the whole list and also can delete a single task or can clear the entire row, also ticking the task as done or not is also available.

Things learned from this:

  1. Basic CRUD understanding and applications
  2. Strengthen if-else use cases.
  3. Coding

2. Contact Book

Again a CLI based software where we can directly save our contacts into a json file where you can easily see and fetch details of any user saved previously.

Things learned from this:

  1. Using python for json
  2. file management
  3. Storing elements into json format

3. Currency converter

It is a software where I have used an API, which helps to keep the currency exchange rates as updated as possible and also reduced work as if coding itself it will take alot of time to cover that much currencies available on the circular globe. It uses requests library to get and post things, used streamlit to deploying the functionalities as use case.

Learnings:

  1. Using API, how to get API key
  2. How API works
  3. Streamlit basics and how to use it to deploy basic website as a software
  4. how to get and post queries