Skip to content
Snippets Groups Projects
Commit 8f7dbb74 authored by Nicolas Dandrimont's avatar Nicolas Dandrimont
Browse files

GitHub: Use function for requests.Session initialization

This will help us to break the retry logic for the listing requests
themselves to a separate function too.
parent df73073a
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,19 @@ from ..pattern import CredentialsType, Lister
logger = logging.getLogger(__name__)
def init_session(session: Optional[requests.Session] = None) -> requests.Session:
"""Initialize a requests session with the proper headers for requests to
GitHub."""
if not session:
session = requests.Session()
session.headers.update(
{"Accept": "application/vnd.github.v3+json", "User-Agent": USER_AGENT}
)
return session
@dataclass
class GitHubListerState:
"""State of the GitHub lister"""
......@@ -88,10 +101,7 @@ class GitHubLister(Lister[GitHubListerState, List[Dict[str, Any]]]):
self.relisting = self.first_id is not None or self.last_id is not None
self.session = requests.Session()
self.session.headers.update(
{"Accept": "application/vnd.github.v3+json", "User-Agent": USER_AGENT}
)
self.session = init_session()
random.shuffle(self.credentials)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment