https://github.com/veliscore/githubinformation
A tool that lets you check your GitHub Project for updates.
https://github.com/veliscore/githubinformation
Last synced: 3 months ago
JSON representation
A tool that lets you check your GitHub Project for updates.
- Host: GitHub
- URL: https://github.com/veliscore/githubinformation
- Owner: VelisCore
- License: mit
- Created: 2024-07-15T23:02:08.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-02-10T14:39:28.000Z (3 months ago)
- Last Synced: 2025-02-10T15:34:10.879Z (3 months ago)
- Language: Python
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# githubinformation[](https://github.com/wfxey/githubinformation#license) [](https://pypi.org/project/githubinformation/)

A tool that lets you check your GitHub Project for updates.
## Installation
You can install `githubinformation` using pip:
```bash
pip install githubinformation
```
# .repo### get_repo_info(owner, repo)
```python
import githubinformationrepo_info = githubinformation.repo.get_repo_info("wfxey", "binaryconvert")
```### All subinfos
```python
import githubinformationrepo_info = githubinformation.repo.get_repo_info("wfxey", "binaryconvert")
if repo_info:
print(f"Repository: {repo_info['full_name']}")
print(f"Description: {get_description(repo_info)}")
print(f"Stars: {get_stars(repo_info)}")
print(f"Forks: {get_forks(repo_info)}")
print(f"Open Issues: {get_open_issues(repo_info)}")
repo_link(f"{owner}/{repo}")
```### Output
```bash
Repository: wfxey/binaryconvert
Description: A super easy python tool that converts your text in binary language 8x Bit
Stars: 1
Forks: 0
Open Issues: 0
```
# .user
### user_link(user)
```python
import githubinformationgithubinformation.user.user_link("wfxey")
```
### Output
```bash
https://github.com/wfxey
```
# .release
### release_link(name_and_repo, tag)
```python
import githubinformationgithubinformation.release.release_link("VelisCore/diec", "v1.0")
```
### Output
```bash
https://github.com/VelisCore/diec/releases/tag/v1.0
```