Metadata-Version: 2.4
Name: hpc-txt-loader
Version: 0.1.0
Summary: A minimal library that writes a bundled TXT file to a local path.
Author: Lenovo
License-Expression: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# hpc-txt-loader

`hpc-txt-loader` is a tiny Python package with one job: write the bundled text file to a local path on the user's machine.

## Install

```bash
pip install hpc-txt-loader
```

## Use

```python
from hpc_lib import write_bundled_txt

written_path = write_bundled_txt("output.txt")
print(written_path)
```

The package ships with `hpc_lib/data.txt`, and `write_bundled_txt()` copies that content to the destination you choose.
