资源简介
R语言与网站分析:数据集样例及分类算法实现
代码片段和文件信息
# -*- coding: utf-8 -*-
import urllib2
from urllib import urlencode
import simplejson
import sys
reload(sys)
sys.setdefaultencoding(‘utf-8‘)#wx only adapt utf-8 (no unicodeno encoding and stay what it looks like)
Debug = True
IsMyQYH = True
def getTokenIntime(CorpIdSecret):
res = urllib2.urlopen(‘https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=%s&corpsecret=%s‘%(CorpIdSecret))
res_dict = simplejson.loads(res.read())
token = res_dict.get(‘access_token‘False)
if not token:
with open(r‘./wx_log.txt‘‘ab‘) as f:
f.write(u‘异常: 无法取得token‘)
return token
def getToken():
with open(r‘./wx_token.txt‘) as f:
t = f.read()
return t
def sendTxtMsg(tokencontentto_user=“@all“to_party=““to_tag=““application_id=0safe=0):
try:
data = {
“touser“: to_user
“toparty“: to_party
“totag“: to_tag
“msgtype“: “text“
“agentid“: application_id
“text“: {
“content“: content
}
“safe“:safe
}
data = simplejson.dumps(dataensure_ascii=False)
if Debug:
with open(r‘./wx_data.txt‘‘ab‘) as f:
f.write(data+‘\r\n‘)
req = urllib2.Request(‘https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=%s‘%(token))
resp = urllib2.urlopen(reqdata)
msg = u‘返回值:‘ + resp.read()
except Exceptionex:
msg = u‘异常:‘ + str(ex)
finally:
with open(r‘./wx_log.txt‘‘ab‘) as f:
f.write(msg+‘\r\n‘)
def sendNews(tokentitledescriptionurlpic_urlto_user=“@all“to_party=““to_tag=““application_id=0safe=0):
try:
data = {
“touser“: to_user
“toparty“: to_party
“totag“: to_tag
“msgtype“: “news“
“agentid“: application_id
“news“: {
“articles“:[
{
“title“: title
“description“: description
“url“: url
“picurl“: pic_url
}
]
}
}
data = simplejson.dumps(dataensure_ascii=False)
if Debug:
with open(r‘./wx_data.txt‘‘ab‘) as f:
f.write(data+‘\r\n‘)
req = urllib2.Request(‘https://qyapi.weixin.qq.com/cgi-bin/message/send?debug=1&access_token=%s‘%(token))
resp = urllib2.urlopen(reqdata)
msg = u‘返回值:‘ + resp.read()
except Exceptionex:
msg = u‘异常:‘ + str(ex)
finally:
with open(r‘./wx_log.txt‘‘ab‘) as f:
f.write(msg + ‘\r\n‘)
def send_btn(tokenapplication_id=0):
try:
req = urllib2.Request(‘https://qyapi.weixin.qq.com/cgi-bin/menu/create?access_token=%s&agentid=%s‘%(tokenapplication_id))
data = {
“button
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 11981 2014-10-09 20:54 wx_data.txt
文件 4761 2014-10-09 20:54 IWeixin.py
----------- --------- ---------- ----- ----
16742 2
- 上一篇:SEO常用数据分析表格模板
- 下一篇:用Proteus仿真的sht11电路
相关资源
- 用KNN算法诊断乳腺癌
- 身高体重 贝叶斯分类 判别男女
- RBF神经网络做回归预测
- 多分类有序反应变量logistic逐步回归分
- 数据挖掘贝叶斯分类bayes算法
- ArcEngine重分类
- 利用R对癌症数据进行生存分析
- DNA序列分类模型2000数模
- 华章数学译丛49 时间序列分析及应用
- KPCA的R语言程序
- 分类器设计之logistic回归分析Matlab代
- 利用 lm预测NBA常规赛前16强
- R语言完成apriori算法的脚本
- 基于最佳波段组合的高光谱遥感影像
- 这里实现了四种SVM工具箱的分类与回
- R语言实战第2版全部源代码
- c5.0分类算法
- 基于BP_Adaboost的强分类器设计-公司财
- 《R语言与数据挖掘》配套资源..zip
- KNN算法诊断乳腺癌
- 福盺高级PDF编辑器OCR语言包
- R for Data ScienceR数据科学源代码
- 国民经济行业分类 2017版最新.xlsx
- 基于LDA主题模型的短文本分类方法_张
- 基于LDA高频词扩展的中文短文本分类
- VC 开发的MIPS五级整数流水线模拟程序
- 利用cuda加速卷积神经网络,用于人工
- 基于Tensorflow下的cnn卷积神经网络实现
- 图像分类残差网络-pytorch实现
- OpenCV+SVM简单应用-------路面箭头分类
评论
共有 条评论