-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
democritus_networking_docs.json
131 lines (131 loc) · 4.99 KB
/
democritus_networking_docs.json
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
{
"functions": [
{
"name": "requests_basic_auth",
"docstring": "Return an instance of request's basic auth.",
"signature": "(user, password)",
"examples": [],
"changes": [
{
"date": "2021-01-27",
"type": "addition",
"note": "Function added to democritus_networking module."
}
],
"exceptions": []
},
{
"name": "get",
"docstring": "Make a GET request to the given URL.",
"signature": "(\n url,\n *,\n use_common_user_agent: bool = True,\n process_response: bool = False,\n process_response_as_bytes: bool = False,\n **request_kwargs,\n)",
"examples": [],
"changes": [
{
"date": "2021-01-27",
"type": "addition",
"note": "Function added to democritus_networking module."
}
],
"exceptions": []
},
{
"name": "head",
"docstring": "Make a head request.",
"signature": "(url, *, process_response: bool = False, **kwargs)",
"examples": [],
"changes": [
{
"date": "2021-01-27",
"type": "addition",
"note": "Function added to democritus_networking module."
}
],
"exceptions": []
},
{
"name": "post",
"docstring": "Make a POST request to the given URL with the given data.",
"signature": "(\n url,\n *,\n update_headers_for_datatype: bool = True,\n process_response: bool = False,\n process_response_as_bytes: bool = False,\n **request_kwargs,\n)",
"examples": [],
"changes": [
{
"date": "2021-01-27",
"type": "addition",
"note": "Function added to democritus_networking module."
}
],
"exceptions": []
},
{
"name": "headers_update",
"docstring": ".",
"signature": "(headers: Dict[str, str], new_header_key: str, new_header_value: Any, *, overwrite: bool = True)",
"examples": [],
"changes": [
{
"date": "2021-01-27",
"type": "addition",
"note": "Function added to democritus_networking module."
}
],
"exceptions": []
},
{
"name": "put",
"docstring": "Make a PUT request to the given URL with the given data.",
"signature": "(\n url,\n *,\n update_headers_for_datatype: bool = True,\n process_response: bool = False,\n process_response_as_bytes: bool = False,\n **request_kwargs,\n)",
"examples": [],
"changes": [
{
"date": "2021-01-27",
"type": "addition",
"note": "Function added to democritus_networking module."
}
],
"exceptions": []
},
{
"name": "delete",
"docstring": "Make a DELETE request to the given URL with the given data.",
"signature": "(\n url,\n *,\n process_response: bool = False,\n process_response_as_bytes: bool = False,\n **request_kwargs,\n)",
"examples": [],
"changes": [
{
"date": "2021-01-27",
"type": "addition",
"note": "Function added to democritus_networking module."
}
],
"exceptions": []
},
{
"name": "url_hash",
"docstring": "Return the hash of the url.",
"signature": "(url, hash_type='sha256')",
"examples": [],
"changes": [
{
"date": "2021-01-27",
"type": "addition",
"note": "Function added to democritus_networking module."
}
],
"exceptions": []
},
{
"name": "urllib3_backoff_factor_executions",
"docstring": "Return the times (in seconds) of the first n requests with the given backoff_factor. See https://urllib3.readthedocs.io/en/latest/reference/index.html#urllib3.Retry under the \"backoff_factor\" argument.",
"signature": "(backoff_factor: float, number_of_requests: int)",
"examples": [],
"changes": [
{
"date": "2021-01-27",
"type": "addition",
"note": "Function added to democritus_networking module."
}
],
"exceptions": []
}
],
"module": "democritus_networking"
}