From 9c22e098087719649f15f99a85ee6b60e628274e Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sun, 13 Jun 2021 00:49:43 +0300 Subject: [PATCH] Fixed links to static files in README --- README.md | 14 +++++++------- setup.py | 3 +-- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 7c9f3d4..e9aec95 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@

- +

@@ -23,7 +23,7 @@ **Maigret** collect a dossier on a person **by username only**, checking for accounts on a huge number of sites and gathering all the available information from web pages. No API keys required. Maigret is an easy-to-use and powerful fork of [Sherlock](https://github.com/sherlock-project/sherlock). -Currently supported more than 2000 sites ([full list](./sites.md)), search is launched against 500 popular sites in descending order of popularity by default. Also supported checking of Tor sites, I2P sites, and domains (via DNS resolving). +Currently supported more than 2000 sites ([full list](https://raw.githubusercontent.com/soxoj/maigret/main/sites.md)), search is launched against 500 popular sites in descending order of popularity by default. Also supported checking of Tor sites, I2P sites, and domains (via DNS resolving). ## Main features @@ -100,16 +100,16 @@ Use `maigret --help` to get full options description. Also options are documente ## Demo with page parsing and recursive username search -[PDF report](./static/report_alexaimephotographycars.pdf), [HTML report](https://htmlpreview.github.io/?https://raw.githubusercontent.com/soxoj/maigret/main/static/report_alexaimephotographycars.html) +[PDF report](https://raw.githubusercontent.com/soxoj/maigret/main/static/report_alexaimephotographycars.pdf), [HTML report](https://htmlpreview.github.io/?https://raw.githubusercontent.com/soxoj/maigret/main/static/report_alexaimephotographycars.html) -![animation of recursive search](./static/recursive_search.svg) +![animation of recursive search](https://raw.githubusercontent.com/soxoj/maigret/main/static/recursive_search.svg) -![HTML report screenshot](./static/report_alexaimephotography_html_screenshot.png) +![HTML report screenshot](https://raw.githubusercontent.com/soxoj/maigret/main/static/report_alexaimephotography_html_screenshot.png) -![XMind report screenshot](./static/report_alexaimephotography_xmind_screenshot.png) +![XMind report screenshot](https://raw.githubusercontent.com/soxoj/maigret/main/static/report_alexaimephotography_xmind_screenshot.png) -[Full console output](./static/recursive_search.md) +[Full console output](https://raw.githubusercontent.com/soxoj/maigret/main/static/recursive_search.md) ## License diff --git a/setup.py b/setup.py index c16bb30..caa91a0 100644 --- a/setup.py +++ b/setup.py @@ -5,8 +5,7 @@ from setuptools import ( with open('README.md') as fh: - readme = fh.read() - long_description = readme.replace('./', 'https://raw.githubusercontent.com/soxoj/maigret/main/') + long_description = fh.read() with open('requirements.txt') as rf: requires = rf.read().splitlines()