deepchopper-cli


Namedeepchopper-cli JSON
Version 1.2.5 PyPI version JSON
download
home_pagehttps://serde.rs
SummaryCLI for DeepChopper: A Genomic Language Model for Chimera Artifact Detection
upload_time2024-10-18 18:20:45
maintainerNone
docs_urlNone
authorYangyang Li <yangyang.li@northwestern.edu>
requires_python>=3.10
licenseApache-2.0
keywords deep learning bioinformatics rust
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # <img src="./documentation/logo.webp" alt="logo" height="100"/> **DeepChopper** [![social](https://img.shields.io/github/stars/ylab-hi/DeepChopper?style=social)](https://github.com/ylab-hi/DeepChopper/stargazers)

[![pypi](https://img.shields.io/pypi/v/deepchopper.svg)](https://pypi.python.org/pypi/deepchopper)
[![PyPI - Wheel](https://img.shields.io/pypi/wheel/deepchopper)](https://pypi.org/project/deepchopper/#files)
[![license](https://img.shields.io/pypi/l/deepchopper.svg)](https://github.com/ylab-hi/DeepChopper/blob/main/LICENSE)
[![pypi version](https://img.shields.io/pypi/pyversions/deepchopper.svg)](https://pypi.python.org/pypi/deepbiop)
[![platform](https://img.shields.io/badge/platform-linux%20%7C%20osx%20%7C%20win-blue)](https://pypi.org/project/deepchopper/#files)
[![Actions status](https://github.com/ylab-hi/DeepChopper/actions/workflows/release-python.yml/badge.svg)](https://github.com/ylab-hi/DeepChopper/actions)
[![Space](https://huggingface.co/datasets/huggingface/badges/resolve/main/open-in-hf-spaces-md.svg)](https://huggingface.co/spaces/yangliz5/deepchopper)

<!--toc:start-->

- [ **DeepChopper** ](#-deepchopper-)
  - [🚀 Quick Start: Try DeepChopper Online](#-quick-start-try-deepchopper-online)
  - [📦 Installation](#-installation)
    - [Compatibility and Support](#compatibility-and-support)
      - [PyPI Support](#pypi-support)
  - [🛠️ Usage](#️-usage)
    - [Command-Line Interface](#command-line-interface)
    - [Python Library](#python-library)
  - [📚 Cite](#-cite)
  - [🤝 Contribution](#-contribution)
    - [Build Environment](#build-environment)
    - [Install Dependencies](#install-dependencies)
  - [📬 Support](#-support)

<!--toc:end-->

🧬 DeepChopper leverages language model to accurately detect and chop artificial sequences which may cause chimeric reads, ensuring higher quality and more reliable sequencing results.
By integrating seamlessly with existing workflows, DeepChopper provides a robust solution for researchers and bioinformatics working with NanoPore direct-RNA sequencing data.

## 🚀 Quick Start: Try DeepChopper Online

Experience DeepChopper instantly through our user-friendly web interface. No installation required!
Simply click the button below to launch the web application and start exploring DeepChopper's capabilities:

[![Open in Hugging Face Spaces](https://huggingface.co/datasets/huggingface/badges/resolve/main/open-in-hf-spaces-md.svg)](https://huggingface.co/spaces/yangliz5/deepchopper)

**What you can do online:**

- 📤 Upload your sequencing data
- 🔬 Run DeepChopper's analysis
- 📊 Visualize results
- 🎛️ Experiment with different parameters

Perfect for quick tests or demonstrations! However, for extensive analyses or custom workflows, we recommend installing DeepChopper locally.

> ⚠️ Note: The online version is limited to one FASTQ record at a time and may not be suitable for large-scale projects.

## 📦 Installation

DeepChopper can be installed using pip, the Python package installer.
Follow these steps to install:

1. Ensure you have Python 3.10 or later installed on your system.

2. Create a virtual environment (recommended):

   ```bash
   python -m venv deepchopper_env
   source deepchopper_env/bin/activate  # On Windows use `deepchopper_env\Scripts\activate`
   ```

3. Install DeepChopper:

   ```bash
   pip install deepchopper
   ```

4. Verify the installation:

   ```bash
   deepchopper --help
   ```

### Compatibility and Support

DeepChopper is designed to work across various platforms and Python versions.
Below are the compatibility matrices for PyPI installations:

#### [PyPI Support][pypi]

| Python Version | Linux x86_64 | macOS Intel | macOS Apple Silicon | Windows x86_64 |
| :------------: | :----------: | :---------: | :-----------------: | -------------- |
|      3.10      |      ✅      |     ✅      |         ✅          | ✅             |
|      3.11      |      ✅      |     ✅      |         ✅          | ✅             |
|      3.12      |      ✅      |     ✅      |         ✅          | ✅             |

🆘 Trouble installing? Check our [Troubleshooting Guide](./docs/troubleshooting.md) or [open an issue](https://github.com/ylab-hi/DeepChopper/issues).

## 🛠️ Usage

For a comprehensive guide, check out our [full tutorial](./documentation/tutorial.md).
Here's a quick overview:

### Command-Line Interface

DeepChopper offers three main commands: `encode`, `predict`, and `chop`.

1. **Encode** your input data:

   ```bash
   deepchopper encode <input.fq>
   ```

2. **Predict** chimeric reads:

   ```bash
   deepchopper predict <input.parquet> --output predictions
   ```

   Using GPUs? Add the `--gpus` flag:

   ```bash
   deepchopper predict <input.parquet> --output predictions --gpus 2
   ```

3. **Chop** the chimeric reads:

   ```bash
   deepchopper chop <predictions> raw.fq
   ```

Want a GUI? Launch the web interface (note: limited to one FASTQ record at a time):

```bash
deepchopper web
```

### Python Library

Integrate DeepChopper into your Python scripts:

```python
import deepchopper

model = deepchopper.DeepChopper.from_pretrained("yangliz5/deepchopper")
# Your analysis code here
```

## 📚 Cite

If DeepChopper aids your research, please cite our paper:

```bibtex

```

## 🤝 Contribution

We welcome contributions! Here's how to set up your development environment:

### Build Environment

```bash
git clone https://github.com/ylab-hi/DeepChopper.git
cd DeepChopper
conda env create -n environment.yaml
conda activate deepchopper
```

### Install Dependencies

```bash
pip install pipx
pipx install --suffix @master git+https://github.com/python-poetry/poetry.git@master
poetry@master install
```

🎉 Ready to contribute? Check out our [Contribution Guidelines](./CONTRIBUTING.md) to get started!

## 📬 Support

Need help? Have questions?

- 📖 Check our [Documentation](./documentation/tutorial.md)
- 🐛 [Report issues](https://github.com/ylab-hi/DeepChopper/issues)

---

DeepChopper is developed with ❤️ by the YLab team.
Happy sequencing! 🧬🔬

[pypi]: https://pypi.python.org/pypi/deepchopper


            

Raw data

            {
    "_id": null,
    "home_page": "https://serde.rs",
    "name": "deepchopper-cli",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "deep learning, bioinformatics, rust",
    "author": "Yangyang Li <yangyang.li@northwestern.edu>",
    "author_email": "Yangyang Li <yangyang.li@northwestern.edu>",
    "download_url": "https://files.pythonhosted.org/packages/ea/af/48a678004dcc5e6ebf0c1983ddb44e5a2b9386b2d06acd0a7fbfe9400b23/deepchopper_cli-1.2.5.tar.gz",
    "platform": null,
    "description": "# <img src=\"./documentation/logo.webp\" alt=\"logo\" height=\"100\"/> **DeepChopper** [![social](https://img.shields.io/github/stars/ylab-hi/DeepChopper?style=social)](https://github.com/ylab-hi/DeepChopper/stargazers)\n\n[![pypi](https://img.shields.io/pypi/v/deepchopper.svg)](https://pypi.python.org/pypi/deepchopper)\n[![PyPI - Wheel](https://img.shields.io/pypi/wheel/deepchopper)](https://pypi.org/project/deepchopper/#files)\n[![license](https://img.shields.io/pypi/l/deepchopper.svg)](https://github.com/ylab-hi/DeepChopper/blob/main/LICENSE)\n[![pypi version](https://img.shields.io/pypi/pyversions/deepchopper.svg)](https://pypi.python.org/pypi/deepbiop)\n[![platform](https://img.shields.io/badge/platform-linux%20%7C%20osx%20%7C%20win-blue)](https://pypi.org/project/deepchopper/#files)\n[![Actions status](https://github.com/ylab-hi/DeepChopper/actions/workflows/release-python.yml/badge.svg)](https://github.com/ylab-hi/DeepChopper/actions)\n[![Space](https://huggingface.co/datasets/huggingface/badges/resolve/main/open-in-hf-spaces-md.svg)](https://huggingface.co/spaces/yangliz5/deepchopper)\n\n<!--toc:start-->\n\n- [ **DeepChopper** ](#-deepchopper-)\n  - [\ud83d\ude80 Quick Start: Try DeepChopper Online](#-quick-start-try-deepchopper-online)\n  - [\ud83d\udce6 Installation](#-installation)\n    - [Compatibility and Support](#compatibility-and-support)\n      - [PyPI Support](#pypi-support)\n  - [\ud83d\udee0\ufe0f Usage](#\ufe0f-usage)\n    - [Command-Line Interface](#command-line-interface)\n    - [Python Library](#python-library)\n  - [\ud83d\udcda Cite](#-cite)\n  - [\ud83e\udd1d Contribution](#-contribution)\n    - [Build Environment](#build-environment)\n    - [Install Dependencies](#install-dependencies)\n  - [\ud83d\udcec Support](#-support)\n\n<!--toc:end-->\n\n\ud83e\uddec DeepChopper leverages language model to accurately detect and chop artificial sequences which may cause chimeric reads, ensuring higher quality and more reliable sequencing results.\nBy integrating seamlessly with existing workflows, DeepChopper provides a robust solution for researchers and bioinformatics working with NanoPore direct-RNA sequencing data.\n\n## \ud83d\ude80 Quick Start: Try DeepChopper Online\n\nExperience DeepChopper instantly through our user-friendly web interface. No installation required!\nSimply click the button below to launch the web application and start exploring DeepChopper's capabilities:\n\n[![Open in Hugging Face Spaces](https://huggingface.co/datasets/huggingface/badges/resolve/main/open-in-hf-spaces-md.svg)](https://huggingface.co/spaces/yangliz5/deepchopper)\n\n**What you can do online:**\n\n- \ud83d\udce4 Upload your sequencing data\n- \ud83d\udd2c Run DeepChopper's analysis\n- \ud83d\udcca Visualize results\n- \ud83c\udf9b\ufe0f Experiment with different parameters\n\nPerfect for quick tests or demonstrations! However, for extensive analyses or custom workflows, we recommend installing DeepChopper locally.\n\n> \u26a0\ufe0f Note: The online version is limited to one FASTQ record at a time and may not be suitable for large-scale projects.\n\n## \ud83d\udce6 Installation\n\nDeepChopper can be installed using pip, the Python package installer.\nFollow these steps to install:\n\n1. Ensure you have Python 3.10 or later installed on your system.\n\n2. Create a virtual environment (recommended):\n\n   ```bash\n   python -m venv deepchopper_env\n   source deepchopper_env/bin/activate  # On Windows use `deepchopper_env\\Scripts\\activate`\n   ```\n\n3. Install DeepChopper:\n\n   ```bash\n   pip install deepchopper\n   ```\n\n4. Verify the installation:\n\n   ```bash\n   deepchopper --help\n   ```\n\n### Compatibility and Support\n\nDeepChopper is designed to work across various platforms and Python versions.\nBelow are the compatibility matrices for PyPI installations:\n\n#### [PyPI Support][pypi]\n\n| Python Version | Linux x86_64 | macOS Intel | macOS Apple Silicon | Windows x86_64 |\n| :------------: | :----------: | :---------: | :-----------------: | -------------- |\n|      3.10      |      \u2705      |     \u2705      |         \u2705          | \u2705             |\n|      3.11      |      \u2705      |     \u2705      |         \u2705          | \u2705             |\n|      3.12      |      \u2705      |     \u2705      |         \u2705          | \u2705             |\n\n\ud83c\udd98 Trouble installing? Check our [Troubleshooting Guide](./docs/troubleshooting.md) or [open an issue](https://github.com/ylab-hi/DeepChopper/issues).\n\n## \ud83d\udee0\ufe0f Usage\n\nFor a comprehensive guide, check out our [full tutorial](./documentation/tutorial.md).\nHere's a quick overview:\n\n### Command-Line Interface\n\nDeepChopper offers three main commands: `encode`, `predict`, and `chop`.\n\n1. **Encode** your input data:\n\n   ```bash\n   deepchopper encode <input.fq>\n   ```\n\n2. **Predict** chimeric reads:\n\n   ```bash\n   deepchopper predict <input.parquet> --output predictions\n   ```\n\n   Using GPUs? Add the `--gpus` flag:\n\n   ```bash\n   deepchopper predict <input.parquet> --output predictions --gpus 2\n   ```\n\n3. **Chop** the chimeric reads:\n\n   ```bash\n   deepchopper chop <predictions> raw.fq\n   ```\n\nWant a GUI? Launch the web interface (note: limited to one FASTQ record at a time):\n\n```bash\ndeepchopper web\n```\n\n### Python Library\n\nIntegrate DeepChopper into your Python scripts:\n\n```python\nimport deepchopper\n\nmodel = deepchopper.DeepChopper.from_pretrained(\"yangliz5/deepchopper\")\n# Your analysis code here\n```\n\n## \ud83d\udcda Cite\n\nIf DeepChopper aids your research, please cite our paper:\n\n```bibtex\n\n```\n\n## \ud83e\udd1d Contribution\n\nWe welcome contributions! Here's how to set up your development environment:\n\n### Build Environment\n\n```bash\ngit clone https://github.com/ylab-hi/DeepChopper.git\ncd DeepChopper\nconda env create -n environment.yaml\nconda activate deepchopper\n```\n\n### Install Dependencies\n\n```bash\npip install pipx\npipx install --suffix @master git+https://github.com/python-poetry/poetry.git@master\npoetry@master install\n```\n\n\ud83c\udf89 Ready to contribute? Check out our [Contribution Guidelines](./CONTRIBUTING.md) to get started!\n\n## \ud83d\udcec Support\n\nNeed help? Have questions?\n\n- \ud83d\udcd6 Check our [Documentation](./documentation/tutorial.md)\n- \ud83d\udc1b [Report issues](https://github.com/ylab-hi/DeepChopper/issues)\n\n---\n\nDeepChopper is developed with \u2764\ufe0f by the YLab team.\nHappy sequencing! \ud83e\uddec\ud83d\udd2c\n\n[pypi]: https://pypi.python.org/pypi/deepchopper\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "CLI for DeepChopper: A Genomic Language Model for Chimera Artifact Detection",
    "version": "1.2.5",
    "project_urls": {
        "Homepage": "https://serde.rs",
        "changelog": "https://github.com/ylab-hi/DeepChopper/README.md",
        "documentation": "https://github.com/ylab-hi/DeepChopper",
        "homepage": "https://github.com/ylab-hi/DeepChopper",
        "repository": "https://github.com/ylab-hi/DeepChopper"
    },
    "split_keywords": [
        "deep learning",
        " bioinformatics",
        " rust"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62be755edb0a3cdf1bfd80c5f8ec93d91c72f7d2ad5a92cf063d653ba1cb8102",
                "md5": "b39c84cc5fc72f53b6e86ae012cd6ae5",
                "sha256": "78a0f8c853b2f0d99dbc680d4d96726e632328a7ea0783d454366a8b55d184f8"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b39c84cc5fc72f53b6e86ae012cd6ae5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1458830,
            "upload_time": "2024-10-18T18:20:29",
            "upload_time_iso_8601": "2024-10-18T18:20:29.804665Z",
            "url": "https://files.pythonhosted.org/packages/62/be/755edb0a3cdf1bfd80c5f8ec93d91c72f7d2ad5a92cf063d653ba1cb8102/deepchopper_cli-1.2.5-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ae423a5e61edf3c8f274139d1a93624f3865a2c9a1be4cff73c898ed9bb23b1",
                "md5": "5d062cdb900f0688c3bd2e4cb2640763",
                "sha256": "37c548588af24fd76034ae42df7c98f0929ed48e2f68fee1c8465fc21ea68d82"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5d062cdb900f0688c3bd2e4cb2640763",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1329813,
            "upload_time": "2024-10-18T18:20:23",
            "upload_time_iso_8601": "2024-10-18T18:20:23.307290Z",
            "url": "https://files.pythonhosted.org/packages/6a/e4/23a5e61edf3c8f274139d1a93624f3865a2c9a1be4cff73c898ed9bb23b1/deepchopper_cli-1.2.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f43eb13afb2a4a85c09014f407f055b85c5a547bef86b76d9d90f67a32bea970",
                "md5": "4b6db092232aad4f9b87f930278617cb",
                "sha256": "9b49cbe951b927cf10eecc92944d3e42f7bc7c5aa82cb12be237b50b4563f7fb"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b6db092232aad4f9b87f930278617cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1751534,
            "upload_time": "2024-10-18T18:20:14",
            "upload_time_iso_8601": "2024-10-18T18:20:14.897988Z",
            "url": "https://files.pythonhosted.org/packages/f4/3e/b13afb2a4a85c09014f407f055b85c5a547bef86b76d9d90f67a32bea970/deepchopper_cli-1.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3cefb2e78f06502ff30f7864345077587908c00f76eb66f34e85f472daa5b9cc",
                "md5": "3e01a1075cab8d0b6447f3e769a6c649",
                "sha256": "45cdcc29dc285cf3ce8f3907feb5cd9ef4020c3a4c5405a9ad58916d5202552c"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e01a1075cab8d0b6447f3e769a6c649",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1634071,
            "upload_time": "2024-10-18T18:20:37",
            "upload_time_iso_8601": "2024-10-18T18:20:37.013749Z",
            "url": "https://files.pythonhosted.org/packages/3c/ef/b2e78f06502ff30f7864345077587908c00f76eb66f34e85f472daa5b9cc/deepchopper_cli-1.2.5-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c632205df9e8b6cc345836a7757942cb3b00172e97fbb56f8df3eb45ca1f5947",
                "md5": "4a692a664c268fb5e12cf5a993dbbf93",
                "sha256": "c4b6e4118330e60bc503fd313bfb5dad62cad544e6c038415578f1ec4f6c4769"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "4a692a664c268fb5e12cf5a993dbbf93",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1380740,
            "upload_time": "2024-10-18T18:20:56",
            "upload_time_iso_8601": "2024-10-18T18:20:56.899497Z",
            "url": "https://files.pythonhosted.org/packages/c6/32/205df9e8b6cc345836a7757942cb3b00172e97fbb56f8df3eb45ca1f5947/deepchopper_cli-1.2.5-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49eda866d4bc5b7baf29881a1846acdd5dc0ac926b2c681e3c6f80e7184607b7",
                "md5": "5fb192386dd5606047514fdbf7274ca1",
                "sha256": "6cc2384bde8c4ec571ec50f553978775c428e0965888e95f47bbad7f5b064878"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5fb192386dd5606047514fdbf7274ca1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1505158,
            "upload_time": "2024-10-18T18:20:49",
            "upload_time_iso_8601": "2024-10-18T18:20:49.917317Z",
            "url": "https://files.pythonhosted.org/packages/49/ed/a866d4bc5b7baf29881a1846acdd5dc0ac926b2c681e3c6f80e7184607b7/deepchopper_cli-1.2.5-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9a96e6a20dbe9c3a6e7c29f7f84635206c5e81354827c8772e0a61dfc6d91df",
                "md5": "0571a297c4b1cc990ccdb5815b446f04",
                "sha256": "9ebe40c48e2f4a4ef1216ec6101988d54af3c5b7a261dbcb66c7a4907e28b41d"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0571a297c4b1cc990ccdb5815b446f04",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1458830,
            "upload_time": "2024-10-18T18:20:32",
            "upload_time_iso_8601": "2024-10-18T18:20:32.545089Z",
            "url": "https://files.pythonhosted.org/packages/d9/a9/6e6a20dbe9c3a6e7c29f7f84635206c5e81354827c8772e0a61dfc6d91df/deepchopper_cli-1.2.5-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d60120ea86b43bf8d3aed274462c5661a33f1bc39108f8f0ed0f9a29cf84fdf8",
                "md5": "102a5bf1fb88e9c9c7e17c3ed7171f18",
                "sha256": "06adf2aa774411268b2c5bf7cb7c96f28d8e0641827ba19950958d6b1841ad75"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "102a5bf1fb88e9c9c7e17c3ed7171f18",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1329813,
            "upload_time": "2024-10-18T18:20:25",
            "upload_time_iso_8601": "2024-10-18T18:20:25.747474Z",
            "url": "https://files.pythonhosted.org/packages/d6/01/20ea86b43bf8d3aed274462c5661a33f1bc39108f8f0ed0f9a29cf84fdf8/deepchopper_cli-1.2.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6f2db62b674aa1e39d0d78ad2c9086d4864369f49f61be30375b0c1b04cf10f",
                "md5": "ccf1c91dbb798a71dd9f99c480656877",
                "sha256": "75a32f84a48b9b580a6f166e7374bfbbc5f033e76fc6ff93c3fee28c2186b98a"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ccf1c91dbb798a71dd9f99c480656877",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1751535,
            "upload_time": "2024-10-18T18:20:18",
            "upload_time_iso_8601": "2024-10-18T18:20:18.262216Z",
            "url": "https://files.pythonhosted.org/packages/f6/f2/db62b674aa1e39d0d78ad2c9086d4864369f49f61be30375b0c1b04cf10f/deepchopper_cli-1.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5da68ebb025433f9c99b7ae53636d7948f817249f5dffd07f964b34d39231b96",
                "md5": "a796af6a593797988fa09a4cc8eb5e17",
                "sha256": "2f4a134131bfae0732742455ba8c91c8b54b3f4bdb2f7bb9a8c5c4187c2bf683"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a796af6a593797988fa09a4cc8eb5e17",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1634073,
            "upload_time": "2024-10-18T18:20:38",
            "upload_time_iso_8601": "2024-10-18T18:20:38.945305Z",
            "url": "https://files.pythonhosted.org/packages/5d/a6/8ebb025433f9c99b7ae53636d7948f817249f5dffd07f964b34d39231b96/deepchopper_cli-1.2.5-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4045f858e6d4df4937c494c9ebc9ecc77858e23d7e493e791cdbb403ce5fcf54",
                "md5": "f38ab751b1403c7387c663b1aa3fe249",
                "sha256": "c331528b511129f8a12a5956aff0556eb60ad7fc42ce89df7a7a36f0d281271f"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "f38ab751b1403c7387c663b1aa3fe249",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1380744,
            "upload_time": "2024-10-18T18:20:59",
            "upload_time_iso_8601": "2024-10-18T18:20:59.122808Z",
            "url": "https://files.pythonhosted.org/packages/40/45/f858e6d4df4937c494c9ebc9ecc77858e23d7e493e791cdbb403ce5fcf54/deepchopper_cli-1.2.5-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7463f5e57b370db2ea47548d7e25cd540f1dd8bc5fc4ca4973da9da32495ace2",
                "md5": "f942182d475f98c12d35b6adde8daff1",
                "sha256": "caed5a046f98edd213b3e2a244f1bd09d7a75c226b0dc22a65d9031a04b3e751"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f942182d475f98c12d35b6adde8daff1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1505162,
            "upload_time": "2024-10-18T18:20:52",
            "upload_time_iso_8601": "2024-10-18T18:20:52.090941Z",
            "url": "https://files.pythonhosted.org/packages/74/63/f5e57b370db2ea47548d7e25cd540f1dd8bc5fc4ca4973da9da32495ace2/deepchopper_cli-1.2.5-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b5850345dacea2838242f6ee67aeacaf1a9cf4c048c6f8789f8ad7886f77eae",
                "md5": "c69346255c3bda5b6aeda4cc080b7cc4",
                "sha256": "e351491c9ed974363c2ad31128d919f4888fad982540c9af015c3dda4c6a5cd2"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c69346255c3bda5b6aeda4cc080b7cc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1458830,
            "upload_time": "2024-10-18T18:20:35",
            "upload_time_iso_8601": "2024-10-18T18:20:35.182629Z",
            "url": "https://files.pythonhosted.org/packages/4b/58/50345dacea2838242f6ee67aeacaf1a9cf4c048c6f8789f8ad7886f77eae/deepchopper_cli-1.2.5-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13cbbba734e63896dd2199584393bad130f86e372b0d8704cdbc9aaf991ecf61",
                "md5": "50150eb7b6de5ee0dd73d38d375c229e",
                "sha256": "38bd26462fff008b8eeb54e9186adeac052364c6002f4676b21668702bb5e54e"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "50150eb7b6de5ee0dd73d38d375c229e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1329814,
            "upload_time": "2024-10-18T18:20:27",
            "upload_time_iso_8601": "2024-10-18T18:20:27.680028Z",
            "url": "https://files.pythonhosted.org/packages/13/cb/bba734e63896dd2199584393bad130f86e372b0d8704cdbc9aaf991ecf61/deepchopper_cli-1.2.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b95b0072ecf9bbbacc9645ef87ad7258c73fc7018217d6249465eaaa39afce21",
                "md5": "b498df8542a605f23173a1831b7946ca",
                "sha256": "afb42881a1412cac9cdcb07e1bb320b9da2ad804a0cb99fec58368f16df0291f"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b498df8542a605f23173a1831b7946ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1751535,
            "upload_time": "2024-10-18T18:20:20",
            "upload_time_iso_8601": "2024-10-18T18:20:20.873047Z",
            "url": "https://files.pythonhosted.org/packages/b9/5b/0072ecf9bbbacc9645ef87ad7258c73fc7018217d6249465eaaa39afce21/deepchopper_cli-1.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3cadcead35d08c28245d65d0ea4007d1a85f0dc2ae5e20642aaf951d4baba901",
                "md5": "416bf1704fcb3e4795651a473b3b8094",
                "sha256": "0b607d06052e9bc58f2018ed95586214e87d6044507d314812aa6ef6e630b10b"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "416bf1704fcb3e4795651a473b3b8094",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1634087,
            "upload_time": "2024-10-18T18:20:40",
            "upload_time_iso_8601": "2024-10-18T18:20:40.928740Z",
            "url": "https://files.pythonhosted.org/packages/3c/ad/cead35d08c28245d65d0ea4007d1a85f0dc2ae5e20642aaf951d4baba901/deepchopper_cli-1.2.5-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "228edae3df5b205a2735fc8ab5c8868559434475465fa2c71306ebadef339ae0",
                "md5": "9407f4fcaff02054d9ca09f4362cf9f1",
                "sha256": "28103e13a18d93855d472da8085439722a00276643c921e5fb508b622fad426b"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "9407f4fcaff02054d9ca09f4362cf9f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1380739,
            "upload_time": "2024-10-18T18:21:01",
            "upload_time_iso_8601": "2024-10-18T18:21:01.447075Z",
            "url": "https://files.pythonhosted.org/packages/22/8e/dae3df5b205a2735fc8ab5c8868559434475465fa2c71306ebadef339ae0/deepchopper_cli-1.2.5-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f7f7620e4c1b0179b6c11aad956db1522c1198cb42f4b2d52b90b67d98e87de0",
                "md5": "7803d95d12205a00b78fb9f80efae66c",
                "sha256": "15b5be0688f3a82be2d63599e414855b223f7c0dc9d8bc94f000129714c8e521"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7803d95d12205a00b78fb9f80efae66c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1505159,
            "upload_time": "2024-10-18T18:20:54",
            "upload_time_iso_8601": "2024-10-18T18:20:54.772850Z",
            "url": "https://files.pythonhosted.org/packages/f7/f7/620e4c1b0179b6c11aad956db1522c1198cb42f4b2d52b90b67d98e87de0/deepchopper_cli-1.2.5-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eaaf48a678004dcc5e6ebf0c1983ddb44e5a2b9386b2d06acd0a7fbfe9400b23",
                "md5": "cc9d019bdb00706b37c1d9493903fdcb",
                "sha256": "fc5ceaf204f82eeae1b82488ee44d020c66b0df13d27a86658ed86a7b1774dbb"
            },
            "downloads": -1,
            "filename": "deepchopper_cli-1.2.5.tar.gz",
            "has_sig": false,
            "md5_digest": "cc9d019bdb00706b37c1d9493903fdcb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 69160911,
            "upload_time": "2024-10-18T18:20:45",
            "upload_time_iso_8601": "2024-10-18T18:20:45.080578Z",
            "url": "https://files.pythonhosted.org/packages/ea/af/48a678004dcc5e6ebf0c1983ddb44e5a2b9386b2d06acd0a7fbfe9400b23/deepchopper_cli-1.2.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-18 18:20:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ylab-hi",
    "github_project": "DeepChopper",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "deepchopper-cli"
}
        
Elapsed time: 0.35022s