0

Code snippet

from dbinit import session
from geoalchemy2 import Geometry, func
result = session.query(func.ST_AsText('POINT(100 100)'))

How to retrieve the data from this result object?

asitm9
  • 853
  • 4
  • 12
  • 21

1 Answers1

0

I have figured out the solution.

re = result.all()

asitm9
  • 853
  • 4
  • 12
  • 21