A Python library for creating GitHub issues programmatically using the GitHub REST API.
Project description
GitHub Issue Creator
A Python library for creating GitHub issues programmatically using the GitHub REST API.
Summary
Installation
First, install the library via pip (if it's not already installed):
pip install github-issue-creator
Usage
Import the necessary modules
from github_issue_creator import IssueCreator, Issue, IssueCreationError
Initialize IssueCreator
You'll need a GitHub Personal Access Token (PAT), the repository owner's username, and the repository name.
token = "your_github_token"
repo_owner = "your_github_username"
repo_name = "your_repository_name"
creator = IssueCreator(token, repo_owner, repo_name)
Create an Issue object
The Issue model should contain the issue details such as title, body, assignees, labels, etc.
issue = Issue(
title="Sample Issue Title",
body="This is the description of the issue.",
assignees=["octocat"], # Optional: list of GitHub usernames to assign
labels=["bug", "help wanted"] # Optional: list of labels
)
Create the issue on GitHub
Call the create method to post the issue.
try:
creator.create(issue)
except IssueCreationError as e:
print(f"Failed to create issue: {e}")
if e.status_code:
print(f"Status Code: {e.status_code}")
print(f"Response: {e.response_text}")
If successful, it will return an IssueResponse object containing details of the created issue, including the issue URL, repository URL, issue ID, number, title, state, creation date, and the author's username.
For example, it may look like this:
IssueResponse(
repository_url="https://github.com/fake_owner/fake_repo",
issue_url="https://github.com/fake_owner/fake_repo/issues/1",
issue_id=123456,
issue_number=1,
issue_title="Test",
issue_state="open",
created_at="2024-06-01T00:00:00Z",
author="test_user"
)
Exceptions
IssueCreationError: Raised if the issue creation fails due to an HTTP error or a request exception.
Configuration Notes
- Make sure your GitHub token has the correct permissions to create issues in the repository.
- The
Issuemodel should be defined based on the GitHub API's expected fields (check the library'smodels/issue.pyfor the schema).
Contributors
Thanks to the following people who have contributed to this project:
- pzzzl - Maintainer
- BrunoSantanaS
Feel free to open a pull request or report any issues you encounter. Your contributions are always welcome!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file github_issue_creator-0.2.2.tar.gz.
File metadata
- Download URL: github_issue_creator-0.2.2.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
226d56543e97a54670d8ca2068f70de9dfa3bb1e07f7e2a8538e249e8086f88d
|
|
| MD5 |
01dd052298d2a9bbbc6e509e779e7a6f
|
|
| BLAKE2b-256 |
62c1acd838f3fd7992d69d30ec09472705a24124c26f09d2a446ac10628c7679
|
File details
Details for the file github_issue_creator-0.2.2-py3-none-any.whl.
File metadata
- Download URL: github_issue_creator-0.2.2-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa1eda7f786153415c9c1a2ca8d6acb43b0dd71e9d9ce6365f14f2fa682d4ad6
|
|
| MD5 |
5036a0ef9128391607cdcbe5de2cac99
|
|
| BLAKE2b-256 |
abbd745faede5c87889325d8c9df9cd816a5ad849891e01ba2b96aab2b0ba06f
|