diff options
author | noptuno <repollo.marrero@gmail.com> | 2023-04-28 02:29:30 +0200 |
---|---|---|
committer | noptuno <repollo.marrero@gmail.com> | 2023-04-28 02:29:30 +0200 |
commit | 355dee533bb34a571b9367820a63cccb668cf866 (patch) | |
tree | 838af886b4fec07320aeb10f0d1e74ba79e79b5c /venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info | |
parent | added pyproject.toml file (diff) | |
download | gpt4free-355dee533bb34a571b9367820a63cccb668cf866.tar gpt4free-355dee533bb34a571b9367820a63cccb668cf866.tar.gz gpt4free-355dee533bb34a571b9367820a63cccb668cf866.tar.bz2 gpt4free-355dee533bb34a571b9367820a63cccb668cf866.tar.lz gpt4free-355dee533bb34a571b9367820a63cccb668cf866.tar.xz gpt4free-355dee533bb34a571b9367820a63cccb668cf866.tar.zst gpt4free-355dee533bb34a571b9367820a63cccb668cf866.zip |
Diffstat (limited to '')
6 files changed, 204 insertions, 0 deletions
diff --git a/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/INSTALLER b/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/LICENSE.txt b/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/LICENSE.txt new file mode 100644 index 00000000..474ee747 --- /dev/null +++ b/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/LICENSE.txt @@ -0,0 +1,13 @@ + Copyright 2020 vis.gl, a Series of LF Projects, LLC + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/METADATA b/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/METADATA new file mode 100644 index 00000000..fc00c195 --- /dev/null +++ b/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/METADATA @@ -0,0 +1,103 @@ +Metadata-Version: 2.1 +Name: pydeck +Version: 0.8.1b0 +Summary: Widget for deck.gl maps +Home-page: https://github.com/visgl/deck.gl/tree/master/bindings/pydeck +Author: Andrew Duberstein +Author-email: ajduberstein@gmail.com +License: Apache License 2.0 +Keywords: data,visualization,graphics,GIS,maps +Platform: UNKNOWN +Classifier: Intended Audience :: Developers +Classifier: Intended Audience :: Science/Research +Classifier: Topic :: Multimedia :: Graphics +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Framework :: Jupyter +Requires-Python: >=3.7 +Description-Content-Type: text/markdown +Requires-Dist: jinja2 (>=2.10.1) +Requires-Dist: numpy (>=1.16.4) +Provides-Extra: carto +Requires-Dist: pydeck-carto ; extra == 'carto' +Provides-Extra: jupyter +Requires-Dist: ipywidgets (<8,>=7) ; extra == 'jupyter' +Requires-Dist: traitlets (>=4.3.2) ; extra == 'jupyter' +Requires-Dist: ipython (>=5.8.0) ; (python_version < "3.4") and extra == 'jupyter' +Requires-Dist: ipykernel (>=5.1.2) ; (python_version >= "3.4") and extra == 'jupyter' + +[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/uber/deck.gl/binder) +[![Documentation Status](https://readthedocs.org/projects/deckgl/badge/?version=latest)](https://pydeck.gl) +[![Anaconda-Server Badge](https://anaconda.org/conda-forge/pydeck/badges/version.svg)](https://anaconda.org/conda-forge/pydeck) +[![Downloads](https://pepy.tech/badge/pydeck/week)](https://pepy.tech/project/pydeck/week) + +# pydeck: Large-scale interactive data visualization in Python + +[![demo](https://user-images.githubusercontent.com/2204757/58838976-1538f400-8615-11e9-84f6-a2fe42bb300b.gif)](https://pydeck.gl/) + +The pydeck library is a set of Python bindings for making spatial visualizations with [deck.gl](https://deck.gl), +optimized for a Jupyter environment. To get started, __[see the documentation](https://pydeck.gl/)__. + +__[To install pydeck, see the instructions here](https://pydeck.gl/installation.html)__. + +For __interactive demos__, click the binder logo below: + +[![Binder](https://mybinder.org/static/logo.svg?v=f9f0d927b67cc9dc99d788c822ca21c0)](https://mybinder.org/v2/gh/uber/deck.gl/binder) + +## Sample code + +The following code renders a visualization similar to the one above in a Jupyter notebook: + +```python +import pydeck as pdk + +# 2014 locations of car accidents in the UK +UK_ACCIDENTS_DATA = ('https://raw.githubusercontent.com/uber-common/' + 'deck.gl-data/master/examples/3d-heatmap/heatmap-data.csv') + +# Define a layer to display on a map +layer = pdk.Layer( + 'HexagonLayer', + UK_ACCIDENTS_DATA, + get_position=['lng', 'lat'], + auto_highlight=True, + elevation_scale=50, + pickable=True, + elevation_range=[0, 3000], + extruded=True, + coverage=1) + +# Set the viewport location +view_state = pdk.ViewState( + longitude=-1.415, + latitude=52.2323, + zoom=6, + min_zoom=5, + max_zoom=15, + pitch=40.5, + bearing=-27.36) + +# Render +r = pdk.Deck(layers=[layer], initial_view_state=view_state) +r.to_html('demo.html') +``` + +If you're developing outside a Jupyter environment, you can run: + +```python +r.to_html('demo.html', notebook_display=False) +``` + +__[See the gallery for more examples.](https://pydeck.gl/#gallery)__ + +### Issues and contributing + +If you encounter an issue, file it in the [deck.gl issues page](https://github.com/visgl/deck.gl/issues/new?assignees=&labels=question&template=question.md&title=) +and include your browser's console output, if any. + +If you'd like to contribute to pydeck, please follow the [deck.gl contribution guidelines](https://github.com/visgl/deck.gl/blob/master/CONTRIBUTING.md) +and the [pydeck development installation instructions](https://pydeck.gl/installation.html#development-notes). + + diff --git a/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/RECORD b/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/RECORD new file mode 100644 index 00000000..f218f827 --- /dev/null +++ b/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/RECORD @@ -0,0 +1,80 @@ +../../../etc/jupyter/nbconfig/notebook.d/pydeck.json,sha256=i5T0Y_0QFnCylAA-rcfaKQeQEuBLQEYGMaF15C_8074,68
+../../../share/jupyter/nbextensions/pydeck/extensionRequires.js,sha256=9KokS9ZXW2qY7_Td_eyt-1lCtShjRAUCVkacGUosECc,304
+../../../share/jupyter/nbextensions/pydeck/index.js,sha256=6XB3HY76eduU1ScJEOircIPJ5yY7LQd1qyqFyq7MdP0,2270571
+../../../share/jupyter/nbextensions/pydeck/index.js.map,sha256=Y4VY6xy1eYL47MdX_ea9b5Bw3XB5zp58utKrEULgPhM,6982334
+pydeck-0.8.1b0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
+pydeck-0.8.1b0.dist-info/LICENSE.txt,sha256=QCyg6UK9T2YOfo1G4pb1pTqwcXaKf0bMwhkEkLqpJcc,607
+pydeck-0.8.1b0.dist-info/METADATA,sha256=28Q81qh01JblHRuaUHWOVG60iRouHiU6hhHu-T8w7KE,3912
+pydeck-0.8.1b0.dist-info/RECORD,,
+pydeck-0.8.1b0.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
+pydeck-0.8.1b0.dist-info/top_level.txt,sha256=lLODEADPWVXdN5t46jlHdsW7q24hBgSHoJIgsE5gekg,7
+pydeck/__init__.py,sha256=nr-3F2csHpUqvG1NwxhUVQuc5LXQvsI8W2V1jYteKRw,230
+pydeck/__pycache__/__init__.cpython-39.pyc,,
+pydeck/__pycache__/_version.cpython-39.pyc,,
+pydeck/__pycache__/frontend_semver.cpython-39.pyc,,
+pydeck/__pycache__/settings.cpython-39.pyc,,
+pydeck/_version.py,sha256=WwFg4oM7iUQaMDMgoHdZj0eX-iTOkioNQX-iDdn5DWo,23
+pydeck/bindings/__init__.py,sha256=p1_Y8fL7wajUO5L87gcZ3jLAbHuI50GY726smP4zXaA,221
+pydeck/bindings/__pycache__/__init__.cpython-39.pyc,,
+pydeck/bindings/__pycache__/base_map_provider.cpython-39.pyc,,
+pydeck/bindings/__pycache__/deck.cpython-39.pyc,,
+pydeck/bindings/__pycache__/json_tools.cpython-39.pyc,,
+pydeck/bindings/__pycache__/layer.cpython-39.pyc,,
+pydeck/bindings/__pycache__/light_settings.cpython-39.pyc,,
+pydeck/bindings/__pycache__/map_styles.cpython-39.pyc,,
+pydeck/bindings/__pycache__/view.cpython-39.pyc,,
+pydeck/bindings/__pycache__/view_state.cpython-39.pyc,,
+pydeck/bindings/base_map_provider.py,sha256=FXPJinuduPPjj7RDiT8av1vQ57XDiHHE0cvV5vbJTys,175
+pydeck/bindings/deck.py,sha256=QSZtEVC7BA_Vj_8EXlTfAVpgUKC2wRdEKRMrlneATj8,9408
+pydeck/bindings/json_tools.py,sha256=N6dTt_ml6AG0EvxV0cwCS2a0O_MKthIadikDSufSVVw,2600
+pydeck/bindings/layer.py,sha256=N_ArYKBNAQIwICPLk8LLrsTZp28KgWEhvtBU37JR5Xk,7301
+pydeck/bindings/light_settings.py,sha256=QAFnqxBELOkraDMjkjy7Cf_64AjMR0utkj9n4UFwPCU,1124
+pydeck/bindings/map_styles.py,sha256=rpjytxX-UEllEcy7pzfR5i6QtXihJBZZwomYrclJ8JY,2081
+pydeck/bindings/view.py,sha256=dg61ksIyRj3MMQ07UKkuVYHZbug4hAulb_8pt0O14O8,848
+pydeck/bindings/view_state.py,sha256=3inuPVoSSSHGQY_flOTx3FQOuVYGCs4v48E3U1It690,1516
+pydeck/data_utils/__init__.py,sha256=rDQcedu9d90xn_csPTLkYjTbB8Y7ERqXpirSlYmS-cQ,201
+pydeck/data_utils/__pycache__/__init__.cpython-39.pyc,,
+pydeck/data_utils/__pycache__/binary_transfer.cpython-39.pyc,,
+pydeck/data_utils/__pycache__/color_scales.cpython-39.pyc,,
+pydeck/data_utils/__pycache__/type_checking.cpython-39.pyc,,
+pydeck/data_utils/__pycache__/viewport_helpers.cpython-39.pyc,,
+pydeck/data_utils/binary_transfer.py,sha256=2l8lrBa1LAq4c33U-AodvVL9WV9ZmPoLMEgoKx9SRVk,2230
+pydeck/data_utils/color_scales.py,sha256=xSRQt8BR_r_o9SLSqmUyj4MqSKJ4IvsnvIqe8NLc1rQ,875
+pydeck/data_utils/type_checking.py,sha256=RT4a0D034oW8MdhbiLCJoYE4S5zjkQZ55ecLPNdx6js,732
+pydeck/data_utils/viewport_helpers.py,sha256=ukYHreMe6xpcs0gpRldzaRqagDNKw83UbhUlgM0Iz-E,4803
+pydeck/exceptions/__init__.py,sha256=4dUlyx2vYTDvaRrljfXi0E0AD0UQaVFIJtM4i0MKm2w,75
+pydeck/exceptions/__pycache__/__init__.cpython-39.pyc,,
+pydeck/exceptions/__pycache__/exceptions.cpython-39.pyc,,
+pydeck/exceptions/exceptions.py,sha256=rYFT--g5D_faUYMYBVsJDKvaB-jzYbLFdQQKUEt0L-g,107
+pydeck/frontend_semver.py,sha256=7YUpw1kp1SluMm2ookjwgGvpZ5d_TTD5siXFqAGp2bs,25
+pydeck/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pydeck/io/__pycache__/__init__.cpython-39.pyc,,
+pydeck/io/__pycache__/html.cpython-39.pyc,,
+pydeck/io/html.py,sha256=rjtbfrSztniaYq7NzNPuN-4LmXBuF8sH9G8JoTejLD0,4703
+pydeck/io/templates/index.j2,sha256=TNv8hqc76tUjWQ7dGmxTuYe_9EIMLDIiThocvcYJqaM,1368
+pydeck/io/templates/style.j2,sha256=WP4vIm2D9Gal7LhB5mfEWdV4Z5fCMX4azHUGvv0SrXs,202
+pydeck/nbextension/__init__.py,sha256=Fi5hW-1zVMgNdLhMpL2kA2QGgszMY4OJ4W4k-b1U0eo,529
+pydeck/nbextension/__pycache__/__init__.cpython-39.pyc,,
+pydeck/nbextension/static/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pydeck/nbextension/static/extensionRequires.js,sha256=9KokS9ZXW2qY7_Td_eyt-1lCtShjRAUCVkacGUosECc,304
+pydeck/nbextension/static/index.js,sha256=6XB3HY76eduU1ScJEOircIPJ5yY7LQd1qyqFyq7MdP0,2270571
+pydeck/nbextension/static/index.js.map,sha256=Y4VY6xy1eYL47MdX_ea9b5Bw3XB5zp58utKrEULgPhM,6982334
+pydeck/settings.py,sha256=BN7-f34VQgcIaj5HS12qQwyH24taDySQ3Loh6ipLHYI,1430
+pydeck/types/__init__.py,sha256=oppH3wAJ-kEpwaKnJL8Ah_RGcQcAMZCUp4VZDqslawM,107
+pydeck/types/__pycache__/__init__.cpython-39.pyc,,
+pydeck/types/__pycache__/base.cpython-39.pyc,,
+pydeck/types/__pycache__/function.cpython-39.pyc,,
+pydeck/types/__pycache__/image.cpython-39.pyc,,
+pydeck/types/__pycache__/string.cpython-39.pyc,,
+pydeck/types/base.py,sha256=OrwaGKzTjODnrx1v5GL82l6D3eVNM15wtOs66vEGY8Y,118
+pydeck/types/function.py,sha256=IZnRItRfV6fcqtRlZH967W_c-ne1O0Yub8BPd7Ftpjw,747
+pydeck/types/image.py,sha256=clsL2Tk6udmbsOxtgk56sOCpYMQ-J2nOVVGatiM3fzU,1771
+pydeck/types/string.py,sha256=IwWSDLI2e6YHo-SKLe7VqUfr7LAZzvbC3-cvfOHX1ys,531
+pydeck/widget/__init__.py,sha256=w5aMWdQrk_2M7gCRMQ_iVPmSAsDz0tNaU2k5mJ6DcSw,41
+pydeck/widget/__pycache__/__init__.cpython-39.pyc,,
+pydeck/widget/__pycache__/_frontend.cpython-39.pyc,,
+pydeck/widget/__pycache__/debounce.cpython-39.pyc,,
+pydeck/widget/__pycache__/widget.cpython-39.pyc,,
+pydeck/widget/_frontend.py,sha256=B_bqTfL1oKFCz3z2fy9cZvesHh7IPjMR7u51hGdjjiY,447
+pydeck/widget/debounce.py,sha256=iaIzIhWItVhwatcXVnhGcc3ciO4bmIBC39h-_Xtg4JU,694
+pydeck/widget/widget.py,sha256=BjXaGTQIZB1b9UXrgDeid2TF0Ty0U2x_YUzoos301Bw,5132
diff --git a/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/WHEEL b/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/WHEEL new file mode 100644 index 00000000..f771c29b --- /dev/null +++ b/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.40.0) +Root-Is-Purelib: true +Tag: py2-none-any +Tag: py3-none-any + diff --git a/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/top_level.txt b/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/top_level.txt new file mode 100644 index 00000000..51322898 --- /dev/null +++ b/venv/lib/python3.9/site-packages/pydeck-0.8.1b0.dist-info/top_level.txt @@ -0,0 +1 @@ +pydeck |