You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have a couple of questions about generation of python files from idl files:
How to work with -o option? I type idlc -l py idl/file.idl -o python_files, but they are still generated in the directory I'm at the moment (not in python_files)
Is there an option to somehow include automatically __init__.py file so that output directory becomes python package?
Thanks!
The text was updated successfully, but these errors were encountered:
hi @morkovka1337. i would like to try answer on your questions.
you are on right way ildc ... -o python_files should create compiled files in python_files directory. there was a problem in idlpy with -o flag, that should be solved with mentioned custom output directory for ildpy. #229 PR.
i didn't find way to place __init__.py file in output directory (provided by -o flag) with idlc tool.
Hello, I have a couple of questions about generation of python files from idl files:
-o
option? I typeidlc -l py idl/file.idl -o python_files
, but they are still generated in the directory I'm at the moment (not inpython_files
)__init__.py
file so that output directory becomes python package?Thanks!
The text was updated successfully, but these errors were encountered: