getpls.py . Python script to get all the SKY.FM playlists via JSON


SUBMITTED BY: Guest

DATE: June 27, 2014, 9:19 p.m.

FORMAT: Python

SIZE: 314 Bytes

HITS: 1172

  1. #Copyright (c) 2014, anthk
  2. #This scrpt uses the new BSD license http://bitbin.it/ajpmdmyV
  3. #
  4. #/usr/bin/env python
  5. import urllib2
  6. import json
  7. f=urllib2.urlopen("http://listen.sky.fm/public3/")
  8. data = json.load(f)
  9. for i in range(0,len(data)):
  10. print(data[i]["playlist"])

comments powered by Disqus