| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14
Comments:
<0> shekmalhen, cjfs you know how make a daemon prog with python without make my prog into background ? <0> the real daemon? <1> Condector: there's a recipe in the online python cookbook <0> joedj, ooo, interesting!!! thanks a lot!! <2> Hi all <2> Anyone here using TinyERP? <3> TruPilot, I did while ago.. a very good ERP BTW <2> Any possibility you may have used it on Windows? I'm having a problem with it not being able to load the netsvc module. <3> TruPilot, not Windows.. jejeje but if you show me the error.. i might be of help <2> neurogeek: ImportError: No module named netsvc <2> Hmmm... Could be I need to manually load Python... <2> (instead of trusting they built it correctly) <3> TruPilot, maybe.. <3> TruPilot, maybe you should look for that module and install it yourself, or put it in your PYTHONPATH <4> PSYCHOPATH <3> :D
<3> TruPilot, check this out.. http://wiki.nanthrax.net/~jb/doc/Books/Devel/Python/oreilly_python_cookbook/pythoncook-CHP-13-SECT-8.html <2> neurogeek - I can't connect to that site. :/ <3> hmm neither do I.. sorry.. http://ose.sourceforge.net/browse.php?group=python-manual&entry=modules.htm <= this is the module <5> hi. Using sqlobject how can I "replace" rows? <6> nictuku: delete a row and make a new one <5> that is, insert | update <5> hmm <6> oh, you mean the mysql only 'REPLACE' keyword? <6> dunno <5> oh, I didn't know it was mysql-only <5> thank you. delete/insert would work, I guess <5> *should <6> to delete with sqlobject, you do foo.destroySelf(), or MyTable.delete(id) <5> thanks <7> Night all <8> clear <9> ethan_, I still see you <8> shekmalhen, AHHH!!!!!!!!!!!!! <8> NOO!! <8> lol <8> I'm ethan_ ? <9> yup <10> ethan_: no you're not <9> and now? Still ethan_? <9> :P <8> shekmalhen, cjfs why is my name ethan_ ?! <8> ahhh <11> lol <11> nooo!! <11> cowmoo!!.... x ( <10> you killed cowmoo! <11> lol <11> cowmoo! <12> hey <12> hi <12> sry <12> im having some problems with python + com <12> (windows) <13> is there no way to do if !some_var: ?? <14> Anybody in hear speak German? <15> outpour: if not some_var: <13> NameError: name 'some_var' is not defined <12> heh <13> alreayd tryed that heh <16> outpour: what are you trying to do? <13> i want to determine if some variable has been defined or not <16> try if "varname" in locals() <17> 'lo all - any thoughts on graphical cl*** browsers? <16> graphical cl*** browsers? <17> I just want to get a graphical layout of some cl***es I have <17> so I can see where the api looks bizarre :) <16> ah right <16> i don't know of any tools that do that <17> :( <16> maybe some IDEs might have the feature <17> yah - I just thought maybe someone had something that would do that <16> Eclipse shows cl***es defined in the file being edited <17> hell - even a text layout would be nice
<16> ignacio: why? <18> Because he hates all life <19> Documentation. <17> ignacio: pyreverse? <19> Looks promising. <16> bleh argouml <20> Anyone here used mod_python with apache? <16> #python.web <20> thanks <20> didn't know that chan existed <19> ArgoUML looks like it only reverse-engineers Java. <16> ... <21> skvidal - not sure if anybody has mentioned this, but you can just crank up pydoc on a python module or package and it'll give you a tree list of cl***es <16> :) <21> (or use help() on it, in the interpreter) <21> ignacio - it'llstill give you a visual layout of the inheritance tree <21> and methods <13> how can i test to see if a var is an int? <16> isinstance(var, int) <16> snake! <13> eleusis: can i do f !isinstance(var, int) <13> ? <13> s/f/if <19> If it gets you off, sure. <16> outpour: there's the 'not' keyword <22> outpour: although you want 'not', not '!' <23> I have a question about python -- is python good for scripting visualizations? if not, what would be a good one? <10> Python's good for everything :) <10> check out pygame for some real fun <23> :) thanks <21> krylon_prodigy - its a general purpose language, so it has no real weaknesses or strengths in my opinion <23> cjfs: pygame? <21> give it a try is the best recommendation i can give <10> http://www.pygame.org/news.html <23> ok, do you have any particular resources that you might suggest? <21> python.org has plenty of docs and tutorials for starters <10> I'm not quite sure what you mean by visualizations, but pygame can do several definitions of that ;) <24> Mathematical visualizations? Data viz? <10> flow chart visualizations? <10> maybe even guis <23> CHodapp: fractal-type visualizations, but more control <24> NO! <21> 'Takes the C++ out of "Game Development"' such lies <21> we still have 200 lines of init code in C++.. <24> krylon_prodigy, mathematical then, I suppose... <23> yea <24> krylon_prodigy, my recommendation: PIL and Numarray <10> NO! ? <21> Numercial maybe? <21> er, Numeric <24> Numarray is a fork of Numerical (which is now deprecated in favor of Scientific Python)... Numarray is much faster for huge arrays. <21> ah right <23> sweet :D <24> krylon_prodigy, ftp://mershell.no-ip.org/temp/mosaic6.jpg and ftp://mershell.no-ip.org/temp/mosaic3.jpg . . . two visualizations done in Python, by some software written by me <21> well i wouldnt call it deprecated since its still actively developed CHodapp <23> CHodapp: Oh great, just what im looking for <24> prencher, "Development for Numeric has ceased, and users should transisition to NumPy as quickly as possible." quoth the website. <24> "For about 6 months, the new package was called SciPy Core, and so you will occasionally see references to SciPy Core. It was decided in January 2006 to go with the historical name of NumPy for the new package." <21> CHodapp - NumPy was what i was thinking of <23> would it be possible to take existing images (photos,etc) and tweak them as well? (add math visualizations, rotate, etc) <21> CHodapp - so NumPy is at the core of scipy.org? <24> krylon_prodigy, maybe. You can probably get PIL and Numarray to play nice with each other and get the image in an array, and do matrix transforms from there. <24> prencher, I guess so. <23> CHodapp: ok :) <24> krylon_prodigy, my software does matrix transforms, but not yet on existing images <25> try chat.users.index(user): <25> ^ <25> SyntaxError: invalid syntax <25> how should that be done instead? <21> try: <21> stuff here <25> oh god
Return to
#python or Go to some related
logs:
#perl redhat noshell #ubuntu #centos debian imgburn sources.list #perl beril for debian gnomecatalog+ubuntu superblock last write time is in the future reisio.com punkid
|
|