PPT generator for language learning
Project description
Installation
pip3 install --verbose linguappt
Usage
Please refer to api docs.
Execute usage
- Validate ppt template
pptx_validate --pptx [pptx file]
- Convert vocabulary csv file into ppt file
lingua_vocabppt --sourcecsv [vocab csv file] --lang [language] --title [title shown in ppt] --destpptx [pptx file]
- Convert phrase csv file into ppt file
lingua_phraseppt --sourcecsv [phrase csv file] --lang [language] --title [title shown in ppt] --destpptx [pptx file]
- Convert ppt into pdf
lingua_pptx2pdf --sourcepptx [pptx file] --destdir [dest directory storing pdf and images]
Package usage
from linguappt import SpanishVocabPPT, EnglishVocabPPT
from linguappt import EnglishPhrasePPT, SpanishPhrasePPT
def vocabppt(sourcecsv, title, lang, destpptx):
_PPTS = {
"en": EnglishVocabPPT,
"es": SpanishVocabPPT
}
_PPT = _PPTS[lang]
vp = _PPT(sourcecsv, title)
vp.convert_to_ppt(destpptx)
def phraseppt(sourcecsv, title, lang, destpptx):
_PPTS = {
"en": EnglishPhrasePPT,
"es": SpanishPhrasePPT
}
_PPT = _PPTS[lang]
vp = _PPT(sourcecsv, title)
vp.convert_to_ppt(destpptx)
Development
Clone project
git clone https://github.com/qishe-nlp/linguappt.git
Install poetry
Install dependencies
poetry update
Test
poetry run pytest -rP --capture=sys
which run tests under tests/*
Execute
poetry run pptx_validate --help
poetry run vocab_csv2ppt --help
poetry run ppt2pdf --help
poetry run vocab_csv2pptpdf --help
Create sphinx docs
poetry shell
cd apidocs
sphinx-apidoc -f -o source ../subtitlecore
make html
python -m http.server -d build/html
Host docs on github pages
cp -rf apidocs/build/html/* docs/
Build
- Change
version
inpyproject.toml
andlinguappt/__init__.py
- Build python package by
poetry build
Git commit and push
Publish from local dev env
- Set pypi test environment variables in poetry, refer to poetry doc
- Publish to pypi test by
poetry publish -r test
Publish through CI
- Github action build and publish package to test pypi repo
git tag [x.x.x]
git push origin master
- Manually publish to pypi repo through github action
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
linguappt-0.1.6.tar.gz
(2.4 MB
view hashes)
Built Distribution
Close
Hashes for linguappt-0.1.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7ec5de8b1cf5c08fff0f9597afee7d5106428dd06ddd1e9dd67f104157c6760 |
|
MD5 | 0a406d634f07c0cf17b04b2ca366dd1b |
|
BLAKE2b-256 | febdb6e51b9ad2eb3b4cf5519db29f91903ff1ac640cb45bbff20b91b09daffe |