Apple Pie Parser with Python?

2007-06-22 Thread datulaida ali
Hi, How to integrate Apple Pie Parser with Python? Any suggestion to parsed text with Python? -- http://mail.python.org/mailman/listinfo/python-list

How to import java class used Jython in Python?

2007-07-16 Thread datulaida ali
Hi all... How to import Semantic class used Jython in Python? here my java code.. JAVA CODE import java.text.BreakIterator ; class Semantic { // native C++ method //public native void printMessage( String message ); public native String printMessage( String message );

Call script which accepts com. line par. from another script and error control

2007-05-23 Thread Karim Ali
Hi, I would really appreciate help on this. I have a script (s1.py) which I would like to call from another script (s2.py). No problem there. The first issue is that s1.py has a command line parser which I would like to keep but instead of fetching the information from the command line, I woul

Re: Call script which accepts com. line par. from another scriptand error control

2007-05-24 Thread Karim Ali
ich accepts com. line par. from another >scriptand error control >Date: Wed, 23 May 2007 17:21:47 -0700 > >Karim Ali wrote: > > def MAIN(expression2parse)<- add a main so can > > call from other script > >Of course you don't mean yo

Re: Call script which accepts com. line par. from another scriptanderror control

2007-05-24 Thread Karim Ali
>Karim Ali wrote: > > > What I still dont know though is how do I handle the fact that the first > > script is expecting command line parameters. I would like to be able to > > replace the command line parameters by a variable such that the second > > script can ca

Reading a file and resuming reading.

2007-05-25 Thread Karim Ali
Hi, Simple question. Is it possible in python to write code of the type: - while not eof <- really want the EOF and not just an empty line! readline by line end while; - What I am using now is the implicit for loop after a readlines().

Re: Reading a file and resuming reading.

2007-05-25 Thread Karim Ali
Hrvoje Niksic <[EMAIL PROTECTED]> wrote: >If you open the file in binary mode, you can easily keep track of the >position in file: > >bytepos = 0 >with file(filename) as f: > for line in f: > ... process line ... > bytepos += len(line) > >If you need to restart the operation, simply seek

Appending a log file and see progress as program executes

2007-05-30 Thread Karim Ali
Hi, I am writing a program that will take several days to execute :) and would like to append to a log file but be able to open that file at any time and see the errors that have occured. So this is what I am doing: -- flog = open('out.log', 'a') ...

looping list?

2007-12-13 Thread datulaida ali
hi.. i'm trying to insert value into list according to the key (ASCII) that i generate.. example : win = 95, so must insert into list[95] and = 70, so must insert into list[70] this is my coding.. __ list = [] try: conn = MySQLdb

Feedback

2008-11-22 Thread Ali art
I am using Windows XP professional version 2002 Service pack 3. AMD Athlon(TM)XP 2400+ 2.00GHz 992MB RAM.I have download Windows x86 MSI Instaler (3.0rc2) Python 3.0rc2 Release: 06-Nov-2008. I want to use source code file from Python Command line but I could not. Firstly i opened IDLE and cli

UnicodeEncodeError

2008-12-15 Thread Ali art
Hello! I am using Windows XP professional version 2002 Service pack 3. AMD Athlon(TM)XP 2400+ 2.00GHz 992MB RAM. I have downloaded Windows x86 MSI Instaler Python 3.0 (sig) (r30:67507, Dec 3 2008, 20:14:27) [MSC v.1500 32 bit (Intel)] on win32 Control Panel -> System -> Advanced -> Environment

pyMPI error on mpi.barrier()

2009-05-07 Thread Dina Ali
Hello there I am trying to paralleize GA code using pyMPI. part of the code and and the error message is as below. i write the new positions in a file by root (which is mpi.rank = 0) then other processes are suppose to wait until the written in the file finishes to start evaluating the objective.

pyMPI error on mpi.barrier

2009-05-09 Thread Dina Ali
Hello there I am trying to paralleize GA code using pyMPI. part of the code and and the error message is as below. i write the new positions in a file by root (which is mpi.rank = 0) then other processes are suppose to wait until the written in the file finishes to start evaluating the objective.

pyMPI error on mpi.barrier

2009-05-09 Thread Dina Ali
Hello there I am trying to paralleize GA code using pyMPI. part of the code and and the error message is as below. i write the new positions in a file by root (which is mpi.rank = 0) then other processes are suppose to wait until the written in the file finishes to start evaluating the objective.

pyMPI error on mpi.barrier

2009-05-09 Thread Dina Ali
Hello there I am trying to paralleize GA code using pyMPI. part of the code and and the error message is as below. i write the new positions in a file by root (which is mpi.rank = 0) then other processes are suppose to wait until the written in the file finishes to start evaluating the objective.

