Metadata-Version: 1.1
Name: twitter-banner-switcher
Version: 0.1.0
Summary: Python script that sets your Twitter profile banner to a random image from a specified folder or a list of paths.
Home-page: https://github.com/Pythonity/twitter-banner-switcher
Author: Paweł Adamczak
Author-email: pawel.adamczak@sidnet.info
License: MIT License
Download-URL: https://github.com/Pythonity/twitter-banner-switcher/releases/latest
Description: twitter-banner-switcher
        =======================
        
        |PyPI Version| |Python Versions| |License|
        
        Python (3) script that sets your Twitter profile banner to a random
        image from a specified folder or a list of paths.
        
        Installation
        ------------
        
        With ``PyPI`` (recommended):
        
        .. code:: shell
        
            $ pip3 install twitter-banner-switcher
        
        With ``git clone``:
        
        .. code:: shell
        
            $ git clone https://github.com/Pythonity/twitter-banner-switcher
            $ pip3 install -r twitter-banner-switcher/requirements.txt
            $ cd twitter-banner-switcher/bin
        
        Usage
        -----
        
        ::
        
            $ twitter-banner-switcher -h
            Usage: twitter-banner-switcher [OPTIONS]
        
              Set Twitter profile banner to a random image from a specified folder or a
              list of paths
        
            Options:
              -c, --config-file FILENAME  Path to YAML config file (default: ~/.twitter-
                                          banner-switcher.yml).
              -h, --help                  Show this message and exit.
        
        Examples
        --------
        
        Not much to show here - you can provide path to config file:
        
        .. code:: shell
        
            $ twitter-banner-switcher -c twitter-banner-switcher.yaml
        
        or save it at ``~/.twitter-banner-switcher.yaml`` and just run the damn
        thing:
        
        .. code:: shell
        
            $ twitter-banner-switcher
        
        Example config file
        ~~~~~~~~~~~~~~~~~~~
        
        .. code:: yaml
        
            $ cat twitter-banner-switcher.yaml
            consumer_key: "Twitter consumer key"
            consumer_secret: "Twitter consumer secret"
            access_token: "Twitter access token"
            access_token_secret: "Twitter access token secret"
        
            banner_images:
                - "/home/bender/Photos/Awesome Twitter Banners/"
                - "/home/bender/Downloaded/planet_express.png"
        
        Note: ``banner_images`` can be a path or a list of paths (to directories
        containing images or directly to image files). Recognized formats are
        ``gif``, ``jpg``, ``jpeg`` and ``png``.
        
        Contributions
        -------------
        
        Package source code is available at
        `GitHub <https://github.com/Pythonity/twitter-banner-switcher>`__.
        
        Feel free to use, ask, fork, star, report bugs, fix them, suggest
        enhancements and point out any mistakes.
        
        Authors
        -------
        
        Developed and maintained by `Pythonity <http://pythonity.com/>`__.
        
        Written by `Paweł Adamczak <https://github.com/pawelad>`__.
        
        .. |PyPI Version| image:: https://img.shields.io/pypi/v/twitter-banner-switcher.svg
           :target: https://pypi.python.org/pypi/twitter-banner-switcher
        .. |Python Versions| image:: https://img.shields.io/pypi/pyversions/twitter-banner-switcher.svg
           :target: https://pypi.python.org/pypi/twitter-banner-switcher
        .. |License| image:: https://img.shields.io/github/license/Pythonity/twitter-banner-switcher.svg
           :target: https://github.com/Pythonity/twitter-banner-switcher/blob/master/LICENSE
        
Keywords: twitter banner
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Utilities
