Metadata-Version: 1.1
Name: github-token
Version: 0.1.0
Summary: Library to create github personal auth token
Home-page: https://github.com/Mariocj89/github_token
Author: Mario Corchero
Author-email: mariocj89@gmail.com
License: MIT
Description: GitHub Token
        ============
        
        Creating an app token might not be the simplest task, use this utility
        and forget about all the issues.
        
        Install
        =======
        
        ``pip install github_token``
        
        Usage
        =====
        
        ::
        
                import github_token
                user = input("Username: ")
                password = getpass.getpass()
                app_name = input("App Name to create: ")
                token_factory = github_token.TokenFactory(user, password, app_name,
                                                          github_token.ALL_SCOPES)
        
                print(token_factory(
                    tfa_token_callback=lambda: input("TFA Token: ")
                ))
        
        
Keywords: github,authorization,tfa,token,twofactor
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Version Control
