Re: [Tutor] ImportError: No module named connect

2015-11-03 Thread Steven D'Aprano
On Tue, Nov 03, 2015 at 12:59:26PM -0500, Tommy Peterson wrote: > I have been trying to install the MySQL Connect module for a day and a half. I see that you believe that you have solved your problem ("from mysql import connector" rather than "connect" or "connection") but for the record you ha

Re: [Tutor] Missing Standard Libraries on Python 3.5 for Mac

2015-11-03 Thread Zachary Ware
Hi Andrew, On Tue, Nov 3, 2015 at 11:20 AM, Andrew Machen wrote: > Hi, > > I am new to Python, and I am trying to use a Python Standard Library, namely > ‘unicodedata’, however it appears to be missing (others are also missing) > from the built-in libraries that come with Python 3.5 for Mac. >

Re: [Tutor] ImportError: No module named connect

2015-11-03 Thread Tommy Peterson
As I typed this out I double checked something. I resolved my own problem. Should have stepped back before posting. It is import mysql.connector not import mysql.connection From: stpete...@hotmail.com To: tutor@python.org Subject: ImportError: No module named connect Date: Tue, 3 Nov 2015 12:

[Tutor] ImportError: No module named connect

2015-11-03 Thread Tommy Peterson
I have been trying to install the MySQL Connect module for a day and a half. First I got an error saying that "No module named mysql" was installed. After a lot of trial and error I got passed that. I realized that because I have python installed in /usr/local that I needed to build and then in

[Tutor] Missing Standard Libraries on Python 3.5 for Mac

2015-11-03 Thread Andrew Machen
Hi, I am new to Python, and I am trying to use a Python Standard Library, namely ‘unicodedata’, however it appears to be missing (others are also missing) from the built-in libraries that come with Python 3.5 for Mac. I have searched the following directory, but have not found the library:

Re: [Tutor] Plotting with python

2015-11-03 Thread Oscar Benjamin
On 31 October 2015 at 00:00, Terry Carroll wrote: > If you were going to get started doing some simple plotting with Python 2.7 > (in my case, I'm simply plotting temperature against time-of-day) what would > you use? > > - matplotlib [1] > - gnuplot [2] > - something else entirely? I'd use ma