From 808f633f02959325a69b4851d2ef1ffb75ae9dfe Mon Sep 17 00:00:00 2001 From: Harmon Date: Fri, 29 Jan 2021 10:16:24 -0600 Subject: [PATCH] Replace APIMethod.post_data with APIMethod.execute keyword-only argument Replace APIMethod.post_data with APIMethod.execute post_data keyword-only argument --- tweepy/binder.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tweepy/binder.py b/tweepy/binder.py index c1c18e5..8b42d56 100644 --- a/tweepy/binder.py +++ b/tweepy/binder.py @@ -32,7 +32,6 @@ class APIMethod: if self.require_auth and not api.auth: raise TweepError('Authentication required!') - self.post_data = kwargs.pop('post_data', None) self.json_payload = kwargs.pop('json_payload', None) self.parser = kwargs.pop('parser', api.parser) self.headers = kwargs.pop('headers', {}) @@ -73,7 +72,7 @@ class APIMethod: log.debug("PARAMS: %r", self.session.params) - def execute(self, method, *, return_cursors=False, use_cache=True): + def execute(self, method, *, post_data=None, return_cursors=False, use_cache=True): self.api.cached_result = False # Build the request URL @@ -121,7 +120,7 @@ class APIMethod: resp = self.session.request(method, full_url, headers=self.headers, - data=self.post_data, + data=post_data, json=self.json_payload, timeout=self.api.timeout, auth=auth, @@ -185,6 +184,7 @@ class APIMethod: def bind_api(*args, **kwargs): http_method = kwargs.pop('method', 'GET') + post_data = kwargs.pop('post_data', None) return_cursors = kwargs.pop('return_cursors', False) use_cache = kwargs.pop('use_cache', True) @@ -193,8 +193,10 @@ def bind_api(*args, **kwargs): if kwargs.get('create'): return method else: - return method.execute(http_method, return_cursors=return_cursors, - use_cache=use_cache) + return method.execute( + http_method, post_data=post_data, + return_cursors=return_cursors, use_cache=use_cache + ) finally: method.session.close() -- 2.25.1