Spaces:
Sleeping
Sleeping
File size: 218 Bytes
12b6218 |
1 2 3 4 5 6 7 8 |
def get_text_block(fname):
# this is how to read a block of text:
path = "..//pdac2021_res_est_course_link2//text_blocks"
f = open(path + "//" + fname, "r")
# and then write it to the app
return f.read();
|