An open API service indexing awesome lists of open source software.

https://github.com/michalswi/letters-converter

simple script to convert letters to ASCI chars
https://github.com/michalswi/letters-converter

convert-characters python

Last synced: 7 days ago
JSON representation

simple script to convert letters to ASCI chars

Awesome Lists containing this project

README

          

### simple letters converter

![pytests](https://github.com/michalswi/letters-converter/actions/workflows/tests.yml/badge.svg)

Convert letters in specific file to ASCI chars.

```
$ echo -e "line1 ąę\nline2 ćź" > /tmp/demo.txt

$ cat /tmp/demo.txt
line1 ąę
line2 ćź

$ python3 convert.py /tmp/demo.txt
Letters converted..

$ cat /tmp/demo.txt
test ae
test2 cz
```