simplekml


Namesimplekml JSON
Version 1.3.6 PyPI version JSON
download
home_pagehttp://readthedocs.org/projects/simplekml/
SummaryA Simple KML creator
upload_time2021-09-16 17:08:27
maintainer
docs_urlNone
author2011-2018 Kyle Lancaster | 2019-2021 Patrick Eisoldt
requires_python
licenseGNU Lesser General Public License v3+
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Simplekml is a python package which enables you to generate KML with as little effort as possible.

At the time of making this package nothing was available (at least I could not find anything) that could create KML files easily. You needed a lot of bloated code to even create a simple point. This is understandable because the KML standard is quite extensive, but what if you just work with the simple elements of KML like Document, Folder, Point, LineString and Polygon? This package supports those elements and everything documented in the KML Reference. With simplekml creating a KML file containing a point as simple as:

```python
import simplekml
kml = simplekml.Kml()
kml.newpoint(name="Kirstenbosch", coords=[(18.432314,-33.988862)])
kml.save("botanicalgarden.kml")
```

See the [Homepage](http://readthedocs.org/projects/simplekml/) for usage, documentation and a reference.
            

Raw data

            {
    "_id": null,
    "home_page": "http://readthedocs.org/projects/simplekml/",
    "name": "simplekml",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "2011-2018 Kyle Lancaster | 2019-2021 Patrick Eisoldt",
    "author_email": "patrick@eisoldt.com",
    "download_url": "https://files.pythonhosted.org/packages/15/e4/c333a93b7e3346437ad1ff42b8e362b853eb405ad6243ab6163f9af2a460/simplekml-1.3.6.tar.gz",
    "platform": "",
    "description": "Simplekml is a python package which enables you to generate KML with as little effort as possible.\n\nAt the time of making this package nothing was available (at least I could not find anything) that could create KML files easily. You needed a lot of bloated code to even create a simple point. This is understandable because the KML standard is quite extensive, but what if you just work with the simple elements of KML like Document, Folder, Point, LineString and Polygon? This package supports those elements and everything documented in the KML Reference. With simplekml creating a KML file containing a point as simple as:\n\n```python\nimport simplekml\nkml = simplekml.Kml()\nkml.newpoint(name=\"Kirstenbosch\", coords=[(18.432314,-33.988862)])\nkml.save(\"botanicalgarden.kml\")\n```\n\nSee the [Homepage](http://readthedocs.org/projects/simplekml/) for usage, documentation and a reference.",
    "bugtrack_url": null,
    "license": "GNU Lesser General Public License v3+",
    "summary": "A Simple KML creator",
    "version": "1.3.6",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15e4c333a93b7e3346437ad1ff42b8e362b853eb405ad6243ab6163f9af2a460",
                "md5": "692cbeb157a43c84cd599ffdfd5811de",
                "sha256": "cda687be2754395fcab664e908ebf589facd41e8436d233d2be37a69efb1c536"
            },
            "downloads": -1,
            "filename": "simplekml-1.3.6.tar.gz",
            "has_sig": false,
            "md5_digest": "692cbeb157a43c84cd599ffdfd5811de",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 52999,
            "upload_time": "2021-09-16T17:08:27",
            "upload_time_iso_8601": "2021-09-16T17:08:27.038790Z",
            "url": "https://files.pythonhosted.org/packages/15/e4/c333a93b7e3346437ad1ff42b8e362b853eb405ad6243ab6163f9af2a460/simplekml-1.3.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2021-09-16 17:08:27",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "simplekml"
}
        
Elapsed time: 0.08598s