Simplify user authentication and secure access from anywhere with customizable prompts and temporary links.
Project description
PromptLink
Simplify user authentication and secure access from anywhere with temporary links.
PromptLink is a Python package that allows you to streamline user authentication and enable secure access to your application from anywhere. It provides a seamless way to generate temporary links for user authentication, without relying on specific web frameworks. A Google Cloud Function is set up to ensure a secure temporary link for authentication.
Key Features
- Easy and secure: Generate secure temporary links to enable easy secure access from anywhere.
- Versatile Integration: Works across various application types, not limited to web applications.
Installation
You can install PromptLink using pip:
pip install promptlink
Alternatively, if you are using Poetry (recommended), you can install it as follows:
poetry add promptlink
Usage
Here's a basic example of using PromptLink:
from promptlink import Authenticator
with Authenticator(send_link_callback=lambda l: print(f"URL: {l}")) as authenticator:
# The code in this block is executed after the link has been accessed
# in order to avoid authentication timeouts
print("Setting up authentication...")
authenticator.authenticate(lambda s: s == "12345678")
# Below statements will be reached after '12345678' was input on the webpage prompt
print("Finished")
GCP permission requirements
The following permissions are needed for this library:
- Permissions to create Storage buckets and objects
- Permissions to set up a Pub/Sub topic and subscriptions
- Permissions to deploy a Cloud Function
The library will attempt to use the default service account. Any resources created will be named 'promptlink-' followed by a random UUID, so that collision with existing resources is extremely unlikely.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file promptlink-0.1.4.tar.gz
.
File metadata
- Download URL: promptlink-0.1.4.tar.gz
- Upload date:
- Size: 24.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.8.10 Linux/5.15.0-76-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fbf6c515699830acb3db0991d1f4cf6af61dac47110ff9994b9cd88c01ff8e9 |
|
MD5 | b727a5633acd6a667c615baea0b4654b |
|
BLAKE2b-256 | 5fd73a7a06c55fdc1900a9d62e8434b2a4466a4cab9f71978f1255f146ebda13 |
File details
Details for the file promptlink-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: promptlink-0.1.4-py3-none-any.whl
- Upload date:
- Size: 23.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.8.10 Linux/5.15.0-76-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b5d69bbfa022fac58b6370f56e8cae5fb44fc6af745086c11c85961db1dfcfc |
|
MD5 | 095e25697a43dc3acaeb6912beb706de |
|
BLAKE2b-256 | e3373a2ca9ecc40bb9afc9c5ad3cc4f2c23b8e6d3bcf007809baa7d9edddf702 |