Metadata-Version: 2.4
Name: stringty
Version: 0.0.2
Summary: Uma biblioteca PYTHON para editar conteúdo de arquivos, substitua todo o conteúdo ou adicione algo a mais.
Author: silvaleal
Author-email: lealsilva.ctt@outlook.com
License: MIT License
Keywords: redacty
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: summary

The **Stringty** is a Python library for **manipulating file content in a simple way** â€” either replacing all content or appending new content.

## Installation

```bash
pip install stringty
```

## Replace the entire content

```python
from stringty import Stringty

content = """
a = "ab2c"

print(a)"""

Redacty().rescript("test.py", content)
```

## Append content to the end

```python
from stringty import Stringty

content = """
a = "ab2c"


print(a)"""

Redacty().imprement("test.py", content)
```
