Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Chris Angelico Newsgroups: comp.lang.python Subject: Re: How to connect the MYSQL database to Python program? Date: Thu, 10 Dec 2015 04:57:45 +1100 Lines: 10 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: news.uni-berlin.de pwuYfok20nkI5w+MYSlqsQE/0foqZBS1MJpeyKoFHYog== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:Python': 0.05; 'cc:addr:python-list': 0.09; 'subject:How': 0.09; 'python': 0.10; 'thu,': 0.15; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'program?': 0.16; 'pypi.': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:program': 0.16; 'wrote:': 0.16; 'module,': 0.18; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'am,': 0.23; 'dec': 0.23; 'header:In- Reply-To:1': 0.24; 'module': 0.25; 'message-id:@mail.gmail.com': 0.27; 'that.': 0.30; 'lets': 0.33; 'received:google.com': 0.35; 'received:209.85': 0.36; 'subject:?': 0.36; 'subject:: ': 0.37; 'received:209.85.213': 0.37; 'received:209': 0.38; 'subject:the': 0.39; 'your': 0.60; 'chrisa': 0.84; 'ict': 0.84; 'to:none': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=/o82UV+AMuDGFxYQ/7E0RZHALL9K/gj0SWbeqIzPGNg=; b=QZfwyS4V71ZmCfBsyZib7FsK8uO4feVOz2moMMNKwNGczH4trXQ/vqURJnOC2Z0nNf gndsY80eCRIZs6EmM13UuAQMe+GN7C0PnM4ioew3W5U/oCThpwpcejr8MHE4lYW5g4B1 2m2RF1XZuy2qWdWI/z/VQeGPxXAnw98Vl8qySHpCB387hcxAfO25UbAuiXNRENtyqfNv 87aIEz0IEGeV+8iIp4u+wnSWua8Ar0H3ohAbuRusoPVIP+yInflw3VpfQKTQjzU4QOdZ 9Qd4MVl/k8cfGsAcvZtdJ2yLODXacAhqUDYXhEkHIfOkW69oLVPZ/L+A1cMhmVyOoGFi 1jAA== X-Received: by 10.50.28.19 with SMTP id x19mr17421187igg.92.1449683865890; Wed, 09 Dec 2015 09:57:45 -0800 (PST) In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:100207 On Thu, Dec 10, 2015 at 4:51 AM, ICT Ezy wrote: > Pl explain me how to connect the MYSQL database to Python program? You start by looking for a module that lets you do that. You can use your favourite web search engine, or go directly to PyPI. Then you learn how to use that module, including learning SQL if you don't already know it. ChrisA