View dubuisson-7sur7.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# $Id: dubuisson-7sur7.py 521 2020-03-08 21:03:51Z sarterm $ | |
# Dependencies : bs4, lxml, requests | |
import logging | |
from bs4 import BeautifulSoup | |
import re | |
import requests | |
url = "https://www.7sur7.be/extra/marc-dubuisson-croque-l-actu~a7839cb5/" |
View pwnedpasscheck.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# +---------------------------------------------------------------+ | |
# | pwnedpasscheck | | |
# +---------------------------------------------------------------+ | |
# | Copyright (C) Matthieu SARTER | | |
# +---------------------------------------------------------------+ | |
# | |
# This software is governed by the CeCILL-B license under French law and | |
# abiding by the rules of distribution of free software. You can use, | |
# modify and/or redistribute the software under the terms of the |
View packt_books.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# https://gist.github.com/kspeeckaert/9d8bec27692432772913 | |
# bs4, lxml, pathlib | |
from pathlib import Path | |
import logging | |
import re | |
import requests | |
from bs4 import BeautifulSoup | |
username = "" |