Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrenarchy/stellar-observatory
Python package for analyzing the Stellar network
https://github.com/andrenarchy/stellar-observatory
blockchain consensus cryptocurrency quorum stellar
Last synced: 2 months ago
JSON representation
Python package for analyzing the Stellar network
- Host: GitHub
- URL: https://github.com/andrenarchy/stellar-observatory
- Owner: andrenarchy
- License: mit
- Created: 2019-05-28T14:37:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-13T21:44:23.000Z (about 4 years ago)
- Last Synced: 2024-08-14T15:50:21.273Z (5 months ago)
- Topics: blockchain, consensus, cryptocurrency, quorum, stellar
- Language: Python
- Homepage:
- Size: 182 KB
- Stars: 13
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Stellar Observatory
[![Build Status](https://travis-ci.org/andrenarchy/stellar-observatory.svg?branch=master)](https://travis-ci.org/andrenarchy/stellar-observatory)
[![PyPI version](https://badge.fury.io/py/stellar-observatory.svg)](https://badge.fury.io/py/stellar-observatory)Stellar Observatory is a Python package for analyzing the Stellar network. It contains experimental and non-optimized code that is used for conducting research on quorums, quorum slices, and other aspects of the Stellar network.
This work is supported by a research grant in the Stellar academic research program of the [Stellar Development Foundation](https://www.stellar.org/).
## Installation
```
pip install stellar-observatory
```Note: Stellar Observatory requires Python 3.5 or above.
## Example
See https://colab.research.google.com/drive/1-dOgu35CWWw4J-mQnhrmjnRFkLlEXDzL
## Maintainer docs
### Upload new version
```
rm -rf dist/*
python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*
```