twik/README.md

71 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2014-09-20 18:59:03 +02:00
Twik
====
Python version of Twik
2014-09-20 19:05:38 +02:00
2014-09-29 20:11:48 +02:00
[![Build Status](https://travis-ci.org/coxande/Twik.svg?branch=master)](https://travis-ci.org/coxande/Twik)
2014-09-21 02:03:59 +02:00
2014-09-23 01:24:44 +02:00
## Installation instructions:
* Using PIP
```pip install twik```
2014-09-22 22:19:15 +02:00
2014-09-23 01:24:44 +02:00
* Using easy_install
```easy_install twik```
* Manual
```
git clone https://github.com/coxande/Twik.git
cd Twik
python setup.py install
```
2014-09-26 21:45:12 +02:00
2014-09-23 01:24:44 +02:00
## Usage instructions :
2014-09-21 02:03:59 +02:00
2014-09-23 18:19:17 +02:00
2014-09-26 21:45:12 +02:00
2014-09-22 22:19:15 +02:00
```
2014-09-23 18:19:17 +02:00
usage: twik [-h] [-c CHARS] [-p PROFILE] [-t {1,2,3}] tag
2014-09-20 19:05:38 +02:00
2014-09-21 01:26:07 +02:00
positional arguments:
2014-09-23 18:19:17 +02:00
tag generate password for a specified tag
optional arguments:
-h, --help show this help message and exit
2014-09-26 21:44:08 +02:00
-c [4-26], --chars [4-26]
length of generated password [4-26]. Default: 12
2014-09-23 18:19:17 +02:00
-p PROFILE, --profile PROFILE
profile to use. Default:'Profile'
-t {1,2,3}, --passwordtype {1,2,3}
1 for ALPHANUMERIC_AND_SPECIAL_CHAR
2 for ALPHANUMERIC
2014-09-26 21:45:12 +02:00
3 for NUMERIC
Default: 1
2014-09-23 18:19:17 +02:00
2014-09-20 19:05:38 +02:00
2014-09-21 02:03:59 +02:00
```
2014-09-23 18:19:17 +02:00
Private Keys is stored in ~/.twik.conf you need change it to match with chrome extension and android app:
2014-09-21 02:00:22 +02:00
2014-09-21 02:03:59 +02:00
```
2014-10-11 20:35:45 +02:00
[Personal]
2014-09-21 02:00:22 +02:00
private_key = TFCY2AJI-NBPU-V01E-F7CP-PJIZNRKPF25W
2014-09-26 22:33:38 +02:00
chars = 8
password_type = 1
2014-09-23 18:19:17 +02:00
github_chars = 12
github_password_type = 1
2014-09-26 21:46:52 +02:00
[foobar]
2014-10-11 20:35:45 +02:00
# for set foobar as default profile
default = 1
2014-09-23 18:19:17 +02:00
private_key = VBHF4HAR-8M5Z-NK3B-KQWH-KG9ZYLER4916
2014-09-26 22:33:38 +02:00
chars = 22
password_type = 1
2014-09-23 18:19:17 +02:00
reddit_chars = 22
reddit_password_type = 2
2014-09-21 02:03:59 +02:00
```
2014-09-21 02:00:22 +02:00