Skip to content

Instantly share code, notes, and snippets.

View gabitoesmiapodo's full-sized avatar
😶
I have no mouth, and I must scream.

Gabito Esmiapodo gabitoesmiapodo

😶
I have no mouth, and I must scream.
View GitHub Profile
@gabitoesmiapodo
gabitoesmiapodo / nps2pkgi.py
Created June 16, 2022 13:30 — forked from pxdl/nps2pkgi.py
Converts the NoPayStation TSV for PS3 Games to pkgi-ps3 format
import csv
import urllib.request
url = "http://nopaystation.com/tsv/PS3_GAMES.tsv"
print('Downloading PS3_GAMES.tsv...')
urllib.request.urlretrieve(url, 'PS3_GAMES.tsv')
newlist = []
with open('PS3_GAMES.tsv', newline='', encoding="utf8") as csvfile:
listreader = csv.reader(csvfile, delimiter=' ', quotechar='"')

0x1cf6c49656c347861bd2b3cf1912ad44b66e973b355d28972c0f1b285e0288f0