Help Wanted for the error

2019-09-27 Thread tommy yama
Hi , Has anyone seen similar errors previously? I just encountered the error below and need to fix asap. File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/google/protobuf/descriptor_pool.py", line 175, in _CheckConflictRegister raise TypeError(error_msg) Ty

Egg help wanted

2014-10-03 Thread cl
I have installed (using easy_install) a little utility, it seems to have installed just the top-level python script in /usr/local/bin which in turn uses load_entry_point() to run the actual code. As far as I can see the code and support files remain in the .egg file in /usr/local/lib/python2.7/dis

Help wanted: Writing a PMI Project Management system

2013-10-04 Thread john . r . moser
I'm looking for anyone who has an interest in project management; workable Python design and programming skills; and wants to code for an open source Project Management system. Having used Redmine, Launchpad, Trak, OpenProj, and so on, I've found there's no good PM tools. Microsoft Project and

help wanted with list

2009-09-24 Thread Xavier Lapointe
Not sure I understand well, but let say I did.. list[list.index('a')+1] Le 14:59, Ahmed Shamim a écrit : list = [ 'a', '1', 'b', '2'] what would be the logic, if I input a to get output 1. -- http://mail.python.org/mailman/listinfo/python-list

Re: help wanted with list

2009-09-24 Thread Simon Brunning
2009/9/24 Ahmed Shamim : > list = [ 'a', '1', 'b', '2'] > what would be the logic, if I input a to get output 1. Turn it into a dictionary first: >>> mylist = [ 'a', '1', 'b', '2'] >>> mydict = dict(zip(mylist[::2], mylist[1::2])) >>> mydict['a'] '1' -- Cheers, Simon B. -- http://mail.python.o

Re: help wanted with list

2009-09-24 Thread Iuri
You should use a dictionary. dic = {'a':1, 'b':2} Use dic['a'] to get output 1. []s iurisilvio On Thu, Sep 24, 2009 at 5:31 PM, Ahmed Shamim wrote: > list = [ 'a', '1', 'b', '2'] > what would be the logic, if I input a to get output 1. > -- > http://mail.python.org/mailman/listinfo/python-lis

help wanted with list

2009-09-24 Thread Ahmed Shamim
list = [ 'a', '1', 'b', '2'] what would be the logic, if I input a to get output 1. -- http://mail.python.org/mailman/listinfo/python-list

Help Wanted (Volunteer(s))

2008-02-08 Thread Steve Holden
The Job Board needs you, please see http://pyfound.blogspot.com/2008/02/help-needed-with-python-job-board.html regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Help wanted with GTK+ program

2008-01-16 Thread DBenjamin
On Jan 8, 5:49 pm, [EMAIL PROTECTED] wrote: > I'm working on a simple GTK+ wrapper around the flash Pandora Radio > player (Pandora.com). > > It's very basic right now but I've got it almost working. > I'm using gtkmozembed to fetch and use the player and dbus to detect > multimedia keys. > The onl

Help wanted with GTK+ program

2008-01-08 Thread Hollaburoo
I'm working on a simple GTK+ wrapper around the flash Pandora Radio player (Pandora.com). It's very basic right now but I've got it almost working. I'm using gtkmozembed to fetch and use the player and dbus to detect multimedia keys. The only problem I'm having is that the mozembed widget doesn't

Help wanted for opensource project

2007-10-25 Thread news.interbusiness.it
I'm looking for Python programmers for an open source project: http://sourceforge.net/projects/spectrag/ SpectraG is a program to generate, edit and convert gradients. Formats: ggr, svg, ... Gradients are used in Inkscape, The Gimp, and are an essential tool for graphics. Current Gradient Edito

Re: PyFAQ: help wanted with thread article

2006-11-14 Thread Laurent Pointal
Fredrik Lundh a écrit : > this FAQ item talks about using sleep to make sure that threads run > properly: > > http://effbot.org/pyfaq/none-of-my-threads-seem-to-run-why.htm > > I suspect it was originally written for the "thread" module, but as > far as I know, the "threading" module takes care o

PyFAQ: help wanted with thread article

2006-11-14 Thread Fredrik Lundh
this FAQ item talks about using sleep to make sure that threads run properly: http://effbot.org/pyfaq/none-of-my-threads-seem-to-run-why.htm I suspect it was originally written for the "thread" module, but as far as I know, the "threading" module takes care of the issues described here all by it

Re: help wanted regarding displaying Japanese characters in a GUI using QT and python

2006-04-20 Thread David Boddie
Out of interest, I've written some code to show your example text and added it to the PyQt Wiki: http://www.diotavelli.net/PyQtWiki/Decoding_Japanese_Text I used the codec for Shift-JIS to obtain a unicode representation of the string, as Serge suggested. David -- http://mail.python.org/m

Re: help wanted regarding displaying Japanese characters in a GUI using QT and python

