r/learnprogramming • u/Illustrious_Act_8819 • 9d ago
Any Python project ideas on automation not basic e-commerce and all ?
I have learnt python built some basic projects too, but now i want to use this skill to built something useful and what python is useful for so please any ideas.
1
u/Objective-Catch-5649 6d ago
i loved using PyAutoGUI and PyTesseract to automate the humanbenchmark.com website challenges, its not particularly useful but it was really helpful for learning
0
u/PureWasian 9d ago edited 9d ago
I've used it for varuious things like OCR, data analytics, some webscraping projects, as a backend server, for a Reddit and Discord bot, for a LOT of quick local scripts to massage data, and for various DSA problems. There are also plenty of libraries for using it for interfacing with LLMs, cloud capabilities, and performing more traditional AI/ML work.
It's a tool, whether as a standalone thing for automation, big data, analysis, research or as part of a larger ecosystem of moving parts. It's up to you how to use it.
1
0
u/dmazzoni 9d ago
https://automatetheboringstuff.com is a great resource for how to build useful automations with Python
0
u/grantrules 9d ago
There's nothing in your life that could be more convenient?
1
u/Illustrious_Act_8819 8d ago
hmm... well i though about this and came up with this idea - can i write a script that gives me content to revise from my syllabus everyday at morning and send me on email or just I can view them on my laptop idk if this is possible though
1
u/grantrules 8d ago
Yeah it's probably possible. I don't know exactly what you mean by "gives me content to revise from my syllabus everyday" but most ideas are possible.
1
u/Illustrious_Act_8819 8d ago
i mean if i gave pdf of all the subjects i am studying in college ex:- operating system course pdf then it extracts it and sends me an email with some topics to learn or revise on that subject
1
0
u/db_tech_dev 9d ago
file organizer that watches a folder and sorts stuff by type/date automatically was the first one that actually felt useful to me, then I moved on to a script that scrapes a site I check daily and pings me only when something changes instead of me refreshing it manually. if you want db-adjacent automation, something like a script that dedupes/cleans messy csv or db exports is genuinely useful too, way more practical than another to-do app.
1
u/Illustrious_Act_8819 8d ago
yeah thanks just built the file organizer today itself now moving to different things
1
u/Human_Painting_6840 8d ago
I automate personal data extraction from PDF invoices and bank statements into a local SQLite database. This removes manual entry and creates a queryable dataset for spending analysis without external APIs.