Probably in a local sqlite database.Where to store them.Any experianced programmer please help me
Yes -- dump them into a file.Looked at this to dump them to a file?
https://stackoverflow.com/questions/13030095/how-to-save-requests-python-cookies-to-a-file
Well thats what my doubt? Actually your answer cleared a lot of it....But one more confirmation///...If i ahve 100 accounts then i have to store the cookie data into a database
If you post in the thread I'll probably reply to it.Also can i pm you ?
Thanks for the reply....I solved the issue using pickles in Python.As u suggested saved the cookies as username as pickle fileYeah you just need to store cookies and they are nothing but text, so you can use txt files and avoid using any database altogether.
And retrieve them when you need them.
So I would make a folder say cookies and in that I would make files named as username of acc containing the cookie inside it .