Based on this piece of code:
|
def get_resource_url(region, hash, type): |
|
url_template = "{}://{}-s2-depot.{}/{}.{}" |
|
scheme = "https" |
|
domain = "classic.blizzard.com" |
|
|
|
if region == "sea": |
|
region = "us" |
|
elif region == "cn": |
|
scheme = "http" |
|
domain = "battlenet.com.cn" |
|
return url_template.format(scheme, region, domain, hash, type) |
There is a capability of downloading maps that are supposed to be hosted on Chinese servers. Unfortunately these are no longer available, is there a workaround that would allow to get such a map from another server?
Test data:
2016_IEM_11_Shanghai.zip
Based on this piece of code:
sc2reader/sc2reader/utils.py
Lines 196 to 206 in c314bfe
There is a capability of downloading maps that are supposed to be hosted on Chinese servers. Unfortunately these are no longer available, is there a workaround that would allow to get such a map from another server?
Test data:
2016_IEM_11_Shanghai.zip