Comprehensive electronic components industry sourcing guide for international buyers – provides detailed information about China's semiconductor, passive component, PCB, connector, and sensor manufacturing clusters, supply chain structure, regional specializations, and industry trends (2026 updated).
This skill helps international electronics buyers navigate China's electronic components manufacturing landscape, which is projected to exceed ¥5.2 trillion in revenue by 2026. It provides data-backed intelligence on regional clusters, supply chain structure, and industry trends based on the latest government policies and industry reports.
You can interact with this skill using natural language. For example:
This skill aggregates data from:
The skill logic is implemented in do.py, which reads structured data from data.json. All data is cluster-level intelligence without individual factory contacts.
The following Python functions are available in do.py for programmatic access:
get_industry_overview() -> DictReturns overview of China's electronic components industry scale, targets, and key policy initiatives.
Example:
from do import get_industry_overview
result = get_industry_overview()
# Returns: industry scale, 2026 targets, automation rates, key drivers, etc.
get_supply_chain_structure() -> DictReturns the complete electronic components supply chain structure (upstream, midstream, downstream).
Example:
from do import get_supply_chain_structure
result = get_supply_chain_structure()
# Returns: raw materials, manufacturing, application industries
get_regional_clusters(region: Optional[str] = None) -> Union[List[Dict], Dict]Returns all regional clusters or a specific cluster by name.
region is None: returns list of all clustersregion is specified: returns that cluster's detailsExample:
from do import get_regional_clusters
all_clusters = get_regional_clusters()
yangtze = get_regional_clusters("Yangtze River Delta")
find_clusters_by_specialization(specialization: str) -> List[Dict]Find clusters that specialize in a given component type.
Example:
from do import find_clusters_by_specialization
results = find_clusters_by_specialization("automotive semiconductors")
get_subsector_info(subsector: str) -> DictReturn detailed information about a specific electronic components subsector.
Example:
from do import get_subsector_info
mlcc_info = get_subsector_info("MLCC")
semiconductor_info = get_subsector_info("semiconductors")
get_sourcing_guide() -> DictReturn supplier evaluation and sourcing best practices.
Example:
from do import get_sourcing_guide
guide = get_sourcing_guide()
# Returns: evaluation criteria, verification methods, communication tips
get_faq(question: Optional[str] = None) -> Union[List[Dict], Dict]Return FAQ list or answer to a specific question.
Example:
from do import get_faq
all_faqs = get_faq()
moq_faq = get_faq("MOQ")
get_glossary(term: Optional[str] = None) -> Union[Dict, str]Return glossary of terms or definition of a specific term.
Example:
from do import get_glossary
all_terms = get_glossary()
mlcc_def = get_glossary("MLCC")
search_data(query: str) -> List[Dict]Simple search across all data for a query string.
Example:
from do import search_data
results = search_data("automotive")
get_metadata() -> DictReturn metadata about the data source and last update.
Example:
from do import get_metadata
meta = get_metadata()