I'm trying to access a field in views.py in order to perform an operation on it which will calculate its distance from a user-inputted point (using geopy). The input needs to be a plain string but is currently stored in my database as: u'(lat, lng)' which geopy does not enjoy.
How can I store the information in my db in the proper format ( ex. (lat, lng) ). The coordinates are originally inputted in this format.
Thank you in advance, apologies for not using proper terminology, new to this and self taught.