2006-04-20 Thread Serge Orlov
prats wrote: > sorry I did not correctly read your point. I works fine. Thanks for > your help. > I have one more query. It was said that the text I was supposed to show > was written using "ISO-2022-JP" charset. But It didn't when I decoded > it using that charset. But it worked fine with the "shi

Re: help wanted regarding displaying Japanese characters in a GUI using QT and python

2006-04-20 Thread John Machin
On 20/04/2006 8:15 PM, prats wrote: > sorry I did not correctly read your point. I works fine. Thanks for > your help. > I have one more query. It was said that the text I was supposed to show > was written using "ISO-2022-JP" charset. Where more than one encoding is in use for a language, some pe

Re: help wanted regarding displaying Japanese characters in a GUI using QT and python

2006-04-20 Thread prats
sorry I did not correctly read your point. I works fine. Thanks for your help. I have one more query. It was said that the text I was supposed to show was written using "ISO-2022-JP" charset. But It didn't when I decoded it using that charset. But it worked fine with the "shift-jis" encoding. Is it

Re: help wanted regarding displaying Japanese characters in a GUI using QT and python

2006-04-20 Thread Serge Orlov
prats wrote: > I think I could not make myself clear. On the contrary. You've given enough information for me to do what you want: decoding your text and displaying it in a GUI. The fact that I used another GUI is not important, read below why. > I have a GUI written in Python > and Qt and PyQt a

Re: help wanted regarding displaying Japanese characters in a GUI using QT and python

2006-04-20 Thread prats
I think I could not make myself clear. I have a GUI written in Python and Qt and PyQt as the python wrappper fro QT. Now I have a string which is base64 encoded. This string contains both japanese and english charaters. I need to decode them and display them properly in the GUI ie. with both englis

Re: help wanted regarding displaying Japanese characters in a GUI using QT and python

2006-04-20 Thread Serge Orlov
prats wrote: > Hi all, > this is in continuation to my previous post. > The text I want to display is (in base64 encoding): > This text contains both english and japanese characters i.e first few > english characters followed by some japanese characters. > > the decoded_string variable contains th

Re: help wanted regarding displaying Japanese characters in a GUI using QT and python

2006-04-19 Thread prats
No I need to replace the text given by the user in the GUI by a new text already in ISO-2022-JP encoding. Then I would have to redisplay this new text. I explain in detail. I have a text file(say) which has something written in it using base64 encoding and using charset ISO-2022-JP. I want to displ

Re: help wanted regarding displaying Japanese characters in a GUI using QT and python

