How to use twython - 10 common examples

To help you get started, we’ve selected a few twython examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ryanmcgrath / twython / tests / test_core.py View on Github external
    @responses.activate
    def test_request_should_handle_rate_limit(self):
        """Test that Twython raises an rate limit error on 429"""
        endpoint = 'statuses/home_timeline'
        url = self.get_url(endpoint)
        self.register_response(responses.GET, url,
                               body='{"errors":[{"message":"Rate Limit"}]}', status=429)

        self.assertRaises(TwythonRateLimitError, self.api.request, endpoint)
github ryanmcgrath / twython / tests / test_endpoints.py View on Github external
def test_get_profile_banner_sizes(self):
        """Test getting list of profile banner sizes fails because
        we have not uploaded a profile banner"""
        self.assertRaises(TwythonError, self.api.get_profile_banner_sizes)
github ryanmcgrath / twython / tests / test_core.py View on Github external
def test_get_profile_banner_sizes(self):
        """Test getting list of profile banner sizes fails because
        we have not uploaded a profile banner"""
        self.assertRaises(TwythonError, self.api.get_profile_banner_sizes)
github ryanmcgrath / twython / tests / test_core.py View on Github external
    @responses.activate
    def test_request_should_handle_401(self):
        """Test that Twython raises an auth error on 401 error"""
        endpoint = 'statuses/home_timeline'
        url = self.get_url(endpoint)
        self.register_response(responses.GET, url, body='{"errors":[{"message":"Error"}]}', status=401)

        self.assertRaises(TwythonAuthError, self.api.request, endpoint)
github ryanmcgrath / twython / tests / test_auth.py View on Github external
def test_obtain_access_token_bad_tokens(self):
        """Test obtaining an Application Only OAuth 2 access token using bad app tokens fails"""
        self.assertRaises(TwythonAuthError,
                          self.oauth2_bad_api.obtain_access_token)
github ryanmcgrath / twython / tests / test_auth.py View on Github external
def test_get_authentication_tokens_bad_tokens(self):
        """Test getting authentication tokens with bad tokens
        raises TwythonAuthError"""
        self.assertRaises(TwythonAuthError, self.bad_api.get_authentication_tokens,
                          callback_url='http://google.com/')
github ryanmcgrath / twython / tests / test_core.py View on Github external
    @responses.activate
    def test_request_should_handle_400_for_missing_auth_data(self):
        """Test that Twython raises an auth error on 400 error when no oauth data sent"""
        endpoint = 'statuses/home_timeline'
        url = self.get_url(endpoint)
        self.register_response(responses.GET, url,
                               body='{"errors":[{"message":"Bad Authentication data"}]}', status=400)

        self.assertRaises(TwythonAuthError, self.api.request, endpoint)
github ryanmcgrath / twython / tests / test_core.py View on Github external
def test_get_protected_user_timeline_not_following(self):
        """Test returning a protected user timeline who you are not following
        fails and raise a TwythonAuthError"""
        self.assertRaises(TwythonAuthError, self.api.get_user_timeline,
                          screen_name=protected_twitter_2)
github ryanmcgrath / twython / tests / test_endpoints.py View on Github external
def test_get_protected_user_timeline_not_following(self):
        """Test returning a protected user timeline who you are not following
        fails and raise a TwythonAuthError"""
        self.assertRaises(TwythonAuthError, self.api.get_user_timeline,
                          screen_name=protected_twitter_2)
github nellore / vickitrix / vickitrix / __init__.py View on Github external
'b) You entered the wrong password above.']
                ))
            exit(1)
        print_to_screen('Twitter/GDAX credentials verified.')
        # Get all handles to monitor
        handles, keywords = set(), set()
        for rule in rules:
            handles.update(rule['handles'])
            keywords.update(rule['keywords'])
        handles_to_user_ids = {}
        for handle in handles:
            try:
                handles_to_user_ids[handle] = twitter_client.show_user(
                                                            screen_name=handle
                                                        )['id_str']
            except TwythonError as e:
                if 'User not found' in e.message:
                    print(
                        'Handle {} not found; skipping rule...'.format(handle)
                    )
                else:
                    raise
        if not handles_to_user_ids:
            raise RuntimeError('No followable Twitter handles found in rules!')
        while True:
            print_to_screen('Listening for tweets; hit CTRL+C to quit...')
            trade_listener.statuses.filter(
                    follow=handles_to_user_ids.values(),
                    track=list(keywords)
                )
            print_to_screen(
                    timestamp()