Metadata-Version: 2.1
Name: powerspot
Version: 0.1
Summary: CLI for automated operations with Spotify
Home-page: https://github.com/theodcr/powerspot
Author: "Théo Delecour",
Author-email: "theo.delecour@gmail.com",
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >= 3.6
Description-Content-Type: text/markdown
Requires-Dist: Click
Requires-Dist: spotipy
Requires-Dist: tabulate
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: isort ; extra == 'dev'

# powerspot

Command line interface and API in Python for advanced and automated operations with Spotify, based on the [click](https://github.com/pallets/click) and [spotipy](https://github.com/plamere/spotipy) packages.

## Installation instructions

This project uses Python >= 3.6.

```
pip install powerspot
```

## Usage

Examples of commands:
```bash
# get followed artists from Spotify profile and write them
powerspot artists write artists.json

# get new releases from those artists and save them in Spotify library
powerspot artists -f artists.json releases save

# show top tracks from recent activity
powerspot toptracks --term short show
```


