0
votes
0answers
27 views

pyodbc connect to database twice and failed

I'm trying use Python and pyodbc to access SQL server 2008. The first connection works. Then, after the program finishes its job, it closes the connection. When the program tries to access the ...
0
votes
0answers
39 views

Python access global instance of connection

I'm using a Velleman K8055 USB experiment board, which has a python module that I'm importing. For the K8055 to function properly I have to create an instance of the class within the K8055 module, ...
0
votes
1answer
74 views

Python Exception Handling - Best Practices

I'm writing a python program the accesses a database. I want to catch three types of exceptions when I make a http request. Timeouts, network errors, and http errors. I'm looking for the best way to ...
0
votes
0answers
40 views

Multiple databases in Django 1.5

I am using multiple databases in Django 1.5. The default database is always available, but the secondary databases are not always available at the computer. When they are available everything works ...
0
votes
1answer
28 views

Python IRC 8.1.1 Invalid Syntax Error with class Connection(object, metaclass=abc.ABCmeta)?

In Python, when trying to use irc-8.1.1's example program irccat2.py, I get this error. I can't find it documented anywhere online. Does anyone know what this means, and how I can fix it? Thank you. ...
0
votes
1answer
63 views

Python: Send data to socket.io

Now I have create a node.js server, and linked it with php page and it works fine. So right now is it possible for Python to send socket.io signal (with data of course) to socket.io server and Python ...
1
vote
1answer
98 views

Pyro4 sometimes throwing “Connection reset by peer” (Erno 104) after exceeding 4 concurrent connections

I have searched and searched and can't find an answer. I am trying to open a Pyro connection between two unix devices. I can connect 4 times to the device using a Pyro4 Proxy with an identical URI ...
0
votes
1answer
71 views

Infinite loop for network connection

Is it considered a good programming practice to use infinite loop for network connection? Example: //connect to server conn = getConnection() while True: data = conn.getData() //do something I ...
0
votes
2answers
209 views

Can't connect to JIRA Python through REST api https url

I try to connect to a jira dev sandbox through https but it comes up with an SSL23_GET_SERVER_HELLO:unknown protocol error This is the error log/stack trace. I try both ports 8080 and 443 but no joy. ...
1
vote
1answer
177 views

Why does gevent.socket break multiprocessing.connection's auth

I have an application that uses both grequests and multiprocessing.managers for a combination of IPC communication and Asynchronous RESTful communications over HTTP. It seems that grequests, in using ...
0
votes
1answer
74 views

Can we connect to other database on another host in django

Hi i need to fetch data from another database which is on another host and insert into local database , is it possible to connect two databases at a time
0
votes
1answer
147 views

PyQt - QComboBox connection confirmed but function is not being called

I am having a bit of trouble with the signal/slot issues using PyQt. My code is below, but it probably deserves a bit of explanation. The first two QObject.connect() return True, so I know the ...
2
votes
1answer
219 views

Elegant way to test SSH availability in python

I need a python program I'm using to poll a remote server for SSH connectivity and notify when it is available. I am currently doing this using paramiko; attempt to connect, if failure, wait and retry ...
2
votes
2answers
606 views

Python: sending data between two computers via sockets

I am working on a script that would transmit the data between two distinct computers with access to the internet. I am using python's socket standard module. It works fine when I run both client and ...
1
vote
0answers
54 views

Disconnecting the connection in pycurl

I'm writing a python code to download files using pycurl. Is there any possibility to inform my program to disconnect the connection? I mean that while the code is running, I want to disconnect the ...
0
votes
1answer
132 views

Twitter Python program giving connection error

I am working on a Twitter data mining application in Python, using the modules twitter and redis, based upon the book "Mining the Social Web" by Matthew A.Russell. Whenever I try to get the ...
3
votes
2answers
384 views

Gevent with Database connection pool for Stream Server

