Jump to content

[SOLVED] Python program Ideas


Recommended Posts

So I have to learn Python for my job as a tutor at my college. I know all the basic stuff, and the syntax that goes along with it, and the more advanced stuff I can figure out pretty easily (just have to learn the syntactical rules for it) Does anyone have any ideas for interesting, medium level projects I can do? Or a website with some cool projects? I've always been bad at coming up with ideas...

 

I was thinking of making a chat program, but I want to do a simpler project before I get into a chat program. I will be using the Tkinter module for a gui, if that makes a difference

Link to comment
Share on other sites

The first program I wrote in Python was a simple 'notes' command line program.

 

Here's the output of its -h call.

 

thorpe@oblivion ~ $ note -h

    Usage: note.py [OPTION]... [NOTE / SEARCH STRING]...

Take a note, or display notes.

-a --add        Add a new note.
-d --del        Delete note(s) specified by note number.
-h --help       This help file.
-s --search     Search notes for a search.
    
thorpe@oblivion ~ $ 

 

I still use this program allot (written about 4 years ago) to keep notes on what admin tasks Ive done on servers and stuff. Originally I had it simply writing to a text file, but now days it writes to an sqlite database. Ive also been thinking of building a small server into it so that I can keep all my notes (from all my machines) within one central location.

 

Just an idea.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.