summaryrefslogtreecommitdiff
path: root/docs/examples.md
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2022-05-15 10:47:37 -0500
committerJordan Cook <jordan.cook@pioneer.com>2022-05-15 10:58:10 -0500
commit2ad81ab8f54271ec33ad4ed05db76541f984d608 (patch)
tree5d626e747b54b44e8089b067fd2f7e949bd6c831 /docs/examples.md
parentfade187eb4c6cd1d16ce375b21f38ddf1aceecdf (diff)
downloadrequests-cache-2ad81ab8f54271ec33ad4ed05db76541f984d608.tar.gz
Update repo links, changelog, and contributors
Diffstat (limited to 'docs/examples.md')
-rw-r--r--docs/examples.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/examples.md b/docs/examples.md
index 367581a..37e4dfc 100644
--- a/docs/examples.md
+++ b/docs/examples.md
@@ -20,7 +20,7 @@ TODO: It might be nice to have a custom extension to do this automatically.
-->
## Scripts
The following scripts can also be found in the
-[examples/](https://github.com/reclosedev/requests-cache/tree/master/examples) folder on GitHub.
+[examples/](https://github.com/requests-cache/requests-cache/tree/main/examples) folder on GitHub.
### Basic usage (with sessions)
```{include} ../examples/basic_sessions.py
@@ -28,7 +28,7 @@ The following scripts can also be found in the
:end-line: 4
```
-:::{admonition} Example: [basic_sessions.py](https://github.com/reclosedev/requests-cache/blob/master/examples/basic_sessions.py)
+:::{admonition} Example: [basic_sessions.py](https://github.com/requests-cache/requests-cache/blob/main/examples/basic_sessions.py)
:class: toggle
```{literalinclude} ../examples/basic_sessions.py
:lines: 6-
@@ -41,7 +41,7 @@ The following scripts can also be found in the
:end-line: 4
```
-:::{admonition} Example: [basic_patching.py](https://github.com/reclosedev/requests-cache/blob/master/examples/basic_patching.py)
+:::{admonition} Example: [basic_patching.py](https://github.com/requests-cache/requests-cache/blob/main/examples/basic_patching.py)
:class: toggle
```{literalinclude} ../examples/basic_patching.py
:lines: 6-
@@ -54,7 +54,7 @@ The following scripts can also be found in the
:end-line: 3
```
-:::{admonition} Example: [expiration.py](https://github.com/reclosedev/requests-cache/blob/master/examples/expiration.py)
+:::{admonition} Example: [expiration.py](https://github.com/requests-cache/requests-cache/blob/main/examples/expiration.py)
:class: toggle
```{literalinclude} ../examples/expiration.py
:lines: 5-
@@ -67,7 +67,7 @@ The following scripts can also be found in the
:end-line: 4
```
-:::{admonition} Example: [url_patterns.py](https://github.com/reclosedev/requests-cache/blob/master/examples/url_patterns.py)
+:::{admonition} Example: [url_patterns.py](https://github.com/requests-cache/requests-cache/blob/main/examples/url_patterns.py)
:class: toggle
```{literalinclude} ../examples/url_patterns.py
:lines: 6-
@@ -80,7 +80,7 @@ The following scripts can also be found in the
:end-line: 4
```
-:::{admonition} Example: [threads.py](https://github.com/reclosedev/requests-cache/blob/master/examples/threads.py)
+:::{admonition} Example: [threads.py](https://github.com/requests-cache/requests-cache/blob/main/examples/threads.py)
:class: toggle
```{literalinclude} ../examples/threads.py
:lines: 6-
@@ -93,7 +93,7 @@ The following scripts can also be found in the
:end-line: 3
```
-:::{admonition} Example: [log_requests.py](https://github.com/reclosedev/requests-cache/blob/master/examples/log_requests.py)
+:::{admonition} Example: [log_requests.py](https://github.com/requests-cache/requests-cache/blob/main/examples/log_requests.py)
:class: toggle
```{literalinclude} ../examples/log_requests.py
:lines: 5-
@@ -106,7 +106,7 @@ The following scripts can also be found in the
:end-line: 8
```
-:::{admonition} Example: [external_config.py](https://github.com/reclosedev/requests-cache/blob/master/examples/external_config.py)
+:::{admonition} Example: [external_config.py](https://github.com/requests-cache/requests-cache/blob/main/examples/external_config.py)
:class: toggle
```{literalinclude} ../examples/external_config.py
:lines: 10-
@@ -119,7 +119,7 @@ The following scripts can also be found in the
:end-line: 8
```
-:::{admonition} Example: [benchmark.py](https://github.com/reclosedev/requests-cache/blob/master/examples/benchmark.py)
+:::{admonition} Example: [benchmark.py](https://github.com/requests-cache/requests-cache/blob/main/examples/benchmark.py)
:class: toggle
```{literalinclude} ../examples/benchmark.py
:lines: 10-
@@ -132,7 +132,7 @@ The following scripts can also be found in the
:end-line: 4
```
-:::{admonition} Example: [convert_cache.py](https://github.com/reclosedev/requests-cache/blob/master/examples/convert_cache.py)
+:::{admonition} Example: [convert_cache.py](https://github.com/requests-cache/requests-cache/blob/main/examples/convert_cache.py)
:class: toggle
```{literalinclude} ../examples/convert_cache.py
:lines: 6-
@@ -146,7 +146,7 @@ The following scripts can also be found in the
:end-line: 15
```
-:::{admonition} Example: [custom_request_matcher.py](https://github.com/reclosedev/requests-cache/blob/master/examples/custom_request_matcher.py)
+:::{admonition} Example: [custom_request_matcher.py](https://github.com/requests-cache/requests-cache/blob/main/examples/custom_request_matcher.py)
:class: toggle
```{literalinclude} ../examples/custom_request_matcher.py
:lines: 17-
@@ -160,7 +160,7 @@ The following scripts can also be found in the
:end-line: 4
```
-:::{admonition} Example: [time_machine_backtesting.py](https://github.com/reclosedev/requests-cache/blob/master/examples/time_machine_backtesting.py)
+:::{admonition} Example: [time_machine_backtesting.py](https://github.com/requests-cache/requests-cache/blob/main/examples/time_machine_backtesting.py)
:class: toggle
```{literalinclude} ../examples/time_machine_backtesting.py
:lines: 6-
@@ -174,7 +174,7 @@ The following scripts can also be found in the
:end-line: 5
```
-:::{admonition} Example: [vcr.py](https://github.com/reclosedev/requests-cache/blob/master/examples/vcr.py)
+:::{admonition} Example: [vcr.py](https://github.com/requests-cache/requests-cache/blob/main/examples/vcr.py)
:class: toggle
```{literalinclude} ../examples/vcr.py
:lines: 7-