Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RISParser

A simple python module for parsing files in standard RIS format. The api follows the same basic pattern as the core csv module (reader/writer/DictReader/DictWriter, etc.). See the example below

import ris_parser as ris

with open('filename.ris') as f:
    reader = ris.DictReader(f)
    for entry in reader:
        print(entry)

About

A python ris parsing module, designed to follow the basic api principles of the csv module

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages