Re: Looking for volunteers developing wsgi Webmailer Application!

2014-10-04 Thread Tamer Higazi
Because the world really needs this crap that is developed in php5, or big Personal Information Management Systems like Horde, what often nobody needs. Am 04.10.2014 um 19:52 schrieb Denis McMahon: > On Sat, 04 Oct 2014 17:52:18 +0200, Tamer Higazi wrote: > >> I am planing t

Looking for volunteers developing wsgi Webmailer Application!

2014-10-04 Thread Tamer Higazi
Hi people! I am planing to develop on longer time a n open source Webmailer written in Python (not 2.7.x) with: bottle.py zca, zope.interface Mail sasl and/or dovecot python-slimta-piperelay a wsgi webmailer which could be easily added in uWSGI. I am looking for people, who'd like to contribut

Re: problems decoding json objects

2014-05-14 Thread Tamer Higazi
You are right! It was all alone my mistake which I recently figured out. Thanks for helping me. Tamer Am 14.05.2014 11:20, schrieb Ben Finney: > Tamer Higazi writes: > > That's not a valid JSON document. See http://json.org/>. > -- https://mail.python.org/mailman/listinfo/python-list

problems decoding json objects

2014-05-14 Thread Tamer Higazi
Hi people! My JSON String: from json.decoder import JSONDecoder myjs = '{"AVName":"Tamer","ANName":"Higazi","AAnschrift":"Bauerngasse","AHausnr":"1","APLZ":"55116","AOrt":"Mainz"},{"KontaktTel":["01234","11223344"],{"ZahlungsArt":"0"},{"ZugangsDaten":["tamer.hig...@nomail.com","mypass"]}' If I

Re: Python IM server

2014-04-01 Thread Tamer Higazi
Take Twisted! twistedmatrix has all you need! Am 31.03.2014 13:03, schrieb Wesley: > Hi all, > I want to develop a instant message server, simply has user and group > entity. > > Is there any better existing open-source one? > Thus I can download and have a look. > > Thanks. > Wesley >

Re: GUI:-please answer want to learn GUI programming in python , how should i proceed.

2013-12-15 Thread Tamer Higazi
e compiler. How would it be with wxPython ?! Thanks for your response Tamer On 16.12.2013 03:18, Mark Lawrence wrote: On 16/12/2013 00:34, Tamer Higazi wrote: But to be honest, I don't believe that Python is the best choice for GUI development, but it's only an opinion. Otherwis

Re: GUI:-please answer want to learn GUI programming in python , how should i proceed.

2013-12-15 Thread Tamer Higazi
For wxPython there is a good book. You will feel convinient. But to be honest, I don't believe that Python is the best choice for GUI development, but it's only an opinion. Otherwise I would advise you going into C++ and code with wxWidgets. Tamer On 14.12.2013 14:12, Jai wrote: GUI:-want

Re: grab dict keys/values without iterating ?!

2013-12-11 Thread Tamer Higazi
me make me sick I will workout a bselect sollution for my problem! Thanks for your support. Tamer On 11.12.2013 14:10, Peter Otten wrote: Tamer Higazi wrote: Hi Dave! You were absolutely right. I don't want to iterate the entire dict to get me the key/values Let us say this

Re: grab dict keys/values without iterating ?!

2013-12-11 Thread Tamer Higazi
.12.2013 06:47, Dave Angel wrote: On Wed, 11 Dec 2013 02:02:20 +0200, Tamer Higazi wrote: Is there a way to get dict by search terms without iterating the entire dictionary ?! I want to grab the dict's key and values started with 'Ar'... Your wording is so ambiguous that each

grab dict keys/values without iterating ?!

2013-12-10 Thread Tamer Higazi
Hi people! Is there a way to get dict by search terms without iterating the entire dictionary ?! Let us assume I have: {'Amanda':'Power','Amaly':'Higgens','Joseph':'White','Arlington','Black','Arnold','Schwarzenegger'} I want to grab the dict's key and values started with 'Ar'... I could ma

Fire Method by predefined string!

2013-11-17 Thread Tamer Higazi
Hi people! Assume we have 2 methods, one called Fire and the other __DoSomething. I want the param which is a string to be converted, that I can fire directly a method. Is it somehow possible in python, instead of writing if else statements ???! Tamer class(object): def Fire(self,param)

sendmail library ?!

2013-11-12 Thread Tamer Higazi
Hi people! I am looking for a python library that does mailing directly through "sendmail". When I look into the docs, I see only an "smtlip" library but nothing that could serve with sendmail or postfix. Any ideas ?! Thanks Tamer -- https://mail.python.org/mailman/listinfo/python-list

opposite of __init__.py

