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
/etc/systemd/system/minecraft.service: | |
[Unit] | |
Description=Start Minecraft | |
After=network.target | |
[Service] | |
WorkingDirectory=/opt/minecraft/ | |
Type=simple | |
User=mc |
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 | |
import argparse | |
import requests | |
from bs4 import BeautifulSoup, SoupStrainer | |
def main(): | |
parser = argparse.ArgumentParser( | |
prog='TIC Scraper', | |
description='Scrape the top games from tic80.com') |