The cloud authentication save system for your python applications !
Project description
Upsonic Auth
The cloud authentication save system for your python applications ! Control everything from one place and distribute all clients without effort.
Installation
You can install Upsonic by pip3:
pip3 install upsonic_auth
Implementing
1) Encrypted and Free Version
We suggest to use in your individual projects because this way not provide any control process so everyone can add credientials.
*Creating Your Free Cloud Key
Upsonic cloud_key
from upsonic_auth import Upsonic_Auth
auth = Upsonic_Auth("YOUR_ENCRYPTION_KEY", "YOUR_CLOUD_KEY")
auth.add_user("Name", "Pass")
#auth.delete_user("Name")
if auth.check("name", "Pass"): # In another.py, Diffferent Machine, Different Environment
print("Verified")
2) Encrypted and Pro Version
We suggest to use in your individual projects because this way not provide any control process so everyone can add credientials.
*For this you should have Upsonic Cloud Pro
from upsonic_auth import Upsonic_Auth_Pro
auth = Upsonic_Auth_Pro("YOUR_ENCRYPTION_KEY", "YOUR_CLOUD_PRO_KEY", "YOUR_ACCESS_KEY")
auth.add_user("Name", "Pass")
#auth.delete_user("Name")
if auth.check("name", "Pass"): # In another.py, Diffferent Machine, Different Environment
print("Verified")
3) Encrypted and Secure Version
You can free for all purposes.
*For this you should have Upsonic Cloud Dedicated
from upsonic_auth import Upsonic_Auth_Dedicated
auth = Upsonic_Auth_Dedicated("YOUR_ENCRYPTION_KEY", "YOUR_DATABASE_NAME", "YOUR_ADMIN_PASSWORD", "YOUR_DEDICATED_KEY")
auth.add_user("Name", "Pass")
#auth.delete_user("Name")
auth = Upsonic_Auth_Dedicated("YOUR_DATABASE_NAME", "YOUR_USER_PASSWORD", "YOUR_DEDICATED_KEY")
if auth.check("name", "Pass"): # In another.py, Diffferent Machine, Different Environment and CUSTOMER
print("Verified")
Contributing
Contributions to Upsonic Auth are welcome! If you have any suggestions or find a bug, please open an issue on the GitHub repository. If you want to contribute code, please fork the repository and create a pull request.
License
Upsonic Auth is released under the MIT License.
Contributors
Thank you for your contribution!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file upsonic_auth-0.2.0.tar.gz
.
File metadata
- Download URL: upsonic_auth-0.2.0.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2ca344ae0fc4480ac1cafea6067d0d748f51fa641cded377d0f5cb4e468b707 |
|
MD5 | 81ee4a92c242436f29c3b66793cce64b |
|
BLAKE2b-256 | 113a9c2a5c4750c01a976cb60fd5c5e28dd85d2129f8f081e5389bfe7e8ac8ae |