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
- Host: GitHub
- URL: https://github.com/michalswi/letters-converter
- Owner: michalswi
- Created: 2022-04-08T06:55:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-08T07:54:28.000Z (about 4 years ago)
- Last Synced: 2025-10-09T15:25:51.034Z (10 months ago)
- Topics: convert-characters, python
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### simple letters converter

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
```