mirror of
https://github.com/placeholder-soft/prodigyapi.git
synced 2026-01-12 22:44:57 +08:00
Fix Python examples
This commit is contained in:
@@ -35,9 +35,9 @@ api = Kittn::APIClient.authorize!('meowmeowmeow')
|
||||
```
|
||||
|
||||
```python
|
||||
import 'kittn'
|
||||
import kittn
|
||||
|
||||
api = Kittn.authorize('meowmeowmeow')
|
||||
api = kittn.authorize('meowmeowmeow')
|
||||
```
|
||||
|
||||
```shell
|
||||
@@ -70,9 +70,9 @@ api.kittens.get
|
||||
```
|
||||
|
||||
```python
|
||||
import 'kittn'
|
||||
import kittn
|
||||
|
||||
api = Kittn.authorize('meowmeowmeow')
|
||||
api = kittn.authorize('meowmeowmeow')
|
||||
api.kittens.get()
|
||||
```
|
||||
|
||||
@@ -129,9 +129,9 @@ api.kittens.get(2)
|
||||
```
|
||||
|
||||
```python
|
||||
import 'kittn'
|
||||
import kittn
|
||||
|
||||
api = Kittn.authorize('meowmeowmeow')
|
||||
api = kittn.authorize('meowmeowmeow')
|
||||
api.kittens.get(2)
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user