New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

tkintermapview

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tkintermapview - pypi Package Compare versions

Comparing version
1.25
to
1.26
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: tkintermapview
Version: 1.25
Version: 1.26
Summary: A python Tkinter widget to display image tile maps like OpenStreetMap or Satellite Images.

@@ -5,0 +5,0 @@ Home-page: https://github.com/TomSchimansky/TkinterMapView

@@ -12,3 +12,3 @@ from setuptools import setup

setup(name="tkintermapview",
version="1.25",
version="1.26",
author="Tom Schimansky",

@@ -15,0 +15,0 @@ license="Creative Commons Zero v1.0 Universal",

Metadata-Version: 2.1
Name: tkintermapview
Version: 1.25
Version: 1.26
Summary: A python Tkinter widget to display image tile maps like OpenStreetMap or Satellite Images.

@@ -5,0 +5,0 @@ Home-page: https://github.com/TomSchimansky/TkinterMapView

@@ -1,2 +0,2 @@

__version__ = "1.25"
__version__ = "1.26"

@@ -3,0 +3,0 @@ from .map_widget import TkinterMapView

@@ -508,3 +508,6 @@ import requests

image_tk = ImageTk.PhotoImage(image)
if self.running:
image_tk = ImageTk.PhotoImage(image)
else:
return self.empty_tile_image

@@ -511,0 +514,0 @@ self.tile_image_cache[f"{zoom}{x}{y}"] = image_tk