Keep Tabs on Your Data with Pygmynote
Productivity Sauce
When it comes to filers and pilers, I firmly belong to the latter category. I do like to keep all my disparate data -- notes, links, to-dos, etc. -- in one application, so when I need to find something, I have to look in one place. That's why I wrote a simple Python command-line tool that acts as my personal data manager. While there are many open source applications out there that provide this type of functionality, none of them scratch my particular itches. So I wrote my dead-simple script that does pretty much anything I need. The first version of Pygmynote was released in August 2008, followed by a major update in January 2009. A few days ago, I released version 0.5.1 which fixes a few annoying bugs and adds a couple of new features.
Pygmynote allows you to save any type of text-based data in an SQLite database. The script provides just a handful of easy to remember commands, so you can learn to use it in a matter of minutes. The h command provides a list of all available commands with their descriptions. Despite its simplicity, Pygmynote has a couple of nifty tricks up its sleeve. For example, if you specify a due date for the record, you can treat it as a task, and the tl command lists all active tasks in the database. Once the task is complete, you can mark it as hidden using the u command, so it doesn't appear in the list of active tasks. When you run the script, it automatically displays the current deadlines. When adding a record, you have an option to insert text from a text file. This can come in handy when you want to import existing notes to Pygmynote, or when you want to insert a multi-line note.
Instead of using Pygmynote on my production machine, I run the script on my home server, so I can access it from anywhere using an SSH connection. And using the ConnectBot SSH client, I can access my data from my Android device.
Pygmynote can also export records in a text or CSV file (the w command). You can use this feature to display the tasks on your desktop with Conky. By default, Pygmynote exports all existing records, so you have to tweak the code a bit to export only active tasks:
# Save all notes as pygmynote.txt cursor.execute("SELECT due, note, tags FROM notes WHERE due <> '' AND type = 'A' ORDER BY due ASC") rows = cursor.fetchall() if os.path.exists('pygmynote.txt'): os.remove('pygmynote.txt') for row in rows: filename = 'pygmynote.txt' file = open(filename, 'a') file.write('%s -- %s [%s]\n' % (row[0], row[1], row[2])) file.close() print _(u'\nRecords have been saved in the pygmynote.txt file.')
Add the following command to my .conkyrc file, and you are done:
${execi 30 cat /path/to/pygmynote.txt}
Pygmynote is a simple script that was developed for rather specific purposes. But I'm open to suggestions and ideas. The script is released under GPLv3, so you are free to hack it to your liking.
comments powered by DisqusSubscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.