Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support pathlib.Path for onto.save() #48

Open
JeffreyAnimal opened this issue Oct 22, 2024 · 0 comments
Open

support pathlib.Path for onto.save() #48

JeffreyAnimal opened this issue Oct 22, 2024 · 0 comments

Comments

@JeffreyAnimal
Copy link

Add support for Path objects for saving Ontology

It would be great if pathlib.Path objects would be supported by the save() function.

Currently a Exception is thrown:

 AttributeError: 'PosixPath' object has no attribute 'write'

Current Code

save_path = pathlib.Path(~/example_path) / "save_file.nt"
onto.save(file=str(save_path), format="ntriples")

Expected Code

save_path = pathlib.Path(~/example_path) / "save_file.nt"
onto.save(file=save_path, format="ntriples")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant