
python
luckygl17
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python pip install
prepare the pip install package at first download source : https://pypi.python.org/pypi/pip#downloads then you should download the file as follow then you type the command as follow python setup.p原创 2016-12-11 17:05:19 · 286 阅读 · 0 评论 -
python 提取key 为中文的json 串
示例:# -*- coding:utf-8 -*-import jsonstrtest = {"中故宫":"好地方","天涯":"北京"}print strtest#####{'\xe4\xb8\xad\xe6\x95\x85\xe5\xae\xab': '\xe5\xa5\xbd\xe5\x9c\xb0\xe6\x96\xb9', '\xe5\xa4\xa9\xe6\xb6\xaf': '\原创 2016-12-27 17:03:03 · 4279 阅读 · 0 评论 -
python2.7 send mail
如下实现发送json格式数据认证请求远程服务获取响应的结果 并发送邮件#!/usr/bin/python# -*- coding: utf-8 -*-import smtplibimport urllibimport urllib2import jsondef sendPost(data): print "-----send post-----------------...原创 2019-01-22 15:29:35 · 631 阅读 · 0 评论