robust-python-demo


Namerobust-python-demo JSON
Version 0.24.0 PyPI version JSON
download
home_pageNone
Summaryrobust-python-demo
upload_time2025-08-01 22:31:15
maintainerNone
docs_urlNone
authorNone
requires_python<4.0,>=3.9
licenseNone
keywords robust-python-demo
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # robust-python-demo

robust_python_demo

---

**[📚 View Documentation](https://robust-python-demo.readthedocs.io/)** | **[🐛 Report a Bug](https://github.com/56kyle/robust-python-demo/issues)** | **[✨ Request a Feature](https://github.com/56kyle/robust-python-demo/issues)**

---

## Installation

You can install `robust_python_demo` via [pip](pip-documentation) from PyPI:

```bash
pip install robust_python_demo
```

### Installation for Development

To set up `robust_python_demo` for local development:

1.  Clone the repository:
    ```bash
    git clone https://github.com/56kyle/robust-python-demo.git
    cd robust-python-demo
    ```
2.  Install dependencies using [:term:`uv`](uv-documentation):
    ```bash
    uv sync
    ```
3.  Install pre-commit hooks:
    ```bash
    uvx nox -s pre-commit -- install
    ```

This sets up a virtual environment and installs core, development, and quality check dependencies.

## Usage

(This section should explain how to use the generated application. Replace the content below with instructions specific to your project's functionality. If your project is a library, show import examples. If it's a CLI application, show command examples. Link to the full documentation for details.)

### As a Library

```python
# Example usage of your package as a library
# from robust_python_demo import some_function
# result = some_function()
# print(result)
```

### As a Command-Line Application

If your project defines command-line entry points in `pyproject.toml`:

```bash
# Example usage of your CLI application
# robust-python-demo --help
# robust-python-demo do-something --input file.txt
```

For detailed API documentation and CLI command references, see the **[Documentation][documentation]**.

## Development Workflow

This project uses a robust set of tools for development, testing, and quality assurance. All significant automated tasks are run via [:term:`Nox`](nox-documentation), orchestrated by the central `noxfile.py`.

- **Run all checks (lint, typecheck, security):** `uvx nox -s check`
- **Run test suite with coverage:** `uvx nox -s test`
- **Build documentation:** `uvx nox -s docs`
- **Build package:** `uvx nox -s build`
- **See all available tasks:** `uvx nox -l`

Explore the `noxfile.py` and the project documentation for detailed information on the automated workflow.

## Contributing

(This section should guide contributions _to this specific generated project_, not the template. It should refer to the project's `CODE_OF_CONDUCT.md` and link to a `CONTRIBUTING.md` specific to the project, if you choose to generate one.)

Report bugs or suggest features via the [issue tracker](https://github.com/56kyle/robust-python-demo/issues).

See [CONTRIBUTING.md](#) for contribution guidelines.

## License

Distributed under the terms of the **MIT** license. See [LICENSE](LICENSE) for details.

---

**This project was generated from the [cookiecutter-robust-python template][cookiecutter-robust-python].**

<!-- Reference Links -->

[cookiecutter-robust-python]: https://github.com/56kyle/cookiecutter-robust-python
[documentation]: https://robust-python-demo.readthedocs.io/

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "robust-python-demo",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.9",
    "maintainer_email": null,
    "keywords": "robust-python-demo",
    "author": null,
    "author_email": "Kyle Oliver <56kyleoliver+cookiecutter-robust-python@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/5f/5c/e35999ab77f33d1e4d526864fc3580a37453c1b5e0be225cf5bc35ccf572/robust_python_demo-0.24.0.tar.gz",
    "platform": null,
    "description": "# robust-python-demo\n\nrobust_python_demo\n\n---\n\n**[\ud83d\udcda View Documentation](https://robust-python-demo.readthedocs.io/)** | **[\ud83d\udc1b Report a Bug](https://github.com/56kyle/robust-python-demo/issues)** | **[\u2728 Request a Feature](https://github.com/56kyle/robust-python-demo/issues)**\n\n---\n\n## Installation\n\nYou can install `robust_python_demo` via [pip](pip-documentation) from PyPI:\n\n```bash\npip install robust_python_demo\n```\n\n### Installation for Development\n\nTo set up `robust_python_demo` for local development:\n\n1.  Clone the repository:\n    ```bash\n    git clone https://github.com/56kyle/robust-python-demo.git\n    cd robust-python-demo\n    ```\n2.  Install dependencies using [:term:`uv`](uv-documentation):\n    ```bash\n    uv sync\n    ```\n3.  Install pre-commit hooks:\n    ```bash\n    uvx nox -s pre-commit -- install\n    ```\n\nThis sets up a virtual environment and installs core, development, and quality check dependencies.\n\n## Usage\n\n(This section should explain how to use the generated application. Replace the content below with instructions specific to your project's functionality. If your project is a library, show import examples. If it's a CLI application, show command examples. Link to the full documentation for details.)\n\n### As a Library\n\n```python\n# Example usage of your package as a library\n# from robust_python_demo import some_function\n# result = some_function()\n# print(result)\n```\n\n### As a Command-Line Application\n\nIf your project defines command-line entry points in `pyproject.toml`:\n\n```bash\n# Example usage of your CLI application\n# robust-python-demo --help\n# robust-python-demo do-something --input file.txt\n```\n\nFor detailed API documentation and CLI command references, see the **[Documentation][documentation]**.\n\n## Development Workflow\n\nThis project uses a robust set of tools for development, testing, and quality assurance. All significant automated tasks are run via [:term:`Nox`](nox-documentation), orchestrated by the central `noxfile.py`.\n\n- **Run all checks (lint, typecheck, security):** `uvx nox -s check`\n- **Run test suite with coverage:** `uvx nox -s test`\n- **Build documentation:** `uvx nox -s docs`\n- **Build package:** `uvx nox -s build`\n- **See all available tasks:** `uvx nox -l`\n\nExplore the `noxfile.py` and the project documentation for detailed information on the automated workflow.\n\n## Contributing\n\n(This section should guide contributions _to this specific generated project_, not the template. It should refer to the project's `CODE_OF_CONDUCT.md` and link to a `CONTRIBUTING.md` specific to the project, if you choose to generate one.)\n\nReport bugs or suggest features via the [issue tracker](https://github.com/56kyle/robust-python-demo/issues).\n\nSee [CONTRIBUTING.md](#) for contribution guidelines.\n\n## License\n\nDistributed under the terms of the **MIT** license. See [LICENSE](LICENSE) for details.\n\n---\n\n**This project was generated from the [cookiecutter-robust-python template][cookiecutter-robust-python].**\n\n<!-- Reference Links -->\n\n[cookiecutter-robust-python]: https://github.com/56kyle/cookiecutter-robust-python\n[documentation]: https://robust-python-demo.readthedocs.io/\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "robust-python-demo",
    "version": "0.24.0",
    "project_urls": {
        "Homepage": "https://github.com/56kyle/robust-python-demo",
        "Repository": "https://github.com/56kyle/robust-python-demo"
    },
    "split_keywords": [
        "robust-python-demo"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2af9e23f639baa0693efbb0af7bccb07428adba8c607ac1d92f36e14ce6f193",
                "md5": "51c84616479cd7933d507ee481689d2f",
                "sha256": "ff967f648014fbafb6dfa6bfc48135e67ab18cb5904d6116152f2f303a1adaa9"
            },
            "downloads": -1,
            "filename": "robust_python_demo-0.24.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "51c84616479cd7933d507ee481689d2f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.9",
            "size": 4209,
            "upload_time": "2025-08-01T22:31:14",
            "upload_time_iso_8601": "2025-08-01T22:31:14.636565Z",
            "url": "https://files.pythonhosted.org/packages/e2/af/9e23f639baa0693efbb0af7bccb07428adba8c607ac1d92f36e14ce6f193/robust_python_demo-0.24.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f5ce35999ab77f33d1e4d526864fc3580a37453c1b5e0be225cf5bc35ccf572",
                "md5": "44c19d10d32ab513cd79ad36d8a16a2c",
                "sha256": "7e8931e2487cbec4c8981938ac10683d16792a2e84f9fcbc173a422210518bb4"
            },
            "downloads": -1,
            "filename": "robust_python_demo-0.24.0.tar.gz",
            "has_sig": false,
            "md5_digest": "44c19d10d32ab513cd79ad36d8a16a2c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.9",
            "size": 3883,
            "upload_time": "2025-08-01T22:31:15",
            "upload_time_iso_8601": "2025-08-01T22:31:15.654127Z",
            "url": "https://files.pythonhosted.org/packages/5f/5c/e35999ab77f33d1e4d526864fc3580a37453c1b5e0be225cf5bc35ccf572/robust_python_demo-0.24.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-01 22:31:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "56kyle",
    "github_project": "robust-python-demo",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "robust-python-demo"
}
        
Elapsed time: 1.23718s