#129 Añadido por Kianasta 10 años hace
#130 Añadido por Tgwaste 9 años hace
---
#131 Añadido por Karu 9 años hace
Any chance? :)
#132 Añadido por Karu 9 años hace
#133 Añadido por Siela 9 años hace
#134 Añadido por Karu 9 años hace
would it be possible to add <faction> like there is <race> ?
and less probable, API for OP wars?
#135 Añadido por Nudge 6 años hace
#136 Añadido por Karu 6 años hace
Anyone wrote Python or C code that uses GET for the XMLs?
#137 Añadido por Nudge 6 años hace
#138 Añadido por Laoviel 6 años hace
#139 Añadido por Nudge 6 años hace
import sys
import xml.etree.ElementTree as ET
import requests
RYZ_API_ENDPOINT = "http://api.ryzom.com/character.php"
ryz_api_key = "abracadabraverylongcodewithnumbersandlettersstuff"
RYZ_PARAMS = {'apikey': ryz_api_key}
r = requests.get(url = RYZ_API_ENDPOINT, params = RYZ_PARAMS)
print(r.status_code)
print(r.status_code == requests.codes.ok)
print(r.headers['content-type'])
print(r.encoding)
print(r.url)
ryz_toon = ET.parse(r.text)
for elem in ryz_toon.iter():
print ("%s: '%s'\n\r", elem.tag, elem.text)
Última edición por Nudge (6 años hace)
#140 Añadido por Laoviel 6 años hace
import sysimport requestsfrom bs4 import BeautifulSoupurl = "http://api.ryzom.com/character.php?apikey=xxxxxxxxxx"r = requests.get(url)data = r.textsoup = BeautifulSoup(data, 'xml')#find all itemsitems = soup.find("fame").find_all()for item in items: print(item.name+" "+item.text+"\n")
Editado 2 veces | Última edición por Laoviel (6 años hace)
#141 Añadido por Tgwaste 2 años hace
Última edición por Tgwaste (2 años hace)
powered by ryzom-api