Re: [PythonCE] Pythonce Roadmap

2010-03-30 Thread rodi
Hello PythonCE users,

my litle project KaaShooping relies on PythonCE. I don't knov  how valuable it 
is to the ones that downlodes it? - At least it works for me.

About the WiKi:
access to 'http://pythonce.sourceforge.net/Wikka' reports
An error has been encountered in accessing this page.

1. Server: pythonce.sourceforge.net
2. URL path: /Wikka
3. Error notes: Server unable to read htaccess file, denying access to be safe
4. Error type: 403
5. Request method: GET
6. Request query string: NONE

As I remember, reading down those 'does&dont's of sf.net; sf.net will react on 
site abuses as follows:
..(?send e-mail)
and as last resort alter the unix file access rights. !)

Cheers, rodi   


Am Dienstag, 30. März 2010 16:24:34 schrieb Brad Clements:
> PythonCE isn't dead, though I do not know who all is using it these days.
> 
> I no longer have a CE device. I am maintaining the mailing list (welcome
> to the list ..)
> 
> I do not know who is in charge of the wiki @ sf .. anyone?
> 
> Angelo Compagnucci wrote:
> > Hello list!
> >
> > Is pythonce actively developed or it's is in a dead end state?
> >
> > In positive case, what is the roadmap?
> >
> > PS: Wiki is down ...
> >
> > Thanks!
> > 
> >
> > ___
> > PythonCE mailing list
> > PythonCE@python.org
> > http://mail.python.org/mailman/listinfo/pythonce
> 

___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce


[PythonCE] PythonCE and SSL

2010-03-30 Thread Adam Walley
Success!

Using the TLSLite package I was able to achieve what I was aiming for - that
is to access Gmail programmatically from PythonCE. For anyone interested,
this is how I got there (after quite a bit of puzzling and trawling through
the net):

Having downloaded the TLSLite-0.3.8 package, I placed the 'tlslite' folder
into my 'Lib/site-packages' without any modifications. Now it would be
accessible to any of my PythonCE scripts. Next, I wrote the following
script:

-- Example PythonCE code --

import base64, string
from tlslite.api import *

user="anyuser"
passwd="whatever"
h=HTTPTLSConnection("mail.google.com",443)
auth="Basic "+string.strip(base64.encodestring(user+":"+passwd))
h.putrequest("GET","/mail/feed/atom")
h.putheader("Authorization",auth)
h.endheaders()
r=h.getresponse()
txt=r.read()
msgs=txt[txt.index("")+11:txt.index("")]
raw=raw_input("inbox("+msgs+")")

-- Example PythonCE code --

the above simply connects on port 443 (https) to the Gmail atom feed and
returns an XML message about new messages in the inbox, which is then
searched for the number of new messages. It's not the fastest thing in the
world, but it works.

Adam.
___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce


Re: [PythonCE] Pythonce Roadmap

2010-03-30 Thread Brad Clements

PythonCE isn't dead, though I do not know who all is using it these days.

I no longer have a CE device. I am maintaining the mailing list (welcome 
to the list ..)


I do not know who is in charge of the wiki @ sf .. anyone?


Angelo Compagnucci wrote:

Hello list!

Is pythonce actively developed or it's is in a dead end state?

In positive case, what is the roadmap?

PS: Wiki is down ...

Thanks!


___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce
  



--
Brad Clements,b...@murkworks.com(315)268-1000
http://www.murkworks.com  
AOL-IM: BKClements


___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce


[PythonCE] Pythonce Roadmap

2010-03-30 Thread Angelo Compagnucci
Hello list!

Is pythonce actively developed or it's is in a dead end state?

In positive case, what is the roadmap?

PS: Wiki is down ...

Thanks!
___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce