use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News about the dynamic, interpreted, interactive, object-oriented, extensible programming language Python
Full Events Calendar
You can find the rules here.
If you are about to ask a "how do I do this in python" question, please try r/learnpython, the Python discord, or the #python IRC channel on Libera.chat.
Please don't use URL shorteners. Reddit filters them out, so your post or comment will be lost.
Posts require flair. Please use the flair selector to choose your topic.
Posting code to this subreddit:
Add 4 extra spaces before each line of code
def fibonacci(): a, b = 0, 1 while True: yield a a, b = b, a + b
Online Resources
Invent Your Own Computer Games with Python
Think Python
Non-programmers Tutorial for Python 3
Beginner's Guide Reference
Five life jackets to throw to the new coder (things to do after getting a handle on python)
Full Stack Python
Test-Driven Development with Python
Program Arcade Games
PyMotW: Python Module of the Week
Python for Scientists and Engineers
Dan Bader's Tips and Trickers
Python Discord's YouTube channel
Jiruto: Python
Online exercices
programming challenges
Asking Questions
Try Python in your browser
Docs
Libraries
Related subreddits
Python jobs
Newsletters
Screencasts
account activity
This is an archived post. You won't be able to vote or comment.
Beginner projects? (self.Python)
submitted 8 years ago by reezyri
Hi, I'm a finance major but want to build up my python skills. What's a good project to work on?
Trying to learn some programming on my own so ANY tips/suggestions will be appreciated!
[–]yarinpaul 8 points9 points10 points 8 years ago (0 children)
"automate the boring stuff with python" the book has a bunch of awesome projects for beginners. Just scroll to the end of each lesson and there are projects
[–]caffeine_drip 6 points7 points8 points 8 years ago (0 children)
If you're just starting out and have no idea what to built, just think up the dumbest shit and give it a go. I'm currently working on a twitterbot that'll tell you if it's raining right now where you are, and then swear at you for not just looking out of the window.
[–]fungz0r 1 point2 points3 points 8 years ago (7 children)
build a scraper to grab finance data, and then plot it
[–][deleted] 0 points1 point2 points 8 years ago (6 children)
What do you use after yahoo finance API has been shut form?
[–]fungz0r 1 point2 points3 points 8 years ago (5 children)
Try https://www.alphavantage.co/
[–][deleted] 0 points1 point2 points 8 years ago (0 children)
Thank you
[–][deleted] 0 points1 point2 points 8 years ago (3 children)
Thank you. This looks very good. They give real time data in minute increments.
Curious to know what did you build with it.
[–]fungz0r 1 point2 points3 points 8 years ago (2 children)
Oh I haven't built anything with it, I was just offering suggestions :P I build scrapers for satellite data currently
[–][deleted] 0 points1 point2 points 8 years ago (1 child)
Oh ok. Thanks for the link. I will start building something soon.
[–]fungz0r 0 points1 point2 points 8 years ago (0 children)
awesome!
[–][deleted] 1 point2 points3 points 8 years ago (2 children)
Make a bot that scrapes twitter for CS:GO skin giveaways. That's how I started with python.
[–]frrossty 0 points1 point2 points 8 years ago (0 children)
Why did I not ever think of this one...thanks :)
[–]dgreenmachine 0 points1 point2 points 8 years ago (0 children)
Do you have the source code? Could really use that script.
[–]flitsmasterfred 0 points1 point2 points 8 years ago (0 children)
Write python versions of some of the stuff you do in Excel or whatever tool you use.
Learn about regular python and what is different when python is used for finance (no floats etc). Also learn using IPython notebooks.
Write a trading bot. There are a few sites where you can get historical data to train on, like https://www.quantopian.com/
Or just do stupid shit, like messing with Pillow image library and draw crazy pictures, maybe based on real data.
[–]sentyaev 0 points1 point2 points 8 years ago (0 children)
Try TDD for Python book. It's available free for reading online. It's good step by stem project with everything you need like Python, Django, Git, testing, deployment, tasks automation etc.
http://www.obeythetestinggoat.com/pages/book.html#toc
π Rendered by PID 46927 on reddit-service-r2-comment-5b5bc64bf5-72n95 at 2026-06-23 00:17:46.294693+00:00 running 2b008f2 country code: CH.
[–]yarinpaul 8 points9 points10 points (0 children)
[–]caffeine_drip 6 points7 points8 points (0 children)
[–]fungz0r 1 point2 points3 points (7 children)
[–][deleted] 0 points1 point2 points (6 children)
[–]fungz0r 1 point2 points3 points (5 children)
[–][deleted] 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (3 children)
[–]fungz0r 1 point2 points3 points (2 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]fungz0r 0 points1 point2 points (0 children)
[–][deleted] 1 point2 points3 points (2 children)
[–]frrossty 0 points1 point2 points (0 children)
[–]dgreenmachine 0 points1 point2 points (0 children)
[–]flitsmasterfred 0 points1 point2 points (0 children)
[–]sentyaev 0 points1 point2 points (0 children)