Trees | Indices | Help |
---|
|
This module provides code to work with Medline.
Classes: Record A dictionary holding Medline data.
Functions: read Reads one Medline record parse Allows you to iterate over a bunch of Medline records
|
|||
Record A dictionary holding information from a Medline record. |
|
|||
|
|||
|
|
|||
__package__ = None hash(x) |
|
Read Medline records one by one from the handle. The handle is either is a Medline file, a file-like object, or a list of lines describing one or more Medline records. Typical usage: from Bio import Medline handle = open("mymedlinefile") records = Medline.parse(handle) for record in record: print record['TI'] |
Read a single Medline records from the handle. The handle is either is a Medline file, a file-like object, or a list of lines describing a Medline record. Typical usage: from Bio import Medline handle = open("mymedlinefile") record = Medline.read(handle) print record['TI'] |
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Apr 1 00:42:12 2011 | http://epydoc.sourceforge.net |