Metadata-Version: 2.4
Name: luminarycloud
Version: 0.21.1
Summary: Luminary Cloud SDK
Project-URL: Homepage, https://www.luminarycloud.com/
Project-URL: Documentation, https://app.luminarycloud.com/docs/api/
Author-email: "Luminary Cloud Inc." <support@luminarycloud.com>
Keywords: Luminary Cloud,SDK
Requires-Python: >=3.10
Requires-Dist: google-crc32c~=1.7
Requires-Dist: googleapis-common-protos~=1.70
Requires-Dist: grpcio-status~=1.65
Requires-Dist: grpcio-tools~=1.65
Requires-Dist: grpcio~=1.65
Requires-Dist: importlib-metadata~=8.7
Requires-Dist: opentelemetry-api~=1.25
Requires-Dist: opentelemetry-exporter-otlp-proto-common~=1.25
Requires-Dist: opentelemetry-exporter-otlp-proto-http~=1.25
Requires-Dist: opentelemetry-instrumentation-grpc~=0.55b1
Requires-Dist: opentelemetry-instrumentation~=0.55b1
Requires-Dist: opentelemetry-proto~=1.25
Requires-Dist: opentelemetry-sdk~=1.25
Requires-Dist: opentelemetry-semantic-conventions~=0.55b1
Requires-Dist: protobuf~=5.29
Requires-Dist: pyjwt~=2.10
Requires-Dist: python-dotenv~=1.1
Requires-Dist: pyyaml~=6.0
Requires-Dist: requests~=2.32
Requires-Dist: waitress~=3.0
Requires-Dist: werkzeug~=3.1
Requires-Dist: zstandard~=0.23
Provides-Extra: jupyter
Requires-Dist: luminarycloud-jupyter; extra == 'jupyter'
Description-Content-Type: text/markdown

Luminary Cloud's Python Software Development Kit (SDK) allows you to access many of the features within our platform programmatically (i.e. without needing to go through the graphical user interface in your browser).

Our Python SDK provides a secure abstraction layer, a set of simulation-specific data structures, and all the necessary functionality to enable automation via simple Python scripts.

It allows you to create your own applications leveraging Luminary (such as importing geometry and creating meshes, running and post-processing simulations, running explorations and creating surrogate models) and connect Luminary simulations to pre- and post-processing tools that are already part of your own workflows.

The sample code below shows how the SDK can be used to upload a mesh and run a
simulation (note that the Python SDK is designated as Early Access and syntax
and functionality may change significantly).

```py
import luminarycloud as lc
project = lc.create_project("NACA 0012", "My first SDK project.")
mesh = project.upload_mesh("./airfoil.lcmesh")
sim_template = project.create_simulation_template("test template", params_json_path="./simulation_template.json")
sim = project.create_simulation(mesh.id, "My simulation", sim_template.id)
```
