File: mkdocs.yaml

package info (click to toggle)
python-respx 0.22.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 868 kB
  • sloc: python: 4,379; makefile: 17
file content (48 lines) | stat: -rw-r--r-- 1,170 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
site_name: RESPX
site_description: A utility for mocking out the Python HTTPX library.
site_url: https://lundberg.github.io/respx/

theme:
  name: "material"
  icon:
    logo: "material/school"
  palette:
    - scheme: default
      media: "(prefers-color-scheme: light)"
      primary: "deep purple"
      accent: "deep purple"
      toggle:
        icon: material/weather-night
        name: Switch to dark mode
    - scheme: slate
      media: "(prefers-color-scheme: dark)"
      primary: "deep purple"
      accent: "deep purple"
      toggle:
        icon: material/weather-sunny
        name: Switch to light mode

extra_css:
  - stylesheets/slate.css

repo_name: lundberg/respx
repo_url: https://github.com/lundberg/respx
edit_uri: ""

nav:
  - Introduction: "index.md"
  - User Guide: "guide.md"
  - API Reference: "api.md"
  - Test Case Examples: "examples.md"
  - Migrate from requests: "migrate.md"
  - Upgrading: "upgrade.md"
  - Older Versions:
    - 0.14.0:
      - Mock HTTPX: "versions/0.14.0/mocking.md"
      - Developer Interface: "versions/0.14.0/api.md"

markdown_extensions:
  - admonition
  - codehilite:
      css_class: highlight
  - mkautodoc