py-mineatar


Namepy-mineatar JSON
Version 1.0.1 PyPI version JSON
download
home_pageNone
SummaryA Python wrapper for the Mineatar API.
upload_time2025-10-29 07:20:50
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseNone
keywords mineatar minecraft api wrapper
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # py-mineatar
A Python wrapper for mineatar.io

## Installation
You can install the package via pip:

```bash
pip install py-mineatar
```

## Usage
Here's an example of how to use the `py-mineatar` package:

### Synchronous Example

```python
from mineatar import MineatarClient

with MineatarClient() as client:
    avatar_bytes = client.get_skin("069a79f4-44e9-4726-a5be-fca90e38aaf5") # Notch's UUID

    # Save the avatar image
    with open("notch_skin.png", "wb") as f:
        f.write(avatar_bytes)
```

### Asynchronous Example

```python
import asyncio
from mineatar import AsyncMineatarClient

async def main():
    async with AsyncMineatarClient() as client:
        avatar_bytes = await client.get_skin("069a79f4-44e9-4726-a5be-fca90e38aaf5") # Notch's UUID

        # Save the avatar image
        with open("notch_skin.png", "wb") as f:
            f.write(avatar_bytes)

asyncio.run(main())
```

## Features
- Fast and easy access to Minecraft avatars and skins.
- Supports both synchronous and asynchronous operations.
- Simple and easy-to-use.

## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details

## Contributing
Contributions are welcome! Please feel free to submit a pull request or open an issue.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "py-mineatar",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "mineatar, minecraft, api, wrapper",
    "author": null,
    "author_email": "Rezn1r <rezn1r@proton.me>",
    "download_url": "https://files.pythonhosted.org/packages/73/4d/a204ebe91c9fb4712eadbc2a08fc515c1e8f13a4c86f4872b02f9fa5cb5a/py_mineatar-1.0.1.tar.gz",
    "platform": null,
    "description": "# py-mineatar\nA Python wrapper for mineatar.io\n\n## Installation\nYou can install the package via pip:\n\n```bash\npip install py-mineatar\n```\n\n## Usage\nHere's an example of how to use the `py-mineatar` package:\n\n### Synchronous Example\n\n```python\nfrom mineatar import MineatarClient\n\nwith MineatarClient() as client:\n    avatar_bytes = client.get_skin(\"069a79f4-44e9-4726-a5be-fca90e38aaf5\") # Notch's UUID\n\n    # Save the avatar image\n    with open(\"notch_skin.png\", \"wb\") as f:\n        f.write(avatar_bytes)\n```\n\n### Asynchronous Example\n\n```python\nimport asyncio\nfrom mineatar import AsyncMineatarClient\n\nasync def main():\n    async with AsyncMineatarClient() as client:\n        avatar_bytes = await client.get_skin(\"069a79f4-44e9-4726-a5be-fca90e38aaf5\") # Notch's UUID\n\n        # Save the avatar image\n        with open(\"notch_skin.png\", \"wb\") as f:\n            f.write(avatar_bytes)\n\nasyncio.run(main())\n```\n\n## Features\n- Fast and easy access to Minecraft avatars and skins.\n- Supports both synchronous and asynchronous operations.\n- Simple and easy-to-use.\n\n## License\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details\n\n## Contributing\nContributions are welcome! Please feel free to submit a pull request or open an issue.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Python wrapper for the Mineatar API.",
    "version": "1.0.1",
    "project_urls": {
        "Homepage": "https://github.com/rzn1r/py-mineatar"
    },
    "split_keywords": [
        "mineatar",
        " minecraft",
        " api",
        " wrapper"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6a540443ab730f1505e24170ad6bd675c4cc76e3f8df8c60e0d527a63263e7e",
                "md5": "96012626811e294894608e084b409eee",
                "sha256": "d68dfdfc455cd8a31d7f74093d1c5e8f5597d017c99bd20b1287df919be07b41"
            },
            "downloads": -1,
            "filename": "py_mineatar-1.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "96012626811e294894608e084b409eee",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 4704,
            "upload_time": "2025-10-29T07:20:49",
            "upload_time_iso_8601": "2025-10-29T07:20:49.177144Z",
            "url": "https://files.pythonhosted.org/packages/a6/a5/40443ab730f1505e24170ad6bd675c4cc76e3f8df8c60e0d527a63263e7e/py_mineatar-1.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "734da204ebe91c9fb4712eadbc2a08fc515c1e8f13a4c86f4872b02f9fa5cb5a",
                "md5": "9cb3b5629af48d58401ea7249d20bc72",
                "sha256": "9dcab435bd68fa1312ddcd979433f32bb95c4a56a19ff071ef246592ac38a842"
            },
            "downloads": -1,
            "filename": "py_mineatar-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "9cb3b5629af48d58401ea7249d20bc72",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 4687,
            "upload_time": "2025-10-29T07:20:50",
            "upload_time_iso_8601": "2025-10-29T07:20:50.105009Z",
            "url": "https://files.pythonhosted.org/packages/73/4d/a204ebe91c9fb4712eadbc2a08fc515c1e8f13a4c86f4872b02f9fa5cb5a/py_mineatar-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-29 07:20:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rzn1r",
    "github_project": "py-mineatar",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "py-mineatar"
}
        
Elapsed time: 2.96817s