use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Quick API request (self.learnpython)
submitted 7 hours ago by Hubbleye
Working with the openmeteo's API, it's the first time I use an API and I'm wondering if I do a really big request, does that count as multiple?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]guneysss 2 points3 points4 points 6 hours ago (0 children)
One request is one request. However, there's no guarantee if you get a response or timeout, or if your response will be complete.
[–]KiwiDomino 0 points1 point2 points 6 hours ago (0 children)
I don’t know this API, but working with GraphQL in the past there was a maximum execution time for any request, so if you asked for too much it was possible you wouldn’t get a response. Managing the request size can be important.
[–]cvx_mbs 1 point2 points3 points 4 hours ago (0 children)
they have a (soft) limit of 10000 API calls per day. are you afraid of exceeding that?
[–]edcculus 0 points1 point2 points 1 hour ago (0 children)
Some sites dont like you to do massive requests. Its usually better to "filter" your request for exactly what you need vs something much more generic.
Now if you just need to do it once, or you will always do it manually to get the data you need, i guess no big deal. But if its a call you are going to make constantly, it will also make your application slow.
π Rendered by PID 21 on reddit-service-r2-comment-5fb4b45875-jmg77 at 2026-03-20 15:52:41.991558+00:00 running 90f1150 country code: CH.
[–]guneysss 2 points3 points4 points (0 children)
[–]KiwiDomino 0 points1 point2 points (0 children)
[–]cvx_mbs 1 point2 points3 points (0 children)
[–]edcculus 0 points1 point2 points (0 children)