-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkrequests.py
67 lines (62 loc) · 2.52 KB
/
krequests.py
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
import usocket, ussl
def encode_url(s):
ch = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~"
r = ""
for c in s:
r += f"%{ord(c):02X}" if c not in ch else c
return r
def parse_url(url):
pe = url.find("://")
pr = url[:pe]
ru = url[pe + 3:]
de = ru.find("/")
dp = ru[:de]
if ":" in dp:
d, p = dp.split(":")
else:
d = dp
p = 443 if pr == "https" else 80
ph = ru[de:]
return (pr, d, int(p), ph)
def post(url, data=b"", headers={}, recvsize=1024):
if isinstance(data, dict):
data = b"&".join([str(k).encode() + b"=" + encode_url(str(data[k])).encode() for k in data])
pr, hn, p, ph = parse_url(url)
sock = usocket.socket()
sock.connect((hn, p))
sock = ussl.wrap_socket(sock, server_hostname=hn) if pr == 'https' else sock
headers1 = [
b"POST " + ph.encode() + b" HTTP/1.1",
b"Host: " + hn.encode() + b":" + str(p).encode(),
b"Content-Type: application/x-www-form-urlencoded",
b"Content-Length: " + str(len(data)).encode(),
b"Connection: Close"
]
sock.write(b"\r\n".join(headers1) + b"\r\n")
for h in headers:
sock.write(h.encode() + b": " + headers[h].encode() + b"\r\n")
sock.write(b"\r\n")
sock.write(data)
header, body = sock.read(recvsize).split(b"\r\n\r\n")
status_code = {"status_code": header.split(b"\r\n")[0].split(b" ")[1].decode()}
dh = dict([x.split(b": ")[0].decode(), x.split(b": ")[1].decode()] for x in header.split(b"\r\n") if not x.startswith(b"HTTP/"))
dh.update(status_code)
sock.close()
return (dh, body)
def get(url, headers={}, recvsize=1024):
pr, hn, p, ph = parse_url(url)
sock = usocket.socket()
sock.connect((hn, p))
sock = ussl.wrap_socket(sock, server_hostname=hn) if pr == "https" else sock
sock.write(b"GET " + ph.encode() + b" HTTP/1.1\r\n")
sock.write(b"Host: " + hn.encode() + b":" + str(p).encode() + b"\r\n")
for h in headers:
sock.write(h.encode() + b": " + headers[h].encode() + b"\r\n")
sock.write(b"Content-Length: 0\r\n")
sock.write(b"Connection: Close\r\n\r\n")
header, body = sock.read(recvsize).split(b"\r\n\r\n")
status_code = {"status_code": header.split(b"\r\n")[0].split(b" ")[1].decode()}
dh = dict([x.split(b": ")[0].decode(), x.split(b": ")[1].decode()] for x in header.split(b"\r\n") if not x.startswith(b"HTTP/"))
dh.update(status_code)
sock.close()
return (dh, body)