This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # Tinc install script | |
| # | |
| # Original: https://gist.github.com/jpillora/9069c7421fd70a4dae92 | |
| # | |
| # Adapted by Xumeiquer | |
| # | |
| # Version: 1.0 | |
| # Version: 1.1 |
This file contains hidden or 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/env python3 | |
| from bs4 import BeautifulSoup | |
| from readability import Document | |
| import click | |
| from click import echo | |
| import requests | |
| import slugify | |
| import os |