-
Notifications
You must be signed in to change notification settings - Fork 129
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
ScienceDirect: Object Retrieval #360
Labels
Comments
nils-herrmann
changed the title
Science Direct: Object Retrieval
ScienceDirect: Object Retrieval
Oct 17, 2024
nils-herrmann
added a commit
to nils-herrmann/pybliometrics
that referenced
this issue
Oct 17, 2024
nils-herrmann
added a commit
to nils-herrmann/pybliometrics
that referenced
this issue
Oct 17, 2024
How would users know the filename beforehand? |
There is a naming convention. All items are enumerated with a prefix/suffix depending on its type (figure, math formula, pdf):
Manually, there are two options:
o_md = ObjectMetadata('10.1016/j.neunet.2024.106632')
filenames = [f['filename'] for f in o_md.results]
|
Alright, then let's make the class work with the filename. I will include your hints in the documentation. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems that the only consistent way of identifying objects is by its
eid
which has following structure:<file_eid>-<object_ref>.<object_suffix>
An example is
1-s2.0-S0893608024005562-si15.svg'
Therefore the most reliable strategy is to retrieve objects by passing the document identifier and object file name:
To get the file names, users can use the
ObjectMetadata
class:The text was updated successfully, but these errors were encountered: