Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/doreapp/text-checker
French text checker using reverso
https://github.com/doreapp/text-checker
Last synced: 2 days ago
JSON representation
French text checker using reverso
- Host: GitHub
- URL: https://github.com/doreapp/text-checker
- Owner: Doreapp
- License: mit
- Created: 2022-05-11T15:19:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-05T11:12:51.000Z (about 2 years ago)
- Last Synced: 2024-11-11T05:43:50.694Z (2 months ago)
- Language: Python
- Homepage:
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# text-checker
Text checker using Reverso
## Installation
### (Optional) Virtual environment
We recommend using a python virtual environment :
```bash
virtualenv venv
source venv/bin/activate
```### Dependencies
```bash
pip install -r requirements.txt
```## Usage
### Help on usage
```bash
python3 -m textchecker -h
```### Spell-check a text in a file
```bash
python3 -m textchecker path/to/file.txt
```### Example
Input:
```
Voici une texte avec quelque fautes.
Il peu etre long ou non. Ceci est un example.
```Output:
```bash
Loading corrections...
████████████████████████████████████████████████████████████ 100%
Voici une texte[un texte] avec quelque[quelques] fautes.
Il peu[peut] etre[être] long ou non. Ceci est un example[exemple].
```