pympi and threading in python

2008-08-11 Thread Dina Ali
Hello there I am confused in the usage/differences of pympi and threading in python. What I want to do it to run multiple MCMC simulations by dividing the number of the chains I want to run on number of the processors available. Some methods need to be synchronized/locked until some addition opera

Socket Question

2008-10-01 Thread Ali Hamad
Hello All : A socket question from a networking newbie. I need to create a server that: 1) receive a message from client. 2) check that message and response to it. 3) the client get the server message and send another message. 4) finally, the server receive the message and close the connection.

hot hot and hot indian actresses

2011-02-16 Thread Ashraf Ali
Hello friends how r u all? what about indian hot girls? just visit www.hotpictures-glaxi.blogspot.com www.onlinetv-glaxi.blogspot.com www.onlineradio-glaxi.blogspot.com -- http://mail.python.org/mailman/listinfo/python-list

Hello Friends

2011-02-19 Thread Ashraf Ali
Would you like to know about indian acttractive actresses. You can know about their life.Would you like to remain informed about latest News. So, just visit the following websites www.newsbeam.blogspot.com www.hotpics00.blogspot.com www.onlinegames786.blogspot.com www.tvlive00.blogspot.com www.funn

video

2010-06-28 Thread ali alali
http://www.islamhouse.com/tp/236845 -- http://mail.python.org/mailman/listinfo/python-list

Why does os.stat() tell me that my file-group has no members?

2012-12-19 Thread saqib . ali . 75
I'm using python 2.6.4 on Solaris 5-10. I have a file named "myFile". It is owned by someone else, by I ("myuser") am in the file's group ("mygrp"). Below is my python code. Why does it tell me that mygrp has no members??? >>> import os, pwd, grp >>> stat_info = os.stat("myFile") >>> fileUID

Re: Why does os.stat() tell me that my file-group has no members?

2012-12-19 Thread saqib . ali . 75
Thanks!! This was very helpful. It worked perfectly. I had no clue about the intricacies of how python represents the group data from the underlying OS. This page doesn't go into to detailed explanation like you did: http://docs.python.org/2/library/grp.html On Wednesday, December 19, 2012 6

Why is pexpect acting funny with sendline() and expect()?

2012-12-26 Thread saqib . ali . 75
I am running Solaris 5-10, python 2.6.2 and pexpect 2.4 I have the very simple python script below which exercises the functionality of sending and receiving text from the shell. My understanding is that pexepect([pexpect.TIMEOUT, x,y,z], timeout=w) will return the index of the match that it fo

python3 byte decode

2017-11-03 Thread Ali Rıza KELEŞ
ot;some" is b"some".decode() ``` Or vice versa? I read that `is` compares same objects, not values. So my question is why "s" and b"s".decode() are same objects, while the others aren't? My python version is 3.6.3. Thanks. -- -- Ali Rıza Keleş -- https://mail.python.org/mailman/listinfo/python-list

Re: python3 byte decode

2017-11-07 Thread Ali Rıza KELEŞ
Hi, On 5 November 2017 at 04:06, Cameron Simpson wrote: > On 04Nov2017 01:47, Chris Angelico wrote: >> >> On Fri, Nov 3, 2017 at 8:24 PM, Ali Rıza KELEŞ >> wrote: >>> >>> Yesterday, while working with redis, i encountered a strange case. >>&

Weak Type Ability for Python

2023-04-12 Thread Ali Mohseni Roodbari
Hi all, Please make this command for Python (if possible): >>> x=1 >>> y='a' >>> wprint (x+y) >>> 1a In fact make a new type of print command which can print and show strings and integers together. Sincerely yours, Ali. -- https://mail.python.org/mailman/listinfo/python-list

Re: email automation

2018-10-23 Thread Ali Rıza KELEŞ
ing emails to grab some URIs of binary objects and queue them to be processed later. You can easily trigger a python script and do whatever you need in that script. If it is a long term process, you should just parse email and use queues for the rest. -- -- Ali Rıza Keleş -- https://mail.python.org/mailman/listinfo/python-list

a problem in Libs installs

2019-07-27 Thread Ali Keshavarz Nasab
Hi dear Mr/Maddam When I install some libs in CMD or Power shield the error is appeared: “Running setup.py install for pillow ... error”. Whats the solution and what is the best way to install Libs? I use 3.8.0b2 version. What is the best editor for python? Thanks alot Sent from Mail

Re: Python to c++ conversion problem

2005-03-23 Thread Ahmed MOHAMED ALI
Hi, Convert the string to int then cast the int to enum with static_cast. Ahmed "Akdes Serin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I have a code in python like > if eval('player.moveRoom(SeLinuxMud.Direction.' + x + ')'): # moveRoom > function takes Direction enum as a pa

