Python Forum
Cookie and Session - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Cookie and Session (/thread-25856.html)



Cookie and Session - JohnnyCoffee - Apr-14-2020

Hi, is there any native python module that I can use to work with cookie and session ?


RE: Cookie and Session - steve_shambles - Apr-14-2020

I've never tried it but this may do what you want:

https://pypi.org/project/sanic-cookies/


RE: Cookie and Session - Larz60+ - Apr-14-2020

It's a task, but perhaps you can find something here


RE: Cookie and Session - buran - Apr-14-2020

requests supports working with Cookies and Sessions


RE: Cookie and Session - JohnnyCoffee - Apr-14-2020

I appreciate the help, but I need work with native and official language modules. That's why the question was about a native python module and not official third parties.


RE: Cookie and Session - buran - Apr-14-2020

(Apr-14-2020, 12:05 PM)JohnnyCoffee Wrote: I need work with native and official language modules
I thought this might be the case.
I know probably it's not under your control, but limiting yourself to just Python Standard Library will make you reinvent the wheel for a lot ot things.
As to the requests - it was transferred to PSF last year and the repo is under their control.

From Standard library I think you should look at urllib.request


RE: Cookie and Session - JohnnyCoffee - Apr-14-2020

(Apr-14-2020, 12:36 PM)buran Wrote:
(Apr-14-2020, 12:05 PM)JohnnyCoffee Wrote: I need work with native and official language modules
I thought this might be the case.
I know probably it's not under your control, but limiting yourself to just Python Standard Library will make you reinvent the wheel for a lot ot things.
As to the requests - it was transferred to PSF last year and the repo is under their control.

From Standard library I think you should look at urllib.request

Thank.