meowda


Namemeowda JSON
Version 0.1.5 PyPI version JSON
download
home_pagehttps://github.com/ShigureLab/meowda
SummaryMeowda 🐱 β€”β€” γ€Œε–΅ε“’γ€ Manage multiple Python virtual environments with ease
upload_time2025-08-29 06:30:37
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMIT
keywords meowda cli uv environment conda-like
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Meowda <img src="https://www.gstatic.com/android/keyboard/emojikitchen/20230301/u1f61c/u1f61c_u1f431.png" alt="🐱" width="20px"/> <sub><samp>β€”β€” γ€Œε–΅ε“’γ€</samp></sub>

**Meowda** is a modern Python virtual environment management tool that lets you easily manage multiple Python virtual environments. Built on [uv](https://docs.astral.sh/uv/), it provides a conda-like CLI interface (but is not a conda replacement or compatible with conda) focused on simple and fast virtual environment management.

## ✨ Features

-  πŸš€ **Fast**: Lightning-fast package management powered by [uv](https://docs.astral.sh/uv/)
-  🎯 **Simple**: Intuitive conda-like command line interface
-  πŸ”„ **Flexible**: Support for both global and project-level environment management
-  πŸ”— **Project Linking**: Associate projects with specific environments
-  πŸ› οΈ **VS Code Integration**: Seamless integration into development workflow
-  πŸ“¦ **Lightweight**: Written in Rust for excellent performance

## πŸ“¦ Installation

### Prerequisites

Make sure you have [uv](https://docs.astral.sh/uv/) installed. See the [official installation guide](https://docs.astral.sh/uv/getting-started/installation/) for detailed instructions.

### Install Meowda

#### Using uv (Recommended)

```bash
uv tool install meowda
```

#### Using Cargo

```bash
cargo install meowda
```

## πŸš€ Quick Start

### 1. Initialize Shell

```bash
# For zsh users
meowda init ~/.zshrc
source ~/.zshrc

# For bash users
meowda init ~/.bashrc
source ~/.bashrc
```

### 2. Basic Usage

```bash
# Create and use a virtual environment
$ meowda create my-project -p 3.12
Using CPython 3.12.11
Creating virtual environment with seed packages at: /Users/user/.local/share/meowda/venvs/my-project
 + pip==25.2
Activate with: source /Users/user/.local/share/meowda/venvs/my-project/bin/activate
Virtual environment 'my-project' created successfully.

$ meowda activate my-project
$ meowda install requests pandas
$ meowda deactivate

# List and manage environments
$ meowda env list
Available global virtual environments:
  my-project (/Users/user/.local/share/meowda/venvs/my-project python 3.12.11)

$ meowda env dir
/Users/user/.local/share/meowda/venvs

$ meowda remove my-project
Virtual environment 'my-project' removed successfully.
```

## πŸ’‘ Advanced Features

### Global vs Local Environments

```bash
# Global environments (accessible anywhere)
$ meowda create --global tools -p 3.12
$ meowda activate --global tools

# Local environments (project-specific, stored in .meowda/venvs/)
$ meowda create --local myproject -p 3.11
Using CPython 3.11.13
Creating virtual environment with seed packages at: .meowda/venvs/myproject
 + pip==25.2 + setuptools==80.9.0 + wheel==0.45.1
Virtual environment 'myproject' created successfully.

$ meowda env dir --local
/path/to/project/.meowda/venvs
```

### Development Workflow Example

```bash
$ mkdir awesome-app && cd awesome-app
$ meowda create --local awesome-app -p 3.12
$ meowda activate --local awesome-app
$ meowda install fastapi uvicorn pytest sqlalchemy
$ meowda deactivate
```

### Advanced Options

```bash
# Recreate environment (clear existing packages)
$ meowda create my-env -p 3.12 --clear

# Install specific versions or from requirements
$ meowda install "django>=4.0,<5.0" "pytest==7.4.0"
$ meowda install -r requirements.txt

# Project linking
$ meowda link my-web-app /path/to/web-project
$ meowda unlink my-web-app
```

## πŸ”Œ VS Code Integration

Add to your `settings.json`:

```json
{
   "python.venvFolders": [".meowda/venvs", "~/.local/share/meowda/venvs"]
}
```

## πŸ“– Command Reference

**Environment Management**

-  `meowda create <name> -p <version>` - Create environment
-  `meowda activate <name>` - Activate environment
-  `meowda deactivate` - Deactivate current environment
-  `meowda remove <name>` - Remove environment
-  `meowda env list` - List all environments
-  `meowda env dir` - Show storage directory

**Package Management**

-  `meowda install <packages>` - Install packages
-  `meowda uninstall <packages>` - Uninstall packages

**Options**: `--global`, `--local`, `--clear`

## πŸ€” FAQ

**Q: Why was Meowda created?**

A: As an AI infrastructure engineer, I frequently need to share Python virtual environments across multiple projects. For this use case, conda works exceptionally well, and I'm genuinely grateful for it. However, conda can be quite heavy. When Astral released uv, I became an early adopter and quickly migrated my personal development projects to it. uv is both convenient and blazingly fast, which is genuinely impressive. Unfortunately, switching to uv directly in my work environment would actually hurt my productivity, since managing virtual environments across projects with uv alone is quite cumbersome. That's why I decided to wrap uv with simple logic that enables name-based management of multiple virtual environmentsβ€”and thus Meowda was born.

**Q: What's the difference between Meowda and conda?**

A: Meowda focuses specifically on Python virtual environment management and provides faster package installation through uv. It's not a complete conda replacement, but rather a lightweight alternative.

**Q: Global vs local environments?**

A: Global environments are stored in `~/.local/share/meowda/venvs` and accessible anywhere. Local environments are stored in project's `.meowda/venvs/` and only available within that project.

## πŸ™ Acknowledgement

-  [uv](https://docs.astral.sh/uv/) - For the virtual environment management core functionality
-  [conda](https://github.com/conda/conda) - For the inspiration of the CLI interface design

---

<div align="center">

**Like Meowda? Give us a ⭐️!**

Made with 🐱 by [ShigureLab](https://github.com/ShigureLab)

</div>


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ShigureLab/meowda",
    "name": "meowda",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "meowda, cli, uv, environment, conda-like",
    "author": null,
    "author_email": "Nyakku Shigure <sigure.qaq@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/1c/7c/426cff008b2286e056b58041746d52d59dabbffff0f6a104e3a0d5ae991e/meowda-0.1.5.tar.gz",
    "platform": null,
    "description": "# Meowda <img src=\"https://www.gstatic.com/android/keyboard/emojikitchen/20230301/u1f61c/u1f61c_u1f431.png\" alt=\"\ud83d\udc31\" width=\"20px\"/> <sub><samp>\u2014\u2014 \u300c\u55b5\u54d2\u300d</samp></sub>\n\n**Meowda** is a modern Python virtual environment management tool that lets you easily manage multiple Python virtual environments. Built on [uv](https://docs.astral.sh/uv/), it provides a conda-like CLI interface (but is not a conda replacement or compatible with conda) focused on simple and fast virtual environment management.\n\n## \u2728 Features\n\n-  \ud83d\ude80 **Fast**: Lightning-fast package management powered by [uv](https://docs.astral.sh/uv/)\n-  \ud83c\udfaf **Simple**: Intuitive conda-like command line interface\n-  \ud83d\udd04 **Flexible**: Support for both global and project-level environment management\n-  \ud83d\udd17 **Project Linking**: Associate projects with specific environments\n-  \ud83d\udee0\ufe0f **VS Code Integration**: Seamless integration into development workflow\n-  \ud83d\udce6 **Lightweight**: Written in Rust for excellent performance\n\n## \ud83d\udce6 Installation\n\n### Prerequisites\n\nMake sure you have [uv](https://docs.astral.sh/uv/) installed. See the [official installation guide](https://docs.astral.sh/uv/getting-started/installation/) for detailed instructions.\n\n### Install Meowda\n\n#### Using uv (Recommended)\n\n```bash\nuv tool install meowda\n```\n\n#### Using Cargo\n\n```bash\ncargo install meowda\n```\n\n## \ud83d\ude80 Quick Start\n\n### 1. Initialize Shell\n\n```bash\n# For zsh users\nmeowda init ~/.zshrc\nsource ~/.zshrc\n\n# For bash users\nmeowda init ~/.bashrc\nsource ~/.bashrc\n```\n\n### 2. Basic Usage\n\n```bash\n# Create and use a virtual environment\n$ meowda create my-project -p 3.12\nUsing CPython 3.12.11\nCreating virtual environment with seed packages at: /Users/user/.local/share/meowda/venvs/my-project\n + pip==25.2\nActivate with: source /Users/user/.local/share/meowda/venvs/my-project/bin/activate\nVirtual environment 'my-project' created successfully.\n\n$ meowda activate my-project\n$ meowda install requests pandas\n$ meowda deactivate\n\n# List and manage environments\n$ meowda env list\nAvailable global virtual environments:\n  my-project (/Users/user/.local/share/meowda/venvs/my-project python 3.12.11)\n\n$ meowda env dir\n/Users/user/.local/share/meowda/venvs\n\n$ meowda remove my-project\nVirtual environment 'my-project' removed successfully.\n```\n\n## \ud83d\udca1 Advanced Features\n\n### Global vs Local Environments\n\n```bash\n# Global environments (accessible anywhere)\n$ meowda create --global tools -p 3.12\n$ meowda activate --global tools\n\n# Local environments (project-specific, stored in .meowda/venvs/)\n$ meowda create --local myproject -p 3.11\nUsing CPython 3.11.13\nCreating virtual environment with seed packages at: .meowda/venvs/myproject\n + pip==25.2 + setuptools==80.9.0 + wheel==0.45.1\nVirtual environment 'myproject' created successfully.\n\n$ meowda env dir --local\n/path/to/project/.meowda/venvs\n```\n\n### Development Workflow Example\n\n```bash\n$ mkdir awesome-app && cd awesome-app\n$ meowda create --local awesome-app -p 3.12\n$ meowda activate --local awesome-app\n$ meowda install fastapi uvicorn pytest sqlalchemy\n$ meowda deactivate\n```\n\n### Advanced Options\n\n```bash\n# Recreate environment (clear existing packages)\n$ meowda create my-env -p 3.12 --clear\n\n# Install specific versions or from requirements\n$ meowda install \"django>=4.0,<5.0\" \"pytest==7.4.0\"\n$ meowda install -r requirements.txt\n\n# Project linking\n$ meowda link my-web-app /path/to/web-project\n$ meowda unlink my-web-app\n```\n\n## \ud83d\udd0c VS Code Integration\n\nAdd to your `settings.json`:\n\n```json\n{\n   \"python.venvFolders\": [\".meowda/venvs\", \"~/.local/share/meowda/venvs\"]\n}\n```\n\n## \ud83d\udcd6 Command Reference\n\n**Environment Management**\n\n-  `meowda create <name> -p <version>` - Create environment\n-  `meowda activate <name>` - Activate environment\n-  `meowda deactivate` - Deactivate current environment\n-  `meowda remove <name>` - Remove environment\n-  `meowda env list` - List all environments\n-  `meowda env dir` - Show storage directory\n\n**Package Management**\n\n-  `meowda install <packages>` - Install packages\n-  `meowda uninstall <packages>` - Uninstall packages\n\n**Options**: `--global`, `--local`, `--clear`\n\n## \ud83e\udd14 FAQ\n\n**Q: Why was Meowda created?**\n\nA: As an AI infrastructure engineer, I frequently need to share Python virtual environments across multiple projects. For this use case, conda works exceptionally well, and I'm genuinely grateful for it. However, conda can be quite heavy. When Astral released uv, I became an early adopter and quickly migrated my personal development projects to it. uv is both convenient and blazingly fast, which is genuinely impressive. Unfortunately, switching to uv directly in my work environment would actually hurt my productivity, since managing virtual environments across projects with uv alone is quite cumbersome. That's why I decided to wrap uv with simple logic that enables name-based management of multiple virtual environments\u2014and thus Meowda was born.\n\n**Q: What's the difference between Meowda and conda?**\n\nA: Meowda focuses specifically on Python virtual environment management and provides faster package installation through uv. It's not a complete conda replacement, but rather a lightweight alternative.\n\n**Q: Global vs local environments?**\n\nA: Global environments are stored in `~/.local/share/meowda/venvs` and accessible anywhere. Local environments are stored in project's `.meowda/venvs/` and only available within that project.\n\n## \ud83d\ude4f Acknowledgement\n\n-  [uv](https://docs.astral.sh/uv/) - For the virtual environment management core functionality\n-  [conda](https://github.com/conda/conda) - For the inspiration of the CLI interface design\n\n---\n\n<div align=\"center\">\n\n**Like Meowda? Give us a \u2b50\ufe0f!**\n\nMade with \ud83d\udc31 by [ShigureLab](https://github.com/ShigureLab)\n\n</div>\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Meowda \ud83d\udc31 \u2014\u2014 \u300c\u55b5\u54d2\u300d Manage multiple Python virtual environments with ease",
    "version": "0.1.5",
    "project_urls": {
        "Homepage": "https://github.com/ShigureLab/meowda"
    },
    "split_keywords": [
        "meowda",
        " cli",
        " uv",
        " environment",
        " conda-like"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47343696ffba15831178756561e7b2c6e754ce545afe01af2e93764cb67ed39e",
                "md5": "24e806e39848025041ce883ae62e789c",
                "sha256": "b5077c8150640fb7c8913306b268d6d469ae329da159cf4f016e229f25a66824"
            },
            "downloads": -1,
            "filename": "meowda-0.1.5-py3-none-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24e806e39848025041ce883ae62e789c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 431951,
            "upload_time": "2025-08-29T06:30:22",
            "upload_time_iso_8601": "2025-08-29T06:30:22.023678Z",
            "url": "https://files.pythonhosted.org/packages/47/34/3696ffba15831178756561e7b2c6e754ce545afe01af2e93764cb67ed39e/meowda-0.1.5-py3-none-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "536e4805a1ed89bd5fb599985a2120c2c7b0f502b60dc26e22f9856833a7e286",
                "md5": "3f7f3d0a115375cc4ab034a1293b31d2",
                "sha256": "43b1085dc38eb8191d0ec4df8df2f1b6362a5a833ff05e69bb52fc2e0b57e362"
            },
            "downloads": -1,
            "filename": "meowda-0.1.5-py3-none-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3f7f3d0a115375cc4ab034a1293b31d2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 424217,
            "upload_time": "2025-08-29T06:30:23",
            "upload_time_iso_8601": "2025-08-29T06:30:23.854754Z",
            "url": "https://files.pythonhosted.org/packages/53/6e/4805a1ed89bd5fb599985a2120c2c7b0f502b60dc26e22f9856833a7e286/meowda-0.1.5-py3-none-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c24898261c18c5968092edd0ae26e5dd27babde3ccf1dafbf2fc06710a377fd4",
                "md5": "217e65e1be6129e69a893986ce95f600",
                "sha256": "61e8d8b733275ba63a99b051385add1c5e723fb4e9f19af1c73b9911dd95d9f3"
            },
            "downloads": -1,
            "filename": "meowda-0.1.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "217e65e1be6129e69a893986ce95f600",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 493631,
            "upload_time": "2025-08-29T06:30:25",
            "upload_time_iso_8601": "2025-08-29T06:30:25.158316Z",
            "url": "https://files.pythonhosted.org/packages/c2/48/98261c18c5968092edd0ae26e5dd27babde3ccf1dafbf2fc06710a377fd4/meowda-0.1.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d9c62a3859b2d9b2a4cfed4e1487ceb01eb16aa55d678f386ef9e9f4ab679b4",
                "md5": "b3c565d76506be85970479954e1f448c",
                "sha256": "25a9cdefd4483555cb78e45626c710ad978b4b78009485b934096acab95a7106"
            },
            "downloads": -1,
            "filename": "meowda-0.1.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b3c565d76506be85970479954e1f448c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 478115,
            "upload_time": "2025-08-29T06:30:26",
            "upload_time_iso_8601": "2025-08-29T06:30:26.777689Z",
            "url": "https://files.pythonhosted.org/packages/9d/9c/62a3859b2d9b2a4cfed4e1487ceb01eb16aa55d678f386ef9e9f4ab679b4/meowda-0.1.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d5f5696d6262c195e3e438dce16bc4d6e45600773a335689d56369513a174fb",
                "md5": "f016f32bfc863fec798653e813ad2a1b",
                "sha256": "40e75073c2e5f402ad0ec7819f52a994b3434b3d0fd5b25f057c921afd091d2e"
            },
            "downloads": -1,
            "filename": "meowda-0.1.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f016f32bfc863fec798653e813ad2a1b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 505795,
            "upload_time": "2025-08-29T06:30:28",
            "upload_time_iso_8601": "2025-08-29T06:30:28.876009Z",
            "url": "https://files.pythonhosted.org/packages/7d/5f/5696d6262c195e3e438dce16bc4d6e45600773a335689d56369513a174fb/meowda-0.1.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf984675f89081a5ce72c4391fcec5b0d922d1302413143f1d2e1f65b2798952",
                "md5": "696bb6e7f12960fd2f2832cfe4dd3df0",
                "sha256": "786c0c025e6494790ee1bfbf8b05cec0c19af9b9881599091a23f1248984413d"
            },
            "downloads": -1,
            "filename": "meowda-0.1.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "696bb6e7f12960fd2f2832cfe4dd3df0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 519568,
            "upload_time": "2025-08-29T06:30:30",
            "upload_time_iso_8601": "2025-08-29T06:30:30.266047Z",
            "url": "https://files.pythonhosted.org/packages/bf/98/4675f89081a5ce72c4391fcec5b0d922d1302413143f1d2e1f65b2798952/meowda-0.1.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e09695b0c87c5e562ccc446c3a4c976f810389b5d974a35ec33c7be70037aa7",
                "md5": "71624e0a0e47d78fb64e210366343291",
                "sha256": "b421582389e112a8c5f2b41c56b1c445fd538ef5f565f264dc4d99ca31d676b2"
            },
            "downloads": -1,
            "filename": "meowda-0.1.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "71624e0a0e47d78fb64e210366343291",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 497322,
            "upload_time": "2025-08-29T06:30:31",
            "upload_time_iso_8601": "2025-08-29T06:30:31.949612Z",
            "url": "https://files.pythonhosted.org/packages/8e/09/695b0c87c5e562ccc446c3a4c976f810389b5d974a35ec33c7be70037aa7/meowda-0.1.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1fb5e336cc1f639446641f0fb833330d9c6e4f8239fdb1f324c0982ab640ffc",
                "md5": "595ff383671ac7126f369b50cb0552d2",
                "sha256": "62761e1f03599dae0896d3aed78316531b96fa8697dda5d940072b049975680c"
            },
            "downloads": -1,
            "filename": "meowda-0.1.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "595ff383671ac7126f369b50cb0552d2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 482575,
            "upload_time": "2025-08-29T06:30:33",
            "upload_time_iso_8601": "2025-08-29T06:30:33.391738Z",
            "url": "https://files.pythonhosted.org/packages/e1/fb/5e336cc1f639446641f0fb833330d9c6e4f8239fdb1f324c0982ab640ffc/meowda-0.1.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72d0078756dfd247cfeede45972581e16e4c6fcd728091bdbd1eaface846c9b2",
                "md5": "2aa2ee41a0c2106bda3ce45325b425ac",
                "sha256": "26e3d9b0c74e1e0df359c2c8ee0cc5efd93aa5b9b8fce2aea47f0a7f727084eb"
            },
            "downloads": -1,
            "filename": "meowda-0.1.5-py3-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2aa2ee41a0c2106bda3ce45325b425ac",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 301066,
            "upload_time": "2025-08-29T06:30:35",
            "upload_time_iso_8601": "2025-08-29T06:30:35.008762Z",
            "url": "https://files.pythonhosted.org/packages/72/d0/078756dfd247cfeede45972581e16e4c6fcd728091bdbd1eaface846c9b2/meowda-0.1.5-py3-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2e671574d082d5c247b93576de7fbd74988ef2e25c1740fb0fa86c4a6456778",
                "md5": "b9619ad45a786bddc1122e8c9055d59d",
                "sha256": "45968016445ae0840e0278cfc2c24c889d4738d5f7478fa1fc5e3399e8fd9d72"
            },
            "downloads": -1,
            "filename": "meowda-0.1.5-py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b9619ad45a786bddc1122e8c9055d59d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 310947,
            "upload_time": "2025-08-29T06:30:36",
            "upload_time_iso_8601": "2025-08-29T06:30:36.293140Z",
            "url": "https://files.pythonhosted.org/packages/b2/e6/71574d082d5c247b93576de7fbd74988ef2e25c1740fb0fa86c4a6456778/meowda-0.1.5-py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c7c426cff008b2286e056b58041746d52d59dabbffff0f6a104e3a0d5ae991e",
                "md5": "e06713b2e098d96c429ac9fe9fff01d6",
                "sha256": "5e2a7bd28ea50ad24f01ada854ecd0bc327e69461a357da32db6c49542e36a05"
            },
            "downloads": -1,
            "filename": "meowda-0.1.5.tar.gz",
            "has_sig": false,
            "md5_digest": "e06713b2e098d96c429ac9fe9fff01d6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 24444,
            "upload_time": "2025-08-29T06:30:37",
            "upload_time_iso_8601": "2025-08-29T06:30:37.419816Z",
            "url": "https://files.pythonhosted.org/packages/1c/7c/426cff008b2286e056b58041746d52d59dabbffff0f6a104e3a0d5ae991e/meowda-0.1.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-29 06:30:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ShigureLab",
    "github_project": "meowda",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "meowda"
}
        
Elapsed time: 3.76747s