SDK based Issuance
Issuing Credentials with the Python SDK
The Python SDK allows developers to issue verifiable credentials seamlessly from their applications. By following the steps below, you'll be able to integrate the credential issuance functionality into your system.
Steps to Issue Credentials
1. Clone the Repository
Start by cloning the Python SDK repository to your local machine.
git clone https://github.com/ooru-digital/issuer_python_sdk.git2. Navigate to the Project Directory
Once the repository is cloned, navigate to the project directory:
cd issuer_python_sdk3. Install Dependencies
Make sure to install all the necessary dependencies by following the instructions in the README.md. For Python projects, this often involves setting up a virtual environment and installing the required packages:
# Optionally, create a virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt4. Follow the README.md Instructions
The README.md file contains detailed steps on how to configure the SDK, set up the environment, and begin issuing credentials. Be sure to follow the instructions, including:
Configuring your environment variables
Understanding the necessary API keys or credentials for issuing
Example scripts to issue a credential
5. Start Issuing Credentials
After completing the setup, you'll be able to start issuing credentials by calling the appropriate functions in the SDK. The repository includes example scripts to help you get started quickly.
Helpful Links
For any questions or issues, feel free to refer to the documentation or open an issue on GitHub.
Last updated