[api version bump] Update API documentation in the example scripts

Give better examples, and rewrite options parsing to be more consistent across examples.
Make it more obvious that you can use "--user" and "--api-key" with our python examples.

This bumps our python bindings to v0.1.9

(imported from commit 297468088f864b7d585e567dc45523ea681f1856)
This commit is contained in:
acrefoot 2013-05-29 14:00:27 -04:00
parent 35b822b58d
commit dfb8a16a55
22 changed files with 92 additions and 87 deletions

View file

@ -18,7 +18,7 @@ def write_config(config, since_id):
parser = optparse.OptionParser(r"""
%prog --user foo@humbughq.com --search="@nprnews,quantum physics"
%prog --user foo@humbughq.com --api-key a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5 --search="@nprnews,quantum physics"
Send Twitter search results to a Humbug stream.
@ -63,20 +63,10 @@ Make sure to go the application you created and click "create my
access token" as well. Fill in the values displayed.
""")
parser.add_option('--user',
help='Humbug user email address',
metavar='EMAIL')
parser.add_option('--api-key',
help='API key for that user [default: read ~/.humbugrc]')
parser.add_option('--search',
dest='search_terms',
help='Terms to search on',
action='store')
parser.add_option('--site',
dest='site',
default="https://humbughq.com",
help=optparse.SUPPRESS_HELP,
action='store')
parser.add_option('--stream',
dest='stream',
help='The stream to which to send tweets',
@ -87,6 +77,7 @@ parser.add_option('--limit-tweets',
type='int',
help='Maximum number of tweets to send at once')
parser.add_option_group(humbug.generate_option_group(parser))
(opts, args) = parser.parse_args()
if not opts.search_terms: