Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/examples/simulation.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ To connect to CRIPT, you must enter a `host` and an `API Token`. For most users,
```python
import cript

with cript.API(host="http://development.api.mycriptapp.org/", api_token="123456", storage_token="987654") as api:
with cript.API(host="https://api.criptapp.org/", api_token="123456", storage_token="987654") as api:
pass
```

Expand All @@ -55,7 +55,7 @@ with cript.API(host="http://development.api.mycriptapp.org/", api_token="123456"
Here in a jupyter notebook, we need to connect manually. We just have to remember to disconnect at the end.

```python
api = cript.API(host="http://development.api.mycriptapp.org/", api_token=None, storage_token="123456")
api = cript.API(host="https://api.criptapp.org/", api_token=None, storage_token="123456")
api = api.connect()
```

Expand Down
4 changes: 2 additions & 2 deletions docs/examples/synthesis.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ To connect to CRIPT, you must enter a `host` and an `API Token`. For most users,
```python
import cript

with cript.API(host="http://development.api.mycriptapp.org/", api_token="123456", storage_token="987654") as api:
with cript.API(host="https://api.criptapp.org/", api_token="123456", storage_token="987654") as api:
pass
```

Expand All @@ -55,7 +55,7 @@ with cript.API(host="http://development.api.mycriptapp.org/", api_token="123456"
Here in a jupyter notebook, we need to connect manually. We just have to remember to disconnect at the end.

```python
api = cript.API(host="http://development.api.mycriptapp.org/", api_token=None, storage_token="123456")
api = cript.API(host="https://api.criptapp.org/", api_token=None, storage_token="123456")
api = api.connect()
```

Expand Down