Select Git revision
example_input.py
-
Florian Jochens authored
only fetches information for the given article and not it's citations and references
Florian Jochens authoredonly fetches information for the given article and not it's citations and references
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
example_input.py 399 B
#!/usr/bin/env python3
from input.interface import InputInterface as Input
def main(url: str):
i = Input()
#print(i.get_publication(url))
print(i.get_pub_light(url))
# print(i.get_supported_fetchers()) Useless because all classes are called the same
if __name__ == "__main__":
#main("https://doi.org/10.1021/acs.jcim.1c0023")
main("https://doi.org/10.1021/acs.jcim.5b00332")