Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jarrodmillman/accountman
https://github.com/jarrodmillman/accountman
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jarrodmillman/accountman
- Owner: jarrodmillman
- Created: 2010-10-18T08:30:10.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2010-10-18T14:26:07.000Z (about 14 years ago)
- Last Synced: 2024-11-01T14:12:04.583Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
.. -*- rest -*-
.. vim:syntax=rest======================
Simple account manager
======================AccountMan provides a command-line interface to store and retrieve
account information (i.e., url, name, password). Account information
is stored in a JSON file::{
"acc1": {
"url": "http://www.bank.com",
"password": {
"salt": "4a704c50696c",
"cipherpasswd": "U2FsdGVkX19KcExQaWwAADphBGePaw4E6tlphf8SU0Y="
},
"name": "user1"
},
"acc2": {
"url": "http://www.mailinglist.org",
"password": {
"salt": "42694a363770",
"cipherpasswd": "U2FsdGVkX19CaUo2N3AAAEhG0zExx0jjMfzsyKkGyBo="
},
"name": "user1"
}
}The source code can be found here:
http://github.com/jarrodmillman/accountman