Metadata-Version: 2.1
Name: grab-favicon
Version: 1.0.1
Summary: Python functions to download favicons using internal google api
Home-page: UNKNOWN
Author: Emilio Mendoza
Author-email: emen3998@gmail.com
License: UNKNOWN
Description: 
        # grab_favicon
        
        Python functions to download favicons using internal google api
        
        ## Installation
        
        Install function by running the following command.
        <br>
        **NOTE** Once pip comes back online
        
        ```bash
          pip install grab_fabicon
        ```
        
        ## Usage/Examples
        
        ```python
        from favicon-grabber import download_favicon, download_favicons
        
        # Single download
        download_favicon("google.com", size=128)
        
        # Multiple downloads
        websites = ["google.com", "stackoverflow.com", "github.com"]
        download_favicons(websites, path="my/path/favicons")
        ```
        
        ## Acknowledgements
        - [aanupam23](https://github.com/aanupam23/FaviconGrabber/tree/main)
Keywords: python,favicon,downloader,grabber
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
