Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/woctezuma/senscritique-takeout

SensCritique Takeout. Available on PyPI.
https://github.com/woctezuma/senscritique-takeout

data-liberation senscritique takeaway takeout takeout-data

Last synced: 17 days ago
JSON representation

SensCritique Takeout. Available on PyPI.

Awesome Lists containing this project

README

        

# SensCritique Takeout

[![PyPI status][pypi-image]][pypi]
[![Build status][build-image]][build]
[![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)

[pypi]:
[pypi-image]:

[build]:
[build-image]:
[publish-image]:

[pyup]:
[dependency-image]:
[python3-image]:

[codecov]:
[codecov-image]:

[codacy]:
[codacy-image]: