Metadata-Version: 2.1
Name: linkie
Version: 1.4.1
Summary: Linkie looks through files for broken links using Python 3.
Home-page: https://github.com/uccser/linkie
Author: University of Canterbury ComputerScience Education Research Group
Author-email: csse-education-research@canterbury.ac.nz
License: MIT
Keywords: link url checker
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Text Processing :: Markup :: HTML
Requires-Python: ~=3.4
Requires-Dist: PyYaml (==5.3.1)
Requires-Dist: requests (==2.22.0)

|Linkie logo|

Linkie
==============================================================================

Linkie looks through files for broken links using Python 3.5+

|Build Status|

Usage
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Linkie will search all files within the directory it's run and any
subdirectories, and requires a simple YAML config file to run.
You can then run Linkie from the command line.

.. code-block:: bash

  linkie

You can also pass Linkie a YAML file of configuration values (for example
``linkie linkie.yaml``). The YAML file can contain the following optional
settings:

1) ``exclude-directories`` - Any directories listed will be ignored, these
   are relative to the directory Linkie is run from.
2) ``file-types`` - The file extensions to search for URLs.
3) ``skip-urls`` - URLs to skip checking.

Example configuration file (these are the default values Linkie uses):

.. code-block:: yaml

  exclude-directories:
    - .git/
    - docs/build/

  file-types:
    - html
    - md
    - rst
    - txt

Linkie can also be used within Python:

.. code-block:: python3

  import linkie
  checker = linkie.Linkie()  # Creates a linkie object.
  result = checker.run()     # Returns 1 if broken links found, otherwise 0.

You can pass a dictionary of settings directly using Python:

.. code-block:: python3

  import linkie
  settings = {"file-types": ["md", "rst"]}
  checker = linkie.Linkie(config=settings)

You can also use a config file within Python:

.. code-block:: python3

  import linkie
  checker = linkie.Linkie(config_file_path='linkie.yaml')

You can also access the following attributes from the linkie after it's run:

.. code-block:: python3

  linkie.urls  # Dictionary of processed URLs and their data.
  linkie.status_counts  # Dictionary of status codes and their counts.
  linkie.file_count     # Number of files processed.

License
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Linkie is licensed under the MIT License. Read the `license file`_ for
more details.

Changelog
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.4.1
------------------------------------------------------------------------------

- Add logic to delay Linkie requesting from a domain if it responds with code 429.
- Reorganise logging output so that the URL is printed last.
- Update dependencies.

1.4.0
------------------------------------------------------------------------------

- Update to only check links prefixed by one of [=", (, <, ' '(a space)].
- Linkie now finds all unique links at once, then uses multithreading to check them all.
- Linkie now rechecks links that had a ConnectionError, as these are often valid.
- Broken links in the SUMMARY are now also displayed with their status code.

1.3.1
------------------------------------------------------------------------------

- Update logging configuration.
- Update dependencies.

1.3.0
------------------------------------------------------------------------------

- Set User-Agent to emulate browser viewing.
- Use Python logging module.

1.2.0
------------------------------------------------------------------------------

- Allow passing of variable of config settings in Python.

1.1.1
------------------------------------------------------------------------------

- Update method for URLs with brackets.

1.1.0
------------------------------------------------------------------------------

- Allow adding URLs to skip to configuration file.
- Skip checking URLs that have already been checked.
- Show connection error names instead of 999 status.
- Uses class based object allowing user to retrieve values after running.

1.0.0
------------------------------------------------------------------------------

- Initial linkie release.

FAQ
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Why was this created as a Python package?
------------------------------------------------------------------------------

We required a script to check our repositories for broken links.
This tool was initially written in Python, and a published Python package makes
it easy for repositories to use this tool, in combination with pyup notifying
if the package is updated.

Can you update linkie to support this specific URL?
------------------------------------------------------------------------------

Probably not. This script was initally created as an internal tool so we are
not actively developing and supporting it compared to our other repositories.
However we have published it freely under the MIT License to allow you to
copy and modify linkie as you wish.

Will you get around to writing proper documentation?
------------------------------------------------------------------------------

Maybe. This script was initally created as an internal tool so doesn't have
the same level of polish as other projects we create. If we have more time
down the road, we may spend more time developing linkie.

How do I install the development version as local package?
------------------------------------------------------------------------------

1. ``$ git clone https://github.com/uccser/linkie.git``
2. ``$ cd linkie``
3. ``$ pip3 install .``

.. |Linkie logo| image:: https://raw.githubusercontent.com/uccser/linkie/master/images/linkie-logo.png
   :target: https://github.com/uccser/linkie
   :alt: Linkie logo

.. _license file: LICENSE

.. |Build Status| image:: https://travis-ci.org/uccser/linkie.svg?branch=master
   :target: https://travis-ci.org/uccser/linkie


