https://github.com/doreapp/text-checker
French text checker using reverso
https://github.com/doreapp/text-checker
Last synced: 10 months 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 (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-05T11:12:51.000Z (over 3 years ago)
- Last Synced: 2025-02-26T10:13:04.438Z (over 1 year 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].
```