Re: how raspi-idle3 configure?

2016-07-12 Thread memilanuk
Egon Mueller online.de> writes: > > Where can read a beginner so simple things about handling the python 3 > idle3? I don't think about python programming, only about better > handling the ide. > This link might be of some help... https://hkn.eecs.berkeley.edu/~DYOO/python/idle_intro/index.h

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-10 Thread memilanuk
e bad guys. Reach me @ memilanuk (at) gmail dot com -- https://mail.python.org/mailman/listinfo/python-list

Re: Creating a Virtual Environment

2015-07-08 Thread memilanuk
Generally when using Anaconda, they recommend you use their tool (conda) which works very well. It kind of incorporates the functions of pip and virtualenv together. If you already have the path to the anaconda python prepended to your path, the source...activate command shouldn't really be d

Re: installing libraries like numpy scipy matplotlib

2015-07-05 Thread memilanuk
address issues of package compatibility and dependencies - something that can be more of a pain on Windows than on Linux. * http://continuum.io/downloads ** https://www.enthought.com/products/epd/ -- Shiny! Let's be bad guys. Reach me @ memilanuk (at) gmail dot com -- https://mail.pyth

Re: New to Python - block grouping (spaces)

2015-04-16 Thread memilanuk
hing I see from Packt that I want to read... I might find it on Amazon, but I go to Packt's site and purchase the PDF. They have a harder time screwing that up, apparently. O'Reilly, on the other hand, gets it right. Period. -- Shiny! Let's be bad guys. Reach me @ memilanu

Re: New to Python - block grouping (spaces)

2015-04-16 Thread memilanuk
you really think that over the last 20 odd years that Python has been around that #2 and #3 have not been hammered out? Honestly, this is starting to smell more and more like a troll... -- Shiny! Let's be bad guys. Reach me @ memilanuk (at) gmail dot com -- https://mail.python.org/mailman/

Re: anaconda bug?

