I wrote a small piece of code that searches for a random string of three letters in the App Store:
searchTerm = (''.join(random.choice(string.ascii_lowercase) for i in range(3)))
urllib.urlretrieve("https://itunes.apple.com/search?country=us&entity=software&limit=5&term=" + str(searchTerm), "download.txt")
Now I wonder how I could do the same, but with Chinese characters, as I'd like to explore the Chinese App Store as well.
I had a look at this question making a list of traditional Chinese characters from a string but it didn't help.