Metadata-Version: 2.4
Name: paroles-net-wrapper
Version: 0.0.2
Summary: Ce projet permet de récupérer les paroles de chansons de paroles.net.
Home-page: https://github.com/Starland9/paroles-net-wrapper.git
Author: Starland9
Author-email: landrysimo99@gmail.com
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: summary

# ParolesNet

Ce projet permet de récupérer les paroles de chansons de [paroles.net](https://www.paroles.net/).

## Installation

Cloner le repo et installer les dépendances avec pip :

    git clone https://github.com/Starland9/paroles-net-wrapper
    pip install -r requirements.txt

## Utilisation

    from paroles_net import ParolesNet

    if __name__ == '__main__':
        pn = ParolesNet()
        songs = pn.get_best_songs()

        song = songs[0]
        print(song)
        print(song.get_lyrics(and_save=True))

        song = songs[1]
        print(song)
        print(song.get_lyrics())

        song = songs[2]
        print(song)
        print(song.get_lyrics(and_save=True))

## Licence

Ce projet est sous la [licence MIT](LICENSE)

## Auteur

    https://github.com/Starland9
