Re: Why does Python want to read /proc/meminfo

2017-05-07 Thread Marko Rauhamaa
Dan Stromberg : > Also, don't be overly hard on SELinux. It's a relatively young > technology and may still adapt to such needs better in the future. SELinux suffers from big problems, the biggest being its lack of a proper methodology. There is no cookbook for developers for making their product

Re: I want to learn Python and how to benefit from the great Data Science packages - have some questions.

2017-05-07 Thread Shivangi Motwani
Hey! Learn Python The Hard Way is good, apart from that you can take Udacitie's Intro to Data Analysis: https://in.udacity.com/course/intro-to-data-analysis--ud170/ This will help you learn numpy and pandas which will be very useful. Hope that helps! On Sun, May 7, 2017 at 1:03 AM, Rahim Shamsy

Re: perl + python tutorial available for download

2017-05-07 Thread retsithortmdk
On Monday, June 30, 2008 at 9:45:18 AM UTC-7, Xah wrote: > my perl and python tutorial > > http://xahlee.org/perl-python/index.html > > is now available for download for offline reading. > Download link at the bottom. > >Xah > ∑ http://xahlee.org/ > > ☄ -- https://mail.python.org/mailman/

[ANN] Biovarase version 0..1

2017-05-07 Thread Beppe
[ANN] Biovarase Biovarase version 0.1 has been released. This is the first announcement about Biovarase on this list. Biovarase is an application to manage clinical quality control data. This is the Tkinter version. The purpose of Quality Control Assurance in a clinical laboratory is to allow

SQLObject 3.3.0

2017-05-07 Thread Oleg Broytman
Hello! I'm pleased to announce version 3.3.0, the first stable release of branch 3.3 of SQLObject. What's new in SQLObject === Features * Support for Python 2.6 is declared obsolete and will be removed in the next release. Minor features -- * Conver

Re: I want to learn Python and how to benefit from the great Data Science packages - have some questions.

2017-05-07 Thread breamoreboy
On Saturday, May 6, 2017 at 8:33:57 PM UTC+1, Rahim Shamsy wrote: > Hi, > > Hope you are well. I am currently in the process of learning the basics of > programming in Python, and was just checking if I am in the right direction. > I have experience programming in C++ and Java, and want to lear

Re: I want to learn Python and how to benefit from the great Data Science packages - have some questions.

2017-05-07 Thread breamoreboy
On Sunday, May 7, 2017 at 8:21:01 AM UTC+1, Shivangi Motwani wrote: > Hey! > > Learn Python The Hard Way is good I cannot recommend LPTHW after the author had this https://learnpythonthehardway.org/book/nopython3.html to say late last year. The best of the rebuttals is here https://eev.ee/blo

Re: I want to learn Python and how to benefit from the great Data Science packages - have some questions.

2017-05-07 Thread Chris Angelico
On Mon, May 8, 2017 at 2:34 AM, Dennis Lee Bieber wrote: > I can partly agree with one aspect... In comparison to my old life > with > versions of FORTRAN, wherein standards were roughly 10 years apart, each > standard tended to accept all of a previous standard, while declaring > things

Cheetah 3.0

2017-05-07 Thread Oleg Broytman
Hello! I'm pleased to announce version 3.0.0, the first stable release of branch 3.0 of CheetahTemplate3. What's new in CheetahTemplate3 == Contributors for this release are Adam Karpierz and Jonathan Ross Rogers. Major features: - !!!THIS RELEASE REQUIRES RECOMP

Re: SQLObject 3.3.0

2017-05-07 Thread sum abiut
Thanks for the info On Mon, May 8, 2017 at 1:25 AM, Oleg Broytman wrote: > Hello! > > I'm pleased to announce version 3.3.0, the first stable release of branch > 3.3 of SQLObject. > > > What's new in SQLObject > === > > Features > > > * Support for Python 2.6 is decl

Re: cgi.FieldStorage() not work for python requests.post but work for requests.get

2017-05-07 Thread 程淼
在 2017年5月5日星期五 UTC+8下午6:04:26,程淼写道: > 在 2017年5月5日星期五 UTC+8下午6:02:04,程淼写道: > > here is the client use get > > -- > > import json > > import requests > > > > url = "http://abc.com:11/ip"; > > auth = {"ip":["10.100.1.1","10.100.1.2"]

Running opencv-python script in sub-interpreter causes a hang

2017-05-07 Thread Ashwin Prasad
Hi, We are hosting the python interpreter(version 2.7.13) in a C application and calling a python function that has some calls to opencv-python functions (Representative code fragments are below). When the python function is called in the main interpreter, it works fine. However, when the it is ca

Practice Python

2017-05-07 Thread gyrhgyrh100
Python - Exercise 5 1. Write a function that gets a list (list) of numbers. The function returns a new list of ordered square numbers from the smallest to grow. For example, for the list [2, 4, 5, 3, 1] the function returns [25, 16, 9, 4, 1]. 2. Write a function that receives a list (list) and a