Check-in [976c41ca3a]
Comment: | Fix https:// URL prefix, to avoid extraneous redirects. Add referer=1, ajax=1 to all GET/POST requests. More readable extraction (rx/pq) callback. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
976c41ca3ade3fea6cbe69f4fffbd1bc |
User & Date: | mario on 2015-09-10 19:08:37 |
Other Links: | manifest | tags |
2015-09-10
| ||
19:11 | • Fixed ticket [036c00275d]: Radionomy repeats station entries again plus 4 other changes artifact: ca79006ed7 user: mario | |
2015-09-10
| ||
19:09 | Fix POST requests to use data= instead of params=, else would turn into GET-style parameters. Add extra debugging (commented out). check-in: 8f5515beb8 user: mario tags: trunk | |
19:08 | Fix https:// URL prefix, to avoid extraneous redirects. Add referer=1, ajax=1 to all GET/POST requests. More readable extraction (rx/pq) callback. check-in: 976c41ca3a user: mario tags: trunk | |
2015-06-01
| ||
21:43 | Add missing pages to HTML manual version. check-in: 9d10307ec9 user: mario tags: trunk | |
Modified channels/radionomy.py from [df5905438c] to [ccaf9dfc02].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + | # encoding: UTF-8 # api: streamtuner2 # title: Radionomy # description: Modern radio directory and streaming provider # url: http://radionomy.com/ |
41 42 43 44 45 46 47 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | - + | # control attributes has_search = False listformat = "srv" audioformat = "audio/mpeg" titles = dict(listeners=False, bitrate=False) categories = [] |
77 78 79 80 81 82 83 | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | - - + + + + - + | # stations def update_streams(self, cat, search=None): r = [] # category or search if cat: req = self.base + self.catmap[cat] |
104 105 106 107 108 109 110 | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | - + + + - + + + + - + + - + | homepage = "http://www.radionomy.com/en/radio/{}/index".format(data["url"]), img = re.sub("\.s\d+\.", ".s32.", data["logo"]), uid = data["radioUID"], )) return r |