minidevtools


Nameminidevtools JSON
Version 0.0.1 PyPI version JSON
download
home_pagehttps://github.com/odest/MiniDevTools
SummaryA Swiss Army knife for developers
upload_time2024-04-30 09:50:54
maintainerodest
docs_urlNone
authorodest
requires_python<4.0,>=3.8
licenseNone
keywords developers tools
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
<img src="https://raw.githubusercontent.com/odest/MiniDevTools/master/docs/source/_static/logo.png" alt="logo" width="80" height="80"/>
</p>

<div align="center">

MiniDevTools
===========================
<h4> A Swiss Army Knife for Developers </h4>

[![Documentation](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](https://minidevtools.readthedocs.io/en/latest/index.html#)
[![python](https://img.shields.io/badge/python-3.12.0-green)](https://www.python.org/downloads/release/python-3120/)
[![tag](https://img.shields.io/badge/tag-v0.0.1-green)](https://github.com/odest/MiniDevTools/tags)
[![version](https://img.shields.io/badge/version-PreRelease-orange)](https://github.com/odest/MiniDevTools/releases)
[![license](https://img.shields.io/badge/License-GPLv3-blue?color=#4ec820)](https://github.com/odest/MiniDevTools?tab=GPL-3.0-1-ov-file)
---

<br>

<div align="center">

MiniDevTools is a developer tools project designed to empower users to manage their data directly on their own computers without the need to share it with others. It offers a seamless experience for users to handle tasks easily, quickly, and offline.

</div></div>

<br>

<center>

![banner](https://raw.githubusercontent.com/odest/MiniDevTools/master/docs/source/_static/banner.png)

</center>



## Table of Contents

- [Table of Contents](#table-of-contents)
- [Features](#features)
- [Tools](#tools)
  - [1. HashTool](#1-hashtool)
- [Installation](#installation)
  - [From PyPI](#from-pypi)
  - [From Source](#from-source)
- [Usage](#usage)
  - [1. As a Package](#1-as-a-package)
  - [2. Command Line Interface (CLI)](#2-command-line-interface-cli)
  - [3. Graphical User Interface (GUI)](#3-graphical-user-interface-gui)
- [Documentation](#documentation)
- [License](#license)


<br>


## Features

- **Privacy-focused**: *With* **MiniDevTools**, *users can work with their data locally, ensuring their privacy and security are maintained at all times.*

- **Offline functionality**: *Whether you're in a remote location or experiencing internet connectivity issues,* **MiniDevTools** *ensures that you can continue your work without interruption.*

- **Open Source**: **MiniDevTools** *is* **open source**, *allowing you to inspect and modify the code according to your requirements, and contribute to its development.*

- **Cross-Platform Compatibility**: *Whether you're using* **Windows, macOS**, *or* **Linux**, **MiniDevTools** *works seamlessly across different operating systems.*

- **Efficiency**: *Perform tasks efficiently and effectively with* **MiniDevTools**' *intuitive interface and streamlined processes.*

- **Customizable**: *Tailor* **MiniDevTools** *to suit your specific needs with customizable options and settings.*

- **Developer-friendly**: *Built with developers in mind,* **MiniDevTools** *offers a range of features and functionalities to support your workflow.*

- **Flexible Usage**: **MiniDevTools** *provides versatile usage options, including a* **Command Line Interface (CLI)**, **Graphical User Interface (GUI)**, *and seamless* **Package Integration** *into* **Python** *projects.*

<br>


## Tools

### 1. HashTool

**HashTool** *is a versatile tool that caters to the needs of developers, security professionals, and anyone who values data integrity and security. Whether you need to hash sensitive information or verify file authenticity, HashTool provides the tools you need to get the job done efficiently and securely.*

   **Features:**

   - **Hashing Text**: **HashTool** *allows you to hash text strings securely using various hashing algorithms such as* **MD5, SHA-1, SHA-256**, *and* **SHA-512**.

   - **Hashing Files**: *With* **HashTool**, *you can generate hashes for files of any type and size. Simply provide the file path, and* **HashTool** *will compute the hash value for you.*

   - **Multiple Hash Algorithms**: **HashTool** *supports a wide range of hash algorithms, giving you the flexibility to choose the one that suits your security requirements.*

> [!IMPORTANT]
> *Please be aware that* **MiniDevTools** *is currently in the development phase. As such, tools will be added gradually over time to enhance functionality and usability. We appreciate your patience and understanding as we work to bring you the best possible experience.*

<br>

## Installation

### From PyPI

*To install* **MiniDevTools** *from* **[PyPI](https://pypi.org/project/minidevtools)**, *simply use the following command:*

```bash
  pip install minidevtools
```

<br>

### From Source

*To install* **MiniDevTools** *from* **[Source](https://github.com/odest/MiniDevTools/archive/refs/heads/master.zip)**, *follow these steps:*

1. Clone the repository:

  ```bash
  git clone https://github.com/odest/MiniDevTools.git
  ```

2. Navigate to the **MiniDevTools** directory:

  ```bash
  cd MiniDevTools
  ```

3. Install the package with using *pip:*

  ```bash
  pip install .
  ```

<br>

  *By following these steps, you will have successfully installed* **MiniDevTools** *and its dependencies.*

<br>


## Usage

**MiniDevTools** *offers three options for usage:*

<br>

### 1. As a Package

*Integrate* **MiniDevTools** *into your own code or project as a package. Simply import it as follows:*

```python
from minidevtools import HashTool

# Hashing text
hash_text = HashTool.SHA256(text="Hello, world!")
print("Hashed text with SHA256:", hash_text)

# Hashing file
hash_file = HashTool.SHA256(file="image.png")
print("Hashed file with SHA256:", hash_file)
```

*You can then use the functionalities provided by* **MiniDevTools** *within your codebase.*

<br>

### 2. Command Line Interface (CLI)

*Utilize* **MiniDevTools** *via the* **Command Line Interface (CLI)** *for quick and efficient tasks. Execute the CLI script as follows:*

```bash
mdt
```

<br>

<table>
  <tr>
    <td><img src="https://raw.githubusercontent.com/odest/MiniDevTools/master/docs/source/_static/cli-1.png" alt="cli-1" width = 640px height = 360px></td>
    <td><img src="https://raw.githubusercontent.com/odest/MiniDevTools/master/docs/source/_static/cli-2.png" alt="cli-2" width = 640px height = 360px></td>
   </tr> 
</table>


> [!NOTE]
> *See the* [Documentation](https://minidevtools.readthedocs.io/en/latest/index.html#) *for details.*


*This allows you to access* **MiniDevTools**' *features directly from the command line.*

<br>

### 3. Graphical User Interface (GUI)

*Experience* **MiniDevTools'** *capabilities through the* **Graphical User Interface (GUI)** *for a user-friendly interaction. Launch the GUI to access its functionalities effortlessly.*

*Here is a concept gui design:*


<center>

![gui](https://raw.githubusercontent.com/odest/MiniDevTools/master/docs/source/_static/gui.png)

</center>



> [!NOTE]
> *The GUI option is currently under development and will be available soon.*


<br>

*Choose the option that best suits your workflow and preferences to make the most out of* **MiniDevTools.**

<br>


## Documentation

*This project's detailed documentation can be found on our documentation website. Here, you'll find comprehensive information about the project's architecture, usage instructions, API reference, and much more.*

*Please visit [our documentation website](https://minidevtools.readthedocs.io/en/latest/index.html#) to explore the complete documentation for this project.*

<br>

## License  
- *This project is licensed under the* **GPL-3.0 License** - *see the* [LICENSE](https://github.com/odest/MiniDevTools?tab=GPL-3.0-1-ov-file) *file for details.*


<br>


## 

<div align="center">
MiniDevTools - Empowering Developers Evernwhere
</div>


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/odest/MiniDevTools",
    "name": "minidevtools",
    "maintainer": "odest",
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": "destrochloridium@gmail.com",
    "keywords": "Developers, Tools",
    "author": "odest",
    "author_email": "destrochloridium@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/b0/d7/44a527d491b8bd0b00442d8ad522a3e604f00eddbf3d02441efd56583fa2/minidevtools-0.0.1.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n<img src=\"https://raw.githubusercontent.com/odest/MiniDevTools/master/docs/source/_static/logo.png\" alt=\"logo\" width=\"80\" height=\"80\"/>\n</p>\n\n<div align=\"center\">\n\nMiniDevTools\n===========================\n<h4> A Swiss Army Knife for Developers </h4>\n\n[![Documentation](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](https://minidevtools.readthedocs.io/en/latest/index.html#)\n[![python](https://img.shields.io/badge/python-3.12.0-green)](https://www.python.org/downloads/release/python-3120/)\n[![tag](https://img.shields.io/badge/tag-v0.0.1-green)](https://github.com/odest/MiniDevTools/tags)\n[![version](https://img.shields.io/badge/version-PreRelease-orange)](https://github.com/odest/MiniDevTools/releases)\n[![license](https://img.shields.io/badge/License-GPLv3-blue?color=#4ec820)](https://github.com/odest/MiniDevTools?tab=GPL-3.0-1-ov-file)\n---\n\n<br>\n\n<div align=\"center\">\n\nMiniDevTools is a developer tools project designed to empower users to manage their data directly on their own computers without the need to share it with others. It offers a seamless experience for users to handle tasks easily, quickly, and offline.\n\n</div></div>\n\n<br>\n\n<center>\n\n![banner](https://raw.githubusercontent.com/odest/MiniDevTools/master/docs/source/_static/banner.png)\n\n</center>\n\n\n\n## Table of Contents\n\n- [Table of Contents](#table-of-contents)\n- [Features](#features)\n- [Tools](#tools)\n  - [1. HashTool](#1-hashtool)\n- [Installation](#installation)\n  - [From PyPI](#from-pypi)\n  - [From Source](#from-source)\n- [Usage](#usage)\n  - [1. As a Package](#1-as-a-package)\n  - [2. Command Line Interface (CLI)](#2-command-line-interface-cli)\n  - [3. Graphical User Interface (GUI)](#3-graphical-user-interface-gui)\n- [Documentation](#documentation)\n- [License](#license)\n\n\n<br>\n\n\n## Features\n\n- **Privacy-focused**: *With* **MiniDevTools**, *users can work with their data locally, ensuring their privacy and security are maintained at all times.*\n\n- **Offline functionality**: *Whether you're in a remote location or experiencing internet connectivity issues,* **MiniDevTools** *ensures that you can continue your work without interruption.*\n\n- **Open Source**: **MiniDevTools** *is* **open source**, *allowing you to inspect and modify the code according to your requirements, and contribute to its development.*\n\n- **Cross-Platform Compatibility**: *Whether you're using* **Windows, macOS**, *or* **Linux**, **MiniDevTools** *works seamlessly across different operating systems.*\n\n- **Efficiency**: *Perform tasks efficiently and effectively with* **MiniDevTools**' *intuitive interface and streamlined processes.*\n\n- **Customizable**: *Tailor* **MiniDevTools** *to suit your specific needs with customizable options and settings.*\n\n- **Developer-friendly**: *Built with developers in mind,* **MiniDevTools** *offers a range of features and functionalities to support your workflow.*\n\n- **Flexible Usage**: **MiniDevTools** *provides versatile usage options, including a* **Command Line Interface (CLI)**, **Graphical User Interface (GUI)**, *and seamless* **Package Integration** *into* **Python** *projects.*\n\n<br>\n\n\n## Tools\n\n### 1. HashTool\n\n**HashTool** *is a versatile tool that caters to the needs of developers, security professionals, and anyone who values data integrity and security. Whether you need to hash sensitive information or verify file authenticity, HashTool provides the tools you need to get the job done efficiently and securely.*\n\n   **Features:**\n\n   - **Hashing Text**: **HashTool** *allows you to hash text strings securely using various hashing algorithms such as* **MD5, SHA-1, SHA-256**, *and* **SHA-512**.\n\n   - **Hashing Files**: *With* **HashTool**, *you can generate hashes for files of any type and size. Simply provide the file path, and* **HashTool** *will compute the hash value for you.*\n\n   - **Multiple Hash Algorithms**: **HashTool** *supports a wide range of hash algorithms, giving you the flexibility to choose the one that suits your security requirements.*\n\n> [!IMPORTANT]\n> *Please be aware that* **MiniDevTools** *is currently in the development phase. As such, tools will be added gradually over time to enhance functionality and usability. We appreciate your patience and understanding as we work to bring you the best possible experience.*\n\n<br>\n\n## Installation\n\n### From PyPI\n\n*To install* **MiniDevTools** *from* **[PyPI](https://pypi.org/project/minidevtools)**, *simply use the following command:*\n\n```bash\n  pip install minidevtools\n```\n\n<br>\n\n### From Source\n\n*To install* **MiniDevTools** *from* **[Source](https://github.com/odest/MiniDevTools/archive/refs/heads/master.zip)**, *follow these steps:*\n\n1. Clone the repository:\n\n  ```bash\n  git clone https://github.com/odest/MiniDevTools.git\n  ```\n\n2. Navigate to the **MiniDevTools** directory:\n\n  ```bash\n  cd MiniDevTools\n  ```\n\n3. Install the package with using *pip:*\n\n  ```bash\n  pip install .\n  ```\n\n<br>\n\n  *By following these steps, you will have successfully installed* **MiniDevTools** *and its dependencies.*\n\n<br>\n\n\n## Usage\n\n**MiniDevTools** *offers three options for usage:*\n\n<br>\n\n### 1. As a Package\n\n*Integrate* **MiniDevTools** *into your own code or project as a package. Simply import it as follows:*\n\n```python\nfrom minidevtools import HashTool\n\n# Hashing text\nhash_text = HashTool.SHA256(text=\"Hello, world!\")\nprint(\"Hashed text with SHA256:\", hash_text)\n\n# Hashing file\nhash_file = HashTool.SHA256(file=\"image.png\")\nprint(\"Hashed file with SHA256:\", hash_file)\n```\n\n*You can then use the functionalities provided by* **MiniDevTools** *within your codebase.*\n\n<br>\n\n### 2. Command Line Interface (CLI)\n\n*Utilize* **MiniDevTools** *via the* **Command Line Interface (CLI)** *for quick and efficient tasks. Execute the CLI script as follows:*\n\n```bash\nmdt\n```\n\n<br>\n\n<table>\n  <tr>\n    <td><img src=\"https://raw.githubusercontent.com/odest/MiniDevTools/master/docs/source/_static/cli-1.png\" alt=\"cli-1\" width = 640px height = 360px></td>\n    <td><img src=\"https://raw.githubusercontent.com/odest/MiniDevTools/master/docs/source/_static/cli-2.png\" alt=\"cli-2\" width = 640px height = 360px></td>\n   </tr> \n</table>\n\n\n> [!NOTE]\n> *See the* [Documentation](https://minidevtools.readthedocs.io/en/latest/index.html#) *for details.*\n\n\n*This allows you to access* **MiniDevTools**' *features directly from the command line.*\n\n<br>\n\n### 3. Graphical User Interface (GUI)\n\n*Experience* **MiniDevTools'** *capabilities through the* **Graphical User Interface (GUI)** *for a user-friendly interaction. Launch the GUI to access its functionalities effortlessly.*\n\n*Here is a concept gui design:*\n\n\n<center>\n\n![gui](https://raw.githubusercontent.com/odest/MiniDevTools/master/docs/source/_static/gui.png)\n\n</center>\n\n\n\n> [!NOTE]\n> *The GUI option is currently under development and will be available soon.*\n\n\n<br>\n\n*Choose the option that best suits your workflow and preferences to make the most out of* **MiniDevTools.**\n\n<br>\n\n\n## Documentation\n\n*This project's detailed documentation can be found on our documentation website. Here, you'll find comprehensive information about the project's architecture, usage instructions, API reference, and much more.*\n\n*Please visit [our documentation website](https://minidevtools.readthedocs.io/en/latest/index.html#) to explore the complete documentation for this project.*\n\n<br>\n\n## License  \n- *This project is licensed under the* **GPL-3.0 License** - *see the* [LICENSE](https://github.com/odest/MiniDevTools?tab=GPL-3.0-1-ov-file) *file for details.*\n\n\n<br>\n\n\n## \n\n<div align=\"center\">\nMiniDevTools - Empowering Developers Evernwhere\n</div>\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Swiss Army knife for developers",
    "version": "0.0.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/odest/MiniDevTools/issues",
        "Changelog": "https://github.com/odest/MiniDevTools/releases",
        "Documentation": "https://minidevtools.readthedocs.io/en/latest/",
        "Homepage": "https://github.com/odest/MiniDevTools",
        "Source": "https://github.com/odest/MiniDevTools"
    },
    "split_keywords": [
        "developers",
        " tools"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0908c6924d8cc29c9ac201ce7d18b70518d399b13fe18e2bd20b82020037a5d",
                "md5": "d4c68cc4de174e9b57f1f9c9fb978ff7",
                "sha256": "ea926e3d86e28f09659d20449d373e4b8f776680dfea3faeeac49252f8a0584e"
            },
            "downloads": -1,
            "filename": "minidevtools-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d4c68cc4de174e9b57f1f9c9fb978ff7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 24431,
            "upload_time": "2024-04-30T09:50:52",
            "upload_time_iso_8601": "2024-04-30T09:50:52.258261Z",
            "url": "https://files.pythonhosted.org/packages/b0/90/8c6924d8cc29c9ac201ce7d18b70518d399b13fe18e2bd20b82020037a5d/minidevtools-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0d744a527d491b8bd0b00442d8ad522a3e604f00eddbf3d02441efd56583fa2",
                "md5": "1333ac22af91a661d497959360844cff",
                "sha256": "e228e530ad3da8e5594526f6422bf5f1ee27b0047b059110a0e19a3ca8824281"
            },
            "downloads": -1,
            "filename": "minidevtools-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "1333ac22af91a661d497959360844cff",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 22399,
            "upload_time": "2024-04-30T09:50:54",
            "upload_time_iso_8601": "2024-04-30T09:50:54.484269Z",
            "url": "https://files.pythonhosted.org/packages/b0/d7/44a527d491b8bd0b00442d8ad522a3e604f00eddbf3d02441efd56583fa2/minidevtools-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-30 09:50:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "odest",
    "github_project": "MiniDevTools",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "minidevtools"
}
        
Elapsed time: 0.24913s