Linked Questions
12 questions linked to/from error: [Errno 10053]
21 votes
3 answers
45k views
How to keep a socket open until client closes it?
I have simple python server and client. Server: import SocketServer import threading class MyTCPHandler(SocketServer.BaseRequestHandler): def handle(self): self.data = self.request.recv(...
8 votes
1 answer
12k views
Flask - socket.error: [Errno 10053] An established connection was aborted by the software in your host machine [duplicate]
Re-opening this question upon request (error: [Errno 10053]), providing the minimal testable example: import time from flask import Flask, render_template app = Flask(__name__, static_folder='static',...
3 votes
3 answers
2k views
Error 10053 When Sending Large Attachments using Gmail API
I'm trying to send emails of various sizes using the Gmail API and the functions below. Generally this works perfectly, however for attachments over around 10MB (which are rare but will happen) I ...
2 votes
2 answers
6k views
Django : error: [Errno 10053] An established connection was aborted by the software in your host machine
I got error when i perform ajax request. Without authentication lines user = authenticate(username = user_username, password = user_password) in the views.py, success function is called. And if i add, ...
1 vote
1 answer
2k views
Ignore a request in Flask
I want to not answer a request handled by Flask. I don't want to return any error code, data, or an answer at all. What I am trying to accomplish by doing this is that there is an endpoint takes ...
1 vote
1 answer
740 views
Requests and Requests_Toolbelt filesize limit
Using request_toolbelt's MultipartEncoder, I am able to upload files to my Pyramid server, but only up to a certain size. Once the file are beyond a certain size (not sure of the exact size), ...
0 votes
0 answers
729 views
Got ''An established connection was aborted by the software in your host machine' error in firefox browser through selenium2library
Getting following error while performing automation test through Selenium2Library for Robotframework... 11:54:56.623 INFO Typing text 'admin' into text field 'css=input.gwt-TextBox.field-input'. ...
0 votes
0 answers
382 views
WinError 10053. How do I keep sending data over TCP "forever"
I am currently trying to learn networking with python. I am really new to this topic so I replicated some examples from somewhere like here I want to achieve a continous data transfer with TCP. This ...
0 votes
0 answers
324 views
Error: file_get_contents() using from google maps to codeigniter
Hi i have this google maps that when a user inputs his address will get the lattitude and longitude in the registration page. After when i input the address then click register i want that, the json ...
1 vote
0 answers
293 views
Why I am getting an error 10053 on this python2.7 code?
I'm starting networks and my code isn't the best but for some reason I don't understand why I'm getting error 10053 when I'm running my client. import socket import datatime import random s_server = ...
0 votes
0 answers
183 views
Python Django ConnectionAbortedError [WinError 10053]
So im facing a weird issue while making a request to my api. It works fine using something like postman. I get my response no issue but if I make a request from my frontend(on a seperate domain) the ...
0 votes
1 answer
95 views
error: [Errno 10053] while submitting ajax form in Django
I saw a similar error already posted here but that did not help to solve my problem. Besides the OP did not provided any information about what he was doing when he encountered that error (as others ...