Antonio Cheong commited on
Commit
a0aa477
·
1 Parent(s): 9f7a351

Remove old stuff

Browse files
Files changed (2) hide show
  1. docs.md +0 -7
  2. parse_cookies.py +0 -9
docs.md DELETED
@@ -1,7 +0,0 @@
1
- # Sydney Project Documentation
2
-
3
- ## Endpoints
4
-
5
- Chat: `wss://sydney.bing.com/sydney/ChatHub`
6
-
7
- Conversation creation: `https://www.bing.com/turing/conversation/create`
 
 
 
 
 
 
 
 
parse_cookies.py DELETED
@@ -1,9 +0,0 @@
1
- cookies = {}
2
- with open("cookies.txt") as f:
3
- cookies = f.read().split("; ")
4
- # Everything after the first "=" is the value (there may be multiple =)
5
- cookies = {
6
- cookie.split("=")[0]: "=".join(cookie.split("=")[1:]) for cookie in cookies
7
- }
8
-
9
- print(cookies)