-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
115 lines (110 loc) · 3.29 KB
/
mkdocs.yml
File metadata and controls
115 lines (110 loc) · 3.29 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
site_name: bpkio-python-sdk
site_description: Documentation for the broadpeak.io Python SDK
repo_url: https://github.com/broadpeak-io/bpkio-python-sdk-docs
repo_name: broadpeak-io/bpkio-python-sdk-docs
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.indexes
- search.highlight
- content.code.copy
- content.code.annotate
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: amber
accent: orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: amber
accent: orange
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_css:
- stylesheets/extra.css
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [bpkio_api]
options:
docstring_style: google
docstring_section_style: table
show_root_heading: true
show_source: false
show_bases: true
show_signature: false
signature_crossrefs: true
separate_signature: true
show_signature_annotations: true
unwrap_annotated: true
merge_init_into_class: true
members_order: source
filters: ["!^_"]
heading_level: 3
show_if_no_docstring: true
show_category_heading: true
docstring_options:
ignore_init_summary: true
line_length: 80
show_submodules: true
show_labels: true
show_symbol_type_heading: true
show_symbol_type_toc: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- attr_list
- md_in_html
- pymdownx.magiclink
- toc:
permalink: true
nav:
- Home: index.md
- Getting Started:
- Installation: guides/installation.md
- Quick Start: guides/quickstart.md
- API Mapping: guides/api_mapping.md
- Authentication: guides/authentication.md
- API Reference:
- Overview: api/index.md
- Client: api/client.md
- Endpoints:
- Overview: api/endpoints/index.md
- Sources: api/endpoints/sources.md
- Services: api/endpoints/services.md
- Transcoding Profiles: api/endpoints/transcoding_profiles.md
- Users: api/endpoints/users.md
- Tenants: api/endpoints/tenants.md
- Categories: api/endpoints/categories.md
- Consumption: api/endpoints/consumption.md
- Models:
- Overview: api/models/index.md
- Sources: api/models/sources.md
- Services: api/models/services.md
- Transcoding Profiles: api/models/transcoding_profiles.md
- Users: api/models/users.md
- Tenants: api/models/tenants.md
- Categories: api/models/categories.md
- Consumption: api/models/consumption.md
- Common: api/models/common.md
- Utilities:
- Overview: api/utils/index.md
- Credential Provider: api/utils/credential_provider.md
- Caching: api/utils/caching.md
- Exceptions: api/utils/exceptions.md