-
Notifications
You must be signed in to change notification settings - Fork 8
/
karir.py
25 lines (22 loc) · 821 Bytes
/
karir.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from justgood import imjustgood
media = imjustgood("YOUR_APIKEY_HERE")
data = media.karir()
# Get attributes
number = 0
result = "Info Lowongan Kerja"
for a in data["result"]:
number += 1
result += "\n\n{}. {}".format(number,a["perusahaan"])
result += "\nLokasi : {}".format(a["lokasi"])
result += "\nProfesi : {}".format(a["profesi"])
result += "\nBagian : {}".format(a["bagian"])
result += "\nJabatan : {}".format(a["jabatan"])
result += "\nGaji : {}".format(a["gaji"])
result += "\nPendidikan : {}".format(a["pendidikan"])
result += "\nPenngalaman : {}".format(a["penngalman"])
result += "\nSyarat : {}".format(a["syarat"])
result += "\nDeskirpsi : {}".format(a["deskripsi"])
result += "\nSumber : {}".format(a["sumber"])
print(result)
# Get JSON results
print(data)