A pure Python MapFile parser for working with MapServer, built using plyplus and PLY
Requirements
Python 2.7 or Python 3.x
Installation
mappyfile is available on PyPI (Python Package Index), and can be installed using pip:
pip install mappyfile
This will also install its required dependencies plyplus and PLY.
Documentation
Documentation at http://mappyfile.readthedocs.io/en/latest/
Usage
import mappyfile
mapfile = mappyfile.load("./docs/examples/raster.map")
# update the map name
mapfile["name"] = "MyNewMap"
new_layer_string = """
LAYER
NAME 'land'
TYPE POLYGON
DATA '../data/vector/naturalearth/ne_110m_land'
CLASS
STYLE
COLOR 107 208 107
OUTLINECOLOR 2 2 2
WIDTH 1
END
END
END
"""
new_layer = mappyfile.loads(new_layer_string)
layers.insert(0, new_layer) # can insert the new layer at any index
print(mappyfile.dumps(mapfile))
Release files for mappyfile 0.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| mappyfile-0.1.1-py2.py3-none-any.whl | Python 2, Python 3 | none | any | Details |
Release files / mappyfile-0.1.1-py2.py3-none-any.whl
| Download URL | mappyfile-0.1.1-py2.py3-none-any.whl |
|---|---|
| Size | 11.8 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
36fe2ae5eaa798efb24702a6c776d52ba8f2439039ffca1b5cc964e9c8a11def
|
|
BLAKE2b-256 checksum How to use checksums |
dbf95a06aa0c3b2e25960901ec9442d5bb8e02bad8582c58d193f0505050e24e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |