Message 1 of 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I want to create a table via python
I have the correct library in python to construct a table:
from Autodesk.AutoCAD.DatabaseServices import *
But these commands both fail:
tbl = Autodesk.AutoCAD.DatabaseServices.Table()
tbl02 = Table()Python Claims that it does not know what Autodesk is, and running the constructor alone it says there is no public constructor. All examples online say otherwise, I have tried running this Dynamo Python node via IronPython2/3 & Cpython3 to no avail. Any tips as what is wrong with my workspace? Thank you!
Solved! Go to Solution.