Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyqq/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import time
from rest import Get,Post
from algorithm import pwd_encode,get_clientid,get_msgid
from Cookie import SmartCookie as Cookie
from Cookie import SimpleCookie as Cookie
from utils import getcookiestr
import urllib
import json
Expand Down Expand Up @@ -333,4 +333,4 @@ def testQQ(self):
if __name__ == '__main__':
unittest.main()



4 changes: 2 additions & 2 deletions pyqq/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest
import unittest
from Cookie import SmartCookie as Cookie
from Cookie import SimpleCookie as Cookie

def getcookiestr(cookie):
items = []
Expand All @@ -18,4 +18,4 @@ def test_cookie(self):
print getcookiestr(cookie)
if __name__ == '__main__':
unittest.main()