tach


Nametach JSON
Version 0.27.2 PyPI version JSON
download
home_pageNone
SummaryA Python tool to maintain a modular package architecture.
upload_time2025-03-01 00:52:47
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
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.
            # Tach

[![downloads](https://static.pepy.tech/badge/tach/month)](https://pepy.tech/project/tach)
[![version](https://img.shields.io/pypi/v/tach.svg)](https://pypi.Python.org/pypi/tach)
[![license](https://img.shields.io/pypi/l/tach.svg)](https://pypi.Python.org/pypi/tach)
[![python](https://img.shields.io/pypi/pyversions/tach.svg)](https://pypi.Python.org/pypi/tach)
[![ci](https://github.com/gauge-sh/tach/actions/workflows/ci.yml/badge.svg)](https://github.com/gauge-sh/tach/actions/workflows/ci.yml)
[![pyright](https://microsoft.github.io/pyright/img/pyright_badge.svg)](https://microsoft.github.io/pyright/)
[![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://docs.gauge.sh)

[Discord](https://discord.gg/Kz2TnszerR)

<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://docs.gauge.sh/usage/configuration#modules)
- 🀝 Cross-module calls use the [public interface](https://docs.gauge.sh/usage/configuration#interfaces)
- ⛓️‍πŸ’₯ [No cycles](https://docs.gauge.sh/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

```bash
pip install tach
```

### 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://docs.gauge.sh/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://docs.gauge.sh/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://docs.gauge.sh/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://docs.gauge.sh/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://docs.gauge.sh/usage/interfaces/)
- [Deprecating individual dependencies](https://docs.gauge.sh/usage/deprecate)
- [Layered architecture](https://docs.gauge.sh/usage/layers)
- [Incremental adoption](https://docs.gauge.sh/usage/unchecked-modules)
- [Manual file configuration](https://docs.gauge.sh/usage/configuration)
- [Monorepos and namespace packages](https://docs.gauge.sh/usage/configuration#source-roots)
- [Domain ownership](https://docs.gauge.sh/usage/configuration#tach-domain-toml)
- [Inline 'ignore' comments](https://docs.gauge.sh/usage/tach-ignore)
- [Pre-commit hooks](https://docs.gauge.sh/usage/commands#tach-install)

More info in the [docs](https://docs.gauge.sh/). Tach logs anonymized usage statistics which can be [opted out](https://docs.gauge.sh/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 either reaching out on [Discord](https://discord.gg/Kz2TnszerR) or submitting a [Github Issue](https://github.com/gauge-sh/tach/issues)!

---

### Contributors

<a href="https://github.com/gauge-sh/tach/graphs/contributors">
  <img src="https://contrib.rocks/image?repo=gauge-sh/tach" />
</a>


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "tach",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "python, module, package, guard, enforcement, boundary, enforcer, domain, architecture",
    "author": null,
    "author_email": "Caelean Barnes <caeleanb@gmail.com>, Evan Doyle <evanmdoyle@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/a2/df/2a06db39ae9b2372dd2b11e85bfcb3626ee4e41b1180d7ee41763e759efa/tach-0.27.2.tar.gz",
    "platform": null,
    "description": "# Tach\n\n[![downloads](https://static.pepy.tech/badge/tach/month)](https://pepy.tech/project/tach)\n[![version](https://img.shields.io/pypi/v/tach.svg)](https://pypi.Python.org/pypi/tach)\n[![license](https://img.shields.io/pypi/l/tach.svg)](https://pypi.Python.org/pypi/tach)\n[![python](https://img.shields.io/pypi/pyversions/tach.svg)](https://pypi.Python.org/pypi/tach)\n[![ci](https://github.com/gauge-sh/tach/actions/workflows/ci.yml/badge.svg)](https://github.com/gauge-sh/tach/actions/workflows/ci.yml)\n[![pyright](https://microsoft.github.io/pyright/img/pyright_badge.svg)](https://microsoft.github.io/pyright/)\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://docs.gauge.sh)\n\n[Discord](https://discord.gg/Kz2TnszerR)\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://docs.gauge.sh/usage/configuration#modules)\n- \ud83e\udd1d Cross-module calls use the [public interface](https://docs.gauge.sh/usage/configuration#interfaces)\n- \u26d3\ufe0f\u200d\ud83d\udca5 [No cycles](https://docs.gauge.sh/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```bash\npip install tach\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://docs.gauge.sh/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://docs.gauge.sh/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://docs.gauge.sh/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://docs.gauge.sh/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://docs.gauge.sh/usage/interfaces/)\n- [Deprecating individual dependencies](https://docs.gauge.sh/usage/deprecate)\n- [Layered architecture](https://docs.gauge.sh/usage/layers)\n- [Incremental adoption](https://docs.gauge.sh/usage/unchecked-modules)\n- [Manual file configuration](https://docs.gauge.sh/usage/configuration)\n- [Monorepos and namespace packages](https://docs.gauge.sh/usage/configuration#source-roots)\n- [Domain ownership](https://docs.gauge.sh/usage/configuration#tach-domain-toml)\n- [Inline 'ignore' comments](https://docs.gauge.sh/usage/tach-ignore)\n- [Pre-commit hooks](https://docs.gauge.sh/usage/commands#tach-install)\n\nMore info in the [docs](https://docs.gauge.sh/). Tach logs anonymized usage statistics which can be [opted out](https://docs.gauge.sh/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 either reaching out on [Discord](https://discord.gg/Kz2TnszerR) or submitting a [Github Issue](https://github.com/gauge-sh/tach/issues)!\n\n---\n\n### Contributors\n\n<a href=\"https://github.com/gauge-sh/tach/graphs/contributors\">\n  <img src=\"https://contrib.rocks/image?repo=gauge-sh/tach\" />\n</a>\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Python tool to maintain a modular package architecture.",
    "version": "0.27.2",
    "project_urls": {
        "Homepage": "https://github.com/gauge-sh/tach",
        "Issues": "https://github.com/gauge-sh/tach/issues"
    },
    "split_keywords": [
        "python",
        " module",
        " package",
        " guard",
        " enforcement",
        " boundary",
        " enforcer",
        " domain",
        " architecture"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72eb25119c358176e109dc71130c31f9862019316c5d33c9053d315fad38ed5c",
                "md5": "91ab9a334a002ba00fb257e9de85b2f6",
                "sha256": "0ad176584512bf32001d77b1779ac2fc5eedd2b211cef270b872250bcc47e14a"
            },
            "downloads": -1,
            "filename": "tach-0.27.2-cp37-abi3-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "91ab9a334a002ba00fb257e9de85b2f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3541691,
            "upload_time": "2025-03-01T00:52:46",
            "upload_time_iso_8601": "2025-03-01T00:52:46.332239Z",
            "url": "https://files.pythonhosted.org/packages/72/eb/25119c358176e109dc71130c31f9862019316c5d33c9053d315fad38ed5c/tach-0.27.2-cp37-abi3-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ee1fea987fe7f54cc64f41ebad4963637d5af2a996c772a76cf9cf39f756667",
                "md5": "fab365e71ec714391a04ea761cab4454",
                "sha256": "2280ad748484576cbe33ea62f4661305f530627bcbc4dc0ecc4b1d422fc2f273"
            },
            "downloads": -1,
            "filename": "tach-0.27.2-cp37-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fab365e71ec714391a04ea761cab4454",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3389127,
            "upload_time": "2025-03-01T00:52:44",
            "upload_time_iso_8601": "2025-03-01T00:52:44.196822Z",
            "url": "https://files.pythonhosted.org/packages/7e/e1/fea987fe7f54cc64f41ebad4963637d5af2a996c772a76cf9cf39f756667/tach-0.27.2-cp37-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f24807101e6720dc2db02eecefcd6ca20d6a0f0ec430eb557477e2136925e1f9",
                "md5": "4824e889e85c8c7fd81405f12721c04f",
                "sha256": "f2e29830ea9a9ab8816068b774201a67823501808af0d6899984cfe4d2942394"
            },
            "downloads": -1,
            "filename": "tach-0.27.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4824e889e85c8c7fd81405f12721c04f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3684204,
            "upload_time": "2025-03-01T00:52:31",
            "upload_time_iso_8601": "2025-03-01T00:52:31.033890Z",
            "url": "https://files.pythonhosted.org/packages/f2/48/07101e6720dc2db02eecefcd6ca20d6a0f0ec430eb557477e2136925e1f9/tach-0.27.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df84b07793d52ef4049e64820e2356f79e9e1306e538d2178cb91e525e627098",
                "md5": "5aaca4c5f93af6d6132618aa58da157e",
                "sha256": "ee355523d6ec83a47cdd95b5f845513807b0d311dd64d5c5adedef216bc29a70"
            },
            "downloads": -1,
            "filename": "tach-0.27.2-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5aaca4c5f93af6d6132618aa58da157e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3624707,
            "upload_time": "2025-03-01T00:52:34",
            "upload_time_iso_8601": "2025-03-01T00:52:34.988886Z",
            "url": "https://files.pythonhosted.org/packages/df/84/b07793d52ef4049e64820e2356f79e9e1306e538d2178cb91e525e627098/tach-0.27.2-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "721869047752606a939c98224efc293fab4d6a2ee5a56c973ad90a8b501db8fa",
                "md5": "4b4b66bce1f9a121b84ad3b37bb4c64c",
                "sha256": "a6da15167f5929cf855a38960c1b733fdc7053b00cd93f9c6a68ef82ad04c37a"
            },
            "downloads": -1,
            "filename": "tach-0.27.2-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4b4b66bce1f9a121b84ad3b37bb4c64c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3973625,
            "upload_time": "2025-03-01T00:52:40",
            "upload_time_iso_8601": "2025-03-01T00:52:40.916293Z",
            "url": "https://files.pythonhosted.org/packages/72/18/69047752606a939c98224efc293fab4d6a2ee5a56c973ad90a8b501db8fa/tach-0.27.2-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85711537c9a0eabf45066886b8cdb29f9ca8f7a21ce6668499735cedc0c9d1c5",
                "md5": "f7275e3b976beca4a19dae1b60e476f8",
                "sha256": "a73e83413cf6c79344952624a7e542c5c507204135d8b874de6f6d0ba27107a3"
            },
            "downloads": -1,
            "filename": "tach-0.27.2-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f7275e3b976beca4a19dae1b60e476f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3943124,
            "upload_time": "2025-03-01T00:52:37",
            "upload_time_iso_8601": "2025-03-01T00:52:37.191517Z",
            "url": "https://files.pythonhosted.org/packages/85/71/1537c9a0eabf45066886b8cdb29f9ca8f7a21ce6668499735cedc0c9d1c5/tach-0.27.2-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bf64adaaa79bdf3db86d192343a862dd517db90ef12bf390728795ad28aa25b",
                "md5": "ee88590119afe857617a113fb75cd3d9",
                "sha256": "387dff1c28ea47a5160658fafc84288070be7f4e95ac4b9c16c390790fabfab3"
            },
            "downloads": -1,
            "filename": "tach-0.27.2-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ee88590119afe857617a113fb75cd3d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4260433,
            "upload_time": "2025-03-01T00:52:38",
            "upload_time_iso_8601": "2025-03-01T00:52:38.717031Z",
            "url": "https://files.pythonhosted.org/packages/6b/f6/4adaaa79bdf3db86d192343a862dd517db90ef12bf390728795ad28aa25b/tach-0.27.2-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffd2fad142fee24a76791092d5ae676f98d3a4b75ef83f3a38e9b5167d848257",
                "md5": "7ea82865ae48764fdc0dece27e9ab0d0",
                "sha256": "bc513d5a00f9e26a10dabd8c3bb5088484d091154c46bc29b7c8af2fb52e35f4"
            },
            "downloads": -1,
            "filename": "tach-0.27.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ea82865ae48764fdc0dece27e9ab0d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3820601,
            "upload_time": "2025-03-01T00:52:42",
            "upload_time_iso_8601": "2025-03-01T00:52:42.635085Z",
            "url": "https://files.pythonhosted.org/packages/ff/d2/fad142fee24a76791092d5ae676f98d3a4b75ef83f3a38e9b5167d848257/tach-0.27.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fd28f4ad2297a53a4d97dc6f7a88afdc4672964f945c4139c9caa6640698e31",
                "md5": "7d35f91af35d937ab38349b55c419cca",
                "sha256": "fff214b25bb1c80e2d9f09d4eabb30b4c638eabeaa91fb557017926b903f29cd"
            },
            "downloads": -1,
            "filename": "tach-0.27.2-cp37-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "7d35f91af35d937ab38349b55c419cca",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2975562,
            "upload_time": "2025-03-01T00:52:51",
            "upload_time_iso_8601": "2025-03-01T00:52:51.430678Z",
            "url": "https://files.pythonhosted.org/packages/9f/d2/8f4ad2297a53a4d97dc6f7a88afdc4672964f945c4139c9caa6640698e31/tach-0.27.2-cp37-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ba6f414912ffa3fbec1c454704989827443c08d4133fe557d8626e52033b23f",
                "md5": "a30eff3f2c81a313c074aa0232ff173c",
                "sha256": "fc6a6f418377d6b21c37bf884f0ab862cffbda46616faab24a94ec0134d9eda5"
            },
            "downloads": -1,
            "filename": "tach-0.27.2-cp37-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a30eff3f2c81a313c074aa0232ff173c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3205172,
            "upload_time": "2025-03-01T00:52:49",
            "upload_time_iso_8601": "2025-03-01T00:52:49.797192Z",
            "url": "https://files.pythonhosted.org/packages/9b/a6/f414912ffa3fbec1c454704989827443c08d4133fe557d8626e52033b23f/tach-0.27.2-cp37-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2df2a06db39ae9b2372dd2b11e85bfcb3626ee4e41b1180d7ee41763e759efa",
                "md5": "758fb25714e5e6b2b1915d4caa091aa5",
                "sha256": "7a830654e81f96b8561288c765800d3a7c5f525e771ba9d3180f8d4191440dab"
            },
            "downloads": -1,
            "filename": "tach-0.27.2.tar.gz",
            "has_sig": false,
            "md5_digest": "758fb25714e5e6b2b1915d4caa091aa5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 511289,
            "upload_time": "2025-03-01T00:52:47",
            "upload_time_iso_8601": "2025-03-01T00:52:47.753957Z",
            "url": "https://files.pythonhosted.org/packages/a2/df/2a06db39ae9b2372dd2b11e85bfcb3626ee4e41b1180d7ee41763e759efa/tach-0.27.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-03-01 00:52:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gauge-sh",
    "github_project": "tach",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "tach"
}
        
Elapsed time: 1.68270s