Completed: get_title, check_relevance, redirected_urls, fetch_relevant_urls, fetch_irrelevant_urls, get_domain_name, count_standard_url_shorteners, count_unconventional_url_shorteners #14
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
17-07-2020:
Completed the get_title() method where we are fetching the titles of the articles.
20-07-2020:
Completed check_relevance() method where it returns a true or false value depending on what two types of textual content are parsed through it.
21-07-2020:
Completed redirected_urls() method where it returns a set of all the urls the main url is connecting or forwarding to.
22-07-2020:
Completed count_standard_url_shorteners() method where it returns the number of urls that has been shortened using standard url shorteners.
Added get_domain_name() method where it returns the domain name of a given url.
23-07-2020:
Completed fetch_relevant_urls() method where it returns a set of links which are relevant to the main url.
Completed fetch_irrelevant_urls() method where it returns a set of links which are irrelevant to the main url.
24-07-2020:
Completed count_unconventional_url_shorteners() method where it returns the number of urls that has not used conventional url shorteners.
Also send the PR today.