Metadata-Version: 2.1
Name: pansurg
Version: 0.1
Summary: Basic pip module for accessing coronavirus resources
Home-page: https://github.com/maxwellflitton/pansurg
Author: Maxwell Flitton
Author-email: maxwellflitton@gmail.com
License: UNKNOWN
Description: # Pansurg
        Open source pip module that enables the user to access coronavirus resources. 
        
        ## Installation 
        
        ```
        pip install pansurg 
        ```
        
        # Papers 
        All coronavirus papers from the Alan institute can be streamed using the ```Papers``` object which 
        itself is a list. To get the papers run the following code"
        
        ```python
        from pansurg import Papers
        
        
        papers = Papers()
        
        for paper in papers:
            # do something 
        ```
        
        ## Paper 
        Right now the paper isn't it's own object but a dict which contains the following:
        
        - ```paper_id```: the id of the paper
        - ```metadata```: contains data about the paper such as the journal title, dates, and authors 
        - ```abstract```: abstract of the paper 
        - ```body_text```: text of the paper 
        - ```bib_enteries```: bibliography
        - ```ref_enteries```: references
        - ```back_matter```: more meta data like funding, conflict of interest statements etc
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 1 - Planning
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Build Tools
Description-Content-Type: text/markdown
