diff --git a/README.md b/README.md
index 4bf3418..2dae96c 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Python package to help with parsing, handling and other manipulations of the Ind
See the examples/ directory for sample command line tools.
-Because Ronkyuu uses BeautifulSoup4 for it's amazing HTML wrangling ability, you have the option of enabling faster parsing via the `lxml` package instead of the default `html5lib` package. This is done by having `lxml` installed and...
+Because Ronkyuu uses [BeautifulSoup4](https://pypi.org/project/beautifulsoup4/) for it's amazing HTML wrangling ability, you have the option of enabling faster parsing via the [`lxml`](https://pypi.org/project/lxml/) package instead of the default [`html5lib`](https://pypi.org/project/html5lib/) package.
```
import ronkyuu
@@ -28,35 +28,35 @@ Contributors
WebMentions
===========
-findMentions()
---------------
-Find all elements in the html returned for a post.
-If any have an href attribute that is not from the one of the items in domains, append it to our lists.
+findMentions(sourceURL, targetURL, ...)
+---------------------------------------
+Find all `` elements in the html returned for a post.
+If any have an `href` attribute that is not from the one of the items in domains, append it to our lists.
-findEndpoint()
---------------
-Search the given html content for all elements and return any discovered WebMention URL.
-
-discoverEndpoint()
+findEndpoint(html)
------------------
-Discover any WebMention endpoint for a given URL.
+Search the given `html` content for all `` elements and return any discovered WebMention URL.
+
+discoverEndpoint(sourceURL, ...)
+--------------------------------
+Discover any WebMention endpoint for a given `url`.
sendWebmention(sourceURL, targetURL, webmention=None)
-----------------------------------------------------
-Send to the targetURL a WebMention for the sourceURL.
-The WebMention will be discovered if not given in the optional webmention parameter.
+Send to the `targetURL` a WebMention for the `sourceURL`.
+The WebMention will be discovered if it is not given in the optional `webmention` parameter.
RelMe
=====
-findRelMe()
------------
-Find all elements in the given html for a post.
-If any have an href attribute that is rel="me" then include it in the result.
+findRelMe(sourceURL)
+--------------------
+Find all `` elements in the given html for a post.
+If any have an href attribute that is `rel="me"` then include it in the result.
-confirmRelMe()
---------------
+confirmRelMe(profileURL, resourceURL, profileRelMes, resourceRelMes)
+--------------------------------------------------------------------
Determine if a given resourceURL is authoritative for the profileURL.
-The list of rel="me" links will be discovered if not provided in the optional profileRelMes parameter or the resourceRelMes paramter.
+The list of `rel="me"` links will be discovered if not provided in the optional profileRelMes parameter or the resourceRelMes paramter.
Validators
==========
@@ -66,6 +66,8 @@ TODO: fill in details of how to use
Requires
========
-Python v3.7+ but see `Pipfile` for a full list. The `Makefile` takes advantage of `Pipenv` (which will use `pyenv` if installed) to manage the Python dependencies.
+Python v3.9+ -- see `Pipfile` for the full list
+
+The `Makefile` takes advantage of `Pipenv` (which will use `pyenv` if installed) to manage the Python dependencies.
For testing we use [httmock](https://pypi.python.org/pypi/httmock/) to mock the web calls.
diff --git a/src/ronkyuu/webmention.py b/src/ronkyuu/webmention.py
index c838143..71e5ada 100644
--- a/src/ronkyuu/webmention.py
+++ b/src/ronkyuu/webmention.py
@@ -135,7 +135,7 @@ def findEndpoint(html):
return None
-def discoverEndpoint(url, test_urls=True, headers=None, timeout=None, request=None, debug=False):
+def discoverEndpoint(sourceURL, test_urls=True, headers=None, timeout=None, request=None, debug=False):
"""Discover any WebMention endpoint for a given URL.
:param link: URL to discover WebMention endpoint
@@ -150,7 +150,7 @@ def discoverEndpoint(url, test_urls=True, headers=None, timeout=None, request=No
if headers is None:
headers = {}
if test_urls:
- URLValidator(message='invalid URL')(url)
+ URLValidator(message='invalid URL')(sourceURL)
# status, webmention
endpointURL = None
@@ -159,9 +159,9 @@ def discoverEndpoint(url, test_urls=True, headers=None, timeout=None, request=No
if request is not None:
targetRequest = request
else:
- targetRequest = requests.get(url, verify=False, headers=headers, timeout=timeout)
+ targetRequest = requests.get(sourceURL, verify=False, headers=headers, timeout=timeout)
returnCode = targetRequest.status_code
- debugOutput.append('%s %s' % (returnCode, url))
+ debugOutput.append('%s %s' % (returnCode, sourceURL))
if returnCode == requests.codes.ok: # pylint: disable=no-member
try:
linkHeader = parse_link_header(targetRequest.headers['link'])
@@ -179,7 +179,7 @@ def discoverEndpoint(url, test_urls=True, headers=None, timeout=None, request=No
if endpointURL:
debugOutput.append('found in body')
if endpointURL is not None:
- endpointURL = urljoin(url, endpointURL)
+ endpointURL = urljoin(sourceURL, endpointURL)
except (requests.exceptions.RequestException, requests.exceptions.ConnectionError,
requests.exceptions.HTTPError, requests.exceptions.URLRequired,
requests.exceptions.TooManyRedirects, requests.exceptions.Timeout) as error: