I'm trying to combine shapefiles in a folder of mine, but everytime i run it or run a variation of this it gives me the same error, "Error: Algorithm not found"
this is my code:
import os
import glob
import urllib
import sys
import zipfile
import processing
from processing.core.Processing import Processing
Processing.initialize()
Processing.updateAlgsList()
processing.alglist("merge")
processing.alghelp("qgis:mergevectorlayers")
pth = "C:/Users/Light/Desktop/qgis_data/tiled_footprints/"
files = glob.glob(pth + "*.shp")
out = pth + "merged.shp"
processing.runandload("saga:mergeshapeslayers", files.pop(0), ";".join(files), out)
I followed the advice of this thread here: Error: Algorithm not found (QGIS)
and I created the path, PYTHON_PATH in the system environment variables but still nothing.
