Files
china-dictatorship/china-dictatorship.py

9 lines
197 B
Python
Raw Normal View History

2020-03-17 00:00:09 +00:00
#!/usr/bin/env python
2020-03-18 00:00:00 +00:00
import pkg_resources
readme_html_path = pkg_resources.resource_string(__name__, 'README.html')
print(readme_html_path)
with open(readme_html_path) as f:
print(f.read())