Simple python(?) notes script

hehe2444

Regular Member
Joined
Feb 24, 2017
Messages
496
Reaction score
256
I made this in paint and wanted to know if this program can be created with python and if not what programming language should I look for. This is similar to Evernote but much basic and I need only these functions.

If I press "add notes" button I should write some text and that text will appear in Inbox.

When I click on "move notes" I will select a text from inbox and move it to my specified tag, for example "Tag 1" and it will disappear from inbox. I can view that text if I press on "Tag 1" button

notes script.png
 
Hmm like apple notes? :p

Sure, it can be done with pyqt. But I recommend using a language like c++ instead of pyqt.

What OS platform are you targeting by the way?
 
Hmm like apple notes? :p

Sure, it can be done with pyqt. But I recommend using a language like c++ instead of pyqt.

What OS platform are you targeting by the way?

Not sure how apple notes looklike

Win10

Do you think this script is hard to make?
 
Python can do this.. You want an app or a website?
 
Not sure how apple notes looklike

Win10

Do you think this script is hard to make?
Not really... This should be a super simple software to try making yourself. Can be a good learning project. Before you dive in, think about what you are going to use for the storage as well... e.g. using a local sqlite db vs storing in the cloud etc.
 
Python can do this.. You want an app or a website?

app

Not really... This should be a super simple software to try making yourself. Can be a good learning project. Before you dive in, think about what you are going to use for the storage as well... e.g. using a local sqlite db vs storing in the cloud etc.

local sqllite or if it's more simple, maybe the bot can create a notepad in his working folder and that notepad will contain data from inbox. Another notepad for tag 1 etc.

I can start by searching tutorial for pyqt?
 
A simple solution in Python would require Flask and a Sqlite db, the rest being HTML + CSS + JS
Not so hard if you would like to code it yourself.
 
app



local sqllite or if it's more simple, maybe the bot can create a notepad in his working folder and that notepad will contain data from inbox. Another notepad for tag 1 etc.

I can start by searching tutorial for pyqt?
sqlite is super simple. If you want to keep things local, go for it.
Try this example:
Code:
https://www.learnpyqt.com/examples/no2pads-simple-notepad-clone/
Or search for "pyqt notepad example". I am sure you will find lots of example projects.
A simple solution in Python would require Flask and a Sqlite db, the rest being HTML + CSS + JS
Not so hard if you would like to code it yourself.
Well, this is another way of doing the same thing; if you want a web based interface. Should work just as good.
 
Not really.. No..
A simple solution in Python would require Flask and a Sqlite db, the rest being HTML + CSS + JS
Not so hard if you would like to code it yourself.
sqlite is super simple. If you want to keep things local, go for it.
Try this example:
Code:
https://www.learnpyqt.com/examples/no2pads-simple-notepad-clone/
Or search for "pyqt notepad example". I am sure you will find lots of example projects.

Well, this is another way of doing the same thing; if you want a web based interface. Should work just as good.
Yea, you can do this with Python easy.


I posted in Hire a freelancer maybe someone from this thread is interested.

https://www.blackhatworld.com/seo/looking-for-simple-python-notes-script.1306371/
Thanks for your help
 
One last idea, pretty much useless now that you're hiring, but maybe someone else uses this.. oh whatever. Contenteditable html saves stuff to local storage.
Just input this into address field in (almost) any browser:
data:text/html, <html contenteditable>
You will get an editable blank page.
This may be tweaked with tables, javascript that does stuff (your tags sorting there), maybe add Tiny MCE to it or other cool stuff.
All without a database, everything stays in your browser's memory (as long as you don't delete the cache or use incognito browsing lol).
 
Back
Top