I'm calculating the distance between a point and a polygon
from shapely import wkt
polys = ('POLYGON((-58.612406970999984 -34.55196600599993, -58.61272573499997 -34.552244351999946, -58.611851334999983 -34.552907077999976, -58.611473561999958 -34.552566878999983, -58.612331868999945 -34.55191298799997, -58.612406970999984 -34.55196600599993))')
point = ('POINT(-53.6461527438567 -26.2619788971019)')
poly.distance(pt)
poly.boundary.distance(pt)
poly.exterior.distance(pt)
How can I represent the polygon and the point graphically, that is, draw it and let that representation verify if the result of the previous code is the correct distance.