mirror of
https://github.com/protomaps/PMTiles.git
synced 2026-02-04 19:01:08 +00:00
8 lines
226 B
Python
8 lines
226 B
Python
import zipfile
|
|
|
|
with zipfile.ZipFile("lambda_function.zip", "w", zipfile.ZIP_DEFLATED) as z:
|
|
z.write("lambda_function.py")
|
|
z.write("../../python/pmtiles/reader.py", "pmtiles.py")
|
|
|
|
print(f"created lambda_function.zip")
|