File tree 3 files changed +15
-4
lines changed
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
# gsdata-python-sdk
2
2
3
- ![ MIT] ( https://img.shields.io/npm/l/express.svg ) [ ![ Build Status] ( https://travis-ci.org/superalsrk/gsdata-python-sdk.svg?branch=master&v=9 )] ( https://travis-ci.org/superalsrk/gsdata-python-sdk )
3
+ ![ MIT] ( https://img.shields.io/npm/l/express.svg ) [ ![ Build Status] ( https://travis-ci.org/superalsrk/gsdata-python-sdk.svg?branch=master&v=11 )] ( https://travis-ci.org/superalsrk/gsdata-python-sdk )
4
4
5
5
6
6
### 前言
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
3
- import unittest
3
+ import sys
4
+
5
+ if (sys .version_info < (2 ,7 )):
6
+ import unittest2 as unittest
7
+ else :
8
+ import unittest
9
+
4
10
import json
5
11
from gsdata import Signature
6
12
from gsdata import Gsdata
7
13
8
-
9
14
class TestGsdata (unittest .TestCase ):
10
15
def test_md5 (self ):
11
16
assert Signature .
md5 (
'{"appid":"xto3s5r4utwlloii2aa0","loginname":"[email protected] "}94GSwqAL2PwdPbM9N02KNHuf9' )
== 'f91e20ab7736cd33ed312e1fb0ab8d98'
Original file line number Diff line number Diff line change 2
2
from setuptools import setup
3
3
setup (
4
4
name = 'gsdata' ,
5
- version = '1.0 .0' ,
5
+ version = '1.1 .0' ,
6
6
description = 'gsdata unoffical python sdk' ,
7
7
url = 'https://github.com/superalsrk/gsdata-python-sdk' ,
8
8
author = 'SRK.Lyu' ,
13
13
"Development Status :: 4 - Beta" ,
14
14
"Intended Audience :: Developers" ,
15
15
"Topic :: Internet :: WWW/HTTP" ,
16
+ 'Programming Language :: Python' ,
17
+ 'Programming Language :: Python :: 2.7' ,
18
+ 'Programming Language :: Python :: 3' ,
19
+ 'Programming Language :: Python :: 3.3' ,
20
+ 'Programming Language :: Python :: 3.4' ,
21
+ 'Programming Language :: Python :: 3.5' ,
16
22
],
17
23
keywords = 'gsdata unoffical python sdk' ,
18
24
license = 'MIT' ,
You can’t perform that action at this time.
0 commit comments