I am using Python3.6.5 and installed with simplekml module 1.3.3, But there is an error message when I running the code below; Error msg>>"kml = simplekml.Kml() AttributeError: module 'simplekml' has no attribute 'Kml'"
I am using sample code from https://pypi.org/project/simplekml/
import simplekml
#from simplekml import Kml # this line of code not working either.
kml = simplekml.Kml()
kml.newpoint(name="Kirstenbosch", coords=[(18.432314,-33.988862)])
kml.save("botanicalgarden.kml")