Skip to content

Instantly share code, notes, and snippets.

@Bigpet
Bigpet / strip_xcode.py
Created June 10, 2022 14:56 — forked from johnb003/strip_xcode.py
Strip sections from an xcode project that aren't supported by cocoapods.
# Copyright (C) 2018 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
@Bigpet
Bigpet / twitch_past_broadcast_downloader.py
Last active August 29, 2015 14:05 — forked from baderj/twitch_past_broadcast_downloader.py
Downloads a twitch VoD by it's ID and saves some additional metadata in a log file
import requests
import sys
import json
import re
import os
import string
import argparse
BASE_URL = 'http://api.justin.tv'
LOGFILE_NAME = 'log.csv'