Metadata-Version: 2.4
Name: linegenerator
Version: 0.1.1b0
Summary: CLI tool for generating log lines with customizable templates
Project-URL: Homepage, https://github.com/vldmrdev/linegenerator
Project-URL: Issues, https://github.com/vldmrdev/linegenerator/issues
Author-email: "Vladimir(vldmrdev)" <70532790+vldmrdev@users.noreply.github.com>
License-Expression: MIT
License-File: LICENSE
Keywords: cli-tool,line-generator,linegenerator,log-generator,synthetic data
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Requires-Dist: faker>=37.5.3
Requires-Dist: typer>=0.16.0
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Description-Content-Type: text/markdown

### Line Generator

This is a simple string line generator based on templates for generating logs, testing your scripts and algorithms or
other stuff if you need.

### Install

```pip install linegenerator```

### After install

Show commands:

```linegenerator-cli --help```

Show available default generators:

```linegenerator-cli --help-generators```

Install autocompletion:

```linegenerator-cli --install-completion```

Show autocompletion script:

```linegenerator-cli --show-completion```

### Examples:

```linegenerator-cli --template "Hello, {name}, wellcom to {city}!" --count 10```

output:

```
Hello, Timothy Lozano, wellcom to North Lindaberg!
Hello, Joshua Williams, wellcom to New Darrylshire!
Hello, Cody Smith, wellcom to East Kimberlyton!
```

### License

[MIT License](LICENSE)
