geovizpy 0.1.1__py3-none-any.whl → 0.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.4
2
+ Name: geovizpy
3
+ Version: 0.1.3
4
+ Summary: A Python wrapper for the geoviz JavaScript library
5
+ Author: Florian
6
+ Project-URL: Source, https://codeberg.org/florian/geovizpy
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.6
11
+ Description-Content-Type: text/markdown
12
+ Dynamic: author
13
+ Dynamic: classifier
14
+ Dynamic: description
15
+ Dynamic: description-content-type
16
+ Dynamic: project-url
17
+ Dynamic: requires-python
18
+ Dynamic: summary
19
+
20
+ # geovizpy
21
+
22
+ A Python wrapper for the [geoviz](https://github.com/neocarto/geoviz) JavaScript library.
23
+ It allows you to create thematic maps using a simple Python API and render them to HTML.
24
+
25
+ ## Installation
26
+
27
+ ```bash
28
+ pip install git+https://github.com/fbxyz/geovizpy.git
29
+ ```
30
+
31
+ ## Usage
32
+
33
+ ```python
34
+ from geovizpy import Geoviz
35
+ import json
36
+
37
+ # Load your GeoJSON data
38
+ with open("examples/world.json") as f:
39
+ world_data = json.load(f)
40
+
41
+ # Create a map
42
+ viz = Geoviz(projection="EqualEarth")
43
+ viz.outline()
44
+ viz.choro(data=world_data, var="gdppc")
45
+ viz.render_html("map.html")
46
+ ```
@@ -0,0 +1,5 @@
1
+ geovizpy/__init__.py,sha256=pM9RjTVtCgm9v19mW52wMMhwCSMjtJjNTUqY6O5fJeU,7691
2
+ geovizpy-0.1.3.dist-info/METADATA,sha256=ykOlJ5BnrMYlR8b0rWrNYLNqPP2tbgWjo_PQtVkIfu4,1122
3
+ geovizpy-0.1.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
+ geovizpy-0.1.3.dist-info/top_level.txt,sha256=3D5AFdMd9bWEvGQUWDy6jccJamUwdKmchgCmxLHaAYs,9
5
+ geovizpy-0.1.3.dist-info/RECORD,,
@@ -1,13 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: geovizpy
3
- Version: 0.1.1
4
- Summary: A Python wrapper for the geoviz JavaScript library
5
- Author: fbxyz
6
- Classifier: Programming Language :: Python :: 3
7
- Classifier: License :: OSI Approved :: MIT License
8
- Classifier: Operating System :: OS Independent
9
- Requires-Python: >=3.6
10
- Dynamic: author
11
- Dynamic: classifier
12
- Dynamic: requires-python
13
- Dynamic: summary
@@ -1,5 +0,0 @@
1
- geovizpy/__init__.py,sha256=pM9RjTVtCgm9v19mW52wMMhwCSMjtJjNTUqY6O5fJeU,7691
2
- geovizpy-0.1.1.dist-info/METADATA,sha256=ZHUf0suc137vaoAZeVNUlKTouBpXipTC4FZniNnYdRQ,373
3
- geovizpy-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
- geovizpy-0.1.1.dist-info/top_level.txt,sha256=3D5AFdMd9bWEvGQUWDy6jccJamUwdKmchgCmxLHaAYs,9
5
- geovizpy-0.1.1.dist-info/RECORD,,