Metadata-Version: 2.1
Name: lastfm_cg
Version: 1.2
Summary: Generate covers collage from album listened by a lastfm user.
Home-page: https://github.com/dbeley/lastmf_cg
Author: dbeley
Author-email: dbeley@protonmail.com
License: UNKNOWN
Description: # lastfm_cg : lastfm collage generator
        
        Generate covers collage from albums listened by a lastfm user.
        
        This utility needs a valid config file with your lastfm API keys (get them at https://www.last.fm/api) in ~/.config/lastfm_cg/config.ini (see config_sample.ini for an example).
        
        It also cache the image file requested thanks to the requests-cache library. If you don't want the script to create an sqlite file in your .config/lastfm_cg/ folder, you will have to launch the script with the -d/--disable_cache flag.
        
        ## Installation
        
        ```
        pip install lastfm_cg
        ```
        
        If you are an Archlinux user, you can install the AUR package [lastfm_cg-git](https://aur.archlinux.org/packages/lastfm_cg-git).
        
        ## Installation in a virtualenv
        
        ```
        git clone https://github.com/dbeley/lastfm_cg
        cd lastfm_cg
        pipenv install '-e .'
        ```
        
        ## Usage
        
        Show the help and the available options.
        
        ```
        lastfm_cg -h
        ```
        
        Generate a collage for the user USER of the size 5x5 for the last 7 days (default values).
        
        ```
        lastfm_cg -u USER
        lastfm_cg -u USER -t 7day -r 5
        ```
        
        Generate a collage for the user USER of the size 3x3 for all its history.
        
        ```
        lastfm_cg -u USER -t overall -r 3
        lastfm_cg --username USER --timeframe overall --rows 3
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: POSIX :: Linux
Description-Content-Type: text/markdown
