This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import sys | |
import os | |
#usage: lrc2srt.py [directory] | |
# will recusively convert all lrc files to srt in directory | |
def conv(lrcPath,srtPath): | |
lrc=file(lrcPath) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
sample single file templateless flask application that demonstrates flask_bootstrap, flask_wtform, flask_nav, flask_login | |
uses dominate instead of templates | |
to use: (in virtual env) | |
pip install dominate Flask Flask-Bootstrap Flask-WTF flask-nav Flask-Login | |
python sample_dominate.py | |
''' |