I am using Python Gevent's stream servers for communicating with another machine (remote) which sends concurrent TCP/IP requests (on an avg 60 req/sec). Nature of this communication is mostly IO bound ...
5
votes
1answer
642 views

Managing connection to redis from python

I'm using redis-py in my python application to store simple variables or lists of variables in a Redis database, so i thought it would be better to create a connection to the redis server everytime i ...
-2
votes
2answers
135 views

PYTHON - MAX TCP CONNECTIONS? [duplicate]

Possible Duplicate: What is the practical / hard limit on socket connections per server When I hit about 480 TCP connections, it doesn't accept + connections. Where it is the max of TCP ...
2
votes
1answer
108 views

IRC (rfc1459): Which event says that I am connected?

I am just about to implement some parts of rfc1459. My thing is: how do I know that my script is correctly connected to the network. I mean what event says your "yes sir. you pass all my ...
2
votes
1answer
180 views

How do I notify Python/Tornado that the client has closed the tab/browser?

I've been searching for quite a while for a solution about this but no dice. Edit: I didn't point out that I'm trying to make a chat server. So people log in, their id gets appended to a users and a ...
3
votes
3answers
2k views

Python server “Only one usage of each socket address is normally permitted”

I'm trying to create a very basic server in python that listens in on a port, creates a TCP connection when a client tries to connect, receives data, sends something back, then listens again (and ...
0
votes
0answers
63 views

Download a PDF and send the extracted text to another script with Allias(title, description, date…)

I've used the module slate, it is based on the pdfminer. The following script can correctly read articles on pages 1 and 2, but there are many pages and multiple pdf files so the layout may vary pdf ...
0
votes
1answer
753 views

Python Persistent TCP client

I need to connect to my server(not http) with a persistent connection, to speed up some things. Could I have an example of how to do this?
0
votes
0answers
317 views

How to check connection status by Python select/epoll

I tried to empliment server by Python select or epoll. Here i came across a question; How do I examine the TCP connection is OK? For example, client A connect to server B and keep alive. Server B ...
0
votes
0answers
134 views

how to implement NTLM auth and make a persistent HTTP connection

I want to access a website which requires NTLM auth. I use python-NTLM to make a connection with the server successfully. But some subsequent operations require a persistent connection. At first, I ...
4
votes
2answers
469 views

Python why doesn't writing a contextmanager for an sqlite3 cursor work?

This is supposed to work yet just says no stocks table - supposed lost the connection somewhere inside the contextmanager? import sqlite3 from contextlib import contextmanager @contextmanager def ...
3
votes
1answer
138 views

Simple Python Program Got Stuck

Yesterday I wrote a simple Python program (really simple as shown below) to validate the HTTP status responses of around 5000 URLs. The thing is the program seems getting stuck for every 400 to 500 ...
1
vote
1answer
278 views

Concepts behind MySQL cursor

Could someone please explain me the concept behind MySQL cursor, especially in the context of multiprocessing? I am fairly new to python and am accessing a MySQLdb concurrently using a module with ...
5
votes
2answers
4k views

python: [Errno 10054] An existing connection was forcibly closed by the remote host

I am writing python to crawl Twitter space using Twitter-py. I have set the crawler to sleep for a while (2 seconds) between each request to api.twitter.com. However, after some times of running ...
1
vote
1answer
476 views

python mysql custom re-connect class does not hold server connection open

I have a custom class written in python to re-establish a mysql connection, if the current connection is dead. The only problem is, the current one always seems to be dead and is always entering into ...
0
votes
1answer
305 views

Timeout and high cpu load problems using multiple telnet connection threads in python

I want to connect to multiple telnet hosts using threading in python, but I stumbled about an issue I'm not able to solve. Using the following code on MAC OS X Lion / Python 2.7 import ...
1
vote
1answer
139 views

Catch SysLogHandler's output

Following advice, I'm planning to log errors from several time critical python processes (clients) to a single logging process (server). SysLogHandler seems to be the correct choice as it uses UDP (I ...
2
votes
2answers
524 views

