Skip to content

Tag: python-requests

How to iterate in each element?

We need to take the stocks with BeautifulSoup. Code only iterates the first element. How to iterate each one? Answer First find all ul elements and iterate over it to find title and values according to class wise and append items to dict1 with key title Now you can use pandas module to transform data to DataF…

Stream OpenCV Video Capture to flask server

Greeting, I was working on a drone project, I wanted to take stream from my drone process it on my laptop and give a command based on processing, I was using the flask framework from the same. Currently, as the first step I want to take the stream from drone and PUT it to the flask server and view it

Python put requests on a CIRCUITPY

I have a CIRCUITPY macro board (keybow 2040) that I want to make automatically download a file, but I don’t have enough storage space on the board to put all the required libraries for the python requests module. The board’s available storage space is 866 KB, which is not nearly enough storage spa…