Hello. My code is:
from refextract import extract_references_from_file
import os
--- main ---
path="E:\finance Python\2022 business\1226 pdf\42_56\"
name="test.pdf"
file=name
print(file)
st = os.stat(file)
print(st)
references = extract_references_from_file(os.path.join(path, name))
print(references[0])
But unfortunately, I don't know why the path is an error. I also change the path to "test.pdf" but can not function. Please help!
Hello. My code is:
from refextract import extract_references_from_file
import os
--- main ---
path="E:\finance Python\2022 business\1226 pdf\42_56\"
name="test.pdf"
file=name
print(file)
st = os.stat(file)
print(st)
references = extract_references_from_file(os.path.join(path, name))
print(references[0])
But unfortunately, I don't know why the path is an error. I also change the path to "test.pdf" but can not function. Please help!