forked from Solcast/solcast-api-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
50 lines (48 loc) · 1.28 KB
/
mkdocs.yml
File metadata and controls
50 lines (48 loc) · 1.28 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
site_name: Solcast API Python SDK
site_url: https://solcast.github.io/solcast-api-python-sdk/
site_dir: public
theme:
name: material
logo: 'img/logo.png'
palette:
primary: black
accent: yellow
nav:
- Home: index.md
- Forecast: forecast.md
- Live: live.md
- Historic: historic.md
- TMY: tmy.md
- Notebooks:
- notebooks/Historical Solar Radiation.ipynb
- notebooks/Make Concurrent Requests for Historic Timeseries.ipynb
- notebooks/Make Concurrent Requests to Live.ipynb
- notebooks/Query TMY in your local timezone.ipynb
- notebooks/Comparing Solcast API data with Surfrad measurements.ipynb
- notebooks/PVLib ModelChain with Solcast weather data.ipynb
- API reference:
- api/client.md
- api/response.md
markdown_extensions:
- tables
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
- admonition
- pymdownx.details
- pymdownx.superfences
- attr_list
plugins:
- mkdocs-jupyter
- mkdocstrings:
enabled: !ENV [ ENABLE_MKDOCSTRINGS, true ]
custom_templates: templates
default_handler: python
handlers:
python:
options:
show_source: false