| Reply | « Previous Thread | Next Thread » |
|
I spent about 2 or 3h this afternoon around searching for something like JavaDOC, for PyS60.
Initially wanted something to integrate with PyDev (in eclipse) so I could have code completion but then I gave up on that and just wanted somewhere I could check from a list on methods on python objects. Like, I wanted to know what can I call in appuifw. Or, the list for socket module methods. Or, my original goal in finding this, know the methods for the access point object returned for socket.access_point(int). The methods I know on this last object are: start,stop and ip. But got to know them from examples found, not from a specification. Just downloaded PyS60 source hoping I'd find something there, but nothing found (for my ignorant eye at least). Any tips would be appreciated. A site like Sun Java API reference or cplusplus.com.. Thanks |
|
Join Date: Oct 2007
Posts: 2,841
Location: Deva, Romania
Offline
Forum Nokia Champion
|
|
Well, for regular Python you can check http://docs.python.org/lib/ for each and every module. For PyS60 download PythonForS60_1_4_4_doc.pdf from Sourceforge. It's the official documentation.
|
|
Yeah, it was the first thing I did in my 2-hour-and-something quest. No info on the access point object properties/methods, except in the examples (which uses the 3 methods I said previsouly)
![]() |
|
Quote:
access_point is S60 specific ... you can also make this in the PyS60 console: Code:
import socket sap=socket.select_access_point() dir(sap) ap=socket.access_point(sap) dir(ap) ['ip','start','stop'] Cyke64 pys60 1.4.5,1.9.7,pygame,PyS60 CE on E90 , N810 with Python 2.5.2 and ... last PyS60 1.9.7 with touch ui on 5800 ! pys60 extension modules on http://cyke64.googlepages.com/ |
|
yeah, tried that too (reading PyS60src) but couldn't find anything about access point object..
But amazing tip that dir() ![]() Thank you indeed, shame there's only those 3 after all, was hoping on some method to get the proxy settings ![]() thanks once again |
| Reply | « Previous Thread | Next Thread » |
| Thread Tools | Search this Thread |
|---|---|
| Rate This Thread | |
| Thread | Thread Starter | Forum | Replies | Last Post |
|---|---|---|---|---|
| Problem with Skin enabling - disabling and Setting List in S60 | sauvikds | Series 40 & S60 Platform Feedback | 6 | 2008-08-23 15:29 |
| Problem with Skin enabling - disabling and Setting List in S60 | sauvikds | Symbian User Interface | 1 | 2008-08-22 14:45 |
| Problem with Skin enabling - disabling and Setting List in S60 | sauvikds | General Discussion | 1 | 2008-08-21 13:44 |
| 6680 and bluetooth service profiles | ceruault | Mobile Java Networking & Messaging & Security | 1 | 2005-10-08 23:24 |
| Bluetooth Virtual Serial Port | mealos | Bluetooth Technology | 2 | 2004-12-03 04:46 |