keyauth-tech


Namekeyauth-tech JSON
Version 0.0.5 PyPI version JSON
download
home_pagehttps://keyauth.tech
SummaryAuthentication Tool for Authenticating Users, HWIDs and Licenses to keep your Code secure from malicious activities.
upload_time2023-06-17 15:22:44
maintainer
docs_urlNone
authorCollin Stokes
requires_python
licenseMIT
keywords authentication auth keys hwid
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# Key Auth

Authentication Tool for Authenticating Users, HWIDs and Licenses to keep your Code secure from malicious activities.


## Installation

Install keyauth-tech with pip

```bash
pip install keyauth-tech
```
    
## Usage/Examples

```python
from keyauth import KeyAuth

def main():
    print("Hack the matrix!") # Replace with your Code (success)

def exit_program():
    print("Authentication failed.") # Replace with your Code (fail)
    authenticator.exit()

# Creating the authenticator instance
authenticator = KeyAuth(app_id="", max_tries=3, success=main, fail=exit_program) # Replace with your APP ID

# Authenticating
authenticator.authenticate()

# Install Packages if not installed 
authenticator.install(["requests", "random"]) # Replace with your Packages

# Print your HWID
print(authenticator.get_hwid())

```

## Note

To get your `APP_ID` make an Account on https://keyauth.tech/signup, you can get a Auth Key by contacting Support for completly free. 

## Support

For support, email `keyauthtech@gmail.com` or contact `flankdev` on Discord.

            

Raw data

            {
    "_id": null,
    "home_page": "https://keyauth.tech",
    "name": "keyauth-tech",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "authentication,auth,keys,hwid",
    "author": "Collin Stokes",
    "author_email": "rehan009a@outlook.com",
    "download_url": "https://files.pythonhosted.org/packages/9f/f1/0d31391c32705bb0473893765f6b1365781a2e41d22d460d03a48087127b/keyauth-tech-0.0.5.tar.gz",
    "platform": null,
    "description": "\n# Key Auth\n\nAuthentication Tool for Authenticating Users, HWIDs and Licenses to keep your Code secure from malicious activities.\n\n\n## Installation\n\nInstall keyauth-tech with pip\n\n```bash\npip install keyauth-tech\n```\n    \n## Usage/Examples\n\n```python\nfrom keyauth import KeyAuth\n\ndef main():\n    print(\"Hack the matrix!\") # Replace with your Code (success)\n\ndef exit_program():\n    print(\"Authentication failed.\") # Replace with your Code (fail)\n    authenticator.exit()\n\n# Creating the authenticator instance\nauthenticator = KeyAuth(app_id=\"\", max_tries=3, success=main, fail=exit_program) # Replace with your APP ID\n\n# Authenticating\nauthenticator.authenticate()\n\n# Install Packages if not installed \nauthenticator.install([\"requests\", \"random\"]) # Replace with your Packages\n\n# Print your HWID\nprint(authenticator.get_hwid())\n\n```\n\n## Note\n\nTo get your `APP_ID` make an Account on https://keyauth.tech/signup, you can get a Auth Key by contacting Support for completly free. \n\n## Support\n\nFor support, email `keyauthtech@gmail.com` or contact `flankdev` on Discord.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Authentication Tool for Authenticating Users, HWIDs and Licenses to keep your Code secure from malicious activities.",
    "version": "0.0.5",
    "project_urls": {
        "Homepage": "https://keyauth.tech"
    },
    "split_keywords": [
        "authentication",
        "auth",
        "keys",
        "hwid"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ff10d31391c32705bb0473893765f6b1365781a2e41d22d460d03a48087127b",
                "md5": "2c08fdd12d9daa82c84aa55bce264857",
                "sha256": "6fd3682be042c4f41b1d8df033025ba949e2b294b48695efa9568e1421e9e4f1"
            },
            "downloads": -1,
            "filename": "keyauth-tech-0.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "2c08fdd12d9daa82c84aa55bce264857",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 4121,
            "upload_time": "2023-06-17T15:22:44",
            "upload_time_iso_8601": "2023-06-17T15:22:44.107476Z",
            "url": "https://files.pythonhosted.org/packages/9f/f1/0d31391c32705bb0473893765f6b1365781a2e41d22d460d03a48087127b/keyauth-tech-0.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-17 15:22:44",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "keyauth-tech"
}
        
Elapsed time: 0.10272s