xref: /libCEED/examples/python/README.md (revision ebfb1ab346d5a1addc1221edc1d1c7f1a6380df6)
1## libCEED Python Examples
2
3These examples are written using libCEED's Python interface.
4
5### Tutorials
6
7These Jupyter notebooks explore the concepts of the libCEED API, including how to install the Python interface and the usage of each API object, with interactive examples.
8
9### Basic Examples
10
11The basic libCEED C examples in the folder `/examples/ceed` are also available as Python examples.
12
13To build the QFunctions into a shared library that the Python examples use, run
14
15```bash
16make setup
17```
18
19To execute the examples, run:
20
21```
22python ex1_volume.py
23```
24
25A full list of command-line arguments are shown by adding the command-line argument "--help".
26