79207816

Date: 2024-11-20 15:16:35
Score: 1
Natty:
Report link

Have a look at the fastkml documentation

from fastkml.utils import find_all
from fastkml import KML
from fastkml import Placemark
k = KML.parse("docs/Document-clean.kml")
placemarks = find_all(k, of_type=Placemark)
for p in placemarks:
    print(p.geometry)  
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: cleder