├── .gitignore ├── README.md ├── README_ENG.md ├── examples ├── 1_non_type.py ├── 2_collector_type.py ├── 3_specific_type.py ├── 4_common_type.py └── README.md └── src ├── generator3 ├── __init__.py ├── generator3.py └── pycharm_generator_utils │ ├── __init__.py │ ├── clr_tools.py │ ├── constants.py │ ├── module_redeclarator.py │ ├── pyparsing.py │ ├── pyparsing_py3.py │ └── util_methods.py ├── main.py ├── make_stubs.py └── utils ├── __init__.py ├── docopt.py ├── helper.py └── logger.py /.gitignore: -------------------------------------------------------------------------------- 1 | logs/ 2 | stubs/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/README.md -------------------------------------------------------------------------------- /README_ENG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/README_ENG.md -------------------------------------------------------------------------------- /examples/1_non_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/examples/1_non_type.py -------------------------------------------------------------------------------- /examples/2_collector_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/examples/2_collector_type.py -------------------------------------------------------------------------------- /examples/3_specific_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/examples/3_specific_type.py -------------------------------------------------------------------------------- /examples/4_common_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/examples/4_common_type.py -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/examples/README.md -------------------------------------------------------------------------------- /src/generator3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/generator3/generator3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/src/generator3/generator3.py -------------------------------------------------------------------------------- /src/generator3/pycharm_generator_utils/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'ktisha' 2 | -------------------------------------------------------------------------------- /src/generator3/pycharm_generator_utils/clr_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/src/generator3/pycharm_generator_utils/clr_tools.py -------------------------------------------------------------------------------- /src/generator3/pycharm_generator_utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/src/generator3/pycharm_generator_utils/constants.py -------------------------------------------------------------------------------- /src/generator3/pycharm_generator_utils/module_redeclarator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/src/generator3/pycharm_generator_utils/module_redeclarator.py -------------------------------------------------------------------------------- /src/generator3/pycharm_generator_utils/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/src/generator3/pycharm_generator_utils/pyparsing.py -------------------------------------------------------------------------------- /src/generator3/pycharm_generator_utils/pyparsing_py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/src/generator3/pycharm_generator_utils/pyparsing_py3.py -------------------------------------------------------------------------------- /src/generator3/pycharm_generator_utils/util_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/src/generator3/pycharm_generator_utils/util_methods.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/src/main.py -------------------------------------------------------------------------------- /src/make_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/src/make_stubs.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/src/utils/docopt.py -------------------------------------------------------------------------------- /src/utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/src/utils/helper.py -------------------------------------------------------------------------------- /src/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMOpenGroup/RevitAPIStubs/HEAD/src/utils/logger.py --------------------------------------------------------------------------------