Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
API URL Help
#1
hi. at the end of an api i am using, if i want to do an offset to collect more data after say 100 record, it require ",+100" to be added to the end of the url. when i am putting this in, the api the changes so the end part is "&%2C%2B=100". this "&%2C%2B=1" doesn't work with the API, It specifically has to be "+100".

Can some guide me how i can me the "+" symbol stay and not change to code when i use requests.get
Reply
#2
The + symbol is being URL-encoded to %2B.
To prevent this from happening,can construct the full URL string manually and pass it to requests.get().
import requests

base_url = "https://api.example.com/data?"
query_params = "param1=value1&param2=value2"
offset = ",+100"
# Construct the full URL
full_url = f'{base_url}{query_params}{offset}'
response = requests.get(full_url)
data = response.json()
print(data)
Reply
#3
thanks for the above. sorry i am very very new to python!

now the issue i get is the in the output url, the "limit" variable doesn't update
on the second loop it shows : https://website.com/table1/?key=xxxx&limit=0,+100 when i want it to show https://website.com/table1/?key=xxxx&limit=100,+100

i can see the variable is incrementing by 100 but it is just not passing it through to the api url

import requests
import json
import csv
import pandas as pd
import os

os.remove('ladder.csv')
os.remove('ladder.json')


# Define the base URL and parameters
base_url = 'https://website.com/table1/?key=xxxx'

query_params = ",+"
limit = 0
offset = 100
full_url = f'{base_url}{limit}{query_params}{offset}'


# Function to fetch data from the API
def fetch_data(full_url):
    response = requests.get(full_url)
    print (response.url)

    print (offset)
    if response.status_code == 200:
        return response.json()
    else:
        print(f"Error: {response.status_code}")
        print("Response content:", response.content)
        return None

# Initialize variables
all_data = []
has_more_data = True
    
# Loop to fetch data with pagination
while has_more_data:
    # Fetch data
    data = fetch_data(full_url)
    
    if data:
        # Debug: Print the response structure
        
        print(limit,offset)
        
        # Check if 'results' key exists in the response
        if 'ranking' in data:
            # Process the data (example: extend the all_data list with new records)
            all_data.extend(data['ranking'])
            
           
            # Check if there is more data to fetch
            if offset >= 1000:
                    has_more_data = False
            else:

                if len(data['ranking']) < limit:
                  has_more_data = False
                
                else:
                # Update the offset for the next request
                  limit += offset
        else:
            print("Key 'ranking' not found in the response")
            has_more_data = False
            
    else:
        has_more_data = False
        
# Example: Save all data to a JSON file
with open('ladder.json', 'w') as f:
    json.dump(all_data, f, indent=4)

print("Data fetching complete. Total records fetched:", len(all_data))

with open('ladder.json', encoding='utf-8') as inputfile:
    df = pd.read_json(inputfile)

df.to_csv('ladder.csv', encoding='utf-8', index=False)
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020