Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/woctezuma/senscritique-takeout
- Owner: woctezuma
- License: mit
- Created: 2018-05-16T08:43:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-21T06:47:10.000Z (7 months ago)
- Last Synced: 2024-11-13T14:55:21.270Z (about 1 month ago)
- Topics: data-liberation, senscritique, takeaway, takeout, takeout-data
- Language: Python
- Homepage: https://pypi.org/project/senscritique/
- Size: 71.3 KB
- Stars: 6
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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]: