I have a proxy api with return in json.
Return of the proxy api (example):
{
"proxy": "170.79.201.54:20183",
"ip": "170.79.201.54",
"port": "20183",
"connectionType": "Residential",
"type": "elite",
"lastChecked"...
I started my WEB API study trying to create a Pokedex API, when I tried to create the pokemon search function by the number the following error appeared:
"json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)"
appPokedex:...
I would like to login to a site, however using a python script. I used lib request
import requests
from bs4 import BeautifulSoup
dados = {'login':'XXX','password':'YYY'}
r = requests.post("http://123box.ru/blogs/nagdiel222/slayer-stain-of-min...
I'm a beginner in python and I'm venturing into flask because I found learning better than Django.
So I apologize for my ignorance of what I'm going to ask, or if my code is wrong, how do I get information from a website API and play a table in...
I'm having trouble using the python2 requests library. I have already done the installation and when I run pip install requests I see that it is already installed. Could someone help?
Python 2.7.14 (default, Sep 17 2017, 18:50:44)
[GCC...
I'm preparing an APP that takes an Airtable database with python Requests and transforms it into a list.
My problem is that I can not get more than 100 records from this database with the request URL. I tried to find a solution in Airtable Ap...
Hello,
I'm trying to extract data, but strangely the return is coming by 2 in 2, ie if I make 6 different requests it returns 6 results but only 3 of them are destined.
In the example below the response even though a different request (ncm...
I'm having a problem with Spash forms requests,
using only Scrapy the page loading is done normally, but when I use docker + splash the page does not make the next request.
Scrapy:
# -*- coding: utf-8 -*-
import scrapy
class QitestSpider...
I installed the module requests through Terminal with sudo pip3 install requests (I'm using Mac) and I was able to import it through the interactive shell without problems in IDLE. But when I try to import through Thonny's interact...