Convenience function for mapping from endpoint to URL
(self, endpoint)
| 23 | self.api = Twython('', '', '', '') |
| 24 | |
| 25 | def get_url(self, endpoint): |
| 26 | """Convenience function for mapping from endpoint to URL""" |
| 27 | return '%s/%s.json' % (self.api.api_url % self.api.api_version, endpoint) |
| 28 | |
| 29 | def register_response(self, method, url, body='{}', match_querystring=False, |
| 30 | status=200, adding_headers=None, stream=False, |
no outgoing calls
no test coverage detected