Created
August 10, 2012 08:07
-
-
Save shiweifu/3312523 to your computer and use it in GitHub Desktop.
test curl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
import sys | |
#cmd = """curl http://localhost:8082/apiv1/msgadmin --data \"title=%s&content=content&desc=%s&icon=http://a1.phobos.le/b7/3f/8b/mzi.hztheuez.100x100-75.jpg&type=1&action=add&type_data={\"data\": {\"sort\": \"1\", \"title\": \"Naruto\", \"vip\": \"0\", \"tag\": \"pp_naruto\", \"icon\": \"http://a1.phobos.apple.com/us/r1000/010/Purple/b7/3f/8b/mzi.hztheuez.100x100-75.jpg\"}, \"content_type\": 1}&appname=%s\"}\"}\"""" | |
cmd = """curl http://localhost:8082/apiv1/msgadmin --data \"title=%s&content=content&desc=%s&icon=http://a1.phobos.le/b7/3f/8b/mzi.hztheuez.100x100-75.jpg&type=1&action=add&type_data={\\\"\"data\\\"\": {\\\"\"sort\\\"\": \\\"\"1\\\"\", \\\"\"title\\\"\": \\\"\"Naruto\\\"\", \\\"\"vip\\\"\": \\\"\"0\\\"\", \\\"\"tag\\\"\": \\\"\"pp_naruto\\\"\", \\\"\"icon\\\"\": \\\"\"http://a1.phobos.apple.com/us/r1000/010/Purple/b7/3f/8b/mzi.hztheuez.100x100-75.jpg\\\"\"}, \\\"\"content_type\\\"\": 1}&appname=%s&lang=ja\"""" | |
#"""{"data": {"sort": "1", "title": "Naruto", "vip": "0", "tag": "pp_naruto", "icon": "http://a1.phobos.apple.com/us/r1000/010/Purple/b7/3f/8b/mzi.hztheuez.100x100-75.jpg"}, "content_type": 1}""" | |
"""{"data": {"sort": "1", "title": "Naruto", "vip": "0", "tag": "pp_naruto", "icon": "http://a1.phobos.apple.com/us/r1000/010/Purple/b7/3f/8b/mzi.hztheuez.100x100-75.jpg"}, content_type: 1}""" | |
def main(): | |
for x in xrange(50): | |
c = cmd % ("test_title" + str(x), "dest_desc", "lidd") | |
print(c) | |
os.system(c) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment