foxtrot-api

An API for searching and downloading Code Lyoko transcripts and subtitles.


Keywords
api, flask, python, subtitles
License
MIT
Install
pip install foxtrot-api==2.0.0

Documentation

Foxtrot API

An API for searching and delivering Code Lyoko transcripts and subtitles.

Apiary Documentation

Install (from PyPi)

$ pip install foxtrot-api


Development and Contribution

Build

$ python setup.py bdist_wheel sdist

Run the API Locally

$ uwsgi --http-socket :8080 -w foxtrot_api.__init__:app --master --processes 1 --threads 2

Deploy to PyPi

$ twine upload dist/*

Install Locally

$ pip install -e .

Install Development Version Locally

$ pip install -e . [dev]

Create or Update Manifest

$ rm -f MANIFEST.in && check-manifest --update

Create or Update Sphinx Documentation

$ sphinx-apidoc -f -o docs foxtrot_api && make -C docs html