abdulmanann commented on issue #890: URL: https://github.com/apache/age/issues/890#issuecomment-1568356002
It appears that the ImportError is caused by trying to import a 'Model' class that doesn't exist in the `age.models` module. If you check the content of `age.models` on the [Apache AGE Python driver GitHub page](https://github.com/rhizome-ai/apache-age-python/blob/main/age/models.py), you will see that 'Model' is not a declared class in that module, which is why you're encountering this error. Please make sure you are importing a class or function that actually exists in the `age.models` module. You can import all classes from `age.models` with the following statement: ```python from age.models import * ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
