Skip to content

Instantly share code, notes, and snippets.

Created September 9, 2017 21:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save anonymous/51f0a8fc6ce54b790e4fc69fe06282c6 to your computer and use it in GitHub Desktop.
Save anonymous/51f0a8fc6ce54b790e4fc69fe06282c6 to your computer and use it in GitHub Desktop.
GET tv-programme in NODE.js / Our style
"use strict"
const request = require('request')
const fs = require('fs');
const zlib = require('zlib');
const opts = {
url: "https://iptvx.one/epg/epg.xml.gz",
headers: {
"User-Agent": "request"
}
}
request(opts, (err, res, body) => {
if (res.statusCode==206) {console.log("Fuck")}
else if (res.statusCode == 200) {
console.log("Not fuck 200")
}
if (err) {console.log("kill them all")}
}).pipe(zlib.createGunzip()).pipe(fs.createWriteStream("NEW.xml"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment