Metadata-Version: 2.1
Name: senscritique
Version: 0.5.2
Summary: SensCritique Takeout on PyPI
Home-page: https://github.com/woctezuma/SensCritique-Takeout
Author: Wok
Author-email: wok@tuta.io
License: UNKNOWN
Download-URL: https://github.com/woctezuma/SensCritique-Takeout/archive/0.5.2.tar.gz
Description: # SensCritique Takeout
        
        [![PyPI status][pypi-image]][pypi]
        [![Build status][build-image]][build]
        [![Updates][dependency-image]][pyup]
        [![Python 3][python3-image]][pyup]
        [![Code coverage][codecov-image]][codecov]
        [![Code Quality][codacy-image]][codacy]
        
        This repository contains Python code to export your data from [SensCritique.com](https://www.senscritique.com).
        
        ## Installation
        
        The code is packaged for [PyPI](https://pypi.org/project/senscritique/), so that the installation consists in running:
        
        ```bash
        pip install senscritique
        ```
        
        ## Usage
        
        ### Library (« collection »)
        
        A library can be downloaded as follows:
        
        ```python
        import senscritique
        
        # Download in JSON format the library of the given user
        data = senscritique.parse_and_cache(user_name='wok', data_type='collection')
        ```
        
        ### Reviews (« critiques »)
        
        Reviews can be downloaded as follows:
        
        ```python
        import senscritique
        
        # Download in JSON format the reviews of the given user
        data = senscritique.parse_and_cache(user_name='wok', data_type='critiques')
        ```
        
        ### Rankings (« listes »)
        
        Rankings can be downloaded as follows:
        
        ```python
        import senscritique
        
        # Download in JSON format the rankings of the given user
        data = senscritique.parse_and_cache(user_name='wok', data_type='listes')
        ```
        
        ## References
        
        - [Google Takeout](https://en.wikipedia.org/wiki/Google_Takeout)
        
        <!-- Definitions for badges -->
        
        [pypi]: <https://pypi.python.org/pypi/senscritique>
        [pypi-image]: <https://badge.fury.io/py/senscritique.svg>
        
        [build]: <https://github.com/woctezuma/senscritique/actions>
        [build-image]: <https://github.com/woctezuma/senscritique/workflows/Python package/badge.svg?branch=master>
        [publish-image]: <https://github.com/woctezuma/senscritique/workflows/Upload Python Package/badge.svg?branch=master>
        
        [pyup]: <https://pyup.io/repos/github/woctezuma/senscritique/>
        [dependency-image]: <https://pyup.io/repos/github/woctezuma/senscritique/shield.svg>
        [python3-image]: <https://pyup.io/repos/github/woctezuma/senscritique/python-3-shield.svg>
        
        [codecov]: <https://codecov.io/gh/woctezuma/senscritique>
        [codecov-image]: <https://codecov.io/gh/woctezuma/senscritique/branch/master/graph/badge.svg>
        
        [codacy]: <https://www.codacy.com/app/woctezuma/senscritique>
        [codacy-image]: <https://api.codacy.com/project/badge/Grade/5414284721184d139b48023a0467858d>
        
Keywords: senscritique,takeout,takeaway
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Games/Entertainment
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: End Users/Desktop
Classifier: Natural Language :: French
Requires-Python: >=3
Description-Content-Type: text/markdown
