dtach


Namedtach JSON
Version 0.31.1 PyPI version JSON
download
home_pageNone
SummaryA Python tool to maintain a modular package architecture.
upload_time2025-11-04 14:28:05
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords python module package guard enforcement boundary enforcer domain architecture
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # DTach

> [!IMPORTANT]
> DTach is a fork of the unmaintained [tach](https://github.com/gauge-sh/tach) project.

[![downloads](https://static.pepy.tech/badge/dtach/month)](https://pepy.tech/project/dtach)
[![version](https://img.shields.io/pypi/v/dtach.svg)](https://pypi.Python.org/pypi/dtach)
[![license](https://img.shields.io/pypi/l/dtach.svg)](https://pypi.Python.org/pypi/dtach)
[![python](https://img.shields.io/pypi/pyversions/dtach.svg)](https://pypi.Python.org/pypi/dtach)
[![basedpyright - checked](https://img.shields.io/badge/basedpyright-checked-ffc000)](https://docs.basedpyright.com)
[![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)

Tach is a Python tool to enforce dependencies and interfaces, written in Rust.

Tach is inspired by the [modular monolith](https://www.milanjovanovic.tech/blog/what-is-a-modular-monolith) architecture.

[Docs](https://detachhead.github.io/dtach)

<div align="center">
    <img src="docs/assets/light_logo.png" alt="gauge-logo" width="30%"  style="border-radius: 50%; padding-bottom: 20px"/>
</div>

https://github.com/user-attachments/assets/11eec4a1-f80a-4f13-9ff3-91a9760133b6



Tach can enforce:

- πŸ“‹ Imports only come from [declared dependencies](https://detachhead.github.io/dtach/usage/configuration#modules)
- 🀝 Cross-module calls use the [public interface](https://detachhead.github.io/dtach/usage/configuration#interfaces)
- ⛓️‍πŸ’₯ [No cycles](https://detachhead.github.io/dtach/usage/configuration) in the dependency graph


Tach is:

- 🌎 Open source
- 🐍 Installable via pip
- πŸ”§ Able to be adopted incrementally
- ⚑ Implemented with no runtime impact
- ♾️ Interoperable with your existing systems

## Getting Started

### Installation


#### uv (recommended)
```bash
uv add --dev dtach
```


#### pip
```bash
pip install dtach
```

### Setup

Tach will guide you through initial project setup.

Run:
```bash
 tach init
```

After an introductory message, you will see a file tree interface allowing you to interactively configure your project.

Use the arrow keys to navigate, and mark each module boundary with 'Enter'. You can mark all of your top-level Python packages, or just a few that you want to track.

FAQ: [What is a module?](https://detachhead.github.io/dtach/usage/faq#what-is-a-module%3F)

If your Python code lives below your project root, or if you are working in a monorepo with multiple Python packages, mark your Python [source roots](https://detachhead.github.io/dtach/usage/configuration#source-roots) using the 's' key.

### Enforcement

Tach comes with a cli command to enforce the boundaries that you just set up! From the root of your Python project, run:

```bash
tach check
```

You will see:

```bash
βœ… All modules validated!
```

You can validate that Tach is working by:

1. Removing an item from the `depends_on` key in `tach.toml`, or marking it as [deprecated](https://detachhead.github.io/dtach/usage/deprecate)
2. By adding an import between modules that didn't previously import from each other.

Give both a try and run `tach check` again. This will generate an error:

```bash
❌ tach/check.py[L8]: Cannot use 'tach.filesystem'. Module 'tach' cannot depend on 'tach.filesystem'.
```

Each error indicates an import which violates your dependencies. If your terminal supports hyperlinks, click on the file path to go directly to the error.

When an error is detected, `tach check` will exit with a non-zero code. It can be easily integrated with CI/CD, [Pre-commit hooks](https://detachhead.github.io/dtach/usage/commands#tach-install), and [VS Code](https://marketplace.visualstudio.com/items?itemName=Gauge.tach), and more!

### Extras

Visualize your dependency graph.

```bash
tach show [--web]
```

Tach will generate a graph of your dependencies. Here's what this looks like for Tach:

![tach show](docs/assets/tach_show.png)

Note that this graph is generated remotely with the contents of your `tach.toml` when running `tach show --web`.

If you would like to use the [GraphViz DOT format](https://graphviz.org/about/) locally, simply running `tach show` will generate `tach_module_graph.dot` in your working directory.

You can view the dependencies and usages for a given path:

```bash
tach report my_package/
# OR
tach report my_module.py
```

e.g.:

```bash
> tach report python/tach/filesystem
[Dependencies of 'python/tach/filesystem']
python/tach/filesystem/install.py[L6]: Import 'tach.hooks.build_pre_commit_hook_content'
python/tach/filesystem/project.py[L5]: Import 'tach.constants.CONFIG_FILE_NAME'
...
-------------------------------
[Usages of 'python/tach/filesystem']
python/tach/cache/access.py[L8]: Import 'tach.filesystem.find_project_config_root'
python/tach/cache/setup.py[L7]: Import 'tach.filesystem.find_project_config_root'
...
```

Tach also supports:

- [Public interfaces for modules](https://detachhead.github.io/dtach/usage/interfaces/)
- [Deprecating individual dependencies](https://detachhead.github.io/dtach/usage/deprecate)
- [Layered architecture](https://detachhead.github.io/dtach/usage/layers)
- [Incremental adoption](https://detachhead.github.io/dtach/usage/unchecked-modules)
- [Generating JSON dependency maps](https://detachhead.github.io/dtach/usage/commands#tach-map)
- [Monorepos and namespace packages](https://detachhead.github.io/dtach/usage/configuration#source-roots)
- [Domain ownership](https://detachhead.github.io/dtach/usage/configuration#tach-domain-toml)
- [Inline 'ignore' comments](https://detachhead.github.io/dtach/usage/tach-ignore)
- [Pre-commit hooks](https://detachhead.github.io/dtach/usage/commands#tach-install)

More info in the [docs](https://detachhead.github.io/dtach/). Tach logs anonymized usage statistics which can be [opted out](https://detachhead.github.io/dtach/usage/faq/) of.
If you have any feedback, we'd love to talk!

If you have any questions or run into any issues, let us know by submitting a [Github Issue](https://github.com/detachhead/dtach/issues)!

---

### Contributors

<a href="https://github.com/detachhead/dtach/graphs/contributors">
  <img src="https://contrib.rocks/image?repo=detachhead/dtach" />
</a>


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "dtach",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "python, module, package, guard, enforcement, boundary, enforcer, domain, architecture",
    "author": null,
    "author_email": "detachhead <detachhead@users.noreply.github.com>",
    "download_url": "https://files.pythonhosted.org/packages/43/19/0603a4cd5c5faa62027bf942023fa7c4b6e5ecdc7114b3e3832c3395b392/dtach-0.31.1.tar.gz",
    "platform": null,
    "description": "# DTach\n\n> [!IMPORTANT]\n> DTach is a fork of the unmaintained [tach](https://github.com/gauge-sh/tach) project.\n\n[![downloads](https://static.pepy.tech/badge/dtach/month)](https://pepy.tech/project/dtach)\n[![version](https://img.shields.io/pypi/v/dtach.svg)](https://pypi.Python.org/pypi/dtach)\n[![license](https://img.shields.io/pypi/l/dtach.svg)](https://pypi.Python.org/pypi/dtach)\n[![python](https://img.shields.io/pypi/pyversions/dtach.svg)](https://pypi.Python.org/pypi/dtach)\n[![basedpyright - checked](https://img.shields.io/badge/basedpyright-checked-ffc000)](https://docs.basedpyright.com)\n[![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n\nTach is a Python tool to enforce dependencies and interfaces, written in Rust.\n\nTach is inspired by the [modular monolith](https://www.milanjovanovic.tech/blog/what-is-a-modular-monolith) architecture.\n\n[Docs](https://detachhead.github.io/dtach)\n\n<div align=\"center\">\n    <img src=\"docs/assets/light_logo.png\" alt=\"gauge-logo\" width=\"30%\"  style=\"border-radius: 50%; padding-bottom: 20px\"/>\n</div>\n\nhttps://github.com/user-attachments/assets/11eec4a1-f80a-4f13-9ff3-91a9760133b6\n\n\n\nTach can enforce:\n\n- \ud83d\udccb Imports only come from [declared dependencies](https://detachhead.github.io/dtach/usage/configuration#modules)\n- \ud83e\udd1d Cross-module calls use the [public interface](https://detachhead.github.io/dtach/usage/configuration#interfaces)\n- \u26d3\ufe0f\u200d\ud83d\udca5 [No cycles](https://detachhead.github.io/dtach/usage/configuration) in the dependency graph\n\n\nTach is:\n\n- \ud83c\udf0e Open source\n- \ud83d\udc0d Installable via pip\n- \ud83d\udd27 Able to be adopted incrementally\n- \u26a1 Implemented with no runtime impact\n- \u267e\ufe0f Interoperable with your existing systems\n\n## Getting Started\n\n### Installation\n\n\n#### uv (recommended)\n```bash\nuv add --dev dtach\n```\n\n\n#### pip\n```bash\npip install dtach\n```\n\n### Setup\n\nTach will guide you through initial project setup.\n\nRun:\n```bash\n tach init\n```\n\nAfter an introductory message, you will see a file tree interface allowing you to interactively configure your project.\n\nUse the arrow keys to navigate, and mark each module boundary with 'Enter'. You can mark all of your top-level Python packages, or just a few that you want to track.\n\nFAQ: [What is a module?](https://detachhead.github.io/dtach/usage/faq#what-is-a-module%3F)\n\nIf your Python code lives below your project root, or if you are working in a monorepo with multiple Python packages, mark your Python [source roots](https://detachhead.github.io/dtach/usage/configuration#source-roots) using the 's' key.\n\n### Enforcement\n\nTach comes with a cli command to enforce the boundaries that you just set up! From the root of your Python project, run:\n\n```bash\ntach check\n```\n\nYou will see:\n\n```bash\n\u2705 All modules validated!\n```\n\nYou can validate that Tach is working by:\n\n1. Removing an item from the `depends_on` key in `tach.toml`, or marking it as [deprecated](https://detachhead.github.io/dtach/usage/deprecate)\n2. By adding an import between modules that didn't previously import from each other.\n\nGive both a try and run `tach check` again. This will generate an error:\n\n```bash\n\u274c tach/check.py[L8]: Cannot use 'tach.filesystem'. Module 'tach' cannot depend on 'tach.filesystem'.\n```\n\nEach error indicates an import which violates your dependencies. If your terminal supports hyperlinks, click on the file path to go directly to the error.\n\nWhen an error is detected, `tach check` will exit with a non-zero code. It can be easily integrated with CI/CD, [Pre-commit hooks](https://detachhead.github.io/dtach/usage/commands#tach-install), and [VS Code](https://marketplace.visualstudio.com/items?itemName=Gauge.tach), and more!\n\n### Extras\n\nVisualize your dependency graph.\n\n```bash\ntach show [--web]\n```\n\nTach will generate a graph of your dependencies. Here's what this looks like for Tach:\n\n![tach show](docs/assets/tach_show.png)\n\nNote that this graph is generated remotely with the contents of your `tach.toml` when running `tach show --web`.\n\nIf you would like to use the [GraphViz DOT format](https://graphviz.org/about/) locally, simply running `tach show` will generate `tach_module_graph.dot` in your working directory.\n\nYou can view the dependencies and usages for a given path:\n\n```bash\ntach report my_package/\n# OR\ntach report my_module.py\n```\n\ne.g.:\n\n```bash\n> tach report python/tach/filesystem\n[Dependencies of 'python/tach/filesystem']\npython/tach/filesystem/install.py[L6]: Import 'tach.hooks.build_pre_commit_hook_content'\npython/tach/filesystem/project.py[L5]: Import 'tach.constants.CONFIG_FILE_NAME'\n...\n-------------------------------\n[Usages of 'python/tach/filesystem']\npython/tach/cache/access.py[L8]: Import 'tach.filesystem.find_project_config_root'\npython/tach/cache/setup.py[L7]: Import 'tach.filesystem.find_project_config_root'\n...\n```\n\nTach also supports:\n\n- [Public interfaces for modules](https://detachhead.github.io/dtach/usage/interfaces/)\n- [Deprecating individual dependencies](https://detachhead.github.io/dtach/usage/deprecate)\n- [Layered architecture](https://detachhead.github.io/dtach/usage/layers)\n- [Incremental adoption](https://detachhead.github.io/dtach/usage/unchecked-modules)\n- [Generating JSON dependency maps](https://detachhead.github.io/dtach/usage/commands#tach-map)\n- [Monorepos and namespace packages](https://detachhead.github.io/dtach/usage/configuration#source-roots)\n- [Domain ownership](https://detachhead.github.io/dtach/usage/configuration#tach-domain-toml)\n- [Inline 'ignore' comments](https://detachhead.github.io/dtach/usage/tach-ignore)\n- [Pre-commit hooks](https://detachhead.github.io/dtach/usage/commands#tach-install)\n\nMore info in the [docs](https://detachhead.github.io/dtach/). Tach logs anonymized usage statistics which can be [opted out](https://detachhead.github.io/dtach/usage/faq/) of.\nIf you have any feedback, we'd love to talk!\n\nIf you have any questions or run into any issues, let us know by submitting a [Github Issue](https://github.com/detachhead/dtach/issues)!\n\n---\n\n### Contributors\n\n<a href=\"https://github.com/detachhead/dtach/graphs/contributors\">\n  <img src=\"https://contrib.rocks/image?repo=detachhead/dtach\" />\n</a>\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Python tool to maintain a modular package architecture.",
    "version": "0.31.1",
    "project_urls": {
        "Homepage": "https://github.com/detachhead/dtach",
        "Issues": "https://github.com/detachhead/dtach/issues"
    },
    "split_keywords": [
        "python",
        " module",
        " package",
        " guard",
        " enforcement",
        " boundary",
        " enforcer",
        " domain",
        " architecture"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5dbfca1d22c37cde1d22dd07cd714f82c00b84834eabb4d76003110adb5c257",
                "md5": "fad97586e7e87c001bf23d3b80053205",
                "sha256": "85e3be7e9dc65820df8ff72f158e93c17505d672cdd55ea23760e3371821641f"
            },
            "downloads": -1,
            "filename": "dtach-0.31.1-cp37-abi3-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fad97586e7e87c001bf23d3b80053205",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 3974352,
            "upload_time": "2025-11-04T14:28:03",
            "upload_time_iso_8601": "2025-11-04T14:28:03.748933Z",
            "url": "https://files.pythonhosted.org/packages/b5/db/fca1d22c37cde1d22dd07cd714f82c00b84834eabb4d76003110adb5c257/dtach-0.31.1-cp37-abi3-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12fc7e588b33dabfe67151de35d0e9f4ae7dc1dd12002c7b7e500b28bf953401",
                "md5": "657f37f1c2f14f3bb40512f991c9b28c",
                "sha256": "43ba6bfa5e5c9983650148ccb02cf4c119efd1a1f6d475952d35f392247c25f5"
            },
            "downloads": -1,
            "filename": "dtach-0.31.1-cp37-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "657f37f1c2f14f3bb40512f991c9b28c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 3815923,
            "upload_time": "2025-11-04T14:28:01",
            "upload_time_iso_8601": "2025-11-04T14:28:01.547083Z",
            "url": "https://files.pythonhosted.org/packages/12/fc/7e588b33dabfe67151de35d0e9f4ae7dc1dd12002c7b7e500b28bf953401/dtach-0.31.1-cp37-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95aac7c80535aa9c0eed8748151714fe0c4f9bda58e5c646f1fd4a84c29aea62",
                "md5": "c7be19b1a83f31cdfb70918a0a806eed",
                "sha256": "b2b9a0d2fe7bac7b3a99a21ab47c163265adeab20a46632a1684d91308b7cad6"
            },
            "downloads": -1,
            "filename": "dtach-0.31.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c7be19b1a83f31cdfb70918a0a806eed",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 4141619,
            "upload_time": "2025-11-04T14:27:48",
            "upload_time_iso_8601": "2025-11-04T14:27:48.141565Z",
            "url": "https://files.pythonhosted.org/packages/95/aa/c7c80535aa9c0eed8748151714fe0c4f9bda58e5c646f1fd4a84c29aea62/dtach-0.31.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98bc6639b9c1a74a4a630c927fd43371df5751fdc5d103d2e3292e62a9563e9d",
                "md5": "aa9d7ca36214f5256ba87a489b0c79ce",
                "sha256": "e623c40732058b7473993597f67fb696cb8f2031f2b26ddd11bc93ec0cbb5eba"
            },
            "downloads": -1,
            "filename": "dtach-0.31.1-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "aa9d7ca36214f5256ba87a489b0c79ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 4088742,
            "upload_time": "2025-11-04T14:27:50",
            "upload_time_iso_8601": "2025-11-04T14:27:50.447429Z",
            "url": "https://files.pythonhosted.org/packages/98/bc/6639b9c1a74a4a630c927fd43371df5751fdc5d103d2e3292e62a9563e9d/dtach-0.31.1-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0da924d8931600f09c44455635613234f39bd11f897891307f39f156462dd07e",
                "md5": "fe99f43b158da049fd7c9a61142292f1",
                "sha256": "6aa50028d8caac7e75cdd3e7b2e91696f4c92fe8c4b45b24df29535994b83ce7"
            },
            "downloads": -1,
            "filename": "dtach-0.31.1-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fe99f43b158da049fd7c9a61142292f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 4501731,
            "upload_time": "2025-11-04T14:27:57",
            "upload_time_iso_8601": "2025-11-04T14:27:57.454200Z",
            "url": "https://files.pythonhosted.org/packages/0d/a9/24d8931600f09c44455635613234f39bd11f897891307f39f156462dd07e/dtach-0.31.1-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f28364065012af2aea4bf76988f26cf5b36e81768536b3eec70f482e7985ba7",
                "md5": "dccceca63013590eb254763395a8e644",
                "sha256": "2312254b30f3750ff0ab40d5f5e0c18e9f522b724ed3c997b4fd1d8f567d691c"
            },
            "downloads": -1,
            "filename": "dtach-0.31.1-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "dccceca63013590eb254763395a8e644",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 5042872,
            "upload_time": "2025-11-04T14:27:52",
            "upload_time_iso_8601": "2025-11-04T14:27:52.716361Z",
            "url": "https://files.pythonhosted.org/packages/9f/28/364065012af2aea4bf76988f26cf5b36e81768536b3eec70f482e7985ba7/dtach-0.31.1-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67a97b5b3343b2acd1fb110efa87e7d4b640133a362444237b169d4614a168ba",
                "md5": "b32ee43012818faa9e52be948e2a77b2",
                "sha256": "9abf90df5434e9df61eea4a0bbeab2f7ce62c1931f37586161118668bf23b805"
            },
            "downloads": -1,
            "filename": "dtach-0.31.1-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b32ee43012818faa9e52be948e2a77b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 4294323,
            "upload_time": "2025-11-04T14:27:54",
            "upload_time_iso_8601": "2025-11-04T14:27:54.960708Z",
            "url": "https://files.pythonhosted.org/packages/67/a9/7b5b3343b2acd1fb110efa87e7d4b640133a362444237b169d4614a168ba/dtach-0.31.1-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0e60a6d55d51fa0632d2a8971c89f0ccb556ef7c1a1521c69f8ef90f8b60098",
                "md5": "5125e3a49a32f28164a81f0923db1e87",
                "sha256": "bdebb8e24ce73282222d451ebdcb0a2dc0371d775486615236f4826aa2559006"
            },
            "downloads": -1,
            "filename": "dtach-0.31.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5125e3a49a32f28164a81f0923db1e87",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 4274106,
            "upload_time": "2025-11-04T14:27:59",
            "upload_time_iso_8601": "2025-11-04T14:27:59.629906Z",
            "url": "https://files.pythonhosted.org/packages/e0/e6/0a6d55d51fa0632d2a8971c89f0ccb556ef7c1a1521c69f8ef90f8b60098/dtach-0.31.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "557150809946b3c1d1c765102227159c7e9269818ee6ac8f67a6d1561afa3f82",
                "md5": "5a48eb56a20270c11a08543134a46202",
                "sha256": "5edfd102d4089cff2e18f1b9fba66496ef2f077030d7a3f6e17c7de9b1a0cb53"
            },
            "downloads": -1,
            "filename": "dtach-0.31.1-cp37-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "5a48eb56a20270c11a08543134a46202",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 3314386,
            "upload_time": "2025-11-04T14:28:10",
            "upload_time_iso_8601": "2025-11-04T14:28:10.390522Z",
            "url": "https://files.pythonhosted.org/packages/55/71/50809946b3c1d1c765102227159c7e9269818ee6ac8f67a6d1561afa3f82/dtach-0.31.1-cp37-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "517840f63822028e507af7dea0d208f7faf0a8d760b6913f8aa715eb9c62fa6f",
                "md5": "aff578f86bad897fdee83dc3b33e62d5",
                "sha256": "399121a0137bca0f9779e6f9540e441d0c4c3080b7c44a370ac69d2cbc9b35a0"
            },
            "downloads": -1,
            "filename": "dtach-0.31.1-cp37-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aff578f86bad897fdee83dc3b33e62d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 3561415,
            "upload_time": "2025-11-04T14:28:07",
            "upload_time_iso_8601": "2025-11-04T14:28:07.901153Z",
            "url": "https://files.pythonhosted.org/packages/51/78/40f63822028e507af7dea0d208f7faf0a8d760b6913f8aa715eb9c62fa6f/dtach-0.31.1-cp37-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43190603a4cd5c5faa62027bf942023fa7c4b6e5ecdc7114b3e3832c3395b392",
                "md5": "e2ff2a1f38bef89ba993fb98853f8493",
                "sha256": "4802a0d87118bc9a266af15150bfb9516768e2af00bee3ca30bb7c56398ded8e"
            },
            "downloads": -1,
            "filename": "dtach-0.31.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e2ff2a1f38bef89ba993fb98853f8493",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 767016,
            "upload_time": "2025-11-04T14:28:05",
            "upload_time_iso_8601": "2025-11-04T14:28:05.498917Z",
            "url": "https://files.pythonhosted.org/packages/43/19/0603a4cd5c5faa62027bf942023fa7c4b6e5ecdc7114b3e3832c3395b392/dtach-0.31.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-11-04 14:28:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "detachhead",
    "github_project": "dtach",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "dtach"
}
        
Elapsed time: 2.07893s