Closed animaone closed 3 years ago
I am getting the error: module 'transpyle' has no attribute 'CodeReader' when I try to run the following code:
import pathlib import transpyle path = pathlib.Path('my_script.py') code_reader = transpyle.CodeReader() code = code_reader.read_file(path) from_language = transpyle.Language.find('Python 3.6') to_language = transpyle.Language.find('Fortran 95') translator = transpyle.AutoTranslator(from_language, to_language) fortran_code = translator.translate(code, path) print(fortran_code)
the correct import path is from transpyle.general.code_reader import CodeReader
from transpyle.general.code_reader import CodeReader
I am getting the error: module 'transpyle' has no attribute 'CodeReader' when I try to run the following code: