-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
142 lines (130 loc) · 4.02 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
site_name: learn-pip-trends
site_url: https://learn.piptrends.com/
site_description: Python learning forum
theme:
name: material
custom_dir: overrides
logo: assets/logo.png
favicon: assets/favicon/favicon.ico
palette:
scheme: pipTrends
font:
text: Noto Sans
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.preview
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.prune
- navigation.indexes
- navigation.footer
- toc.follow
- navigation.top
- search.suggest
- search.highlight
- search.share
- header.autohide
- content.code.copy
- content.code.select
nav:
- Getting Started:
- getting-started/index.md
- Package Comparison:
- django vs FastAPI vs Flask: getting-started/package-comparison/django-fastapi-flask.md
- Python Basics:
- Installing Python on Windows: getting-started/python-basics/install-python.md
- Installing Packages Using pip: getting-started/python-basics/install-packages.md
- Package Articles:
- asyncio — Asynchronous I/O: getting-started/package-articles/asyncio.md
- BeautifulSoup4: getting-started/package-articles/beautifulsoup4.md
- Discord.py: getting-started/package-articles/discord.md
- Highcharts-core: getting-started/package-articles/highcharts-core.md
- matplotlib: getting-started/package-articles/matplotlib.md
- PyMySQL: getting-started/package-articles/pymysql.md
- Python-docx: getting-started/package-articles/python-docx.md
- requests: getting-started/package-articles/requests.md
- Courses:
- courses/index.md
- Newsletter:
- https://newsletter.piptrends.com/
- pip Trends Home:
- https://piptrends.com/
- Cheatsheets:
- cheatsheets/index.md
- Python Basics: cheatsheets/python-basics.md
- Calendar:
- calendar/index.md
plugins:
- search
- tags:
tags_file: tags.md
- link-preview
# - blog:
# blog_dir: blog
# blog_toc: true
# pagination_per_page: 5
extra_css:
- stylesheets/extra.css
- stylesheets/link-preview.css
copyright: Copyright © learn-pip-trends 2024
extra:
custom_data:
- key: value
tags:
<tag>: <identifier>
generator: false
social:
- icon: fontawesome/solid/envelope
link: mailto:[email protected]
- icon: fontawesome/brands/facebook
link: https://www.facebook.com/piptrends
- icon: fontawesome/brands/x-twitter
link: https://twitter.com/piptrends
- icon: fontawesome/brands/youtube
link: https://www.instagram.com/piptrends
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/pip-trends
- icon: fontawesome/brands/github
link: https://github.com/tankala
- icon: fontawesome/brands/discord
link: https://www.discord.gg/invite/RdYEmSWP5t
analytics:
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="..." target="_blank" rel="noopener">feedback form</a>.
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
actions:
- accept
markdown_extensions:
- attr_list
- meta
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- admonition
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details