Metadata-Version: 2.1
Name: tidytuesday
Version: 0.0.2
Summary: Download #TidyTuesday data
Home-page: https://github.com/ilnaes/tidytuesdaypy
Author: Sean Li
Author-email: seanli646@gmail.com
License: UNKNOWN
Description: # tidytuesdayPy
        
        Download TidyTuesday data.  Inspired by [tidytuesdayR](https://github.com/thebioengineer/tidytuesdayR).
        
        ## Usage
        
        ```python
        from tidytuesday import TidyTuesday
        
        tt = TidyTuesday("2021-04-06")
        ```
        
        You can then access each data set as an attribute.  Hyphens (if present) are converted to underscores.
        
        ```python
        df = tt.forest
        ```
        
        You can also access the readme.
        
        ```python
        print(tt.readme)
        ```
        
        ## TODO
        
        - Rate limit checks
        - Implement parsers for zip and rds formats
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
