UKBinCollectionData icon indicating copy to clipboard operation
UKBinCollectionData copied to clipboard

Update sessions to avoid deprecation

Open dp247 opened this issue 2 years ago • 0 comments

Quite a simple one, so good for first time contributors:

image

Some of the council classes make use of the requests package's session function. Eventually, this will be deprecated in future versions of Python and needs to be changed to a new class constructor.

Basically, anywhere like

s = requests.session()

needs to be changed to

s = requests.Session()

dp247 avatar Oct 11 '23 17:10 dp247