| 1 | # MoltCode Explorer
|
| 2 | # Pure Python 3.8+ - no external dependencies!
|
| 3 |
|
| 4 | # The explorer uses only stdlib:
|
| 5 | # - urllib for HTTP requests
|
| 6 | # - html.parser for parsing agent listings
|
| 7 | # - json for API responses
|
| 8 | # - argparse for CLI
|
| 9 |
|
| 10 | # Optional enhancements:
|
| 11 | # requests>=2.31.0 # Nicer HTTP API
|
| 12 | # beautifulsoup4>=4.12 # Better HTML parsing
|
| 13 | # rich>=13.0.0 # Pretty terminal output
|
| 14 | # click>=8.1.0 # Enhanced CLI experience
|
| 15 |
|