Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bnbsking/vocab-generator
Customized vocabulary random generator that can be easily develop on any device such as smart phone
https://github.com/bnbsking/vocab-generator
Last synced: about 2 months ago
JSON representation
Customized vocabulary random generator that can be easily develop on any device such as smart phone
- Host: GitHub
- URL: https://github.com/bnbsking/vocab-generator
- Owner: bnbsking
- Created: 2024-02-12T09:02:51.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-06T09:42:41.000Z (6 months ago)
- Last Synced: 2024-07-06T10:43:11.847Z (6 months ago)
- Language: Python
- Homepage:
- Size: 54.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
### Introduction
Random generator for memorizing customized vocabulary. This project can be easily run on phone devices (e.g. PythonEditor) to utilize its convenience.### File Structure
+ main.py: main program
+ data.txt.py: custom vocabulary split by "\n\n"
+ cards_target.pkl: vocabulary needs to be studied.
+ cards_finish.pkl: vocabulary have already studied.
+ status.txt: logs for the operations.### Prerequisites
+ Python 3+### Usage
+ task_id in main.py runs different modes:
+ 0 (update): used when data.txt.py is updated, refresh cards_target but remains cards_finish.
+ 1 (study_target): study cards_target. If a card is memorized, add it to cards_finish.
+ 2 (study_finish): review cards_finish. If a card is forgotten, add it to cards_target.
```bash
python main.py
```