Hacker News new | ask | show | jobs
by anujkk 5075 days ago
Taking into consideration that you now have a decent understanding of python and you want to build something substantial, here are some suggestions :

1. Decide a project you want to do. Think about a piece of software you want to develop. Come up with various ideas. It can be anything - a web application, a python module, a game, a small command line utility - anything. Make sure it solves a problem and better if it can make some money for you. It will keep you motivated to complete it.

2. Think about the MVP for your project. What are the minimum set of features you need to get the first version out. Work to develop a MVP first. You can add features later.

3. Do a research to know which python or related technologies you need to develop your MVP. Learn those things and try to develop your MVP. When in doubt ask on forums like HN, Reddit, Quora, StackOverflow.

4. Continue with learn-do-learn cycle till you finally develop your MVP.

5. Show it to us. :)

Here are some different kind of projects you can try :

1) Web Application - You need to know a web framework for python apart from web technologies like HTML5, CSS3, JavaScript, jQuery, Twitter Bootstrap and a database like MySQl, MongoDB. Most popular framework for web development is Django but you can also try micro-frameworks like Flask.

2) Mashup Sites & Apps - You can fetch data from Internet through web scraping or through various public APIs made available by popular sites like facebook, twitter, g+, youtube, etc. You can then process and display these data to create interesting mashup applications. You can use Python Libraries like Requests and BeautifulSoup for web scraping.

3) Games - Develop games using PyGame.

4) GUI - If you want to develop a GUI app, I would suggest you to try Qt with python.

5) Library - Develop any new python library or improve any existing library. For example, learn how python's Requests library provided a better alternative for urllib2 library.

P.S. : If you are unable to come up with any ideas you can try some of my ideas : http://blog.anujkumar.com/post/27913522655/please-steal-my-s...