cursor.description “type_code” correspondence with database field types

Using a MySQL back-end and basically want to determine the field type of tables from the type_code in the cursor.description tuples... What I get is a bunch of different numbers... and by comparing ...
1
vote
1answer
497 views

the max TCP connection in python

In Python. localhost i wrote a raw server just read TCP socket, say in port 50001. then try max client connections: def rawMultiConn(threadnum = 10000): g_event = threading.Event() def ...
1
vote
3answers
636 views

Testing an IRC bot [closed]

I am writing an IRC bot in Python using the Twisted library. To test my bot I need to connect several times to an IRC network as my bot requires a restart each time a change is made. Therefore I am ...
3
votes
1answer
727 views

Python urllib2.open Connection reset by peer error

I'm trying to scrape a page using python The problem is, I keep getting Errno54 Connection reset by peer. The error comes when I run this code - ...
0
votes
2answers
99 views

wxPython + pysftp won't work at the same time

My code: class ConnectingPanel(wx.Panel): def __init__(self, parent): wx.Panel.__init__(self, parent) self.control = wx.TextCtrl(self, style=wx.TE_MULTILINE, pos=(-2, -2), ...
0
votes
3answers
2k views

How to close urllib2 connection?

I have made a program using urllib2 that makes a lot of connections across the web. I noticed that eventually that this can be DDoS worthy; I would like to know how to close down each connection after ...
1
vote
2answers
339 views

properly disconnect multiprocessing remote manager

When using multiprocessing Manager objects to create a server and connect remotely to that server, the client needs to maintain a connection to the remote server. If the server goes away before the ...
-3
votes
1answer
139 views

two database connection with Mysqldb in python

Can any body please let me know if more than one database connection at a time is possible with Mysqldb in python script. I have a scenario where i want to query from databaseA tables (which can be ...
2
votes
1answer
173 views

What is the best way to handle connections (e.g. to mysql server using MySQLdb) in python, needed by multiple nested functions?

When accessing a MySQL database on low level using python, I use the MySQLdb module. I create a connection instance, then a cursor instance then I pass it to every function, that needs the cursor. ...
3
votes
3answers
257 views

connecting c/c++ and python

What I am trying to do is that I want to read a file using python, and then with the data in the file, create a variable in c/c++(I don't want to read var from the file :) ). Is this possible? If ...
5
votes
4answers
3k views

Close urllib2 connection

I'm using urllib2 to load files from ftp- and http-servers. Some of the servers support only one connection per IP. The problem is, that urllib2 does not close the connection instantly. Look at the ...
1
vote
3answers
3k views

Help with Python: login into website

I'm trying to connect to a website with Python, but I don't know how to do that. The HTML of the website looks like that : <form action="connexion.php" method="post"> User<br /> ...
0
votes
2answers
683 views

Python socket sending problem

I'm currently working on a simple Python script that connects to an IP/Port and lets you preform commands. Kinda like telnet. I want it to connect to lets say MySQL(Just an example) and execute MySQL ...
0
votes
3answers
368 views

Python keeping socket alive?

Hey I'm working on a python project using sockets. Basically I want to loop a connection to a host for user input. Here is what I'm trying: while True: sock.connect((host, port)) inputstring ...
3
votes
2answers
626 views

Socket Programming Issue - Python

Alright, I've spent about three hours fiddling with socket programming in Python trying to make a simple chat program. I've gotten the client to send text to the server and then, from then client, it ...
0
votes
2answers
390 views

Python - Server and client problems

I'm trying to create a basic server and client script. The idea is that the client can connect to the server and execute commands. Kinda like SSH but very simple. Heres my server code: import sys, ...
21
votes
1answer
10k views

Python [Errno 98] Address already in use

In my Python socket program, I sometimes need to interrupt it with ctrl-c. When I do this, it does close the connection using socket.close() however when I try to reopen it I have to wait what seems ...

1 2