Metadata-Version: 1.2
Name: keyt
Version: 0.1.1
Summary: Stateless password manager and generator.
Home-page: https://github.com/2O4/keyt
Author: keyt
Author-email: 
License: MIT license
Project-URL: Bug Tracker, https://github.com/2O4/keyt/issues
Description: ====
        keyt
        ====
        
        
        .. image:: https://img.shields.io/pypi/v/keyt.svg
                :target: https://pypi.python.org/pypi/keyt
        
        
        keyt is a stateless password manager/generator.
        
        The intent of this program is to have a password manager and generator without storing any data anywhere in any form. No database, no storage, no encryption.
        
        
        Install
        -------
        
        .. code-block::
        
           pip install keyt
        
        
        Usage
        -----
        
        .. code-block::
        
            $ keyt -h
            usage: keyt [domain] [username] [master_password] [options]
        
            keyt stateless password manager/generator.
        
            positional arguments:
              domain                Domain name/IP/service.
              username              Username/Email/ID.
              master_password       Master password used during the password generation.
        
            optional arguments:
              -h, --help            show this help message and exit
              --version
              -c [DOMAIN_COUNTER], --domain-counter [DOMAIN_COUNTER]
                                    An integer representing the number of times you
                                    changed your password, increment to change password.
              -s, --short-simple    Short and simple password, generate a 15 char password
                                    variant instead of the 40 default, and without special
                                    characters.
              -o, --output          Output the password, by default the password is added
                                    to the clipboard.
              -t [TIMER], --timer [TIMER]
                                    Time before flushing the clipboard, default=20 (s),
                                    use 0 to disable the timer.
        
        
        Examples
        --------
        
        .. code-block::
        
            $ keyt
            domain: example.com
            username: admin
            master password:
            Password copied to the clipboard for 20s.
        
            $ keyt example.com admin admin
            Password copied to the clipboard for 20s.
        
            $ keyt example.com admin admin -o
            F=jSlI5}cDVK*=^H#uZwWI1JHVlp{2WMVQgG-hTo
        
            $ keyt example.com admin admin -o -s
            Rj1qU2xJNX1jRFZ
        
        
        License
        -------
        
        Free software: MIT license
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Security
Requires-Python: >=3.5
