Message 1 of 2
Python Documentation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello everyone,
I've just started coding with Revit API using Python. I'm a little lost since it seems that there is no official Python documentation, furthermore, the Python interface is not consistent with the C#, VB and c++ interface from the docs. For instance, from the documentation, the following method is for getting a parameter (C#):
public Parameter GetParameter(
ForgeTypeId parameterTypeId
)
But in my Python code, GetParameter throws a TypeError (No method matches given arguments) while get_Parameter is working fine.
I can inspect the Python interface using dir, inspect or pydoc, but it is very slow procedure and it lacks of descriptions or signatures.
Is there a Python documentation with a roadmap of the API and deprecated interface?