Top Interesting project in python


1. Data Visualizer:

In our daily life, we generate a lot of data. Many company search patterns inside data and deliver the right content to the right person. But in the normal eye, maximum data is just a number if we visualize them then we can find a pattern inside them easily. In Python, there is one beautiful library present for representing data in a graphical format called Matplotlib. There is one dedicated software present called MATLAB that can produce graphs from data. But that is a huge software. But if you search then you can see all data scientists and data engineers love python.

If I talk about data visualizer it is also made by the python library Matplolib, Tkinter, and Mysql connector. As I previously discussed that Matplotlib can represent data in a graphical format. Tkinter is also a python library used for making graphical user interfaces (GUI). And MySQL connector is used for making connections between python and MySQL databases.

The actual work of this project is that it can fetch data from the MySQL database and represent the data in a graphical format.  

Matplotlib is an external library so you have to install it by pip( python installer package). Tkinter is an inbuilt package and the last MySQL connector is also installed by pip.

View source code: click here

2. Url shortener:

When we want to share some links then sometimes we see that some links are really big and if you are a professional worker then this big link is bad to share. But if you short them then the link looks beautiful to you. This project is made for this purpose.

View source code: click here

3. May I help:

If you use Microsoft Windows then you have heard about Cortana. In Cortana, you can speak and write something then according to your instruction, it will open any application or perform a task. This is the same type of project. You have to say something by voice to your computer then it will perform the task for you. You can say open the camera, open chrome, open notepad or search something in google then it will perform the task.

For this project, you need speech recognization, text to speech converter library. You can install it by simply running the pip install command in any terminal.

View source code: click here

4. Weather server:

When you open your mobile or computer then if you are connected to the internet then you can easily see the weather. Actually, someone has to measure the weather and update it on a site then we can see the weather from the site.

This is a project that collects real-time data from the environment by using Arduino and a sensor and sends it to a database by python and any website fetches the data from the database and shows the real-time data to their website. Here pyserial is used to make serial communication between python and Arduino.

View source code: click here

Comments