Metadata-Version: 2.4
Name: pypergraph-dag
Version: 0.2.12
Summary: The Pypergraph package provides secure wallet functionality in Python and convenient wrappers for interacting with Constellation Network APIs, inspired by the TypeScript library DAG4.js created by Stardust Collective.
Project-URL: Homepage, https://mringdal.com
Project-URL: Repository, https://github.com/buzzgreyday/pypergraph.git
Project-URL: Bug Tracker, https://github.com/buzzgreyday/pypergraph/issues
Author-email: Michael Brummer Ringdal <micbr@protonmail.com>
Maintainer-email: Michael Brummer Ringdal <micbr@pm.me>
License: MIT License
        
        Copyright (c) 2025 Michael Brummer Ringdal
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: collective,constellation,constellationnetwork,crypto,cryptocurrency,cryptography,dag,dag4,dag4.js,finance,hypergraph,metagraph,stardust,wallet
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.9
Requires-Dist: aiofiles~=24.1.0
Requires-Dist: argon2-cffi~=23.1.0
Requires-Dist: base58~=2.1.1
Requires-Dist: bip32utils~=0.3.post4
Requires-Dist: brotlipy~=0.7.0
Requires-Dist: cryptography~=44.0.1
Requires-Dist: eth-hash[pycryptodome]~=0.7.1
Requires-Dist: eth-keyfile~=0.8.1
Requires-Dist: eth-keys~=0.6.1
Requires-Dist: eth-utils~=5.2.0
Requires-Dist: httpx~=0.28.1
Requires-Dist: mnemonic~=0.21
Requires-Dist: prometheus-client~=0.21.1
Requires-Dist: pydantic~=2.10.6
Requires-Dist: rx~=3.2.0
Description-Content-Type: text/markdown

# Pypergraph: Python SDK for Constellation Network
---

Pypergraph is a Python package that enables secure wallet functionalities and interaction with Constellation Network APIs. Inspired by DAG for JavaScript ([DAG4JS](https://github.com/StardustCollective/dag4.js)).

View [documentation here](https://pypergraph-dag.readthedocs.io).

[![Read the Docs](https://img.shields.io/readthedocs/pypergraph-dag)](https://pypergraph-dag.readthedocs.io)
[![PyPI - Version](https://img.shields.io/pypi/v/pypergraph-dag)](https://pypi.org/project/pypergraph-dag/)
![Python Version from PEP 621 TOML](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2Fbuzzgreyday%2Fpypergraph%2Frefs%2Fheads%2Fmaster%2Fpyproject.toml)
![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)

<a href="https://www.buymeacoffee.com/buzzgreyday" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>

---

# Installation

## Setup Virtual Environment

1. **Ensure Python 3.9+ is installed.**  
   Installation instructions are available on [python.org/downloads](https://www.python.org/downloads/) or via [pyenv](https://github.com/pyenv/pyenv).

2. **Create a virtual environment:**

       python -m venv venv

3. **Activate the virtual environment:**

   - **Linux/MacOS:**

         source venv/bin/activate

   - **Windows:**

         .\venv\Scripts\activate

## Install Through PyPI

4. **Install the package from PyPi:**

       pip install pypergraph-dag
