Metadata-Version: 2.4
Name: blend2stl
Version: 0.0.1
Summary: Export .blend files to .stl with scale
Author-email: Koziołek <bjkuczynski@gmail.com>
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: bpy
Dynamic: license-file

# blend2stl

Simple library to export blender files (`.blend`) to STL format (`.stl`) with scale.

In my personal blender configuration I use millimeters as base scale and default export to STL makes objects tiny. That why we need scale parameter
with default value 1000.

## Installation

Just use pip

```bash
pip install blend2stl
```

## Usage:

In CLI

```bash
python -m blend2stl --input folder-with-blend --output folder-with-stl [--scale 500]
```

In python code

```python
from blend2stl import blend2stl

# Define input/output paths and scale
input_folder = "/path/to/blend/files"
output_folder = "/path/to/output/stls"
scale = 1000  # Optional, default is 1000

# Run export
blend2stl(input_folder, output_folder, scale)
```

## License

[GPLv3](LICENSE)
