Posts by Vegas • 151 points
7 posts
-
-1
votes1
answer37
viewsQ: Problems with excessive search requests on google
During the development of a Python project that needs to perform several automated searches on Google. At some point, as expected, Google blocks requests declaring "suspicious activity". My question…
-
1
votes1
answer1280
viewsA: Recursive function in python to invert a number
A simple solution, but a rather boring logic to solve. Here’s a way to solve this using whole division and recursion, without converting to other types: def inverte(num, aux=0): if num < 10:…
-
1
votes2
answers198
viewsA: Installation Cartopy
Try using: Conda install -c Conda-Forge cartopy=0.15.1
-
6
votes2
answers1673
viewsQ: Error in program in Visualg
I’m having problems with this program, because when I put it to work and type a value greater than 18, a message appears saying that is missing a FIMSE and that there is a FIMENQUANTO without a…
-
1
votes1
answer7641
viewsA: Python - Libraries for MP3
Well, I still don’t quite understand what your goal is with the project. But when it comes to audio, Python is still a bit sparse. However, there are still some libs capable for playback and/or…
-
-1
votes1
answer258
viewsQ: Scraping data from a website with dynamic filtering
The search platform of the programs conceptualized in Capes has a dynamic filtering for the query itself. I would like to know how I collect data from an output using Python. Why, using only bs4…
-
4
votes1
answer660
viewsQ: Check if all items in a string are different?
How can I check if all the items in a string are different ? For example: x:"abcdefga" = False y:"abcdefg" = True Since x[0] == x[7], soon would be False. But in case I would use that condition on a…