Skip to content

Instantly share code, notes, and snippets.

View Pobega's full-sized avatar
🤔

Pobega Pobega

🤔
View GitHub Profile
/etc/systemd/system/minecraft.service:
[Unit]
Description=Start Minecraft
After=network.target
[Service]
WorkingDirectory=/opt/minecraft/
Type=simple
User=mc
#!/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')