We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a406f96 commit 2750fa0Copy full SHA for 2750fa0
qiniu/__init__.py
@@ -7,4 +7,4 @@
7
'''
8
9
# -*- coding: utf-8 -*-
10
-__version__ = '6.1.4'
+__version__ = '6.1.6'
qiniu/conf.py
@@ -8,4 +8,9 @@
UP_HOST = "up.qiniu.com"
from . import __version__
11
-USER_AGENT = "qiniu python-sdk v%s" % __version__
+import platform
12
+
13
+sys_info = "%s/%s" % (platform.system(), platform.machine())
14
+py_ver = platform.python_version()
15
16
+USER_AGENT = "QiniuPython/%s (%s) Python/%s" % (__version__, sys_info, py_ver)
0 commit comments