A toolbox for meme trading
Project description
MemeNexus
MemeNexus is a Python library for interacting with meme coins. It provides tools for fetching token information, analyzing token performance, and monitoring trading activities.
Installation
pip install meme-nexus
Quick Start
import asyncio
from meme_nexus import DexScreenerClient
async def main():
# Initialize the client
client = DexScreenerClient()
# Search for a meme token
token_address = "2RBko3xoz56aH69isQMUpzZd9NYHahhwC23A5F3Spkin"
response = await client.search_by_token_address(token_address)
# Process and analyze the results
for pair in response.pairs:
print(f"Chain: {pair.chainId}")
print(f"DEX: {pair.dexId}")
print(f"Price: ${pair.priceUsd}")
print(f"24h Volume: ${pair.volume.h24:,.2f}")
print(f"Liquidity: ${pair.liquidity.usd:,.2f}")
if pair.info and pair.info.socials:
print("Social Links:")
for social in pair.info.socials:
print(f"- {social.type}: {social.url}")
print("---")
if __name__ == "__main__":
asyncio.run(main())
License
This project is licensed under the MIT License - see the LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file memenexus-0.1.2.tar.gz.
File metadata
- Download URL: memenexus-0.1.2.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3361cd886d4b435d4a35b01300fc6d7743d3c72858c07436d4d020219b070621
|
|
| MD5 |
fbc224bb40b5fb62d6ce744ef11dc30b
|
|
| BLAKE2b-256 |
79ad7bf3d19307cb3f9ea7c9d01e6b987b0a376eb61387e258c6f4148da44f25
|
File details
Details for the file memeNexus-0.1.2-py3-none-any.whl.
File metadata
- Download URL: memeNexus-0.1.2-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b57beb9d5b66d0505567457423fc72811d08aee940ef6f7e798bd7f8ecea645
|
|
| MD5 |
b4b2bb009d323e3f8130f1c774774c65
|
|
| BLAKE2b-256 |
8c8054fcbf3f99dbee1bf158ed9c8d402659d372e12906b877f4fdeaec94aa0c
|