Skip to content

Instantly share code, notes, and snippets.

@jrm2k6
Created October 20, 2013 20:09
Show Gist options
  • Select an option

  • Save jrm2k6/7074662 to your computer and use it in GitHub Desktop.

Select an option

Save jrm2k6/7074662 to your computer and use it in GitHub Desktop.
@app.route('/')
def show_home():
file_to_read = url_for('static', filename='posts/post1.txt')
with open(filename, 'r') as f:
return f.readlines()
return show_home_page()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment