(cls)
| 376 | |
| 377 | @classmethod |
| 378 | def _get_package_list(cls) -> List[str]: |
| 379 | repo = xmlrpc.client.ServerProxy( |
| 380 | "https://pypi.python.org/pypi", use_builtin_types=True |
| 381 | ) |
| 382 | return [canonicalize_name(x) for x in repo.list_packages()] |
| 383 | |
| 384 | @classmethod |
| 385 | def proxy(cls) -> List[str]: |
no test coverage detected