Closed deep5050 closed 3 years ago
Yes it is possible, first you must get the list of country/state available
>>> from pyradios import RadioBrowser
>>> rb = RadioBrowser()
>>> rb.states()
>>> rb.countries()
>>> rb.countrycodes()
So to get the list of radio stations we have the following methods
>>> rb.stations_by_state('West Bengal')
>>> rb.stations_by_countrycode('IN')
It will be great if there is a way to discover stations by country name or state name!
or is there already?