Probably what you're looking for
[a]Alternate (alternate version of the game, usually trying a different output method)[p]Pirate
| """ | |
| AUTOMATIC drag and drop support for windows (NO PROMPT!) | |
| 1. Copy script to directory you want your files copied to. | |
| 2. Select the files you want to convert. | |
| 3. Drag & drop onto this script to convert .vox to .obj! | |
| Files will be exported to directory of this script. |
| import json | |
| import re | |
| from operator import itemgetter | |
| import requests | |
| from itertools import combinations | |
| def best_similarity(master, candidates): | |
| counts = [0] * len(candidates) | |
| for candidate_index, candidate in enumerate(candidates): | |
| for item in candidate: |
| import json | |
| import re | |
| from operator import itemgetter | |
| # finds the most similar list | |
| # master = [] with n items | |
| # candidates = [[],[],[],...] each nested list with n items | |
| # original_candidates = [{}, {}, {},...] | |
| def best_similarity(master, candidates, originalcandidates): | |
| counts = [0] * len(candidates) |