my-sample-pkg


Namemy-sample-pkg JSON
Version 0.1.2 PyPI version JSON
download
home_pageNone
SummaryA simple sample Python package for PyPI demonstration
upload_time2025-09-04 04:13:13
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT
keywords sample example demo
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # my-sample-pkg

A simple sample Python package for PyPI demonstration.

## Installation

```bash
pip install my-sample-pkg
```

## Usage

```python
from my_sample_pkg import hello

hello()  # Prints "Hello, PyPI!"
```

## Requirements

- Python 3.8 or higher

## Build and Upload

### Build the package

```bash
pip install build twine
python -m build
```

### Upload to PyPI

```bash
# Upload to TestPyPI first (recommended)
python -m twine upload --repository testpypi dist/*

# Upload to PyPI
python -m twine upload dist/*
```



## License

MIT License

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "my-sample-pkg",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "sample, example, demo",
    "author": null,
    "author_email": "kimseungtae <monogatree@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/97/f2/b6688e32e6eb9d2dd2bc99aa91f1bc9852b04d133b6eb98fd1d5053db155/my_sample_pkg-0.1.2.tar.gz",
    "platform": null,
    "description": "# my-sample-pkg\n\nA simple sample Python package for PyPI demonstration.\n\n## Installation\n\n```bash\npip install my-sample-pkg\n```\n\n## Usage\n\n```python\nfrom my_sample_pkg import hello\n\nhello()  # Prints \"Hello, PyPI!\"\n```\n\n## Requirements\n\n- Python 3.8 or higher\n\n## Build and Upload\n\n### Build the package\n\n```bash\npip install build twine\npython -m build\n```\n\n### Upload to PyPI\n\n```bash\n# Upload to TestPyPI first (recommended)\npython -m twine upload --repository testpypi dist/*\n\n# Upload to PyPI\npython -m twine upload dist/*\n```\n\n\n\n## License\n\nMIT License\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A simple sample Python package for PyPI demonstration",
    "version": "0.1.2",
    "project_urls": {
        "Bug Reports": "https://github.com/kimseungtae/my-sample-pkg/issues",
        "Homepage": "https://github.com/kimseungtae/my-sample-pkg",
        "Source": "https://github.com/kimseungtae/my-sample-pkg"
    },
    "split_keywords": [
        "sample",
        " example",
        " demo"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4d00a56bab01e052789451e8e9b5f9a20b473e065829a8797dfcea55b68601a",
                "md5": "88da9100f5ec4e81a08f6401f7b7593b",
                "sha256": "33ab59ea6c9b820118eb0a0d9cfafdcafda750cf178f60c208e90ca39c76d6a0"
            },
            "downloads": -1,
            "filename": "my_sample_pkg-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "88da9100f5ec4e81a08f6401f7b7593b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 3615,
            "upload_time": "2025-09-04T04:13:12",
            "upload_time_iso_8601": "2025-09-04T04:13:12.113857Z",
            "url": "https://files.pythonhosted.org/packages/f4/d0/0a56bab01e052789451e8e9b5f9a20b473e065829a8797dfcea55b68601a/my_sample_pkg-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97f2b6688e32e6eb9d2dd2bc99aa91f1bc9852b04d133b6eb98fd1d5053db155",
                "md5": "b155c92b798df2d093eca4ff0b59291b",
                "sha256": "54a7d96edbd69b26cd7af10c022aa37e879a342032e9c04d3d888fa617fb0473"
            },
            "downloads": -1,
            "filename": "my_sample_pkg-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "b155c92b798df2d093eca4ff0b59291b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 3002,
            "upload_time": "2025-09-04T04:13:13",
            "upload_time_iso_8601": "2025-09-04T04:13:13.167094Z",
            "url": "https://files.pythonhosted.org/packages/97/f2/b6688e32e6eb9d2dd2bc99aa91f1bc9852b04d133b6eb98fd1d5053db155/my_sample_pkg-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-04 04:13:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kimseungtae",
    "github_project": "my-sample-pkg",
    "github_not_found": true,
    "lcname": "my-sample-pkg"
}
        
Elapsed time: 0.45825s