2006-04-19 Thread David Boddie
[Posting via Google's web interface again and hoping that double newlines will prevent insane concatenation of lines...] prats wrote: > I want to write a GUI application in PYTHON using QT. This application > is supposed to take in Japanese characters. I am using PyQt as the > wrapper for using

help wanted regarding displaying Japanese characters in a GUI using QT and python

2006-04-19 Thread prats
I want to write a GUI application in PYTHON using QT. This application is supposed to take in Japanese characters. I am using PyQt as the wrapper for using QT from python. I am able to take input in japanese. But I am unable to display them back to GUI. It displays some junk characters Can anyone s

Re: Help wanted with md2 hash algorithm

2006-01-11 Thread wjb131
Tom Anderson wrote: > On Sun, 8 Jan 2006, Tom Anderson wrote: > > > On Fri, 6 Jan 2006 [EMAIL PROTECTED] wrote: > > > >> below you find my simple python version of MD2 algorithm as described > >> in RFC1319 (http://rfc1319.x42.com/MD2). It produces correct results > >> for strings shorter than 16

Re: Help wanted with md2 hash algorithm

2006-01-10 Thread Tom Anderson
On Sun, 8 Jan 2006, Tom Anderson wrote: > On Fri, 6 Jan 2006 [EMAIL PROTECTED] wrote: > >> below you find my simple python version of MD2 algorithm as described >> in RFC1319 (http://rfc1319.x42.com/MD2). It produces correct results >> for strings shorter than 16 Bytes and wrong results for long

Re: Help wanted with md2 hash algorithm

2006-01-10 Thread wjb131
Paul Rubin wrote: > [EMAIL PROTECTED] writes: > > I thought I had build a proper implementation in Python. The error you > > mention can be avoided by studying the C implementation in RFC 1319. > > BUT: Some of the test vectors failed. That's my problem ;-( > > And therefore I asked for help. > >

Re: Help wanted with md2 hash algorithm

2006-01-09 Thread Paul Rubin
Paul Rubin writes: > Hmm, did the test cases work for the RFC 1319 reference code? What > about OpenSSL? I just checked OpenSSL and all the test values it computes match the RFC. -- http://mail.python.org/mailman/listinfo/python-list

Re: Help wanted with md2 hash algorithm

2006-01-09 Thread Paul Rubin
[EMAIL PROTECTED] writes: > Already done before my first posting. But the problem was there. I > studied the C sources of MD2 of that package, too. But all test cases > with more than 16 bytes failed. Hmm, did the test cases work for the RFC 1319 reference code? What about OpenSSL? I thought whe

Re: Help wanted with md2 hash algorithm

2006-01-09 Thread wjb131
Paul Rubin wrote: > [EMAIL PROTECTED] writes: > > I thought I had build a proper implementation in Python. The error you > > mention can be avoided by studying the C implementation in RFC 1319. > > BUT: Some of the test vectors failed. That's my problem ;-( > > And therefore I asked for help. > >

Re: Help wanted with md2 hash algorithm

2006-01-09 Thread Paul Rubin
[EMAIL PROTECTED] writes: > I thought I had build a proper implementation in Python. The error you > mention can be avoided by studying the C implementation in RFC 1319. > BUT: Some of the test vectors failed. That's my problem ;-( > And therefore I asked for help. You might check PyCrypt against

Re: Help wanted with md2 hash algorithm

2006-01-09 Thread wjb131
Paul Rubin wrote: > [EMAIL PROTECTED] writes: > > I want to understand it, and -- therefor ;-) -- I want to implement it > > in pure Pyhton. > > OK. It should be pretty easy to implement. You should find the > official rfc at ietf.org. I remember there was some minor erratum in > the original v

Re: Help wanted with md2 hash algorithm

2006-01-09 Thread Paul Rubin
[EMAIL PROTECTED] writes: > I want to understand it, and -- therefor ;-) -- I want to implement it > in pure Pyhton. OK. It should be pretty easy to implement. You should find the official rfc at ietf.org. I remember there was some minor erratum in the original version that may or may not have

Re: Help wanted with md2 hash algorithm

2006-01-09 Thread wjb131
Paul Rubin wrote: > [EMAIL PROTECTED] writes: > > below you find my simple python version of MD2 algorithm > > as described in RFC1319 (http://rfc1319.x42.com/MD2). > > It produces correct results for strings shorter than 16 Bytes and wrong > > results for longer strings. > > Why do you want to u

Re: Help wanted with md2 hash algorithm

2006-01-07 Thread Paul Rubin
[EMAIL PROTECTED] writes: > below you find my simple python version of MD2 algorithm > as described in RFC1319 (http://rfc1319.x42.com/MD2). > It produces correct results for strings shorter than 16 Bytes and wrong > results for longer strings. Why do you want to use MD2? It's very slow and it's

Re: Help wanted with md2 hash algorithm

2006-01-07 Thread Tom Anderson
On Fri, 6 Jan 2006 [EMAIL PROTECTED] wrote: > below you find my simple python version of MD2 algorithm > as described in RFC1319 (http://rfc1319.x42.com/MD2). > It produces correct results for strings shorter than 16 Bytes and wrong > results for longer strings. > > I can't find what's wrong. > >

Help wanted with md2 hash algorithm

2006-01-07 Thread wjb131
hi all, below you find my simple python version of MD2 algorithm as described in RFC1319 (http://rfc1319.x42.com/MD2). It produces correct results for strings shorter than 16 Bytes and wrong results for longer strings. I can't find what's wrong. Can anybody help? Regards Wolfgang

Re: Help wanted in piping in Windows

2005-06-24 Thread Peter Hansen
Thomas Guettler wrote: > AFAIK ">file" and "2>file" does work on windows. Not, unfortunately (at least in the past), on Windows 98. That might no longer matter, however. How many people are still stuck using Windows 98? Given that in one year you won't even be able to get support from Microso

Re: Help wanted in piping in Windows

2005-06-24 Thread Thomas Guettler
Am Fri, 24 Jun 2005 01:28:38 +0530 schrieb Apple Grew: > I want to develope a Winboard like application which will support > Winboard protocol. For that I require to know how to handle piping in > Python. I seperated out module popen2, but when I use > fileObject.readline() then it halts the pr

Help wanted in piping in Windows

2005-06-23 Thread Apple Grew
I want to develope a Winboard like application which will support Winboard protocol. For that I require to know how to handle piping in Python. I seperated out module popen2, but when I use fileObject.readline() then it halts the program if the sub-process is waiting for user input; will execut

Help wanted

2005-05-17 Thread Jacob van Iwaarden
Hello NG, I'm a 59 year old Networker who was pushed to go to school for 2 years. I think I did it fine 'till now. But now I have to make a small project in Python with Y-Pages and Snakeletts. My Problem is that Python is like Arabian to me, and I have Time till Sunday. My Question: is here anyo

help wanted: poser to ogre 3d python script

2005-02-20 Thread verizon account
a community of online 3d developers is looking for a python script writer to write a script to export from poser to ogre3d .mesh/.skeleton formats, using the poser python script interpretor. please reply to [EMAIL PROTECTED]thanks!!   -- http://mail.python.org/mailman/listinfo/python-list