memory leaks - tools and docs

2011-11-24 Thread Aljosa Mohorovic
ysizer.8325.org/ and http://code.google.com/p/pympler/ also interesting. Aljosa -- http://mail.python.org/mailman/listinfo/python-list

Re: oauth2 server implementation

2011-09-28 Thread Aljosa Mohorovic
On Sep 28, 2:17 am, Roy Smith wrote: > We rolled our own oauth2 client on top of basic urllib calls.  It's not > terribly difficult. i'm asking about oauth2 server implementation, not client. it's easy to consume oauth2 stuff but what to do when you need to implement serve

oauth2 server implementation

2011-09-27 Thread Aljosa Mohorovic
i'm looking for oauth2 server implementation but other than https://github.com/simplegeo/python-oauth2 (oauth v1 implementation) it doesn't seem that people are using v2 implementations. anybody using some oauth2 implementation and can share some info? Aljosa Mohorovic -- http://mail.

setup.py and MANIFEST.in - duplicating inclusion of files?

2009-11-27 Thread Aljosa Mohorovic
ive-include myapp/templates *.html am i doing something wrong or is this correct? if it's correct, why? Aljosa Mohorovic -- http://mail.python.org/mailman/listinfo/python-list

Re: naming packages for pypi

2009-06-26 Thread Aljosa Mohorovic
nly that i don't know how to do it properly. that's why i'm asking so please suggest a proper way for me to do it. Aljosa Mohorovic -- http://mail.python.org/mailman/listinfo/python-list

naming packages for pypi

2009-06-26 Thread Aljosa Mohorovic
something that you learned to live with and there are no indications that this will eventually change? Aljosa Mohorovic -- http://mail.python.org/mailman/listinfo/python-list

pypi compatible software

2009-06-07 Thread Aljosa Mohorovic
ocs howto setup? - i did found http://www.python.org/dev/peps/pep-0381/ - is this the spec that above mentioned software is based upon? any additional info or comments appreciated. Aljosa Mohorovic -- http://mail.python.org/mailman/listinfo/python-list

private pypi repository

2009-06-03 Thread Aljosa Mohorovic
i'm looking for a effective way to setup private pypi repository, i've found: - PloneSoftwareCenter - http://code.google.com/p/pypione/ - http://pypi.python.org/pypi/haufe.eggserver what are you using? what would you recommend? Aljosa Mohorovic -- http://mail.python.org/mailman/listi

http://orbited.org/ - anybody using it?

2009-05-17 Thread Aljosa Mohorovic
can anybody comment on http://orbited.org/ ? is it an active project? does it work? Aljosa Mohorovic -- http://mail.python.org/mailman/listinfo/python-list

Re: current week / weeks in year - best practice

2008-07-31 Thread Aljosa Mohorovic
On Jul 31, 5:42 pm, Aljosa Mohorovic <[EMAIL PROTECTED]> wrote: > what if i know current context week = 20 (example), what would be the > best way to get datetime objects for first and last day of current > context week? > by "current context week" i don't mean cu

Re: current week / weeks in year - best practice

2008-07-31 Thread Aljosa Mohorovic
i know current context week = 20 (example), what would be the best way to get datetime objects for first and last day of current context week? by "current context week" i don't mean current week for current year but current week when program is iterating all weeks in year. Aljosa -- http://mail.python.org/mailman/listinfo/python-list

current week / weeks in year - best practice

2008-07-31 Thread Aljosa Mohorovic
i use this to find out current week and total number of weeks for current year: now = datetime.now() weeks_in_year = int(date(now.year, 12, 31).strftime("%W")) current_week = int(date(now.year, now.month, now.day).strftime("%W")) is this the best way or is there a better wa

PYTHONPATH breaks MySQLdb

2008-04-25 Thread Aljosa Mohorovic
: No module named MySQLdb is there any reason why this happens? Aljosa Mohorovic -- http://mail.python.org/mailman/listinfo/python-list

