Metadata-Version: 2.1
Name: pydefillama
Version: 1.0.3
Summary: Python Wrapper for DefiLlama endpoints
Home-page: https://github.com/Artemis-xyz/DefiLlama-Python-Client
Author: Artemis.xyz
Author-email: team@artemis.xyz
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE

# pydefillama: a DefiLlama Python client

![BUILD](https://github.com/Artemis-xyz/pydefillama/actions/workflows/python-package.yml/badge.svg?branch=main)
[![PyPi](https://img.shields.io/pypi/v/pydefillama)](https://pypi.org/project/pydefillama/)

An unofficial DeFiLlama wrapper built for data science workflows. 

For detailed instructions on the endpoints, refer to the [API docs](https://defillama.com/docs/api)

## Installation
`pip install pydefillama`

## Usage 
```
import pydefillama as llama

# fetch all protocols
protocols = llama.fetch_all_protocols()

# fetch TVL for a protocol 
llama.fetch_protocol_tvl(protocols[0]["slug"])

# fetch all chains 
chains = llama.fetch_all_chains()

# fetch TVL for a chain
llama.fetch_chain_tvl(chains["name"])
```

Full list of supported functions [here](https://github.com/Artemis-xyz/pydefillama/blob/main/pydefillama/src/fetcher.py).
