File ManagerAccount SettingsAccessing The SoftwareSupportUpgradingTeam ManagementFull Demos
Certification
Status (API)Analysis Report (API)Reactions (API)Member Displacements (API)Member Forces (API)Member Stresses (API)Member Lengths (API)Member Stations (API)Member Discontinuities (API)Member Minimums (API)Member Maximums (API)Member Peak Results (API)Plate Displacements (API)Plate Forces (API)Plate Stresses (API)Plate Minimums (API)Plate Maximums (API)Plate Peak Results (API)Buckling (API)
Calling the API in Python where structure_data is the JSON Input object.
import json import httplib headers = { 'Content-Type' : 'application/json' }; conn = httplib.HTTPConnection('solver.skyciv.com', 80); # don't add http or https to this URL structure_data = json.dumps(structure_data, separators=(',', ':')); # convert to JSON String conn.request('POST', '/structural/v2.php', structure_data, headers); response = conn.getresponse(); response_data = response.read(); conn.close(); print(response_data);