These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
Learning ESI and More
Egregious Spreadsheet Services - For Spreadsheets as a Service to businesses, corporations, and higher, look no further!
#!/usr/bin/env python# -*- coding: UTF-8 -*- from __future__ import print_function from bravado.client import SwaggerClientimport bravado.exception def main(): client = SwaggerClient.from_url('https://esi.tech.ccp.is/latest/swagger.json') characterName = "Messenger Of Truth" charResults = client.Search.get_search( search=characterName, categories=['character'], strict=True, ).result()['character'] if len(charResults) <= 0: raise Exception("Character not found") characterId = charResults[0] #assuming only one result charInfo = client.Character.get_characters_character_id(character_id=characterId).result() print("Name: %s" % (charInfo['name'])) print("Gender: %s" % (charInfo['gender'])) print("Bio: %s" % (charInfo['description'])) if __name__ == "__main__": main()
Trade Hub Price Checker: stop.hammerti.me.uk/pricecheck
Visit "Haulers Channel" in game for all matters courier-related.
Structure name/system API: stop.hammerti.me.uk/api
Maximze your Industry Potential! - Download EVE Isk per Hour!
Import CCP's SDE - EVE SDE Database Builder
Woo! CSM XI!
Fuzzwork Enterprises
Twitter: @fuzzysteve on Twitter
Use EveKit ! - Tools for EVE Online 3rd party development