-
Notifications
You must be signed in to change notification settings - Fork 140
Tips & Tricks
m-kovalsky edited this page Feb 17, 2025
·
10 revisions
Here are some tips & tricks when working with Semantic Link Labs!
- Check out the following GitHub repo for useful scripts for Semantic Link & Semantic Link Labs
- When importing the library and packages, make sure to follow this standard as it is aligned with the documentation and keeps things simple. The reason for following the recommendation below is that functions may be reorganized to different files. In that case, if you were using the first snippet (shown below) your code would break. The second code snippet (shown below) would not be impacted and is therefore more robust.
Do NOT do this:
from sempy_labs._connections import list_connections
list_connections()
Instead do this:
import sempy_labs as labs
labs.list_connections()