Metadata-Version: 2.4
Name: writetofile
Version: 0.0.1
Summary: A lightweight utility to write piped data to a file, designed for cli tools without native file writing capabilitys.
Author: Ruizennis
License: MIT
Project-URL: Homepage, https://github.com/Ruizennis/Writetofile
Project-URL: Issues, https://github.com/Ruizennis/Writetofile/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Environment :: Console
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Writetofile
## Also known as wtf
This tool is meant to be used in conjuction with other cli tools, this tool solves the problem of cli tools without native file writing.

## Table of contents
- [Why use wtf?](#why-use-wtf)
- [Installation](#installation)
- [Usage](#usage)
- [Links](#links)
- [licensing](#licensing)

## Why use wtf?
### Some of the reasons wtf is better then the alternatives:
- Zero dependencies
- Lightweight
- Intergration with any tool that writes to stdin
- Easy installation process
- Allows appending or overwriting
- If file doesent exist it makes the file and writes to it


## Installation
### Install directly from pypi or use git
```bash
pip install Writetofile
```
**or**
```bash
git clone https://github.com/Ruizennis/Writetofile
cd Writetofile
```

## Usage

### Writing text to file
```bash
echo 'hi!' | wtf filename
```
### Save pip packages to file
```bash
pip list | wtf packages.txt
```

## Links
- [PyPi]()

## Licensing
**This project is licensed under the MIT license, see [LICENSE](LICENSE).**
