Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Analyze any Python library structure, explore modules, classes, and functions with signatures and documentation.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | -15% | 0% |
| case-08 | ✗→✓ | ▲ Improved | -38% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 10% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 22% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 115% | 0% |
A skill for exploring and analyzing any Python library's structure, including modules, classes, functions, and their documentation.
Use this skill when you need to:
bashpython view_python_module.py --module <library_name>
Example:
bashpython view_python_module.py --module requests python view_python_module.py --module numpy python view_python_module.py --module pandas
bashpython view_python_module.py --module <library>.<submodule>
Example:
bashpython view_python_module.py --module requests.api python view_python_module.py --module numpy.linalg python view_python_module.py --module pandas.DataFrame
bashpython view_python_module.py --module <library>.<Class> python view_python_module.py --module <library>.<function>
The view_python_module.py script is located in the same directory as this SKILL.md file.
bash pip list | grep <library_name>
bash pip install <library_name>
bash python view_python_module.py --module <library_name>
bash python view_python_module.py --module <library>.<module>.<Class>
bash# Explore requests library $ python view_python_module.py --module requests Available submodules in 'requests': - requests.api: Convenience functions (get, post, put, delete, etc.) - requests.models: Request and Response classes - requests.sessions: Session management - requests.auth: Authentication handlers ... # Get details on the get function $ python view_python_module.py --module requests.get def get(url, params=None, **kwargs): """Sends a GET request. Args: url: URL for the request. params: Dictionary of query parameters. **kwargs: Optional arguments for request. Returns: Response object """
__all__ exports for public APIOther measured skills in the registry, with their headline benchmark lift.