Linked Questions

21 votes
3 answers
45k views

I have simple python server and client. Server: import SocketServer import threading class MyTCPHandler(SocketServer.BaseRequestHandler): def handle(self): self.data = self.request.recv(...
Bruce's user avatar
  • 35.5k
8 votes
1 answer
12k views

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',...
tonysepia's user avatar
  • 3,560
3 votes
3 answers
2k views

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 ...
seymourgoestohollywood's user avatar
2 votes
2 answers
6k views

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, ...
Wickkiey's user avatar
  • 4,682
1 vote
1 answer
2k views

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 ...
Bora's user avatar
  • 1,532
1 vote
1 answer
740 views

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), ...
MFB's user avatar
  • 20k
0 votes
0 answers
729 views

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'. ...
Lokman Liton's user avatar
0 votes
0 answers
382 views

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 ...
schauma's user avatar
0 votes
0 answers
324 views

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 ...
android apple's user avatar
1 vote
0 answers
293 views

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 = ...
Yona Haim Burman's user avatar
0 votes
0 answers
183 views

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 ...
TJ Weems's user avatar
  • 1,114
0 votes
1 answer
95 views

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 ...
Ahtisham's user avatar
  • 10.3k