Skip to main content

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.

🚀 Installation

First, install the library via pip (if it's not already installed):

pip install github-issue-creator

📚 Usage

1️⃣ Import the necessary modules

from github_issue_creator import IssueCreator, Issue, IssueCreationError

2️⃣ 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)

3️⃣ 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
)

4️⃣ 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 Issue model should be defined based on the GitHub API's expected fields (check the library's models/issue.py for the schema).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

github_issue_creator-0.1.0-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file github_issue_creator-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for github_issue_creator-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 030293bfd5418e2362bad48c52b141663a193065acd5dcf33f4c132d86e391f5
MD5 50b2ea508cf1ddebe29b28ec6dfe737a
BLAKE2b-256 7f4d802f60c1ef13e05d028706e2b22975ca5accef10c3a6b525dcebe5bf83bd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page