How to install py.xml plugin

2017-05-25 Thread Satya Rao
I wanted to install py.xml plugin. How to do that? Because this is using in pytest-html. pip install py.xml says no packages found. but in pytest-html they are importing this like below. from py.xml import html Thanks, Satya -- https://mail.python.org/mailman/listinfo/python-list

PyImport_ImportModule(..) returns NULL

2013-12-31 Thread python satya
pen("/var/tmp/abc.txt", "w"); fprintf(fp, "Fail to search in /var/tmp path"); fclose(fp); } else { /* Read input object ... */ } Py_Finalize(); return 0; } ==== $% more /var/tmp/abc.

Re: Learning Python in a group

2008-06-22 Thread Satya Kiran
You can count me in too.I've been into python for sometime now. I agree that a collaborative learning makes it fun and helps you reach your goal faster. -- http://mail.python.org/mailman/listinfo/python-list

a query on sorting

2006-09-27 Thread Satya Upadhya
4 (which originally correspondsto index 2) has now shifted to a position corresponding to index 1 andlikewise for element 6.The equivalent matlab code for getting the sorted indices is much simpler:if x is a list (array) of values, then just write:[y,i] = sort(x);and y will be a list containing the sorted

Re: Best IDE for Python

2006-08-14 Thread Satya
light weight, lots of features. Satya -- Posted via a free Usenet account from http://www.teranews.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Compiling wxPython app for Windows; Single EXE

2006-08-13 Thread Satya
lications. I just modified a few lines and I had a neat Windows Installer. Satya -- Posted via a free Usenet account from http://www.teranews.com -- http://mail.python.org/mailman/listinfo/python-list

Re: MVC for wxWidgets or Tkinter?

2006-08-04 Thread Satya
fast with a framework > and the MVC structure seems to work very well. I haven't used it personally, but Envisage from Enthought is supposed to be one. Satya -- Posted via a free Usenet account from http://www.teranews.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Python proficiency test

2006-07-23 Thread Satya Kiran
I managed to take the test,though not it's entirety. I am still far being proficient in Python,but I really liked the thought-provoking questions in there. thanks so much. Kiran Satya On 7/23/06, Ian Parker <[EMAIL PROTECTED]> wrote: > In message <[EMAIL PROTECTED]>, Ric

Configuring IDLE on Linux

2006-07-13 Thread Satya Kiran
lelib [EMAIL PROTECTED] idlelib]# python PyShell.py ** IDLE can't import Tkinter. Your Python may not be configured for Tk. ** How do I resolve this and get IDLE working? thanks in advance, Kiran Satya -- http://mail.python.org/mailman/listinfo/python-list

multiple raw_inputs

2005-11-24 Thread Satya Kiran
Hi there! I m a python newbie,infact,I m a newbie to programming and I was suggested it was a good idea to start it with python. I was trying a program which needs three integers from the user.I got it by using raw_input thrice. Is there a better way(s) to do it? Can a user be prompted thrice wit