Learn to manage BIM workflows and create professional Archicad templates with the BIM Manager Program.
2020-08-21
01:39 PM
- last edited on
2023-05-11
11:03 AM
by
Noemi Balogh
2020-08-21 02:31 PM
2021-01-19 09:17 AM
2021-01-19 02:40 PM
__author__ = "leceta" __version__ = "2020.03.27" import json import urllib2 if run: req = urllib2.Request('http://localhost:19723') response = urllib2.urlopen(req,json.dumps({"command":"API.GetAllElements"}).encode("UTF-8")) result = json.loads(response.read()) id = [] for element in result['result']['elements']: id.append(element['elementId']['guid']) result = [response]
2021-01-19 04:08 PM
2021-02-13 10:39 AM