Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jpush-api-python-client
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
jpush-api-python-client
Commits
973d49ab
Commit
973d49ab
authored
May 17, 2016
by
fendouai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add logging level to readme
parent
66744377
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
5 deletions
+11
-5
README.md
README.md
+9
-3
__init__.py
jpush/__init__.py
+1
-1
setup.py
setup.py
+1
-1
No files found.
README.md
View file @
973d49ab
...
@@ -9,11 +9,11 @@
...
@@ -9,11 +9,11 @@
## 环境配置
## 环境配置
pip方式:
pip
方式:
```
```
sudo pip install jpush
sudo pip install jpush
```
```
easy_install方式:
easy_install
方式:
```
```
sudo easy_install jpush
sudo easy_install jpush
```
```
...
@@ -25,7 +25,7 @@ sudo python setup.py install
...
@@ -25,7 +25,7 @@ sudo python setup.py install
## 代码样例
## 代码样例
> 代码样例在 jpush-api-python-client 中的 examples 文件夹中,
链接:[https://github.com/jpush/jpush-api-python-client/tree/master/examples
](https://github.com/jpush/jpush-api-python-client/tree/master/examples) 。
> 代码样例在 jpush-api-python-client 中的 examples 文件夹中,
[点击查看所有 examples
](https://github.com/jpush/jpush-api-python-client/tree/master/examples) 。
> 以下片断来自项目代码里的文件:jpush-api-python-client 中的 examples/push_examples 目录下的 example_all.py
> 以下片断来自项目代码里的文件:jpush-api-python-client 中的 examples/push_examples 目录下的 example_all.py
...
@@ -50,6 +50,12 @@ except common.JPushFailure:
...
@@ -50,6 +50,12 @@ except common.JPushFailure:
except:
except:
print "Exception"
print "Exception"
```
```
## 日志说明
logging level 默认的是 WARNING ,为了方便调试建议设置为 DEBUG
设置方法为:
```
_jpush.set_logging("DEBUG")
```
## 异常说明
## 异常说明
...
...
jpush/__init__.py
View file @
973d49ab
...
@@ -71,7 +71,7 @@ __all__ = [
...
@@ -71,7 +71,7 @@ __all__ = [
schedulepayload
,
schedulepayload
,
]
]
__version__
=
'3.
3.1
'
__version__
=
'3.
2.0
'
VERSION
=
tuple
(
map
(
int
,
__version__
.
split
(
'.'
)))
VERSION
=
tuple
(
map
(
int
,
__version__
.
split
(
'.'
)))
# Silence urllib3 INFO logging by default
# Silence urllib3 INFO logging by default
...
...
setup.py
View file @
973d49ab
...
@@ -13,7 +13,7 @@ with open('jpush/__init__.py', 'rb') as f:
...
@@ -13,7 +13,7 @@ with open('jpush/__init__.py', 'rb') as f:
f
.
read
()
.
decode
(
'utf-8'
))
.
group
(
1
)))
f
.
read
()
.
decode
(
'utf-8'
))
.
group
(
1
)))
setup
(
setup
(
name
=
'jpush
-demo
'
,
name
=
'jpush'
,
version
=
version
,
version
=
version
,
description
=
'JPush
\'
s officially supported Python client library'
,
description
=
'JPush
\'
s officially supported Python client library'
,
keywords
=
(
'JPush'
,
'JPush API'
,
'Android Push'
,
'iOS Push'
),
keywords
=
(
'JPush'
,
'JPush API'
,
'Android Push'
,
'iOS Push'
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment