Metadata-Version: 2.1
Name: restart-datasets
Version: 0.4
Summary: Python package for offline access to restart datasets
Home-page: http://github.com/restartus/restart_datasets
Author: Restart Partners
Author-email: info@restart.us
Maintainer: Lucas Hahn
Maintainer-email: lucas@restart.us
License: UNKNOWN
Description: # Restart Datasets
        
        A Python package for offline access to data needed to run [restart](https://github.com/restartus/restart)
        
        ## Installation
        ``vega_datasets`` is compatible with Python 3.8 or newer. Install with:
        
        ```
        $ pip install restart_datasets
        ```
        
        ## Usage
        
        The main object in this library is ``data``:
        
        ```python
        >>> from restart_datasets import data
        ```
        
        To access the BLS data for, say, the state of California:
        
        ```python
        df = data.California()
        ```
        
        This will return a dataframe containing employment statistics for the state of
        California.
        
        ## Available Datasets
        
        To list all the available datsets, use ``list_datasets``:
        
        ```python
        datasets = data.list_datasets()
        ```
        
        ## Dataset Information
        
        If you want more information about any dataset, you can use the ``description`` property:
        
        ```python
        data.California.description
        ```
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.8
Description-Content-Type: text/markdown
