NETSS

Registered Member
Joined
Jan 2, 2018
Messages
64
Reaction score
13
Hi, I just learned python and did some scrips for my personal use , of course nothing too complex, still ,
im lacking of imaginations so I now want to do some projects that will help me learn and practice python further. Any projects that are good for beginners? or even if you have something done , i can try for free of course
 
go on a website like with sport stats .

scrape all the info in a database be fun

when mastered that move onto other scraping website like .

twitter
fb
ect

when mastered done .

clone the website with scraped info .

move next project .
 
I find myself most motivated when I am writing software to solve a problem that I have, rather than a problem someone else told me to solve.
 
Hi, I just learned python and did some scrips for my personal use , of course nothing too complex, still ,
im lacking of imaginations so I now want to do some projects that will help me learn and practice python further. Any projects that are good for beginners? or even if you have something done , i can try for free of course

A maintenance system.

You want a system to keep an inventory of books, so you want to add, edit, delete and list products (CRUDL).

Something like this one

newsletters-category_form.png


You could start with a simple "database model":

Table Book:
  • BookId (primary key, identity, integer)
  • Name (varchar)
  • Description (varchar)

  • For this, you will need a database, so you can learn to install and configure one, then to use it.
  • Then, you should learn to use a framework such as django or flask (Django is way more popular, so it must be your pick if you want to land a job).
  • Then, you should learn the basic of html (template)
  • Duct-tape everything and that's it.

Python (as a language) is easy, but nobody uses vanilla-python, everybody uses Python+one or more than one library. So the trick is to apply Python over to learn the syntax.
 
Back
Top