geovizpy 0.1.1__tar.gz → 0.1.2__tar.gz
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.
- geovizpy-0.1.2/PKG-INFO +46 -0
- geovizpy-0.1.2/geovizpy.egg-info/PKG-INFO +46 -0
- {geovizpy-0.1.1 → geovizpy-0.1.2}/setup.py +12 -2
- geovizpy-0.1.1/PKG-INFO +0 -13
- geovizpy-0.1.1/geovizpy.egg-info/PKG-INFO +0 -13
- {geovizpy-0.1.1 → geovizpy-0.1.2}/README.md +0 -0
- {geovizpy-0.1.1 → geovizpy-0.1.2}/geovizpy/__init__.py +0 -0
- {geovizpy-0.1.1 → geovizpy-0.1.2}/geovizpy.egg-info/SOURCES.txt +0 -0
- {geovizpy-0.1.1 → geovizpy-0.1.2}/geovizpy.egg-info/dependency_links.txt +0 -0
- {geovizpy-0.1.1 → geovizpy-0.1.2}/geovizpy.egg-info/top_level.txt +0 -0
- {geovizpy-0.1.1 → geovizpy-0.1.2}/setup.cfg +0 -0
geovizpy-0.1.2/PKG-INFO
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: geovizpy
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: A Python wrapper for the geoviz JavaScript library
|
|
5
|
+
Author: Florian
|
|
6
|
+
Project-URL: Source, https://codeberg.org/florian/geovizpy_repo
|
|
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/yourusername/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,46 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: geovizpy
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: A Python wrapper for the geoviz JavaScript library
|
|
5
|
+
Author: Florian
|
|
6
|
+
Project-URL: Source, https://codeberg.org/florian/geovizpy_repo
|
|
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/yourusername/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
|
+
```
|
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
from setuptools import setup, find_packages
|
|
2
2
|
|
|
3
|
+
# Read the contents of your README file
|
|
4
|
+
from pathlib import Path
|
|
5
|
+
this_directory = Path(__file__).parent
|
|
6
|
+
long_description = (this_directory / "README.md").read_text()
|
|
7
|
+
|
|
3
8
|
setup(
|
|
4
9
|
name="geovizpy",
|
|
5
|
-
version="0.1.
|
|
10
|
+
version="0.1.2",
|
|
6
11
|
description="A Python wrapper for the geoviz JavaScript library",
|
|
7
|
-
|
|
12
|
+
long_description=long_description,
|
|
13
|
+
long_description_content_type='text/markdown',
|
|
14
|
+
author="Florian",
|
|
8
15
|
packages=find_packages(),
|
|
9
16
|
install_requires=[],
|
|
17
|
+
project_urls={
|
|
18
|
+
'Source': 'https://codeberg.org/florian/geovizpy_repo',
|
|
19
|
+
},
|
|
10
20
|
classifiers=[
|
|
11
21
|
"Programming Language :: Python :: 3",
|
|
12
22
|
"License :: OSI Approved :: MIT License",
|
geovizpy-0.1.1/PKG-INFO
DELETED
|
@@ -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,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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|