2013-08-19 Thread Tamer Higazi
Hi people! I have asked myself a question, if there is a opposite of "__init__.py" like "__del__.py" ?! I want, that when the application ends, certain functions are executed. I know I could make a constructor and a destructor, but I simply want to know if there is a opposite Thanks Tame

xsd:anyType parameter in suds!

2013-06-01 Thread Tamer Higazi
Hi people! I have a problem passing an xs:anyType Parameter in "suds". The original sample is an application, where a "PHP Array" is being passed for the remoted method. What is the same type in python to accomplish the task?! doc with sample: http://kasapi.kasserver.com/dokumentation/?open=soap

Re: SOAPpy.Types.faultType: Cannot use object of type stdClass as array

2013-03-24 Thread Tamer Higazi
results, even if the login and pass do not match. I think for many python developers it might be really interesting to know, WHAT A PHP ARRAY is in python in a SOAP environment. Tamer Am 23.03.2013 21:55, schrieb Chris Angelico: > On Sun, Mar 24, 2013 at 6:38 AM, Tamer Higazi wrote: >

Re: SOAPpy.Types.faultType: Cannot use object of type stdClass as array

2013-03-23 Thread Tamer Higazi
hashlib.sha1() m.update('userpass') SoapClient = Client(WSDL_AUTH) SoapClient.service.KasAuth({ 'KasUser':'userlogin', 'KasAuthType':'sha1', 'KasPassword':m.hexdigest(), '

Re: SOAPpy.Types.faultType: Cannot use object of type stdClass as array

2013-03-23 Thread Tamer Higazi
"suds" instead of soappy, and I am not getting further. Tamer Am 21.03.2013 17:21, schrieb Chris Angelico: > On Thu, Mar 21, 2013 at 6:06 AM, Tamer Higazi wrote: >> SOAPpy.Types.faultType: > type stdClass as array> > > stdClass looks like a PHP error. Chec

Soappy: "Fault SOAP-ENV:Client: session_lifetime_syntax_incorrect"

2013-03-23 Thread Tamer Higazi
Hi people! I try to access the service of my provider through SOAP, with the credentials I received from my provider once before. Hier ist der 33 lines of code: from SOAPpy import WSDL from SOAPpy.Errors import HTTPError as SoapHTTPError from SOAPpy.Types import faultType import hashlib class K

SOAPpy.Types.faultType: Cannot use object of type stdClass as array

2013-03-20 Thread Tamer Higazi
Hi poeple! I wrote a small script, and I am not getting smartwhat is ment with this error message... Any ideas?! I got this error message: SOAPpy.Types.faultType: File "/storage/PyProjects/toolsAPP/KASUpdate.py", line 32, in KasObj = KASSystem() File "/storage/PyProjects/toolsAPP/KASUpdat

Re: OT: Monty Python in Syria

2012-08-15 Thread Tamer Higazi
Exactly! NOT PROGRAMMING related has NOTHING TODO HERE! Tamer Am 15.08.2012 16:42, schrieb Dotan Cohen: > On Wed, Aug 15, 2012 at 5:41 PM, Dotan Cohen wrote: >> And now for something completely different. >> >> Not programming related, but at 1:20 I was expecting a different question: >> http:

Re: dictionary into desired variable....

2012-08-10 Thread Tamer Higazi
x27;s automaticly independently how deep i dig. Sorry for the inconvenience. Tamer Am 10.08.2012 16:31, schrieb Chris Angelico: > On Sat, Aug 11, 2012 at 12:02 AM, Tamer Higazi wrote: >> Hi! >> suppose you have a dictionary that looks like this: >> >> x = [1,3,6,1,1]

dictionary into desired variable....

2012-08-10 Thread Tamer Higazi
Hi! suppose you have a dictionary that looks like this: x = [1,3,6,1,1] which should represent a certain other variable. in reality it would represent: y[1][3][6][1][1] Now, how do I write a python routine, that points in this dictionary, where I should receive or set other values. Tamer --

Re: Communication between C++ server and Python app

2012-04-29 Thread Tamer Higazi
Take the twisted library. I used to write myself a socket server and client. Socket is fast, but you need on the other hand to know how big the dataset might be, that will be serialized and deserialized as well. Tamer Am 29.04.2012 08:24, schrieb Cameron Simpson: > On 29Apr2012 11:42, Chris An

Re: MAJOR JAVA EVANGELIST CONVERTS TO PYTHON !!!!!!!!!!!!!!

2012-02-26 Thread Tamer Higazi
AND PYTHON IS REALLY COOL! Especially this beautiful JPype Bridge that makes it possible to push requests between PYTHON and JAVA. really really really cool! Am 27.02.2012 01:05, schrieb John Ladasky: On Feb 26, 12:29 am, BV wrote: MAJOR CANADIAN CHRISTIAN MISSIONARY CONVERTS TO ISLAM

access address from object and vice versa

2012-01-21 Thread Tamer Higazi
Hi people! I have asked myself the following thing. How do I access the address of an object and later get the object from that address ?! I am heavily interisted. thank you Tamer -- http://mail.python.org/mailman/listinfo/python-list

Re: Zealotry [was Re: how to install lxml in window xp?]

2012-01-13 Thread Tamer Higazi
dear people! I have just opened my MTU client, and figured out that through my comment, i caused a complete NONSENSE discussion at all. 1. I am not a zealot or whatever. I code on Linux and port it on MAC and WINDOWS. I do write solutions for customers across the whole 3 platform, and mostly I su

Re: how to install lxml in window xp?

2012-01-12 Thread Tamer Higazi
Am 12.01.2012 06:08, schrieb Brian Curtin: > On Wed, Jan 11, 2012 at 23:01, Tamer Higazi wrote: >> Use Linux! >> Specially Gentoo Linux! > > Not a useful answer. then take windows 7 instead of something that is no more supported by the vendor itself. I am running Pytho

Re: how to install lxml in window xp?

2012-01-11 Thread Tamer Higazi
Use Linux! Specially Gentoo Linux! Tamer Am 09.01.2012 10:18, schrieb 水静流深: > in my xp ,python26,easy_install installed. > i want to install lxml in window xp > 1.c:\python26\scripts\easy_install lxml > > what i get is: > > Reading http://codespeak.net/lxml > Best match: lxml 2.3.3 > Dow

Re: Python3 on MacOsX Lion?

2012-01-02 Thread Tamer Higazi
Hi Rich! Why don't you ask the maintainer who built the macport?! Why don't you try to to figure out with "WHAT" kind of tools they have built the mac port and "WHERE" to get them either. And ask him also how to set the flags to build the 64bit edition. Then you don't have to be afraid of any

Re: Does anyone use Python Tools for visual studio?

2011-11-01 Thread Tamer Higazi
buy wingIDE or use PyDEV If you tell me that you are using IronPython then buy wingIDE, there you can make use of the .net classes in python too. Tamer Am 01.11.2011 18:01, schrieb Wei: > On Nov 1, 12:57 pm, Wei wrote: >> I got several buggy things going on. >> First, the view of class tree s

Re: sending more then 2 messages at a time to a SocketServer fails

2011-11-01 Thread Tamer Higazi
Am 01.11.2011 17:13, schrieb Miki Tebeka: > MKTest.getObj(data[0]) will return the same object on every call(with the > same data that was initialized 1'st time). Any Daten parameter after the 1'st > call is ignored. Not true! The singleton object has nothing todo. Here one more example for you

don't get JPE (Java Python Extension) compiled.

2008-11-15 Thread Tamer Higazi
/sh: ksh: command not found make: *** [all] Error 127 for any help solving my problem getting JPE compiled, I would thank you very much Tamer Higazi -- http://mail.python.org/mailman/listinfo/python-list

call by reference howto????

2008-02-27 Thread Tamer Higazi
Hi! Can somebody of you make me a sample how to define a function based on "call by reference" ??? I am a python newbie and I am not getting smart how to define functions, that should modify the variable I passed by reference. thanks in advance Tamer -- http://mail.python.org/mailman/listinfo

Re: Python for web...

2008-02-24 Thread Tamer Higazi
http://www.djangobook.com/ if you love to read that book online. Otherwise, if you don't have DSL, just mirror the site for offline usage with "wget" Tamer [EMAIL PROTECTED] wrote: > Hi everyone, > > I have to develop a web based enterprise application for my final year > project. Since i am in

most loved template engine on python is?

2008-02-24 Thread Tamer Higazi
Hi people! After deciding choosing python as my future killer application language for writing web applications, I need from you guys still some support, if you apologize. Question: Which is the most loved template engine for python? I see, that I can do more aspect oriented programming with pyt

Re: PHP Developer highly interested in Python (web development) with some open questions...

2008-02-24 Thread Tamer Higazi
Am Sonntag, den 24.02.2008, 13:44 +0100 schrieb Christian Heimes: > > Plone and Archetypes (based on Zope) have a tool named ArchGenXML. It > takes UML XMI files and generates content types, workflows and products > for the Plone CMS. I don't want workflows, I want the classes and methods genera

PHP Developer highly interested in Python (web development) with some open questions...

2008-02-23 Thread Tamer Higazi
nswering all my Questions, I would thank you guys very much. Tamer Higazi -- http://mail.python.org/mailman/listinfo/python-list

PHP Developer highly interested in Python (web development) with some open questions...

2008-02-23 Thread Tamer Higazi
nswering all my Questions, I would thank you guys very much Tamer Higazi -- http://mail.python.org/mailman/listinfo/python-list