Skip to content

Instantly share code, notes, and snippets.

View jhorvat's full-sized avatar

Julian Horvat jhorvat

View GitHub Profile
@jhorvat
jhorvat / twitch_scraper.go
Last active December 26, 2015 07:59
Scrape Twitch.tv broadcasts using their unsecured raw XML data that contains links to the 1/2 hour flv segments of broadcasts. Not totally working, just the first thing I wrote in Go
package main
import (
"encoding/xml"
"fmt"
"io"
"io/ioutil"
"net/http"
"os"
"sync"