Posts by Gladiston leal • 17 points
3 posts
-
0
votes1
answer120
viewsQ: How to display or extract all "cookie" information from a python page?
I’m trying to extract the cookie from a page but I can only get information from the NID: import requests session = requests.Session() response = session.get('https://www.google.com/')…
-
-2
votes1
answer57
viewsQ: Is it possible to create a virtual file in Python?
I’m trying to use a modified m3u file, but I don’t want to generate a physical file for this Generating the physical image: url = "#EXTM3U #EXT-X-VERSION:3 #EXT-X-TARGETDURATION:8…
-
-1
votes1
answer429
viewsQ: How to pick up portions of texo inside a site using Curl
I have this example with "file_get_contents" How it would be done using Curl? <?php $url = 'http://www.exemplo.com/exemplo.php'; $dadosSite = file_get_contents($url); $var1 = explode('Da linha 1…