9 changed files with
7 additions and
9 deletions
|
|
|
|
@ -1,7 +1,6 @@
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
|
# GPL 2011
|
|
|
|
|
from __future__ import with_statement
|
|
|
|
|
|
|
|
|
|
from six.moves import http_cookiejar as cookielib
|
|
|
|
|
import gzip
|
|
|
|
|
|
|
|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
|
# GPL 2011
|
|
|
|
|
from __future__ import with_statement, print_function
|
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
|
|
import gzip
|
|
|
|
|
import hashlib
|
|
|
|
|
|
|
|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
|
# GPL 2008
|
|
|
|
|
from __future__ import division, with_statement, print_function
|
|
|
|
|
from __future__ import division, print_function
|
|
|
|
|
import os
|
|
|
|
|
import hashlib
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
|
# GPL 2014
|
|
|
|
|
from __future__ import with_statement, print_function
|
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
|
|
import itertools
|
|
|
|
|
import mimetypes
|
|
|
|
|
|
|
|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
|
# GPL 2008
|
|
|
|
|
from __future__ import with_statement, print_function
|
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
|
|
import math
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
#!/usr/bin/python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
|
from __future__ import with_statement, print_function
|
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
|
# GPL 2008
|
|
|
|
|
from __future__ import with_statement, print_function
|
|
|
|
|
from __future__ import print_function
|
|
|
|
|
import gzip
|
|
|
|
|
import json
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
|
from __future__ import with_statement, division, print_function
|
|
|
|
|
from __future__ import division, print_function
|
|
|
|
|
import codecs
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -31,4 +31,3 @@ def update(key, value):
|
|
|
|
|
f = open(user_auth, "w")
|
|
|
|
|
f.write(json.dumps(auth, indent=2))
|
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
|
|
|