Skip to content
Snippets Groups Projects
Select Git revision
  • 5e6616d2eae45a5bca4045ea7fcffd6f668c659b
  • main default protected
2 results

example_input.py

Blame
  • 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")