This commit is contained in:
		
							parent
							
								
									6a2c514265
								
							
						
					
					
						commit
						0eedc2a638
					
				| 
						 | 
				
			
			@ -1,3 +1,7 @@
 | 
			
		|||
# Byte-compiled Python
 | 
			
		||||
__pycache__/
 | 
			
		||||
*.pyc
 | 
			
		||||
*.pyc
 | 
			
		||||
 | 
			
		||||
# Poetry venv directories and files
 | 
			
		||||
.venv/
 | 
			
		||||
poetry.lock
 | 
			
		||||
							
								
								
									
										3
									
								
								main.py
								
								
								
								
							
							
						
						
									
										3
									
								
								main.py
								
								
								
								
							| 
						 | 
				
			
			@ -2,8 +2,6 @@ from src.stop import *
 | 
			
		|||
import sys
 | 
			
		||||
from datetime import datetime
 | 
			
		||||
from gmplot import gmplot
 | 
			
		||||
import imgkit
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
if __name__ == "__main__":
 | 
			
		||||
    for word in sys.argv[1:]:
 | 
			
		||||
| 
						 | 
				
			
			@ -27,4 +25,3 @@ if __name__ == "__main__":
 | 
			
		|||
                        gmap = gmplot.GoogleMapPlotter(v.location[0], v.location[1], 13)
 | 
			
		||||
                        gmap.marker(v.location[0], v.location[1], "cornflowerblue")
 | 
			
		||||
                        gmap.draw("map.html")
 | 
			
		||||
                        imgkit.from_file("map.html", "map.pdf")
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										4
									
								
								map.html
								
								
								
								
							
							
						
						
									
										4
									
								
								map.html
								
								
								
								
							| 
						 | 
				
			
			@ -8,7 +8,7 @@
 | 
			
		|||
    function initialize() {
 | 
			
		||||
        var map = new google.maps.Map(document.getElementById("map_canvas"), {
 | 
			
		||||
            zoom: 13,
 | 
			
		||||
            center: new google.maps.LatLng(44.840843, -0.577247)
 | 
			
		||||
            center: new google.maps.LatLng(44.828156, -0.574932)
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        var marker_icon_6495ED = {
 | 
			
		||||
| 
						 | 
				
			
			@ -17,7 +17,7 @@
 | 
			
		|||
        };
 | 
			
		||||
 | 
			
		||||
        new google.maps.Marker({
 | 
			
		||||
            position: new google.maps.LatLng(44.840843, -0.577247),
 | 
			
		||||
            position: new google.maps.LatLng(44.828156, -0.574932),
 | 
			
		||||
            icon: marker_icon_6495ED,
 | 
			
		||||
            map: map
 | 
			
		||||
        });
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,126 +0,0 @@
 | 
			
		|||
[[package]]
 | 
			
		||||
name = "certifi"
 | 
			
		||||
version = "2021.10.8"
 | 
			
		||||
description = "Python package for providing Mozilla's CA Bundle."
 | 
			
		||||
category = "main"
 | 
			
		||||
optional = false
 | 
			
		||||
python-versions = "*"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "charset-normalizer"
 | 
			
		||||
version = "2.0.12"
 | 
			
		||||
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
 | 
			
		||||
category = "main"
 | 
			
		||||
optional = false
 | 
			
		||||
python-versions = ">=3.5.0"
 | 
			
		||||
 | 
			
		||||
[package.extras]
 | 
			
		||||
unicode_backport = ["unicodedata2"]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "gmplot"
 | 
			
		||||
version = "1.4.1"
 | 
			
		||||
description = "A matplotlib-like interface to plot data with Google Maps."
 | 
			
		||||
category = "main"
 | 
			
		||||
optional = false
 | 
			
		||||
python-versions = "*"
 | 
			
		||||
 | 
			
		||||
[package.dependencies]
 | 
			
		||||
requests = "*"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "idna"
 | 
			
		||||
version = "3.3"
 | 
			
		||||
description = "Internationalized Domain Names in Applications (IDNA)"
 | 
			
		||||
category = "main"
 | 
			
		||||
optional = false
 | 
			
		||||
python-versions = ">=3.5"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "imgkit"
 | 
			
		||||
version = "1.2.2"
 | 
			
		||||
description = "Wkhtmltopdf python wrapper to convert html to image using the webkit rendering engine and qt"
 | 
			
		||||
category = "main"
 | 
			
		||||
optional = false
 | 
			
		||||
python-versions = "*"
 | 
			
		||||
 | 
			
		||||
[package.dependencies]
 | 
			
		||||
six = "*"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "requests"
 | 
			
		||||
version = "2.27.1"
 | 
			
		||||
description = "Python HTTP for Humans."
 | 
			
		||||
category = "main"
 | 
			
		||||
optional = false
 | 
			
		||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
 | 
			
		||||
 | 
			
		||||
[package.dependencies]
 | 
			
		||||
certifi = ">=2017.4.17"
 | 
			
		||||
charset-normalizer = {version = ">=2.0.0,<2.1.0", markers = "python_version >= \"3\""}
 | 
			
		||||
idna = {version = ">=2.5,<4", markers = "python_version >= \"3\""}
 | 
			
		||||
urllib3 = ">=1.21.1,<1.27"
 | 
			
		||||
 | 
			
		||||
[package.extras]
 | 
			
		||||
socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"]
 | 
			
		||||
use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "six"
 | 
			
		||||
version = "1.16.0"
 | 
			
		||||
description = "Python 2 and 3 compatibility utilities"
 | 
			
		||||
category = "main"
 | 
			
		||||
optional = false
 | 
			
		||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "urllib3"
 | 
			
		||||
version = "1.26.9"
 | 
			
		||||
description = "HTTP library with thread-safe connection pooling, file post, and more."
 | 
			
		||||
category = "main"
 | 
			
		||||
optional = false
 | 
			
		||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
 | 
			
		||||
 | 
			
		||||
[package.extras]
 | 
			
		||||
brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"]
 | 
			
		||||
secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"]
 | 
			
		||||
socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
 | 
			
		||||
 | 
			
		||||
[metadata]
 | 
			
		||||
lock-version = "1.1"
 | 
			
		||||
python-versions = "^3.9"
 | 
			
		||||
content-hash = "38d635e600115509aba955aaee5bd0c5d91d0a621f114d3b1723ca3471bb2900"
 | 
			
		||||
 | 
			
		||||
[metadata.files]
 | 
			
		||||
certifi = [
 | 
			
		||||
    {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"},
 | 
			
		||||
    {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"},
 | 
			
		||||
]
 | 
			
		||||
charset-normalizer = [
 | 
			
		||||
    {file = "charset-normalizer-2.0.12.tar.gz", hash = "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"},
 | 
			
		||||
    {file = "charset_normalizer-2.0.12-py3-none-any.whl", hash = "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"},
 | 
			
		||||
]
 | 
			
		||||
gmplot = [
 | 
			
		||||
    {file = "gmplot-1.4.1-py3-none-any.whl", hash = "sha256:873bcecd90f0e63a73b2876e15a2225145d726f3b7cfb47a363a3a5459fc778d"},
 | 
			
		||||
    {file = "gmplot-1.4.1.tar.gz", hash = "sha256:cfe72d251c17b5c05043169d121a9728554bf65b8c96760ce9fabb6d269c6667"},
 | 
			
		||||
]
 | 
			
		||||
idna = [
 | 
			
		||||
    {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"},
 | 
			
		||||
    {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"},
 | 
			
		||||
]
 | 
			
		||||
imgkit = [
 | 
			
		||||
    {file = "imgkit-1.2.2-py3-none-any.whl", hash = "sha256:304de76b83fe2dbb1f70194f5f88e27e46bdc352bdc9c9ec5cf961e986300fc8"},
 | 
			
		||||
    {file = "imgkit-1.2.2.tar.gz", hash = "sha256:382e7b3c280de4a472d0d786d9cea7bb9d6d8df2c2310ad07d4fe440ad1cb218"},
 | 
			
		||||
]
 | 
			
		||||
requests = [
 | 
			
		||||
    {file = "requests-2.27.1-py2.py3-none-any.whl", hash = "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d"},
 | 
			
		||||
    {file = "requests-2.27.1.tar.gz", hash = "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"},
 | 
			
		||||
]
 | 
			
		||||
six = [
 | 
			
		||||
    {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
 | 
			
		||||
    {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
 | 
			
		||||
]
 | 
			
		||||
urllib3 = [
 | 
			
		||||
    {file = "urllib3-1.26.9-py2.py3-none-any.whl", hash = "sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14"},
 | 
			
		||||
    {file = "urllib3-1.26.9.tar.gz", hash = "sha256:aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e"},
 | 
			
		||||
]
 | 
			
		||||
| 
						 | 
				
			
			@ -7,7 +7,6 @@ authors = ["mdeboute <martin.deboute@gmail.com>"]
 | 
			
		|||
[tool.poetry.dependencies]
 | 
			
		||||
python = "^3.9"
 | 
			
		||||
gmplot = "^1.4.1"
 | 
			
		||||
imgkit = "^1.2.2"
 | 
			
		||||
 | 
			
		||||
[tool.poetry.dev-dependencies]
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue