Hello Tonton,
You don't need to have a module as part of django.contrib to use it
within django. You can import any module that exists on your python
path, like in any regular python module.
Simply install owslib with your package manager (easy_install, pip,
maybe apt...). This has the effect of putting the module somewhere on
your Python path. You can then import it in your django module:
from owslib import wms
Regards
--
Gilles Bassi�re - Web/GIS software engineer
http://gbassiere.free.fr/
Simply install owslib with your package manager (easy_install, pip,
maybe apt...). This has the effect of putting the module somewhere on
your Python path. You can then import it in your django module:
from owslib import wms
Regards
--
Gilles Bassičre - Web/GIS software engineer
http://gbassiere.free.fr/
Hi Gilles,
whats your goal to use OWSlib with django? What can be done with
django and owslib?
Cheers
Christian
hello