[GIS] Qgis Python code library documenation.

pythonqgis

I'm looking for python documentation for specific operations in the Qgis python console. I know there is no suggestions simular to Arcpy but I would like a pure list of operation code lines as "layer.featureCount()"

Or is this taken from python standard librarys?

Best Answer

I find the cookbook below is a great start, although it doesn't cover everything.
PyQGIS Developer Cookbook: http://www.qgis.org/pyqgis-cookbook/
To go in deeper you need the QGIS API documentation: http://doc.qgis.org/api/ though this is pretty limited in explanation and is directed at C++ programmers. By comparing the API information with the cookbook examples, you can get the hang of the transformations needed to move from C++ to python usage. One of the difficulties in using QGIS plugins is lack of documentation - you have to invest a lot of time on the learning curve, I don't think there is any real shortcut at the moment.