Locate source code repositories for Python packages by analyzing PyPI metadata, project URLs, and code hosting platforms like GitHub, GitLab, and Bitbucket. Provides deterministic results with confidence levels.
Limited to specific tools
Additional assets for this skill
This skill is limited to using the following tools:
scripts/finder.pyLocates source code repositories for Python packages with confidence scoring.
To find a source repository for a given package:
# Find repository
$ ./scripts/finder.py requests
# Output structure:
{
"url": "https://github.com/psf/requests",
"confidence": "high",
"method": "pypi_metadata_project_urls.Source",
"package_name": "requests"
}
url: Repository URL (or null if not found)confidence: high, medium, or lowmethod: How the URL was foundpackage_name: the package that was searchedIf confidence is low or url is null, use WebSearch: <package_name> python github repository
Present results with confidence level clearly indicated
As a result, provide structured output including: