(url: str)
| 64 | |
| 65 | @staticmethod |
| 66 | def _get_json(url: str) -> Union[dict, list]: |
| 67 | payload = URLCache.proxy(url=url, tags=["github_api"], session=SESSION) |
| 68 | return json.loads(payload) |
| 69 | |
| 70 | def get_repository_data(self) -> dict: |
| 71 | url = f"https://api.github.com/repos/{self.owner}/{self.name}" |
no test coverage detected