Skip to content

Instantly share code, notes, and snippets.

@Numbers11
Created March 4, 2024 21:27
Show Gist options
  • Save Numbers11/dae7ab3db482b07a376c5a4e1a5c3856 to your computer and use it in GitHub Desktop.
Save Numbers11/dae7ab3db482b07a376c5a4e1a5c3856 to your computer and use it in GitHub Desktop.
Python script to extract the land type value (is a certain tile in a template walkable, buildable etc.) from the template files in Command and Conquer (Remastered, but will likely work as well in the original)
import os
from enum import Enum
#for the Temperate tileset
templates = {
"clear1" : {"id":0,"w":1,"h":1},
"w1" : {"id":1,"w":1,"h":1},
"w2" : {"id":2,"w":2,"h":2},
"sh01" : {"id":3,"w":4,"h":5},
"sh02" : {"id":4,"w":5,"h":5},
"sh03" : {"id":5,"w":3,"h":5},
"sh04" : {"id":6,"w":3,"h":3},
"sh05" : {"id":7,"w":3,"h":3},
"sh06" : {"id":8,"w":3,"h":3},
"sh07" : {"id":9,"w":3,"h":3},
"sh08" : {"id":10,"w":1,"h":2},
"sh09" : {"id":11,"w":3,"h":3},
"sh10" : {"id":12,"w":5,"h":6},
"sh11" : {"id":13,"w":4,"h":5},
"sh12" : {"id":14,"w":3,"h":5},
"sh13" : {"id":15,"w":6,"h":5},
"sh14" : {"id":16,"w":4,"h":4},
"sh15" : {"id":17,"w":5,"h":3},
"sh16" : {"id":18,"w":3,"h":3},
"sh17" : {"id":19,"w":2,"h":1},
"sh18" : {"id":20,"w":3,"h":3},
"sh19" : {"id":21,"w":4,"h":5},
"sh20" : {"id":22,"w":5,"h":4},
"sh21" : {"id":23,"w":5,"h":3},
"sh22" : {"id":24,"w":6,"h":5},
"sh23" : {"id":25,"w":5,"h":5},
"sh24" : {"id":26,"w":3,"h":4},
"sh25" : {"id":27,"w":3,"h":3},
"sh26" : {"id":28,"w":3,"h":3},
"sh27" : {"id":29,"w":3,"h":3},
"sh28" : {"id":30,"w":3,"h":3},
"sh29" : {"id":31,"w":1,"h":2},
"sh30" : {"id":32,"w":3,"h":2},
"sh31" : {"id":33,"w":6,"h":5},
"sh32" : {"id":34,"w":4,"h":4},
"sh33" : {"id":35,"w":3,"h":4},
"sh34" : {"id":36,"w":6,"h":5},
"sh35" : {"id":37,"w":4,"h":4},
"sh36" : {"id":38,"w":4,"h":3},
"sh37" : {"id":39,"w":3,"h":3},
"sh38" : {"id":40,"w":2,"h":1},
"sh39" : {"id":41,"w":3,"h":3},
"sh40" : {"id":42,"w":5,"h":5},
"sh41" : {"id":43,"w":4,"h":4},
"sh42" : {"id":44,"w":4,"h":3},
"sh43" : {"id":45,"w":3,"h":3},
"sh44" : {"id":46,"w":2,"h":2},
"sh45" : {"id":47,"w":3,"h":3},
"sh46" : {"id":48,"w":2,"h":2},
"sh47" : {"id":49,"w":3,"h":3},
"sh48" : {"id":50,"w":2,"h":2},
"sh49" : {"id":51,"w":3,"h":3},
"sh50" : {"id":52,"w":2,"h":2},
"sh51" : {"id":53,"w":3,"h":3},
"sh52" : {"id":54,"w":3,"h":3},
"sh53" : {"id":55,"w":3,"h":3},
"sh54" : {"id":56,"w":3,"h":3},
"sh55" : {"id":57,"w":1,"h":1},
"sh56" : {"id":58,"w":2,"h":1},
"wc01" : {"id":59,"w":2,"h":2},
"wc02" : {"id":60,"w":2,"h":3},
"wc03" : {"id":61,"w":2,"h":2},
"wc04" : {"id":62,"w":2,"h":2},
"wc05" : {"id":63,"w":2,"h":2},
"wc06" : {"id":64,"w":2,"h":3},
"wc07" : {"id":65,"w":2,"h":2},
"wc08" : {"id":66,"w":2,"h":2},
"wc09" : {"id":67,"w":3,"h":2},
"wc10" : {"id":68,"w":2,"h":2},
"wc11" : {"id":69,"w":2,"h":2},
"wc12" : {"id":70,"w":2,"h":2},
"wc13" : {"id":71,"w":3,"h":2},
"wc14" : {"id":72,"w":2,"h":2},
"wc15" : {"id":73,"w":2,"h":2},
"wc16" : {"id":74,"w":2,"h":3},
"wc17" : {"id":75,"w":2,"h":2},
"wc18" : {"id":76,"w":2,"h":2},
"wc19" : {"id":77,"w":2,"h":2},
"wc20" : {"id":78,"w":2,"h":3},
"wc21" : {"id":79,"w":1,"h":2},
"wc22" : {"id":80,"w":2,"h":2},
"wc23" : {"id":81,"w":3,"h":2},
"wc24" : {"id":82,"w":2,"h":2},
"wc25" : {"id":83,"w":2,"h":2},
"wc26" : {"id":84,"w":2,"h":2},
"wc27" : {"id":85,"w":3,"h":2},
"wc28" : {"id":86,"w":2,"h":2},
"wc29" : {"id":87,"w":2,"h":2},
"wc30" : {"id":88,"w":2,"h":2},
"wc31" : {"id":89,"w":2,"h":2},
"wc32" : {"id":90,"w":2,"h":2},
"wc33" : {"id":91,"w":2,"h":2},
"wc34" : {"id":92,"w":2,"h":2},
"wc35" : {"id":93,"w":2,"h":2},
"wc36" : {"id":94,"w":2,"h":2},
"wc37" : {"id":95,"w":2,"h":2},
"wc38" : {"id":96,"w":2,"h":2},
"b1" : {"id":97,"w":1,"h":1},
"b2" : {"id":98,"w":2,"h":1},
"b3" : {"id":99,"w":3,"h":1},
"p01" : {"id":103,"w":1,"h":1},
"p02" : {"id":104,"w":1,"h":1},
"p03" : {"id":105,"w":1,"h":1},
"p04" : {"id":106,"w":1,"h":1},
"p07" : {"id":107,"w":4,"h":2},
"p08" : {"id":108,"w":3,"h":2},
"p13" : {"id":109,"w":3,"h":2},
"p14" : {"id":110,"w":2,"h":1},
"rv01" : {"id":112,"w":5,"h":4},
"rv02" : {"id":113,"w":5,"h":3},
"rv03" : {"id":114,"w":4,"h":4},
"rv04" : {"id":115,"w":4,"h":4},
"rv05" : {"id":116,"w":3,"h":3},
"rv06" : {"id":117,"w":3,"h":2},
"rv07" : {"id":118,"w":3,"h":2},
"rv08" : {"id":119,"w":2,"h":2},
"rv09" : {"id":120,"w":2,"h":2},
"rv10" : {"id":121,"w":2,"h":2},
"rv11" : {"id":122,"w":2,"h":2},
"rv12" : {"id":123,"w":3,"h":4},
"rv13" : {"id":124,"w":4,"h":4},
"falls1" : {"id":125,"w":3,"h":3},
"falls1a" : {"id":126,"w":3,"h":3},
"falls2" : {"id":127,"w":3,"h":2},
"falls2a" : {"id":128,"w":3,"h":2},
"ford1" : {"id":129,"w":3,"h":3},
"ford2" : {"id":130,"w":3,"h":3},
"bridge1" : {"id":131,"w":5,"h":3},
"bridge1d" : {"id":132,"w":5,"h":3},
"bridge2" : {"id":133,"w":5,"h":2},
"bridge2d" : {"id":134,"w":5,"h":2},
"s01" : {"id":135,"w":2,"h":2},
"s02" : {"id":136,"w":2,"h":3},
"s03" : {"id":137,"w":2,"h":2},
"s04" : {"id":138,"w":2,"h":2},
"s05" : {"id":139,"w":2,"h":2},
"s06" : {"id":140,"w":2,"h":3},
"s07" : {"id":141,"w":2,"h":2},
"s08" : {"id":142,"w":2,"h":2},
"s09" : {"id":143,"w":3,"h":2},
"s10" : {"id":144,"w":2,"h":2},
"s11" : {"id":145,"w":2,"h":2},
"s12" : {"id":146,"w":2,"h":2},
"s13" : {"id":147,"w":3,"h":2},
"s14" : {"id":148,"w":2,"h":2},
"s15" : {"id":149,"w":2,"h":2},
"s16" : {"id":150,"w":2,"h":3},
"s17" : {"id":151,"w":2,"h":2},
"s18" : {"id":152,"w":2,"h":2},
"s19" : {"id":153,"w":2,"h":2},
"s20" : {"id":154,"w":2,"h":3},
"s21" : {"id":155,"w":1,"h":2},
"s22" : {"id":156,"w":2,"h":1},
"s23" : {"id":157,"w":3,"h":2},
"s24" : {"id":158,"w":2,"h":2},
"s25" : {"id":159,"w":2,"h":2},
"s26" : {"id":160,"w":2,"h":2},
"s27" : {"id":161,"w":3,"h":2},
"s28" : {"id":162,"w":2,"h":2},
"s29" : {"id":163,"w":2,"h":2},
"s30" : {"id":164,"w":2,"h":2},
"s31" : {"id":165,"w":2,"h":2},
"s32" : {"id":166,"w":2,"h":2},
"s33" : {"id":167,"w":2,"h":2},
"s34" : {"id":168,"w":2,"h":2},
"s35" : {"id":169,"w":2,"h":2},
"s36" : {"id":170,"w":2,"h":2},
"s37" : {"id":171,"w":2,"h":2},
"s38" : {"id":172,"w":2,"h":2},
"d01" : {"id":173,"w":2,"h":2},
"d02" : {"id":174,"w":2,"h":2},
"d03" : {"id":175,"w":1,"h":2},
"d04" : {"id":176,"w":2,"h":2},
"d05" : {"id":177,"w":3,"h":4},
"d06" : {"id":178,"w":2,"h":3},
"d07" : {"id":179,"w":3,"h":2},
"d08" : {"id":180,"w":3,"h":2},
"d09" : {"id":181,"w":4,"h":3},
"d10" : {"id":182,"w":4,"h":2},
"d11" : {"id":183,"w":2,"h":3},
"d12" : {"id":184,"w":2,"h":2},
"d13" : {"id":185,"w":4,"h":3},
"d14" : {"id":186,"w":3,"h":3},
"d15" : {"id":187,"w":3,"h":3},
"d16" : {"id":188,"w":3,"h":3},
"d17" : {"id":189,"w":3,"h":2},
"d18" : {"id":190,"w":3,"h":3},
"d19" : {"id":191,"w":3,"h":3},
"d20" : {"id":192,"w":3,"h":3},
"d21" : {"id":193,"w":3,"h":2},
"d22" : {"id":194,"w":3,"h":3},
"d23" : {"id":195,"w":3,"h":3},
"d24" : {"id":196,"w":3,"h":3},
"d25" : {"id":197,"w":3,"h":3},
"d26" : {"id":198,"w":2,"h":2},
"d27" : {"id":199,"w":2,"h":2},
"d28" : {"id":200,"w":2,"h":2},
"d29" : {"id":201,"w":2,"h":2},
"d30" : {"id":202,"w":2,"h":2},
"d31" : {"id":203,"w":2,"h":2},
"d32" : {"id":204,"w":2,"h":2},
"d33" : {"id":205,"w":2,"h":2},
"d34" : {"id":206,"w":3,"h":3},
"d35" : {"id":207,"w":3,"h":3},
"d36" : {"id":208,"w":2,"h":2},
"d37" : {"id":209,"w":2,"h":2},
"d38" : {"id":210,"w":2,"h":2},
"d39" : {"id":211,"w":2,"h":2},
"d40" : {"id":212,"w":2,"h":2},
"d41" : {"id":213,"w":2,"h":2},
"d42" : {"id":214,"w":2,"h":2},
"d43" : {"id":215,"w":2,"h":2},
"rf01" : {"id":216,"w":1,"h":1},
"rf02" : {"id":217,"w":1,"h":1},
"rf03" : {"id":218,"w":1,"h":1},
"rf04" : {"id":219,"w":1,"h":1},
"rf05" : {"id":220,"w":1,"h":1},
"rf06" : {"id":221,"w":1,"h":1},
"rf07" : {"id":222,"w":1,"h":1},
"rf08" : {"id":223,"w":1,"h":2},
"rf09" : {"id":224,"w":1,"h":2},
"rf10" : {"id":225,"w":2,"h":1},
"rf11" : {"id":226,"w":2,"h":1},
"d44" : {"id":227,"w":1,"h":1},
"d45" : {"id":228,"w":1,"h":1},
"rv14" : {"id":229,"w":1,"h":2},
"rv15" : {"id":230,"w":2,"h":1},
"rc01" : {"id":231,"w":2,"h":2},
"rc02" : {"id":232,"w":2,"h":2},
"rc03" : {"id":233,"w":2,"h":2},
"rc04" : {"id":234,"w":2,"h":2},
"br1a" : {"id":235,"w":4,"h":3},
"br1b" : {"id":236,"w":4,"h":3},
"br1c" : {"id":237,"w":4,"h":3},
"br2a" : {"id":238,"w":5,"h":3},
"br2b" : {"id":239,"w":5,"h":3},
"br2c" : {"id":240,"w":5,"h":3},
"br3a" : {"id":241,"w":4,"h":2},
"br3b" : {"id":242,"w":4,"h":2},
"br3c" : {"id":243,"w":4,"h":2},
"br3d" : {"id":244,"w":4,"h":2},
"br3e" : {"id":245,"w":4,"h":2},
"br3f" : {"id":246,"w":4,"h":2},
"f01" : {"id":247,"w":3,"h":3},
"f02" : {"id":248,"w":3,"h":3},
"f03" : {"id":249,"w":3,"h":3},
"f04" : {"id":250,"w":3,"h":3},
"f05" : {"id":251,"w":3,"h":3},
"f06" : {"id":252,"w":3,"h":3},
"arro0001" : {"id":253,"w":1,"h":1},
"arro0002" : {"id":254,"w":1,"h":1},
"arro0003" : {"id":255,"w":1,"h":1},
"arro0004" : {"id":256,"w":1,"h":1},
"arro0005" : {"id":257,"w":1,"h":1},
"arro0006" : {"id":258,"w":1,"h":1},
"arro0007" : {"id":259,"w":1,"h":1},
"arro0008" : {"id":260,"w":1,"h":1},
"arro0009" : {"id":261,"w":1,"h":1},
"arro0010" : {"id":262,"w":1,"h":1},
"arro0011" : {"id":263,"w":1,"h":1},
"arro0012" : {"id":264,"w":1,"h":1},
"arro0013" : {"id":265,"w":1,"h":1},
"arro0014" : {"id":266,"w":1,"h":1},
"arro0015" : {"id":267,"w":1,"h":1},
"flor0001" : {"id":268,"w":1,"h":1},
"flor0002" : {"id":269,"w":1,"h":1},
"flor0003" : {"id":270,"w":1,"h":1},
"flor0004" : {"id":271,"w":1,"h":1},
"flor0005" : {"id":272,"w":1,"h":1},
"flor0006" : {"id":273,"w":1,"h":1},
"flor0007" : {"id":274,"w":1,"h":1},
"gflr0001" : {"id":275,"w":1,"h":1},
"gflr0002" : {"id":276,"w":1,"h":1},
"gflr0003" : {"id":277,"w":1,"h":1},
"gflr0004" : {"id":278,"w":1,"h":1},
"gflr0005" : {"id":279,"w":1,"h":1},
"gstr0001" : {"id":280,"w":1,"h":1},
"gstr0002" : {"id":281,"w":1,"h":1},
"gstr0003" : {"id":282,"w":1,"h":1},
"gstr0004" : {"id":283,"w":1,"h":1},
"gstr0005" : {"id":284,"w":1,"h":1},
"gstr0006" : {"id":285,"w":1,"h":1},
"gstr0007" : {"id":286,"w":1,"h":1},
"gstr0008" : {"id":287,"w":1,"h":1},
"gstr0009" : {"id":288,"w":1,"h":1},
"gstr0010" : {"id":289,"w":1,"h":1},
"gstr0011" : {"id":290,"w":1,"h":1},
"lwal0001" : {"id":291,"w":1,"h":1},
"lwal0002" : {"id":292,"w":1,"h":1},
"lwal0003" : {"id":293,"w":1,"h":1},
"lwal0004" : {"id":294,"w":1,"h":1},
"lwal0005" : {"id":295,"w":1,"h":1},
"lwal0006" : {"id":296,"w":1,"h":1},
"lwal0007" : {"id":297,"w":1,"h":1},
"lwal0008" : {"id":298,"w":1,"h":1},
"lwal0009" : {"id":299,"w":1,"h":1},
"lwal0010" : {"id":300,"w":1,"h":1},
"lwal0011" : {"id":301,"w":1,"h":1},
"lwal0012" : {"id":302,"w":1,"h":1},
"lwal0013" : {"id":303,"w":1,"h":1},
"lwal0014" : {"id":304,"w":1,"h":1},
"lwal0015" : {"id":305,"w":1,"h":1},
"lwal0016" : {"id":306,"w":1,"h":1},
"lwal0017" : {"id":307,"w":1,"h":1},
"lwal0018" : {"id":308,"w":1,"h":1},
"lwal0019" : {"id":309,"w":1,"h":1},
"lwal0020" : {"id":310,"w":1,"h":1},
"lwal0021" : {"id":311,"w":1,"h":1},
"lwal0022" : {"id":312,"w":1,"h":1},
"lwal0023" : {"id":313,"w":1,"h":1},
"lwal0024" : {"id":314,"w":1,"h":1},
"lwal0025" : {"id":315,"w":1,"h":1},
"lwal0026" : {"id":316,"w":1,"h":1},
"lwal0027" : {"id":317,"w":1,"h":1},
"strp0001" : {"id":318,"w":1,"h":1},
"strp0002" : {"id":319,"w":1,"h":1},
"strp0003" : {"id":320,"w":1,"h":1},
"strp0004" : {"id":321,"w":1,"h":1},
"strp0005" : {"id":322,"w":1,"h":1},
"strp0006" : {"id":323,"w":1,"h":1},
"strp0007" : {"id":324,"w":1,"h":1},
"strp0008" : {"id":325,"w":1,"h":1},
"strp0009" : {"id":326,"w":1,"h":1},
"strp0010" : {"id":327,"w":1,"h":1},
"strp0011" : {"id":328,"w":1,"h":1},
"wall0001" : {"id":329,"w":1,"h":1},
"wall0002" : {"id":330,"w":1,"h":1},
"wall0003" : {"id":331,"w":1,"h":1},
"wall0004" : {"id":332,"w":1,"h":1},
"wall0005" : {"id":333,"w":1,"h":1},
"wall0006" : {"id":334,"w":1,"h":1},
"wall0007" : {"id":335,"w":1,"h":1},
"wall0008" : {"id":336,"w":1,"h":1},
"wall0009" : {"id":337,"w":1,"h":1},
"wall0010" : {"id":338,"w":1,"h":1},
"wall0011" : {"id":339,"w":1,"h":1},
"wall0012" : {"id":340,"w":1,"h":1},
"wall0013" : {"id":341,"w":1,"h":1},
"wall0014" : {"id":342,"w":1,"h":1},
"wall0015" : {"id":343,"w":1,"h":1},
"wall0016" : {"id":344,"w":1,"h":1},
"wall0017" : {"id":345,"w":1,"h":1},
"wall0018" : {"id":346,"w":1,"h":1},
"wall0019" : {"id":347,"w":1,"h":1},
"wall0020" : {"id":348,"w":1,"h":1},
"wall0021" : {"id":349,"w":1,"h":1},
"wall0022" : {"id":350,"w":1,"h":1},
"wall0023" : {"id":351,"w":2,"h":2},
"wall0024" : {"id":352,"w":2,"h":2},
"wall0025" : {"id":353,"w":2,"h":2},
"wall0026" : {"id":354,"w":2,"h":2},
"wall0027" : {"id":355,"w":2,"h":2},
"wall0028" : {"id":356,"w":2,"h":2},
"wall0029" : {"id":357,"w":2,"h":2},
"wall0030" : {"id":358,"w":2,"h":2},
"wall0031" : {"id":359,"w":2,"h":2},
"wall0032" : {"id":360,"w":2,"h":2},
"wall0033" : {"id":361,"w":2,"h":2},
"wall0034" : {"id":362,"w":2,"h":2},
"wall0035" : {"id":363,"w":2,"h":2},
"wall0036" : {"id":364,"w":2,"h":2},
"wall0037" : {"id":365,"w":2,"h":2},
"wall0038" : {"id":366,"w":2,"h":2},
"wall0039" : {"id":367,"w":2,"h":3},
"wall0040" : {"id":368,"w":2,"h":3},
"wall0041" : {"id":369,"w":2,"h":3},
"wall0042" : {"id":370,"w":2,"h":3},
"wall0043" : {"id":371,"w":3,"h":2},
"wall0044" : {"id":372,"w":3,"h":2},
"wall0045" : {"id":373,"w":3,"h":2},
"wall0046" : {"id":374,"w":3,"h":2},
"wall0047" : {"id":375,"w":3,"h":2},
"wall0048" : {"id":376,"w":3,"h":2},
"wall0049" : {"id":377,"w":3,"h":3},
"bridge1h" : {"id":378,"w":5,"h":3},
"bridge2h" : {"id":379,"w":5,"h":2},
"br1x" : {"id":380,"w":5,"h":3},
"br2x" : {"id":381,"w":5,"h":1},
"bridge1x" : {"id":382,"w":5,"h":4},
"bridge2x" : {"id":383,"w":5,"h":5},
"xtra0001" : {"id":384,"w":1,"h":1},
"xtra0002" : {"id":385,"w":2,"h":1},
"xtra0003" : {"id":386,"w":1,"h":1},
"xtra0004" : {"id":387,"w":1,"h":2},
"xtra0005" : {"id":388,"w":1,"h":1},
"xtra0006" : {"id":389,"w":2,"h":1},
"xtra0007" : {"id":390,"w":1,"h":1},
"xtra0008" : {"id":391,"w":1,"h":2},
"xtra0009" : {"id":392,"w":1,"h":1},
"xtra0010" : {"id":393,"w":1,"h":1},
"xtra0011" : {"id":394,"w":1,"h":1},
"xtra0012" : {"id":395,"w":1,"h":2},
"xtra0013" : {"id":396,"w":1,"h":2},
"xtra0014" : {"id":397,"w":3,"h":2},
"xtra0015" : {"id":398,"w":3,"h":2},
"xtra0016" : {"id":399,"w":2,"h":4},
"hill01" : {"id":400,"w":4,"h":3},
}
class LandType(Enum):
LAND_CLEAR = 0,
LAND_ROAD = 1,
LAND_WATER = 2,
LAND_ROCK = 3,
LAND_WALL = 4,
LAND_TIBERIUM = 5,
LAND_BEACH = 6,
LAND_ROUGH = 7,
LAND_RIVER = 8,
LAND_COUNT = 9,
LAND_NONE=-1,
LAND_FIRST=0
Land_Map = [
LandType.LAND_CLEAR,
LandType.LAND_CLEAR,
LandType.LAND_CLEAR,
LandType.LAND_CLEAR,
LandType.LAND_CLEAR,
LandType.LAND_CLEAR,
LandType.LAND_BEACH,
LandType.LAND_CLEAR,
LandType.LAND_ROCK,
LandType.LAND_ROAD,
LandType.LAND_WATER,
LandType.LAND_RIVER,
LandType.LAND_CLEAR,
LandType.LAND_CLEAR,
LandType.LAND_ROUGH,
LandType.LAND_CLEAR,
]
#tem files extracted with XCCMixer
path = r"C:\Tools\XCC\Utilities\tems"
files = os.listdir(path)
results = dict()
for f in files:
template_name = f[:f.index(".")]
if not template_name in templates:
pass
#print("NOT FOUND: ", template_name)
else:
template_data = templates[template_name]
w = template_data["w"]
h = template_data["h"]
#print(f"{template_name} {w}*{h}")
full_path = os.path.join(path, f)
file_size = os.stat(full_path)
f = open(full_path, mode="rb")
f.seek(0x20)
offset = int.from_bytes(f.read(4), "little")
f.seek(offset)
r = []
for i in range(w * h):
f.seek(offset+i)
val = int.from_bytes(f.read(1), "little")
r.append(Land_Map[val])
results[template_name] = r
print("\n".join([f"{{\"{k}\", new LandType[]{{{','.join(map(str, v))}}}}}," for k, v in results.items()]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment