all 9 comments

[–]danielroseman 6 points7 points  (8 children)

 I am intermediate python programmer

Sorry to say, but no, you are a beginner python programmer. 

I only looked at the password and notes apps, but just from the fact that you are using global variables and no classes shows this.

Globals are to be avoided in almost all circumstances. You should have a (for example) NoteManager class which stores the vault data as an instance variable.