Tagged Questions
0
votes
0answers
24 views
Python Find IP and upload to FTP
I've been trying to write a simple script to grab my ip and upload it to an ftp server. I can do it if i use just use a simple string but im struggling at uploading the IP address. Im thinking ...
2
votes
0answers
60 views
Python list ordering
Hy, i have three lists (the container*) and they need to pop one(the first) element at a time. Which list will pop the element depends on a value (tF*), the smallest value sends first, but if the ...
0
votes
0answers
34 views
how to write a HTTPS tunnel server in python socket?
I am writing a HTTPS proxy server in python,
it should receive everything from client, send to the target server, and vice versa.
I found when I use Squid, client will first send a HTTP CONNECT ...
0
votes
2answers
49 views
Chat Application using webSockets [closed]
I am trying to write a simple application like omegle.com using webSockets.
my question is which language would it be the best to implements this?
My options are :
node.js
PHP
Python
0
votes
1answer
49 views
Meaning of a symbol character in python
I am tring to figure what is the meaning of this character: <I in python.
As I saw in many python script who use sockets, they use this character as a "pack" and "unpack"
argument, so an ...
-1
votes
1answer
43 views
Python networking with UDP for action games
Okay, please don't kill me for asking this.
I'm currently developing a 2D online multiplayer platformer shooter. Yeah, it's that cool. I have most of the game written with a couple of bugs and ...
1
vote
2answers
34 views
Handling background network operations in Python
Let me just preface this by saying that I'm not entirely familiar with Python, but have plenty of experience with programming in other languages.
I'm working on a tool that allows me to inject ...
2
votes
1answer
62 views
Serverless communication between network nodes in python
I am not sure if this question belongs here as it may be a little to broad. If so, I apologize. Anyway, I am planning to start a project in python and I am trying to figure out how best to implement ...
0
votes
1answer
25 views
Convert a float array into little/big endian
I am generating binary files for use in Unit Tests which simulate a network. Some of the data sent through the network is in Little Endian or Big Endian mode and I'd like to simulate that data with ...
0
votes
1answer
45 views
Python's email sending slow only on certain net connections - getfqdn takes 30 seconds
I am experiencing a problem on my dev machine (MacBook Air with MacOS 10.8.3) with sending email. It is painfully slow. However, the slowness is dependent on how I connect to the internet. If I am on ...
0
votes
1answer
37 views
Running python script in Tkinter
I have a python script which captures network traffic. and i have a GUI created using Tkinter i just want to know how can i execute my sniffer code through tkinter and output the result to the text ...
0
votes
1answer
65 views
QNetworkReply doesn't abort/close
EDIT:
I've prepared this SSCCE for your convenience: (just run it)
from PyQt4 import QtCore, QtGui, QtNetwork
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtNetwork import ...
0
votes
3answers
54 views
How do I receive and manage multiple TCP connections on the same port?
I have a number of clients who need to connect to a server and maintain the connection for some time (around 4 hours). I don't want to specify a different connection port for each client (as there are ...
0
votes
1answer
35 views
Multiprocessing with Python and Arguements
related to my last post (Which somehow got marked off and closed),
I wrote some code to create a thread for a command handler for my python TCP listener. What basically happens is that I send in some ...
1
vote
1answer
40 views
Listen to multicast ranges in Python
This might sound stupid. Pardon my limited knowledge in these stuff.
Is it possible to listen to multiple multicast groups, or more precisely, a range of addresses, for e.g. 224.128.*.* ? Usually ...
-2
votes
0answers
49 views
How can we send packets captured by wireshark to a definite port using any programming language? [closed]
How can we send packets captured by wireshark to a definite port using any programming language?
I have captured packets using Wireshark. Now I have to analyze those packets into 3 classes of IPs and ...
0
votes
0answers
37 views
Replicating and modifying EAPOL packets using Scapy
For a semester project (802.1x security + scapy has to be used), I want to create an exercise where I take the information from a captured 4-way handshake and inject the information from the 2 packets ...
1
vote
0answers
52 views
Is there a more efficient alternative than ssh for sharing data to a network node?
I have 2 robots, A and B. I want to keep A informed of B's bearing and vice versa.
Both robots have Debian boards on top and are participating in a batman-advanced mesh.
I am writing a python ...
0
votes
1answer
58 views
Python Twisted for long data
Python coders
I am working with twisted for build a server, which receive 3000 bytes of data on each connection, my issue is that packages are been truncated and stored on database as on packages ...
0
votes
1answer
109 views
Pcap file replay based on the packet timestamp using scapy
I have one pcap file (~90M), and i want to replay that file. I came across scapy and it provides the way to read the pcap file and replay it. I tried following two ways to replay the packets
...
1
vote
2answers
45 views
Python watch-dog script : load url asynchronously
I have simple Python script which do check few urls :
f = urllib2.urlopen(urllib2.Request(url))
as i have socket timeout setted on 5 seconds sometimes is bothering to wait 5sec * number of urls on ...
1
vote
1answer
55 views
Pyside client and server
I just start learning python to work with raspberry, my ultimate goal is to make a client / server application by creating a p2p network between raspberry. I chose to use the library asyncore to make ...
0
votes
4answers
51 views
Tracing GET/POST calls
is there a way to trace all the calls made by a web page when loading it? Say for example I went in a video watching site, I would like to trace all the GET calls recursively until I find an mp4/flv ...
-2
votes
1answer
33 views
a server that is SMTP and POP3 Simultaneity [closed]
i have to write two SMTP mail server in python that can send email to each other and clients of these mail server can check their mails using POP3 but i confused what should i do! because mail server ...
0
votes
3answers
79 views
Why Should I Set a Conservative Max Byte Size on a Socket's 'recv' Method?
I am building a client using Python's socket.socket class that receives data which varies in size (usually between 500 and 5,000 bytes but it is theoretically possible for the client socket to receive ...
5
votes
2answers
102 views
How to compress a string in Python to store it in Redis?
What library of method can I use in Python so I can take a string and compress it so that it can be stored inside of Redis? The objective is to reduce the size of some strings (cPickled objects) as ...
1
vote
1answer
42 views
Half Closing the socket prints bad characters
My client sends a string "abcd" and half closes the socket (the write part). My server reads the data and appends it inside the list (collection) until end of file is recieved (half closed socket ...
2
votes
2answers
61 views
Python programming: emulate network and debug
I learn network programming on Python: write client-server and client-client software with TCP, UDP, ICMP, ARP, etc protocols.
I need a tool for emulating network with N hosts with following ...
2
votes
1answer
29 views
Making a graphic of a trained dataset python
y1 = []
y2 = []
x = []
for i in range(40):
#fer dos llistes (error y epoch) y despres fer un plot
trainer.trainEpochs( 1 )
trnresult = percentError( ...
0
votes
0answers
38 views
Create EDNS packet in python bigger than 512 bytes
I want to use EDNS to create a DNS packet bigger than 512 bytes using the UDP protocol.
I have used dnspython to do some DNS requests before, but not using EDNS extension. What I want to do is to ...
1
vote
1answer
53 views
Python synchronous urllib2 result
In a certain part of my software, I want to simply get the source code of an URL, then I would like to parse that string (the source) and do something. Problem is, I can't figure out how to get said ...
1
vote
1answer
45 views
sending vector objetcs in blender over network
How to send a vector object.
I am trying to send an object's location in vector format over a udp socket connection.
socket.sendto(self.cube.worldPosition,server_addr)
but i get the following ...
0
votes
2answers
107 views
Intersections between two lists of thousands of networks
I have a huge list of networks (called A) and I need to check if the addresses of these networks are present in another network list (called B) :
The format of the two lists is the following:
Liste ...
1
vote
1answer
122 views
Python socket.recv exception
I'm working on a very simple python socket server. I use non-blocking sockets. The server and client are running on windows 7 x64 with python 2.7.3. Here is the code where I receive data from the ...
0
votes
1answer
82 views
Why is my list out of order consistently?
I'm working on a multiplayer Flash game with a Python backend server, and I'm having some issues with the server.
I'm using async TCP sockets for the server (using select), and I also maintain a ...
1
vote
1answer
110 views
Getting iOS app to talk to my home server
Currently, I have a home server in my closet basically doing nothing. It has Ubuntu Server 8.0.4 installed, apache for web development ill be using later, ssh, and python/twisted installed.
Here's ...
0
votes
2answers
58 views
Fetching information from network projectors using python script [closed]
I have a small network which includes multiple PCs and projectors. Normally, I am able to see the projector status(running time, lamp life, etc) via browser when i typed in the ip address of ...
1
vote
2answers
228 views
Finding Live Nodes on LAN using Python
I am creating a Messenger which is same as IP Messenger in Python 2.7 and Windows.
I want the same functionality as IP Messenger uses in finding the systems running same software over LAN but I am ...
0
votes
3answers
84 views
Python - What's wrong with my socket code
I have a simple Python program I am currently developing and for some reason, it won't work.
The way the full program works is it has a list of 20 ports and it then loops through that list basically ...
1
vote
3answers
131 views
when doing downloading with python,should I use multithreading or multiprocessing?
Recently I'm working on a program which can download manga from a online manga website.It works but a bit slow.So I decide to use multithreading/processing to speed up downloading.Here are my ...
0
votes
0answers
159 views
Python - bind error on multicast bind on windows
I need to use multicast in Python application, after googling a bit I found snippets of code that works, here it is:
# UDP multicast examples, Hugo Vincent, 2005-05-14.
import socket
import sys
...
0
votes
1answer
52 views
How to allow simultaneous messages over a socket?
I'm working on a game (Risk). I've already finished set-up, so a solution that doesn't require me to completely redesign networking would be preferable. The problem is I've gotten to main gameplay, ...
1
vote
2answers
66 views
TCP Server receiving from client doesn't work sometimes
I'm working on a server written in Python for my own protocol, but I'm having an issue.
The client connects to the server, and sendall()'s three pieces of data: a packet identification byte, a string ...
3
votes
1answer
70 views
Using Processes as Threads with Networking in Python
Basically, my idea was to write some sort of basic server where I could connect to my computer and then run a command remotely. This didn't seem to be much of a problem; but then I had the bright idea ...
0
votes
0answers
41 views
Direct connect (DC) library in python
Is there any library available in Python to write direction connect (DC) clients? I was looking at the DC-clients and most of them are based on c, c++ and java and none (barring a small ...
4
votes
1answer
92 views
Is there any way to access OS X wi-fi data using Python? (Signal strength, for example)
I am just curious whether it would be possible to use any Python tools to poll wi-fi signal strength in OS X. Most of my searches are just yielding Python tools for Linux, but none for OS X.
If not, ...
3
votes
2answers
112 views
Sending function pointer over network in python
Is there a possibility to send a function pointer in python over network to run on another machine?
let's say I have a function that I want to run:
def myFunc():
...
Is it possible to send ...
0
votes
1answer
109 views
Errno 10055 cannot connect in Python network related code on Windows
I am new to creating networks, and relatively new to python. I recently purchased a second computer to run some python programs. That second computer enters data into a mysql database housed on my ...
0
votes
1answer
29 views
can i bind a server running in my machine with a remote machine
def tcp_server():
myHost = '117.221.173.80' # server machine, '' means local host
local=''
myPort = 50002 # listen on a non-reserved ...
0
votes
1answer
51 views
Python XML exchange over network [closed]
Could someone please suggest me a good starting point for implementing simple "chatting" python daemons for exchange of XML formatted data? The idea is to keep broadcasting something like hello ...

