C-Loftus opened a new issue, #1062: URL: https://github.com/apache/sedona-db/issues/1062
Very well could be misunderstanding something, but shouldn't the import for sedona db be `sedonadb` and not `sedona.db`? If you try to run an import with `sedona.db` you get an error whereas `import sedonadb` works fine as expected given [tests which import it as such](https://github.com/apache/sedona-db/blob/main/python/sedonadb/tests/test_context.py#L26) ```py import sedona.db sd = sedona.db.connect() ``` ``` uv run --with sedonadb sedona_test.py Traceback (most recent call last): File "/Users/cloftus/github/sal-cli/sedona_test.py", line 11, in <module> import sedona.db ^^^^^^^^^^^^^^^^ ModuleNotFoundError: No module named 'sedona' ``` -- 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]
