forked from NiclasHaderer/AsyncSpotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
82 lines (73 loc) · 2.23 KB
/
mkdocs.yml
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
site_name: "Async Spotify"
site_description: "Async wrapper in python for the spotify api"
site_url: "https://niclashaderer.github.io/AsyncSpotify/"
repo_url: "https://github.com/niclashaderer/AsyncSpotify"
repo_name: "niclashaderer/AsyncSpotify"
nav:
- Overview: "index.md"
- Examples: "EXAMPLES.md"
- Public API:
- Spotify Api Client: "public_api/spotify_api_client.md"
- Authentification: "public_api/authentification.md"
- Token Renew Hook: "public_api/token_renew_class.md"
- Spotify Errors: "public_api/spotify_errors.md"
- Endpoints:
- "public_api/endpoints/overview.md"
- "public_api/endpoints/albums.md"
- "public_api/endpoints/artists.md"
- "public_api/endpoints/browse.md"
- "public_api/endpoints/episodes.md"
- "public_api/endpoints/follow.md"
- "public_api/endpoints/library.md"
- "public_api/endpoints/personalization.md"
- "public_api/endpoints/player.md"
- "public_api/endpoints/playlists.md"
- "public_api/endpoints/search.md"
- "public_api/endpoints/shows.md"
- "public_api/endpoints/tracks.md"
- "public_api/endpoints/user.md"
- Reference:
- Error Message: "reference/error_message.md"
- Request Handler: "reference/request_handler.md"
- Status Classes: "reference/status_classes.md"
- URLS: "reference/url.md"
- Tests: "STUFF.md"
- Licence: "LICENCE.md"
theme:
name: "material"
language: en
features:
- instant
palette:
scheme: preference
primary: green
accent: green
icon:
logo: material/spotify
repo: material/git
favicon: https://upload.wikimedia.org/wikipedia/commons/9/9b/Font_Awesome_5_brands_spotify.svg
extra_css:
- custom.css
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- pymdownx.superfences
- pymdownx.emoji
- toc:
permalink: true
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/niclashaderer
plugins:
- search
- git-revision-date-localized
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
watch:
- src/async_spotify