(self)
| 103 | return self.info["info"]["project_urls"].get("Documentation") |
| 104 | |
| 105 | def get_latest_release(self) -> str: |
| 106 | return self.info["info"]["version"] |
| 107 | |
| 108 | def get_dependencies(self) -> Generator[Requirement, None, None]: |
| 109 | deps = self.info["info"].get("requires_dist", []) |
no outgoing calls
no test coverage detected