Skip to content

Commit

Permalink
README minimal app
Browse files Browse the repository at this point in the history
  • Loading branch information
rkishony committed Dec 22, 2022
1 parent 1e9d4a4 commit 7feb39f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,21 @@ Matplotlib graphics, Matplotlib widgets, and ipywidgets. It further provides an
any user function or functions from any other (non-graphics) packages.
Support for other graphics packages, besides Matplotlib, will be offered in future releases.

## Minimal app
```python
from pyquibbler import initialize_quibbler, iquib
initialize_quibbler()
import matplotlib.pyplot as plt

x = iquib(0.5)
plt.plot([0, 1], [0, 1])
plt.plot(x, x, marker='o')
plt.title(x)
```

<img src="https://github.com/Technion-Kishony-lab/quibbler/blob/master/pyquibbler-documentations/docs/images/minimal_app.gif?raw=true width=250">


## Documentation and Examples
For complete documentation and a getting-started tour, see [readthedocs](https://quibbler.readthedocs.io/en/latest/).

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions pyquibbler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,21 @@ Matplotlib graphics, Matplotlib widgets, and ipywidgets. It further provides an
any user function or functions from any other (non-graphics) packages.
Support for other graphics packages, besides Matplotlib, will be offered in future releases.

## Minimal app
```python
from pyquibbler import initialize_quibbler, iquib
initialize_quibbler()
import matplotlib.pyplot as plt

x = iquib(0.5)
plt.plot([0, 1], [0, 1])
plt.plot(x, x, marker='o')
plt.title(x)
```

<img src="https://github.com/Technion-Kishony-lab/quibbler/blob/master/pyquibbler-documentations/docs/images/minimal_app.gif?raw=true width=250">


## Documentation and Examples
For complete documentation and a getting-started tour, see [readthedocs](https://quibbler.readthedocs.io/en/latest/).

Expand Down

0 comments on commit 7feb39f

Please # to comment.