高效码农

spinrewriter英文伪原创工具,Python对接API示例

简介:

Spin Rewriter是一款英文伪原创软件,它使用ENL语义旋转来理解文本的含义。它生产高质量,独特和可读性很高的伪原创文章,另外就是语法方面也不错,在效果上比the best spinner 以及国内的Spinnerchief 要好。国外的很多SEO大佬都有推荐。

由于Python spinrewriter包是2012年的,不支持python3.x;所以自己简单写个示例

API个别参数解析:

API接口限制:

1、每天最多可以提交500个API请求
2、每7秒提交一次全新的文本进行处理

Python 示例 Demo

import requests

url = "http://www.spinrewriter.com/action/api"

payload = {'email_address': 'xxxx@outlook.com',
'api_key': '79a16b2#6a4a231_xxxxxx',
'action': 'api_quota'}
files = [

]
headers = {
  'Cookie': 'country=China'
}

response = requests.request("POST", url, headers=headers, data = payload, files = files)

print(response.text.encode('utf8'))

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »