github-rest-api 0.33.1__tar.gz → 0.34.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/PKG-INFO +1 -1
  2. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/github_rest_api/github.py +9 -3
  3. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/pyproject.toml +1 -1
  4. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/tests/test_github.py +9 -1
  5. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/uv.lock +1 -1
  6. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/.gemini/system.md +0 -0
  7. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/.github/workflows/create_pr_dev_to_main.yml +0 -0
  8. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/.github/workflows/create_pr_to_dev.yml +0 -0
  9. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/.github/workflows/lint.yml +0 -0
  10. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/.github/workflows/release.yml +0 -0
  11. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/.gitignore +0 -0
  12. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/.gitpod.yml +0 -0
  13. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/GEMINI.md +0 -0
  14. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/README.md +0 -0
  15. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/github_rest_api/__init__.py +0 -0
  16. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/github_rest_api/actions/__init__.py +0 -0
  17. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/github_rest_api/actions/cargo/__init__.py +0 -0
  18. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/github_rest_api/actions/cargo/benchmark.py +0 -0
  19. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/github_rest_api/actions/cargo/profiling.py +0 -0
  20. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/github_rest_api/actions/cargo/utils.py +0 -0
  21. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/github_rest_api/actions/utils.py +0 -0
  22. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/github_rest_api/utils.py +0 -0
  23. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/tests/__init__.py +0 -0
  24. {github_rest_api-0.33.1 → github_rest_api-0.34.1}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: github-rest-api
3
- Version: 0.33.1
3
+ Version: 0.34.1
4
4
  Summary: Simple wrapper of GitHub REST APIs.
5
5
  Author-email: Ben Du <longendu@yahoo.com>
6
6
  Classifier: Programming Language :: Python :: 3 :: Only
@@ -255,11 +255,17 @@ class Repository(GitHub):
255
255
  """List branches in this repository."""
256
256
  return self._get(url=self._url_branches).json()
257
257
 
258
+ def get_branch(self, branch: str) -> dict[str, Any]:
259
+ """Get information about a specific branch.
260
+ :param branch: The name of the branch.
261
+ """
262
+ return self._get(url=f"{self._url_branches}/{branch}").json()
263
+
258
264
  def delete(self) -> requests.Response:
259
265
  """Delete this repository from GitHub."""
260
266
  return self._delete(url=self._url_repo)
261
267
 
262
- def delete_ref(self, ref: str) -> dict[str, Any]:
268
+ def delete_ref(self, ref: str) -> requests.Response:
263
269
  """Delete a reference from this repository.
264
270
  :param ref: The reference to delete from this repository.
265
271
  """
@@ -267,9 +273,9 @@ class Repository(GitHub):
267
273
  raise ValueError("A string value is required for `ref`.")
268
274
  return self._delete(
269
275
  url=f"{self._url_refs}/{ref}",
270
- ).json()
276
+ )
271
277
 
272
- def delete_branch(self, branch: str) -> dict[str, Any]:
278
+ def delete_branch(self, branch: str) -> requests.Response:
273
279
  """Delete a branch from this repository.
274
280
  :param branch: The branch to delete from this repository.
275
281
  """
@@ -4,7 +4,7 @@ requires = [ "hatchling" ]
4
4
 
5
5
  [project]
6
6
  name = "github-rest-api"
7
- version = "0.33.1"
7
+ version = "0.34.1"
8
8
  description = "Simple wrapper of GitHub REST APIs."
9
9
  readme = "README.md"
10
10
  authors = [ { name = "Ben Du", email = "longendu@yahoo.com" } ]
@@ -1,4 +1,4 @@
1
- from github_rest_api.github import User, Organization
1
+ from github_rest_api.github import User, Organization, Repository
2
2
 
3
3
 
4
4
  def test_user_get_repositories():
@@ -15,3 +15,11 @@ def test_organization_get_repositories():
15
15
  org = Organization(token, org_name)
16
16
  repos = org.get_repositories()
17
17
  assert len(repos) > 0
18
+
19
+
20
+ def test_repository_get_branch():
21
+ token = ""
22
+ repo_name = "legendu-net/github_rest_api"
23
+ repo = Repository(token, repo_name)
24
+ branch = repo.get_branch("main")
25
+ assert branch["name"] == "main"
@@ -195,7 +195,7 @@ wheels = [
195
195
 
196
196
  [[package]]
197
197
  name = "github-rest-api"
198
- version = "0.33.0"
198
+ version = "0.34.1"
199
199
  source = { editable = "." }
200
200
  dependencies = [
201
201
  { name = "dulwich" },