Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nixonjoshua98/dexscreener
Python API wrapper for dexscreener.com
https://github.com/nixonjoshua98/dexscreener
api cryptocurrency dexscreener python
Last synced: about 1 month ago
JSON representation
Python API wrapper for dexscreener.com
- Host: GitHub
- URL: https://github.com/nixonjoshua98/dexscreener
- Owner: nixonjoshua98
- License: mit
- Created: 2022-01-19T17:34:34.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-07T10:58:25.000Z (4 months ago)
- Last Synced: 2024-09-29T04:03:36.053Z (about 1 month ago)
- Topics: api, cryptocurrency, dexscreener, python
- Language: Python
- Homepage: https://docs.dexscreener.com/api/reference
- Size: 31.3 KB
- Stars: 93
- Watchers: 6
- Forks: 19
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# API Wrapper for [Dexscreener.com](https://docs.dexscreener.com/)
###### Pull requests GREATLY encouraged!
[![Downloads](https://static.pepy.tech/badge/dexscreener/week)](https://pepy.tech/project/dexscreener)
[![Downloads](https://static.pepy.tech/badge/dexscreener/month)](https://pepy.tech/project/dexscreener)
[![Downloads](https://pepy.tech/badge/dexscreener)](https://pepy.tech/project/dexscreener)# Quick Start
```python
from dexscreener import DexscreenerClientclient = DexscreenerClient()
pair = client.get_token_pair("harmony", "0xcd818813f038a4d1a27c84d24d74bbc21551fa83")
pairs = client.get_token_pairs("0x2170Ed0880ac9A755fd29B2688956BD959F933F8")
search = client.search_pairs("WBTC")
```