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
TypeScript 22 mins βββββββββββββββββββββ 82.8% | |
JSON 4 mins βββββββββββββββββββββ 17.2% |
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 | |
# for a list as expected in https://gist.github.com/drewbitt/43cab7b6c0792b30a46d65c226a741db | |
import base64 | |
import argparse | |
import urllib.parse | |
import httplib2 | |
from pathlib import Path | |
parser = argparse.ArgumentParser() |
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
const express = require('express') | |
const fileUpload = require('express-fileupload') | |
const createTorrent = require('create-torrent') | |
const parseTorrentFile = require('parse-torrent-file') | |
var parsed | |
const app = express() | |
app.use(fileUpload()) | |
app.post('/upload', function(req, res) { |
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 | |
import httplib2 | |
import base64 | |
import re | |
import argparse | |
from bs4 import BeautifulSoup | |
parser = argparse.ArgumentParser() | |
parser.add_argument("madokami_url",nargs=1) | |
parser.add_argument("-group", "--group") |