Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
tweepy
Commits
c060f7b3
Commit
c060f7b3
authored
May 14, 2013
by
Joshua Roesslein
Browse files
Merge pull request #250 from santosh/master
Changed all Tabs to Spaces
parents
24d97c03
df4044c9
Changes
4
Hide whitespace changes
Inline
Side-by-side
examples/streaming.py
View file @
c060f7b3
...
...
@@ -2,7 +2,7 @@ from tweepy.streaming import StreamListener
from
tweepy
import
OAuthHandler
from
tweepy
import
Stream
# Go to http://dev.twitter.com and create an app.
# Go to http://dev.twitter.com and create an app.
# The consumer key and secret will be generated for you after
consumer_key
=
""
consumer_secret
=
""
...
...
@@ -13,21 +13,21 @@ access_token=""
access_token_secret
=
""
class
StdOutListener
(
StreamListener
):
""" A listener handles tweets are the received from the stream.
This is a basic listener that just prints received tweets to stdout.
""" A listener handles tweets are the received from the stream.
This is a basic listener that just prints received tweets to stdout.
"""
def
on_data
(
self
,
data
):
print
data
return
True
"""
def
on_data
(
self
,
data
):
print
data
return
True
def
on_error
(
self
,
status
):
print
status
def
on_error
(
self
,
status
):
print
status
if
__name__
==
'__main__'
:
l
=
StdOutListener
()
auth
=
OAuthHandler
(
consumer_key
,
consumer_secret
)
auth
.
set_access_token
(
access_token
,
access_token_secret
)
l
=
StdOutListener
()
auth
=
OAuthHandler
(
consumer_key
,
consumer_secret
)
auth
.
set_access_token
(
access_token
,
access_token_secret
)
stream
=
Stream
(
auth
,
l
)
stream
.
filter
(
track
=
[
'basketball'
])
stream
=
Stream
(
auth
,
l
)
stream
.
filter
(
track
=
[
'basketball'
])
tweepy/api.py
View file @
c060f7b3
...
...
@@ -260,7 +260,7 @@ class API(object):
""" Perform bulk look up of friendships from user ID or screenname """
def
lookup_friendships
(
self
,
user_ids
=
None
,
screen_names
=
None
):
return
self
.
_lookup_friendships
(
list_to_csv
(
user_ids
),
list_to_csv
(
screen_names
))
return
self
.
_lookup_friendships
(
list_to_csv
(
user_ids
),
list_to_csv
(
screen_names
))
_lookup_friendships
=
bind_api
(
path
=
'/friendships/lookup.json'
,
...
...
tweepy/auth.py
View file @
c060f7b3
...
...
@@ -138,9 +138,9 @@ class OAuthHandler(AuthHandler):
oauth_consumer
=
self
.
_consumer
,
http_method
=
'POST'
,
http_url
=
url
,
parameters
=
{
'x_auth_mode'
:
'client_auth'
,
'x_auth_username'
:
username
,
'x_auth_password'
:
password
'x_auth_mode'
:
'client_auth'
,
'x_auth_username'
:
username
,
'x_auth_password'
:
password
}
)
request
.
sign_request
(
self
.
_sigmethod
,
self
.
_consumer
,
None
)
...
...
tweepy/models.py
View file @
c060f7b3
...
...
@@ -315,7 +315,7 @@ class Relationship(Model):
result
=
cls
(
api
)
for
k
,
v
in
json
.
items
():
if
k
==
'connections'
:
setattr
(
result
,
'is_following'
,
'following'
in
v
)
setattr
(
result
,
'is_following'
,
'following'
in
v
)
setattr
(
result
,
'is_followed_by'
,
'followed_by'
in
v
)
else
:
setattr
(
result
,
k
,
v
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment