├── .gitattributes ├── .gitignore ├── LICENSE ├── Load.py ├── README.md ├── TypesToJson.py ├── exportTypesxlsx.py ├── getfactions-esi.py ├── getgroups-esi.py ├── getitems-esi.py ├── getmarketgroups-esi.py ├── getnpccorps-esi.py ├── invVolumes1.csv ├── invVolumes2.csv ├── requirements.txt ├── runconversion.sh ├── sdeloader.cfg └── tableloader ├── __init__.py ├── tableFunctions ├── __init__.py ├── agents.py ├── ancestries.py ├── bloodlines.py ├── blueprints.py ├── bsdTables.py ├── categories.py ├── certificates.py ├── characterAttributes.py ├── controlTowerResources.py ├── dogmaAttributeCategories.py ├── dogmaAttributes.py ├── dogmaEffects.py ├── dogmaTypes.py ├── factions.py ├── graphics.py ├── groups.py ├── icons.py ├── marketGroups.py ├── metaGroups.py ├── npccorporations.py ├── planetary.py ├── skins.py ├── typeMaterials.py ├── types.py ├── universe.py └── volumes.py └── tables.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/LICENSE -------------------------------------------------------------------------------- /Load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/Load.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/README.md -------------------------------------------------------------------------------- /TypesToJson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/TypesToJson.py -------------------------------------------------------------------------------- /exportTypesxlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/exportTypesxlsx.py -------------------------------------------------------------------------------- /getfactions-esi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/getfactions-esi.py -------------------------------------------------------------------------------- /getgroups-esi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/getgroups-esi.py -------------------------------------------------------------------------------- /getitems-esi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/getitems-esi.py -------------------------------------------------------------------------------- /getmarketgroups-esi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/getmarketgroups-esi.py -------------------------------------------------------------------------------- /getnpccorps-esi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/getnpccorps-esi.py -------------------------------------------------------------------------------- /invVolumes1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/invVolumes1.csv -------------------------------------------------------------------------------- /invVolumes2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/invVolumes2.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /runconversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/runconversion.sh -------------------------------------------------------------------------------- /sdeloader.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/sdeloader.cfg -------------------------------------------------------------------------------- /tableloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tableloader/tableFunctions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/__init__.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/agents.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/ancestries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/ancestries.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/bloodlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/bloodlines.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/blueprints.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/bsdTables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/bsdTables.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/categories.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/certificates.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/characterAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/characterAttributes.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/controlTowerResources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/controlTowerResources.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/dogmaAttributeCategories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/dogmaAttributeCategories.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/dogmaAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/dogmaAttributes.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/dogmaEffects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/dogmaEffects.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/dogmaTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/dogmaTypes.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/factions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/factions.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/graphics.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/groups.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/icons.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/marketGroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/marketGroups.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/metaGroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/metaGroups.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/npccorporations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/npccorporations.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/planetary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/planetary.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/skins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/skins.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/typeMaterials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/typeMaterials.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/types.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/universe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/universe.py -------------------------------------------------------------------------------- /tableloader/tableFunctions/volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tableFunctions/volumes.py -------------------------------------------------------------------------------- /tableloader/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzysteve/yamlloader/HEAD/tableloader/tables.py --------------------------------------------------------------------------------