Skip to content

Commit 6e78fde

Browse files
authored
Merge pull request soxoj#170 from soxoj/readme-links-fixes
Fixed links to static files in README
2 parents f057fd3 + 9c22e09 commit 6e78fde

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</a>
1414
</p>
1515
<p align="center">
16-
<img src="./static/maigret.png" height="200"/>
16+
<img src="https://raw.githubusercontent.com/soxoj/maigret/main/static/maigret.png" height="200"/>
1717
</p>
1818
</p>
1919

@@ -23,7 +23,7 @@
2323

2424
**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).
2525

26-
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).
26+
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).
2727

2828
## Main features
2929

@@ -100,16 +100,16 @@ Use `maigret --help` to get full options description. Also options are documente
100100

101101
## Demo with page parsing and recursive username search
102102

103-
[PDF report](./static/report_alexaimephotographycars.pdf), [HTML report](https://htmlpreview.github.io/?https://raw.githubusercontent.com/soxoj/maigret/main/static/report_alexaimephotographycars.html)
103+
[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)
104104

105-
![animation of recursive search](./static/recursive_search.svg)
105+
![animation of recursive search](https://raw.githubusercontent.com/soxoj/maigret/main/static/recursive_search.svg)
106106

107-
![HTML report screenshot](./static/report_alexaimephotography_html_screenshot.png)
107+
![HTML report screenshot](https://raw.githubusercontent.com/soxoj/maigret/main/static/report_alexaimephotography_html_screenshot.png)
108108

109-
![XMind report screenshot](./static/report_alexaimephotography_xmind_screenshot.png)
109+
![XMind report screenshot](https://raw.githubusercontent.com/soxoj/maigret/main/static/report_alexaimephotography_xmind_screenshot.png)
110110

111111

112-
[Full console output](./static/recursive_search.md)
112+
[Full console output](https://raw.githubusercontent.com/soxoj/maigret/main/static/recursive_search.md)
113113

114114
## License
115115

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55

66

77
with open('README.md') as fh:
8-
readme = fh.read()
9-
long_description = readme.replace('./', 'https://raw.githubusercontent.com/soxoj/maigret/main/')
8+
long_description = fh.read()
109

1110
with open('requirements.txt') as rf:
1211
requires = rf.read().splitlines()

0 commit comments

Comments
 (0)