Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Mako / test / templates / read_unicode.html
Size: Mime:
<% 
try:
    file_content = open(path)
except:
    raise "Should never execute here"
doc_content = ''.join(file_content.readlines())
file_content.close()
%>

${unicode(doc_content, encoding='utf-8')}