Generate hash for repository URL.
(self, repo_url: str)
| 59 | print(f"Error saving cache index: {e}") |
| 60 | |
| 61 | def get_repo_hash(self, repo_url: str) -> str: |
| 62 | """Generate hash for repository URL.""" |
| 63 | return hashlib.sha256(repo_url.encode()).hexdigest()[:16] |
| 64 | |
| 65 | def get_cached_docs(self, repo_url: str) -> Optional[str]: |
| 66 | """Get cached documentation path if available.""" |
no outgoing calls
no test coverage detected