Metadata-Version: 2.1
Name: cosmos-etl
Version: 0.0.1
Summary: Tools for exporting Cosmos blockchain data to CSV or JSON
Home-page: https://github.com/bizzyvinci/cosmos-etl
Author: Bisola Olasehinde
Author-email: horlasehinde@gmail.com
Project-URL: Bug Reports, https://github.com/bizzyvinci/cosmos-etl/issues
Project-URL: Source, https://github.com/bizzyvinci/cosmos-etl
Keywords: cosmos,tendermint
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.7.2,<4
Description-Content-Type: text/markdown
License-File: LICENSE

# Cosmos ETL
Cosmos ETL lets you convert cosmos blockchain data into convenient formats like CSV and JSON. This project was inspired by [ethereum etl](https://github.com/blockchain-etl/ethereum-etl).

## Quickstart
Export blocks

```bash
> python3 -m cosmosetl export_blocks -s 2000000 -e 2001000 -p https://tendermint.bd.evmos.org:26657 -o blocks.csv
```

Export transactions and events

```bash
> python3 -m cosmosetl export_transactions_and_events -s 2000000 -e 2001000 -p https://tendermint.bd.evmos.org:26657 -to transactions.csv -eo events.csv`
```
