Metadata-Version: 2.1
Name: get-firefox-urls
Version: 0.2.1
Summary: Utility to print the URLs currently open in Firefox.
Home-page: https://github.com/luismsgomes/get-firefox-urls
Author: Luís Gomes
Author-email: luismsgomes@gmail.com
License: MIT
Keywords: firefox util commandline
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7

==================
 get_firefox_urls
==================

Copyright 2019 Luís Gomes <luismsgomes@gmail.com>, all rights reserved.

This program/library is now based on the `firefox_profile` module (https://github.com/luismsgomes/firefox-profile).


Installation
------------

.. code-block:: bash

    pip3 install get-firefox-urls

Usage from Python
-----------------

Please take look at `firefox_profile` module, which offers a more interesting API: https://github.com/luismsgomes/firefox-profile

.. code-block:: python

    from get_firefox_urls import get_firefox_urls

    for w, t, url in get_firefox_urls():
        print("window %d tab %d: %s" % (w, t, url))


Usage from command line
-----------------------

.. code-block:: bash

    get-firefox-urls

Will output something like:

.. code-block::

    window 0 tab 0: https://github.com/luismsgomes/get-firefox-urls
    window 0 tab 1: https://pypi.org/project/get-firefox-urls/

License
-------

This software is licensed under the MIT license.

https://opensource.org/licenses/MIT
