Find Programming Job?

2007-04-09 Thread Cindy
Find Your Programming Job Vacancy and resources here -->
http://www.jobbankdata.com/job-programming.htm

-- 
http://mail.python.org/mailman/listinfo/python-list


[Unblocking VoIP in UAE] for freedom!

2009-07-23 Thread cindy
Please view this newsletter online at:
http://www.mynewsletterbuilder.com/tools/view_newsletter.php?newsletter_id=1409985533
SpeedVoIP Communication Technology Co., LTD. - 600, 6th Avenue S.W. - Calgary
- Alberta - T2P 0S5

Subscribe to this newsletter:
https://www.mynewsletterbuilder.com/tools/subscription.php?username=svsales&send_id=712043215&l=s&newsletter_id=1409985533
Unsubscribe python-list@python.org:
https://www.mynewsletterbuilder.com/tools/subscription.php?username=svsales&send_id=712043215&l=u&email=python-l...@python.org
Change your preferences:
https://www.mynewsletterbuilder.com/tools/subscription.php?username=svsales&send_id=712043215&l=p&email=python-l...@python.org
Forward to a friend:
http://www.mynewsletterbuilder.com/tools/forward.php?username=svsales&newsletter_id=1409985533&email=python-l...@python.org&send_id=712043215
Report this email as spam:
https://www.mynewsletterbuilder.com/tools/abuse_report.php?username=svsales&send_id=712043215&email=python-l...@python.org

This email was sent using MyNewsletterBuilder.com.

-- 
http://mail.python.org/mailman/listinfo/python-list


ERROR: No matching distribution found for PyQt5==5.15.4

2021-12-13 Thread CINDY PANTALUNAN


-- 
*The contents of this email message and any attachments **thereto** are 
intended solely for the addressee(s) and may contain confidential and/or 
privileged information and may be legally protected from disclosure. If you 
are not the intended recipient of this message or their agent, or if this 
message has been addressed to you in error, please immediately **notify** 
the sender by reply email and delete this message and **its **attachments. 
Any unauthorized use, dissemination, copying, or storage of this message or 
its attachments **is subject to criminal and civil liability** under the 
Data Privacy Act of 2012 (RA 10173)** and the Intellectual Property Code of 
the Philippines (RA 8293), as may be applicable**.*
-- 
https://mail.python.org/mailman/listinfo/python-list


Python script for tracert

2008-09-29 Thread cindy jones
Hello.. I'm trying to do a scripting for tracert  in windows using python...
I'm using popen(), but it displays only after the tracert is completed. i
want the results to be displayed for every route.

can anyone help me in this..

Thank You
--
http://mail.python.org/mailman/listinfo/python-list

How to add CC and BCC while sending mails using python

2008-09-30 Thread cindy jones
Hello all,

Can someone tel me how to add cc's and bcc's while sending mails using
python

Thank you all
--
http://mail.python.org/mailman/listinfo/python-list

Re: Python script for tracert

2008-09-30 Thread cindy jones
Thank you so much Gabriel.. It works

On Wed, Oct 1, 2008 at 3:25 AM, Gabriel Genellina <[EMAIL PROTECTED]>wrote:

> En Tue, 30 Sep 2008 03:53:21 -0300, cindy jones <[EMAIL PROTECTED]>
> escribió:
>
>
> Hello.. I'm trying to do a scripting for tracert  in windows using
>> python...
>> I'm using popen(), but it displays only after the tracert is completed. i
>> want the results to be displayed for every route.
>>
>> can anyone help me in this..
>>
>
> Use the subprocess module:
>
> import subprocess
> host = 'www.microsoft.com'
> p = subprocess.Popen(["tracert", '-d', '-w', '100', host],
> stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
> while True:
>line = p.stdout.readline()
>if not line: break
>print '-->',line,
> p.wait()
>
> --
> Gabriel Genellina
>
> --
> http://mail.python.org/mailman/listinfo/python-list
>
--
http://mail.python.org/mailman/listinfo/python-list