News One Piece: Vivre Card (Data book)-Discussion Thread

Here's a little Python script you can spam to see if they have uploaded the exact VC bounties or not.
Python:
import json
import urllib.request

d = {"Marco": "マルコ",
     "King": "キング",
     "Ulti": "うるティ",
     "Page One": "ページワン",
     "Black Maria": "ブラックマリア",
     "Sasaki": "ササキ",
     "Who's Who": "フーズ・フー"
     }

with urllib.request.urlopen("https://one-piece.com/vivre/data2.php") as url:
    data = json.loads(url.read().decode())

for char in d.keys():
    f = 0
    for i in data:
        if i['名前'] == d.get(char):
            if f == 0:
                f += 1
                continue

            print(char + " bounty is " + "{:,}".format(int(i['懸賞金ソート用'])))

            if f == 2:
                break
    if f == 0:
        print(char + " bounty was not found")
Expected output:
Marco bounty is 1,374,000,000
King bounty was not found
Ulti bounty was not found
Page One bounty was not found
Black Maria bounty was not found
Sasaki bounty was not found
Who's Who bounty was not found
 

Shisui

3 Palestine
Here's a little Python script you can spam to see if they have uploaded the exact VC bounties or not.
Python:
import json
import urllib.request

d = {"Marco": "マルコ",
     "King": "キング",
     "Ulti": "うるティ",
     "Page One": "ページワン",
     "Black Maria": "ブラックマリア",
     "Sasaki": "ササキ",
     "Who's Who": "フーズ・フー"
     }

with urllib.request.urlopen("https://one-piece.com/vivre/data2.php") as url:
    data = json.loads(url.read().decode())

for char in d.keys():
    f = 0
    for i in data:
        if i['名前'] == d.get(char):
            if f == 0:
                f += 1
                continue

            print(char + " bounty is " + "{:,}".format(int(i['懸賞金ソート用'])))

            if f == 2:
                break
    if f == 0:
        print(char + " bounty was not found")
Expected output:
Editor's name??
Post automatically merged:

Kaido's info: Kaido's Kanabo is called Yamato, It ranks as one of the 12 supreme grade clubs:steef::steef::steef:
 

BangOO🍅

Pepebusi Spammer
Here's a little Python script you can spam to see if they have uploaded the exact VC bounties or not.
Python:
import json
import urllib.request

d = {"Marco": "マルコ",
     "King": "キング",
     "Ulti": "うるティ",
     "Page One": "ページワン",
     "Black Maria": "ブラックマリア",
     "Sasaki": "ササキ",
     "Who's Who": "フーズ・フー"
     }

with urllib.request.urlopen("https://one-piece.com/vivre/data2.php") as url:
    data = json.loads(url.read().decode())

for char in d.keys():
    f = 0
    for i in data:
        if i['名前'] == d.get(char):
            if f == 0:
                f += 1
                continue

            print(char + " bounty is " + "{:,}".format(int(i['懸賞金ソート用'])))

            if f == 2:
                break
    if f == 0:
        print(char + " bounty was not found")
Expected output:
:steef::steef:
 
S

Sasaki Kojirō

Editor's name??
Post automatically merged:

Kaido's info: Kaido's Kanabo is called Yamato, It ranks as one of the 12 supreme grade clubs:steef::steef::steef:
You're probably trolling, but if not, publish the source where you got this information, before I lose my temper and start doing some code in JAVA Eclipse...
 
Top