Metadata-Version: 2.1
Name: lyricsScraper
Version: 1.0.4
Summary: You can get lyrics from genius with many usefull functions.
Home-page: https://github.com/letsplaywithstrings/lyrcisScraper
Author: Ahmet Metin
Author-email: ahmet.metin817@gmail.com
License: UNKNOWN
Download-URL: https://github.com/letsplaywithstrings/lyrcisScraper/archive/1.0.4.tar.gz
Description: # lyrcisScraper
        You can scrape song lyrics that you want.
        ## Getting Started
        You can get lyrics easily with this small module.Also, you can get all artists whose name begins with specific letter with this module.Furthermore this module can get all song lyrics of artists whose name is begin with spesific letter.
        ## Prerequisites and Installing
        You need install this module with the following code below from pypi.
        ```
        pip install lyricsScraper
        ```
        ## Usage
        
        **First of all, you must import this module to your py projects by the following code below.**
        ```phyton
        from lyricsScraper import lyricsScraper
        ```
        
        -------------------------------------------------------------------------
        
        If you want get all artists whose name is begin with spesific letter, use the following function below.
        ```phyton
        artist_with_letter(letter)
        ```
        This function will return list of artists.
        
        -------------------------------------------------------------------------
        
        If you want get artist's songs, use the following function below.
        ```phyton
        request_song_url(artist_name, song_cap)
        ```
        This function will return dictionary of songnames and genius song urls.
        
        -------------------------------------------------------------------------
        
        If you want scrape song lyrics with genius song url, use that following function below.
        ```phyton
        scrape_song_lyrics(url)
        ```
        It will return as a string.
        
        -------------------------------------------------------------------------
        
        If you want scrape all song lyrics whose artist name is begin with spesific letter, use the following function below.You must define song capacity of each artist.
        ```phyton
        scrape_data(firstLetterOfArtist,songCapacityOfEachArtist)
        ```
        It will return a dictionary.
        
        -------------------------------------------------------------------------
        
        If you want get song lyrics with song name and artist, use the following function below.In addition,You can probably get lyrics by defining only song name.
        ```phyton
        spesific_lyric(nameOfSongAndArtist)
        ```
        It will return a string
        
        -------------------------------------------------------------------------
        
        If you want get song lyrics of spesific artist, use the following funciton below.You must define song capacity.
        ```phyton
        scrape_artists_songs(artistname,songcapacity)
        ```
        It will return a dictionary.
        
        -------------------------------------------------------------------------
        -------------------------------------------------------------------------
        
        ## Bulit With
        - [requests](https://pypi.org/project/requests/)
        - [BeautifulSoup](https://pypi.org/project/beautifulsoup4/)
        
        # License
        This project is licensed under the MIT License - see the [LICENSE.md](https://github.com/letsplaywithstrings/lyrcisScraper/blob/main/LICENSE) file for details
        
Keywords: Lyrics,Artist
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
