I want to get the elevation of a segment (linestring) from a GeoJSON file. I'm using this API: Documentation: https://api3.geo.admin.ch/services/ ...
I want to get the elevation of a segment (linestring) from a GeoJSON file. I'm using this API: Documentation: https://api3.geo.admin.ch/services/ ...
This is the test link I am using for this project: https://www.dropbox.com/sh/4cgwf2b6gk4bex4/AADtM1GDYgPDdv8QP6JdSOkba?dl=0 Now, the code below work ...
My company uses its own multi-factor authentication to login to our jira server. Everything I have searched for only suggests how to connect to the se ...
I've spent about a week on this, with no luck whatsoever. I've used chatGPT even to create the program specifically, but it still doesn't work with no ...
I have a dataframe with 287.000+ file urls at the column df1['Gravação']. I want to get the length of all the files and save into the list tamanho_mb ...
I wanted to write a code that will check the availability of sites using "status_code" But in the end I got into a stupor, I do not know how to implem ...
I want to get information from a embedded JavaScript game. I navigate to the website via selenium and perform a few clicks based on the position of th ...
I am trying to get https://panel.op-net.com/login with Python Requests library. But I got an server error instantly. Here is the code: import request ...
I am using python requests library to stream the data from a streaming API. response = requests.get('http://server/stream-forever', stream=True) for ...
Whats the error in this script? from bs4 import BeautifulSoup import requests years = [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, ...
python codes get response but javascript code can't get response. what is diff between the two?? import fetch from 'node-fetch'; const url = "http:/ ...
I've written an instagram bot. But sometimes i got http errors like 409 or 401. To manage these errors i try to catch them in python but i cannot. Bec ...
I'm trying to scrape the zestimate for this address, 1205 Clover St, Accokeek, MD 20607 from this webpage using requests module. When I use that addre ...
I try to extract all the data for every school on the following site: https://schulfinder.kultus-bw.de/ My code is this: import requests from selen ...
i am barely a beginner at python and i would like to have a data set of my favorite local basketball team, that's why i search for a code scraping fib ...
I am making a program that finds the temperature of a place using requests and BeautifulSoup. Whenever I run the code I get this error: I've trie ...
I want to comment on a specific task in clickup but it responses 401 error. and the output is: <Response [401]> what is the problem? i tri ...
Im trying to extract course lenght (from Course content) from udemy webside url: https://www.udemy.com/course/ultimate-investment-banking-course/ so ...
url = 'https://www.booking.com/searchresults.html?label=gen173nr-1FCAEoggI46AdIM1gEaGyIAQGYATG4ARfIAQzYAQHoAQH4AQKIAgGoAgO4AuS4sJ4GwAIB0gIkYWJlYmZiMWI ...
I'm trying to fetch an email from a webpage using requests module. The problem is, the email address seems to be encoded or something, which is why it ...