{
"info": {
"author": "Christian Ledermann",
"author_email": "christian.ledermann@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Scientific/Engineering :: GIS"
],
"description": "Introduction\n============\n\nFastkml is a library to read, write and manipulate KML files. It aims to keep\nit simple and fast (using lxml_ if available). Fast refers to the time you\nspend to write and read KML files as well as the time you spend to get\naquainted to the library or to create KML objects. It aims to provide all of\nthe functionality that KML clients such as `OpenLayers\n`_, `Google Maps `_, and\n`Google Earth `_ provides.\n\n\nGeometries are handled as pygeoif_ or, if installed, shapely_ objects.\n\n.. _pygeoif: http://pypi.python.org/pypi/pygeoif/\n.. _shapely: http://pypi.python.org/pypi/Shapely\n.. _lxml: https://pypi.python.org/pypi/lxml\n.. _dateutils: https://pypi.python.org/pypi/dateutils\n.. _pip: https://pypi.python.org/pypi/pip\n\nFastkml is continually tested with *Travis CI*:\n\n.. image:: https://api.travis-ci.org/cleder/fastkml.png\n :target: https://travis-ci.org/cleder/fastkml\n :alt: Tests\n\n.. image:: https://coveralls.io/repos/cleder/fastkml/badge.png?branch=master\n :target: https://coveralls.io/r/cleder/fastkml?branch=master\n :alt: coveralls.io\n\n.. image:: http://codecov.io/github/cleder/fastkml/coverage.svg?branch=master\n :target: http://codecov.io/github/cleder/fastkml?branch=master\n :alt: codecov.io\n\nIs Maintained and documented:\n\n.. image:: https://pypip.in/v/fastkml/badge.png\n :target: https://pypi.python.org/pypi/fastkml\n :alt: Latest PyPI version\n\n.. image:: https://pypip.in/status/fastkml/badge.svg\n :target: https://pypi.python.org/pypi/fastkml/\n :alt: Development Status\n\n.. image:: https://readthedocs.org/projects/fastkml/badge/\n :target: https://fastkml.readthedocs.org/\n :alt: Documentation\n\n.. image:: https://badge.waffle.io/cleder/fastkml.png?label=ready&title=Ready\n :target: https://waffle.io/cleder/fastkml\n :alt: 'Stories in Ready'\n\n.. image:: https://www.openhub.net/p/fastkml/widgets/project_thin_badge.gif\n :target: https://www.openhub.net/p/fastkml\n :alt: Statistics from OpenHub\n\nSupports python 2 and 3:\n\n.. image:: https://pypip.in/py_versions/fastkml/badge.svg\n :target: https://pypi.python.org/pypi/fastkml/\n :alt: Supported Python versions\n\n.. image:: https://pypip.in/implementation/fastkml/badge.svg\n :target: https://pypi.python.org/pypi/fastkml/\n :alt: Supported Python implementations\n\nDocumentation\n=============\n\nYou can find all of the documentation for FastKML at `fastkml.readthedocs.org\n`_. If you find something that is missing,\nplease submit a pull request on `GitHub `_\nwith the improvement.\n\n\nInstall\n========\n\nYou can install the package with ``pip install fastkml`` or ``easy_install\nfastkml`` which should also pull in all requirements.\n\nRequirements\n-------------\n\n* pygeoif_\n* dateutils_\n\nOptional\n---------\n\n* lxml_\n* shapely_\n\nYou can install all of the requirements for working with FastKML by using\npip_::\n\n pip install -r requirements.txt\n\n.. note::\n\n Shapely_ requires that libgeos be installed on your system. ``apt-get\n install libgeos-dev`` will install these requirements for you on Debian-\n based systems.\n\n\nLimitations\n===========\n\n*Tesselate*, *Extrude* and *Altitude Mode* are assigned to a Geometry or\nGeometry collection (MultiGeometry). You cannot assign different values of\n*Tesselate*, *Extrude* or *Altitude Mode* on parts of a MultiGeometry.\n\nCurrently, the only major feature missing for the full Google Earth experience\nis the `gx extension\n`_.\nThis will most likely be added after the 1.0 version release.\n\nYou can find the complete list of current issues on `GitHub\n`_.\n\nChangelog\n=========\n\n0.11.1 (2015/07/13)\n\n- add travis deploy to travis.yml\n\n0.11 (2015/07/10)\n-----------------\n\n- handle coordinates tuples which contain spaces\n\n0.10 (2015/06/09)\n-----------------\n\n- Fix bug when the fill or outline attributes of a PolyStyle are float strings\n\n0.9 (2014/10/17)\n-----------------\n\n- Add tox.ini for running tests using tox [Ian Lee]\n- Add documentation, hosted at https://fastkml.readthedocs.org [Ian Lee]\n\n0.8 (2014/09/18)\n-----------------\n\n- Add support for address and phoneNumber [Ian Lee]\n- Add support for Ground Overlay kml [Ian Lee]\n\n0.7 (2014/08/01)\n----------------\n\n- Handle case where Document booleans (visibility,isopen) are 'true' or 'false' [jwhelland]\n- test case additions and lxml warning [Ian Lee]\n- pep8-ify source code (except test_main.py) [Ian Lee]\n- pyflakes-ify source code (except __init__.py) [Ian Lee]\n\n0.6 (2014/05/29)\n----------------\n\n- add Schema\n- add SchemaData\n- make use of lxmls default namespace\n\n0.5 (2013/10/23)\n-----------------\n\n- handle big files with huge_tree for lxml [Egil Moeller]\n- bugfixes\n\n\n0.4 (2013/09/05)\n-----------------\n\n- adds the ability to add untyped extended data / named value pairs [Denis Krienbuehl]\n\n0.3 (2012/11/15)\n-----------------\n\n- specify minor python versions tested with Travis CI\n- add support for tesselation, altitudeMode and extrude to Geometries\n- move implementation of geometry from kml.Placemark to geometry.Geometry\n- add support for heterogenous GeometryCollection\n- python 3 compatible\n- fix test for python 3\n- change license to LGPL\n- register namespaces for a more pleasant, human readable xml output\n\n0.2 (2012/07/27)\n-----------------\n\n- remove dependency on shapely\n- add more functionality\n\n\n0.1.1 (2012/06/29)\n------------------\n\n- add MANIFEST.in\n\n0.1 (2012/06/27)\n----------------\n\n- initial release",
"description_content_type": null,
"docs_url": null,
"download_url": "UNKNOWN",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/cleder/fastkml",
"keywords": "GIS KML Google Maps OpenLayers",
"license": "LGPL",
"maintainer": null,
"maintainer_email": null,
"name": "fastkml",
"package_url": "https://pypi.org/project/fastkml/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/fastkml/",
"project_urls": {
"Download": "UNKNOWN",
"Homepage": "https://github.com/cleder/fastkml"
},
"release_url": "https://pypi.org/project/fastkml/0.11/",
"requires_dist": null,
"requires_python": null,
"summary": "Fast KML processing in python",
"version": "0.11"
},
"last_serial": 1663370,
"releases": {
"0.1.1dev": [
{
"comment_text": "",
"digests": {
"md5": "1640eef6e09e81d892ac1ad47d65a215",
"sha256": "e35a9ac6b14114f83bcb89252fc1b45dd70cbfc03d415582d1b78bea3c5fd372"
},
"downloads": -1,
"filename": "fastkml-0.1.1dev.tar.gz",
"has_sig": false,
"md5_digest": "1640eef6e09e81d892ac1ad47d65a215",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 49633,
"upload_time": "2012-06-29T13:50:59",
"url": "https://files.pythonhosted.org/packages/b7/46/2a25c56e60f65df0196c3778457c584ee37cc02626d4276f34b839454e23/fastkml-0.1.1dev.tar.gz"
}
],
"0.11": [
{
"comment_text": "",
"digests": {
"md5": "8f4ec72d08af61f396052a36ac6df481",
"sha256": "86d0ee3b108a5508ab5b9ef1b7063fa6afd0115849bbb3f2d6c1e06cda5de279"
},
"downloads": -1,
"filename": "fastkml-0.11.tar.gz",
"has_sig": false,
"md5_digest": "8f4ec72d08af61f396052a36ac6df481",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 66199,
"upload_time": "2015-07-13T07:36:15",
"url": "https://files.pythonhosted.org/packages/55/10/981bae93dfd4a43cd3a4d7702789d195484ddce142842fb505bd0919ef37/fastkml-0.11.tar.gz"
}
],
"0.1dev": [
{
"comment_text": "",
"digests": {
"md5": "17cd8045ebc230013808a32259c1dd86",
"sha256": "d4497eabc7d7d9d90e99f61351e723204f97e39576719c4f44e27913db6f84d1"
},
"downloads": -1,
"filename": "fastkml-0.1dev.tar.gz",
"has_sig": false,
"md5_digest": "17cd8045ebc230013808a32259c1dd86",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31909,
"upload_time": "2012-06-27T11:26:39",
"url": "https://files.pythonhosted.org/packages/89/36/0d1d47df76e8e723123d7b9c19fa30aa5f34a242337f62703eda16b407f5/fastkml-0.1dev.tar.gz"
}
],
"0.2dev": [
{
"comment_text": "",
"digests": {
"md5": "99a316c9cae7e9fb6aeac724bd01d8ea",
"sha256": "bef8d04b05e4e508a7ba2208df69c23e7d7c50067d459497afe97c3fe5750c3e"
},
"downloads": -1,
"filename": "fastkml-0.2dev.tar.gz",
"has_sig": false,
"md5_digest": "99a316c9cae7e9fb6aeac724bd01d8ea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 59544,
"upload_time": "2012-07-27T15:07:42",
"url": "https://files.pythonhosted.org/packages/74/37/17c6cbd5588f4eed21d822d2b6cb689cb58692f3f8c1d5313af539a07786/fastkml-0.2dev.tar.gz"
}
],
"0.3dev": [
{
"comment_text": "",
"digests": {
"md5": "55a1127781eaa59465df5a4151345b7d",
"sha256": "12b7eb612fd536bed0a679b607d6ff61a73c2082e91cee9254d0296b928828f5"
},
"downloads": -1,
"filename": "fastkml-0.3dev.tar.gz",
"has_sig": false,
"md5_digest": "55a1127781eaa59465df5a4151345b7d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 69819,
"upload_time": "2012-11-15T12:17:26",
"url": "https://files.pythonhosted.org/packages/94/a0/7ad9421a8b5fa82178bb51893354264619626f429ae2467474b0c75bcc4e/fastkml-0.3dev.tar.gz"
}
],
"0.4": [
{
"comment_text": "",
"digests": {
"md5": "ad12f647b00587c397baf089067f896a",
"sha256": "97558f513dda472a733f68dd4263516176d838f9be552e04214f5392e41f24c1"
},
"downloads": -1,
"filename": "fastkml-0.4.tar.gz",
"has_sig": false,
"md5_digest": "ad12f647b00587c397baf089067f896a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 59310,
"upload_time": "2013-09-05T11:40:19",
"url": "https://files.pythonhosted.org/packages/69/ae/d18c83094f0223ae88f6a8c5f97446528290a090a3694132afc4791164c4/fastkml-0.4.tar.gz"
}
],
"0.5": [
{
"comment_text": "",
"digests": {
"md5": "ddade95afda316e4a880451120883542",
"sha256": "4ae58a935f7500d7059de41c2536a3e5a4be6e8afd8b3305ad40a527f3894b4c"
},
"downloads": -1,
"filename": "fastkml-0.5.tar.gz",
"has_sig": false,
"md5_digest": "ddade95afda316e4a880451120883542",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 59565,
"upload_time": "2013-10-23T11:49:57",
"url": "https://files.pythonhosted.org/packages/37/24/6cc80ced9282b4e654acbc15718e2e182457a7cb2e835a63c508e4096d5c/fastkml-0.5.tar.gz"
}
],
"0.6": [
{
"comment_text": "",
"digests": {
"md5": "b49d4921bff2284137ef4b446228f6ba",
"sha256": "778d31972b5bd840328b7d40a4876dc81dd4b1ba8119bab7c58ec3acc7453381"
},
"downloads": -1,
"filename": "fastkml-0.6.tar.gz",
"has_sig": false,
"md5_digest": "b49d4921bff2284137ef4b446228f6ba",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 65141,
"upload_time": "2014-05-29T09:33:43",
"url": "https://files.pythonhosted.org/packages/f3/3b/bfe0276186606dd409d2f215aa60e948c296f2d505b22281b1ba274f715a/fastkml-0.6.tar.gz"
}
],
"0.7": [
{
"comment_text": "",
"digests": {
"md5": "ed278dd2c274e510dea0fe21e5f2e514",
"sha256": "62a1e17910228e1986aad23d4756e4ec65a2423c132a183bd994bac6c9572600"
},
"downloads": -1,
"filename": "fastkml-0.7.tar.gz",
"has_sig": false,
"md5_digest": "ed278dd2c274e510dea0fe21e5f2e514",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 65897,
"upload_time": "2014-08-01T12:23:14",
"url": "https://files.pythonhosted.org/packages/a5/b2/56d500ce957774a850d340b4123c29eafa8bdcf3e982e5e617d24ae694e1/fastkml-0.7.tar.gz"
}
],
"0.8": [
{
"comment_text": "",
"digests": {
"md5": "dd1a8f5bdc7bbc007dea13e3723a9267",
"sha256": "983b16d4657dad3ac1c0aff16884e05d53eeab478528c8bd772a002a87c17fd9"
},
"downloads": -1,
"filename": "fastkml-0.8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "dd1a8f5bdc7bbc007dea13e3723a9267",
"packagetype": "bdist_wheel",
"python_version": "any",
"requires_python": null,
"size": 65706,
"upload_time": "2014-09-18T17:11:58",
"url": "https://files.pythonhosted.org/packages/05/bf/7a32d101777502b0e29aa59cab53d5e58b77bcbe2dbfbfd0c2bd81151bad/fastkml-0.8-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "cb436387c517dc3b9d22b655b7a4a995",
"sha256": "95f6f860476d2d615472309b20f1287079b7d41cf400237bd05c79c70dd12241"
},
"downloads": -1,
"filename": "fastkml-0.8.tar.gz",
"has_sig": false,
"md5_digest": "cb436387c517dc3b9d22b655b7a4a995",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 70160,
"upload_time": "2014-09-18T17:06:14",
"url": "https://files.pythonhosted.org/packages/9f/6c/ce05fd61600a38651389ec3e04d1bf22fba216a722b839b2826a86eae2bd/fastkml-0.8.tar.gz"
}
],
"0.9": [
{
"comment_text": "",
"digests": {
"md5": "9b02a1ff4989fbd820085b0917d142e8",
"sha256": "94c522dc99e0612610da7914a0a2486c0d651e45ff2fa161b25e797db4f51138"
},
"downloads": -1,
"filename": "fastkml-0.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9b02a1ff4989fbd820085b0917d142e8",
"packagetype": "bdist_wheel",
"python_version": "any",
"requires_python": null,
"size": 63393,
"upload_time": "2014-10-18T06:50:38",
"url": "https://files.pythonhosted.org/packages/35/07/ed8d96ec0d65a99c6d2afc83edb69ab2fd556baf4e11f4d6c3ccd668db6f/fastkml-0.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "86d753461f0719ce6ea04846110699ce",
"sha256": "ffa4051b4a86afd9b42addd0261353d3afbcd967e02ae1ec27f64eba53710340"
},
"downloads": -1,
"filename": "fastkml-0.9.tar.gz",
"has_sig": false,
"md5_digest": "86d753461f0719ce6ea04846110699ce",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 67467,
"upload_time": "2014-10-18T06:50:24",
"url": "https://files.pythonhosted.org/packages/f7/5b/f832737cace589869f67dc3aa39473345d2fb45266cb9c8b5ae9c385895c/fastkml-0.9.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "8f4ec72d08af61f396052a36ac6df481",
"sha256": "86d0ee3b108a5508ab5b9ef1b7063fa6afd0115849bbb3f2d6c1e06cda5de279"
},
"downloads": -1,
"filename": "fastkml-0.11.tar.gz",
"has_sig": false,
"md5_digest": "8f4ec72d08af61f396052a36ac6df481",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 66199,
"upload_time": "2015-07-13T07:36:15",
"url": "https://files.pythonhosted.org/packages/55/10/981bae93dfd4a43cd3a4d7702789d195484ddce142842fb505bd0919ef37/fastkml-0.11.tar.gz"
}
]
}