devhub-tools


Namedevhub-tools JSON
Version 1.0.0 PyPI version JSON
download
home_pageNone
SummaryThe Swiss Army Knife for Developers - A comprehensive CLI toolkit
upload_time2025-08-17 17:25:27
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords cli developer-tools utilities devops automation formatting git api-testing security data-conversion
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 🚀 DevHub - Developer Utilities Hub

<div align="center">

![DevHub Logo](https://via.placeholder.com/300x100/1e1e2e/cdd6f4?text=DevHub%20CLI)

**The Swiss Army Knife for Developers**  
*One CLI tool to rule them all*

[![PyPI version](https://badge.fury.io/py/devhub-cli.svg)](https://badge.fury.io/py/devhub-cli)
[![Downloads](https://pepy.tech/badge/devhub-cli)](https://pepy.tech/project/devhub-cli)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)

[🎬 Demo](#demo) • [📦 Installation](#installation) • [🔧 Features](#features) • [🤝 Contributing](#contributing)

</div>

## 🎯 What is DevHub?

DevHub is a powerful, extensible CLI tool that combines the most useful developer utilities into one unified interface. Stop juggling multiple tools - DevHub has everything you need for your daily development workflow.

## 🎬 Why DevHub CLI?

- ✅ **Free tier**: 60 requests/min and 1,000 requests/day with personal account
- ⚡ **Powerful DevHub Pro**: Access to advanced features and higher limits
- 🔧 **Built-in tools**: Code formatting, API testing, file operations, shell commands, web fetching
- 🧩 **Extensible**: Plugin architecture for custom integrations
- 💻 **Terminal-first**: Designed for developers who live in the command line
- 🔒 **Open source**: Apache 2.0 licensed

## 📦 Installation

DevHub CLI is an open-source developer agent that brings the power of multiple development tools directly into your terminal. It provides lightweight access to essential developer utilities, giving you the most direct path from your prompt to productivity.

## 🎬 Demo

![DevHub in Action](docs/demo.gif)

```bash
# Format your code across multiple languages
devhub format --lang python --path ./src

# Clean up Git branches and commits
devhub git clean-branches --merged

# Test APIs with beautiful output
devhub api test --url https://api.github.com/users/octocat --method GET

# Generate secure passwords
devhub gen password --length 16 --symbols

# Convert data formats instantly
devhub convert json2csv data.json --output data.csv

# Monitor system performance
devhub monitor system --interval 5
```

## 📦 Installation

### 🔥 Quick Install
```bash
pip install devhub-cli
```

### 🚀 Alternative Installation Methods

#### Install globally with npm (Node.js)
```bash
npm install -g @devhub/cli
```

#### Install globally with Homebrew (macOS/Linux)
```bash
brew install devhub-cli
```

#### Run instantly with npx
```bash
# Using npx (no installation required)
npx devhub-cli --help
```

### 🛠️ From Source (Development)
```bash
# Clone the repository
git clone https://github.com/arafat-mahmud/Developer-Utilities-Hub.git
cd Developer-Utilities-Hub

# Create and activate virtual environment
python3 -m venv devhub-env
source devhub-env/bin/activate  # On macOS/Linux
# or
devhub-env\Scripts\activate     # On Windows

# Install in development mode
pip install -e .

# Verify installation
devhub --help
```

### 🐳 Docker
```bash
# Run with Docker
docker run --rm -v $(pwd):/workspace devhub/cli format --lang python
```

### 📋 System Requirements

- **Python**: 3.8 or higher
- **Operating System**: macOS, Linux, Windows
- **Node.js**: 20 or higher (for npm installation)
- **Memory**: 512MB RAM minimum
- **Storage**: 100MB available space

## 🔧 Features

### 🎨 Code Management
- **Multi-language Formatter** - Format Python, JavaScript, Go, Rust, and more
- **Linting & Quality Checks** - Integrated with popular linters
- **Dependency Analysis** - Analyze and update project dependencies

### 📊 Git Utilities
- **Smart Branch Cleanup** - Remove merged/stale branches
- **Commit Analysis** - Analyze commit patterns and statistics
- **Release Management** - Automated changelog generation

### 🌐 API & Network Tools
- **API Testing** - Beautiful HTTP client with response formatting
- **Network Diagnostics** - Ping, traceroute, port scanning
- **SSL Certificate Checker** - Validate and monitor certificates

### 🔐 Security & Crypto
- **Password Generator** - Secure password generation with custom rules
- **Hash Calculator** - MD5, SHA256, bcrypt and more
- **Encryption Tools** - File encryption/decryption utilities

### 📈 Data Processing
- **Format Converters** - JSON ↔ CSV ↔ YAML ↔ XML
- **Data Validation** - JSON Schema, CSV validation
- **Text Processing** - Regex testing, text transformations

### 🖥️ System Monitoring
- **Performance Monitor** - CPU, Memory, Disk usage
- **Process Management** - Kill processes, monitor resources
- **System Information** - Hardware specs, OS details

## 🚀 Quick Start

```bash
# Install DevHub
pip install devhub-cli

# Get help
devhub --help

# Format a Python file
devhub format code --lang python main.py

# Test an API endpoint
devhub api test --url https://httpbin.org/get

# Generate a secure password
devhub gen password --length 20

# Check available plugins
devhub plugin list
```

## 🎯 Getting Started

### Basic Usage

**Start in current directory**
```bash
devhub
```

**Include multiple directories**
```bash
devhub --include-directories ./lib,./docs
```

**Use specific model**
```bash
devhub -m gemini-2.5-flash
```

**Non-interactive mode for scripts**
```bash
devhub -p "Explain the architecture of this codebase"
```

### Quick Examples

**Start a new project**
```bash
cd new-project/
devhub
> Write me a Discord bot that answers questions using a FAQ.md file I will provide
```

**Analyze existing code**
```bash
#### Analyze existing code
```bash
git clone https://github.com/google-gemini/gemini-cli
cd gemini-cli
devhub
> Give me a summary of all of the changes that went in yesterday
```

## 📖 Documentation

| Command Category | Documentation |
|-----------------|---------------|
| 📝 **Formatting** | [Format Guide](docs/formatting.md) |
| 🔀 **Git Tools** | [Git Guide](docs/git.md) |
| 🌐 **API Testing** | [API Guide](docs/api.md) |
| 🔐 **Security** | [Security Guide](docs/security.md) |
| 📊 **Data Tools** | [Data Guide](docs/data.md) |
| 🖥️ **System** | [System Guide](docs/system.md) |

## 🏗️ Architecture

DevHub follows a modular plugin architecture:

```
devhub/
├── core/           # Core CLI framework
├── plugins/        # Feature modules
│   ├── format/     # Code formatting
│   ├── git/        # Git utilities
│   ├── api/        # API tools
│   ├── security/   # Security tools
│   ├── data/       # Data processing
│   └── system/     # System monitoring
├── utils/          # Shared utilities
└── tests/          # Test suite
```

## 🤝 Contributing

We love contributions! DevHub is designed to be easily extensible.

### 🔧 Adding a New Plugin

1. Create a new plugin directory: `devhub/plugins/myplugin/`
2. Implement the plugin interface
3. Add tests and documentation
4. Submit a PR!

See our [Contributing Guide](CONTRIBUTING.md) for detailed instructions.

### 🐛 Found a Bug?

Please open an issue with:
- DevHub version (`devhub --version`)
- Operating system
- Steps to reproduce

## 📊 Plugin Ecosystem

| Plugin | Description | Status |
|--------|-------------|--------|
| 🎨 **formatter** | Multi-language code formatting | ✅ Stable |
| 🔀 **git** | Git workflow automation | ✅ Stable |
| 🌐 **api** | HTTP API testing tools | ✅ Stable |
| 🔐 **security** | Security and crypto utilities | ✅ Stable |
| 📊 **data** | Data format conversion | ✅ Stable |
| 🖥️ **system** | System monitoring | ✅ Stable |
| 🐳 **docker** | Docker management | 🚧 Coming Soon |
| ☁️ **cloud** | Cloud provider tools | 🚧 Coming Soon |
| 📱 **mobile** | Mobile dev utilities | 💡 Planned |

## 🎯 Roadmap

- [x] Core CLI framework
- [x] Plugin system architecture
- [x] Basic formatting tools
- [x] Git utilities
- [x] API testing
- [x] Security tools
- [ ] Web dashboard interface
- [ ] VS Code extension
- [ ] GitHub Actions integration
- [ ] Cloud deployment tools
- [ ] AI-powered code suggestions

## 🏆 Why DevHub?

### ⚡ **Performance First**
- Written in Python with C extensions for speed
- Minimal startup time
- Efficient memory usage

### 🧩 **Extensible**
- Plugin architecture
- Custom command creation
- Third-party integrations

### 🎯 **Developer Experience**
- Intuitive command structure
- Rich help system
- Beautiful output formatting

### 🔒 **Secure**
- No data collection
- Local-first approach
- Security-focused utilities


## 📄 License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## 🙏 Acknowledgments

- Built with [Click](https://click.palletsprojects.com/) for CLI framework
- Inspired by the amazing developer community
- Thanks to all our [contributors](https://github.com/username/devhub/graphs/contributors)

## 📞 Support

- 📖 [Documentation](https://devhub-cli.readthedocs.io/)
- 💬 [Discussions](https://github.com/username/devhub/discussions)
- 🐛 [Issues](https://github.com/username/devhub/issues)
- 🐦 [@devhub_cli](https://twitter.com/devhub_cli)

---

<div align="center">

**Made with ❤️ by developers, for developers**

[⭐ Star us on GitHub](https://github.com/username/devhub) • [🐦 Follow on Twitter](https://twitter.com/devhub_cli) • [📖 Read the Docs](https://devhub-cli.readthedocs.io/)

</div>

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "devhub-tools",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "DevHub Team <hello@devhub.dev>",
    "keywords": "cli, developer-tools, utilities, devops, automation, formatting, git, api-testing, security, data-conversion",
    "author": null,
    "author_email": "DevHub Team <hello@devhub.dev>",
    "download_url": "https://files.pythonhosted.org/packages/50/ef/46452a89647f2c552dc4b5aeb9a46cd1e156eca43ea5961b922bf6b3bb7a/devhub_tools-1.0.0.tar.gz",
    "platform": null,
    "description": "# \ud83d\ude80 DevHub - Developer Utilities Hub\n\n<div align=\"center\">\n\n![DevHub Logo](https://via.placeholder.com/300x100/1e1e2e/cdd6f4?text=DevHub%20CLI)\n\n**The Swiss Army Knife for Developers**  \n*One CLI tool to rule them all*\n\n[![PyPI version](https://badge.fury.io/py/devhub-cli.svg)](https://badge.fury.io/py/devhub-cli)\n[![Downloads](https://pepy.tech/badge/devhub-cli)](https://pepy.tech/project/devhub-cli)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)\n\n[\ud83c\udfac Demo](#demo) \u2022 [\ud83d\udce6 Installation](#installation) \u2022 [\ud83d\udd27 Features](#features) \u2022 [\ud83e\udd1d Contributing](#contributing)\n\n</div>\n\n## \ud83c\udfaf What is DevHub?\n\nDevHub is a powerful, extensible CLI tool that combines the most useful developer utilities into one unified interface. Stop juggling multiple tools - DevHub has everything you need for your daily development workflow.\n\n## \ud83c\udfac Why DevHub CLI?\n\n- \u2705 **Free tier**: 60 requests/min and 1,000 requests/day with personal account\n- \u26a1 **Powerful DevHub Pro**: Access to advanced features and higher limits\n- \ud83d\udd27 **Built-in tools**: Code formatting, API testing, file operations, shell commands, web fetching\n- \ud83e\udde9 **Extensible**: Plugin architecture for custom integrations\n- \ud83d\udcbb **Terminal-first**: Designed for developers who live in the command line\n- \ud83d\udd12 **Open source**: Apache 2.0 licensed\n\n## \ud83d\udce6 Installation\n\nDevHub CLI is an open-source developer agent that brings the power of multiple development tools directly into your terminal. It provides lightweight access to essential developer utilities, giving you the most direct path from your prompt to productivity.\n\n## \ud83c\udfac Demo\n\n![DevHub in Action](docs/demo.gif)\n\n```bash\n# Format your code across multiple languages\ndevhub format --lang python --path ./src\n\n# Clean up Git branches and commits\ndevhub git clean-branches --merged\n\n# Test APIs with beautiful output\ndevhub api test --url https://api.github.com/users/octocat --method GET\n\n# Generate secure passwords\ndevhub gen password --length 16 --symbols\n\n# Convert data formats instantly\ndevhub convert json2csv data.json --output data.csv\n\n# Monitor system performance\ndevhub monitor system --interval 5\n```\n\n## \ud83d\udce6 Installation\n\n### \ud83d\udd25 Quick Install\n```bash\npip install devhub-cli\n```\n\n### \ud83d\ude80 Alternative Installation Methods\n\n#### Install globally with npm (Node.js)\n```bash\nnpm install -g @devhub/cli\n```\n\n#### Install globally with Homebrew (macOS/Linux)\n```bash\nbrew install devhub-cli\n```\n\n#### Run instantly with npx\n```bash\n# Using npx (no installation required)\nnpx devhub-cli --help\n```\n\n### \ud83d\udee0\ufe0f From Source (Development)\n```bash\n# Clone the repository\ngit clone https://github.com/arafat-mahmud/Developer-Utilities-Hub.git\ncd Developer-Utilities-Hub\n\n# Create and activate virtual environment\npython3 -m venv devhub-env\nsource devhub-env/bin/activate  # On macOS/Linux\n# or\ndevhub-env\\Scripts\\activate     # On Windows\n\n# Install in development mode\npip install -e .\n\n# Verify installation\ndevhub --help\n```\n\n### \ud83d\udc33 Docker\n```bash\n# Run with Docker\ndocker run --rm -v $(pwd):/workspace devhub/cli format --lang python\n```\n\n### \ud83d\udccb System Requirements\n\n- **Python**: 3.8 or higher\n- **Operating System**: macOS, Linux, Windows\n- **Node.js**: 20 or higher (for npm installation)\n- **Memory**: 512MB RAM minimum\n- **Storage**: 100MB available space\n\n## \ud83d\udd27 Features\n\n### \ud83c\udfa8 Code Management\n- **Multi-language Formatter** - Format Python, JavaScript, Go, Rust, and more\n- **Linting & Quality Checks** - Integrated with popular linters\n- **Dependency Analysis** - Analyze and update project dependencies\n\n### \ud83d\udcca Git Utilities\n- **Smart Branch Cleanup** - Remove merged/stale branches\n- **Commit Analysis** - Analyze commit patterns and statistics\n- **Release Management** - Automated changelog generation\n\n### \ud83c\udf10 API & Network Tools\n- **API Testing** - Beautiful HTTP client with response formatting\n- **Network Diagnostics** - Ping, traceroute, port scanning\n- **SSL Certificate Checker** - Validate and monitor certificates\n\n### \ud83d\udd10 Security & Crypto\n- **Password Generator** - Secure password generation with custom rules\n- **Hash Calculator** - MD5, SHA256, bcrypt and more\n- **Encryption Tools** - File encryption/decryption utilities\n\n### \ud83d\udcc8 Data Processing\n- **Format Converters** - JSON \u2194 CSV \u2194 YAML \u2194 XML\n- **Data Validation** - JSON Schema, CSV validation\n- **Text Processing** - Regex testing, text transformations\n\n### \ud83d\udda5\ufe0f System Monitoring\n- **Performance Monitor** - CPU, Memory, Disk usage\n- **Process Management** - Kill processes, monitor resources\n- **System Information** - Hardware specs, OS details\n\n## \ud83d\ude80 Quick Start\n\n```bash\n# Install DevHub\npip install devhub-cli\n\n# Get help\ndevhub --help\n\n# Format a Python file\ndevhub format code --lang python main.py\n\n# Test an API endpoint\ndevhub api test --url https://httpbin.org/get\n\n# Generate a secure password\ndevhub gen password --length 20\n\n# Check available plugins\ndevhub plugin list\n```\n\n## \ud83c\udfaf Getting Started\n\n### Basic Usage\n\n**Start in current directory**\n```bash\ndevhub\n```\n\n**Include multiple directories**\n```bash\ndevhub --include-directories ./lib,./docs\n```\n\n**Use specific model**\n```bash\ndevhub -m gemini-2.5-flash\n```\n\n**Non-interactive mode for scripts**\n```bash\ndevhub -p \"Explain the architecture of this codebase\"\n```\n\n### Quick Examples\n\n**Start a new project**\n```bash\ncd new-project/\ndevhub\n> Write me a Discord bot that answers questions using a FAQ.md file I will provide\n```\n\n**Analyze existing code**\n```bash\n#### Analyze existing code\n```bash\ngit clone https://github.com/google-gemini/gemini-cli\ncd gemini-cli\ndevhub\n> Give me a summary of all of the changes that went in yesterday\n```\n\n## \ud83d\udcd6 Documentation\n\n| Command Category | Documentation |\n|-----------------|---------------|\n| \ud83d\udcdd **Formatting** | [Format Guide](docs/formatting.md) |\n| \ud83d\udd00 **Git Tools** | [Git Guide](docs/git.md) |\n| \ud83c\udf10 **API Testing** | [API Guide](docs/api.md) |\n| \ud83d\udd10 **Security** | [Security Guide](docs/security.md) |\n| \ud83d\udcca **Data Tools** | [Data Guide](docs/data.md) |\n| \ud83d\udda5\ufe0f **System** | [System Guide](docs/system.md) |\n\n## \ud83c\udfd7\ufe0f Architecture\n\nDevHub follows a modular plugin architecture:\n\n```\ndevhub/\n\u251c\u2500\u2500 core/           # Core CLI framework\n\u251c\u2500\u2500 plugins/        # Feature modules\n\u2502   \u251c\u2500\u2500 format/     # Code formatting\n\u2502   \u251c\u2500\u2500 git/        # Git utilities\n\u2502   \u251c\u2500\u2500 api/        # API tools\n\u2502   \u251c\u2500\u2500 security/   # Security tools\n\u2502   \u251c\u2500\u2500 data/       # Data processing\n\u2502   \u2514\u2500\u2500 system/     # System monitoring\n\u251c\u2500\u2500 utils/          # Shared utilities\n\u2514\u2500\u2500 tests/          # Test suite\n```\n\n## \ud83e\udd1d Contributing\n\nWe love contributions! DevHub is designed to be easily extensible.\n\n### \ud83d\udd27 Adding a New Plugin\n\n1. Create a new plugin directory: `devhub/plugins/myplugin/`\n2. Implement the plugin interface\n3. Add tests and documentation\n4. Submit a PR!\n\nSee our [Contributing Guide](CONTRIBUTING.md) for detailed instructions.\n\n### \ud83d\udc1b Found a Bug?\n\nPlease open an issue with:\n- DevHub version (`devhub --version`)\n- Operating system\n- Steps to reproduce\n\n## \ud83d\udcca Plugin Ecosystem\n\n| Plugin | Description | Status |\n|--------|-------------|--------|\n| \ud83c\udfa8 **formatter** | Multi-language code formatting | \u2705 Stable |\n| \ud83d\udd00 **git** | Git workflow automation | \u2705 Stable |\n| \ud83c\udf10 **api** | HTTP API testing tools | \u2705 Stable |\n| \ud83d\udd10 **security** | Security and crypto utilities | \u2705 Stable |\n| \ud83d\udcca **data** | Data format conversion | \u2705 Stable |\n| \ud83d\udda5\ufe0f **system** | System monitoring | \u2705 Stable |\n| \ud83d\udc33 **docker** | Docker management | \ud83d\udea7 Coming Soon |\n| \u2601\ufe0f **cloud** | Cloud provider tools | \ud83d\udea7 Coming Soon |\n| \ud83d\udcf1 **mobile** | Mobile dev utilities | \ud83d\udca1 Planned |\n\n## \ud83c\udfaf Roadmap\n\n- [x] Core CLI framework\n- [x] Plugin system architecture\n- [x] Basic formatting tools\n- [x] Git utilities\n- [x] API testing\n- [x] Security tools\n- [ ] Web dashboard interface\n- [ ] VS Code extension\n- [ ] GitHub Actions integration\n- [ ] Cloud deployment tools\n- [ ] AI-powered code suggestions\n\n## \ud83c\udfc6 Why DevHub?\n\n### \u26a1 **Performance First**\n- Written in Python with C extensions for speed\n- Minimal startup time\n- Efficient memory usage\n\n### \ud83e\udde9 **Extensible**\n- Plugin architecture\n- Custom command creation\n- Third-party integrations\n\n### \ud83c\udfaf **Developer Experience**\n- Intuitive command structure\n- Rich help system\n- Beautiful output formatting\n\n### \ud83d\udd12 **Secure**\n- No data collection\n- Local-first approach\n- Security-focused utilities\n\n\n## \ud83d\udcc4 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## \ud83d\ude4f Acknowledgments\n\n- Built with [Click](https://click.palletsprojects.com/) for CLI framework\n- Inspired by the amazing developer community\n- Thanks to all our [contributors](https://github.com/username/devhub/graphs/contributors)\n\n## \ud83d\udcde Support\n\n- \ud83d\udcd6 [Documentation](https://devhub-cli.readthedocs.io/)\n- \ud83d\udcac [Discussions](https://github.com/username/devhub/discussions)\n- \ud83d\udc1b [Issues](https://github.com/username/devhub/issues)\n- \ud83d\udc26 [@devhub_cli](https://twitter.com/devhub_cli)\n\n---\n\n<div align=\"center\">\n\n**Made with \u2764\ufe0f by developers, for developers**\n\n[\u2b50 Star us on GitHub](https://github.com/username/devhub) \u2022 [\ud83d\udc26 Follow on Twitter](https://twitter.com/devhub_cli) \u2022 [\ud83d\udcd6 Read the Docs](https://devhub-cli.readthedocs.io/)\n\n</div>\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "The Swiss Army Knife for Developers - A comprehensive CLI toolkit",
    "version": "1.0.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/arafat-mahmud/Developer-Utilities-Hub/issues",
        "Changelog": "https://github.com/arafat-mahmud/Developer-Utilities-Hub/blob/main/CHANGELOG.md",
        "Discussions": "https://github.com/arafat-mahmud/Developer-Utilities-Hub/discussions",
        "Documentation": "https://github.com/arafat-mahmud/Developer-Utilities-Hub/blob/main/README.md",
        "Homepage": "https://github.com/arafat-mahmud/Developer-Utilities-Hub",
        "Repository": "https://github.com/arafat-mahmud/Developer-Utilities-Hub.git"
    },
    "split_keywords": [
        "cli",
        " developer-tools",
        " utilities",
        " devops",
        " automation",
        " formatting",
        " git",
        " api-testing",
        " security",
        " data-conversion"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09e6c2e9cca504fd17eee51e4651f7f912ef14ed842669074ddb72f398414308",
                "md5": "49597939962c41897aab13c850d72d6c",
                "sha256": "349bd943b8f9431cf2182e33787207b123054550daeb66ffea43a7047f0d8bb3"
            },
            "downloads": -1,
            "filename": "devhub_tools-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "49597939962c41897aab13c850d72d6c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 23733,
            "upload_time": "2025-08-17T17:25:26",
            "upload_time_iso_8601": "2025-08-17T17:25:26.225034Z",
            "url": "https://files.pythonhosted.org/packages/09/e6/c2e9cca504fd17eee51e4651f7f912ef14ed842669074ddb72f398414308/devhub_tools-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50ef46452a89647f2c552dc4b5aeb9a46cd1e156eca43ea5961b922bf6b3bb7a",
                "md5": "1958b8c5d0b751feb1df8b3531fbb22c",
                "sha256": "3890ca0cce1391dc098fd478fca64b837f2a7859a2e9d2fab591e9e823f6701a"
            },
            "downloads": -1,
            "filename": "devhub_tools-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1958b8c5d0b751feb1df8b3531fbb22c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 26818,
            "upload_time": "2025-08-17T17:25:27",
            "upload_time_iso_8601": "2025-08-17T17:25:27.902570Z",
            "url": "https://files.pythonhosted.org/packages/50/ef/46452a89647f2c552dc4b5aeb9a46cd1e156eca43ea5961b922bf6b3bb7a/devhub_tools-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-17 17:25:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "arafat-mahmud",
    "github_project": "Developer-Utilities-Hub",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "devhub-tools"
}
        
Elapsed time: 1.01516s