Skip to content

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

Notifications You must be signed in to change notification settings

josiahfmccoy/ris-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

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

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages