A Python client for the ProtoBase authentication API
Project description
ProtoBase Client
ProtoBase Client is a simple and efficient Python package designed to interact with the ProtoBase authentication API. It provides easy-to-use functions for user sign-up and sign-in via email or username, abstracting away the complexity of API calls and streamlining the authentication process in Python applications.
Features
- Email-based authentication: Easily sign up and sign in users using their email and password.
- Username-based authentication: Allow users to sign up and sign in using a username and password.
- Simple integration: Quickly integrate authentication features into any Python application with minimal code.
- Seamless API interaction: The package handles all the HTTP request/response management, making authentication tasks straightforward.
Installation
To install the package, simply use pip:
pip install protobase-client
Usage
Here’s how you can use the ProtoBase Client in your Python application:
1. Import the package
from protobase_client import ProtoBaseClient
2. Create an instance of the client
client = ProtoBaseClient()
3. Sign up with email
To sign up a user with their email and password:
signup_response = client.signup_email("username", "password", "email@example.com")
print(signup_response)
4. Sign in with email
To sign in a user with their email and password:
signin_response = client.signin_email("username", "password", "email@example.com")
print(signin_response)
5. Sign up with username
To sign up a user with just a username and password:
signup_response = client.signup_username("username", "password")
print(signup_response)
6. Sign in with username
To sign in a user with their username and password:
signin_response = client.signin_username("username", "password")
print(signin_response)
Example
from protobase_client import ProtoBaseClient
# Initialize client
client = ProtoBaseClient()
# Sign up using email
response = client.signup_email("john_doe", "securepassword123", "john.doe@example.com")
print(response)
# Sign in using email
signin_response = client.signin_email("john_doe", "securepassword123", "john.doe@example.com")
print(signin_response)
Contributing
We welcome contributions to the ProtoBase Client! If you would like to improve or add features, feel free to fork the repository, create a branch, and submit a pull request.
Please ensure that you follow the contribution guidelines:
- Write clear and descriptive commit messages.
- Add tests for new features or bug fixes.
- Follow Python coding standards (PEP 8).
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgements
- Thanks to the ProtoBase API for providing the authentication backend.
- Inspired by the desire to simplify authentication workflows in Python.
Contact
For support or inquiries, you can reach out to k.akashkumar@gmail.com.
Customizing the GitHub Documentation
- Badges: You can add badges like build status, license, and PyPI version by using shields.io or similar services.
- Screenshots: If the package includes a GUI or more visual outputs, add screenshots to illustrate the usage.
- Links to Documentation: If your package is further documented elsewhere (like ReadTheDocs), include those links.
Example of a Badge Section
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file protobase-client-0.2.0.tar.gz.
File metadata
- Download URL: protobase-client-0.2.0.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14fcfb3d2bf1f4033fb31970c8ccd8b504553b5b57db6ac14154155ee77257da
|
|
| MD5 |
0f9487b72ccaead1848a25a54657256b
|
|
| BLAKE2b-256 |
de68f11e30d02e1763759151377e8cc3b906b03f7a63e8d495b9aac4308db8ad
|
File details
Details for the file protobase_client-0.2.0-py3-none-any.whl.
File metadata
- Download URL: protobase_client-0.2.0-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8c7b80b6899db2d94bda7cdf29b1f1c380bb2646f8c847245f35455c3c154e8
|
|
| MD5 |
6738f227f1edf3ecc6e68dc862c66f90
|
|
| BLAKE2b-256 |
196bcaa6efd64391e7e1c4db54e763ab38da15e3cde2d2a97c76fa7abca2e07f
|