Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.007 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:Python': 0.06; 'pypi': 0.07; 'python3': 0.07; 'url:github': 0.09; 'cc:addr :python-list': 0.11; 'python': 0.11; 'anyone?': 0.16; 'from:addr:pobox.com': 0.16; 'from:addr:skip': 0.16; 'ssh': 0.16; 'there..': 0.16; 'url:lmgtfy': 0.16; 'sender:addr:gmail.com': 0.17; 'wrote:': 0.18; 'trying': 0.19; 'thu,': 0.19; 'aug': 0.22; 'cc:addr:python.org': 0.22; 'skip': 0.24; 'stick': 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'script': 0.25; 'header:In-Reply-To:1': 0.27; 'host': 0.29; 'message- id:@mail.gmail.com': 0.30; 'running': 0.33; 'something': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'useful': 0.36; 'should': 0.36; 'remote': 0.38; 'pm,': 0.38; 'users': 0.40; 'first': 0.61; 'thomas': 0.65; 'here': 0.66; '2:30': 0.84; 'pc,': 0.91; '2013': 0.98; 'to:addr:hotmail.com': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=vXxWUsuJrGnrTTFfMdD/8N1MyqVJkOCYts3yL348VHI=; b=dB1LtEqGrwOcMfhMiHvi6wNZzEgB+kDurO68N+ziwNNH+u2joNpGyruDDGudd/AN86 tMq9KVM5rWkSkcGEHN0+7kNHzmi2iwFuVaqrKGP7nXD8vealGBOTDKSLSosTiXp//68K Dl0bxV6uxMRIBc1NPY5PF9MqEl0mnYZM2+CUtr5P7mSG4sxlwhPcQRESQKsC6V4nFihJ fa9txYZD4IZMUA4RFgZbjJNhmIXJZoD4TM6xNmwxD1LGH7cATRrRJKnUoNUceTWaAWVo 6PY61taR+ytf0OE2TeM/EzW1t9wUlCaetg17T76U20dh5omibC7/Jn+3/L4LoLPZl5DP jY/Q== MIME-Version: 1.0 X-Received: by 10.52.75.227 with SMTP id f3mr3339781vdw.117.1375992227733; Thu, 08 Aug 2013 13:03:47 -0700 (PDT) Sender: skip.montanaro@gmail.com In-Reply-To: <092fdbf5-1db3-4ea5-82ee-4b02cec80dc6@googlegroups.com> References: <092fdbf5-1db3-4ea5-82ee-4b02cec80dc6@googlegroups.com> Date: Thu, 8 Aug 2013 15:03:47 -0500 X-Google-Sender-Auth: atZ871TgxoR9wuJrMnuaPDjE-Yg Subject: Re: Python 3 and SSH Tunnel From: Skip Montanaro To: "D. Xenakis" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 20 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1375992229 news.xs4all.nl 15925 [2001:888:2000:d::a6]:47710 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:52226 On Thu, Aug 8, 2013 at 2:30 PM, D. Xenakis wrote: > HOWTO anyone? > > What im trying to succeed here is create one SSH tunnel, so that i can co= nnect from a python script running on my pc, to a remote MySQL database run= ning on my Host and id like to stick with Python 3.3 . http://lmgtfy.com/?q=3Dpython3+ssh+tunnel First hit: http://zeromq.github.io/pyzmq/ssh.html which says, in part: "pexpect has no Python3 support at this time, so Python 3 users should get Thomas Kluyver=E2=80=99s pexpect-u fork." Also, search PyPI for "tunnel". There might well be something useful there= . Skip