Currently, Shapely stays out of the business of plotting geometries (except for basic svg repr for the notebook), and you can use eg geopandas for visualizing shapely ...
from shapely.wkt import loads from shapely.geometry import LineString, Point import matplotlib.pyplot as plt import geopandas class Test: def __init__(self, point ...