Object Pool design pattern

2015-07-23 Thread Abder-Rahman Ali
Hello, How can we implement the Object Pool design pattern in Python, especially when the pool consists of array data types? Thanks. -- https://mail.python.org/mailman/listinfo/python-list

AttributeError: LineLogic instance has no attribute 'probe'

2015-07-27 Thread Abder-Rahman Ali
Hello, I'm quite puzzled with an error I'm having in my code. In the class ---> LineLogic I have the following portion of code: def __init__(self): self.probe = vtk.vtkProbeFilter() probe.SetInputConnection(line.GetOutputPort()) probe.SetSourceData(volumeNode.GetImageData()) probe.Update

Re: Happy Christmas Pythoneers

2007-12-24 Thread Nabeel Ali Memon
:-) sure if we had machines addressing above hexa... On Dec 24, 2007 9:30 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > On Dec 24, 12:17�am, Paddy <[EMAIL PROTECTED]> wrote: > > After quite enjoying participating in the group in 2007, I'd like to > > wish you all a Merry Xmas. > > > > - Padd

platform.machine(): ImportError: No module named select

2009-04-15 Thread Ali H. Caliskan
quot;/opt/lib/python3.0/platform.py", line 905, in _syscmd_uname f = os.popen('uname %s 2> /dev/null' % option) File "/opt/lib/python3.0/os.py", line 629, in popen import subprocess, io File "/opt/lib/python3.0/subprocess.py", line 361, in import select ImportError: No module named select Kind regards, Ali -- http://mail.python.org/mailman/listinfo/python-list

Re: platform.machine(): ImportError: No module named select

2009-04-15 Thread Ali H. Caliskan
I'm using Arch Linux and the current python version is 2.6.1, so I did create a custom python3 package by myself and tried to install it on /opt directory. I believe it's a installation issue, because I skipped "make test" part during compilation, which failed with some e

Freesoftware for auto/intelligent code completing in Python

2008-06-30 Thread Ali Servet Dönmez
ld, otherwise I'd like discuss with whoever is willing to help me to get this thing done. I made my mind and I could volunteer to make this happen as thesis project for my incoming graduation in the next year. Regards you all, Ali Servet Dönmez -- http://mail.python.org/mailman/listinfo/python-list

Re: Freesoftware for auto/intelligent code completing in Python

2008-06-30 Thread Ali Servet Dönmez
On Jul 1, 12:15 am, Fuzzyman <[EMAIL PROTECTED]> wrote: > On Jun 30, 10:46 pm, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote: > > > > > I don't want to be so mean here, but how hard it could be be writing a > > freesoftware which would automatically/intell

Re: Freesoftware for auto/intelligent code completing in Python

2008-07-02 Thread Ali Servet Dönmez
On Jul 1, 12:15 am, Fuzzyman <[EMAIL PROTECTED]> wrote: > On Jun 30, 10:46 pm, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote: > > > > > I don't want to be so mean here, but how hard it could be be writing a > > freesoftware which would automatically/intell

Re: Freesoftware for auto/intelligent code completing in Python

2008-07-02 Thread Ali Servet Dönmez
ng the output of help([module]) > to a popup window. > > If your willing to help work on something like that I suggest contacting > Stani directlyhttp://pythonide.stani.be/or creating a plugin for > Geanyhttp://geany.uvena.de/ > > Ivan Ven Osdel > Software Engineerhttp://www.da

Re: Freesoftware for auto/intelligent code completing in Python

