Use dynamic path instead of fixed one

This commit is contained in:
Satwik 2019-10-31 23:50:50 +05:30
parent a553ea0070
commit 2160dad717
1 changed files with 4 additions and 2 deletions

View File

@ -18,8 +18,10 @@ Simplifictions and improvements through patches are more than welcome however :)
"""
import json
import os
import pprint
fname = "/Users/300041709/code/self/wtfpython/README.md"
fpath = os.path.join(os.path.dirname( __file__ ), '..', 'README.md')
examples = []
# The globals
@ -250,7 +252,7 @@ def convert_to_notebook(parsed_json):
with open(fname, 'r+', encoding="utf-8") as f:
with open(fpath, 'r+', encoding="utf-8") as f:
lines = iter(f.readlines())
line = next(lines)
result = []