Re: looking for library to read ppt files

2007-04-18 Thread Aljosa Mohorovic
On Apr 18, 4:02 pm, Carsten Haese <[EMAIL PROTECTED]> wrote: > How about running a headless OpenOffice instance and remote-controlling > it with pyuno: > > http://udk.openoffice.org/python/python-bridge.html > > -Carsten i'll try oo, thanks for link. -- http://mail.python.org/mailman/listinfo/py

Re: looking for library to read ppt files

2007-04-18 Thread Aljosa Mohorovic
> > Not really a Python question but Google turned up: it is a python question. i'm not looking for a program, i'm looking for a library. my goal is to convert ppt to jpegs but later i wish to convert to swf and maybe implement animations > I suppose you could also use the win32 module and the COM

looking for library to read ppt files

2007-04-16 Thread Aljosa Mohorovic
i'm looking for a way to read ppt (powerpoint) files using python and to convert slides into jpeg files. any links or tips how to do this? -- http://mail.python.org/mailman/listinfo/python-list

PIL - transparent ImageDraw.text()

2006-07-19 Thread aljosa
=(255,255,255)) <<< url with example would be nice 8-) Aljosa Mohorovic -- http://mail.python.org/mailman/listinfo/python-list

Re: capture video from camera

2006-06-07 Thread aljosa
i had no intention to say that videocapture is bad but it's not what i'm looking for. concerning docs, everybody has their own view on how docs should look like. that said, i should have written more clearly what i'm looking for. -- http://mail.python.org/mailman/listinfo/python-list

Re: capture video from camera

2006-06-06 Thread aljosa
re to find out if anybody knows a better way to capture video. Fredrik Lundh wrote: > aljosa wrote: > > > i'm trying to capture video from camera/webcam using python. > > so far i haven't found any library that would allow me to do that. > > > > cross-platform

capture video from camera

2006-06-06 Thread aljosa
i'm trying to capture video from camera/webcam using python. so far i haven't found any library that would allow me to do that. cross-platform solution related to SDL/pygame would be nice but a simple solution to capture video under windows is ok. Aljosa Mohorovic -- http://mail.

Re: image lib & Qt4

2006-06-01 Thread aljosa
does anybody know how to load (in-memory representation of PNG image) from Qt (v.4.1.3) as QImage? Diez B. Roggisch wrote: > aljosa wrote: > > > i'm looking for image lib which supports common image types (maybe > > freeimagepy?) and is relatively easy to display image

image lib & Qt4

2006-06-01 Thread aljosa
i'm looking for image lib which supports common image types (maybe freeimagepy?) and is relatively easy to display image loaded through that lib in PyQt4. any ideas? Aljosa -- http://mail.python.org/mailman/listinfo/python-list

py2exe & qt4/qimage

2006-06-01 Thread aljosa
i'm trying to convert python (image resizer script using PyQt4) script to exe but support for jpeg and tiff image formats is located in Qt4.1\plugins\imageformats (dll files) and when script is converted exe file doesn't support jpeg and tiff. i tryed using all file formats in script: tmp1 = QImag

PyQT, QProcess.readyReadStdout() problem

2005-07-01 Thread aljosa
part of code: >>> try: self.isdnlog = QProcess(self) self.isdnlog.addArgument("/usr/bin/tail") self.isdnlog.addArgument("-f") self.isdnlog.addArgument("/home/aljosa/qt/isdn.log") [...] QObject.connect(self.isdnlog, SIGNAL("readyReadStdo

file parsing/watching + qt

2005-05-03 Thread aljosa
where else, is there a standard solution for this? i'm using python2.3 on linux with PyQt3. Aljosa -- http://mail.python.org/mailman/listinfo/python-list

dynamic func. call

2005-02-04 Thread Aljosa Mohorovic
can i do something like this: s = "myFunction" a = s() # equals to: a = myFunction() -- http://mail.python.org/mailman/listinfo/python-list