Regarding 3D buttons in PyQT5

2019-03-28 Thread Vaibhav Kumar
Hi, I want to know that how can i create 3D buttons in PyQT5 window or an animated button. Regards Vaibhav -- https://mail.python.org/mailman/listinfo/python-list

Executing a C program from Python

2009-04-06 Thread vishakha vaibhav
Hi, I am very new to python. I have my cgi script written in Python. My CGI script should call a C program and collect the value returned by this program and pass it to the browser.   Can anyone help me out in this. How can I execute the c program and collect the return value.   I tried, import

export opengl context to pdf

2008-10-07 Thread Vaibhav . bhawsar
Hi, Does anyone know of a package that will allow me to output an opengl context as a PDF (or postscript)? I am using pyglet to render something on screen that i want to save as PDF. thanks! vaibhav -- Vaibhav Bhawsar -- http://mail.python.org/mailman/listinfo/python-list

export opengl context to pdf

2008-10-07 Thread Vaibhav . bhawsar
Hi, Does anyone know of a package that will allow me to output an opengl context as a PDF (or postscript)? I am using pyglet to render something on screen that i want to save as PDF. thanks! vaibhav -- http://mail.python.org/mailman/listinfo/python-list

error in SimpleXMLRPCServer

2008-07-06 Thread vaibhav pol
hi, I create a SimpleXMLRPCServer script which execute the command on server and return the result. code is below accessList=( 'test.org' ) class Server(SimpleXMLRPCServer.SimpleXMLRPCServer): def __init__(self,*args): SimpleXMLRPCServer.SimpleXMLRPCServer.__init__(self,(args

[no subject]

2008-04-08 Thread vaibhav pol
hi, I wrote a python program and import the function and executing , that fuction get executing as the current uid what i have to do if i want to exectue that function as root or another user . -- http://mail.python.org/mailman/listinfo/python-list

Re: list problem 4 newbie

2006-06-25 Thread vaibhav
using the copy module. hope that helps, vaibhav >>> id(a) -1208622388 >>> id(b) -1208622324 >>> for el in a: ... print id(el) ... -1208622836 -1208622708 -1208622772 -1208622420 >>> for el in b: ... print id(el) ... -1208622836 -1208622708 -1208622772 -

Re: who can give me the detailed introduction of re modle?

2006-05-19 Thread vaibhav
easy and convenient way to get a good introduction for any module [especially if ur stuck and dont have internet connectivity]: 1. start python interpreter $ python 2. import the module and ask it for help :-) >>> import re >>> help(re) -vaibhav -- http://mail.python.or

Re: import woe

2006-05-18 Thread vaibhav
ive paths or make paths using os.getcwd combinations in such situations, which makes the class more flexible. you can also do this step where u configure/initialize 5. then you can import the classes you want in jar.py from foo import car from foo.bar import far pls mail if u dont get it working/any d

What are new-style classes?

2005-08-28 Thread Vaibhav
I recently heard about 'new-style classes'. I am very sorry if this sounds like a newbie question, but what are they? I checked the Python Manual but did not find anything conclusive. Could someone please enlighten me? Thanks! -- http://mail.python.org/mailman/listinfo/python-list