This repository contains Python code to export your data from SensCritique.com.
The code is packaged for PyPI, so that the installation consists in running:
pip install senscritiqueA library can be downloaded as follows:
import senscritique
# Download in JSON format the library of the given user
data = senscritique.parse_and_cache(user_name='wok', data_type='collection')Reviews can be downloaded as follows:
import senscritique
# Download in JSON format the reviews of the given user
data = senscritique.parse_and_cache(user_name='wok', data_type='critiques')Rankings can be downloaded as follows:
import senscritique
# Download in JSON format the rankings of the given user
data = senscritique.parse_and_cache(user_name='wok', data_type='listes')