https://github.com/indicio-tech/pydid
Python library for validating, constructing, and representing DIDs and DID Documents
https://github.com/indicio-tech/pydid
decentralized-identity did hacktoberfest
Last synced: 2 months ago
JSON representation
Python library for validating, constructing, and representing DIDs and DID Documents
- Host: GitHub
- URL: https://github.com/indicio-tech/pydid
- Owner: Indicio-tech
- License: apache-2.0
- Created: 2021-03-13T01:08:16.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-10T05:14:49.000Z (3 months ago)
- Last Synced: 2025-04-01T15:06:23.539Z (2 months ago)
- Topics: decentralized-identity, did, hacktoberfest
- Language: Python
- Homepage:
- Size: 931 KB
- Stars: 11
- Watchers: 4
- Forks: 15
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# PyDID
[](https://pypi.org/project/pydid/)
[](https://github.com/pre-commit/pre-commit)Python library for validating, constructing, and representing DIDs and DID Documents.
## Installation
Using a virtual environment is generally recommended:
```sh
python -m venv env
source env/bin/activate
```Install with pip:
```sh
pip install pydid
```## Development
This project is managed with [Poetry](https://python-poetry.org/).
To begin making code changes, clone this repo and do the following to install
dependencies:```sh
python -m venv env
source env/bin/activate
pip install poetry
poetry install
```## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md).