2013年10月23日 星期三

Python 產生假文

讀取 "MoreText.js: 一用就愛上的中文假文產生器" 的資料,產生約一千字的內容。
 

import urllib                                                                                                       
import json

line = 10
row = 500

for i in range(0, row):
    fake_text = ''

    url = urllib.urlopen('http://more.handlino.com/sentences.json?n=%s' % line)
    result = url.read()
    sentences_lists = json.loads(result)

    fake_text = ''.join(sentences_lists['sentences'])

    print fake_text
    print len(fake_text)




API :
http://more.handlino.com/api

沒有留言:

張貼留言