Update README.md
Browse files
README.md
CHANGED
|
@@ -85,9 +85,8 @@ print(doc)
|
|
| 85 |
|
| 86 |
## Examples
|
| 87 |
|
| 88 |
-
###
|
| 89 |
|
| 90 |
-
#### Exmaple 1
|
| 91 |
```python
|
| 92 |
raw_docs = """
|
| 93 |
Method access
|
|
@@ -232,7 +231,7 @@ doc = (
|
|
| 232 |
)
|
| 233 |
print(doc)
|
| 234 |
```
|
| 235 |
-
|
| 236 |
|
| 237 |
```python
|
| 238 |
raw_docs = """
|
|
@@ -316,7 +315,7 @@ doc = (
|
|
| 316 |
)
|
| 317 |
print(doc)
|
| 318 |
```
|
| 319 |
-
|
| 320 |
|
| 321 |
```python
|
| 322 |
docs = """
|
|
|
|
| 85 |
|
| 86 |
## Examples
|
| 87 |
|
| 88 |
+
### Markdown documentation format for raw api docs
|
| 89 |
|
|
|
|
| 90 |
```python
|
| 91 |
raw_docs = """
|
| 92 |
Method access
|
|
|
|
| 231 |
)
|
| 232 |
print(doc)
|
| 233 |
```
|
| 234 |
+
### OPENAPI documentation format for raw api docs
|
| 235 |
|
| 236 |
```python
|
| 237 |
raw_docs = """
|
|
|
|
| 315 |
)
|
| 316 |
print(doc)
|
| 317 |
```
|
| 318 |
+
### Python code to call an API based on the documentation and the question.
|
| 319 |
|
| 320 |
```python
|
| 321 |
docs = """
|