0

我正在尝试使用 python 将数据发布到网页。facebook上有一个游戏,邀请码是5个字母的组合。我编写了一个脚本,将所有字母组合写入 ​​txt 文件。

这是我需要发布的数据。 http://pastie.org/2409481

这个 cookie 'bbbbb' 最终将成为一个变量,并将循环遍历 5 个字母的所有可能组合。[code]invite_code%5D=bbbbb[/code]

4

1 回答 1

0

看看Requests,一个 urllib2 的包装器(我相信)。从该页面上撕下其中一个示例:

# This example cooked up by me!

import requests
post_data = {"amount":10000, "service":"writing blog posts"}

r = requests.post('http://example.com/api', post_data, auth=('user', 'pass'))

print r.status_code
print r.headers['content-type']

# ------
# 200
# 'application/json'

你应该能够设置任何你想要的post_data

于 2011-08-22T03:34:13.093 回答