2015-03-17 Thread memilanuk
On 03/17/2015 09:51 AM, George Trojan wrote: On 03/16/2015 11:47 PM, memilanuk wrote: Might be just you... monte@machin-shin:~$ python Python 3.4.3 |Continuum Analytics, Inc.| (default, Mar 6 2015, 12:03:53) [GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux Type "help", "copyr

Re: anaconda bug?

2015-03-16 Thread memilanuk
; import tkinter >>> tkinter.Tk() >>> Just for the heck of it I created a new venv (using conda create -n test) and tried it again. Same thing. How are you creating your venv? Monte -- Shiny! Let's be bad guys. Reach me @ memilanuk (at) gmail dot com -- https://mail.python.org/mailman/listinfo/python-list

Picking apart a text line

2015-02-26 Thread memilanuk
to go, if a bit tedious to set up initially...? Any thoughts or suggestions from people who've gone down this particular path would be greatly appreciated. I think I have a general idea/direction, but I'm open to other ideas if the path I'm on is just blatantly wro

Re: 'Lite' Databases (Re: sqlite3 and dates)

2015-02-18 Thread memilanuk
On 02/18/2015 09:16 PM, Ben Finney wrote: memilanuk writes: In the past I've been waffling back and forth between a desktop client/server setup, or a web-based interface with everything on one computer. At this point I'm leaning toward the latter. So, it's been many exchanges

Re: 'Lite' Databases (Re: sqlite3 and dates)

2015-02-18 Thread memilanuk
On 02/18/2015 08:36 PM, Ben Finney wrote: memilanuk writes: They would need to be able to set up the application (and whatever database) on their laptop or PC, wherever that may be, and spend their time administering the event, not the database engine. So, the database will only be accessed

Re: 'Lite' Databases (Re: sqlite3 and dates)

2015-02-18 Thread memilanuk
ance running in Virtualbox might be simpler for the end user to set up and run. -- Shiny! Let's be bad guys. Reach me @ memilanuk (at) gmail dot com -- https://mail.python.org/mailman/listinfo/python-list

Re: 'Lite' Databases (Re: sqlite3 and dates)

2015-02-18 Thread memilanuk
it. -- Shiny! Let's be bad guys. Reach me @ memilanuk (at) gmail dot com -- https://mail.python.org/mailman/listinfo/python-list

'Lite' Databases (Re: sqlite3 and dates)

2015-02-18 Thread memilanuk
SQL Server, etc. out there but the only other 'free' one seems to be Firebird? Is that really the only other contender? Is there nothing that amounts to a 'PostgreSQLite'? -- Shiny! Let's be bad guys. Reach me @ memilanuk (at) gmail dot com -- https://mail.python.org/mailman/listinfo/python-list

Re: Begginer Question , what i need for web app and site

2015-01-10 Thread memilanuk
backend for processing data . what will be the Equivalent in python world ? Thanks! http://www.fullstackpython.com/ -- Shiny! Let's be bad guys. Reach me @ memilanuk (at) gmail dot com -- https://mail.python.org/mailman/listinfo/python-list

Re: Question on lambdas

2014-12-08 Thread memilanuk
On 12/08/2014 09:30 PM, Ben Finney wrote: memilanuk writes: ... lambda: update_label2('A', 100) would this work the same? (I don't know what you mean here by “the same”; the same as what?) The above creates a new function, which expects no parameters (because there ar

Re: Question on lambdas

2014-12-08 Thread memilanuk
On 12/08/2014 03:58 PM, Ben Finney wrote: memilanuk writes: What I'm having trouble finding a concrete answer to is the difference between: lambda: some_expr This creates a new function which expects zero parameters. The function, when called, will return the value of ‘some

Question on lambdas

2014-12-08 Thread memilanuk
lf.bind("", lambda e: "break") What I'm having trouble finding a concrete answer to is the difference between: lambda: some_func lambda e: some_func lambda e=e: some_func Any help would be greatly appreciated. TIA, Monte -- Shiny! Let's be bad guys.

Re: Python Programing for the Absoulte Beginner

2014-08-02 Thread memilanuk
On 08/02/2014 10:20 PM, Steve Hayes wrote: there are no books available on Python 3 (I don't regard downloadable PDFs > or other onlines stuff as "books"). That's a very broad... and very *wrong* statement. -- Shiny! Let's be bad guys. Reach me @ memilanuk

Re: "Full stack python" should be linked on python.org

2014-07-27 Thread memilanuk
he irony of a site all about 'full stack python' being built using a static-site generator like pelican? Arguably the right tool for the job, but still, it made me smile ;) -- Shiny! Let's be bad guys. Reach me @ memilanuk (at) gmail dot com -- https://mail.python.org/mailman/listinfo/python-list

Re: Best place to find sample data

2014-07-26 Thread memilanuk
On 07/26/2014 09:57 AM, Irmen de Jong wrote: On 26-7-2014 15:41, Nicholas Cannon wrote: Hey I need some sample data to test out and do stuff with. Also I am having strange errors with idle when i load a .txt file read it and then print it, idle crashes well kind of freezes. Not sure what is wron

Re: I want to do something with data

2014-07-23 Thread memilanuk
On 07/23/2014 03:20 PM, Nicholas Cannon wrote: Hey i am interested in using data in my programs. I know every program uses data but i want to do like large data processing and pick results out of a data like querying database. I dont really know what this is called though. Is it data analytics? i

Re: Network/multi-user program

2014-07-23 Thread memilanuk
On 07/21/2014 11:26 AM, Chris Angelico wrote: On Tue, Jul 22, 2014 at 4:16 AM, Monte Milanuk wrote: On 2014-07-21, Chris Angelico wrote: On Tue, Jul 22, 2014 at 2:07 AM, Monte Milanuk wrote: So I guess I'm asking for advice or simplified examples of how to go about connecting a client deskt

Re: OT: usenet reader software

2014-07-18 Thread memilanuk
On 07/18/2014 02:45 PM, Sturla Molden wrote: memilanuk wrote: Used leafnode way back when... correct me if I'm wrong, but if memory serves its a small news spool /server, not really a client/reader type application. Used to be popular back before slrnpull came about. Leafnode is an

Re: OT: usenet reader software

2014-07-18 Thread memilanuk
On 07/18/2014 01:46 PM, Sturla Molden wrote: Guess where I'm going with this is... is there anything out there worth trying - on Linux - that I'm missing? leafnode Used leafnode way back when... correct me if I'm wrong, but if memory serves its a small news spool /server, not really a clien

Re: OT: usenet reader software

2014-07-18 Thread memilanuk
On 07/18/2014 12:34 PM, Andrew Berg wrote: On 2014.07.18 14:10, memilanuk wrote: I'm on Ubuntu (14.04 LTS, if it matters) and I've been using Thunderbird for a lng time... I've tinkered with slrn off and on over the years, tried pan occasionally due to recommendations... bu

OT: usenet reader software

2014-07-18 Thread memilanuk
Given the ongoing hub-bub about Google Groups and some recent long threads where I *really* wanted to be able to mute/ignore certain individuals/subjects... I started looking into other choices for Usenet reader software again. I use news.gmane.org as a mail2news gateway for reading a lot of l

Re: Shared web hosting where python is *not* a second class citizen

2014-05-25 Thread memilanuk
On 05/25/2014 10:29 AM, Tim Golden wrote: On 25/05/2014 18:25, memilanuk wrote: So I'm left wondering if there is someplace that people here would recommend (for this kind of plan or others) where python isn't a second class citizen. Really not interested (for my current uses) in

Shared web hosting where python is *not* a second class citizen

2014-05-25 Thread memilanuk
Right now we have a fairly basic shared hosting plan via bluehost.com, running WordPress for a club web site. I've looked at setting up python on this account, but the default is the version of python that comes with the OS (CentOS 5.x currently). There are some basic instructions on upgrading

Re: Python example source code

2014-01-12 Thread memilanuk
On 01/12/2014 06:37 AM, ngangsia akumbo wrote: where can i find example source code by topic? Any help please nullege.com is usually helpful... -- https://mail.python.org/mailman/listinfo/python-list

Re: Installing Python 3.3.2 pip

2013-11-17 Thread memilanuk
On 11/17/2013 01:56 AM, Nikos wrote: python3.4 is gone at this stage. Now if i only could install pip for Python 3.3.2 Here is what i have tried: root@secure [~]# which python3 /usr/bin/python3 root@secure [~]# which pip /usr/bin/pip root@secure [~]# yum install pip3 Loaded plugins: fastestm

Re: Python Practice Problems

2013-11-03 Thread memilanuk
On 11/03/2013 06:06 PM, yungwong@gmail.com wrote: Hi, who has some problems to practice using Python? Thx a lot! http://projecteuler.net/ is always a good bet -- https://mail.python.org/mailman/listinfo/python-list

Re: CRUD library

2013-09-30 Thread memilanuk
On 09/30/2013 03:14 AM, AdamKal wrote: Hi, Do you know any library or framework that unifies CRUD somehow. Sounds kind of like the DAL (Data Abstaction Layer/Language) from web2py, perhaps? I think I've heard of it being able to be used outside a regular web2py install... not sure, haven't

Re: better and user friendly IDE recommended?

2013-09-14 Thread memilanuk
On 09/12/2013 02:15 PM, Adrián Espinosa wrote: I suggest you to use IntelliJ IDEA. It has a plugin for Python and Django (web framework). It works flawlessly. If one were inclined to go that route, wouldn't PyCharm typically be a better choice? -- https://mail.python.org/mailman/listinfo/

Re: Can someone suggest better resources for learning sqlite3? I wanted to use the Python library but I don't know sql.

2013-08-06 Thread memilanuk
On 08/03/2013 10:57 AM, Aseem Bansal wrote: > I was writing a Python script for getting the user stats of a > website(Specifically codereview.stackexchange). I wanted to store the > stats in a database. I found Python3's sqlite3 library. I found that > I needed sql commands for using it. > > I hav

Re: Using system python vs. updated/current version

2013-07-31 Thread memilanuk
On 07/31/2013 12:17 PM, Prasad, Ramit wrote: > You should be able to install both Python 2 and 3 in most modern > Linux distributions (at the same time). I would not change the system > Python version. I hadn't really planned on mucking with the system python... I recall from a long while back (on

Using system python vs. updated/current version

2013-07-31 Thread memilanuk
Hello there, What would be considered the correct/best way to run a current release of python locally vs. the installed system version? On openSUSE 12.3, the repos currently have 2.7.3 and 3.3.0. As far as I know, I'm not really hitting any limitations with the existing versions - my skills just

Re: Stack Overflow moderator “animuson”

2013-07-10 Thread memilanuk
On 07/10/2013 05:39 AM, Joshua Landau wrote: On 10 July 2013 13:35, Skip Montanaro wrote: Either that or it's funny only to other Australians. Or the Dutch. Or us Brits. Or the Yanks... Normally I kill-file threads like this pretty early on, but I have to admit - I'm enjoying watching

Re: Beginner - GUI devlopment in Tkinter - Any IDE with drag and drop feature like Visual Studio?

2013-07-04 Thread memilanuk
On 07/04/2013 06:23 AM, Aseem Bansal wrote: I want to start GUI development using Tkinter in Python 2.7.5. I have been searching all over google but couldn't find any IDE that has drag-and-drop feature for Python GUI development. For Tkinter, no luck. The general consensus always seems to be

Re: usenet reading

2012-05-25 Thread memilanuk
On Friday, May 25, 2012 3:38:55 PM UTC-7, Jon Clements wrote: > Hi All, > > Normally use Google Groups but it's becoming absolutely frustrating - not > only has the interface changed to be frankly impractical, the posts are > somewhat random of what appears, is posted and whatnot. (Ironically po

Are there any instrumentation widgets for wxpython or tkinter?

2012-05-18 Thread memilanuk
PyQt4 has built-in widgets for things like digital counters & dials... kind of surprising there aren't more instrument related widgets out there... -- http://mail.python.org/mailman/listinfo/python-list

Re: stackoverflow and c.l.py

2011-09-14 Thread memilanuk
On 09/14/2011 05:47 AM, Chris Angelico wrote: The SNR here isn't bad either. Most of the spam gets filtered out, and even stuff like Ranting Rick posts can be of some amusement when it's a slow day... I subscribe to the list via Gmane, and if 'most of the spam' gets filtered out, I'd hate to s

Re: stackoverflow and c.l.py

2011-09-14 Thread memilanuk
On 09/13/2011 09:12 PM, Stefan Behnel wrote: Matt Joiner, 14.09.2011 04:23: i'm curious as to what can be done with (and handled better) by adjusting sys.setswitchinterval i've opened a question on SO for this, that people might find of interest: http://stackoverflow.com[...] I wonder why peop

Re: Should a beginner do some coding excises? How can I find the sources?

2011-09-12 Thread memilanuk
On 09/12/2011 09:20 PM, sillyou su wrote: I'm reading "Learning Python"( Chinese version). Before I go through the whole book, I want to do some excises matching each charter. Any tips? Any better advice? For the code examples, have you tried looking up the home page for the book? Google fo

Re: Beginner needs advice

2011-05-24 Thread memilanuk
On 05/24/2011 03:17 PM, Lew Schwartz wrote: Here's my background: I'm a Windows based Visual FoxPro developer, and I want to start programming in Python. I'll be sticking to Windows (XP & 7) and my immediate needs are to manage & display large groups of jpg's, tiff's etc... so I need form based