azapi
azapi copied to clipboard
List Index Error for "metadata" Variable
Description: When a computer on the same network is using VPN, there is a List Index Error for the "metadata" variable in azapi.py. When I printed the variable, its value was "["\r\n Our systems have detected unusual activity from your IP address (computer network). \r\n This page checks to see if it's really you sending the requests, and not a robot.\r\n "] This error still lingers even after I turn off my VPN.
Steps to reproduce the behavior:
- Turn on VPN
- Follow the example flow to set up and call getLyrics()
Expected behavior I expected for the search lyrics to work as normal and return lyrics if they can be found via its process.
Screenshots
If applicable, add screenshots to help explain your problem.
I realize that this is most likely because of an IP ban. I would appreciate any advice on how to use a proxy to avoid the issue.
You can get free proxues from many websites. This is one you can use: https://free-proxy-list.net/
To use a proxy in azapi:
from azapi import AZLyrics
proxies = {
'http': 'http://proxy.example.com:8080',
'https': 'http://secureproxy.example.com:8090',
}
API = azapi.AZlyrics(
'google',
accuracy=0.5,
proxies=proxies
)
Thank you! Have you been able to find the rate limit for AZ's API? I can't find anything.
I integrated proxies, but am still getting the same issue @elmoiv
I'm also getting this error with and without proxies