IDONTSUDO

Results 3 comments of IDONTSUDO

This problem is related to your proxy. We should add below line to your local.settings.json "NO_PROXY": "localhost,127.0.0.1" Once you add this line to you json file, you can see you...

from steputils import p21 FNAME = "./1.STEP" try: stepFile = p21.load(open(FNAME)) print(dir(stepFile)) except IOError as e: print(e) else: print(f'File {FNAME} is a valid STEP-file')