Metadata-Version: 1.0
Name: pobo
Version: 1.0.5
Summary: Python3 parser and network representation of Open Biological and Biomedical Ontologies (OBO)
Home-page: https://github.com/mschubert/python-obo
Author: XiaoGerGer
Author-email: is.me.xiao@gmail.com
License: MIT
Description: pobo
        ====
        
        .. code:: python
        
            from pobo import Parser
        
            parser = Parser("file.obo")
        
            for stanza in parser:
                ...
        
        .. code:: python
        
            parser.headers.get("format-version")
            parser.headers.get("...")
        
        
        .. code:: python
        
            stanza.name
        
            stanza.tags
        
            for tag, value in stanza.tags.items():
                ...
        
        
Keywords: parse obo
Platform: UNKNOWN
