16 lines
370 B
Python
16 lines
370 B
Python
|
|
"""
|
||
|
|
Specialized data source integrations for TechScout.
|
||
|
|
|
||
|
|
Free APIs:
|
||
|
|
- SBIR.gov - SBIR/STTR awards
|
||
|
|
- USPTO - Patent data
|
||
|
|
- USASpending.gov - Federal contracts
|
||
|
|
- SAM.gov - Company registrations
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .sbir import SBIRSearcher
|
||
|
|
from .patents import PatentSearcher
|
||
|
|
from .contracts import ContractSearcher
|
||
|
|
|
||
|
|
__all__ = ["SBIRSearcher", "PatentSearcher", "ContractSearcher"]
|