Skip to content

Commit

Permalink
use http to communicate with nopaystation while the https bug isn't f…
Browse files Browse the repository at this point in the history
…ixed by the team
  • Loading branch information
evertonstz committed Nov 29, 2019
1 parent c539330 commit 2f7d1d7
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pynps.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,23 +47,23 @@
"INT": "INT", "usa": "US", "jap": "JP", "eur": "EU",
"asia": "ASIA", "int": "INT", "all":"all"}

_CONF_PSV_LINKS = {'games': 'https://nopaystation.com/tsv/PSV_GAMES.tsv',
'dlcs': 'https://nopaystation.com/tsv/PSV_DLCS.tsv',
'themes': 'https://nopaystation.com/tsv/PSV_THEMES.tsv',
'updates': 'https://nopaystation.com/tsv/PSV_UPDATES.tsv',
'demos': 'https://nopaystation.com/tsv/PSV_DEMOS.tsv'
_CONF_PSV_LINKS = {'games': 'http://nopaystation.com/tsv/PSV_GAMES.tsv',
'dlcs': 'http://nopaystation.com/tsv/PSV_DLCS.tsv',
'themes': 'http://nopaystation.com/tsv/PSV_THEMES.tsv',
'updates': 'http://nopaystation.com/tsv/PSV_UPDATES.tsv',
'demos': 'http://nopaystation.com/tsv/PSV_DEMOS.tsv'
}

_CONF_PSP_LINKS = {'games': 'https://nopaystation.com/tsv/PSP_GAMES.tsv',
'dlcs': 'https://nopaystation.com/tsv/PSP_DLCS.tsv',
'themes': 'https://nopaystation.com/tsv/PSP_THEMES.tsv',
'updates': 'https://nopaystation.com/tsv/PSP_UPDATES.tsv'
_CONF_PSP_LINKS = {'games': 'http://nopaystation.com/tsv/PSP_GAMES.tsv',
'dlcs': 'http://nopaystation.com/tsv/PSP_DLCS.tsv',
'themes': 'http://nopaystation.com/tsv/PSP_THEMES.tsv',
'updates': 'http://nopaystation.com/tsv/PSP_UPDATES.tsv'
}

_CONF_PSX_LINKS = {'games': 'https://nopaystation.com/tsv/PSX_GAMES.tsv'
_CONF_PSX_LINKS = {'games': 'http://nopaystation.com/tsv/PSX_GAMES.tsv'
}

_CONF_PSM_LINKS = {'games': 'https://nopaystation.com/tsv/PSM_GAMES.tsv'
_CONF_PSM_LINKS = {'games': 'http://nopaystation.com/tsv/PSM_GAMES.tsv'
}

##FUNCTIONS##
Expand Down

0 comments on commit 2f7d1d7

Please sign in to comment.