Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1.03 KB

README.md

File metadata and controls

28 lines (17 loc) · 1.03 KB

Works with Python 3.6+MIT LicenseCode style: black

ipaphon - text to IPA

A skeleton Flask app demonstrating how to process uploaded files.

It will transliterate uploaded text files into IPA (International Phonetic Alphabet).

Run it with a production server

waitress-serve --call 'ipaphon.main:wsgi'

Run it with the integrated development server

export FLASK_APP=ipaphon.wsgi
export FLASK_ENV=development
flask run

Getting started with web development

https://getbootstrap.com/docs/5.0/getting-started/introduction/

https://getbootstrap.com/docs/5.0/forms/form-control/

https://flask.palletsprojects.com/en/2.0.x/

https://flask.palletsprojects.com/en/2.0.x/patterns/fileuploads/