2008-07-03 Thread Ali Servet Dönmez
On Jul 3, 7:38 pm, Fuzzyman <[EMAIL PROTECTED]> wrote: > On Jul 2, 9:33 am, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote: > > > > > On Jul 1, 12:15 am, Fuzzyman <[EMAIL PROTECTED]> wrote: > > > > On Jun 30, 10:46 pm, Ali Servet Dönmez <[EMAIL PROT

Re: Freesoftware for auto/intelligent code completing in Python

2008-07-03 Thread Ali Servet Dönmez
On Jul 3, 7:42 pm, Fuzzyman <[EMAIL PROTECTED]> wrote: > On Jun 30, 11:25 pm, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote: > > > > > On Jul 1, 12:15 am, Fuzzyman <[EMAIL PROTECTED]> wrote: > > > > On Jun 30, 10:46 pm, Ali Servet Dönmez <[EMAIL

Re: Freesoftware for auto/intelligent code completing in Python

2008-07-03 Thread Ali Servet Dönmez
On Jul 2, 10:39 pm, Ivan Ven Osdel <[EMAIL PROTECTED]> wrote: > Not really, I have just worked with them more. > > - Original Message ----- > From: "Ali Servet Dönmez" <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Sent: Wednesday, July 2, 2008 1:15:04 P

Re: Freesoftware for auto/intelligent code completing in Python

2008-07-06 Thread Ali Servet Dönmez
On Jul 4, 12:56 am, "Python Nutter" <[EMAIL PROTECTED]> wrote: > If you guys can get your head out of IDE land, you'll find iPython > does a fantastic job at introspection and Auto-completion, you can > launch shell commands and editors and when done saving be back in the > iPython shell, save memo

Re: Freesoftware for auto/intelligent code completing in Python

2008-07-06 Thread Ali Servet Dönmez
On Jul 4, 7:10 am, Yu-Xi Lim <[EMAIL PROTECTED]> wrote: > Ali Servet Dönmez wrote: > > > I tried code come completion options in Emacs for Python, but none of > > them was satisfactory to me. I'd be glad to hear how did your friend > > get it work though. > &g

Re: Freesoftware for auto/intelligent code completing in Python

2008-07-06 Thread Ali Servet Dönmez
On Jul 4, 7:31 am, Jeroen Ruigrok van der Werven <[EMAIL PROTECTED] nomine.org> wrote: > -On [20080630 23:51], Ali Servet Dönmez ([EMAIL PROTECTED]) wrote: > > >This could be an extension, a plugin, an Emacs mode, a new editor or > >even a brand new huge all-fancy IDE, I d

Re: Freesoftware for auto/intelligent code completing in Python

2008-07-06 Thread Ali Servet Dönmez
On Jul 4, 8:58 am, Aspersieman <[EMAIL PROTECTED]> wrote: > Jeroen Ruigrok van der Werven wrote:> -On [20080630 23:51], Ali Servet Dönmez > ([EMAIL PROTECTED]) wrote: > > >> This could be an extension, a plugin, an Emacs mode, a new editor or > >> even a brand

Re: Freesoftware for auto/intelligent code completing in Python

2008-07-10 Thread Ali Servet Dönmez
On Jul 10, 1:07 am, Gros Bedo <[EMAIL PROTECTED]> wrote: > Hello, > Ali I totally support you, neither I couldn't find any really working code > completion for python in a free software, and it's really a mess, at least on > Linux. > > On

Particle research opens door for new technology

2009-07-09 Thread Rashid Ali Soomro
Big uses for small particles will be explored at the annual Particle Technology Research Centre Conference at The University of Western Ontario July 9 and 10. for more details on http://0nanotechnology0.blogspot.com -- http://mail.python.org/mailman/listinfo/python-list

Particle research opens door for new technology

2009-07-21 Thread Rashid Ali Soomro
Big uses for small particles will be explored at the annual Particle Technology Research Centre Conference at The University of Western Ontario July 9 and 10.more link http://0nanotechnology0.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list

Particle research opens door for new technology

2009-07-27 Thread Rashid Ali Soomro
Big uses for small particles will be explored at the annual Particle Technology Research Centre Conference at The University of Western Ontario July 9 and 10.more http://0nanotechnology0.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list

Particle research opens door for new technology

2009-07-29 Thread Rashid Ali Soomro
Big uses for small particles will be explored at the annual Particle Technology Research Centre Conference at The University of Western Ontario July 9 and 10.more http://0nanotechnology0.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list

How can I install

2016-04-04 Thread Mohamed Ali via Python-list
I have tried to install python and nltk but I couldn't. Please could you please help me because I need to work on natural language processing using Python. Regards,Mohamed -- https://mail.python.org/mailman/listinfo/python-list

HELP NEEDED application error 0xc000005

2019-09-25 Thread arshad ali via Python-list
Note: Forwarded message attached -- Original Message -- From: "arshad ali"arsh...@rediffmail.com To: python-list@python.org Subject: HELP NEEDED application error 0xc05--- Begin Message --- Respected sir, In my laptop with windows 7 ultimate 64 bit, when py

Help with Streaming and Chunk Processing for Large JSON Data (60 GB) from Kenna API

2024-09-29 Thread Asif Ali Hirekumbi via Python-list
ilar use cases or can offer any advice, it would be greatly appreciated. Thank you in advance for your help! Best regards Asif Ali -- https://mail.python.org/mailman/listinfo/python-list

Re: Help with Streaming and Chunk Processing for Large JSON Data (60 GB) from Kenna API

2024-09-29 Thread Asif Ali Hirekumbi via Python-list
> > Kind Regards, > > Abdur-Rahmaan Janhangeer > about <https://compileralchemy.github.io/> | blog > <https://www.pythonkitchen.com> > github <https://github.com/Abdur-RahmaanJ> > Mauritius > > > On Mon, Sep 30, 2024 at 8:00 AM Asif Ali Hireku

<    1   2