thangdemo


Namethangdemo JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryA tiny example Python library with a CLI
upload_time2025-08-16 06:29:16
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT
keywords demo example library
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # thangdemo

A tiny example Python library for demonstration. Provides a couple of utility functions and a CLI.

## Installation

```bash
pip install thangdemo
```

## Usage

```python
from thangdemo import add, mean

print(add(2, 3))    # 5
print(mean([1, 2])) # 1.5
```

### CLI

```bash
thangdemo-cli 7
# prints: 49
```

## Development

- Run tests: `pytest -q`
- Build: `python -m build`

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "thangdemo",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "demo, example, library",
    "author": null,
    "author_email": "YOUR NAME <you@example.com>",
    "download_url": "https://files.pythonhosted.org/packages/26/b3/f4072df316a55a73b72dd9ab4c744f6f759745daa27b474c3a39ebf438d7/thangdemo-0.1.0.tar.gz",
    "platform": null,
    "description": "# thangdemo\n\nA tiny example Python library for demonstration. Provides a couple of utility functions and a CLI.\n\n## Installation\n\n```bash\npip install thangdemo\n```\n\n## Usage\n\n```python\nfrom thangdemo import add, mean\n\nprint(add(2, 3))    # 5\nprint(mean([1, 2])) # 1.5\n```\n\n### CLI\n\n```bash\nthangdemo-cli 7\n# prints: 49\n```\n\n## Development\n\n- Run tests: `pytest -q`\n- Build: `python -m build`\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A tiny example Python library with a CLI",
    "version": "0.1.0",
    "project_urls": {
        "Homepage": "https://github.com/YOUR_GITHUB_USERNAME/thangdemo",
        "Issues": "https://github.com/YOUR_GITHUB_USERNAME/thangdemo/issues"
    },
    "split_keywords": [
        "demo",
        " example",
        " library"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d193cce5bf4031ec64f4c7f26b65f59c5c87993d698e6eaab24b2e5f3b669059",
                "md5": "263856e15d6341624054bf0ac3d6e678",
                "sha256": "3aebb499179d66e629ee9abdb5ee8d786ebb13bb7f175d053bb7c2b11cc05df3"
            },
            "downloads": -1,
            "filename": "thangdemo-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "263856e15d6341624054bf0ac3d6e678",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 3333,
            "upload_time": "2025-08-16T06:29:14",
            "upload_time_iso_8601": "2025-08-16T06:29:14.927730Z",
            "url": "https://files.pythonhosted.org/packages/d1/93/cce5bf4031ec64f4c7f26b65f59c5c87993d698e6eaab24b2e5f3b669059/thangdemo-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26b3f4072df316a55a73b72dd9ab4c744f6f759745daa27b474c3a39ebf438d7",
                "md5": "fb1356274dbfd23757f9aed248073ba6",
                "sha256": "69018a487684ff9ecbd8a7221a411103a2e946b6e5f0014c6d639a84cc842d28"
            },
            "downloads": -1,
            "filename": "thangdemo-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fb1356274dbfd23757f9aed248073ba6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 2871,
            "upload_time": "2025-08-16T06:29:16",
            "upload_time_iso_8601": "2025-08-16T06:29:16.340083Z",
            "url": "https://files.pythonhosted.org/packages/26/b3/f4072df316a55a73b72dd9ab4c744f6f759745daa27b474c3a39ebf438d7/thangdemo-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-16 06:29:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "YOUR_GITHUB_USERNAME",
    "github_project": "thangdemo",
    "github_not_found": true,
    "lcname": "thangdemo"
}
        
Elapsed time: 0.49348s