Skip to content

Commit

Permalink
Add info to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
insolor committed Dec 3, 2023
1 parent 06048ab commit a4e7eba
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# Alternative Encodings
[![Tests](https://github.com/dfint/alternative-encodings/actions/workflows/tests.yml/badge.svg)](https://github.com/dfint/alternative-encodings/actions/workflows/tests.yml)
[![Coverage Status](https://coveralls.io/repos/github/dfint/alternative-encodings/badge.svg?branch=main)](https://coveralls.io/github/dfint/alternative-encodings?branch=main)

Implemented encodings:

- [x] [viscii][1]
- [x] cp866i - modified [cp866][2] Python encoding, which works correctly with Belarusian and Ukrainian "і" letter

Ideas:

- [ ] implement custom [Romaji][3] encoding for Japanese (encode hieroglyphs as latin characters)

[1]: https://en.wikipedia.org/wiki/VISCII
[2]: https://en.wikipedia.org/wiki/Code_page_866
[3]: https://en.wikipedia.org/wiki/Romanization_of_Japanese
3 changes: 0 additions & 3 deletions alternative_encodings/cp866i.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import codecs
import encodings.cp866 as cp866

from functools import lru_cache

from .common import get_codec, get_incremental_encoder, get_incremental_decoder, get_stream_writer, get_stream_reader

# Codec APIs
class Codec(cp866.Codec):
Expand Down

0 comments on commit a4e7eba

Please sign in to comment.