You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like the file core/attribute/GeoPredicate/geoWithin.py should be renamed GeoWithin. Doing so allows me to use: from janusgraph_python.structure.io.GraphsonReader import JanusGraphSONReader. Otherwise, I get the error: ModuleNotFoundError: No module named 'janusgraph_python.core.attribute.GeoPredicate.GeoWithin'
The text was updated successfully, but these errors were encountered:
If you take a look at unreleased library docs, you will see the exact classes which needs to be imported.
As for import error regarding GeoWithin and GeoContains, you are importing in wrong way. The following unreleased library docs guides through how to invoke all Geo predicates.
You ideally don't import the module directly. Rather, you import GeoPredicate.Geo module, inside which you call either geoContains or geoWithin predicates.
Looks like the file core/attribute/GeoPredicate/geoWithin.py should be renamed GeoWithin. Doing so allows me to use: from janusgraph_python.structure.io.GraphsonReader import JanusGraphSONReader. Otherwise, I get the error: ModuleNotFoundError: No module named 'janusgraph_python.core.attribute.GeoPredicate.GeoWithin'
The text was updated successfully, but these errors were encountered: