Name | gitspyx JSON |
Version |
2.2.0
JSON |
| download |
home_page | https://github.com/VritraSecz/GitSpyX |
Summary | Advanced GitHub Intelligence Tool - OSINT tool for GitHub reconnaissance |
upload_time | 2025-08-05 22:45:51 |
maintainer | None |
docs_url | None |
author | Alex Butler |
requires_python | >=3.7 |
license | MIT License
Copyright (c) 2025 Alex Butler - Vritra Security Organization
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|
keywords |
osint
github
intelligence
reconnaissance
security
tool
cybersecurity
|
VCS |
 |
bugtrack_url |
|
requirements |
rich
requests
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# GitSpyX - Advanced GitHub Intelligence Tool
```
██████╗ ██╗████████╗███████╗██████╗ ██╗ ██╗██╗ ██╗
██╔════╝ ██║╚══██╔══╝██╔════╝██╔══██╗╚██╗ ██╔╝╚██╗██╔╝
██║ ███╗██║ ██║ ███████╗██████╔╝ ╚████╔╝ ╚███╔╝
██║ ██║██║ ██║ ╚════██║██╔═══╝ ╚██╔╝ ██╔██╗
╚██████╔╝██║ ██║ ███████║██║ ██║ ██╔╝ ██╗
╚═════╝ ╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═╝
```
<div align="center">
**An advanced, open-source intelligence (OSINT) tool designed for GitHub reconnaissance.**
[](https://www.python.org/downloads/)
[](LICENSE)
[](#compatibility)
[](#overview)
[](#overview)
[](#contributing)
[](https://github.com/VritraSecz/GitSpyX)
[](https://github.com/VritraSecz/GitSpyX)
[](https://github.com/VritraSecz/GitSpyX/issues)
[](https://github.com/VritraSecz/GitSpyX/graphs/contributors)
[](https://github.com/VritraSecz/GitSpyX)
[](https://github.com/VritraSecz/GitSpyX)
</div>
---
## 📋 Table of Contents
- [Overview](#-overview)
- [Features](#-features)
- [Requirements](#-requirements)
- [Installation](#-installation)
- [Usage](#-usage)
- [Screenshots](#️-screenshots)
- [Project Structure](#-project-structure)
- [Contributing](#-contributing)
- [Developer](#-developer)
- [License](#-license)
## 🔮 Overview
**GitSpyX** is an advanced, open-source intelligence (OSINT) tool designed for GitHub reconnaissance. It allows security researchers, developers, and enthusiasts to gather detailed information about GitHub users, organizations, and repositories. From user profiles and repository details to organization memberships and contribution patterns, GitSpyX provides a comprehensive intelligence overview in a clean, user-friendly format. Whether you're conducting security assessments or just curious about GitHub projects, GitSpyX is your go-to spyglass.
### Key Highlights
- 🕵️ **Comprehensive Intelligence**: Gather detailed information on users, repos, and orgs.
- CLI Interface: Clean, and user-friendly command-line interface.
- 💾 **JSON Output**: Save all gathered information to a JSON file for later analysis.
- 🐍 **Python-Powered**: Built with modern Python libraries like `rich` and `requests`.
## ✨ Features
### Core Functionality
- **User Profile**: Fetches and displays a GitHub user's profile.
- **User Repositories**: Fetches and displays a user's public repositories.
- **Repository Details**: Fetches and displays details for a specific repository.
- **Search Users**: Searches for users on GitHub.
- **Organization Details**: Fetches and displays details for a GitHub organization.
- **Save Output**: Saves all the gathered data to a JSON file in the `output-gitspyx` directory.
### User Experience
- **Interactive Tables**: Displays information in a clean, easy-to-read table format.
- **Color-coded Output**: Uses colors to highlight important information.
- **Progress Bars**: Shows progress when fetching large amounts of data.
- **Command-line Arguments**: Provides a rich set of command-line arguments for all features.
## 📋 Requirements
### System Requirements
- **Python**: Version 3.7 or higher
- **Operating System**: Linux
- **Internet Connection**: Required for GitHub API access
### Python Dependencies
```bash
rich
requests
```
## 🚀 Installation
### Method 1: PyPI (Recommended)
```bash
# Install from PyPI
pip install gitspyx
```
### Method 2: Git Clone
```bash
# Clone the repository
git clone https://github.com/VritraSecz/GitSpyX.git
# Navigate to project directory
cd GitSpyX
# Install dependencies
pip install -r requirements.txt
# Run the application
python gitspyx.py --help
```
## 🎯 Usage
GitSpyX is a command-line tool. Here are some examples of how to use it:
### User Investigation
```bash
# Get a user's profile
gitspyx -u <username>
# Get a user's repositories
gitspyx -u <username> -r
# Investigate a specific repository
gitspyx -u <username> -i <repo_name>
```
### Searching
```bash
# Search for users
gitspyx -s "search_query"
```
### Organization
```bash
# Get details for an organization
gitspyx -o <organization_name>
```
### Saving Output
All commands will automatically save the output to a JSON file in the `output-gitspyx` directory. To suppress the detailed output in the terminal and only save the data, use the `--no-display` flag.
```bash
# Fetch all data for a user and save it without displaying it in the terminal
gitspyx -u <username> --no-display
```
### Other
```bash
# Show the about section
gitspyx --about
# Show contact information
gitspyx --connect
# Show the version
gitspyx -v
```
## 🖼️ Screenshots
### Main Menu + Output Interface

## 📁 Project Structure
```
GitSpyX/
├── gitspyx.py # Main script
├── requirements.txt # Dependencies
├── README.md # Documentation
└── LICENSE # MIT License
```
### File Descriptions
- **`gitspyx.py`**: Main application script containing all the core functionality
- **`requirements.txt`**: Lists all Python dependencies required by the project
- **`README.md`**: Comprehensive documentation and usage guide
- **`LICENSE`**: MIT license file
## 🤝 Contributing
We welcome contributions from the community! Here's how you can help:
### Ways to Contribute
- 🐛 **Bug Reports**: Submit detailed issue reports.
- 💡 **Feature Requests**: Suggest new functionality.
- 🔧 **Code Contributions**: Submit pull requests.
- 📚 **Documentation**: Improve documentation and examples.
### Development Setup
```bash
# Fork the repository on GitHub
# Clone your fork
git clone https://github.com/yourusername/GitSpyX.git
# Create a feature branch
git checkout -b feature/your-feature-name
# Make changes and test thoroughly
# Commit with descriptive messages
git commit -m "Add: new feature description"
# Push to your fork and create pull request
git push origin feature/your-feature-name
```
## 📄 License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
```
MIT License
Copyright (c) 2025 Alex Butler (Vritra Security Organization)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```
## 👨💻 Developer
<div align="center">
### Alex Butler
**Vritra Security Organization**
[](https://github.com/VritraSecz)
[](https://vritrasec.com)
[](https://instagram.com/haxorlex)
[](https://youtube.com/@Technolex)
### 📱 Telegram Channels
[](https://t.me/LinkCentralX)
[](https://t.me/VritraSec)
[](https://t.me/VritraSecz)
[](https://t.me/ethicxbot)
</div>
---
<div align="center">
### 🌟 Support the Project
If you find GitSpyX helpful, please consider:
- ⭐ Starring the repository
- 🍴 Forking and contributing
- 📢 Sharing with others
- 🐛 Reporting issues
- 💡 Suggesting new features
**Made with ❤️ by the Vritra Security Organization**
</div>
Raw data
{
"_id": null,
"home_page": "https://github.com/VritraSecz/GitSpyX",
"name": "gitspyx",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "osint, github, intelligence, reconnaissance, security, tool, cybersecurity",
"author": "Alex Butler",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/81/b7/15651e682aef2a4a2057499598d9964b995abfbe2ce19ccdbf92bbc64244/gitspyx-2.2.0.tar.gz",
"platform": null,
"description": "# GitSpyX - Advanced GitHub Intelligence Tool\n\n```\n \u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u2588\u2588\u2557 \u2588\u2588\u2557\u2588\u2588\u2557 \u2588\u2588\u2557\n \u2588\u2588\u2554\u2550\u2550\u2550\u2550\u255d \u2588\u2588\u2551\u255a\u2550\u2550\u2588\u2588\u2554\u2550\u2550\u255d\u2588\u2588\u2554\u2550\u2550\u2550\u2550\u255d\u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2557\u255a\u2588\u2588\u2557 \u2588\u2588\u2554\u255d\u255a\u2588\u2588\u2557\u2588\u2588\u2554\u255d\n \u2588\u2588\u2551 \u2588\u2588\u2588\u2557\u2588\u2588\u2551 \u2588\u2588\u2551 \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2554\u255d \u255a\u2588\u2588\u2588\u2588\u2554\u255d \u255a\u2588\u2588\u2588\u2554\u255d \n \u2588\u2588\u2551 \u2588\u2588\u2551\u2588\u2588\u2551 \u2588\u2588\u2551 \u255a\u2550\u2550\u2550\u2550\u2588\u2588\u2551\u2588\u2588\u2554\u2550\u2550\u2550\u255d \u255a\u2588\u2588\u2554\u255d \u2588\u2588\u2554\u2588\u2588\u2557 \n \u255a\u2588\u2588\u2588\u2588\u2588\u2588\u2554\u255d\u2588\u2588\u2551 \u2588\u2588\u2551 \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2551\u2588\u2588\u2551 \u2588\u2588\u2551 \u2588\u2588\u2554\u255d \u2588\u2588\u2557\n \u255a\u2550\u2550\u2550\u2550\u2550\u255d \u255a\u2550\u255d \u255a\u2550\u255d \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u255d\u255a\u2550\u255d \u255a\u2550\u255d \u255a\u2550\u255d \u255a\u2550\u255d\n```\n\n<div align=\"center\">\n\n**An advanced, open-source intelligence (OSINT) tool designed for GitHub reconnaissance.**\n\n[](https://www.python.org/downloads/)\n[](LICENSE)\n[](#compatibility)\n[](#overview)\n[](#overview)\n[](#contributing)\n[](https://github.com/VritraSecz/GitSpyX)\n[](https://github.com/VritraSecz/GitSpyX)\n[](https://github.com/VritraSecz/GitSpyX/issues)\n[](https://github.com/VritraSecz/GitSpyX/graphs/contributors)\n[](https://github.com/VritraSecz/GitSpyX)\n[](https://github.com/VritraSecz/GitSpyX)\n\n</div>\n\n---\n\n## \ud83d\udccb Table of Contents\n\n- [Overview](#-overview)\n- [Features](#-features)\n- [Requirements](#-requirements)\n- [Installation](#-installation)\n- [Usage](#-usage)\n- [Screenshots](#\ufe0f-screenshots)\n- [Project Structure](#-project-structure)\n- [Contributing](#-contributing)\n- [Developer](#-developer)\n- [License](#-license)\n\n\n## \ud83d\udd2e Overview\n\n**GitSpyX** is an advanced, open-source intelligence (OSINT) tool designed for GitHub reconnaissance. It allows security researchers, developers, and enthusiasts to gather detailed information about GitHub users, organizations, and repositories. From user profiles and repository details to organization memberships and contribution patterns, GitSpyX provides a comprehensive intelligence overview in a clean, user-friendly format. Whether you're conducting security assessments or just curious about GitHub projects, GitSpyX is your go-to spyglass.\n\n### Key Highlights\n\n- \ud83d\udd75\ufe0f **Comprehensive Intelligence**: Gather detailed information on users, repos, and orgs.\n- CLI Interface: Clean, and user-friendly command-line interface.\n- \ud83d\udcbe **JSON Output**: Save all gathered information to a JSON file for later analysis.\n- \ud83d\udc0d **Python-Powered**: Built with modern Python libraries like `rich` and `requests`.\n\n## \u2728 Features\n\n### Core Functionality\n- **User Profile**: Fetches and displays a GitHub user's profile.\n- **User Repositories**: Fetches and displays a user's public repositories.\n- **Repository Details**: Fetches and displays details for a specific repository.\n- **Search Users**: Searches for users on GitHub.\n- **Organization Details**: Fetches and displays details for a GitHub organization.\n- **Save Output**: Saves all the gathered data to a JSON file in the `output-gitspyx` directory.\n\n### User Experience\n- **Interactive Tables**: Displays information in a clean, easy-to-read table format.\n- **Color-coded Output**: Uses colors to highlight important information.\n- **Progress Bars**: Shows progress when fetching large amounts of data.\n- **Command-line Arguments**: Provides a rich set of command-line arguments for all features.\n\n## \ud83d\udccb Requirements\n\n### System Requirements\n- **Python**: Version 3.7 or higher\n- **Operating System**: Linux\n- **Internet Connection**: Required for GitHub API access\n\n### Python Dependencies\n```bash\nrich\nrequests\n```\n\n## \ud83d\ude80 Installation\n\n### Method 1: PyPI (Recommended)\n```bash\n# Install from PyPI\npip install gitspyx\n```\n\n### Method 2: Git Clone\n```bash\n# Clone the repository\ngit clone https://github.com/VritraSecz/GitSpyX.git\n\n# Navigate to project directory\ncd GitSpyX\n\n# Install dependencies\npip install -r requirements.txt\n\n# Run the application\npython gitspyx.py --help\n```\n\n## \ud83c\udfaf Usage\n\nGitSpyX is a command-line tool. Here are some examples of how to use it:\n\n### User Investigation\n```bash\n# Get a user's profile\ngitspyx -u <username>\n\n# Get a user's repositories\ngitspyx -u <username> -r\n\n# Investigate a specific repository\ngitspyx -u <username> -i <repo_name>\n```\n\n### Searching\n```bash\n# Search for users\ngitspyx -s \"search_query\"\n```\n\n### Organization\n```bash\n# Get details for an organization\ngitspyx -o <organization_name>\n```\n\n### Saving Output\nAll commands will automatically save the output to a JSON file in the `output-gitspyx` directory. To suppress the detailed output in the terminal and only save the data, use the `--no-display` flag.\n\n```bash\n# Fetch all data for a user and save it without displaying it in the terminal\ngitspyx -u <username> --no-display\n```\n\n### Other\n```bash\n# Show the about section\ngitspyx --about\n\n# Show contact information\ngitspyx --connect\n\n# Show the version\ngitspyx -v\n```\n\n## \ud83d\uddbc\ufe0f Screenshots\n\n### Main Menu + Output Interface\n\n\n## \ud83d\udcc1 Project Structure\n\n```\nGitSpyX/\n\u251c\u2500\u2500 gitspyx.py # Main script\n\u251c\u2500\u2500 requirements.txt # Dependencies\n\u251c\u2500\u2500 README.md # Documentation\n\u2514\u2500\u2500 LICENSE # MIT License\n```\n\n### File Descriptions\n\n\n- **`gitspyx.py`**: Main application script containing all the core functionality\n\n- **`requirements.txt`**: Lists all Python dependencies required by the project\n- **`README.md`**: Comprehensive documentation and usage guide\n- **`LICENSE`**: MIT license file\n\n\n## \ud83e\udd1d Contributing\n\nWe welcome contributions from the community! Here's how you can help:\n\n### Ways to Contribute\n- \ud83d\udc1b **Bug Reports**: Submit detailed issue reports.\n- \ud83d\udca1 **Feature Requests**: Suggest new functionality.\n- \ud83d\udd27 **Code Contributions**: Submit pull requests.\n- \ud83d\udcda **Documentation**: Improve documentation and examples.\n\n### Development Setup\n```bash\n# Fork the repository on GitHub\n# Clone your fork\ngit clone https://github.com/yourusername/GitSpyX.git\n\n# Create a feature branch\ngit checkout -b feature/your-feature-name\n\n# Make changes and test thoroughly\n# Commit with descriptive messages\ngit commit -m \"Add: new feature description\"\n\n# Push to your fork and create pull request\ngit push origin feature/your-feature-name\n```\n\n\n## \ud83d\udcc4 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n```\nMIT License\n\nCopyright (c) 2025 Alex Butler (Vritra Security Organization)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n\n\n## \ud83d\udc68\u200d\ud83d\udcbb Developer\n\n<div align=\"center\">\n\n### Alex Butler\n**Vritra Security Organization**\n\n[](https://github.com/VritraSecz)\n[](https://vritrasec.com)\n[](https://instagram.com/haxorlex)\n[](https://youtube.com/@Technolex)\n\n### \ud83d\udcf1 Telegram Channels\n[](https://t.me/LinkCentralX)\n[](https://t.me/VritraSec)\n[](https://t.me/VritraSecz)\n[](https://t.me/ethicxbot)\n\n</div>\n\n---\n\n<div align=\"center\">\n\n### \ud83c\udf1f Support the Project\n\nIf you find GitSpyX helpful, please consider:\n- \u2b50 Starring the repository\n- \ud83c\udf74 Forking and contributing\n- \ud83d\udce2 Sharing with others\n- \ud83d\udc1b Reporting issues\n- \ud83d\udca1 Suggesting new features\n\n**Made with \u2764\ufe0f by the Vritra Security Organization**\n\n</div>\n\n\n\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2025 Alex Butler - Vritra Security Organization\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n ",
"summary": "Advanced GitHub Intelligence Tool - OSINT tool for GitHub reconnaissance",
"version": "2.2.0",
"project_urls": {
"Bug Reports": "https://github.com/VritraSecz/GitSpyX/issues",
"Documentation": "https://github.com/VritraSecz/GitSpyX#readme",
"Homepage": "https://github.com/VritraSecz/GitSpyX",
"Source": "https://github.com/VritraSecz/GitSpyX"
},
"split_keywords": [
"osint",
" github",
" intelligence",
" reconnaissance",
" security",
" tool",
" cybersecurity"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "14044b4d59b6dc8a5ec1b32b588aa977e2b4cc9caaebed417e97b96373fc305c",
"md5": "5115ea6e37628868fbc20e4060c3d312",
"sha256": "b22edcc4c5713e4c3bb0afef4dba49820b5792d3a513febbce634e426c8b493d"
},
"downloads": -1,
"filename": "gitspyx-2.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5115ea6e37628868fbc20e4060c3d312",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 10625,
"upload_time": "2025-08-05T22:45:49",
"upload_time_iso_8601": "2025-08-05T22:45:49.202603Z",
"url": "https://files.pythonhosted.org/packages/14/04/4b4d59b6dc8a5ec1b32b588aa977e2b4cc9caaebed417e97b96373fc305c/gitspyx-2.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "81b715651e682aef2a4a2057499598d9964b995abfbe2ce19ccdbf92bbc64244",
"md5": "2e17a0012f1d53b5e525ef55626bd47a",
"sha256": "19d4bdaa1f798473ebfcc99d60e9f14220202cc58e68851be0faad0622e5b765"
},
"downloads": -1,
"filename": "gitspyx-2.2.0.tar.gz",
"has_sig": false,
"md5_digest": "2e17a0012f1d53b5e525ef55626bd47a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 10509,
"upload_time": "2025-08-05T22:45:51",
"upload_time_iso_8601": "2025-08-05T22:45:51.203305Z",
"url": "https://files.pythonhosted.org/packages/81/b7/15651e682aef2a4a2057499598d9964b995abfbe2ce19ccdbf92bbc64244/gitspyx-2.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-05 22:45:51",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "VritraSecz",
"github_project": "GitSpyX",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [
{
"name": "rich",
"specs": [
[
">=",
"12.0.0"
]
]
},
{
"name": "requests",
"specs": [
[
">=",
"2.25.1"
]
]
}
],
"lcname": "gitspyx"
}