README 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # PWMAN3
  2. A nice command line password manager, which is smart enough to use different SQL Databases (MySQL, SQLite, BerkelyDB).
  3. Pwman3 can also copy passwords to the clipboard (on Mac and Linux) without exposing them, so you save
  4. some typing.
  5. Besides managing and storing passwords, Pwman3 can also generate passwords using different algorithms.
  6. == Installing ==
  7. Pwman3 requires the following debian packages:
  8. when using python 2.4
  9. python-pysqlite2
  10. python-celementtree
  11. python-crypto
  12. when using python >= 2.5
  13. python-crypto
  14. for nicer functionality:
  15. xsel - to copy password to clipboard on Linux
  16. To install:
  17. $ python setup.py install
  18. == ikegam's function ==
  19. * making a password from the numeric character and the alphabet character ([A-Za-z0-9]).
  20. You can add a parametor for making the password to the config(~/.pwman/config).
  21. For Example)
  22. [Generator]
  23. numerics = true
  24. * Passwords can be l33tified similarly using the following.
  25. [Generator]
  26. leetify = true
  27. * Copying password to X11 or Mac clipbord:
  28. - On Mac OSX systems copying utilizes `pbcopy`
  29. - On X11 Systems Specify the path to `xsel` if you already have `~/.pwman/config`
  30. [Global]
  31. xsel = yes
  32. xselpath = /usr/bin/xsel
  33. When launching `pwman` for the first time, it will try and look for
  34. `xsel` and write the configuration properly.