forked from yusufkaraaslan/Skill_Seekers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttpx_comprehensive.json
More file actions
114 lines (114 loc) · 2.38 KB
/
httpx_comprehensive.json
File metadata and controls
114 lines (114 loc) · 2.38 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
{
"name": "httpx",
"description": "Use this skill when working with HTTPX, a fully featured HTTP client for Python 3 with sync and async APIs. HTTPX provides a familiar requests-like interface with support for HTTP/2, connection pooling, and comprehensive middleware capabilities.",
"version": "1.0.0",
"base_url": "https://www.python-httpx.org/",
"sources": [
{
"type": "documentation",
"base_url": "https://www.python-httpx.org/",
"selectors": {
"main_content": "article.md-content__inner",
"title": "h1",
"code_blocks": "pre code"
}
},
{
"type": "github",
"repo": "encode/httpx",
"code_analysis_depth": "deep",
"enable_codebase_analysis": true,
"fetch_issues": true,
"fetch_changelog": true,
"fetch_releases": true,
"max_issues": 50
}
],
"selectors": {
"main_content": "article.md-content__inner",
"title": "h1",
"code_blocks": "pre code",
"navigation": "nav.md-tabs",
"sidebar": "nav.md-nav--primary"
},
"url_patterns": {
"include": [
"/quickstart/",
"/advanced/",
"/api/",
"/async/",
"/http2/",
"/compatibility/"
],
"exclude": [
"/changelog/",
"/contributing/",
"/exceptions/"
]
},
"categories": {
"getting_started": [
"quickstart",
"install",
"introduction",
"overview"
],
"core_concepts": [
"client",
"request",
"response",
"timeout",
"pool"
],
"async": [
"async",
"asyncio",
"trio",
"concurrent"
],
"http2": [
"http2",
"http/2",
"multiplexing"
],
"advanced": [
"authentication",
"middleware",
"transport",
"proxy",
"ssl",
"streaming"
],
"api_reference": [
"api",
"reference",
"client",
"request",
"response"
],
"compatibility": [
"requests",
"migration",
"compatibility"
]
},
"rate_limit": 0.5,
"max_pages": 100,
"metadata": {
"author": "Encode",
"language": "Python",
"framework_type": "HTTP Client",
"use_cases": [
"Making HTTP requests",
"REST API clients",
"Async HTTP operations",
"HTTP/2 support",
"Connection pooling"
],
"related_skills": [
"requests",
"aiohttp",
"urllib3"
]
}
}