Fixed line length to 79 characters for all python scripts including twython3k
This commit is contained in:
parent
1d737b67d9
commit
17f54c1eb4
6 changed files with 448 additions and 218 deletions
|
|
@ -1,15 +1,19 @@
|
|||
"""
|
||||
A huge map of every Twitter API endpoint to a function definition in Twython.
|
||||
A huge map of every Twitter API endpoint to a function definition in \
|
||||
Twython.
|
||||
|
||||
Parameters that need to be embedded in the URL are treated with mustaches, e.g:
|
||||
Parameters that need to be embedded in the URL are treated with mustaches, \
|
||||
e.g:
|
||||
|
||||
{{version}}, etc
|
||||
|
||||
When creating new endpoint definitions, keep in mind that the name of the mustache
|
||||
will be replaced with the keyword that gets passed in to the function at call time.
|
||||
When creating new endpoint definitions, keep in mind that the name of the \
|
||||
mustache will be replaced with the keyword that gets passed in to the \
|
||||
function at call time.
|
||||
|
||||
i.e, in this case, if I pass version = 47 to any function, {{version}} will be replaced
|
||||
with 47, instead of defaulting to 1 (said defaulting takes place at conversion time).
|
||||
i.e, in this case, if I pass version = 47 to any function, {{version}} will\
|
||||
be replaced with 47, instead of defaulting to 1 (said defaulting takes \
|
||||
place at conversion time).
|
||||
"""
|
||||
|
||||
# Base Twitter API url, no need to repeat this junk...
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue