I have observed that during importing of Shapefile format to Pandas DataFrame (using geopandas package) columns with long values (over 256 char) are being trimmed:
import geopandas as gpd
import pandas as pd
shp_file = gpd.read_file(observations.shp)
Is there a way to bypass this limitation?