python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Hitting Task exception was never retrieved while executing a signal handler using asyncio in Python3.6
I have a Python3.6 application that uses bleak lib for BLE communication. I need to handle Ctrl-C signal by disconnecting BLE and do some clean up in case user decides to terminate the script while th...

prime_mover
Votes: 0
Answers: 0
removing numbers form list by python
Take 5 integer input from the user.
Remove all numbers less than 9.
Calculate the sum of remaining numbers
python
n = int(input("Enter number of elements : "))
a = list(map(int...
xcoder
Votes: 0
Answers: 2
Trying to send Python HTTPConnection content after accepting 100-continue header
I've been trying to debug a Python script I've inherited. It's trying to POST a CSV to a website via HTTPLib. The problem, as far as I can tell, is that HTTPLib doesn't handle receiving a 100-continue...

JediWombat
Votes: 0
Answers: 1
Flask Image API returning an error constantly
I have an image API for which this is the code:
@app.route("/identify-x-rays", methods=["POST"])
def process_image():
file = request.files['image'] # Read the image via file.st...

sahal mulki
Votes: 0
Answers: 1