Skip to content
Snippets Groups Projects
Commit f0d3b8c1 authored by Moul's avatar Moul
Browse files

[doc] #160: Document examples usage from Python interpreter

parent 8f1e411a
No related branches found
No related tags found
No related merge requests found
Pipeline #12126 failed
......@@ -80,12 +80,21 @@ Black, the formatting tool, requires Python 3.6 or higher.
poetry install --no-dev
```
* Have a look at the examples folder
* Run examples from parent folder
### Examples
* Have a look at the `examples` folder
* Run examples from parent folder directly
```bash
poetry run python examples/request_data.py
```
Or from Python interpreter:
```bash
poetry run python
>>> import examples
>>> help(examples)
>>> examples.create_public_key()
```
* Before submitting a merge requests, please check the static typing and tests.
* Install dev dependencies
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment