This is obviously a fork of RevitPythonShell, bringing an IronPython interpreter to Autodesk Autocad, and it would not be possible without the great work of everyone involved with the RPS project. It's still pretty rough around the edges and provides only basic functionality at this time. I'm sharing my work so far, in the hopes that together we can expand it further.
The CADPythonShell (CPS) ,lets you to write plugins for Autocad in Python, provides you with an interactive shell that lets you see the results of your code as you type it. This is great for exploring the Autocad API.
The biggest limitation is that you can't deploy DLLs with custom scripts at this time and you can't subscribe to events at startup time.
- Interactive IronPython interpreter for exploring the API
- With syntax highlighting and autocompletion (in the console only)
- Based on the IronLab project
- Batteries included! (Python standard library is bundled as a resource in the
CADRuntime.dll
) - Full access to the .NET framework and the Autocad and Civil3D API
- Configurable "environment" variables that can be used in your scripts
- Save "external scripts" for reuse and start collecting your awesome hacks!
- Run scripts at Autocad or Civil startup
- Full Snoop info object Autocad or Civil3D (Database,Editor,Entity,etc,..)
- Interactive Snoop from console with IronPython
- Download last install stable(msi) from Release
- Use command
PythonConsole
to open Console or use commandPythonShellSetting
to open form setting - See guide install detail at How-to-Install-CadPythonShell
Note : Support for 5 last version(2019-2023) Autocad or Civil 3D. Older versions can be used but will not guarantee the expected performance.
- PythonConsole - Open Python Console
- PythonShellSetting - Open Setting Config Console
- Snoop - Quick Snoop Object Sample In CAD or Civil3D
- SnoopDB - Snoop Database In CAD or Civil3D
- SnoopEd - Snoop Editor In CAD or Civil3D
- SnoopEnts - Snoop Entities In CAD or Civil3D
-
SnoopNEnts - Snoop Entities Nested In CAD or Civil3D
-
SnoopByHandle - Snoop By Handle In CAD or Civil3D
- SnoopEvents - Snoop Follow Events In CAD or Civil3D
- sn.Snoop(obj) - Snoop Object by Python Console In CAD or Civil3D
- snoop(obj) - Snoop Object by Python Console or Execute python code In CAD or Civil3D
ed = doc.Editor
ed.WriteMessage("Hello")
- Try create script get Object
import clr
clr.AddReference('acmgd')
clr.AddReference('acdbmgd')
clr.AddReference('accoremgd')
# Import references from AutoCAD
from Autodesk.AutoCAD.Runtime import *
from Autodesk.AutoCAD.ApplicationServices import *
from Autodesk.AutoCAD.EditorInput import *
from Autodesk.AutoCAD.DatabaseServices import *
from Autodesk.AutoCAD.Geometry import *
doc = Application.DocumentManager.MdiActiveDocument
ed = doc.Editor
db = doc.Database
# Write Code Below
Application.ShowAlertDialog("Hello World!")
Note : you can see more example in folder Script Examples
- Don't hesitate to file any issues you stumble uppon. (Tho I don't guarantee I'll be able to solve them all for you)
Learn some python:
Learn about the Autocad API:
This project is licensed under the terms of the MIT License.
Thanks for providing a free All product IDE for this project.
- Daren Thomas (original RPS Developer) RPS
- Joe Moorhouse (interactive shell was taken from his project IronLab)
- Dimitar Venkov (original port to Navisworks)
- ChuongMep (original port to Autocad)
- The rest of the RPS contributors
- Nice 3 Point for process CI/CD
- Icon 8 Free Wiki icons in various UI design styles for web, mobile
- htlcnn origin of project AutocadLookup
- Autodesk Developer Network project
MgdDbg
support full snoop database in Autocad.