Skip to content

Releases: vincentkoc/dexscraper

🚀 DexScraper v1.1.0

09 Feb 23:37

Choose a tag to compare

What's Changed

Other Changes

  • Add cloudscraper v3 runtime detection and warnings (a409bfe)

Full Changelog: v1.0.2...v1.1.0

🚀 DexScraper v1.0.2

09 Feb 23:11

Choose a tag to compare

What's Changed

Other Changes

  • Use PyPI-compatible cloudscraper dependency (0228674)
  • Fix release asset upload path handling (10b1354)

Full Changelog: v1.0.1...v1.0.2

🚀 DexScraper v1.0.1

09 Feb 23:02

Choose a tag to compare

What's Changed

Other Changes

  • Fix version guard shell quoting in CI (2befcf1)
  • Fix CI version guard and release notes checkout (0fd4870)
  • Harden token metadata enrichment and address quality (5013e55)

Full Changelog: v1.0.0...v1.0.1

🚀 DexScraper v1.0.0

09 Feb 20:26

Choose a tag to compare

👻 DexScraper Release $NEXT_TAG

⚠️ RESEARCH & EDUCATIONAL PURPOSE ONLY ⚠️
This project has NO AFFILIATION with DexScreener. Use at your own risk.

🎉 What's New

  • No changes

👥 Contributors

@vincentkoc

🚀 DexScraper v0.1.2

09 Feb 01:08

Choose a tag to compare

👻 DexScraper Release v0.1.2

⚠️ RESEARCH & EDUCATIONAL PURPOSE ONLY ⚠️
This project has NO AFFILIATION with DexScreener. Use at your own risk.

🎉 What's New

Changes since v0.1.1:

📦 Installation

From PyPI (Recommended)

pip install dexscraper==v0.1.2

Quick Start

# Interactive mode with Rich UI
dexscraper interactive

# Simple trending pairs
dexscraper trending --chain solana --limit 10

# Export to file
dexscraper trending --output data.json --format json

Python API

import asyncio
from dexscraper import DexScraper, Chain

async def main():
    scraper = DexScraper()
    batch = await scraper.extract_token_data()
    print(f"Found {len(batch.tokens)} tokens!")

asyncio.run(main())

✨ Key Features

  • 🔗 Multi-chain support: Solana, Ethereum, Base, BSC, Polygon, Arbitrum, Optimism
  • 📊 Rich CLI: Interactive terminal interface with live updates
  • 📈 Multiple formats: JSON, CSV, OHLC, MetaTrader-compatible
  • 🛡️ Enterprise-ready: Rate limiting, error recovery, Cloudflare bypass
  • 🔬 Research focused: Perfect for academic and educational use

🔗 Links

🔬 Research & Educational Use Only

This software is provided for research and educational purposes only. It has no affiliation with DexScreener and should not be used for trading decisions. Always verify data independently and understand the risks of cryptocurrency markets.

🚀 DexScraper v0.1.0

03 Sep 17:35

Choose a tag to compare

👻 DexScraper Release v0.1.0

⚠️ RESEARCH & EDUCATIONAL PURPOSE ONLY ⚠️
This project has NO AFFILIATION with DexScreener. Use at your own risk.

🎉 What's New

🎉 Initial release of DexScraper Python package!

📦 Installation

From PyPI (Recommended)

pip install dexscraper==v0.1.0

Quick Start

# Interactive mode with Rich UI
dexscraper interactive

# Simple trending pairs
dexscraper trending --chain solana --limit 10

# Export to file
dexscraper trending --output data.json --format json

Python API

import asyncio
from dexscraper import DexScraper, Chain

async def main():
    scraper = DexScraper()
    batch = await scraper.extract_token_data()
    print(f"Found {len(batch.tokens)} tokens!")

asyncio.run(main())

✨ Key Features

  • 🔗 Multi-chain support: Solana, Ethereum, Base, BSC, Polygon, Arbitrum, Optimism
  • 📊 Rich CLI: Interactive terminal interface with live updates
  • 📈 Multiple formats: JSON, CSV, OHLC, MetaTrader-compatible
  • 🛡️ Enterprise-ready: Rate limiting, error recovery, Cloudflare bypass
  • 🔬 Research focused: Perfect for academic and educational use

🔗 Links

🔬 Research & Educational Use Only

This software is provided for research and educational purposes only. It has no affiliation with DexScreener and should not be used for trading decisions. Always verify data independently and understand the risks of cryptocurrency markets.