index
int64
0
731k
package
stringlengths
2
98
name
stringlengths
1
76
docstring
stringlengths
0
281k
code
stringlengths
4
8.19k
signature
stringlengths
2
42.8k
embed_func_code
listlengths
768
768
23,283
cronex
CronExpression
null
class CronExpression(object): def __init__(self, line, epoch=DEFAULT_EPOCH, epoch_utc_offset=0): """ Instantiates a CronExpression object with an optionally defined epoch. If the epoch is defined, the UTC offset can be specified one of two ways: as the sixth element in 'epoch' or supplied in epoch_utc_offset. The epoch should be defined down to the minute sorted by descending significance. """ for key, value in SUBSTITUTIONS.items(): if line.startswith(key): line = line.replace(key, value) break fields = line.split(None, 5) if len(fields) == 5: fields.append('') minutes, hours, dom, months, dow, self.comment = fields dow = dow.replace('7', '0').replace('?', '*') dom = dom.replace('?', '*') for monthstr, monthnum in MONTH_NAMES: months = months.upper().replace(monthstr, str(monthnum)) for dowstr, downum in DAY_NAMES: dow = dow.upper().replace(dowstr, str(downum)) self.string_tab = [minutes, hours, dom, months, dow] self.compute_numtab() if len(epoch) == 5: y, mo, d, h, m = epoch self.epoch = (y, mo, d, h, m, epoch_utc_offset) else: self.epoch = epoch def __repr__(self): base = self.__class__.__name__ + "(%s)" cron_line = self.string_tab + [str(self.comment)] if not self.comment: cron_line.pop() arguments = '"' + ' '.join(cron_line) + '"' if self.epoch != DEFAULT_EPOCH: return base % (arguments + ", epoch=" + repr(self.epoch)) else: return base % arguments def __str__(self): return repr(self) def compute_numtab(self): """ Recomputes the sets for the static ranges of the trigger time. This method should only be called by the user if the string_tab member is modified. """ self.numerical_tab = [] for field_str, span in zip(self.string_tab, FIELD_RANGES): split_field_str = field_str.split(',') if len(split_field_str) > 1 and "*" in split_field_str: raise ValueError("\"*\" must be alone in a field.") unified = set() for cron_atom in split_field_str: # parse_atom only handles static cases if not(is_special_atom(cron_atom, span)): unified.update(parse_atom(cron_atom, span)) self.numerical_tab.append(unified) if self.string_tab[2] == "*" and self.string_tab[4] != "*": self.numerical_tab[2] = set() elif self.string_tab[4] == "*" and self.string_tab[2] != "*": self.numerical_tab[4] = set() def check_trigger(self, date_tuple, utc_offset=0): """ Returns boolean indicating if the trigger is active at the given time. The date tuple should be in the local time. Unless periodicities are used, utc_offset does not need to be specified. If periodicities are used, specifically in the hour and minutes fields, it is crucial that the utc_offset is specified. """ year, month, day, hour, mins = date_tuple given_date = datetime.date(year, month, day) zeroday = datetime.date(*self.epoch[:3]) last_dom = calendar.monthrange(year, month)[-1] dom_matched = True # In calendar and datetime.date.weekday, Monday = 0 given_dow = (datetime.date.weekday(given_date) + 1) % 7 first_dow = (given_dow + 1 - day) % 7 # Figure out how much time has passed from the epoch to the given date utc_diff = utc_offset - self.epoch[5] mod_delta_yrs = year - self.epoch[0] mod_delta_mon = month - self.epoch[1] + mod_delta_yrs * 12 mod_delta_day = (given_date - zeroday).days mod_delta_hrs = hour - self.epoch[3] + mod_delta_day * 24 + utc_diff mod_delta_min = mins - self.epoch[4] + mod_delta_hrs * 60 # Makes iterating through like components easier. quintuple = zip( (mins, hour, day, month, given_dow), self.numerical_tab, self.string_tab, (mod_delta_min, mod_delta_hrs, mod_delta_day, mod_delta_mon, mod_delta_day), FIELD_RANGES) for value, valid_values, field_str, delta_t, field_type in quintuple: # All valid, static values for the fields are stored in sets if value in valid_values: continue # The following for loop implements the logic for context # sensitive and epoch sensitive constraints. break statements, # which are executed when a match is found, lead to a continue # in the outer loop. If there are no matches found, the given date # does not match expression constraints, so the function returns # False as seen at the end of this for...else... construct. for cron_atom in field_str.split(','): if cron_atom[0] == '%': if not(delta_t % int(cron_atom[1:])): break elif '#' in cron_atom: D, N = int(cron_atom[0]), int(cron_atom[2]) # Computes Nth occurence of D day of the week if (((D - first_dow) % 7) + 1 + 7 * (N - 1)) == day: break elif cron_atom[-1] == 'W': target = min(int(cron_atom[:-1]), last_dom) lands_on = (first_dow + target - 1) % 7 if lands_on == 0: # Shift from Sun. to Mon. unless Mon. is next month if target < last_dom: target += 1 else: target -= 2 elif lands_on == 6: # Shift from Sat. to Fri. unless Fri. in prior month if target > 1: target -= 1 else: target += 2 # Break if the day is correct, and target is a weekday if target == day and (first_dow + target) % 7 > 1: break elif cron_atom[-1] == 'L': # In dom field, L means the last day of the month target = last_dom if field_type == DAYS_OF_WEEK: # Calculates the last occurence of given day of week desired_dow = int(cron_atom[:-1]) target = (((desired_dow - first_dow) % 7) + 29) if target > last_dom: target -= 7 if target == day: break else: # See 2010.11.15 of CHANGELOG if field_type == DAYS_OF_MONTH and self.string_tab[4] != '*': dom_matched = False continue elif field_type == DAYS_OF_WEEK and self.string_tab[2] != '*': # If we got here, then days of months validated so it does # not matter that days of the week failed. return dom_matched # None of the expressions matched which means this field fails return False # Arriving at this point means the date landed within the constraints # of all fields; the associated trigger should be fired. return True
(line, epoch=(1970, 1, 1, 0, 0, 0), epoch_utc_offset=0)
[ 0.10012000799179077, 0.03983471542596817, -0.02785293385386467, 0.026681941002607346, -0.027811113744974136, -0.06775037944316864, -0.024130845442414284, -0.006644346751272678, -0.057336896657943726, -0.0075435028411448, -0.011699487455189228, 0.060557130724191666, 0.06850316375494003, -0.001667621312662959, -0.026263728737831116, 0.01729307509958744, -0.008322423323988914, -0.000788722129072994, -0.026640119031071663, -0.03305967524647713, -0.002545866882428527, -0.07649101316928864, -0.029734889045357704, 0.06749945133924484, 0.05792239308357239, 0.03950014337897301, -0.005990890320390463, 0.007642828393727541, -0.018537256866693497, -0.009117026813328266, 0.019781438633799553, 0.018725452944636345, -0.013508254662156105, -0.0240262933075428, 0.0046578384935855865, -0.08715543150901794, 0.01716761104762554, 0.02122426964342594, -0.041528474539518356, 0.06942322850227356, 0.03960469737648964, -0.008426976390182972, 0.04096388816833496, 0.000981491873972118, -0.03648901730775833, -0.031930502504110336, 0.0219979640096426, 0.04554331302642822, -0.019917357712984085, -0.04959997162222862, 0.018265418708324432, -0.001853202935308218, 0.01421921607106924, -0.01439695619046688, -0.04533420503139496, 0.02707924135029316, 0.013424612581729889, 0.1201941967010498, 0.03362426161766052, -0.0798785388469696, -0.012619554065167904, 0.04993453994393349, -0.013706905767321587, 0.022938940674066544, 0.016299821436405182, -0.010606907308101654, 0.009875035844743252, -0.04366135597229004, 0.010894428938627243, 0.0011396283516660333, -0.0324532687664032, 0.023587169125676155, 0.022855298593640327, -0.05039457231760025, 0.01234771590679884, -0.0054001654498279095, -0.040817514061927795, -0.026263728737831116, 0.006288866512477398, -0.0067802658304572105, 0.009169302880764008, 0.02427721954882145, 0.04223943501710892, 0.0015395437367260456, 0.04980907589197159, -0.021851588040590286, 0.06260637193918228, 0.05461851507425308, 0.005094347521662712, 0.00410632137209177, -0.01890319213271141, -0.016540294513106346, 0.017178067937493324, 0.012086333706974983, -0.0021668621338903904, -0.007182795088738203, -0.03483707830309868, -0.025030001997947693, -0.05574769154191017, -0.02032511495053768, 0.041842132806777954, -0.0028935058508068323, -0.03404247388243675, -0.04993453994393349, 0.012399992905557156, 0.005541312042623758, -0.060557130724191666, -0.006670485250651836, -0.021339278668165207, -0.0365099273622036, -0.10405120253562927, 0.03406338766217232, -0.059553422033786774, -0.02724652737379074, 0.008379927836358547, -0.011939958669245243, -0.05670957639813423, 0.040942978113889694, -0.010131191462278366, -0.04713251814246178, 0.04282493144273758, 0.013142319396138191, -0.03140773996710777, 0.08364244550466537, 0.03548530861735344, -0.0021015163511037827, -0.007700332440435886, 0.03335242345929146, 0.07958579063415527, -0.04646337777376175, 0.013497799634933472, 0.02070150524377823, 0.013100498355925083, -0.0017943918937817216, -0.014261037111282349, -0.03266237676143646, 0.004908766131848097, 0.031993236392736435, -0.07653284072875977, -0.025385482236742973, 0.05449305474758148, 0.003076473716646433, -0.004979339428246021, -0.018892737105488777, -0.03577805683016777, -0.02505091205239296, -0.00046428092173300683, 0.07444177567958832, -0.05938613787293434, 0.012975034303963184, 0.00856812298297882, -0.06147719919681549, -0.04096388816833496, -0.019812803715467453, 0.03347788751125336, 0.02302258275449276, -0.0046160174533724785, -0.011908593587577343, 0.007778747472912073, -0.007522592321038246, 0.00007175770588219166, -0.004315427504479885, -0.03561077266931534, 0.003476389218121767, 0.013706905767321587, 0.0803803876042366, 0.002240049187093973, -0.05712778866291046, -0.0031836405396461487, 0.03287148103117943, 0.008954969234764576, 0.05658411607146263, -0.01362326368689537, 0.059009745717048645, -0.02689104713499546, 0.06089169904589653, 0.01151129137724638, -0.0014924948336556554, -0.03209778666496277, 0.05834060534834862, -0.008928830735385418, -0.016885317862033844, -0.026932867243885994, -0.0020649228245019913, -0.017460361123085022, 0.007177567575126886, -0.007998309098184109, -0.002749745501205325, 0.009179758839309216, 0.04154938459396362, -0.028292058035731316, -0.0677085593342781, 0.032766927033662796, 0.00034110434353351593, -0.034732524305582047, -0.004401683807373047, -0.028731180354952812, 0.019436413422226906, -0.010350752621889114, -0.018662720918655396, -0.05792239308357239, 0.04550148919224739, 0.0242144875228405, -0.05926067382097244, 0.008698814548552036, -0.016142992302775383, -0.02356625907123089, 0.015829332172870636, -0.018202686682343483, -0.017042148858308792, -0.0009448982309550047, -0.016498472541570663, -0.05758782476186752, 0.044330496340990067, -0.009122254326939583, -0.05374027043581009, 0.058466069400310516, -0.008343334309756756, -0.058047857135534286, 0.013236417435109615, -0.001908093341626227, 0.008975880220532417, -0.01162629947066307, -0.05361480638384819, 0.0640282928943634, -0.009974361397325993, 0.052862025797367096, 0.04163302853703499, 0.03895647078752518, -0.04223943501710892, 0.020011454820632935, -0.04709069803357124, -0.011647210456430912, -0.03278783708810806, 0.06578478217124939, -0.028229326009750366, -0.005259018857032061, 0.02083742432296276, 0.04997636005282402, 0.02318986877799034, -0.00988549180328846, 0.01141719426959753, 0.005368799436837435, -0.017209433019161224, 0.005457669496536255, -0.027622917667031288, 0.0007808806258253753, 0.04550148919224739, -0.06678849458694458, -0.04746708646416664, 0.00694755045697093, -0.007820568978786469, -0.0033927466720342636, 0.009435913525521755, -0.021621571853756905, -0.011396283283829689, 0.026556476950645447, 0.046254273504018784, 0.06373554468154907, -0.020116008818149567, 0.07465088367462158, -0.013884645886719227, 0.02105698548257351, -0.020492399111390114, -0.014856989495456219, 0.02988126315176487, -0.023398974910378456, -0.018411792814731598, -0.010470988228917122, 0.02105698548257351, 0.010648729279637337, 0.008489708416163921, -0.03036220744252205, 0.032474178820848465, -0.06641209870576859, 0.019750071689486504, 0.023273510858416557, -0.04608698934316635, -0.007841479033231735, -0.041423920542001724, 0.004639541730284691, 0.02116153948009014, 0.033958833664655685, -0.017303530126810074, 0.024423593655228615, -0.02189341001212597, -0.01929003931581974, 0.022750744596123695, 0.0028987335972487926, 0.02344079501926899, -0.018882282078266144, -0.05474397912621498, 0.07920939475297928, -0.05478580296039581, 0.026911957189440727, 0.05461851507425308, 0.046965233981609344, -0.043201323598623276, -0.007684649899601936, -0.006236589979380369, -0.005044685211032629, 0.015766600146889687, 0.056625936180353165, -0.0028542985673993826, -0.10957160592079163, 0.011302185244858265, 0.045166920870542526, 0.015170648694038391, 0.0839351937174797, -0.07017601281404495, 0.034147027879953384, -0.01568295806646347, 0.0053792549297213554, -0.034795258194208145, 0.024779073894023895, -0.003081701463088393, 0.023461705073714256, 0.008954969234764576, 0.028898464515805244, 0.014867444522678852, 0.0026020642835646868, 0.0283966101706028, 0.10656047612428665, -0.007005054969340563, 0.03822459653019905, -0.07481816411018372, 0.000366915890481323, 0.00009132055856753141, -0.02283438853919506, -0.002085833577439189, 0.018505891785025597, -0.04173757880926132, 0.015400664880871773, 0.07523638010025024, 0.06018073856830597, -0.022918030619621277, -0.013288693502545357, -0.04175849258899689, -0.006654802244156599, -0.05139828100800514, 0.05896792560815811, 0.07013419270515442, -0.016791220754384995, -0.007203705608844757, 0.05353116616606712, -0.03224416449666023, 0.018631353974342346, 0.04230216518044472, 0.031282275915145874, -0.013633718714118004, 0.030968615785241127, -0.011228998191654682, -0.04763437435030937, 0.010622590780258179, 0.013874190859496593, -0.04650519788265228, 0.02546912431716919, -0.09050112962722778, 0.012180430814623833, -0.015107916668057442, 0.009017701260745525, 0.02360808104276657, -0.00694755045697093, 0.013989198952913284, -0.01970825158059597, -0.019154120236635208, -0.02981853112578392, 0.026012800633907318, 0.046003345400094986, -0.038078222423791885, -0.013257327489554882, 0.05917702987790108, 0.07030147314071655, -0.06386100500822067, 0.007224616128951311, 0.004775460809469223, 0.0566677562892437, 0.038914646953344345, -0.09794530272483826, -0.04205124080181122, 0.05558040365576744, 0.022457996383309364, -0.039270129054784775, 0.02195614203810692, -0.006942322943359613, -0.04102661833167076, 0.04813622683286667, 0.02164248190820217, 0.018694086000323296, 0.013215506449341774, 0.0200009997934103, 0.0013232496567070484, 0.02714197337627411, 0.00761669036000967, -0.011657665483653545, 0.014930176548659801, 0.022039784118533134, -0.0016924525843933225, -0.03947923332452774, -0.00548903550952673, 0.0019878149032592773, 0.0008246622164733708, -0.0323278047144413, 0.0364471971988678, 0.026263728737831116, -0.016017528250813484, 0.03305967524647713, -0.007329169195145369, -0.05378209426999092, 0.07548730820417404, -0.047676194459199905, -0.03686540946364403, -0.016310276463627815, -0.046421557664871216, -0.096857950091362, -0.02569914050400257, -0.034502509981393814, -0.037660010159015656, 0.04943268373608589, 0.01144855935126543, -0.038370970636606216, -0.0481780469417572, 0.024319041520357132, 0.033728815615177155, 0.003842324949800968, 0.02856389433145523, 0.014982452616095543, 0.003473775228485465, -0.04888901114463806, 0.031177721917629242, 0.013497799634933472, 0.004814668092876673, -0.08209505677223206, -0.013999653980135918, 0.021914320066571236, -0.04700705409049988, -0.009791393764317036, 0.03167957440018654, 0.024549057707190514, -0.017272165045142174, -0.005687686149030924, 0.04341042786836624, 0.08665357530117035, -0.045166920870542526, -0.004480098374187946, 0.017125790938735008, -0.016299821436405182, -0.011500836350023746, -0.07109607756137848, 0.0040540448389947414, -0.07151429355144501, 0.03299694508314133, -0.003795275930315256, 0.01061213482171297, 0.005389709956943989, -0.0366353914141655, 0.0056563206017017365, 0.03046676144003868, 0.01642528548836708, -0.016216179355978966, 0.03983471542596817, 0.03966743126511574, 0.008332878351211548, 0.024172667413949966, -0.06423740088939667, 0.006382964085787535, -0.01577705703675747, -0.009216352365911007, -0.027100153267383575, 0.0011971325147897005, 0.008740635588765144, -0.00037541083293035626, -0.006806403864175081, 0.016414830461144447, -0.03065495565533638, 0.002513193991035223, 0.025385482236742973, 0.003272510599344969, 0.001996963284909725, -0.0398138053715229, 0.018150411546230316, 0.001380100380629301, 0.03174230828881264, -0.03630082309246063, -0.0003845592145808041, -0.05595679581165314, 0.024653611704707146, -0.081133171916008, -0.05562222748994827, -0.009613653644919395, -0.06678849458694458, 0.001765639754012227, 0.0760728046298027, 0.002726220991462469, -0.023754455149173737, -0.039876535534858704, 0.010052775964140892, 0.0485544390976429, 0.05696050450205803, -0.021339278668165207, -0.011124445125460625, 0.0564168281853199, -0.03786911815404892, 0.04221852496266365, 0.009007246233522892, 0.0046029482036828995, 0.03690722957253456, 0.04370317608118057, -0.02283438853919506, -0.0685868039727211, -0.017962215468287468, -0.07419084757566452, 0.029065750539302826, -0.009441141039133072, -0.050896428525447845, -0.040587496012449265, 0.0404411219060421, -0.0025968365371227264, -0.060849878937006, 0.05374027043581009, 0.003034652443602681, 0.004033134318888187, -0.02576187252998352, -0.00959797017276287, -0.03803640231490135, 0.03565259277820587, 0.005828832741826773, -0.03841279447078705, 0.006069304887205362, -0.05758782476186752, 0.0763237327337265, -0.04533420503139496, 0.056751400232315063, -0.05001818388700485, 0.05440941080451012, 0.09058476984500885, -0.03910284489393234, -0.04349407181143761, -0.02707924135029316, 0.05926067382097244, -0.039562877267599106, 0.02032511495053768, 0.024298129603266716, 0.010392573662102222, -0.022207070142030716, 0.015588860958814621, 0.0443723164498806, 0.005206742323935032, 0.008102862164378166, -0.002293632598593831, 0.03483707830309868, 0.029713978990912437, 0.07465088367462158, 0.03970925137400627, -0.019844170659780502, -0.005802694708108902, 0.04479052871465683, 0.03036220744252205, 0.03728362172842026, 0.011260364204645157, 0.004006995819509029, -0.030508581548929214, 0.03147047013044357, 0.029128482565283775, -0.05348934233188629, -0.008907920680940151, 0.0014245354104787111, 0.02856389433145523, -0.03985562548041344, 0.0480525866150856, -0.05169103294610977, 0.03824550658464432, 0.0404411219060421, -0.01938413642346859, -0.01362326368689537, -0.022039784118533134, -0.07088696956634521, -0.05461851507425308, -0.023691723123192787, -0.03410520777106285, -0.0004361822793725878, -0.03368699550628662, -0.012494090013206005, -0.06202087178826332, 0.004038361832499504, 0.05332205817103386, 0.014762891456484795, 0.07849843800067902, -0.02540639229118824, -0.008385155349969864, 0.0029980589170008898, 0.05240199342370033, -0.02515546604990959, 0.03630082309246063, -0.014334224164485931, 0.03523438051342964, 0.014177394099533558, -0.02318986877799034, -0.005457669496536255, -0.013570986688137054, -0.058047857135534286, -0.007255982141941786, -0.011521747335791588, -0.005290384870022535, 0.016122082248330116, -0.03222325071692467, 0.037890028208494186, -0.024486325681209564, 0.0067541273310780525, -0.007151429075747728, 0.009221579879522324, -0.001444139052182436, 0.06277365237474442, 0.036949049681425095, 0.0070573315024375916, -0.021517019718885422, -0.053405702114105225, 0.050896428525447845, 0.008745863102376461, -0.08682085573673248, -0.024235399439930916, 0.07084514945745468, -0.015348388813436031, 0.004778074566274881, -0.046003345400094986, 0.006367281079292297, 0.003740385640412569, -0.03816186636686325, 0.0002618727448862046, -0.027936575934290886, 0.007632373366504908, 0.038308240473270416, -0.003316945629194379, -0.026159174740314484, -0.04167484864592552, 0.014146029017865658, 0.00428406149148941, -0.04345225170254707, -0.027811113744974136, -0.0240890234708786, 0.0040566585958004, -0.0018688859418034554, 0.037785474210977554, -0.0006900501903146505, -0.011145356111228466, 0.03159593418240547, 0.001667621312662959, -0.08757364004850388, 0.026033710688352585, 0.00940454751253128, -0.010904883965849876, 0.03222325071692467, -0.007700332440435886, 0.02940031886100769, -0.056751400232315063, 0.02756018564105034, -0.06197905167937279, -0.07243435829877853, 0.023838097229599953, -0.0006639119237661362, -0.0011344007216393948, 0.0025889950338751078, -0.04345225170254707, -0.06499017775058746, -0.0008782456861808896, 0.001119371154345572, 0.0640282928943634, 0.025908246636390686, 0.016184812411665916, 0.05164920911192894, 0.006152947433292866, -0.050896428525447845, 0.09945087134838104, 0.015421575866639614, 0.021788857877254486, 0.003863235469907522, -0.008207415230572224, 0.06448832899332047, 0.0013526551192626357, -0.018819550052285194, 0.05056185647845268, 0.016948049888014793, -0.002812477294355631, -0.021454287692904472, 0.008803367614746094, 0.02115108259022236, -0.016770310699939728, -0.016927139833569527, 0.026159174740314484, -0.043326787650585175, -0.003915512003004551, 0.0522347055375576, -0.031345006078481674, 0.006273183505982161, 0.009744345210492611, -0.018328150734305382, -0.07946032285690308, 0.04550148919224739, 0.012316349893808365, 0.023127136752009392, 0.013926466926932335, -0.006958005949854851, 0.025594588369131088, 0.024235399439930916, 0.0015277815982699394, -0.020053276792168617, -0.04980907589197159, 0.007700332440435886, 0.026514654979109764, 0.035150736570358276, 0.03502527251839638, 0.08983198553323746, 0.00644046813249588, -0.07452541589736938, 0.007459860760718584, -0.04391228407621384, -0.006001345347613096, 0.021171994507312775, 0.0024295516777783632, -0.003925967495888472, 0.03004854917526245, -0.0044199805706739426, 0.030634045600891113, 0.000849493604619056, -0.005290384870022535, 0.04042021185159683, -0.005692914128303528, -0.0439959280192852, 0.02176794596016407, -0.0034711614716798067, -0.009221579879522324, 0.0763237327337265, 0.018798639997839928, 0.004082797095179558, 0.04750891029834747, -0.028250236064195633, 0.014532875269651413, -0.058298785239458084, -0.038078222423791885, 0.013748726807534695, -0.012180430814623833, -0.04002290964126587, -0.003999154549092054, -0.021621571853756905, -0.03159593418240547, 0.04269946739077568, -0.043619535863399506, 0.020847879350185394, 0.011615844443440437, -0.01260909903794527, -0.026744671165943146, -0.05181649327278137, -0.01967688463628292, 0.000155114263179712, -0.010606907308101654, 0.01344552356749773, 0.007125291042029858, 0.04604516550898552, -0.005206742323935032, 0.035757146775722504, 0.0059072477743029594, -0.0005933385691605508, -0.03864280879497528, 0.06344279646873474, 0.04591970145702362, -0.026326458901166916, -0.020691050216555595, 0.02676558308303356 ]
23,284
cronex
__init__
Instantiates a CronExpression object with an optionally defined epoch. If the epoch is defined, the UTC offset can be specified one of two ways: as the sixth element in 'epoch' or supplied in epoch_utc_offset. The epoch should be defined down to the minute sorted by descending significance.
def __init__(self, line, epoch=DEFAULT_EPOCH, epoch_utc_offset=0): """ Instantiates a CronExpression object with an optionally defined epoch. If the epoch is defined, the UTC offset can be specified one of two ways: as the sixth element in 'epoch' or supplied in epoch_utc_offset. The epoch should be defined down to the minute sorted by descending significance. """ for key, value in SUBSTITUTIONS.items(): if line.startswith(key): line = line.replace(key, value) break fields = line.split(None, 5) if len(fields) == 5: fields.append('') minutes, hours, dom, months, dow, self.comment = fields dow = dow.replace('7', '0').replace('?', '*') dom = dom.replace('?', '*') for monthstr, monthnum in MONTH_NAMES: months = months.upper().replace(monthstr, str(monthnum)) for dowstr, downum in DAY_NAMES: dow = dow.upper().replace(dowstr, str(downum)) self.string_tab = [minutes, hours, dom, months, dow] self.compute_numtab() if len(epoch) == 5: y, mo, d, h, m = epoch self.epoch = (y, mo, d, h, m, epoch_utc_offset) else: self.epoch = epoch
(self, line, epoch=(1970, 1, 1, 0, 0, 0), epoch_utc_offset=0)
[ 0.04464622214436531, 0.03923012316226959, 0.010438798926770687, 0.012186223641037941, -0.029111534357070923, -0.08197339624166489, -0.03569868206977844, 0.041572220623493195, -0.011966651305556297, 0.007575219962745905, 0.008846905082464218, 0.07904577255249023, 0.038754384964704514, 0.031764689832925797, -0.015589582733809948, 0.037217386066913605, -0.0019235386280342937, -0.02034696750342846, -0.06795740872621536, -0.03617442026734352, 0.004807702731341124, -0.0697871670126915, -0.05002572759985924, 0.0721292644739151, 0.039925433695316315, 0.05061125010251999, -0.0025776789989322424, -0.004217604175209999, -0.021975455805659294, -0.05906475707888603, 0.013576843775808811, 0.04889127239584923, -0.06879910081624985, 0.018864858895540237, -0.01113410945981741, -0.07750876992940903, 0.00890637282282114, -0.015772558748722076, -0.09888040274381638, 0.07443477213382721, 0.0462564155459404, 0.01130793709307909, 0.02680603228509426, 0.006202897522598505, -0.047134701162576675, -0.039486292749643326, 0.010475394316017628, 0.025195840746164322, -0.008362018503248692, -0.05467332527041435, -0.009734340943396091, -0.019651656970381737, 0.0195967648178339, 0.00208021211437881, -0.08255891501903534, 0.03489358350634575, 0.05617373064160347, 0.11637294292449951, 0.03119746409356594, -0.04581727087497711, -0.04318241402506828, 0.04691512882709503, 0.006733528804033995, 0.03974245861172676, 0.0235124584287405, -0.0003156341554131359, -0.020163990557193756, -0.03417997807264328, 0.04837894067168236, -0.006820442620664835, 0.029880033805966377, 0.013686629012227058, 0.012771747075021267, -0.037766315042972565, 0.01589149422943592, 0.017483387142419815, -0.10905388742685318, -0.008737119846045971, 0.028361329808831215, 0.01091453805565834, -0.031179165467619896, 0.03139873594045639, 0.056539684534072876, 0.014674701727926731, 0.07234884053468704, -0.07516667246818542, 0.0991731658577919, 0.017446791753172874, -0.036942921578884125, 0.06846974045038223, -0.04424367472529411, -0.03500337153673172, -0.020712919533252716, -0.005178229883313179, -0.010539436712861061, 0.00969774555414915, -0.015196183696389198, -0.015726815909147263, -0.047720227390527725, -0.04969637095928192, 0.03407019004225731, -0.022762255743145943, -0.037382062524557114, -0.05445375293493271, -0.027720913290977478, 0.01483938004821539, -0.019194217398762703, 0.005512161646038294, -0.029349403455853462, -0.021920563653111458, -0.0873894914984703, 0.07509348541498184, -0.050172109156847, -0.012277711182832718, 0.033923812210559845, -0.00981668010354042, -0.0733003169298172, -0.01238749735057354, 0.0178401917219162, -0.0031243206467479467, 0.0252873282879591, 0.008284253068268299, -0.03403359651565552, 0.10890750586986542, -0.016595952212810516, 0.02199375443160534, 0.00725958589464426, 0.020438455045223236, 0.08394953608512878, -0.08878011256456375, 0.0264583770185709, 0.01407087966799736, 0.04592705890536308, -0.008037234656512737, 0.019066132605075836, -0.04479260370135307, 0.05284356325864792, 0.012277711182832718, -0.05189208686351776, 0.01877337135374546, 0.03002641536295414, 0.001748567563481629, -0.0054755667224526405, -0.03322850167751312, -0.03716249018907547, -0.01546149980276823, -0.01175622921437025, 0.05108698830008507, -0.05533204227685928, 0.004894616547971964, 0.001541575533337891, -0.04259688779711723, -0.03699781373143196, -0.018608693033456802, 0.06279747188091278, -0.011911759153008461, 0.01017348375171423, 0.00440972950309515, 0.03654037043452263, -0.00993561465293169, 0.004064361564815044, 0.03240510821342468, -0.01556213665753603, -0.02453712560236454, 0.015726815909147263, 0.06440766900777817, 0.024665208533406258, -0.08768225461244583, -0.007030865177512169, 0.0229269340634346, 0.020328668877482414, -0.0033416051883250475, 0.02931280806660652, 0.05913794785737991, -0.008462655358016491, 0.03348466753959656, 0.0321306437253952, 0.03374083340167999, -0.0376199334859848, 0.08211977779865265, 0.025799661874771118, 0.006326406262814999, -0.027812400832772255, 0.006015346851199865, -0.015260225161910057, 0.01671488769352436, 0.01564447581768036, -0.0033416051883250475, 0.00787713099271059, 0.0023809794802218676, 0.029568973928689957, -0.016769779846072197, 0.01264366414397955, 0.012296008877456188, -0.02916642650961876, -0.03397870436310768, -0.02751963958144188, -0.0049312119372189045, -0.0435117706656456, -0.007140651345252991, -0.053685255348682404, 0.07641091197729111, 0.03308212012052536, -0.0850473940372467, 0.02814175933599472, -0.01863613910973072, -0.02869068831205368, 0.016687441617250443, -0.06931143254041672, 0.022195028141140938, 0.023146504536271095, -0.003064853372052312, 0.009029882028698921, 0.02865409292280674, -0.018004870042204857, -0.03754674270749092, 0.01127134170383215, 0.034436143934726715, -0.03791269287467003, -0.01036560907959938, 0.04775682091712952, 0.007186395116150379, -0.003439954947680235, -0.04907425120472908, 0.037656527012586594, -0.01395194511860609, 0.0442802719771862, 0.0067929960787296295, 0.012103883549571037, -0.031965963542461395, 0.005786626134067774, -0.052587397396564484, -0.014967463910579681, -0.029934927821159363, 0.0435117706656456, -0.008522122167050838, -0.013723224401473999, 0.013302379287779331, 0.00417872192338109, 0.012634514831006527, -0.01908443123102188, 0.023384373635053635, 0.014729593880474567, -0.00557620357722044, 0.016797225922346115, 0.008265955373644829, -0.016595952212810516, 0.045414723455905914, -0.06905526667833328, -0.037656527012586594, 0.03170979768037796, 0.0027926762122660875, -0.010274120606482029, 0.026860924437642097, -0.022121837362647057, -0.00822021160274744, -0.0022997837513685226, 0.01838912069797516, 0.048708297312259674, -0.019743146374821663, 0.06993354856967926, -0.004480632953345776, 0.008462655358016491, -0.0282149501144886, 0.02065802738070488, 0.0024427338503301144, -0.05185548961162567, -0.0008971557836048305, -0.0020310371182858944, -0.007149799726903439, -0.053831636905670166, 0.05511246994137764, -0.02982514165341854, 0.01575426198542118, -0.06539573520421982, 0.0022906349040567875, -0.01863613910973072, -0.053319301456213, -0.00772160105407238, -0.009254028089344501, 0.021426526829600334, 0.0025959766935557127, 0.044426653534173965, -0.006097686011344194, 0.055295445024967194, -0.028544306755065918, -0.022469492629170418, 0.05229463428258896, -0.007396818138659, 0.014885123819112778, -0.027958782389760017, -0.004261061083525419, 0.0580034963786602, -0.019999312236905098, 0.030209392309188843, 0.05222144350409508, 0.03599144145846367, -0.011362830176949501, -0.015937237069010735, -0.0016959618078544736, -0.021572908386588097, 0.00732820201665163, 0.048598513007164, -0.004139839205890894, -0.08043639361858368, 0.03860800340771675, 0.013375569134950638, 0.026714542880654335, 0.07677686959505081, -0.012872384861111641, 0.0850473940372467, -0.016486166045069695, 0.009706893935799599, -0.025232436135411263, -0.005736307706683874, 0.03606463223695755, 0.012726003304123878, 0.020603133365511894, 0.02433585189282894, -0.0009875003015622497, 0.00482142623513937, -0.009071051143109798, 0.09024392068386078, -0.04091350734233856, 0.0580034963786602, -0.06283406913280487, 0.01048454362899065, -0.007351073902100325, 0.0027263471856713295, 0.01375981979072094, 0.0109785795211792, -0.03513145446777344, -0.013137700036168098, 0.04775682091712952, 0.0337042398750782, -0.016101917251944542, -0.021938862279057503, -0.028544306755065918, -0.004251912236213684, -0.04303603246808052, 0.06005283072590828, 0.020054204389452934, -0.053246110677719116, 0.009871573187410831, 0.04018159955739975, -0.03716249018907547, 0.0024084257893264294, 0.002573104575276375, 0.00495865847915411, 0.009235730394721031, 0.023549053817987442, -0.01418981421738863, -0.034399550408124924, 0.026311995461583138, 0.012433241121470928, -0.0065185315907001495, 0.011829419061541557, -0.1015152633190155, 0.03417997807264328, -0.058113280683755875, 0.0067792730405926704, 0.035497408360242844, 0.019432086497545242, -0.01698935218155384, -0.017272965982556343, -0.013037063181400299, -0.025964340195059776, 0.050428275018930435, 0.06166302040219307, -0.0037418659776449203, -0.029459187760949135, 0.079192154109478, 0.04043776914477348, -0.0282149501144886, 0.005397801753133535, -0.007007993292063475, 0.01348535530269146, 0.04146243631839752, -0.11703165620565414, -0.06210216507315636, 0.02563498355448246, -0.0005612227250821888, -0.02484818547964096, 0.02748304419219494, -0.04501217603683472, -0.015095546841621399, 0.03516804799437523, 0.026000935584306717, 0.04149902984499931, 0.018791668117046356, -0.002273480873554945, 0.0003645231481641531, 0.05394142121076584, -0.001291126711294055, -0.0032661273144185543, 0.014198962599039078, 0.03586335852742195, 0.014418534934520721, -0.019505275413393974, -0.00038825289811939, -0.005123337265104055, -0.007209267467260361, -0.011847716756165028, 0.031179165467619896, 0.030319176614284515, -0.012296008877456188, 0.041645411401987076, 0.0313621424138546, -0.024921376258134842, 0.03500337153673172, -0.009725191630423069, -0.06685955077409744, 0.038278646767139435, -0.04241391271352768, -0.09544045478105545, -0.01633063703775406, -0.042779866605997086, -0.052660588175058365, 0.015022356063127518, -0.012634514831006527, -0.055295445024967194, 0.00504557229578495, -0.007383094634860754, 0.042743269354104996, 0.018352525308728218, 0.03238680958747864, 0.028946854174137115, -0.04069393500685692, -0.01142687164247036, 0.009377536363899708, -0.03696121647953987, 0.014253855682909489, -0.07641091197729111, 0.022597575560212135, 0.041133079677820206, -0.045524511486291885, 0.006061090622097254, 0.0040940954349935055, -0.01556213665753603, 0.006422468926757574, -0.02278055250644684, 0.03297233209013939, 0.100344218313694, -0.029898332431912422, -0.01838912069797516, 0.01010944228619337, -0.030465558171272278, -0.022121837362647057, -0.04922063276171684, 0.0025067755486816168, -0.04526834189891815, 0.03187447413802147, -0.008846905082464218, -0.01418981421738863, 0.016595952212810516, -0.06210216507315636, 0.007799366023391485, 0.02638518624007702, 0.023896707221865654, -0.017666364088654518, 0.016019577160477638, 0.042157746851444244, 0.02751963958144188, -0.01319259312003851, -0.05346568301320076, 0.003485698951408267, 0.007090332452207804, 0.006061090622097254, -0.04611003398895264, -0.02806856855750084, -0.00525142066180706, 0.02680603228509426, 0.007744472939521074, 0.013768968172371387, -0.024592017754912376, 0.016412977129220963, 0.02951408177614212, -0.003691547317430377, -0.01528767216950655, -0.014784486964344978, 0.008965839631855488, -0.014317897148430347, 0.011060918681323528, -0.027464747428894043, -0.00415356270968914, 0.00037538737524300814, 0.002136248629540205, -0.10217397660017014, -0.01912102662026882, 0.0076118153519928455, -0.04611003398895264, 0.07388584315776825, 0.007245862390846014, -0.010182632133364677, 0.039998624473810196, 0.0016948182601481676, -0.005109613761305809, 0.04299943521618843, 0.01859954372048378, -0.03139873594045639, -0.024317553266882896, 0.05661287531256676, -0.032825954258441925, -0.012140478938817978, 0.000515192688908428, 0.030868105590343475, -0.01134453248232603, 0.015882344916462898, -0.0225426834076643, -0.03648547828197479, -0.006907356437295675, -0.04534153267741203, -0.03853481262922287, -0.008110425435006618, -0.04728108271956444, 0.0027240600902587175, 0.007954895496368408, -0.013037063181400299, -0.061992380768060684, 0.05467332527041435, 0.01538830902427435, 0.03912033885717392, 0.0215546116232872, -0.01111581176519394, -0.026860924437642097, 0.02289033867418766, 0.011143257841467857, -0.011783675290644169, 0.028233246877789497, -0.02398819662630558, 0.06396852433681488, -0.0595770925283432, 0.019139323383569717, -0.0108779426664114, 0.04567088931798935, 0.0611506886780262, -0.024427339434623718, -0.033960405737161636, 0.004693342838436365, 0.05083082243800163, -0.0642978772521019, -0.0066420407965779305, 0.022213326767086983, -0.01475704088807106, -0.04537812992930412, 0.02614731714129448, 0.04837894067168236, 0.03743695467710495, 0.003348466707393527, -0.009235730394721031, 0.02967876009643078, 0.0250860545784235, 0.04299943521618843, 0.04182838648557663, -0.03187447413802147, 0.037766315042972565, 0.03374083340167999, -0.011179853230714798, 0.0225426834076643, -0.0014077740488573909, 0.0043822829611599445, 0.0067243799567222595, 0.041572220623493195, 0.047024916857481, -0.062065571546554565, 0.0100911445915699, -0.03187447413802147, 0.04307262599468231, -0.061992380768060684, 0.07531305402517319, -0.02418947033584118, 0.013238336890935898, 0.035918254405260086, 0.01254302728921175, -0.08321763575077057, -0.039413101971149445, -0.03280765563249588, -0.002971078036352992, -0.00494036078453064, 0.013549396768212318, -0.008343720808625221, -0.011637294664978981, -0.007598091848194599, -0.08116830140352249, -0.0037418659776449203, 0.06261450052261353, 0.030319176614284515, 0.05632011219859123, -0.019066132605075836, -0.03002641536295414, 0.026055829599499702, 0.052660588175058365, -0.004766533151268959, 0.05028189346194267, -0.013631735928356647, -0.013064509257674217, 0.021023979410529137, -0.03088640421628952, -0.036595266312360764, 0.007250437047332525, -0.08651120960712433, 0.0011939204996451735, -0.01465640403330326, 0.025525197386741638, 0.006271513644605875, -0.06488340348005295, 0.015223630703985691, -0.0009388972539454699, -0.027409853413701057, 0.026129018515348434, 0.016797225922346115, 0.010969431139528751, 0.039486292749643326, 0.025525197386741638, 0.024720100685954094, -0.0250860545784235, -0.026549864560365677, 0.03328339383006096, -0.027720913290977478, -0.10063698142766953, -0.022396301850676537, 0.08109510689973831, -0.039376504719257355, 0.014134921133518219, -0.041572220623493195, 0.027190282940864563, -0.012213669717311859, -0.04837894067168236, 0.005521310493350029, -0.054856304079294205, 0.04091350734233856, 0.04460962861776352, -0.021627802401781082, -0.03269786760210991, -0.043328795582056046, 0.025689875707030296, -0.024097982794046402, -0.018297633156180382, -0.008284253068268299, -0.02543370984494686, -0.002100796904414892, -0.02481159009039402, 0.030154498293995857, -0.0032478298526257277, -0.05116017907857895, 0.021298443898558617, -0.020950788632035255, -0.08124148845672607, 0.0297885462641716, 0.011024323292076588, 0.007657559122890234, 0.045451320707798004, 0.0235124584287405, 0.044938985258340836, -0.04424367472529411, 0.02113376557826996, -0.0795581042766571, -0.02700730599462986, 0.032441701740026474, -0.01777615025639534, -0.013787265866994858, -0.01348535530269146, -0.042157746851444244, -0.03977905213832855, 0.010969431139528751, -0.031929370015859604, 0.04482920095324516, 0.022560980170965195, -0.016358083114027977, 0.04903765395283699, 0.021536312997341156, -0.026623055338859558, 0.08175382018089294, 0.011829419061541557, 0.00518280453979969, 0.0011235889978706837, -0.020401859655976295, 0.025872852653265, 0.050501465797424316, 0.01575426198542118, 0.02402479201555252, 0.016769779846072197, 0.01873677596449852, -0.04347517341375351, -0.03218553587794304, 0.01434534415602684, -0.00753405038267374, 0.045487914234399796, -0.011006025597453117, -0.04479260370135307, 0.013064509257674217, 0.05935752019286156, -0.0450853668153286, -0.017007648944854736, 0.03178298845887184, -0.036320801824331284, -0.06814038008451462, 0.0037441530730575323, 0.02309161238372326, 0.009688596241176128, -0.00032735607237555087, 0.017108285799622536, 0.009551363997161388, 0.00120993098244071, -0.01093283575028181, -0.027336662635207176, -0.031728096306324005, 0.00271948566660285, 0.02199375443160534, 0.048232559114694595, 0.06283406913280487, 0.10100293159484863, 0.017382750287652016, -0.07000674307346344, 0.011124960146844387, 0.0143087487667799, 0.010749858804047108, 0.01285408716648817, -0.024244362488389015, -0.011335383169353008, 0.0250860545784235, -0.020749514922499657, 0.03480209782719612, 0.037656527012586594, 0.0030671407002955675, 0.026238804683089256, -0.011554954573512077, -0.038754384964704514, 0.018343375995755196, -0.04446324706077576, -0.01446427870541811, 0.08080234378576279, 0.004473770968616009, -0.003851651679724455, 0.014784486964344978, 0.0007433413411490619, -0.026915818452835083, -0.06660338491201401, 0.016412977129220963, 0.013412164524197578, -0.06301704794168472, -0.02837962843477726, 0.00938668567687273, 0.017172327265143394, -0.04731767624616623, 0.03355785831809044, -0.03544251248240471, 0.02210354059934616, 0.02309161238372326, 0.03112427331507206, -0.027812400832772255, -0.025799661874771118, -0.04318241402506828, 0.033338285982608795, 0.0008508398896083236, -0.06477361917495728, 0.03798588365316391, 0.039449695497751236, 0.007383094634860754, 0.0160653218626976, -0.0037372915539890528, -0.021627802401781082, -0.01127134170383215, 0.04127945750951767, 0.018846562132239342, -0.03586335852742195, 0.003305009799078107, -0.010649221949279308 ]
23,285
cronex
__repr__
null
def __repr__(self): base = self.__class__.__name__ + "(%s)" cron_line = self.string_tab + [str(self.comment)] if not self.comment: cron_line.pop() arguments = '"' + ' '.join(cron_line) + '"' if self.epoch != DEFAULT_EPOCH: return base % (arguments + ", epoch=" + repr(self.epoch)) else: return base % arguments
(self)
[ 0.04319560155272484, 0.02984745241701603, 0.022199705243110657, 0.013463218696415424, 0.006771441549062729, -0.08341708034276962, 0.024430299177765846, 0.029298655688762665, 0.009772119112312794, -0.0022350181825459003, -0.012710836715996265, 0.0396195724606514, 0.011507024988532066, 0.04765678569674492, -0.0021476091351360083, 0.007997382432222366, 0.005448133684694767, -0.06465177237987518, -0.06082790344953537, -0.030236920341849327, 0.021544691175222397, -0.015330897644162178, -0.022695392370224, 0.006846679840236902, 0.04832950234413147, 0.0650058388710022, 0.0032086896244436502, -0.013233078643679619, -0.03671626001596451, -0.0018809559987857938, -0.01695958338677883, -0.010852009057998657, -0.028147952631115913, -0.016986139118671417, 0.014003164134919643, -0.015622998587787151, -0.057605937123298645, 0.007143206894397736, -0.06868808716535568, -0.014959132298827171, 0.09297675639390945, 0.012339071370661259, -0.003646841738373041, -0.02292553335428238, -0.03568948060274124, -0.04925006628036499, 0.08214244991540909, 0.009993408806622028, -0.03738898038864136, -0.0778937041759491, 0.003691099351271987, 0.06086330860853195, -0.01137425098568201, 0.011807977221906185, -0.08362951129674911, -0.007528249640017748, 0.047975439578294754, 0.063837431371212, 0.030413951724767685, 0.008718783967196941, -0.024430299177765846, 0.04659459739923477, 0.01807487942278385, 0.01802177168428898, 0.04744434729218483, -0.014312968589365482, -0.030838826671242714, 0.00231468235142529, 0.02138536237180233, 0.0076211909763514996, 0.011312290094792843, -0.012409883551299572, -0.024554220959544182, -0.02428867295384407, -0.016065577045083046, -0.05017062649130821, -0.04475347325205803, 0.005355192348361015, 0.025563297793269157, -0.008302761241793633, -0.0028723303694278, 0.00835586991161108, -0.0037442087195813656, -0.020765753462910652, 0.015118460170924664, -0.10798899829387665, 0.008506346493959427, -0.014746694825589657, -0.0792391449213028, 0.01012618187814951, -0.02938717044889927, -0.041319068521261215, -0.014224452897906303, 0.0016640927642583847, -0.03267994895577431, -0.017880145460367203, -0.03027232736349106, -0.04631134867668152, 0.00884713139384985, -0.03838035464286804, 0.04762138053774834, -0.032874684780836105, -0.033122528344392776, -0.07056461274623871, -0.012285961769521236, -0.004299643915146589, -0.031245997175574303, 0.011630946770310402, -0.05572940409183502, -0.016897622495889664, -0.05799540504813194, 0.07959320396184921, -0.0642269030213356, -0.04701947420835495, 0.04677163064479828, 0.00455855205655098, -0.052117969840765, 0.039761196821928024, 0.04949790984392166, -0.02536856383085251, 0.01674714684486389, 0.016207201406359673, -0.01826961524784565, 0.01695958338677883, -0.04234585165977478, 0.029103921726346016, -0.04794003441929817, 0.019650457426905632, 0.047550566494464874, -0.11528268456459045, 0.07838939130306244, 0.00012945402704644948, 0.00466919643804431, -0.000638418598100543, 0.04291234910488129, -0.01867678575217724, 0.03588421270251274, 0.030236920341849327, -0.0022195279598236084, 0.07049380242824554, 0.04188556969165802, -0.016570115461945534, 0.004264237824827433, 0.026430750265717506, -0.029103921726346016, -0.035530149936676025, -0.009966854006052017, 0.06928998976945877, 0.023722173646092415, -0.011648649349808693, 0.056048061698675156, -0.006041187793016434, 0.02007533237338066, -0.021774832159280777, 0.03244980797171593, 0.023031752556562424, 0.015445968136191368, -0.0007070181309245527, 0.02517382986843586, -0.03561866655945778, -0.007922143675386906, -0.008329315111041069, 0.002146502723917365, -0.03735357150435448, 0.014870616607367992, 0.045815661549568176, 0.01359599269926548, -0.04832950234413147, 0.008612565696239471, 0.03675166517496109, 0.0176942627876997, -0.053605031222105026, -0.005762363784015179, 0.08511657267808914, -0.00477984081953764, 0.06989189982414246, 0.005262251012027264, 0.0736449584364891, -0.012967531569302082, 0.025492485612630844, 0.02520923502743244, -0.041531506925821304, -0.016162943094968796, -0.0042376830242574215, 0.007811499293893576, -0.05587103217840195, 0.019048551097512245, -0.02451881393790245, 0.02165091037750244, -0.005355192348361015, -0.0018477626144886017, 0.006775867193937302, -0.00017772267165128142, 0.038663603365421295, -0.04121285304427147, -0.06104034185409546, -0.023014049977064133, -0.034007683396339417, 0.03473351150751114, 0.026643188670277596, -0.03147614002227783, 0.07888507843017578, -0.0017238408327102661, -0.05194094032049179, 0.037318166345357895, -0.009550830349326134, -0.0075105465948581696, -0.006421804893761873, 0.0027882405556738377, -0.006280180066823959, 0.016950732097029686, 0.016623225063085556, -0.026448452845215797, 0.02074805088341236, -0.024359486997127533, -0.0023500884417444468, 0.0018787430599331856, 0.023474330082535744, -0.048718973994255066, 0.020216956734657288, 0.034627292305231094, -0.037743039429187775, 0.002327959518879652, -0.04878978431224823, -0.031741686165332794, -0.015419413335621357, 0.08214244991540909, 0.016047874465584755, -0.006687351502478123, -0.018198801204562187, 0.02274850197136402, -0.05530453100800514, -0.03522919863462448, 0.020411690697073936, 0.013153414241969585, 0.016375381499528885, -0.08143433183431625, 0.03324645012617111, -0.015091905370354652, 0.008050491102039814, -0.040646351873874664, 0.026448452845215797, 0.008125729858875275, 0.006687351502478123, 0.09892500936985016, -0.058491092175245285, -0.023120267316699028, 0.060969527810811996, -0.07219330221414566, -0.027014954015612602, 0.0160567257553339, 0.013312742114067078, -0.028130250051617622, -0.018783004954457283, -0.015800030902028084, 0.008347018621861935, -0.009621642529964447, 0.004425778519362211, 0.060084372758865356, 0.04478888213634491, 0.03322874754667282, -0.012985235080122948, -0.0171189121901989, -0.0038216598331928253, 0.0544193759560585, 0.01048909593373537, -0.10600624978542328, 0.004045161884278059, 0.012339071370661259, 0.011223774403333664, 0.047090284526348114, 0.020659534260630608, -0.06553693115711212, 0.013737617060542107, -0.058703530579805374, -0.025935063138604164, -0.013773023150861263, -0.0307680144906044, -0.022907830774784088, -0.10012881457805634, 0.043124787509441376, 0.003764124820008874, 0.0419209748506546, -0.0517285019159317, 0.042452070862054825, -0.04528456926345825, 0.018358130007982254, 0.03119288757443428, -0.01934950426220894, 0.05565859377384186, 0.02513842284679413, 0.0002287574316142127, 0.02074805088341236, -0.0223059244453907, 0.05820784345269203, 0.008524050004780293, 0.05909299850463867, -0.008634693920612335, -0.015472522005438805, 0.0010981463128700852, -0.00891351792961359, -0.049993596971035004, 0.052117969840765, 0.024837469682097435, -0.08419601619243622, 0.03163546696305275, -0.004585106857120991, 0.04085879027843475, 0.029475687071681023, -0.036185167729854584, 0.04507213085889816, 0.0061385552398860455, 0.027492936700582504, 0.026554672047495842, 0.0038393631111830473, 0.04216881841421127, -0.006868808530271053, -0.02382839284837246, 0.031139779835939407, 0.02113751880824566, 0.007630042731761932, 0.017145466059446335, 0.0778937041759491, 0.03126370161771774, 0.03276846557855606, -0.08015970140695572, -0.03547704219818115, 0.018030622974038124, -0.021226035431027412, 0.05856190249323845, 0.04953331500291824, -0.033777542412281036, 0.006421804893761873, 0.044399410486221313, 0.05286150053143501, 0.03122829459607601, -0.0019097235053777695, -0.014649327844381332, -0.03986741602420807, -0.046240534633398056, 0.07959320396184921, 0.016986139118671417, 0.0072848317213356495, 0.015481374226510525, 0.002998464973643422, 0.028448905795812607, -0.010161587968468666, 0.024448001757264137, 0.033104825764894485, -0.030413951724767685, -0.018358130007982254, -0.01563185080885887, -0.03471580892801285, 0.008842705748975277, -0.012781648896634579, 0.0014759971527382731, 0.01825191080570221, -0.04875437915325165, -0.02046480029821396, -0.0005310934502631426, 0.03770763427019119, 0.03317563608288765, 0.04524916037917137, 0.013728765770792961, -0.04255828633904457, 0.0011672991095110774, -0.007736261002719402, 0.022819316014647484, 0.07449470460414886, 0.0196150504052639, -0.06121737137436867, 0.05378206446766853, 0.025687219575047493, -0.06553693115711212, -0.04280613362789154, 0.0075990622863173485, 0.02559870481491089, -0.0140385702252388, -0.05509209260344505, -0.09998719394207001, -0.00011278820602456108, -0.017623450607061386, -0.01934950426220894, 0.003870343556627631, -0.04393913224339485, 0.030608685687184334, 0.012117782607674599, 0.034007683396339417, 0.01651700586080551, -0.008860409259796143, -0.043762098997831345, -0.008497495204210281, 0.04206259921193123, 0.008187690749764442, -0.09035670012235641, -0.00880729965865612, 0.062067121267318726, -0.015773475170135498, -0.07626502215862274, -0.025758031755685806, 0.01748182624578476, 0.0010583143448457122, -0.0020004520192742348, 0.015569889917969704, 0.007625616621226072, -0.03838035464286804, 0.03011299856007099, 0.018800707533955574, -0.03593732416629791, -0.004009755328297615, -0.026554672047495842, -0.06603261828422546, -0.03650382161140442, -0.02115522138774395, 0.04071716591715813, 0.0023987721651792526, -0.05084334686398506, -0.01919017732143402, 0.00880729965865612, -0.007222870830446482, -0.04471806809306145, 0.006939621176570654, 0.03372443467378616, 0.052719876170158386, 0.005032110493630171, 0.07322008162736893, 0.006129703484475613, 0.0030604260973632336, 0.013932351022958755, 0.012498399242758751, -0.04188556969165802, -0.007444159593433142, -0.03372443467378616, 0.04907303303480148, 0.04638216271996498, -0.07123733311891556, 0.038026291877031326, -0.0011175090912729502, 0.02159780077636242, 0.03862819820642471, 0.008785170502960682, -0.02650156244635582, 0.04411616176366806, 0.000296803773380816, -0.031511545181274414, 0.02805943787097931, -0.03098045103251934, -0.027581453323364258, 0.0029387171380221844, 0.013932351022958755, -0.009727861732244492, 0.02786470204591751, -0.02425326779484749, -0.001261346973478794, -0.013560585677623749, -0.07853101938962936, -0.016331123188138008, -0.0038083826657384634, -0.011321142315864563, -0.014826358295977116, -0.018570568412542343, 0.05997815355658531, -0.012728539295494556, 0.009081698022782803, -0.007545952685177326, -0.032396700233221054, 0.026784813031554222, 0.011754868552088737, -0.06861727684736252, -0.04585106670856476, 0.022553768008947372, 0.015162717550992966, -0.02276620641350746, 0.040186069905757904, -0.03958416357636452, 0.06465177237987518, 0.016145240515470505, 0.012126633897423744, -0.03411390259861946, -0.016667483374476433, -0.036185167729854584, -0.044682662934064865, -0.007010433357208967, -0.0011175090912729502, 0.002792666433379054, 0.015994764864444733, 0.014339523389935493, -0.022146597504615784, 0.008475366048514843, -0.0027705375105142593, -0.007900015451014042, 0.08709932863712311, -0.003031658474355936, -0.036397602409124374, 0.004025245551019907, 0.007275980431586504, 0.011312290094792843, 0.028006328269839287, -0.0045364233665168285, 0.002735131187364459, -0.01381728146225214, 0.012445289641618729, 0.0031002580653876066, -0.015012240968644619, 0.00003841437501250766, 0.0033857207745313644, 0.036397602409124374, 0.052684471011161804, -0.01603902131319046, -0.020181551575660706, 0.06079249829053879, -0.07191005349159241, -0.015056499280035496, -0.0035273456014692783, -0.024642735719680786, -0.0480816587805748, 0.025881953537464142, 0.019438020884990692, -0.05378206446766853, 0.041354477405548096, 0.03358281031250954, 0.03625597804784775, -0.051126595586538315, -0.018340427428483963, -0.047373536974191666, 0.04092960059642792, 0.0378846675157547, 0.021243738010525703, -0.03586651012301445, 0.024430299177765846, 0.05395909398794174, -0.004620512947440147, 0.03613205626606941, -0.002200718503445387, -0.010019962675869465, 0.12618780136108398, -0.09255188703536987, 0.028608232736587524, 0.0351937934756279, 0.012746242806315422, -0.012232852168381214, -0.015587592497467995, 0.03540622815489769, -0.017357904464006424, -0.05463181436061859, -0.013118008151650429, 0.034450262784957886, 0.05700403079390526, 0.012409883551299572, -0.014994538389146328, 0.035990431904792786, -0.02225281484425068, 0.002706363797187805, 0.007869035005569458, -0.02492598630487919, 0.0703875869512558, 0.02340351790189743, 0.023067159578204155, 0.011507024988532066, 0.033069416880607605, 0.01728709228336811, 0.00959508866071701, 0.08766582608222961, 0.0012270471779629588, -0.0002471520856488496, 0.011285735294222832, 0.0076521714217960835, -0.002783814910799265, -0.07265358418226242, 0.039123885333538055, -0.04971034824848175, -0.018588270992040634, 0.08320464193820953, 0.012684281915426254, -0.021119816228747368, -0.015109608881175518, -0.009958001784980297, 0.031971827149391174, -0.0025072037242352962, 0.008307186886668205, -0.013277336023747921, -0.037105727940797806, -0.0027461957652121782, -0.0628814622759819, -0.024377189576625824, 0.04850653558969498, -0.02720968797802925, 0.034875135868787766, 0.032201964408159256, -0.001907510682940483, 0.012640023604035378, 0.034184716641902924, -0.010170439258217812, 0.03876982256770134, 0.06305849552154541, -0.03034313954412937, 0.014056272804737091, -0.030626388266682625, -0.037743039429187775, 0.05275528132915497, -0.037530604749917984, 0.028909185901284218, 0.021013597026467323, 0.06642208993434906, -0.0108166029676795, -0.04482428729534149, 0.0009449037606827915, 0.005094071384519339, -0.053180158138275146, 0.03809710219502449, -0.028679046779870987, 0.04783381521701813, -0.011524727568030357, -0.0013199885142967105, 0.0020048776641488075, -0.030130701139569283, -0.019013145938515663, 0.03816791623830795, -0.004288579802960157, -0.03030773252248764, 0.01582658477127552, 0.04517835006117821, -0.02896229550242424, 0.03717654198408127, -0.0307680144906044, 0.030891936272382736, -0.030201513320207596, -0.05215337499976158, 0.055375345051288605, -0.04832950234413147, 0.026820218190550804, 0.03990282118320465, -0.05056009441614151, -0.03675166517496109, -0.05208256468176842, -0.027103468775749207, -0.026554672047495842, 0.009285284206271172, -0.03728276118636131, -0.018145693466067314, 0.02073034830391407, -0.020801160484552383, -0.039123885333538055, 0.005434856284409761, -0.025952765718102455, -0.03452107310295105, -0.016224903985857964, -0.07874345779418945, 0.029989076778292656, -0.032856982201337814, -0.012710836715996265, 0.03682247921824455, 0.047373536974191666, 0.05438397079706192, -0.03515838459134102, 0.040646351873874664, -0.08164676278829575, -0.009426908567547798, -0.009187916293740273, -0.03926550969481468, 0.002208463614806533, -0.04726731777191162, -0.07113111764192581, -0.05187012627720833, -0.02142076939344406, 0.02225281484425068, -0.02651926688849926, 0.011285735294222832, -0.02117292582988739, -0.01124147791415453, -0.03830954059958458, 0.0069174920208752155, 0.008988756686449051, -0.027085766196250916, -0.026590079069137573, -0.040186069905757904, -0.020588722079992294, 0.0321134515106678, 0.015277788043022156, -0.04478888213634491, 0.005691551603376865, -0.04149610176682472, -0.03675166517496109, -0.05233040824532509, -0.01890692673623562, 0.04450562968850136, -0.018163396045565605, 0.040646351873874664, -0.016428491100668907, -0.04606350511312485, -0.019243285059928894, 0.030130701139569283, -0.01124147791415453, -0.008714358322322369, 0.06433311849832535, -0.01169290766119957, -0.019438020884990692, -0.016649778932332993, 0.03990282118320465, 0.010002260096371174, 0.0064704883843660355, 0.0196150504052639, 0.03947794437408447, 0.011737165041267872, 0.0101438844576478, -0.021473878994584084, 0.03459188714623451, 0.00540830148383975, -0.010391728021204472, 0.035565558820962906, 0.03227277845144272, 0.11790274828672409, 0.015286639332771301, -0.06397905945777893, 0.016003616154193878, -0.03344118222594261, 0.025510188192129135, 0.012082375586032867, -0.01896003633737564, -0.01982748880982399, -0.011515876278281212, 0.008798448368906975, 0.07045839726924896, -0.0001850528788054362, 0.060296811163425446, 0.07084786891937256, -0.03505216911435127, -0.03728276118636131, 0.027581453323364258, -0.012038118205964565, -0.00925872940570116, 0.07042299211025238, -0.007647745776921511, -0.009125955402851105, 0.08447926491498947, -0.0037619119975715876, -0.009409205988049507, -0.05332178249955177, 0.018340427428483963, -0.013135711662471294, -0.02828957699239254, 0.005275528412312269, 0.019951410591602325, -0.006178386975079775, 0.01115296222269535, 0.007320237811654806, -0.03324645012617111, 0.04011525958776474, 0.023686768487095833, 0.022642284631729126, 0.010081923566758633, 0.00003381571514182724, -0.07265358418226242, 0.005372895393520594, 0.031989529728889465, -0.0405755378305912, 0.023350408300757408, 0.0725119560956955, 0.0353885255753994, 0.008205393329262733, -0.020358582958579063, -0.022571470588445663, 0.02046480029821396, 0.04482428729534149, 0.0012093440163880587, 0.004713454283773899, -0.023120267316699028, -0.02765226550400257 ]
23,286
cronex
__str__
null
def __str__(self): return repr(self)
(self)
[ -0.0025275079533457756, -0.04023876413702965, 0.06446928530931473, 0.0027519422583281994, 0.008436213247478008, -0.06846295297145844, -0.009027712978422642, -0.008461383171379566, 0.09088121354579926, -0.052958108484745026, -0.04332631081342697, -0.014917540363967419, -0.015454504638910294, 0.041816096752882004, -0.0211765319108963, 0.02537156455218792, -0.018424589186906815, -0.08873336017131805, 0.01631029136478901, 0.030288144946098328, 0.0038908938877284527, 0.030372045934200287, 0.03278838470578194, -0.017040228471159935, -0.009791209362447262, 0.03399655595421791, -0.019347496330738068, -0.03560744971036911, -0.025270884856581688, 0.0210590697824955, -0.044802963733673096, -0.06705342233181, 0.03127817437052727, -0.006879855878651142, -0.012635442428290844, 0.006951171439141035, -0.05873047560453415, 0.02778790518641472, -0.042185261845588684, -0.012484421022236347, -0.014078534208238125, 0.004824289120733738, -0.04483652114868164, -0.031093591824173927, -0.035104043781757355, -0.030741209164261818, 0.03983604162931442, 0.011720924638211727, -0.02079058811068535, -0.05279030650854111, 0.031429193913936615, 0.03983604162931442, -0.018810532987117767, -0.012232718989253044, -0.06024068593978882, 0.017736604437232018, 0.03611085191369057, 0.0023240488953888416, -0.001424213987775147, 0.030741209164261818, -0.058159951120615005, 0.036714937537908554, 0.05963660404086113, -0.04755490645766258, -0.008327142335474491, -0.023710330948233604, -0.05460256338119507, 0.02250216156244278, 0.019079014658927917, 0.025723949074745178, 0.025421906262636185, -0.03825870901346207, -0.026697196066379547, 0.03829227015376091, 0.009455606341362, -0.028039606288075447, -0.05104517191648483, 0.011947456747293472, 0.016385802999138832, -0.03822514787316322, -0.0012490713270381093, 0.004505466669797897, -0.006376451812684536, 0.011402102187275887, -0.011276251636445522, -0.08913607895374298, -0.03946688026189804, -0.01197262667119503, -0.030640527606010437, 0.0399702824652195, -0.01094903890043497, 0.022720303386449814, -0.04080928862094879, 0.04268866404891014, -0.05369643494486809, -0.0190286748111248, 0.020404644310474396, -0.06705342233181, 0.05245470628142357, -0.009455606341362, 0.006976341363042593, 0.04809186980128288, -0.03577524796128273, -0.008520114235579967, -0.07718862593173981, -0.023274049162864685, -0.03307364881038666, 0.008985762484371662, -0.007878273725509644, 0.03253668174147606, -0.02733484096825123, 0.03597661107778549, -0.004167766310274601, -0.00915356446057558, 0.04644741490483284, -0.05809282884001732, -0.03527184575796127, 0.005315108224749565, 0.05668329820036888, -0.02485138177871704, 0.01750168204307556, 0.006376451812684536, -0.02241826057434082, -0.015186022967100143, -0.013508009724318981, 0.05530732870101929, -0.03379519283771515, -0.010118422098457813, 0.019079014658927917, -0.07557772845029831, 0.03876211494207382, -0.017988305538892746, -0.05013904720544815, 0.035641007125377655, 0.09249211102724075, 0.01193067617714405, 0.0019139841897413135, 0.00506760086864233, 0.05540800839662552, 0.11021193116903305, 0.031227832660079002, -0.01282002404332161, 0.0437290333211422, 0.04295714944601059, -0.012274669483304024, -0.01417082455009222, 0.021092630922794342, 0.07698726654052734, -0.012408910319209099, -0.033409249037504196, 0.04037300497293472, 0.024532558396458626, 0.03866143152117729, -0.004601952154189348, -0.003358124755322933, 0.03470132127404213, -0.006099579390138388, -0.02330760844051838, 0.03856075182557106, -0.0399702824652195, -0.026428714394569397, -0.044333118945360184, 0.022284019738435745, -0.014456086792051792, 0.009321365505456924, 0.04349411278963089, 0.02448221854865551, -0.026344813406467438, 0.025858189910650253, -0.0013560446677729487, -0.0351376049220562, -0.0804104134440422, -0.08786079287528992, 0.054401200264692307, 0.00300574186258018, 0.04386327415704727, 0.007374869659543037, 0.10269442945718765, -0.026562955230474472, 0.0029323287308216095, 0.023441849276423454, -0.04976988211274147, -0.061113253235816956, 0.021293992176651955, 0.0804104134440422, -0.05772366747260094, 0.042185261845588684, -0.007773397956043482, 0.02871081233024597, -0.002814867766574025, 0.006435181945562363, 0.004782338626682758, -0.042990706861019135, 0.0082768015563488, -0.015722986310720444, -0.05466968193650246, -0.010923868045210838, -0.051078733056783676, 0.002290488453581929, 0.024247296154499054, -0.0181057658046484, 0.029700839892029762, -0.023626431822776794, 0.009371706284582615, 0.03956755995750427, -0.0008542137802578509, -0.000025022722184075974, -0.03302330896258354, 0.03956755995750427, -0.04483652114868164, 0.018776971846818924, 0.014321845956146717, 0.0032322737388312817, -0.010051301680505276, 0.06906703859567642, -0.022468602284789085, -0.04231950268149376, -0.029751181602478027, -0.04906511679291725, 0.04195033758878708, 0.06205294281244278, -0.007324529346078634, -0.013642250560224056, -0.03721833974123001, -0.04976988211274147, -0.006699469406157732, 0.01233339961618185, -0.018592391163110733, 0.017367441207170486, -0.003463000524789095, 0.030707648023962975, -0.05104517191648483, -0.02913031540811062, 0.026848217472434044, 0.01457354798913002, 0.06017356738448143, -0.03768818452954292, -0.01777016371488571, -0.04258798435330391, -0.01766948215663433, -0.024985622614622116, 0.01577332802116871, 0.008398458361625671, -0.02887861430644989, 0.04889731481671333, -0.02904641442000866, 0.005583590362221003, 0.07054369151592255, -0.028308089822530746, -0.025807848200201988, 0.0606098510324955, -0.04161473736166954, -0.03084188885986805, -0.024515777826309204, 0.027469081804156303, -0.06735546141862869, -0.02404593490064144, 0.0012333400081843138, 0.028492670506238937, 0.04141337424516678, -0.027771124616265297, 0.025757508352398872, 0.004966920241713524, 0.04007096588611603, 0.01857561059296131, 0.002668041503056884, -0.0692012831568718, 0.02537156455218792, 0.02349219098687172, 0.016838865354657173, 0.10504364967346191, -0.0024981426540762186, -0.07108065485954285, 0.06470420211553574, -0.057790786027908325, -0.031429193913936615, -0.024549338966608047, 0.010319783352315426, -0.06131461635231972, -0.0498705618083477, 0.001129512907937169, -0.0032553463242948055, 0.0014661643654108047, -0.020253624767065048, 0.011561513878405094, -0.03926551714539528, 0.013969463296234608, 0.007790178060531616, 0.03218429908156395, 0.026864998042583466, 0.06433504074811935, 0.022200118750333786, -0.0067665898241102695, 0.021361112594604492, 0.04799119010567665, 0.003502853447571397, 0.0415811762213707, 0.02511986345052719, -0.025791069492697716, 0.0029700840823352337, -0.023072686046361923, -0.023525750264525414, 0.0300364438444376, 0.03280516713857651, -0.02996932342648506, -0.014741349034011364, -0.01864273101091385, 0.02483460120856762, 0.014036583714187145, 0.01646970398724079, 0.014447696506977081, 0.03235210105776787, 0.037352580577135086, 0.09296195209026337, 0.012559931725263596, 0.06853007525205612, -0.012165598571300507, -0.00764754693955183, 0.0165536031126976, 0.07302714884281158, -0.04124557226896286, 0.010747676715254784, -0.014649058692157269, 0.019867680966854095, 0.021998757496476173, -0.01715768873691559, -0.05711958184838295, 0.0662144124507904, 0.025421906262636185, 0.03163055703043938, -0.0030518872663378716, -0.05980440229177475, 0.040842849761247635, 0.022921664640307426, 0.0018038646085187793, -0.0037986033130437136, 0.01618444174528122, -0.004589367192238569, -0.04248730465769768, -0.035104043781757355, 0.07322851568460464, 0.04591045156121254, -0.008717280812561512, -0.00551227480173111, -0.009933840483427048, 0.04815898835659027, -0.05587785318493843, 0.03846007212996483, 0.04742066189646721, 0.016520043835043907, -0.03721833974123001, -0.022804204374551773, 0.02213299833238125, -0.009069663472473621, -0.04077573120594025, -0.010613435879349709, 0.0020880780648440123, 0.06443572044372559, -0.024985622614622116, 0.005675880704075098, 0.04621249437332153, -0.0372854620218277, -0.014900760725140572, 0.02636159397661686, -0.012031357735395432, 0.01642775349318981, 0.004109035711735487, -0.009086443111300468, 0.04960208013653755, -0.010999378748238087, -0.03530540689826012, 0.010613435879349709, -0.04171541705727577, -0.03983604162931442, -0.05550868809223175, 0.05282386764883995, -0.0008148853667080402, 0.031798359006643295, -0.03570812940597534, -0.056985341012477875, 0.04570908844470978, -0.0029721816536039114, 0.001391702564433217, 0.026294473558664322, -0.01161185372620821, 0.0014514817157760262, 0.01532865408807993, 0.03132851421833038, 0.012274669483304024, 0.01649487391114235, -0.04527280479669571, -0.014380576089024544, -0.014959490858018398, -0.0041048405691981316, -0.03111037239432335, -0.059603042900562286, 0.02564004808664322, -0.02169671468436718, -0.07363123446702957, 0.011637024581432343, 0.021914856508374214, -0.0020020799711346626, -0.034835562109947205, -0.001867838902398944, -0.027234161272644997, 0.059066079556941986, 0.010554705746471882, 0.0039244540967047215, -0.011670584790408611, -0.02733484096825123, 0.010789627209305763, -0.0241298358887434, -0.05755586549639702, -0.08302811533212662, 0.07591333240270615, -0.01313045620918274, -0.0210590697824955, 0.0031273977365344763, 0.016192831099033356, -0.02115975134074688, -0.05067601054906845, 0.056347694247961044, 0.007890858687460423, 0.06967112421989441, -0.021495353430509567, 0.04027232527732849, -0.014070143923163414, 0.03300652652978897, 0.0890018418431282, 0.030707648023962975, -0.03990316390991211, -0.03604373335838318, -0.003786018118262291, -0.025321224704384804, 0.051783498376607895, -0.04376259446144104, -0.0015469187637791038, -0.036010172218084335, -0.030909009277820587, 0.08531021326780319, 0.023190148174762726, -0.041379813104867935, 0.0026135060470551252, 0.01721641980111599, 0.020857708528637886, -0.03738614171743393, -0.05819351226091385, -0.006242210511118174, 0.04101065173745155, 0.015102121978998184, 0.011637024581432343, 0.039399757981300354, 0.0060492390766739845, -0.0423530638217926, 0.005034040659666061, -0.034197915345430374, 0.004459321033209562, -0.035473208874464035, -0.007005706895142794, 0.001745134126394987, -0.047017939388751984, 0.037889547646045685, -0.018441369757056236, 0.016998277977108955, -0.004388005472719669, 0.004088060464709997, -0.00347348814830184, 0.0498705618083477, -0.07598045468330383, 0.00504662562161684, 0.04715218022465706, 0.01053792517632246, -0.053763553500175476, -0.03152987360954285, -0.018609169870615005, 0.06785886734724045, -0.03970180079340935, -0.02788858488202095, -0.028274528682231903, -0.026596514508128166, -0.08356507867574692, -0.07873239368200302, -0.015345433726906776, 0.026965677738189697, -0.010756067000329494, 0.023441849276423454, 0.014850419946014881, 0.03102647140622139, -0.003922356758266687, 0.03449995815753937, 0.01700666733086109, 0.0640665590763092, -0.07792694866657257, -0.03557388857007027, -0.006200260017067194, 0.033677730709314346, -0.050441090017557144, -0.021646374836564064, -0.07879951596260071, 0.002160442527383566, 0.00838167779147625, -0.009111613966524601, 0.008524308912456036, -0.002078639343380928, 0.033778414130210876, -0.006682689301669598, 0.07054369151592255, 0.04221882298588753, -0.003108520060777664, -0.026160230860114098, 0.021025510504841805, -0.04107777401804924, 0.05587785318493843, -0.00714833801612258, 0.0007960076909512281, -0.010923868045210838, 0.010160372592508793, 0.013214357197284698, -0.03334213048219681, 0.028845053166151047, 0.01628512144088745, -0.007261603605002165, -0.05691821873188019, -0.022435041144490242, -0.03337569162249565, 0.037788864225149155, -0.023441849276423454, 0.029533039778470993, -0.04168185591697693, 0.08275962620973587, 0.010193932801485062, 0.02644549310207367, 0.016671065241098404, 0.006976341363042593, -0.03356027230620384, 0.11027905344963074, -0.06748970597982407, 0.0011441955575719476, 0.007580426521599293, 0.03715122118592262, 0.028190627694129944, -0.031009690836071968, -0.018961552530527115, -0.053394392132759094, 0.011225910857319832, -0.03899703547358513, 0.008545284159481525, 0.0017545729642733932, 0.0002860488893929869, -0.003838456002995372, 0.011595074087381363, -0.04580977186560631, 0.017803724855184555, -0.004033525008708239, 0.010000960901379585, 0.041379813104867935, 0.010076471604406834, 0.04805830866098404, 0.025489026680588722, 0.029818302020430565, -0.0066449339501559734, 0.006288355682045221, 0.04842747002840042, -0.005529054906219244, 0.012769683264195919, 0.03980248048901558, -0.002867305651307106, 0.0509444922208786, -0.005529054906219244, -0.03129495307803154, 0.020656347274780273, -0.03139563277363777, 0.02644549310207367, 0.01605859026312828, -0.04862883314490318, 0.056012094020843506, 0.014279895462095737, 0.04007096588611603, -0.021914856508374214, 0.0067791747860610485, -0.038862794637680054, 0.01524475309997797, -0.024717139080166817, -0.042722225189208984, -0.026059551164507866, 0.008641770109534264, -0.03424825891852379, -0.0012501201126724482, 0.011720924638211727, -0.04231950268149376, -0.028375210240483284, -0.002867305651307106, -0.03305686637759209, -0.012887144461274147, 0.08651837706565857, -0.07342987507581711, 0.00918712466955185, -0.016788525506854057, 0.0017535241786390543, 0.006590398494154215, 0.037352580577135086, 0.011897115968167782, 0.033040087670087814, 0.03852719068527222, 0.046413853764534, 0.010286223143339157, 0.013281477615237236, 0.036345772445201874, -0.019313937053084373, 0.04023876413702965, -0.038426510989665985, 0.02384457364678383, 0.017736604437232018, -0.07141625881195068, -0.015060171484947205, -0.030690867453813553, 0.012618661858141422, -0.0064561571925878525, -0.04705150052905083, 0.032603804022073746, 0.03540608659386635, 0.040305886417627335, -0.05916675925254822, 0.04161473736166954, -0.024616459384560585, 0.003523828461766243, -0.007190288044512272, -0.026076331734657288, 0.04745422303676605, -0.053763553500175476, 0.029264556244015694, 0.01646970398724079, -0.0015133584383875132, -0.04919935762882233, -0.07416819781064987, -0.01830712892115116, 0.027871806174516678, 0.021377893164753914, -0.032066840678453445, 0.04295714944601059, 0.014741349034011364, -0.0025715557858347893, -0.08269251137971878, 0.0050088707357645035, -0.038426510989665985, -0.004996285308152437, -0.04778982698917389, -0.06819447129964828, 0.007848908193409443, -0.05856267362833023, -0.0482596717774868, 0.0218645166605711, 0.0007598255178891122, 0.030070003122091293, -0.009120004251599312, 0.004117425996810198, 0.019498517736792564, 0.04007096588611603, -0.029633719474077225, 0.009229074232280254, -0.030556626617908478, -0.02511986345052719, -0.007609791588038206, -0.06869787722826004, 0.04815898835659027, 0.03741970285773277, -0.052320461720228195, 0.01313884649425745, 0.0014483354752883315, -0.047017939388751984, -0.0028840857557952404, 0.032066840678453445, -0.036547135561704636, -0.036345772445201874, -0.05560937151312828, 0.0021342234686017036, 0.013348598033189774, 0.010160372592508793, 0.028308089822530746, -0.04221882298588753, 0.022451821714639664, 0.007475550286471844, -0.03664781525731087, -0.061281055212020874, 0.02178061567246914, 0.056448377668857574, -0.033392470329999924, 0.040842849761247635, 0.0116621945053339, -0.07598045468330383, -0.050810251384973526, -0.04530636593699455, -0.025270884856581688, 0.010378514416515827, 0.058059271425008774, 0.02475070022046566, 0.027653664350509644, -0.07906799763441086, 0.03112715110182762, -0.010865137912333012, 0.028811493888497353, 0.04054080694913864, 0.027938926592469215, 0.0012259986251592636, 0.049635641276836395, -0.006556838285177946, 0.02043820545077324, 0.008616600185632706, 0.026562955230474472, -0.023609651252627373, 0.0329897478222847, 0.10484229028224945, -0.012467640452086926, -0.04805830866098404, -0.0057388064451515675, -0.03262058272957802, 0.010454024188220501, 0.03163055703043938, -0.010017741471529007, 0.02439831756055355, -0.025069523602724075, -0.008490748703479767, 0.027032798156142235, 0.0006832661456428468, 0.031009690836071968, 0.09141817688941956, -0.04688369855284691, -0.05641481652855873, -0.024532558396458626, -0.017140908166766167, 0.013340207748115063, 0.0356745682656765, -0.024280857294797897, 0.01089030783623457, 0.005105356220155954, -0.009203904308378696, 0.013306647539138794, -0.014514817856252193, 0.05443476140499115, 0.040037404745817184, -0.0004462467331904918, 0.02736840210855007, 0.01385200209915638, 0.004130010958760977, 0.005730416160076857, 0.0055961753241717815, 0.04591045156121254, 0.062757708132267, -0.03194937855005264, 0.034114014357328415, 0.03849363327026367, 0.05067601054906845, -0.014363796450197697, 0.032519903033971786, 0.038963474333286285, 0.00018445040041115135, -0.002787600038573146, 0.036446455866098404, 0.013231136836111546, -0.01349122915416956, -0.056012094020843506, -0.03876211494207382, 0.03146275505423546, 0.021747056394815445, -0.044064637273550034, 0.061113253235816956, -0.0060618240386247635, -0.009539507329463959 ]
23,287
cronex
check_trigger
Returns boolean indicating if the trigger is active at the given time. The date tuple should be in the local time. Unless periodicities are used, utc_offset does not need to be specified. If periodicities are used, specifically in the hour and minutes fields, it is crucial that the utc_offset is specified.
def check_trigger(self, date_tuple, utc_offset=0): """ Returns boolean indicating if the trigger is active at the given time. The date tuple should be in the local time. Unless periodicities are used, utc_offset does not need to be specified. If periodicities are used, specifically in the hour and minutes fields, it is crucial that the utc_offset is specified. """ year, month, day, hour, mins = date_tuple given_date = datetime.date(year, month, day) zeroday = datetime.date(*self.epoch[:3]) last_dom = calendar.monthrange(year, month)[-1] dom_matched = True # In calendar and datetime.date.weekday, Monday = 0 given_dow = (datetime.date.weekday(given_date) + 1) % 7 first_dow = (given_dow + 1 - day) % 7 # Figure out how much time has passed from the epoch to the given date utc_diff = utc_offset - self.epoch[5] mod_delta_yrs = year - self.epoch[0] mod_delta_mon = month - self.epoch[1] + mod_delta_yrs * 12 mod_delta_day = (given_date - zeroday).days mod_delta_hrs = hour - self.epoch[3] + mod_delta_day * 24 + utc_diff mod_delta_min = mins - self.epoch[4] + mod_delta_hrs * 60 # Makes iterating through like components easier. quintuple = zip( (mins, hour, day, month, given_dow), self.numerical_tab, self.string_tab, (mod_delta_min, mod_delta_hrs, mod_delta_day, mod_delta_mon, mod_delta_day), FIELD_RANGES) for value, valid_values, field_str, delta_t, field_type in quintuple: # All valid, static values for the fields are stored in sets if value in valid_values: continue # The following for loop implements the logic for context # sensitive and epoch sensitive constraints. break statements, # which are executed when a match is found, lead to a continue # in the outer loop. If there are no matches found, the given date # does not match expression constraints, so the function returns # False as seen at the end of this for...else... construct. for cron_atom in field_str.split(','): if cron_atom[0] == '%': if not(delta_t % int(cron_atom[1:])): break elif '#' in cron_atom: D, N = int(cron_atom[0]), int(cron_atom[2]) # Computes Nth occurence of D day of the week if (((D - first_dow) % 7) + 1 + 7 * (N - 1)) == day: break elif cron_atom[-1] == 'W': target = min(int(cron_atom[:-1]), last_dom) lands_on = (first_dow + target - 1) % 7 if lands_on == 0: # Shift from Sun. to Mon. unless Mon. is next month if target < last_dom: target += 1 else: target -= 2 elif lands_on == 6: # Shift from Sat. to Fri. unless Fri. in prior month if target > 1: target -= 1 else: target += 2 # Break if the day is correct, and target is a weekday if target == day and (first_dow + target) % 7 > 1: break elif cron_atom[-1] == 'L': # In dom field, L means the last day of the month target = last_dom if field_type == DAYS_OF_WEEK: # Calculates the last occurence of given day of week desired_dow = int(cron_atom[:-1]) target = (((desired_dow - first_dow) % 7) + 29) if target > last_dom: target -= 7 if target == day: break else: # See 2010.11.15 of CHANGELOG if field_type == DAYS_OF_MONTH and self.string_tab[4] != '*': dom_matched = False continue elif field_type == DAYS_OF_WEEK and self.string_tab[2] != '*': # If we got here, then days of months validated so it does # not matter that days of the week failed. return dom_matched # None of the expressions matched which means this field fails return False # Arriving at this point means the date landed within the constraints # of all fields; the associated trigger should be fired. return True
(self, date_tuple, utc_offset=0)
[ 0.09791192412376404, 0.024215860292315483, -0.03764447197318077, 0.061940986663103104, -0.03556767478585243, -0.08121689409017563, -0.017551962286233902, 0.01497108768671751, -0.09444387257099152, -0.013206818141043186, -0.012047440744936466, 0.0455685630440712, 0.08573342114686966, -0.025667602196335793, -0.024659449234604836, 0.005134024657309055, -0.023127054795622826, 0.014487174339592457, -0.009491770528256893, -0.04133431613445282, -0.006129576824605465, -0.05944076552987099, -0.014739212580025196, 0.07823275774717331, 0.06004565581679344, 0.04722193628549576, -0.031051145866513252, 0.026615267619490623, 0.00008923738641897216, 0.006421941332519054, -0.007898887619376183, 0.012702741660177708, 0.04855269938707352, -0.01809636503458023, 0.0037629350554198027, -0.06141674518585205, 0.031494732946157455, 0.036757297813892365, -0.04943987727165222, 0.040850404649972916, 0.040608447045087814, -0.006704224739223719, 0.038914747536182404, 0.018247589468955994, -0.03877360746264458, -0.030042991042137146, 0.006754632107913494, 0.045205630362033844, -0.022764118388295174, -0.018650850281119347, 0.01966908574104309, -0.0021120829042047262, 0.021473681554198265, -0.023792436346411705, -0.03788642957806587, 0.007813193835318089, 0.011402222327888012, 0.1069449856877327, 0.008024906739592552, -0.07250644266605377, -0.007319198455661535, 0.051456183195114136, 0.01312616653740406, 0.014214972034096718, 0.025728091597557068, -0.006739510223269463, 0.008710451424121857, -0.052625641226768494, 0.005827130749821663, 0.011734913103282452, -0.04403616860508919, 0.023994067683815956, 0.013438694179058075, -0.04492334648966789, 0.0038234242238104343, -0.0192960686981678, -0.04282638430595398, -0.03189799562096596, 0.0007498146151192486, -0.01026804931461811, 0.009501852095127106, -0.010958635248243809, 0.03209962695837021, 0.010162193328142166, 0.03520474210381508, 0.013932689093053341, 0.03324891999363899, 0.05206107720732689, 0.034357890486717224, 0.0072637503035366535, 0.0012797255767509341, -0.0026539654936641455, -0.002255744766443968, 0.028228314593434334, 0.023006075993180275, -0.0013055595336481929, -0.009033060632646084, -0.010363823734223843, -0.05165781453251839, -0.0010371385142207146, 0.029760709032416344, -0.011119939386844635, -0.039156705141067505, -0.02546597272157669, 0.02891385927796364, -0.013307633809745312, -0.06004565581679344, -0.01259184442460537, -0.01888272538781166, -0.06028761342167854, -0.08831429481506348, -0.0021939952857792377, -0.0462944358587265, -0.002113342983648181, -0.0135193457826972, -0.03972126916050911, -0.0063261669129133224, 0.051536835730075836, -0.04568954184651375, -0.060690876096487045, 0.06286849081516266, -0.0016949590062722564, -0.020646994933485985, 0.062223270535469055, 0.07036915421485901, -0.0009098590817302465, 0.013952852226793766, 0.04266507923603058, 0.06790925562381744, -0.028792880475521088, -0.0011222015600651503, 0.028147662058472633, 0.00198354315944016, -0.006099332123994827, -0.030305111780762672, -0.015596143901348114, 0.0028782798908650875, 0.02923646755516529, -0.09791192412376404, -0.039156705141067505, 0.03371267393231392, -0.01068643294274807, 0.0054087466560304165, -0.0051189023070037365, -0.010706596076488495, -0.005081096664071083, -0.026332983747124672, 0.055892061442136765, -0.04560888931155205, 0.02840978279709816, 0.02377227321267128, -0.06480414420366287, -0.05339184030890465, 0.01420489139854908, -0.019820308312773705, 0.019477536901831627, -0.00015602759958710521, -0.021977758035063744, 0.004720681346952915, -0.004508968908339739, -0.007964417338371277, 0.0004382319748401642, -0.05234336107969284, 0.009436322376132011, 0.016261525452136993, 0.07432112097740173, -0.032744843512773514, -0.03316826745867729, 0.012974943034350872, 0.023832762613892555, -0.013640324585139751, 0.08315254747867584, -0.0018512229435145855, 0.04343127831816673, -0.05048835650086403, 0.04770585149526596, 0.007046997081488371, -0.021070420742034912, -0.031192287802696228, 0.04306834191083908, -0.011825647205114365, -0.018701257184147835, -0.03181734308600426, -0.009572423063218594, -0.0025077832397073507, 0.038914747536182404, -0.013731058686971664, 0.00552972499281168, 0.011946626007556915, 0.046939652413129807, -0.04577019438147545, -0.051093246787786484, 0.04782683029770851, -0.006038842722773552, -0.031192287802696228, 0.018197180703282356, -0.018529871478676796, 0.04782683029770851, -0.01714870147407055, -0.03268435597419739, -0.019457373768091202, 0.015727203339338303, 0.008276944980025291, -0.039983391761779785, -0.015565899200737476, -0.01031341589987278, 0.011361896060407162, 0.024941731244325638, 0.0026287618093192577, -0.04282638430595398, -0.004312379285693169, -0.02617168053984642, -0.08153950423002243, 0.051577161997556686, -0.0026085986755788326, -0.06347338110208511, 0.06629621237516403, -0.0231068916618824, -0.06323142349720001, 0.023127054795622826, -0.021816454827785492, 0.018610524013638496, -0.013670569285750389, -0.06726404279470444, 0.07391785830259323, 0.007914009504020214, 0.03480147942900658, 0.04496367275714874, 0.029417935758829117, -0.05508553981781006, 0.0012078946456313133, -0.029175978153944016, -0.0034932538401335478, -0.048310741782188416, 0.057666413486003876, -0.0024939212016761303, 0.01546508353203535, 0.021634986624121666, 0.04153594747185707, 0.027240322902798653, 0.030204296112060547, 0.017572125419974327, 0.01850970834493637, -0.022723792120814323, 0.010998960584402084, -0.05347249284386635, 0.025324830785393715, 0.02762342244386673, -0.06012630835175514, -0.04250377416610718, -0.024699775502085686, -0.031918156892061234, -0.002104521729052067, 0.01677568443119526, -0.0018802073318511248, -0.03496278449892998, 0.05234336107969284, 0.042060188949108124, 0.07020784914493561, -0.012581762857735157, 0.05040770396590233, 0.031151961535215378, 0.029518751427531242, -0.0016533726593479514, -0.05181911960244179, 0.021090583875775337, 0.009219569154083729, -0.028550922870635986, -0.004826537799090147, 0.0174713097512722, -0.010303334333002567, -0.009406077675521374, -0.019477536901831627, 0.02510303631424904, -0.05008509382605553, -0.00446360232308507, 0.027683911845088005, -0.04468138888478279, -0.014376277104020119, -0.03262386471033096, 0.011200591921806335, 0.012118011713027954, 0.030264785513281822, 0.024941731244325638, -0.010515047237277031, -0.0227036289870739, -0.022804444655776024, 0.04095121845602989, 0.02778472565114498, -0.005348257254809141, -0.03205930069088936, -0.04391518980264664, 0.0911371260881424, -0.07222415506839752, 0.005544847343116999, 0.06484446674585342, 0.04508465155959129, -0.03512408956885338, 0.003561304183676839, -0.013015269301831722, 0.030849514529109, 0.030950330197811127, 0.025365157052874565, -0.035849958658218384, -0.07903928309679031, 0.002550629898905754, 0.026776572689414024, 0.027482280507683754, 0.06270718574523926, -0.07238546013832092, 0.018338322639465332, -0.0381888747215271, 0.04107219725847244, -0.06637686491012573, 0.03351104259490967, -0.010414231568574905, 0.029559077695012093, 0.018166936933994293, 0.038410671055316925, 0.03661615774035454, -0.0008178650168702006, 0.061940986663103104, 0.08162015676498413, 0.023752110078930855, 0.02431667596101761, -0.08944343030452728, 0.020808300003409386, -0.00515670794993639, -0.04915759339928627, 0.005630540661513805, -0.00987991038709879, -0.03330941125750542, 0.02899451181292534, 0.07028850167989731, 0.06496544927358627, -0.019013786688447, -0.01594899781048298, -0.04746389389038086, 0.009214527904987335, -0.04173757880926132, 0.045891173183918, 0.07532927393913269, -0.007112526800483465, -0.013650406152009964, 0.04939955100417137, -0.011986952275037766, 0.00544403214007616, 0.0533515140414238, 0.056214671581983566, -0.019911043345928192, 0.031918156892061234, -0.03320859372615814, -0.04875433072447777, 0.010545291937887669, 0.03197864815592766, -0.04657671973109245, 0.030748698860406876, -0.06702208518981934, 0.026030538603663445, 0.00396708631888032, 0.0033420308027416468, 0.0009848405607044697, -0.01064610667526722, 0.010928390547633171, -0.009804298169910908, -0.019225498661398888, -0.029478425160050392, 0.01842905580997467, 0.016755521297454834, -0.03643468767404556, -0.032281093299388885, 0.030789025127887726, 0.0349426195025444, -0.05847293511033058, 0.02145351842045784, 0.01122075505554676, 0.057263150811195374, 0.01934647746384144, -0.07206284999847412, -0.023046402260661125, 0.051093246787786484, 0.04290703684091568, -0.027562933042645454, 0.008418086916208267, 0.021030094474554062, -0.07343394309282303, 0.028308967128396034, 0.03562816604971886, 0.007046997081488371, -0.013882281258702278, 0.06532838195562363, 0.011523201130330563, 0.007157893851399422, -0.0192960686981678, -0.00515670794993639, 0.0074149733409285545, 0.027320975437760353, 0.008004743605852127, -0.023288359865546227, -0.012823719531297684, -0.0020289099775254726, 0.00002971297908516135, -0.05202075093984604, 0.01788465306162834, 0.038995400071144104, 0.009577463380992413, 0.019971532747149467, -0.022018084302544594, -0.054601624608039856, 0.076700359582901, -0.038531649857759476, -0.023792436346411705, -0.027905704453587532, -0.05024639889597893, -0.09468583017587662, -0.011009042151272297, -0.04609280452132225, -0.009617789648473263, 0.049923788756132126, 0.001195922726765275, -0.013952852226793766, -0.04351193085312843, 0.033974792808294296, 0.014144401997327805, -0.003306745318695903, 0.029055001214146614, 0.016009487211704254, 0.02899451181292534, -0.04738324135541916, 0.04665737226605415, 0.02248183637857437, -0.011997033841907978, -0.07928123325109482, -0.027018528431653976, 0.006946181412786245, -0.02021348848938942, -0.018751665949821472, 0.05484358221292496, 0.009728686884045601, -0.018318159505724907, 0.007319198455661535, 0.048351068049669266, 0.069562628865242, -0.06391696631908417, 0.001935655833221972, 0.009169161319732666, -0.012803556397557259, -0.02546597272157669, -0.02939777262508869, 0.01958843320608139, -0.07536959648132324, 0.05077064037322998, -0.012995106168091297, 0.015041658654808998, 0.002243142807856202, -0.037079907953739166, -0.007218383252620697, 0.018035875633358955, 0.017874572426080704, -0.03540636971592903, 0.011835728771984577, 0.011503037996590137, -0.012773311696946621, 0.01379154808819294, -0.031232614070177078, 0.0005201444728299975, -0.029014674946665764, -0.004486285615712404, -0.01830807887017727, -0.011301407590508461, 0.027139507234096527, -0.030405927449464798, 0.00952201522886753, 0.029922012239694595, -0.026937877759337425, -0.005287768319249153, 0.00960770808160305, 0.021070420742034912, 0.02223987877368927, -0.038995400071144104, 0.00793417263776064, 0.023711783811450005, 0.026191843673586845, -0.03619273006916046, -0.009355669841170311, -0.08774972707033157, -0.010928390547633171, -0.05512586608529091, -0.07266774773597717, -0.024921568110585213, -0.052665967494249344, -0.020767973735928535, 0.08766908198595047, 0.012803556397557259, -0.02365129441022873, -0.052827272564172745, 0.004314899444580078, 0.051214225590229034, 0.048270415514707565, -0.01850970834493637, -0.024982057511806488, 0.08928212523460388, -0.03324891999363899, 0.06133609265089035, -0.010031132958829403, -0.0227036289870739, 0.04326997324824333, 0.017511636018753052, -0.013932689093053341, -0.04153594747185707, -0.007929131388664246, -0.06714306026697159, 0.03635403513908386, 0.0052575236186385155, -0.036837950348854065, -0.03661615774035454, 0.04326997324824333, -0.010575536638498306, -0.06540903449058533, 0.042342472821474075, 0.007369606290012598, 0.00011806429392891005, -0.025869233533740044, 0.008544106036424637, -0.03254321217536926, 0.025123199447989464, 0.0010289472993463278, -0.05024639889597893, -0.004105707630515099, -0.05685988813638687, 0.060771528631448746, -0.04956085607409477, 0.05323053523898125, -0.04919791966676712, 0.03947931528091431, 0.07145795971155167, -0.05988435074687004, -0.04593149945139885, -0.07988613098859787, 0.050044767558574677, -0.016513563692569733, 0.016080057248473167, 0.00814084429293871, 0.007843438535928726, 0.005575092043727636, 0.01263217069208622, 0.03611207753419876, -0.003785618580877781, 0.014608152210712433, 0.013347960077226162, 0.03877360746264458, 0.016201036050915718, 0.08468494564294815, 0.034478869289159775, -0.003500815015286207, 0.0004303557798266411, 0.043673235923051834, 0.018852481618523598, 0.021554334089159966, 0.007122608367353678, -0.020273977890610695, -0.0385921373963356, 0.014920680783689022, 0.03480147942900658, -0.08339450508356094, -0.021594660356640816, 0.04165692627429962, 0.0016231280751526356, 0.005630540661513805, 0.043794214725494385, -0.03945915028452873, 0.046818673610687256, 0.0230262391269207, -0.007742623332887888, 0.016170792281627655, -0.010005929507315159, -0.06141674518585205, -0.07323231548070908, -0.02207857370376587, -0.05480325594544411, 0.01577761210501194, -0.06714306026697159, -0.01213817484676838, -0.058876197785139084, -0.009411117993295193, 0.016059894114732742, 0.01846938207745552, 0.06702208518981934, -0.03312794119119644, -0.0001016030291793868, -0.008161007426679134, 0.051093246787786484, -0.027240322902798653, 0.035063598304986954, -0.0230262391269207, 0.049964115023612976, 0.018812155351042747, -0.008982652798295021, 0.02480059117078781, -0.020848626270890236, -0.04282638430595398, -0.011694586835801601, -0.012612007558345795, -0.04038665071129799, 0.009864787571132183, -0.01868109591305256, 0.02274395525455475, -0.02592972293496132, 0.013317715376615524, -0.001358487643301487, 0.011069531552493572, -0.01842905580997467, 0.07246611267328262, 0.04111252352595329, 0.026433799415826797, -0.011079613119363785, -0.06746567040681839, 0.06960295885801315, 0.022058410570025444, -0.04157627373933792, -0.01842905580997467, 0.06311044842004776, 0.002739658812060952, 0.00003985359217040241, -0.048230089247226715, -0.002986656501889229, 0.03395462781190872, -0.06629621237516403, 0.0041334317065775394, -0.01035374216735363, 0.011331651359796524, 0.030869677662849426, -0.000518884276971221, -0.04046730324625969, -0.029599403962492943, 0.01408391259610653, 0.0006779836257919669, -0.03248272463679314, -0.012319643050432205, -0.03014380671083927, -0.00454677501693368, 0.014950924552977085, 0.02617168053984642, -0.014144401997327805, 0.010494884103536606, 0.02463928610086441, 0.003160563064739108, -0.05867456644773483, 0.037039581686258316, -0.005963231436908245, -0.023288359865546227, 0.033692508935928345, -0.03921719267964363, 0.036999255418777466, -0.04887530952692032, 0.02361096814274788, -0.05238368734717369, -0.07206284999847412, 0.02236085757613182, 0.0056960703805089, -0.016614379361271858, 0.015071903355419636, -0.03740251436829567, -0.08452364057302475, 0.020273977890610695, 0.005882578901946545, 0.0694013237953186, 0.004012453369796276, 0.007334320805966854, 0.04149562120437622, -0.0006666418630629778, -0.04270540550351143, 0.0919436514377594, 0.022643141448497772, 0.048230089247226715, -0.006497553084045649, -0.0025380279403179884, 0.06911904364824295, -0.002350259106606245, -0.031252775341272354, 0.06298946589231491, 0.027482280507683754, -0.016967233270406723, 0.0027522605378180742, 0.04387486353516579, -0.0018638249021023512, -0.0095673818141222, -0.04278605803847313, 0.039822086691856384, -0.04161660000681877, -0.00927501730620861, 0.04714128375053406, -0.027905704453587532, 0.02530466765165329, 0.012269235216081142, -0.03641452640295029, -0.08258797973394394, 0.060529571026563644, -0.013932689093053341, 0.005938027519732714, 0.02845010720193386, -0.02215922623872757, 0.011573608964681625, 0.04099154472351074, -0.0035033354070037603, -0.007293994538486004, -0.043794214725494385, -0.0037755370140075684, 0.024236023426055908, 0.024195697158575058, -0.00001981849709409289, 0.06798990815877914, 0.010585618205368519, -0.07738590985536575, -0.0076367673464119434, -0.0454879105091095, -0.007893846370279789, 0.016432911157608032, 0.028006520122289658, -0.01524328999221325, 0.012329724617302418, -0.01793506182730198, 0.014527500607073307, -0.016493400558829308, -0.002032690681517124, 0.013630243018269539, 0.00886167399585247, -0.03800740838050842, 0.007520829327404499, 0.010288212448358536, 0.010071459226310253, 0.029841361567378044, 0.0006515195709653199, 0.0033218676690012217, 0.05226270854473114, -0.018035875633358955, 0.018560117110610008, -0.04609280452132225, -0.052625641226768494, 0.019165009260177612, 0.022562488913536072, -0.03645485267043114, 0.0010573015315458179, -0.024175534024834633, -0.025324830785393715, 0.05173846706748009, -0.03167619928717613, -0.0031933279242366552, 0.01426537986844778, -0.03256337717175484, -0.000138542425702326, -0.03147457167506218, 0.018741583451628685, -0.028671901673078537, -0.009532096795737743, 0.042261820286512375, -0.0002243142807856202, 0.04286671057343483, -0.01184581033885479, 0.05234336107969284, 0.0014555224915966392, 0.022683465853333473, -0.034761153161525726, 0.07145795971155167, 0.045124977827072144, -0.0038461077492684126, -0.024377165362238884, 0.04133431613445282 ]
23,288
cronex
compute_numtab
Recomputes the sets for the static ranges of the trigger time. This method should only be called by the user if the string_tab member is modified.
def compute_numtab(self): """ Recomputes the sets for the static ranges of the trigger time. This method should only be called by the user if the string_tab member is modified. """ self.numerical_tab = [] for field_str, span in zip(self.string_tab, FIELD_RANGES): split_field_str = field_str.split(',') if len(split_field_str) > 1 and "*" in split_field_str: raise ValueError("\"*\" must be alone in a field.") unified = set() for cron_atom in split_field_str: # parse_atom only handles static cases if not(is_special_atom(cron_atom, span)): unified.update(parse_atom(cron_atom, span)) self.numerical_tab.append(unified) if self.string_tab[2] == "*" and self.string_tab[4] != "*": self.numerical_tab[2] = set() elif self.string_tab[4] == "*" and self.string_tab[2] != "*": self.numerical_tab[4] = set()
(self)
[ 0.054467398673295975, 0.052473410964012146, -0.05555184930562973, 0.00919159222394228, -0.040859296917915344, -0.024767449125647545, 0.0011292715789750218, -0.032970793545246124, -0.059749722480773926, -0.03186885267496109, -0.025379639118909836, 0.036906298249959946, 0.008561911061406136, -0.02398034930229187, -0.05261334031820297, -0.025991829112172127, -0.0033976533450186253, -0.009016681462526321, -0.018435658887028694, -0.03900523483753204, -0.0025252827908843756, -0.039320074021816254, -0.03578686714172363, 0.06009954586625099, 0.016546616330742836, 0.015549620613455772, -0.024435117840766907, -0.03342556208372116, 0.007446851581335068, 0.003465431509539485, 0.01868053339421749, 0.03652149438858032, -0.06419247388839722, -0.017211278900504112, 0.027146244421601295, -0.10879486799240112, 0.023945366963744164, 0.012602363713085651, 0.02170650102198124, 0.10704575479030609, 0.03505223989486694, -0.08080904930830002, 0.042818304151296616, -0.002265102230012417, -0.0006269479636102915, -0.02055208571255207, 0.05877022072672844, -0.014246530830860138, -0.004836299456655979, -0.07563167810440063, 0.04390275478363037, -0.025467095896601677, -0.0011522286804392934, -0.003566005500033498, -0.04421759396791458, 0.07556170970201492, 0.05208860710263252, 0.04047448933124542, 0.004687624517828226, -0.03333810716867447, -0.01673027314245701, 0.065171979367733, -0.04873030632734299, -0.050304509699344635, 0.008260189555585384, -0.03571690246462822, 0.03062698058784008, -0.003465431509539485, 0.006786561105400324, 0.015462164767086506, -0.030819382518529892, -0.014771264977753162, 0.01815580017864704, -0.021146783605217934, 0.03288333863019943, 0.008837397210299969, -0.024557556957006454, -0.01631048507988453, -0.0007253355579450727, -0.011815262958407402, 0.0577557347714901, 0.07871011644601822, 0.0659765675663948, -0.003985792864114046, 0.03144906461238861, -0.013275773264467716, 0.05285821482539177, 0.0488002710044384, 0.016065608710050583, 0.017805976793169975, -0.020219754427671432, -0.014001655392348766, 0.013223299756646156, -0.004141026642173529, -0.006860898341983557, 0.010101131163537502, -0.08451717346906662, -0.07353273779153824, -0.08290798962116241, -0.0604143850505352, 0.039914775639772415, 0.012777275405824184, -0.0306094903498888, -0.02429518848657608, 0.014841229654848576, -0.03994975611567497, -0.01085325051099062, -0.043447982519865036, -0.026656493544578552, 0.01878548040986061, -0.07996948063373566, 0.03571690246462822, -0.05292817950248718, -0.027688469737768173, 0.01464008167386055, 0.01537470892071724, -0.03293580934405327, 0.017106331884860992, 0.03987979143857956, -0.03179888799786568, -0.027793416753411293, 0.02719871699810028, -0.002687075873836875, 0.07633132487535477, -0.00907790008932352, 0.01577700488269329, 0.026953842490911484, 0.0437978059053421, 0.03270842507481575, -0.021461624652147293, 0.0319388173520565, -0.017928415909409523, -0.02606179378926754, 0.0467013344168663, 0.02263353206217289, -0.0307319276034832, 0.005688992328941822, 0.02564200758934021, -0.0018387557938694954, -0.0023394394665956497, 0.04547695443034172, 0.03914516419172287, -0.011115617118775845, -0.00030336191412061453, -0.020622050389647484, 0.03603174164891243, 0.00760427163913846, 0.11152348667383194, -0.04897518455982208, 0.009655107744038105, -0.0427483394742012, -0.006117525044828653, -0.022773459553718567, -0.031099241226911545, 0.03083687461912632, 0.03351301699876785, -0.0095589067786932, -0.006165625993162394, 0.03433510288596153, -0.0011719061294570565, -0.018628060817718506, 0.029140233993530273, -0.02356056123971939, -0.014762519858777523, -0.005570927169173956, 0.055097080767154694, 0.054362453520298004, -0.05908505991101265, -0.033390581607818604, 0.006777815520763397, 0.011185581795871258, 0.019380180165171623, -0.032568495720624924, 0.057510856539011, 0.05264832079410553, 0.006130643654614687, -0.029437582939863205, 0.020114807412028313, -0.02614925056695938, 0.08822529762983322, 0.0456518679857254, -0.029105251654982567, -0.05131899565458298, 0.01629299484193325, -0.0039245737716555595, -0.024557556957006454, 0.028615500777959824, -0.03232362121343613, -0.028510553762316704, 0.03841053694486618, 0.002829191507771611, -0.051039136946201324, -0.01962505653500557, -0.002859800821170211, 0.03977484628558159, 0.016791490837931633, -0.058700256049633026, 0.006480466108769178, -0.06947479397058487, -0.032358601689338684, -0.03641654551029205, -0.0009718512883409858, -0.010678338818252087, 0.0038458637427538633, 0.047191087156534195, -0.02139165997505188, 0.009034172631800175, -0.01579449698328972, -0.013686814345419407, 0.030696945264935493, 0.0006400662823580205, -0.05723100155591965, -0.01943265274167061, 0.04467236250638962, -0.005260459613054991, -0.03715117648243904, 0.01755235530436039, 0.014867465943098068, -0.006353655364364386, -0.010818268172442913, 0.061813678592443466, 0.015182306990027428, 0.02761850506067276, -0.04337801784276962, 0.03652149438858032, -0.011308019980788231, 0.014832484535872936, 0.040544454008340836, -0.03459746763110161, 0.03942502290010452, 0.010879486799240112, -0.01815580017864704, -0.06174371391534805, -0.02784588932991028, 0.03445753827691078, 0.015645822510123253, 0.010984433814883232, -0.002658652840182185, 0.06884511560201645, 0.00913911871612072, -0.05240344628691673, 0.03673138841986656, 0.005439743399620056, -0.011334256269037724, -0.029525039717555046, -0.0361366905272007, -0.009270302951335907, 0.035349588841199875, -0.06261827051639557, -0.0006848873454146087, -0.002628043293952942, -0.04358791187405586, -0.050514403730630875, -0.002883851295337081, 0.008094023913145065, 0.032008782029151917, 0.0017021062085404992, 0.0917934849858284, 0.013371974229812622, -0.011115617118775845, 0.04642147570848465, -0.038375552743673325, 0.053627826273441315, -0.04029957950115204, 0.02894783206284046, 0.03312821313738823, 0.02761850506067276, 0.023333176970481873, -0.06023947522044182, 0.03921512886881828, -0.04134904593229294, -0.015121087431907654, -0.04516211524605751, 0.018313219770789146, -0.02335066720843315, 0.016966402530670166, 0.06527692079544067, -0.04642147570848465, -0.025257201865315437, -0.012497417628765106, -0.0023919129744172096, 0.012812257744371891, 0.031169205904006958, -0.017840959131717682, 0.020587068051099777, -0.012479926459491253, -0.006143761798739433, -0.014299004338681698, -0.016590343788266182, -0.008260189555585384, -0.042083676904439926, -0.011946446262300014, 0.011937701143324375, -0.01670403592288494, 0.05569177865982056, 0.011395475827157497, 0.07276313006877899, -0.015068614855408669, -0.021024346351623535, 0.04939496889710426, -0.002859800821170211, -0.027181226760149002, 0.012759784236550331, 0.0390402190387249, -0.06587161868810654, -0.022143779322504997, 0.05075927823781967, 0.006926489993929863, 0.10046909004449844, -0.06730589270591736, 0.009488942101597786, 0.05709107220172882, -0.033373087644577026, -0.024540064856410027, 0.06779564917087555, 0.06849528849124908, -0.014683809131383896, 0.049359988421201706, -0.008325780741870403, 0.043238092213869095, -0.013415701687335968, -0.017840959131717682, 0.04579179733991623, 0.016590343788266182, -0.027338646352291107, -0.04715610668063164, -0.03010224737226963, -0.01798088848590851, -0.020219754427671432, -0.007394378073513508, -0.050199564546346664, -0.020377174019813538, 0.027688469737768173, 0.037116192281246185, 0.03209623694419861, -0.004350920207798481, 0.020394666120409966, -0.02263353206217289, -0.0379907488822937, -0.04362289607524872, 0.03417768329381943, 0.0488002710044384, -0.0059907143004238605, 0.004077621269971132, 0.05047941952943802, -0.010267297737300396, 0.013302009552717209, 0.0292801633477211, 0.02761850506067276, 0.012716056779026985, -0.021461624652147293, 0.01387047115713358, -0.0015676431357860565, 0.03211372718214989, 0.04796069860458374, -0.01755235530436039, 0.04929002374410629, -0.10368745774030685, -0.00934901274740696, -0.004871281795203686, 0.058700256049633026, -0.014683809131383896, 0.03788580372929573, -0.028108257800340652, -0.014281513169407845, -0.06440236419439316, 0.0017873755423352122, 0.022388655692338943, 0.01576825976371765, -0.0019185590790584683, -0.00019431559485383332, 0.005986341740936041, 0.0704193189740181, -0.04229356721043587, -0.013057134114205837, 0.04897518455982208, 0.016634071245789528, 0.03127415105700493, -0.08675603568553925, -0.08213838189840317, 0.06940483301877975, 0.011220564134418964, -0.05026952922344208, 0.0704193189740181, -0.037116192281246185, -0.014403951354324818, 0.026499072089791298, 0.013678069226443768, 0.037745874375104904, 0.04859037697315216, 0.06310801953077316, 0.0015796682564541698, 0.014246530830860138, -0.008500692434608936, 0.015357217751443386, 0.025257201865315437, -0.0258518997579813, -0.04176883399486542, 0.012339997105300426, 0.012007665820419788, -0.002886037575080991, -0.022965863347053528, -0.008395745418965816, 0.06660624593496323, -0.015593349002301693, -0.0011467626318335533, 0.034002769738435745, -0.04726105183362961, -0.017088841646909714, -0.016669053584337234, -0.05656633526086807, -0.005942613817751408, 0.034212663769721985, -0.05866527184844017, -0.03830558806657791, -0.04628155007958412, -0.03372291103005409, -0.04078933224081993, 0.04526706412434578, 0.014010400511324406, 0.009777545928955078, -0.028283167630434036, 0.009217829443514347, 0.0770309641957283, 0.04561688378453255, -0.022266216576099396, -0.0019557278137654066, -0.011762789450585842, -0.02502981759607792, 0.0258518997579813, 0.027653487399220467, 0.04435752332210541, -0.018663043156266212, -0.07248327136039734, 0.03123917058110237, -0.024225223809480667, 0.014552625827491283, 0.045546919107437134, 0.04663136973977089, 0.008627503179013729, 0.010783285833895206, 0.005549062974750996, 0.05635644495487213, -0.01392294466495514, 0.05184372887015343, -0.01136049348860979, -0.05478224158287048, -0.0027963954489678144, -0.09669100493192673, -0.03249853104352951, -0.06755077093839645, 0.04040452465415001, -0.034947291016578674, -0.023315684869885445, 0.04036954417824745, 0.026639001443982124, 0.012270032428205013, 0.006703478284180164, 0.005247341003268957, 0.033582981675863266, 0.044287558645009995, 0.07521189004182816, -0.007871011272072792, 0.03391531482338905, -0.057790715247392654, -0.00991747435182333, -0.006882762536406517, -0.05292817950248718, -0.03715117648243904, 0.0041738227009773254, 0.0021590623073279858, -0.0005179016152396798, 0.006397383287549019, -0.02128671295940876, -0.0886450782418251, -0.009602634236216545, 0.03372291103005409, 0.0058201756328344345, -0.013520648702979088, -0.0527532696723938, 0.05411757901310921, 0.0003470897499937564, 0.02501232549548149, 0.01776224933564663, -0.01567205786705017, 0.024889888241887093, -0.019292723387479782, -0.04754091054201126, -0.08612635731697083, -0.03437008336186409, -0.0535578615963459, -0.04547695443034172, 0.02959500439465046, 0.02833564206957817, -0.013590613380074501, -0.0013304195599630475, 0.07465217262506485, -0.002112054731696844, 0.02158406376838684, 0.03325065225362778, 0.02688387781381607, 0.031081750988960266, -0.04411264881491661, 0.029874861240386963, 0.049045149236917496, 0.04691122844815254, 0.018208272755146027, 0.011771535500884056, -0.0535578615963459, -0.06870518624782562, -0.025397131219506264, -0.09011434018611908, 0.02044713869690895, 0.029874861240386963, -0.04736599698662758, -0.06468222290277481, 0.00856628455221653, -0.06104406714439392, -0.03158899396657944, 0.05915502458810806, -0.04131406545639038, -0.020622050389647484, -0.025082290172576904, -0.022038832306861877, -0.012698565609753132, 0.005763329565525055, -0.020534595474600792, -0.021881412714719772, 0.01776224933564663, -0.06674617528915405, 0.06373770534992218, -0.017587337642908096, 0.0656617283821106, -0.0048231808468699455, 0.036696404218673706, 0.08927476406097412, 0.010372243821620941, -0.07577160745859146, 0.029507547616958618, 0.05649637058377266, -0.0308543648570776, 0.0014736283337697387, 0.058910150080919266, 0.010844504460692406, 0.03704622760415077, 0.02534465678036213, -0.007665490731596947, 0.020009860396385193, 0.03624163568019867, 0.013573122210800648, -0.003043457865715027, 0.0294026006013155, 0.07472213357686996, -0.028493061661720276, -0.04579179733991623, -0.011334256269037724, 0.029944825917482376, 0.01058213785290718, 0.07020942121744156, -0.006292436271905899, -0.007442478556185961, -0.04673631861805916, 0.02896532230079174, 0.045721832662820816, -0.05324302241206169, -0.009217829443514347, -0.03424764424562454, 0.03011973761022091, -0.037850819528102875, 0.03248104080557823, -0.0050461930222809315, 0.018190782517194748, 0.018103327602148056, -0.03197379782795906, -0.020272227004170418, -0.011168090626597404, -0.05026952922344208, -0.0638076663017273, -0.018348202109336853, -0.03865541145205498, -0.03541955351829529, 0.02957751229405403, -0.008137751370668411, -0.03115171566605568, 0.03302326798439026, 0.06940483301877975, -0.025607025250792503, 0.028842885047197342, 0.0033014521468430758, 0.035349588841199875, -0.00835201796144247, -0.011211819015443325, 0.006362400949001312, 0.023962857201695442, -0.05520202964544296, 0.03165895864367485, -0.020499613136053085, -0.026394125074148178, -0.058000609278678894, -0.005177376326173544, -0.01973000168800354, 0.02990984357893467, -0.03447503224015236, 0.0050418199971318245, 0.05481722205877304, -0.043867770582437515, 0.06811048835515976, 0.013065879233181477, 0.009891238063573837, -0.013371974229812622, 0.0006045374320819974, -0.013013405725359917, 0.019555091857910156, -0.019047848880290985, 0.0015009582275524735, -0.029455075040459633, -0.012479926459491253, -0.012208813801407814, 0.027356138452887535, -0.07241331040859222, -0.051144085824489594, 0.03599676117300987, -0.0179459061473608, 0.002582129091024399, -0.005304187070578337, -0.002612738637253642, 0.005312932655215263, 0.010861995629966259, 0.036381565034389496, -0.07933979481458664, 0.006200607866048813, -0.008889870718121529, -0.0021601554471999407, -0.03470241650938988, 0.024645011872053146, 0.02583440952003002, -0.016249265521764755, -0.027461085468530655, -0.040019720792770386, 0.013057134114205837, 0.01745615527033806, 0.018837954849004745, 0.04299321398139, -0.0038393044378608465, -0.02957751229405403, 0.016144318506121635, 0.0005140754510648549, -0.029350128024816513, 0.011028162203729153, 0.028090765699744225, -0.01941516250371933, 0.012786021456122398, 0.015278507955372334, -0.012646092101931572, -0.06653628498315811, -0.007088283076882362, -0.06915995478630066, -0.09830018877983093, 0.005540317390114069, -0.012952187098562717, -0.033582981675863266, 0.043133143335580826, -0.020499613136053085, -0.02886037528514862, 0.013826743699610233, 0.0028270049951970577, 0.048625361174345016, 0.06895006448030472, 0.018715515732765198, 0.05464231222867966, 0.006978963501751423, -0.03409022465348244, 0.055411919951438904, 0.013573122210800648, -0.005868276581168175, 0.023630525916814804, 0.009331521578133106, 0.056531354784965515, -0.012584872543811798, -0.0342826284468174, 0.030469560995697975, -0.002251983853057027, -0.020814452320337296, -0.03914516419172287, 0.024225223809480667, 0.009742563590407372, -0.07933979481458664, -0.010844504460692406, 0.036591459065675735, 0.007914739660918713, 0.009488942101597786, 0.011605368927121162, -0.031099241226911545, -0.00045285647502169013, -0.016983894631266594, 0.06023947522044182, -0.06601154804229736, 0.01838318444788456, 0.053837720304727554, 0.03890028968453407, -0.00310249044559896, -0.024977343156933784, 0.006108779460191727, 0.038760360330343246, -0.003458872437477112, -0.007433732971549034, -0.0369412824511528, 0.008054668083786964, 0.006515448447316885, 0.011194327846169472, 0.035681918263435364, 0.036591459065675735, -0.057685770094394684, 0.0016977335326373577, 0.012401215732097626, -0.006003832910209894, 0.013581868261098862, 0.03365294635295868, 0.02399783954024315, -0.004499595146626234, 0.04120912030339241, 0.01920526847243309, 0.0220213420689106, 0.011649097315967083, -0.050409454852342606, 0.08738572150468826, -0.013170826248824596, 0.014150329865515232, -0.019257741048932076, -0.033268142491579056, -0.016975147649645805, 0.03830558806657791, -0.0039726742543280125, -0.003651274833828211, 0.05233348160982132, 0.005015583708882332, 0.02772345207631588, -0.014788756147027016, -0.002757040550932288, 0.001991803292185068, -0.01457886304706335, -0.06821543723344803, -0.024067804217338562, 0.015287254005670547, -0.04859037697315216, 0.029962318018078804, -0.03578686714172363, 0.024784941226243973, -0.006720969453454018, -0.0011675333371385932, -0.03683633357286453, -0.033687930554151535, 0.021846430376172066, -0.0467013344168663, 0.0031374727841466665, -0.01380050741136074, 0.005925122648477554, -0.011299274861812592, -0.025904374197125435, 0.029752423986792564, 0.002066140528768301, 0.04047448933124542, -0.012602363713085651, 0.027076279744505882, 0.024575047194957733, -0.0034960410557687283, -0.006515448447316885, -0.011666588485240936 ]
23,291
cronex
is_special_atom
Returns a boolean indicating whether or not the string can be parsed by parse_atom to produce a static set. In the process of examining the string, the syntax of any special character uses is also checked.
def is_special_atom(cron_atom, span): """ Returns a boolean indicating whether or not the string can be parsed by parse_atom to produce a static set. In the process of examining the string, the syntax of any special character uses is also checked. """ for special_char in ('%', '#', 'L', 'W'): if special_char not in cron_atom: continue if special_char == '#': if span != DAYS_OF_WEEK: raise ValueError("\"#\" invalid where used.") elif not VALIDATE_POUND.match(cron_atom): raise ValueError("\"#\" syntax incorrect.") elif special_char == "W": if span != DAYS_OF_MONTH: raise ValueError("\"W\" syntax incorrect.") elif not(VALIDATE_W.match(cron_atom) and int(cron_atom[:-1]) > 0): raise ValueError("Invalid use of \"W\".") elif special_char == "L": if span not in L_FIELDS: raise ValueError("\"L\" invalid where used.") elif span == DAYS_OF_MONTH: if cron_atom != "L": raise ValueError("\"L\" must be alone in days of month.") elif span == DAYS_OF_WEEK: if not VALIDATE_L_IN_DOW.match(cron_atom): raise ValueError("\"L\" syntax incorrect.") elif special_char == "%": if not(cron_atom[1:].isdigit() and int(cron_atom[1:]) > 1): raise ValueError("\"%\" syntax incorrect.") return True else: return False
(cron_atom, span)
[ 0.06356395781040192, 0.04471296817064285, 0.012591172009706497, 0.027829350903630257, -0.017098238691687584, -0.04660879820585251, 0.011357094161212444, -0.009000720456242561, -0.017751047387719154, -0.04943465813994408, 0.028455331921577454, 0.05211743339896202, 0.04628686234354973, -0.040742456912994385, -0.03805967792868614, 0.011053045280277729, 0.009747426956892014, 0.04857616871595383, -0.04034898057579994, -0.0010054828599095345, -0.06867911666631699, -0.03432167321443558, -0.04006281867623329, 0.021211830899119377, 0.058878034353256226, 0.053727101534605026, 0.0062329876236617565, -0.01608772575855255, -0.03738003969192505, -0.037523120641708374, 0.08513349294662476, -0.017777875065803528, -0.0012340778484940529, 0.009970991872251034, 0.039311639964580536, -0.05844879150390625, -0.0015940172597765923, 0.018654249608516693, -0.021229717880487442, 0.04210172966122627, 0.04399755969643593, 0.003936976660043001, 0.001678971922956407, 0.01686573214828968, 0.002662657294422388, -0.049971211701631546, 0.032246991991996765, 0.04761036857962608, -0.062097370624542236, -0.021497994661331177, 0.02083624340593815, -0.022660531103610992, 0.008101989515125751, -0.025468505918979645, -0.03621750324964523, -0.0030427174642682076, 0.03398185595870018, 0.13163498044013977, 0.012430205009877682, -0.02437750995159149, 0.02201666496694088, 0.07755017280578613, -0.04353254660964012, -0.010319752618670464, 0.025754669681191444, -0.01131238043308258, 0.039633575826883316, -0.05408480390906334, -0.003346765646710992, -0.013404947705566883, 0.0047172182239592075, -0.003729061456397176, -0.04464142769575119, -0.03348106890916824, 0.008812925778329372, -0.048218462616205215, -0.05297592282295227, -0.015372318215668201, -0.038453150540590286, 0.046501487493515015, 0.01658851094543934, 0.012984645552933216, 0.02055007964372635, 0.011115644127130508, 0.007976793684065342, -0.02393038012087345, 0.015014614909887314, 0.031191766262054443, -0.007212201599031687, 0.015095097944140434, 0.0075788479298353195, -0.026845665648579597, 0.024127116426825523, -0.027149714529514313, 0.0026090017054229975, 0.0025642886757850647, 0.03666463494300842, -0.009810024872422218, -0.04517798125743866, -0.052832841873168945, 0.021211830899119377, -0.003959333058446646, -0.0330875962972641, -0.04814692214131355, 0.010444949381053448, 0.015014614909887314, -0.02434173971414566, -0.03312336653470993, -0.06771332025527954, -0.036700405180454254, -0.07454545795917511, -0.02666681446135044, -0.057196829468011856, 0.0007573259063065052, 0.021515879780054092, 0.04088553786277771, 0.014612197875976562, 0.04660879820585251, -0.006452081259340048, -0.05751876160502434, 0.061775434762239456, 0.040492065250873566, -0.012644827365875244, 0.009166158735752106, 0.0888536125421524, 0.051402028650045395, 0.0035859800409525633, 0.02046065405011177, 0.009836852550506592, 0.059486132115125656, -0.0068231988698244095, 0.0564456507563591, -0.010462834499776363, -0.041922878473997116, -0.022410139441490173, 0.013369177468121052, -0.016883617267012596, -0.008973892778158188, -0.06796371191740036, -0.0628485456109047, 0.03913278877735138, 0.002354137832298875, -0.018833102658391, -0.03677194565534592, -0.08756587654352188, 0.03460783511400223, -0.08520503342151642, 0.046823419630527496, 0.023966150358319283, -0.02716759964823723, 0.04231635108590126, -0.014871533028781414, -0.04378293827176094, 0.002378729870542884, 0.01404881477355957, 0.028723610565066338, 0.01444228831678629, 0.0056427763774991035, 0.010105130262672901, 0.05991537496447563, 0.062097370624542236, 0.005843984894454479, -0.013923618011176586, 0.018403857946395874, 0.00041862516081891954, 0.08005409687757492, 0.03798813745379448, -0.04296021908521652, 0.011285552754998207, 0.03305182605981827, 0.0028213881887495518, 0.0747600793838501, 0.01235866453498602, 0.09479149430990219, 0.04138632118701935, 0.03267623484134674, -0.027060287073254585, 0.01633811742067337, -0.02940324693918228, 0.013798422180116177, 0.00686344038695097, 0.008956007659435272, -0.018287602812051773, -0.03112022578716278, -0.021426454186439514, -0.014826820231974125, -0.021641075611114502, -0.008316611871123314, 0.0014051049947738647, 0.06395743042230606, -0.0021026271861046553, -0.0034093637950718403, -0.013664282858371735, 0.036128077656030655, -0.046751879155635834, -0.03230064734816551, -0.031352732330560684, 0.00023138961114455014, -0.01813557930290699, -0.05497906357049942, -0.01724131964147091, 0.03895393759012222, -0.006729301530867815, -0.015998300164937973, 0.027149714529514313, -0.03205025568604469, -0.04081399738788605, -0.006385011598467827, -0.04038475081324577, -0.028276480734348297, -0.028580529615283012, -0.020854128524661064, 0.013700053095817566, 0.12991799414157867, -0.021265488117933273, 0.009407608769834042, 0.017455942928791046, 0.039025478065013885, -0.02348325029015541, 0.005334257148206234, 0.016964100301265717, 0.017947785556316376, 0.0672125294804573, 0.021551650017499924, 0.056266799569129944, 0.011464404873549938, 0.029760951176285744, 0.05694643408060074, -0.003574801841750741, 0.00028951646527275443, -0.028151284903287888, -0.04979236051440239, 0.03639635443687439, 0.008410508744418621, 0.02434173971414566, -0.02634488046169281, 0.0032931100577116013, 0.017536425963044167, 0.06635404378175735, 0.02446693554520607, -0.012135099619626999, -0.011267667636275291, -0.0416724868118763, -0.024520590901374817, 0.038989707827568054, -0.019637934863567352, -0.015104040503501892, 0.05866341292858124, -0.05605217441916466, -0.05666027218103409, -0.05937882140278816, 0.05061507970094681, 0.02067527547478676, -0.03019019588828087, -0.008589360862970352, 0.01488941814750433, -0.009362895041704178, 0.054585590958595276, 0.049041181802749634, -0.009783197194337845, 0.009380780160427094, 0.045678768306970596, 0.08012563735246658, 0.023626331239938736, -0.01874367520213127, 0.009099088609218597, 0.031674664467573166, 0.026112373918294907, 0.016695821657776833, -0.029224395751953125, -0.07518932968378067, -0.009658001363277435, -0.024735214188694954, -0.012367607094347477, -0.030565785244107246, 0.01666899397969246, 0.05347670987248421, -0.05075816065073013, -0.0006114498246461153, -0.010570145212113857, -0.015229236334562302, 0.04464142769575119, 0.046537257730960846, 0.010677456855773926, 0.02144433930516243, -0.015837332233786583, 0.021712617948651314, -0.01592675969004631, -0.025396965444087982, 0.025629473850131035, -0.07662013918161392, -0.07375851273536682, 0.06581749022006989, -0.0535840205848217, 0.015756849199533463, 0.053440939635038376, 0.0581626296043396, -0.054835982620716095, -0.020067179575562477, -0.033713579177856445, 0.007042292505502701, 0.02160530537366867, 0.013771593570709229, -0.010355522856116295, -0.08863898366689682, 0.027400106191635132, -0.002913049887865782, 0.02198089472949505, 0.021068749949336052, -0.05361979082226753, 0.039919737726449966, 0.018028268590569496, 0.021802043542265892, -0.0129667604342103, 0.0116790272295475, 0.04800384119153023, 0.008401566185057163, -0.041887108236551285, -0.005021266173571348, 0.022070320323109627, 0.026935091242194176, -0.0015560112660750747, 0.10130169987678528, -0.062347762286663055, 0.0001680928107816726, -0.0770493820309639, -0.0034048925153911114, -0.00693498132750392, -0.015756849199533463, 0.009693771600723267, 0.0005290103144943714, -0.06277700513601303, 0.028777265921235085, 0.005043622571974993, 0.0055265226401388645, -0.01947696879506111, -0.05272553116083145, -0.03956203535199165, 0.008504406549036503, -0.06692636758089066, 0.027829350903630257, 0.047968070954084396, 0.025754669681191444, 0.016758419573307037, 0.010283982381224632, -0.032658349722623825, 0.005025737453252077, 0.042423661798238754, 0.013896790333092213, -0.009818967431783676, 0.0019673705101013184, 0.016490142792463303, -0.020854128524661064, -0.0021819928660988808, 0.03476880490779877, -0.0062329876236617565, 0.029582099989056587, -0.062097370624542236, -0.01670476421713829, -0.026130259037017822, 0.07028878480195999, -0.0009803317952901125, 0.015130868181586266, -0.04660879820585251, -0.0615965835750103, -0.05211743339896202, 0.023679988458752632, 0.04975659027695656, 0.028079744428396225, -0.04070668667554855, -0.017008813098073006, 0.04124324023723602, 0.02205243520438671, -0.04986390098929405, 0.005906582809984684, -0.01589098945260048, 0.04571453854441643, -0.020496424287557602, -0.07490316033363342, -0.02274995855987072, 0.03909701853990555, 0.01944119855761528, -0.008956007659435272, 0.024985605850815773, -0.008414980955421925, -0.05304746329784393, 0.029868261888623238, 0.007024407386779785, -0.018797332420945168, 0.04038475081324577, 0.012814736925065517, -0.0014598784036934376, 0.05640988051891327, 0.039311639964580536, -0.05404903367161751, 0.041064389050006866, 0.02643430605530739, -0.024770984426140785, -0.03777351602911949, 0.022946694865822792, 0.028169170022010803, 0.004918426275253296, 0.01924446038901806, 0.020228145644068718, 0.05422788858413696, 0.013852077536284924, -0.019870443269610405, -0.026845665648579597, -0.05923574045300484, 0.0627412348985672, -0.03856046497821808, -0.07604781538248062, 0.03863200545310974, -0.05726836994290352, -0.07468853890895844, -0.01833231747150421, -0.01732180453836918, -0.0501500628888607, 0.0017974613001570106, -0.00723902927711606, -0.050507768988609314, -0.07597627490758896, 0.07014570385217667, 0.09078521281480789, 0.019226575270295143, 0.009108031168580055, 0.030565785244107246, -0.041922878473997116, -0.04324638098478317, 0.022696303203701973, -0.05175973102450371, 0.020371228456497192, -0.06685482710599899, -0.024985605850815773, 0.0411001592874527, -0.029957687482237816, -0.010149843990802765, 0.03292663022875786, 0.009219814091920853, 0.008803983218967915, -0.00007258870755322278, 0.06667597591876984, 0.050221603363752365, 0.01666899397969246, -0.005919997114688158, 0.010722169652581215, -0.0023675516713410616, 0.038703545928001404, 0.013091957196593285, -0.027149714529514313, -0.08484732359647751, 0.021390683948993683, -0.06510207802057266, -0.021819928660988808, 0.0449991300702095, -0.0016711471835151315, 0.04746728762984276, 0.02323285862803459, 0.007824769243597984, 0.034214362502098083, 0.013127727434039116, 0.0695018395781517, -0.04642994701862335, -0.001436404068954289, -0.020085064694285393, 0.0018790625035762787, -0.023268628865480423, -0.020925668999552727, 0.002097038086503744, 0.057161059230566025, -0.04685918986797333, 0.0449991300702095, 0.04893387109041214, 0.018850987777113914, -0.023411709815263748, -0.01649908535182476, -0.048504628241062164, 0.01059697289019823, -0.01110670156776905, 0.003458548104390502, -0.005942353513091803, -0.016731591895222664, -0.01266271248459816, 0.007976793684065342, 0.020317573100328445, -0.03410705178976059, 0.01947696879506111, -0.06753446906805038, -0.017670564353466034, -0.006295586004853249, -0.025593701750040054, 0.004355043172836304, 0.09886931627988815, 0.01601618528366089, 0.03888239711523056, 0.013583799824118614, 0.006036250852048397, 0.044140640646219254, 0.047073811292648315, -0.013118784874677658, 0.036253273487091064, 0.028902461752295494, -0.03534112870693207, -0.005209060851484537, 0.025110801681876183, -0.01956639438867569, 0.009836852550506592, -0.023715758696198463, -0.0015772499609738588, -0.044748738408088684, -0.030494244769215584, -0.049971211701631546, 0.04875501990318298, -0.0020232617389410734, -0.012859449721872807, -0.00583951361477375, 0.042423661798238754, -0.01781364716589451, -0.003959333058446646, 0.042459435760974884, -0.0009048786596395075, -0.018779447302222252, -0.029063429683446884, -0.05866341292858124, -0.0290813148021698, -0.021515879780054092, -0.01247491780668497, -0.017107181251049042, -0.032980285584926605, -0.07028878480195999, 0.051688190549612045, -0.0041068862192332745, 0.05937882140278816, -0.02761472947895527, 0.03645000979304314, 0.046751879155635834, -0.008307669311761856, -0.013360234908759594, -0.006590691395103931, 0.07136189937591553, -0.05043622851371765, -0.012698482722043991, 0.06796371191740036, -0.010534374974668026, 0.032980285584926605, 0.0262196846306324, 0.019781017675995827, -0.018922528252005577, -0.03190717473626137, 0.017098238691687584, 0.02328651398420334, 0.008428394794464111, 0.010248212143778801, 0.06574594974517822, 0.004343864973634481, -0.01976313255727291, 0.034285902976989746, 0.04725266247987747, 0.03258680924773216, 0.05100855231285095, -0.005177761428058147, 0.004359514452517033, 0.023590561002492905, -0.0021451045759022236, -0.08906823396682739, -0.030369047075510025, -0.027060287073254585, -0.022249173372983932, -0.04177979752421379, 0.04746728762984276, -0.03684348613023758, -0.0010563438991084695, 0.08670738339424133, 0.0028012674301862717, -0.012868392281234264, -0.02083624340593815, -0.02704240195453167, -0.01059697289019823, -0.04292444884777069, -0.01329763699322939, 0.010087245143949986, -0.015184523537755013, -0.06581749022006989, -0.060845404863357544, 0.04267405718564987, 0.038739316165447235, 0.03691502660512924, 0.05966498330235481, -0.02303612045943737, -0.0259335208684206, 0.02062162011861801, 0.030494244769215584, 0.05708951875567436, 0.005991537589579821, 0.020532194525003433, 0.008906823582947254, 0.04288867861032486, -0.02532542496919632, -0.009908393956720829, -0.0021551649551838636, -0.029027659446001053, 0.006362655200064182, -0.003635164350271225, -0.015864161774516106, 0.055157918483018875, 0.0055265226401388645, 0.030583670362830162, -0.00957751739770174, -0.02278572879731655, -0.06395743042230606, 0.02010294981300831, -0.033803004771471024, 0.02323285862803459, 0.018564824014902115, 0.03403551131486893, 0.004062172956764698, -0.02430596947669983, -0.010409179143607616, 0.026648929342627525, -0.051080092787742615, -0.002278125612065196, -0.01180422306060791, -0.009693771600723267, -0.014978843741118908, -0.016776304692029953, -0.027543187141418457, 0.009067789651453495, -0.013923618011176586, -0.03507285192608833, -0.0888536125421524, -0.01589098945260048, 0.02300035022199154, -0.02968941070139408, -0.03205025568604469, -0.027543187141418457, 0.02466367371380329, -0.021837813779711723, -0.04575030878186226, -0.013208210468292236, 0.020567964762449265, -0.036092307418584824, -0.013324464671313763, 0.016141381114721298, 0.016141381114721298, -0.01960216462612152, -0.0009915101109072566, -0.007484950590878725, -0.06309893727302551, 0.022356484085321426, 0.012877334840595722, 0.004873713478446007, 0.09593614190816879, 0.025307539850473404, 0.042173270136117935, -0.017786817625164986, 0.04642994701862335, -0.05923574045300484, -0.044534116983413696, 0.006134619005024433, -0.02205243520438671, 0.012626942247152328, -0.01886887289583683, -0.08076950162649155, -0.008441808633506298, -0.019387543201446533, -0.01838597282767296, -0.006577277556061745, -0.0016554975882172585, 0.026487961411476135, 0.01186682190746069, -0.03557363525032997, -0.02300035022199154, 0.05444251000881195, -0.014674795791506767, 0.016159266233444214, 0.02217763103544712, 0.017876245081424713, 0.00972059927880764, 0.022821499034762383, -0.0050078523345291615, -0.01480893511325121, -0.017259204760193825, 0.01145546231418848, 0.0034853757824748755, -0.004976553376764059, 0.048504628241062164, -0.05086547136306763, 0.008030449040234089, 0.043890248984098434, -0.033677808940410614, -0.025844095274806023, 0.024323854595422745, -0.04803961142897606, 0.03190717473626137, -0.013548029586672783, -0.005396855063736439, -0.031138110905885696, 0.08370267599821091, 0.021068749949336052, 0.0008031566976569593, -0.02017449028789997, -0.01784941740334034, 0.011652199551463127, 0.008307669311761856, 0.0032953456975519657, -0.041922878473997116, -0.0547286719083786, -0.004846885800361633, 0.02761472947895527, 0.047359976917505264, 0.014039872214198112, 0.03544843941926956, 0.0077621713280677795, -0.051938582211732864, 0.043890248984098434, -0.08456116169691086, 0.010453891940414906, 0.001825406914576888, 0.08928285539150238, -0.04428372159600258, 0.04549991711974144, -0.010909964330494404, 0.01608772575855255, 0.044140640646219254, 0.001864530728198588, -0.017169779166579247, -0.05980806425213814, -0.03296240046620369, 0.02128337323665619, -0.0462510921061039, -0.03330221772193909, 0.06928721815347672, -0.028455331921577454, 0.05494329333305359, 0.02634488046169281, -0.004337158054113388, -0.02491406537592411, 0.0023675516713410616, -0.03178197890520096, 0.021140290424227715, 0.005200118292123079, -0.00773087190464139, -0.04846885800361633, -0.052582450211048126, -0.0156853087246418, 0.02720336988568306, -0.022445909678936005, 0.028902461752295494, -0.007775585167109966, -0.0003781040431931615, -0.0019986697006970644, -0.04288867861032486, -0.06077386438846588, 0.03720118850469589, 0.011267667636275291, 0.026541616767644882, 0.0020199082791805267, 0.049685049802064896, -0.011884707026183605, 0.0336599238216877, -0.020406998693943024, 0.0319429449737072, -0.025701014325022697, 0.047359976917505264, -0.0006455434486269951, -0.056552961468696594, -0.026094486936926842, 0.012957817874848843 ]
23,292
cronex
map
null
def map(*args): return list(__builtins__['map'](*args))
(*args)
[ 0.024919958785176277, 0.0073903147131204605, 0.0033000644762068987, -0.0022208373993635178, -0.03849451616406441, 0.0513371080160141, -0.01284259557723999, 0.01731754094362259, 0.0771886557340622, 0.010846337303519249, -0.008151387795805931, 0.018215857446193695, 0.011553345248103142, 0.021626131609082222, 0.005173636134713888, -0.02493659406900406, -0.016094831749796867, 0.02764817699790001, -0.007174053229391575, 0.01242670789361, 0.006754007190465927, 0.037196945399045944, 0.09402376413345337, -0.015504272654652596, -0.009989609010517597, 0.03663133829832077, 0.03852778673171997, -0.03683096542954445, 0.030742378905415535, -0.021459776908159256, 0.016477448865771294, 0.0015938874566927552, -0.020178845152258873, -0.01315035205334425, 0.01931379921734333, -0.0045705996453762054, -0.01818258687853813, 0.04039096087217331, -0.029278455302119255, -0.0322229377925396, 0.06165111064910889, -0.057658594101667404, 0.007922650314867496, 0.024187996983528137, -0.019064266234636307, -0.03194013237953186, 0.001302766497246921, -0.05473075062036514, 0.022407999262213707, 0.0007615933427587152, 0.008983162231743336, -0.029361633583903313, 0.0933583453297615, 0.009049704298377037, 0.009399049915373325, 0.08963199704885483, -0.03152424469590187, 0.028463317081332207, 0.029594529420137405, 0.010155964642763138, 0.017816605046391487, 0.0019172397442162037, -0.017167821526527405, -0.05083804577589035, 0.0850406065583229, -0.007906015031039715, -0.01972968690097332, -0.019579967483878136, 0.010272412560880184, 0.013433154672384262, -0.036997321993112564, 0.0044416747987270355, -0.023539213463664055, -0.01868165098130703, 0.017999595031142235, 0.07259725779294968, 0.011470167897641659, 0.0513371080160141, 0.04328553378582001, -0.006828866899013519, -0.03456854075193405, 0.00754419295117259, -0.0411229208111763, 0.028995651751756668, -0.018498660996556282, -0.027199018746614456, -0.013067173771560192, 0.01111250463873148, -0.06042008474469185, 0.006363073363900185, -0.05622794106602669, 0.0235891193151474, -0.00912456400692463, 0.05772513523697853, -0.08890003710985184, 0.003676442429423332, 0.018215857446193695, 0.008342696353793144, -0.01868165098130703, 0.009906431660056114, 0.06338120251893997, 0.0045248521491885185, 0.0059762983582913876, -0.03540031239390373, 0.03749638423323631, 0.005115411709994078, -0.005610317457467318, -0.04548141732811928, -0.04039096087217331, 0.04887505620718002, -0.027265561744570732, 0.02516948990523815, 0.03566648066043854, -0.040124792605638504, -0.06085260584950447, 0.04967356100678444, -0.00668330630287528, -0.031890228390693665, -0.026450423523783684, 0.025635283440351486, -0.03287171944975853, 0.019546696916222572, 0.040457502007484436, -0.09681852906942368, 0.038760680705308914, 0.023955099284648895, 0.005102935247123241, 0.0247203316539526, -0.011761288158595562, 0.014173434115946293, 0.052867572754621506, 0.0022873792331665754, -0.02515285462141037, 0.057558782398700714, 0.009972973726689816, -0.05403205752372742, 0.021343328058719635, -0.05815766006708145, 0.017350811511278152, -0.030509481206536293, 0.0064088208600878716, -0.020494919270277023, 0.03693077713251114, 0.04771057516336441, -0.045048896223306656, -0.06005410477519035, 0.0592888705432415, 0.03037639707326889, 0.025518834590911865, 0.019646508619189262, 0.01743398979306221, 0.04142235964536667, -0.001971305115148425, 0.028030794113874435, -0.041289277374744415, 0.010322319343686104, 0.06813894957304001, -0.01765025034546852, 0.03466835245490074, -0.012093998491764069, -0.024603884667158127, 0.0269328523427248, -0.0764566957950592, -0.04771057516336441, 0.016726981848478317, -0.030958639457821846, -0.0039925165474414825, -0.017284270375967026, 0.051503464579582214, -0.0040548997931182384, 0.005888962186872959, -0.06747353076934814, 0.057758405804634094, 0.0070243338122963905, 0.09063012897968292, -0.011320448480546474, -0.05878980830311775, 0.036964051425457, -0.014838853850960732, 0.03912666440010071, -0.002682472113519907, 0.000986692262813449, -0.07472660392522812, -0.02234145812690258, -0.01508838590234518, 0.03599919006228447, -0.0005817221244797111, 0.008463303558528423, -0.040557313710451126, -0.022258279845118523, 0.04162198677659035, -0.009473909623920918, 0.02701602876186371, 0.025851545855402946, -0.04125600680708885, -0.015520907938480377, -0.09069667011499405, 0.0046537769958376884, -0.025102948769927025, 0.013815770857036114, -0.048276178538799286, 0.00808484572917223, -0.02285715751349926, 0.03653152659535408, 0.024071548134088516, 0.006071952171623707, 0.0029985462315380573, 0.014614274725317955, -0.008259519003331661, -0.05562906339764595, 0.0630817636847496, -0.03653152659535408, -0.004375132732093334, -0.015279693529009819, 0.005373261868953705, 0.03556666895747185, 0.03358704596757889, 0.011503438465297222, -0.017683520913124084, 0.01304222084581852, 0.015046796761453152, 0.031274713575839996, -0.024254538118839264, -0.0023456034250557423, 0.02453734166920185, -0.006828866899013519, -0.000770430953707546, 0.036897506564855576, -0.004853403195738792, 0.01246829703450203, 0.009365778416395187, -0.027199018746614456, -0.009082975797355175, -0.03806199133396149, 0.025302574038505554, -0.0449158139526844, 0.0551300011575222, -0.04248703271150589, 0.006666671019047499, 0.014015397056937218, -0.006641717627644539, 0.034302372485399246, 0.000526097253896296, 0.03144107013940811, -0.008941574022173882, 0.04108965024352074, -0.0452817939221859, 0.022923700511455536, 0.027165748178958893, 0.02744855172932148, 0.008600546047091484, 0.02076108567416668, 0.0016167613212019205, 0.034601811319589615, -0.007327931467443705, 0.03935955837368965, 0.05137038230895996, -0.0269328523427248, -0.034901250153779984, 0.01992931216955185, 0.03736330196261406, -0.01174465287476778, -0.013882312923669815, -0.033869847655296326, 0.0350676029920578, -0.017683520913124084, -0.014206704683601856, 0.030542751774191856, -0.005830737762153149, 0.03328760713338852, 0.04644627496600151, -0.015279693529009819, -0.021010618656873703, 0.02462051995098591, -0.028862567618489265, 0.024354351684451103, 0.05236851051449776, 0.02944481000304222, 0.0567602775990963, -0.00023250690719578415, 0.010355589911341667, 0.03180705010890961, -0.09735086560249329, -0.0328051783144474, -0.046379733830690384, -0.031690601259469986, 0.022407999262213707, 0.07186529785394669, -0.010422131977975368, -0.03786236420273781, 0.040024980902671814, 0.038361430168151855, -0.02172594517469406, -0.06680811196565628, 0.01054689846932888, -0.027731355279684067, -0.023206502199172974, -0.03945937380194664, 0.03079228475689888, -0.04029114544391632, -0.007731342222541571, -0.06690792739391327, 0.05503018572926521, 0.03935955837368965, 0.004558123182505369, -0.010721570812165737, 0.01216054055839777, 0.0011863181134685874, -0.03925974667072296, 0.009606992825865746, 0.010721570812165737, -0.014888759702444077, -0.05705971643328667, -0.028513222932815552, -0.030759014189243317, -0.005622794385999441, -0.03160742297768593, 0.06557708233594894, 0.008305266499519348, 0.005048870109021664, -0.028163878247141838, -0.0022145991679280996, 0.038793954998254776, 0.028363503515720367, 0.010031198151409626, 0.07632360607385635, 0.04062385857105255, -0.04262011498212814, 0.09701815247535706, -0.052601408213377, -0.021243516355752945, 0.024553976953029633, 0.01336661260575056, 0.013067173771560192, -0.036797694861888885, 0.01796632446348667, -0.01018091756850481, 0.007481809705495834, -0.04641300439834595, -0.012285306118428707, -0.04092329367995262, 0.020062396302819252, -0.02871284820139408, 0.018315669149160385, -0.03213975951075554, 0.04990645870566368, -0.03373676538467407, 0.024786874651908875, 0.018315669149160385, -0.023938464000821114, 0.06271578371524811, -0.016909971833229065, -0.01644417829811573, 0.017982959747314453, 0.006479521747678518, 0.04125600680708885, 0.0159284770488739, 0.012301942333579063, -0.03882722556591034, 0.021160338073968887, 0.09528806060552597, -0.06757334619760513, 0.008667088113725185, -0.04271992668509483, 0.030559387058019638, -0.02838013879954815, 0.02442089281976223, -0.00574340159073472, -0.001132252742536366, 0.017151186242699623, 0.021759215742349625, 0.05013935640454292, -0.01670202799141407, 0.03393639251589775, -0.03862759843468666, -0.010530262254178524, 0.023572484031319618, 0.00437929155305028, -0.09708469361066818, 0.050172626972198486, -0.05978793650865555, -0.04265338554978371, 0.03242256119847298, 0.015354553237557411, -0.006354755721986294, 0.026566870510578156, 0.015479319728910923, -0.001788314781151712, -0.03436891362071037, -0.006338119972497225, -0.010447084903717041, -0.030542751774191856, -0.01335829496383667, -0.008172182366251945, -0.03182368353009224, -0.021226879209280014, 0.011270541697740555, 0.010738206095993519, -0.0038698299322277308, -0.0563942976295948, -0.00048736773896962404, 0.011004374362528324, -0.00919110607355833, 0.014215022325515747, -0.012019138783216476, -0.029893968254327774, -0.008230406790971756, 0.017916418612003326, 0.026217525824904442, -0.006034522317349911, 0.002605532994493842, -0.0009856525575742126, -0.00028020396712236106, -0.0822458416223526, 0.008047415874898434, 0.008750265464186668, -0.014414648525416851, 0.021975476294755936, 0.012343530543148518, -0.06321484595537186, 0.0726638063788414, -0.07133296132087708, 0.009839889593422413, 0.013865677639842033, 0.04737786576151848, -0.055795419961214066, 0.028879202902317047, -0.01733417622745037, -0.019064266234636307, 0.06454568356275558, -0.03516741842031479, -0.07911837100982666, -0.026483694091439247, -0.04924103990197182, 0.031890228390693665, 0.011104186996817589, -0.017483895644545555, 0.03503433242440224, 0.07326267659664154, -0.017167821526527405, 0.010047833435237408, 0.06198382005095482, 0.032306112349033356, -0.04425039142370224, 0.057891491800546646, 0.017400719225406647, -0.06594306975603104, 0.003532961243763566, 0.06018718704581261, -0.007369520142674446, -0.028247054666280746, -0.021160338073968887, 0.037429843097925186, -0.0319068618118763, 0.11085887998342514, 0.028213784098625183, -0.0860387310385704, -0.04884178563952446, -0.02506967820227146, 0.038660869002342224, 0.04411730915307999, -0.03955918550491333, 0.049507204443216324, -0.026982758194208145, 0.0024121454916894436, 0.07539202272891998, -0.027831168845295906, 0.03526723012328148, -0.012459979392588139, -0.0015429413178935647, 0.04747767746448517, 0.01336661260575056, -0.007685594726353884, -0.06740698963403702, 0.030459575355052948, 0.04711169749498367, -0.04445001855492592, 0.009249330498278141, 0.01184446644037962, -0.035001061856746674, -0.031457703560590744, -0.021260151639580727, 0.050372250378131866, 0.017250999808311462, -0.044815998524427414, -0.02847995236515999, 0.06557708233594894, -0.03789563849568367, -0.011353719048202038, -0.02388855814933777, 0.008018304593861103, 0.02284052222967148, 0.03536704182624817, -0.024154726415872574, -0.003894783090800047, -0.01310044527053833, 0.012867548502981663, -0.055263083428144455, 0.008168024010956287, -0.011644840240478516, -0.002721981378272176, -0.0042378902435302734, -0.009099611081182957, 0.019696414470672607, 0.007606575731188059, 0.012509885244071484, 0.0388604961335659, -0.033786673098802567, -0.05446458235383034, 0.02026202157139778, -0.025219397619366646, -0.03275527060031891, -0.015379507094621658, 0.009606992825865746, 0.02066127397119999, 0.030742378905415535, -0.010996055789291859, -0.03213975951075554, -0.07352884858846664, 0.017550436779856682, 0.03520068898797035, -0.03401956707239151, -0.02620089054107666, -0.009997926652431488, 0.015412777662277222, -0.04089002311229706, 0.017933053895831108, -0.010355589911341667, 0.0006077151047065854, 0.0034019569866359234, -0.01367436908185482, -0.005909756291657686, -0.038128532469272614, -0.024870051071047783, -0.05336663872003555, 0.03305470943450928, 0.025502199307084084, -0.06075279414653778, 0.04737786576151848, 0.0797172486782074, 0.02766481228172779, 0.021110432222485542, 0.05692663416266441, 0.02107715979218483, 0.01315035205334425, -0.02004576101899147, -0.049740102142095566, -0.04867543280124664, 0.036165546625852585, -0.01184446644037962, -0.02275734394788742, -0.022923700511455536, -0.03358704596757889, 0.07838641107082367, -0.020079031586647034, -0.04268665611743927, 0.009989609010517597, -0.06388026475906372, -0.10573514550924301, 0.002803079318255186, 0.0134664261713624, 0.01644417829811573, -0.004749431274831295, -0.00009994288120651618, -0.067506805062294, 0.0427531972527504, 0.004936580546200275, 0.04924103990197182, -0.03267209604382515, -0.02828032523393631, 0.009881478734314442, -0.009939703159034252, 0.024354351684451103, -0.07625706493854523, -0.0008827204583212733, 0.010679981671273708, 0.029694342985749245, -0.058723267167806625, 0.004429198335856199, -0.04468291625380516, -0.039193205535411835, 0.03132462128996849, -0.028829297050833702, -0.007727183401584625, 0.06025373190641403, 0.00009422442963114008, -0.03174050897359848, 0.028430044651031494, 0.026982758194208145, -0.013873995281755924, 0.027631541714072227, 0.024870051071047783, 0.021775851026177406, 0.040756940841674805, -0.023505941033363342, -0.048176366835832596, -0.03194013237953186, 0.03017677180469036, -0.06584325432777405, 0.006816390436142683, 0.024803509935736656, 0.007149100303649902, 0.03683096542954445, -0.010871290229260921, 0.002322729676961899, -0.015146610327064991, 0.04621338099241257, -0.046612631529569626, -0.012967361137270927, 0.06404662132263184, -0.07559164613485336, -0.038561057299375534, 0.027714719995856285, -0.04125600680708885, 0.053799159824848175, -0.03766274079680443, -0.009116246365010738, 0.03320442885160446, 0.057658594101667404, 0.0012611778220161796, -0.03666461259126663, -0.02786443941295147, -0.013832406140863895, -0.03739657253026962, 0.06175092235207558, -0.0010454363655298948, -0.03693077713251114, -0.0038594326470047235, 0.049507204443216324, 0.02056146040558815, -0.02568519115447998, 0.015196516178548336, 0.07159913331270218, -0.023106690496206284, 0.017350811511278152, -0.007598258089274168, -0.013616145588457584, -0.04098983854055405, -0.05602831766009331, 0.02462051995098591, -0.037529654800891876, -0.013499696739017963, 0.02576836757361889, -0.034302372485399246, 0.05206907168030739, -0.036464985460042953, -0.011087551712989807, 0.048575617372989655, 0.0544978529214859, -0.0004374613054096699, 0.017683520913124084, 0.017400719225406647, -0.019762957468628883, 0.11937624961137772, 0.01879809983074665, 0.04252030327916145, 0.002524435054510832, -0.027581635862588882, 0.0010324398754164577, -0.017883148044347763, -0.008375966921448708, 0.020944077521562576, -0.04997299984097481, -0.034069474786520004, -0.08923275023698807, -0.05013935640454292, -0.0034913725685328245, 0.027631541714072227, 0.014048667624592781, 0.04584740102291107, 0.04458310082554817, -0.035965919494628906, 0.012884183786809444, -0.02495322935283184, 0.045348335057497025, 0.01806613802909851, 0.020694544538855553, 0.04771057516336441, -0.0010698697296902537, 0.012884183786809444, -0.05093785747885704, -0.032306112349033356, -0.01606987975537777, 0.015762122347950935, -0.01634436473250389, 0.017483895644545555, -0.01340820174664259, 0.051736362278461456, 0.017999595031142235, 0.04375132918357849, 0.07379501312971115, -0.020395105704665184, 0.05592850223183632, -0.0167436171323061, -0.03766274079680443, 0.10986074805259705, -0.002168851438909769, -0.06893745064735413, 0.04182161018252373, 0.0164025891572237, -0.007901855744421482, 0.01858183741569519, -0.032306112349033356, -0.015329600311815739, -0.009232694283127785, -0.03017677180469036, -0.021975476294755936, 0.0025140377692878246, 0.029677707701921463, 0.006005410570651293, 0.007444379851222038, 0.01199418492615223, 0.06900399923324585, 0.007065922487527132, 0.018116043880581856, -0.08397593349218369, 0.005909756291657686, 0.05226869508624077, 0.003609900362789631, 0.017201092094182968, 0.013740911148488522, -0.022291550412774086, 0.05952176824212074, -0.02618425525724888, -0.004098567645996809, 0.010106057859957218, -0.056327756494283676, -0.03413601592183113, -0.001971305115148425, 0.005044711288064718, -0.03716367483139038, -0.03025994822382927, -0.030825555324554443, -0.011819512583315372, -0.07119987905025482, -0.05356626585125923, -0.042320676147937775, -0.01796632446348667, -0.06158456951379776, -0.07778753340244293, -0.03350386768579483, -0.04478272795677185, 0.00887503195554018, 0.03194013237953186, 0.0034830549266189337, -0.030093593522906303, 0.023239774629473686, 0.003705554408952594, 0.007199006620794535, 0.02618425525724888, -0.0021459776908159256, 0.04458310082554817, -0.03706386312842369, -0.034169286489486694, -0.001810148824006319, 0.011245588771998882, -0.006612605880945921, -0.06557708233594894, -0.05646083876490593, -0.00441256258636713, -0.05972139537334442, 0.0850406065583229, -0.04321899265050888, 0.012459979392588139, 0.05855691060423851, -0.029278455302119255, 0.017483895644545555, 0.0044416747987270355 ]
23,293
cronex
parse_atom
Returns a set containing valid values for a given cron-style range of numbers. The 'minmax' arguments is a two element iterable containing the inclusive upper and lower limits of the expression. Examples: >>> parse_atom("1-5",(0,6)) set([1, 2, 3, 4, 5]) >>> parse_atom("*/6",(0,23)) set([0, 6, 12, 18]) >>> parse_atom("18-6/4",(0,23)) set([18, 22, 0, 4]) >>> parse_atom("*/9",(0,23)) set([0, 9, 18])
def parse_atom(parse, minmax): """ Returns a set containing valid values for a given cron-style range of numbers. The 'minmax' arguments is a two element iterable containing the inclusive upper and lower limits of the expression. Examples: >>> parse_atom("1-5",(0,6)) set([1, 2, 3, 4, 5]) >>> parse_atom("*/6",(0,23)) set([0, 6, 12, 18]) >>> parse_atom("18-6/4",(0,23)) set([18, 22, 0, 4]) >>> parse_atom("*/9",(0,23)) set([0, 9, 18]) """ parse = parse.strip() increment = 1 if parse == '*': return set(xrange(minmax[0], minmax[1] + 1)) elif parse.isdigit(): # A single number still needs to be returned as a set value = int(parse) if value >= minmax[0] and value <= minmax[1]: return set((value,)) else: raise ValueError("\"%s\" is not within valid range." % parse) elif '-' in parse or '/' in parse: divide = parse.split('/') subrange = divide[0] if len(divide) == 2: # Example: 1-3/5 or */7 increment should be 5 and 7 respectively increment = int(divide[1]) if '-' in subrange: # Example: a-b prefix, suffix = [int(n) for n in subrange.split('-')] if prefix < minmax[0] or suffix > minmax[1]: raise ValueError("\"%s\" is not within valid range." % parse) elif subrange.isdigit(): # Handle offset increments e.g. 5/15 to run at :05, :20, :35, and :50 return set(xrange(int(subrange), minmax[1] + 1, increment)) elif subrange == '*': # Include all values with the given range prefix, suffix = minmax else: raise ValueError("Unrecognized symbol \"%s\"" % subrange) if prefix < suffix: # Example: 7-10 return set(xrange(prefix, suffix + 1, increment)) else: # Example: 12-4/2; (12, 12 + n, ..., 12 + m*n) U (n_0, ..., 4) noskips = list(xrange(prefix, minmax[1] + 1)) noskips += list(xrange(minmax[0], suffix + 1)) return set(noskips[::increment]) else: raise ValueError("Atom \"%s\" not in a recognized format." % parse)
(parse, minmax)
[ 0.05025239288806915, 0.05574990063905716, -0.046341411769390106, -0.027007892727851868, -0.004033197183161974, 0.005059367977082729, -0.0033229487016797066, -0.013411706313490868, -0.018724733963608742, -0.06353496015071869, 0.002571192104369402, 0.05888606235384941, 0.00816324632614851, 0.012655338272452354, -0.03305884078145027, 0.0012256399495527148, 0.03540173918008804, 0.05571300536394119, -0.01558857224881649, 0.0308819767087698, 0.014334107749164104, -0.015597796067595482, -0.043426625430583954, 0.07607961446046829, 0.018909215927124023, 0.027450645342469215, 0.03750481456518173, -0.006858049426227808, -0.046673476696014404, -0.03377831354737282, 0.03981081396341324, 0.024591203778982162, 0.0035973628982901573, -0.01450936309993267, 0.01407583523541689, -0.058221932500600815, 0.036324139684438705, 0.09393729269504547, -0.03066059947013855, 0.07275897264480591, -0.005349924322217703, -0.07213173806667328, 0.04198767989873886, 0.007300801575183868, 0.018798526376485825, -0.006751973181962967, 0.05228167399764061, 0.011769833043217659, -0.0405118390917778, -0.046562787145376205, 0.033243320882320404, -0.023281393572688103, -0.009062587283551693, -0.01933351904153824, -0.08220435678958893, 0.06342427432537079, 0.027229269966483116, 0.09836481511592865, 0.046341411769390106, -0.023189153522253036, 0.0010918918997049332, 0.0684790313243866, -0.036158107221126556, -0.0683683454990387, -0.01922283135354519, -0.011981985531747341, -0.00784962996840477, -0.06977038830518723, -0.044570405036211014, 0.06884799152612686, -0.03855635225772858, 0.0032768286764621735, -0.00827854685485363, -0.036896027624607086, 0.09415866434574127, -0.01576382853090763, -0.010515368543565273, 0.030992664396762848, -0.0472269169986248, -0.005506732501089573, 0.04958826303482056, 0.052134089171886444, 0.05870158225297928, -0.016695452854037285, 0.009445383213460445, -0.01711975783109665, 0.02885269559919834, 0.03516191616654396, 0.005368372425436974, 0.028483735397458076, -0.006558269262313843, 0.017719317227602005, 0.015717707574367523, 0.024849476292729378, -0.020624879747629166, 0.038261182606220245, -0.030254743993282318, -0.02741375006735325, -0.04652589187026024, -0.061468783766031265, -0.0008290076511912048, 0.04409075528383255, -0.07305413484573364, -0.039294272661209106, -0.010054168291389942, -0.006281549111008644, -0.013706875033676624, -0.02440672367811203, -0.025679636746644974, 0.00833850260823965, -0.09659380465745926, 0.00040383858140558004, -0.04534522071480751, -0.010976568795740604, -0.0016799223376438022, 0.01968403160572052, -0.02047729678452015, 0.023133810609579086, 0.06139499321579933, -0.08559878915548325, -0.017940694466233253, 0.04682106152176857, 0.0014700761530548334, 0.07836716622114182, 0.05895985662937164, 0.02326294593513012, 0.043500419706106186, 0.035586219280958176, -0.005824960768222809, 0.013319466263055801, 0.02555049955844879, 0.0077804503962397575, -0.005612808279693127, 0.014131179079413414, -0.011197945103049278, -0.029959576204419136, -0.032450057566165924, 0.0035950569435954094, -0.036324139684438705, -0.04932999238371849, 0.06346116960048676, 0.024498963728547096, -0.012646114453673363, -0.032228682190179825, -0.11887900531291962, 0.0031638345681130886, 0.0023728758096694946, 0.0470055416226387, 0.005958708934485912, 0.018752407282590866, -0.02708168514072895, -0.014324882999062538, 0.0044713374227285385, 0.009094871580600739, 0.014500139281153679, 0.004600473679602146, 0.002633454045280814, -0.00833850260823965, 0.03195196017622948, -0.0001315862318733707, -0.014038939028978348, 0.04386937990784645, 0.01996075175702572, -0.00037876080023124814, -0.020329711958765984, 0.017442597076296806, -0.009002631530165672, -0.037467919290065765, -0.02342897839844227, 0.03562311455607414, 0.01940731145441532, 0.0412866584956646, -0.045308325439691544, 0.023060018196702003, 0.027007892727851868, -0.04527142643928528, 0.004512845538556576, 0.03278212249279022, -0.016972173005342484, 0.06999176740646362, 0.016621660441160202, -0.0137345464900136, -0.007333085872232914, -0.017765438184142113, -0.0028848082292824984, -0.027672022581100464, -0.008596775121986866, -0.015607020817697048, -0.013863682746887207, 0.02735840529203415, -0.012028105556964874, -0.03981081396341324, -0.03283746540546417, 0.058517102152109146, -0.02560584433376789, -0.0376523993909359, -0.04589866101741791, 0.03316953033208847, -0.028428390622138977, -0.014490915462374687, -0.016234252601861954, 0.0467841662466526, 0.025845669209957123, 0.00020566653984133154, 0.07947404682636261, -0.04932999238371849, -0.020403504371643066, -0.055270250886678696, -0.023576563224196434, 0.024369826540350914, -0.029166311025619507, -0.03595517948269844, -0.01012795977294445, 0.04589866101741791, -0.025126196444034576, -0.022340545430779457, 0.10729365050792694, 0.01927817612886429, 0.018420342355966568, -0.026436004787683487, 0.0745299756526947, 0.004173863213509321, 0.07733407616615295, 0.028243910521268845, 0.04988343268632889, 0.0013928251573815942, 0.01032166462391615, 0.011188721284270287, 0.0027971803210675716, 0.041434239596128464, 0.04283628985285759, -0.04962515830993652, 0.03213644027709961, -0.009316246956586838, -0.014500139281153679, 0.007572909817099571, 0.03925737366080284, 0.005967932753264904, 0.03195196017622948, 0.010690624825656414, -0.053056489676237106, 0.0022275978699326515, 0.011815953068435192, -0.024148451164364815, -0.028649765998125076, 0.0015796112129464746, -0.017258116975426674, 0.026362212374806404, -0.05534404516220093, -0.024443618953227997, -0.01770086959004402, 0.008047946728765965, 0.01609589345753193, -0.0017479493981227279, 0.029609063640236855, 0.044349025934934616, -0.0821305587887764, 0.030586808919906616, 0.06604389101266861, 0.006429133005440235, 0.03292970731854439, -0.054643020033836365, 0.07940025627613068, 0.0200345441699028, 0.005857244599610567, -0.03256074711680412, -0.00295168231241405, 0.0238901786506176, -0.03781843185424805, 0.037467919290065765, -0.04848138242959976, -0.011852849274873734, -0.028649765998125076, 0.007858853787183762, -0.033021945506334305, 0.07069279253482819, 0.034276410937309265, -0.08294227719306946, -0.03071594424545765, -0.03246850520372391, -0.053609929978847504, 0.018650943413376808, 0.027745813131332397, -0.005695824511349201, 0.027284612879157066, -0.014011267572641373, 0.024609651416540146, -0.019425759091973305, -0.030679048970341682, 0.003537406912073493, -0.014573931694030762, -0.059587087482213974, -0.025181539356708527, -0.056118860840797424, 0.0751941055059433, 0.05763159692287445, 0.041434239596128464, -0.05711505189538002, -0.0035143468994647264, -0.018125174567103386, 0.03259764239192009, -0.05825883150100708, 0.01138242520391941, 0.01509969960898161, -0.019075246527791023, -0.008725911378860474, 0.00339904660359025, 0.011428545229136944, 0.03772618994116783, -0.038999103009700775, 0.03195196017622948, 0.026085492223501205, -0.027505990117788315, -0.061247408390045166, 0.026952549815177917, 0.04796483740210533, 0.00225411681458354, -0.015957532450556755, -0.005096264183521271, 0.02997802384197712, -0.014232642948627472, -0.019702479243278503, 0.05239235982298851, -0.0054191043600440025, -0.022432785481214523, -0.016298821195960045, -0.07748166471719742, 0.030125608667731285, -0.023355185985565186, 0.013974371366202831, -0.03259764239192009, 0.013522394932806492, 0.008255486376583576, 0.04294697940349579, 0.07087726891040802, -0.008218590170145035, 0.004706549923866987, -0.012950506061315536, 0.0019497245084494352, -0.03008871152997017, 0.0616532638669014, 0.05619265139102936, 0.017055189236998558, -0.01639106124639511, 0.018115950748324394, -0.004558965563774109, 0.017451822757720947, -0.0017675503622740507, -0.017368806526064873, 0.0015588572714477777, -0.012203361839056015, 0.030236296355724335, -0.020458849146962166, -0.044681090861558914, 0.03955254331231117, 0.015108924359083176, 0.0273030623793602, -0.08810772001743317, -0.00853681843727827, -0.03161989524960518, 0.07128313183784485, -0.03283746540546417, 0.040696319192647934, -0.04331593960523605, -0.06028811261057854, -0.04527142643928528, -0.030789736658334732, 0.03521725907921791, 0.06995487213134766, -0.03329866752028465, -0.0006912240642122924, 0.025734979659318924, 0.010662952437996864, -0.06530597060918808, -0.021362800151109695, 0.07080347836017609, 0.010561488568782806, 0.0059033646248281, -0.10758882015943527, -0.00865211896598339, 0.04552970081567764, 0.013236450962722301, 0.0017710094107314944, 0.012166465632617474, -0.021990032866597176, -0.04626762121915817, 0.046894852072000504, -0.02946147881448269, 0.0016949113924056292, 0.10419438779354095, 0.03859324753284454, -0.011991209350526333, 0.056118860840797424, 0.008467638865113258, -0.02787495031952858, -0.003841798985376954, 0.06855282187461853, -0.021971585229039192, 0.010828984901309013, 0.0010059933410957456, 0.03014405630528927, 0.01109648123383522, 0.06298152357339859, 0.04272560030221939, 0.06312910467386246, -0.05051066353917122, 0.041212864220142365, -0.05711505189538002, -0.038371872156858444, 0.028631318360567093, -0.0202559195458889, -0.07334930449724197, 0.05870158225297928, -0.0032952765468508005, -0.027948742732405663, -0.046341411769390106, -0.022082272917032242, -0.02798563800752163, 0.004658123478293419, -0.025347571820020676, 0.006696629337966442, -0.08899322152137756, -0.005534404423087835, 0.05246615409851074, 0.011271736584603786, -0.03601052612066269, 0.040696319192647934, -0.04737450182437897, -0.09585588425397873, 0.04955136775970459, 0.015385644510388374, 0.009611415676772594, -0.03661930933594704, -0.06047259271144867, 0.02713702991604805, -0.004047033376991749, -0.016234252601861954, 0.021694865077733994, 0.04652589187026024, -0.004134661052376032, 0.020440399646759033, 0.03482985123991966, 0.06427288055419922, -0.007047141436487436, 0.028649765998125076, -0.03241316229104996, -0.03008871152997017, 0.02855752594769001, -0.014620051719248295, -0.022008482366800308, -0.09039527177810669, -0.043426625430583954, -0.03320642560720444, -0.02759823016822338, 0.04682106152176857, -0.012729129754006863, 0.010515368543565273, 0.07227931916713715, -0.012876714579761028, 0.05062135308980942, 0.0467841662466526, 0.04589866101741791, -0.019979199394583702, 0.013384034857153893, -0.0667080208659172, 0.04840759187936783, -0.012489305809140205, 0.009131766855716705, -0.02202693000435829, -0.012415513396263123, -0.022949330508708954, -0.01404816284775734, -0.011419321410357952, 0.014795308001339436, -0.047706566751003265, -0.013540842570364475, -0.0014977481914684176, 0.019720926880836487, -0.014435571618378162, -0.02833615057170391, 0.016695452854037285, -0.007291577756404877, 0.015791499987244606, 0.034331753849983215, -0.0024328320287168026, -0.0005612231907434762, 0.061358097940683365, -0.08530361950397491, -0.07991679757833481, -0.014186522923409939, -0.005663540679961443, -0.05940260738134384, 0.030845079571008682, -0.007429937832057476, 0.013577738776803017, -0.0269156526774168, 0.02883424609899521, 0.01707363687455654, 0.04054873436689377, -0.024849476292729378, 0.013614634983241558, 0.003717274870723486, -0.04368489980697632, 0.013218002393841743, 0.06047259271144867, 0.08965735137462616, -0.008398458361625671, -0.012950506061315536, -0.041212864220142365, -0.05386820435523987, -0.04715312644839287, -0.0604356974363327, 0.013614634983241558, 0.02662048488855362, -0.024037763476371765, -0.00012877579138148576, 0.04630451649427414, -0.02997802384197712, -0.02959061600267887, 0.029627511277794838, -0.023871731013059616, -0.017544062808156013, -0.03516191616654396, -0.007586746010929346, -0.04158182442188263, -0.03208109736442566, -0.03298505023121834, -0.03466381877660751, -0.020440399646759033, -0.05582369118928909, 0.05290890485048294, 0.006678181234747171, 0.02355811558663845, -0.006133964750915766, 0.022266753017902374, 0.05408957973122597, 0.009140991605818272, -0.03625034913420677, 0.048555172979831696, 0.06191153824329376, -0.023410530760884285, 0.037633948028087616, 0.04279939457774162, 0.021768657490611076, 0.02224830538034439, -0.0017813864396885037, -0.009247067384421825, 0.027690470218658447, 0.030586808919906616, 0.00841690693050623, 0.016741573810577393, 0.01922283135354519, 0.043943170458078384, 0.05172823369503021, -0.013752995058894157, -0.08050713688135147, 0.028133222833275795, 0.018069829791784286, 0.03829807788133621, 0.029092518612742424, -0.022967778146266937, 0.018521806225180626, -0.02132590487599373, 0.024720339104533195, -0.081245057284832, 0.006715077441185713, -0.03377831354737282, -0.040991488844156265, -0.01809750311076641, 0.04283628985285759, -0.013384034857153893, 0.003982465248554945, 0.02503395639359951, -0.012000433169305325, -0.00955607183277607, 0.015717707574367523, -0.045603491365909576, -0.06744594126939774, -0.04589866101741791, 0.027026342228055, 0.0056773764081299305, 0.023705698549747467, 0.016022101044654846, -0.06807317584753036, 0.019388863816857338, 0.09349454194307327, -0.0017433373723179102, 0.02617773227393627, -0.016861485317349434, 0.009878912009298801, 0.029738198965787888, -0.0026795740704983473, 0.024886371567845345, 0.007434549741446972, -0.04124975949525833, -0.013762218877673149, 0.030623704195022583, -0.04279939457774162, -0.030586808919906616, -0.0205879844725132, -0.04386937990784645, 0.03420262038707733, -0.032173339277505875, 0.017488718032836914, 0.057262636721134186, -0.019942304119467735, 0.026841862127184868, -0.03859324753284454, -0.039220478385686874, -0.03372297063469887, -0.004819544032216072, -0.03634258732199669, 0.008993406780064106, 0.02896338328719139, -0.003479756647720933, 0.016003653407096863, 0.005133159924298525, 0.024314483627676964, -0.024037763476371765, -0.05770539119839668, 0.012849042192101479, -0.0001395131112076342, -0.010413904674351215, -0.01929662376642227, -0.0005145266768522561, 0.0003346585144754499, -0.00847686268389225, 0.020495744422078133, 0.010257096029818058, -0.04327904060482979, 0.023355185985565186, 0.0018367305165156722, 0.004623533692210913, -0.03329866752028465, -0.02263571321964264, 0.005797288380563259, 0.020975392311811447, -0.03625034913420677, -0.05670919641852379, 0.010257096029818058, -0.014103507623076439, -0.017608629539608955, 0.01464772317558527, -0.02555049955844879, 0.010026495903730392, 0.0071393814869225025, -0.0009535317658446729, 0.008130962029099464, 0.03128783404827118, 0.028409942984580994, 0.013347138650715351, 0.03320642560720444, 0.024664996191859245, 0.011410096660256386, -0.025107748806476593, 0.021141424775123596, -0.027063237503170967, -0.03885151818394661, 0.002811016282066703, -0.01718432642519474, -0.003558160737156868, 0.007605194114148617, -0.011797505430877209, 0.013134986162185669, -0.043832484632730484, 0.004284551367163658, -0.021012289449572563, 0.038888413459062576, 0.010395456105470657, 0.06707698106765747, 0.027210822328925133, -0.0375417098402977, 0.02503395639359951, 0.003791067050769925, -0.017055189236998558, -0.017894573509693146, -0.007074813824146986, 0.019886959344148636, -0.04331593960523605, -0.02139969728887081, -0.024148451164364815, -0.020606432110071182, -0.0011472358601167798, -0.011142601259052753, -0.0035996688529849052, 0.012719905935227871, -0.024701891466975212, -0.005017859861254692, 0.01996075175702572, 0.019185936078429222, 0.0203666090965271, -0.008864271454513073, -0.038039807230234146, 0.00621698098257184, -0.05324096977710724, 0.0745299756526947, -0.09017389267683029, 0.06733525544404984, 0.057262636721134186, 0.002619618084281683, 0.01711975783109665, -0.014020491391420364, 0.0006110905087552965, 0.05571300536394119, -0.02912941575050354, -0.05545473098754883, -0.05626644566655159, 0.03650861978530884, 0.0042753275483846664, 0.03455313295125961, 0.024554306641221046, 0.045935556292533875, -0.039294272661209106, -0.026602037250995636, 0.06523218005895615, -0.059771567583084106, 0.002221832750365138, 0.030236296355724335, 0.04187699407339096, 0.00021229629055596888, 0.02184244990348816, -0.03270832821726799, 0.022488130256533623, -0.008241650648415089, -0.00009750064054969698, 0.0405118390917778, -0.0018505664775148034, 0.014334107749164104, 0.012203361839056015, -0.031767480075359344, -0.05597127601504326, 0.08500844985246658, -0.013900578953325748, 0.02901872619986534, 0.044459715485572815, -0.02890803851187229, 0.0037080510519444942, -0.007429937832057476, 0.012138793244957924, 0.0066735693253576756, 0.004309917334467173, -0.058849167078733444, -0.05626644566655159, -0.037689294666051865, -0.04113907366991043, -0.014998235739767551, 0.0074068778194487095, 0.058111246675252914, -0.061358097940683365, 0.03377831354737282, -0.039737023413181305, -0.03475606068968773, 0.01730423793196678, 0.03981081396341324, 0.009445383213460445, -0.029682856053113937, -0.0028502182103693485, 0.021141424775123596, 0.008329278789460659, 0.009039526805281639, -0.00644296919927001, 0.03625034913420677, -0.016584765166044235, -0.0076236422173678875, 0.015210388228297234, 0.0071993377059698105, -0.006244652904570103, -0.00008950169285526499 ]
23,296
cronex
zip
null
def zip(*args): return list(__builtins__['zip'](*args))
(*args)
[ -0.04118238762021065, 0.04174835607409477, -0.0020838805940002203, -0.057795170694589615, -0.03201040253043175, -0.010328889824450016, -0.019575783982872963, 0.043046750128269196, 0.05722920596599579, 0.04697522148489952, 0.010620195418596268, -0.032626304775476456, 0.008755835704505444, -0.00041823263745754957, -0.029746536165475845, -0.030279209837317467, -0.02134026773273945, 0.00246361899189651, -0.021739773452281952, 0.06521932035684586, 0.018776772543787956, 0.013699719682335854, 0.0003758371458388865, -0.004515247885137796, 0.030778592452406883, 0.058028217405080795, 0.030245916917920113, -0.042214445769786835, -0.021423498168587685, 0.022455554455518723, 0.021673189476132393, -0.016795888543128967, -0.02505234256386757, -0.021789710968732834, 0.01165225263684988, 0.034790296107530594, 0.003512321738526225, 0.026234213262796402, -0.012426294386386871, -0.007407503202557564, 0.07011326402425766, -0.08329695463180542, 0.027282916009426117, -0.0020641132723540068, 0.0057553802616894245, -0.0299629345536232, -0.017578255385160446, -0.09008855372667313, 0.0098295072093606, -0.00771545572206378, 0.07011326402425766, -0.03375823795795441, 0.10766681283712387, -0.018843356519937515, 0.004956368822604418, 0.07983457297086716, 0.00037297612288966775, 0.04321321099996567, -0.013025553897023201, -0.008730866014957428, -0.027998697012662888, -0.016820859163999557, 0.021490082144737244, -0.020391441881656647, -0.009696338325738907, 0.028548019006848335, -0.034057870507240295, -0.06685063242912292, -0.023887116461992264, 0.005830287467688322, 0.0017207879573106766, 0.03755354508757591, -0.07690486311912537, -0.006092463154345751, 0.03199375420808792, 0.05819467827677727, 0.011402561329305172, 0.041315559297800064, -0.013067169114947319, -0.032975874841213226, -0.07763729244470596, -0.02924715355038643, -0.08815760910511017, 0.058094799518585205, 0.057195913046598434, 0.004178164526820183, -0.0084686903283, 0.0472082681953907, -0.034956756979227066, -0.00209740549325943, -0.04667559266090393, 0.011044670827686787, -0.039517782628536224, 0.00015618700126651675, -0.014182455837726593, 0.007116197142750025, 0.012509524822235107, -0.03462383523583412, -0.017278624698519707, 0.017711423337459564, 0.011452499777078629, -0.02210598811507225, 0.0029317899607121944, -0.02367071807384491, 0.01569724828004837, -0.007877754978835583, -0.0063546388410031796, -0.05243513360619545, -0.05506521463394165, -0.010628518648445606, 0.008360491134226322, 0.013458351604640484, 0.06754977256059647, -0.04927238076925278, -0.024419791996479034, 0.00654606893658638, -0.001946550328284502, 0.05423291027545929, -0.026317443698644638, 0.001979842549189925, 0.030362440273165703, 0.008235645480453968, 0.02708316408097744, -0.03290928900241852, -0.007353403605520725, 0.03290928900241852, 0.030695362016558647, 0.024486375972628593, -0.046941932290792465, 0.05819467827677727, 0.03339202702045441, 0.01792782172560692, -0.08043383061885834, 0.015097989700734615, 0.00656271493062377, -0.016371414065361023, 0.057795170694589615, -0.0697137638926506, 0.02749931626021862, -0.030778592452406883, -0.006208986043930054, -0.014831652864813805, 0.025967877358198166, 0.06794928014278412, -0.06548565626144409, 0.006163209211081266, 0.053899988532066345, -0.0014939851826056838, 0.015389296226203442, 0.03302581235766411, 0.0588272288441658, 0.0366879478096962, -0.03392469882965088, -0.00896391086280346, -0.017961114645004272, -0.02918056957423687, -0.012809154577553272, 0.03342531621456146, 0.02606775239109993, -0.010470381006598473, -0.043945636600255966, 0.0366879478096962, -0.04750789701938629, 0.040117040276527405, 0.018310682848095894, -0.020091813057661057, -0.012742570601403713, -0.020541256293654442, 0.013891149312257767, 0.024586252868175507, 0.034723710268735886, -0.024652836844325066, 0.024536313489079475, -0.052168797701597214, -0.007956823334097862, -0.07171128690242767, -0.027649130672216415, 0.05123661831021309, 0.019991936162114143, 0.007415826432406902, -0.029879704117774963, -0.020990699529647827, -0.06588516384363174, -0.011427530087530613, 0.021490082144737244, 0.019126340746879578, 0.00395344290882349, -0.029097339138388634, 0.027815591543912888, -0.043346378952264786, 0.015081344172358513, -0.010836594738066196, -0.012093373574316502, 0.04181493818759918, -0.062289610505104065, -0.016837503761053085, -0.0602920837700367, -0.010853240266442299, 0.0070704203099012375, -0.008714220486581326, -0.03535626456141472, -0.0005095259402878582, 0.009330124594271183, 0.011901943013072014, 0.05586422607302666, -0.002661291277036071, -0.01380791887640953, -0.036454904824495316, -0.010586903430521488, -0.01477339118719101, 0.11951881647109985, -0.022072695195674896, 0.0017624031752347946, -0.03305910527706146, -0.005434943363070488, 0.05196904391050339, -0.009746276773512363, 0.032326675951480865, 0.07157812267541885, 0.0004086091066710651, 0.02420339174568653, -0.03512321785092354, -0.02313804440200329, 0.020807594060897827, 0.008855711668729782, 0.006296377629041672, 0.018860002979636192, 0.014315624721348286, -0.022205863147974014, -0.00444866344332695, -0.02606775239109993, -0.0674498975276947, 0.0002775212633423507, -0.036155276000499725, 0.009463293477892876, -0.0294136144220829, 0.015073020942509174, -0.030362440273165703, -0.014873268082737923, 0.025967877358198166, 0.008243968710303307, 0.004167761188000441, 0.04923908784985542, 0.004494440276175737, 0.0498383492231369, 0.0037349630147218704, 0.016188308596611023, 0.017062226310372353, 0.0267835333943367, 0.024286622181534767, -0.015264450572431087, 0.028331618756055832, 0.003420768305659294, 0.032859351485967636, 0.0015262369997799397, -0.0030857662204653025, 0.08669275790452957, -0.04571012035012245, 0.013400089927017689, -0.00962143111974001, 0.04877299815416336, -0.08103308826684952, 0.016080107539892197, -0.01791117712855339, 0.029047399759292603, -0.00934677105396986, -0.012834123335778713, -0.0014013914624229074, 0.0025385264307260513, 0.04923908784985542, 0.04301345720887184, -0.03330879658460617, -0.02312139794230461, 0.06392093002796173, -0.004040834493935108, 0.05746224895119667, 0.029380321502685547, 0.020158397033810616, -0.03545613959431648, -0.028964169323444366, 0.04517744854092598, 0.027299562469124794, -0.054965339601039886, -0.0453106164932251, -0.05852760002017021, -0.022555431351065636, 0.021839650347828865, 0.0084686903283, -0.018410557880997658, -0.02888093888759613, 0.06129084900021553, 0.06385434418916702, 0.0013545743422582746, -0.08063358813524246, 0.049405548721551895, -0.022272447124123573, 0.0031565118115395308, -0.026150982826948166, 0.05902698263525963, -0.008156576193869114, 0.0031148968264460564, -0.055930811911821365, 0.05140307918190956, 0.0045568631030619144, 0.0033396186772733927, 0.004715000744909048, 0.014274009503424168, 0.02876441739499569, -0.08223161101341248, 0.0005649261875078082, 0.00952155515551567, -0.01935938559472561, -0.05163612216711044, -0.05672982335090637, -0.04218115285038948, -0.006708368193358183, 0.0015356004005298018, 0.03492346405982971, -0.02240561693906784, -0.008797450922429562, -0.023753948509693146, -0.00728265754878521, 0.0046192859299480915, 0.00887235812842846, -0.008310552686452866, 0.11059652268886566, -0.044245265424251556, -0.04590987414121628, 0.11439182609319687, 0.01657116785645485, -0.03489017114043236, 0.03948448970913887, 0.0445781871676445, 0.05859418213367462, 0.005801157094538212, 0.04677547141909599, 0.04111580550670624, 0.02180635742843151, 0.02570153959095478, -0.0029609205666929483, -0.04098263755440712, -0.013341829180717468, -0.05313427001237869, 0.004744131118059158, -0.040416669100522995, 0.029014108702540398, -0.02223915606737137, 0.03404122218489647, 0.01947590708732605, 0.034956756979227066, 0.011535730212926865, 0.0013327263295650482, -0.05260159447789192, 0.05346719175577164, 0.009188633412122726, 0.028980815783143044, -0.0256516020745039, 0.009546523913741112, 0.008410429581999779, 0.0068248906172811985, 0.01305884588509798, -0.028081927448511124, 0.02157331258058548, 0.058327846229076385, 0.030578838661313057, -0.06398750841617584, 0.02431991510093212, 0.0415818952023983, -0.029496844857931137, 0.0037890628445893526, 0.0022846737410873175, 0.024536313489079475, 0.009396709501743317, 0.028714478015899658, -0.07364223152399063, -0.014057610183954239, -0.004055399913340807, -0.006017555948346853, -0.07097886502742767, 0.000570128031540662, -0.07011326402425766, -0.03355848789215088, 0.04887287691235542, 0.015181220136582851, 0.0064919693395495415, 0.023986993357539177, -0.01033721212297678, -0.0025738992262631655, 0.008955588564276695, 0.03692099452018738, -0.005518173798918724, -0.047674357891082764, -0.025618309155106544, 0.010695102624595165, -0.020757654681801796, -0.027366146445274353, 0.018893294036388397, 0.01904311031103134, -0.03692099452018738, -0.021823003888130188, 0.034956756979227066, 0.01624656841158867, -0.006587684154510498, 0.0015678522177040577, 0.01641302928328514, -0.011519083753228188, -0.006208986043930054, -0.05672982335090637, 0.026583781465888023, -0.0284647885710001, -0.03665465489029884, -0.01567227952182293, 0.01657116785645485, -0.0677495226264, 0.027282916009426117, 0.03134455904364586, -0.02876441739499569, 0.04497769474983215, 0.018310682848095894, -0.036454904824495316, 0.07810338586568832, -0.04907262697815895, 0.013666427694261074, 0.008680927567183971, 0.017761360853910446, -0.025934584438800812, 0.026949994266033173, 0.0022909159306436777, -0.020291564986109734, 0.0005199297447688878, 0.013133753091096878, -0.0181608684360981, 0.00560140423476696, -0.023404380306601524, 0.04427855834364891, 0.04204798489809036, -0.004902269225567579, 0.011693867854773998, 0.06688392907381058, 0.0047066775150597095, -0.0021868781186640263, 0.03791975975036621, -0.01027895137667656, -0.030112748965620995, -0.0320436954498291, 0.03395799174904823, -0.03372494876384735, -0.04248078167438507, 0.025901291519403458, 0.014215747825801373, 0.023237919434905052, 0.0065127769485116005, 0.03389140963554382, -0.03692099452018738, 0.04015033319592476, -0.0008031731122173369, -0.03788646683096886, -0.030761945992708206, -0.06824890524148941, -0.03935132175683975, 0.0928850993514061, -0.05243513360619545, 0.0558309331536293, -0.026999933645129204, 0.0027549252845346928, 0.012243187986314297, -0.03019597940146923, -0.008264776319265366, -0.01102802436798811, -0.003995058126747608, 0.047008514404296875, -0.01378295011818409, -0.03137785196304321, -0.03925144299864769, 0.03795304894447327, 0.05999245494604111, -0.026234213262796402, -0.014548669569194317, 0.012942323461174965, -0.03612198308110237, -0.06761635839939117, -0.01624656841158867, 0.03722062334418297, 0.03752025216817856, -0.04980505630373955, -0.02463619038462639, 0.0733758956193924, -0.0006268287543207407, 0.037653420120477676, -0.02521880343556404, 0.03360842540860176, 0.028298327699303627, -0.00893061887472868, 0.012975615449249744, 0.0558309331536293, 0.005551465786993504, -0.023038167506456375, -0.050071392208337784, 0.004627608694136143, 0.0219228807836771, 0.02438649907708168, -0.012101695872843266, 0.07111202925443649, 0.0037911434192210436, 0.013142076320946217, 0.014315624721348286, 0.061623767018318176, -0.05273476615548134, -0.056763116270303726, 0.0049522072076797485, -0.04001716524362564, 0.009704661555588245, -0.03404122218489647, 0.008547759614884853, 0.015197866596281528, 0.04447831213474274, -0.040716297924518585, -0.005576435010880232, 0.001822745194658637, 0.028448142111301422, 0.030478963628411293, -0.017245333641767502, -0.00444866344332695, 0.02480265125632286, -0.004030430689454079, -0.03901840001344681, 0.016263214871287346, -0.01809428259730339, -0.011352622881531715, 0.030528901144862175, -0.044311851263046265, -0.003358345478773117, -0.017811300233006477, -0.062289610505104065, -0.03808622062206268, -0.005027114413678646, -0.03605539724230766, 0.04278041049838066, 0.06205656751990318, 0.013524935580790043, 0.04614292085170746, 0.017095519229769707, -0.046409256756305695, -0.034424081444740295, -0.012035111896693707, 0.0049522072076797485, -0.05559789016842842, -0.010986409150063992, -0.012276479974389076, 0.030395733192563057, -0.06415396928787231, -0.05050418898463249, -0.041615188121795654, 0.1123942956328392, -0.053234148770570755, -0.04897275194525719, -0.042514074593782425, -0.03375823795795441, -0.05939319357275963, 0.007786201313138008, 0.04441172629594803, 0.04853995516896248, -0.053300730884075165, -0.023520903661847115, -0.05220209062099457, 0.0051353140734136105, 0.06375446915626526, 0.004536055494099855, -0.02924715355038643, 0.00976292323321104, -0.02685011923313141, 0.006808244623243809, 0.00700799748301506, -0.04464477300643921, 0.03409115970134735, -0.016471290960907936, 0.02445308305323124, -0.05459912493824959, 0.009321802295744419, -0.05230196565389633, -0.009946029633283615, 0.006104947999119759, -0.015688925981521606, -0.06844866275787354, 0.047940693795681, 0.010054228827357292, -0.049105919897556305, 0.007045451086014509, 0.052768055349588394, -0.00630470085889101, 0.0021369399037212133, 0.04331308603286743, 0.025268740952014923, 0.005226867273449898, 0.025302033871412277, -0.045876581221818924, -0.006745821796357632, 0.020807594060897827, -0.02461954392492771, -0.0606582947075367, 0.04278041049838066, -0.013275244273245335, 0.02551843225955963, 0.0031357044354081154, -0.0027424409054219723, -0.03174406290054321, -0.005206059664487839, -0.07131178677082062, -0.038552310317754745, 0.040949344635009766, 0.020391441881656647, -0.05190246179699898, 0.012667662464082241, -0.04890616610646248, 0.009729630313813686, 0.02666701190173626, -0.018560374155640602, 0.006833213847130537, 0.002555172424763441, 0.05662994459271431, -0.039817411452531815, -0.025784770026803017, -0.01620495319366455, -0.022205863147974014, 0.03347525745630264, 0.06318850070238113, -0.04181493818759918, 0.040716297924518585, 0.07950165122747421, 0.04840678349137306, -0.00611327076330781, 0.048806291073560715, 0.15793795883655548, -0.03985070437192917, 0.01742844097316265, -0.024719420820474625, -0.026134338229894638, -0.01959243044257164, -0.03159425035119057, -0.04937225952744484, 0.004511086270213127, 0.003189804032444954, 0.027282916009426117, -0.06352142244577408, 0.010295596905052662, -0.04800727963447571, 0.01696234941482544, 0.008672605268657207, 0.006358800455927849, 0.0007995317573659122, -0.0006445152102969587, 0.024902528151869774, -0.03505663201212883, 0.09035489708185196, -0.047674357891082764, 0.038252681493759155, 0.010628518648445606, 0.017095519229769707, 0.04917250573635101, -0.0299629345536232, 0.02683347277343273, 0.03598881512880325, -0.03182729333639145, 0.0015335195930674672, -0.05796163156628609, 0.00021574873244389892, -0.018294036388397217, 0.0404832549393177, 0.028381558135151863, 0.020691070705652237, 0.021972818300127983, 0.010811625979840755, 0.014182455837726593, 0.03845243155956268, 0.008397944271564484, -0.011960204690694809, -0.012068403884768486, 0.016654398292303085, -0.0513032041490078, 0.0028277519159018993, -0.03462383523583412, -0.044844526797533035, 0.006446192506700754, 0.0037391246296465397, -0.02673359587788582, 0.009113726206123829, 0.014007671736180782, 0.07370881736278534, -0.0054266201332211494, 0.02002522721886635, 0.06275570392608643, 0.005726249888539314, 0.04717497527599335, -0.049105919897556305, -0.009746276773512363, 0.026916703209280968, -0.0055306581780314445, -0.0640208050608635, 0.029213860630989075, -0.06851524114608765, -0.008044215850532055, 0.0040658037178218365, -0.0015886597102507949, -0.0003786981978919357, 0.04437843710184097, -0.023221274837851524, 0.005476558580994606, -0.015239481814205647, 0.0037391246296465397, 0.013516612350940704, -0.016105078160762787, 0.013275244273245335, 0.02881435491144657, -0.0014908640878275037, 0.002956758951768279, -0.08336354047060013, 0.05406644940376282, 0.0327761210501194, 0.020757654681801796, 0.05529826134443283, -0.029213860630989075, 0.03134455904364586, 0.010703425854444504, -0.10353858768939972, -0.0060841403901577, -0.027299562469124794, -0.0502045601606369, 0.003934715874493122, -0.04331308603286743, 0.04301345720887184, -0.02415345422923565, 0.012983938679099083, 0.023387735709547997, 0.06884816288948059, 0.00420105317607522, -0.03998387232422829, -0.034490667283535004, 0.030112748965620995, -0.03908498212695122, -0.0002902659180108458, 0.005064568016678095, -0.03665465489029884, 0.009246894158422947, 0.03499004989862442, 0.0572957880795002, -0.003774497425183654, 0.04687534645199776, -0.015422588214278221, -0.04860653728246689, -0.045510366559028625, -0.008988880552351475, 0.022139279171824455, -0.012218219228088856, -0.04497769474983215, 0.0084686903283, 0.018060991540551186, 0.03049560822546482, -0.04181493818759918, -0.09082098305225372, -0.0423143208026886, -0.05363365262746811, 0.047907404601573944, -0.051203325390815735, 0.017544962465763092, 0.048373494297266006, -0.014523699879646301, 0.022455554455518723, 0.03798634186387062 ]
23,297
parutils.logging.logger
Logger
null
class Logger: def __init__( self, file_label='', force_new_logger=False, level=None, log_format=None, file_write=True, dir=None, file_format=None, ) -> None: from . import g if g.logger and g.logger.file_write and not force_new_logger: self = g.logger return self.logs = [] self.buffer = '' self.err_count = 0 self.level = level if level else const.DEFAULT_LEVEL self.log_format = log_format if log_format else const.DEFAULT_LOG_FORMAT self.file_write = file_write self.start_time = time() if not file_write: return self.file_label = file_label self.dir = dir if dir else const.DEFAULT_DIR self.file_format = file_format if file_format else const.DEFAULT_FILE_FORMAT file_base_name = datetime.now().strftime(self.file_format) if self.file_label: file_base_name += '_' + self.file_label file_name = file_base_name + '.txt' self.log_path = p.abspath(p.join(self.dir, file_name)) u.mkdirs(self.dir) with open(self.log_path, 'w', encoding='utf-8') as in_file: in_file.write('') s = (f"Log file initialised ({self.log_path})\n" f"CWD: {os.getcwd()}\n" f"Python interpreter path: {sys.executable}\n" f"Python version: {sys.version }\n" f"ParUtils version: {u.__VERSION__}\n") self.log_print(s) g.logger = self @staticmethod def close(): from . import g g.logger = None def log(self, *args, level=0, c_out=True): if self.level < level: return args = [str(e) for e in args] msg = ' '.join(args) fdate = datetime.now().strftime(self.log_format) s = f"{fdate}{msg}" self.log_print(s, c_out=c_out) def log_print(self, *args, level=0, c_out=True, nb_tab=0, dashes=0, tab_char=' '): if self.level < level: return args = [str(e) for e in args] s = ' '.join(args) if nb_tab != 0: for i in range(0, nb_tab): s = tab_char + s if dashes > 0: s = u.extend_str(s, '-', dashes) with lock: self._write_log(s, c_out) def _write_log(self, str_in, c_out): s = str(str_in) if not self.file_write: self._append_and_print(s, c_out) return try: with open(self.log_path, 'a', encoding='utf-8') as in_file: in_file.write(self.buffer + s + '\n') self.buffer = '' self.err_count = 0 except Exception as e: s = self._handle_e(str_in, e) self._append_and_print(s, c_out) def _append_and_print(self, s, c_out): u.g.logs.append(s) self.logs.append(s) if c_out: print(s) def _handle_e(self, str_in, e): s = f"Warning: the following message couldn't be logged because of {e}: {u.truncate(str_in, 256)}" self.buffer += s + '\n' self.err_count += 1 if self.err_count > const.MAX_ERR_COUNT: s += f"\nThe number of logging errors in a row reached the maximum set limit of {const.MAX_ERR_COUNT}. Disabling file_write." self.buffer += s + '\n' self.file_write = False return s
(file_label='', force_new_logger=False, level=None, log_format=None, file_write=True, dir=None, file_format=None) -> None
[ 0.015399896539747715, -0.002112790709361434, -0.0608280673623085, 0.08973967283964157, 0.018628088757395744, -0.037581026554107666, -0.04807772487401962, 0.04507286846637726, -0.03792617842555046, -0.06732505559921265, 0.027104629203677177, 0.0003400768036954105, 0.015075046569108963, 0.006948733702301979, 0.002218113048002124, 0.03618011251091957, -0.028404027223587036, -0.014963380061089993, -0.026536142453551292, 0.03611920401453972, -0.005319410469383001, 0.033723440021276474, 0.013948225416243076, 0.04856500029563904, 0.01210064347833395, 0.009801317937672138, -0.0397331528365612, -0.006634035613387823, 0.02988615445792675, -0.019663546234369278, -0.021074611693620682, -0.04698135703802109, -0.031510401517152786, -0.00023570621851831675, -0.018171269446611404, -0.0515698567032814, -0.015298380516469479, -0.01684141531586647, -0.06074685603380203, -0.02814008668065071, 0.05380319803953171, 0.0010989049915224314, 0.01797838881611824, -0.05128561332821846, 0.006431004963815212, 0.04990500211715698, 0.018993543460965157, 0.06196504086256027, -0.03301282972097397, -0.026495536789298058, -0.005299107171595097, 0.04771227017045021, -0.028464937582612038, -0.023551588878035545, -0.010141395032405853, 0.04726560041308403, 0.044951047748327255, -0.032058585435152054, 0.0037687616422772408, -0.0678529366850853, -0.016557171940803528, 0.039022546261548996, 0.036687690764665604, 0.031591612845659256, -0.006441156379878521, 0.02487128973007202, -0.043732862919569016, 0.008405480533838272, 0.023693710565567017, 0.04738742113113403, 0.021216733381152153, -0.07780145108699799, 0.0689086988568306, -0.006172140594571829, -0.014212165027856827, 0.02716553956270218, -0.04759044945240021, 0.03959103301167488, 0.03201797977089882, -0.016567323356866837, -0.005867593921720982, 0.006288883276283741, 0.005532593000680208, 0.002801826922222972, 0.07560872286558151, -0.041012249886989594, -0.008116161450743675, 0.014313681051135063, 0.002885577268898487, 0.01012616790831089, -0.07451235502958298, 0.019937638193368912, 0.007101006805896759, -0.015673987567424774, 0.00941048376262188, -0.06813718378543854, -0.021744612604379654, -0.00709085538983345, -0.012303674593567848, -0.004261111840605736, -0.05128561332821846, -0.010298743844032288, -0.007146689109504223, -0.054128047078847885, -0.01836414821445942, -0.0710202232003212, -0.05254440754652023, 0.028769483789801598, 0.01685156673192978, -0.01600898988544941, -0.04962075874209404, -0.01677035540342331, 0.0074461596086621284, -0.010983973741531372, 0.0010107134003192186, 0.017623085528612137, -0.06147776544094086, -0.007989266887307167, -0.024384016171097755, -0.01872960291802883, 0.041458915919065475, 0.004695090465247631, -0.042514678090810776, 0.0038677393458783627, 0.012029582634568214, -0.03747950866818428, -0.03707344830036163, 0.0026419400237500668, 0.06801536679267883, 0.014354286715388298, -0.0067253997549414635, 0.04135740175843239, 0.056320782750844955, -0.027368569746613503, 0.041540130972862244, -0.03207888826727867, -0.07309113442897797, 0.06760930269956589, -0.06712202727794647, 0.05680805444717407, -0.006065549328923225, -0.08705966174602509, -0.0003273873880971223, -0.009131316095590591, 0.0252570491284132, 0.025439776480197906, 0.017765207216143608, 0.008060327731072903, -0.027794934809207916, 0.000855267804581672, 0.031165247783064842, -0.03382495418190956, -0.0432455874979496, 0.06736566126346588, 0.0023919581435620785, -0.044179532676935196, -0.03362192213535309, 0.017409902065992355, -0.006415777374058962, -0.02996736578643322, -0.011176852509379387, -0.055874112993478775, 0.02062794379889965, 0.01548110879957676, -0.006842142436653376, 0.024749470874667168, -0.003976868465542793, 0.01369443628937006, 0.006943657994270325, 0.01736929640173912, -0.0003987654345110059, 0.017054598778486252, -0.013988831080496311, 0.051163796335458755, -0.0556710809469223, 0.0649292916059494, 0.0016826188657432795, 0.004913348704576492, -0.0380886048078537, -0.015572472475469112, 0.003497207770124078, -0.027957359328866005, -0.0017904790583997965, 0.014009134843945503, 0.02245522104203701, 0.029561303555965424, 0.007324340753257275, 0.005065621808171272, -0.014932924881577492, 0.03953012451529503, -0.029175546020269394, -0.04389528930187225, 0.04174315929412842, -0.020912187173962593, 0.031084036454558372, 0.05688926950097084, -0.05209773778915405, -0.025460079312324524, 0.06553838402032852, -0.0017930169124156237, -0.012151401489973068, 0.09558696299791336, 0.020830973982810974, -0.0875469371676445, -0.009730257093906403, 0.0009796242229640484, 0.043732862919569016, 0.02647523395717144, -0.0812123715877533, 0.03301282972097397, 0.015724746510386467, -0.012384886853396893, -0.030292214825749397, 0.07410629093647003, 0.006024943199008703, -0.042514678090810776, 0.029459789395332336, 0.058066848665475845, -0.04657529667019844, 0.0411340668797493, 0.06484808027744293, 0.032424040138721466, -0.09022694826126099, 0.019907183945178986, -0.020039152354002, 0.008537450805306435, 0.06371110677719116, 0.04194619134068489, 0.03593647480010986, -0.023247042670845985, 0.03861648216843605, -0.005035167094320059, 0.003601261181756854, 0.031814947724342346, 0.0002477611997164786, -0.03847436234354973, -0.024972805753350258, 0.015714595094323158, 0.0026114853098988533, 0.00005412836617324501, -0.04515407979488373, -0.017359144985675812, 0.017714448273181915, 0.04913348704576492, 0.06310201436281204, -0.04677832871675491, -0.01729823648929596, 0.08697845041751862, 0.017085053026676178, -0.005078311078250408, 0.023165829479694366, 0.04178376495838165, -0.07901964336633682, -0.037824664264917374, -0.0024858599063009024, -0.01229352317750454, -0.003177434206008911, 0.0026343264617025852, -0.007212673779577017, 0.001859002048149705, 0.009232832118868828, -0.023693710565567017, 0.0432455874979496, -0.034251317381858826, 0.0257849283516407, -0.028424330055713654, 0.029601911082863808, -0.09014573693275452, 0.022942496463656425, 0.05782321095466614, 0.037804361432790756, 0.05721411854028702, -0.0059285033494234085, 0.017176417633891106, -0.07540568709373474, -0.05104197561740875, -0.002862736117094755, -0.0319976769387722, 0.00701471883803606, 0.05331592261791229, 0.04121527820825577, 0.04056558012962341, 0.06671596318483353, 0.0003616488538682461, 0.01912551373243332, -0.009176998399198055, -0.03620041534304619, 0.009420635178685188, 0.011247913353145123, 0.002355158794671297, -0.06391413509845734, 0.010222607292234898, -0.01100427657365799, 0.032891012728214264, 0.02464795485138893, 0.008177070878446102, -0.04982379078865051, -0.04515407979488373, 0.009045028127729893, -0.0719541609287262, -0.0380886048078537, -0.014019286260008812, 0.014760348945856094, 0.002440178068354726, -0.03262707218527794, -0.02503371424973011, -0.046615902334451675, -0.04050467163324356, 0.047671664506196976, -0.0037103903014212847, -0.018709300085902214, 0.033033132553100586, 0.04389528930187225, 0.01578565500676632, 0.024302802979946136, 0.031733736395835876, 0.000464116019429639, 0.012374735437333584, 0.005339713767170906, 0.0566050261259079, -0.03802769258618355, 0.06395474076271057, -0.005263576749712229, 0.010466245003044605, 0.012719888240098953, -0.04807772487401962, 0.05644259974360466, 0.03741860017180443, -0.019978243857622147, 0.03165252134203911, -0.035997383296489716, 0.029561303555965424, -0.033804651349782944, -0.014110649935901165, -0.009263286367058754, 0.003388078650459647, -0.04239285737276077, -0.0875469371676445, 0.06143715977668762, -0.06423898786306381, -0.016902325674891472, 0.010862154886126518, -0.0505140982568264, 0.017866721376776695, -0.011999128386378288, -0.013186858966946602, 0.06204625219106674, 0.001430099131539464, 0.0371546596288681, 0.03654556721448898, 0.09087664633989334, -0.007760857697576284, -0.06947718560695648, 0.005811760667711496, -0.0036317158956080675, -0.08535420149564743, -0.03662678226828575, -0.04056558012962341, 0.01943005993962288, 0.004527589771896601, -0.023714013397693634, -0.006106155458837748, -0.002885577268898487, 0.0018754982156679034, 0.019694000482559204, -0.0092582106590271, 0.013511708937585354, -0.0236734077334404, 0.02215067483484745, 0.002530273050069809, 0.015988685190677643, -0.0650511085987091, 0.05445289611816406, -0.008999345824122429, -0.057620178908109665, 0.044951047748327255, 0.01782611571252346, -0.000004114152034162544, -0.07394386827945709, -0.021582188084721565, 0.06192443519830704, 0.0031469794921576977, -0.011968673206865788, -0.008024797774851322, -0.034637078642845154, -0.009588136337697506, 0.054128047078847885, 0.02785584330558777, 0.06062503531575203, 0.03620041534304619, -0.00891305785626173, 0.018912332132458687, -0.010263213887810707, -0.0473468154668808, 0.0013996445341035724, 0.006278731860220432, 0.0013019358739256859, 0.06367050111293793, -0.026069171726703644, 0.007019794546067715, -0.022353705018758774, 0.01660793088376522, 0.022698858752846718, 0.04811833053827286, -0.0257849283516407, 0.03459647297859192, 0.04771227017045021, -0.015816109254956245, 0.010024652816355228, 0.025541292503476143, 0.023044010624289513, -0.006456383503973484, -0.013207162730395794, -0.018709300085902214, 0.01000942476093769, -0.00489050755277276, -0.0210949145257473, -0.03540859371423721, 0.016435354948043823, 0.003984482027590275, -0.05514320358633995, 0.035774052143096924, 0.035753749310970306, 0.07516205310821533, 0.03886011987924576, -0.004311869386583567, -0.05887896940112114, 0.005304183345288038, -0.0004092342278454453, -0.00040796527173370123, -0.032363131642341614, 0.04633165895938873, -0.030292214825749397, 0.0073091136291623116, 0.025460079312324524, -0.002743455581367016, -0.01812051050364971, 0.02231309935450554, 0.02298310212790966, 0.04779348149895668, 0.04584438353776932, -0.029155241325497627, 0.04340801388025284, -0.004657022189348936, 0.00006174202280817553, 0.029256757348775864, -0.02137915790081024, 0.023632800206542015, -0.013552314601838589, 0.04438256099820137, 0.019511273130774498, 0.05319410562515259, -0.03488071635365486, 0.003971792757511139, -0.03207888826727867, -0.05603653937578201, -0.03567253425717354, -0.05571168661117554, 0.04482923075556755, 0.006943657994270325, 0.014435499906539917, 0.08478571474552155, 0.06168079748749733, -0.014202013611793518, -0.03693132847547531, -0.03321586176753044, 0.10338335484266281, -0.029601911082863808, -0.021297944709658623, -0.04239285737276077, 0.08576026558876038, 0.03886011987924576, -0.05031106621026993, -0.0057508512400090694, -0.05542744696140289, -0.009623666293919086, 0.009242983534932137, -0.046453479677438736, -0.012476250529289246, -0.012070189230144024, -0.013471102342009544, -0.023165829479694366, 0.021967947483062744, 0.018110359087586403, -0.008232904598116875, -0.033723440021276474, 0.07800448685884476, -0.02342977002263069, -0.0025962581858038902, -0.009816545993089676, -0.04454498738050461, -0.01980566792190075, -0.016577476635575294, -0.024485530331730843, -0.0376216322183609, 0.009765787981450558, -0.04296134412288666, -0.023226739838719368, -0.013907618820667267, -0.05810745432972908, 0.012679281644523144, -0.04026103392243385, -0.033723440021276474, 0.005903124343603849, 0.04003769904375076, -0.04109346121549606, 0.018018996343016624, 0.031530704349279404, -0.04929590970277786, -0.03589586913585663, 0.0009453627862967551, 0.035834960639476776, -0.028180694207549095, 0.002728228224441409, -0.027267053723335266, -0.05140743404626846, -0.08657239377498627, -0.0464128702878952, -0.022434918209910393, -0.04754984378814697, 0.0004561851383186877, 0.0678529366850853, 0.023389164358377457, -0.07670509070158005, -0.01531868427991867, 0.013339132070541382, 0.0503922775387764, 0.006953809410333633, 0.01821187511086464, 0.0515698567032814, -0.06846202909946442, -0.031307369470596313, -0.002786599565297365, -0.023632800206542015, 0.029601911082863808, 0.07666447758674622, 0.012374735437333584, -0.048443179577589035, -0.0056138052605092525, -0.03725617751479149, -0.01737944781780243, 0.024465227499604225, 0.021521279588341713, -0.052991073578596115, -0.015349138528108597, -0.017054598778486252, 0.012029582634568214, 0.009324195794761181, 0.032444342970848083, -0.010750488378107548, 0.06436080485582352, -0.009852075949311256, 0.04511347413063049, 0.016902325674891472, 0.015501411631703377, -0.0029515621718019247, 0.03384525701403618, 0.006415777374058962, 0.05932563915848732, -0.002202885691076517, -0.0060198670253157616, 0.026759477332234383, -0.06553838402032852, -0.0210949145257473, -0.01766369119286537, -0.015613079071044922, 0.028728878125548363, 0.04787469282746315, 0.0037916027940809727, 0.012090492062270641, 0.014090347103774548, 0.05546805262565613, -0.021054306998848915, -0.03969254717230797, -0.02889130264520645, 0.012364584021270275, 0.020648246631026268, 0.08429844677448273, 0.03548980876803398, 0.0033373208716511726, -0.025297654792666435, 0.027429480105638504, -0.014171559363603592, -0.0464128702878952, -0.0002092170325340703, 0.0016813499387353659, 0.01668914221227169, 0.03930678963661194, 0.016953082755208015, 0.04986439645290375, -0.000490446574985981, 0.0493365153670311, 0.04754984378814697, -0.06107170507311821, -0.039266183972358704, 0.06038140133023262, 0.04612862691283226, -0.008704951032996178, 0.03270828351378441, 0.038880422711372375, -0.06436080485582352, 0.02024218440055847, -0.058675941079854965, -0.018526572734117508, 0.007334492634981871, -0.016272928565740585, 0.04458559304475784, 0.018567178398370743, -0.012790949083864689, 0.047062572091817856, -0.041905585676431656, -0.01578565500676632, 0.028789786621928215, -0.037296783179044724, -0.0037916027940809727, -0.017420053482055664, -0.004514900501817465, 0.01660793088376522, 0.08892755210399628, 0.019460514187812805, 0.000627492496278137, -0.002314552664756775, -0.04271771013736725, -0.0015975997084751725, -0.060584429651498795, 0.007532447576522827, -0.034170106053352356, -0.035307079553604126, -0.018557026982307434, -0.031429190188646317, -0.014780651777982712, -0.005002174526453018, -0.00796896405518055, 0.006796460598707199, -0.00799941923469305, 0.031084036454558372, -0.012242765165865421, -0.06310201436281204, -0.005684866104274988, 0.013867013156414032, 0.047306206077337265, -0.042677100747823715, -0.008476541377604008, -0.06115291640162468, -0.010044955648481846, -0.05542744696140289, 0.04499165341258049, -0.020150819793343544, 0.034637078642845154, -0.03859617933630943, -0.026150384917855263, 0.041986797004938126, 0.006116306874901056, -0.012922919355332851, -0.031977370381355286, -0.027652813121676445, -0.004608802031725645, 0.020232032984495163, 0.0191052109003067, 0.07134506851434708, -0.0015201941132545471, 0.005431077443063259, 0.035469505935907364, -0.002738379640504718, -0.027794934809207916, -0.05599592998623848, 0.03603799268603325, 0.004235732834786177, 0.039712850004434586, 0.01213109865784645, 0.0039286487735807896, -0.05684866011142731, 0.002252374542877078, 0.009242983534932137, 0.03624102100729942, 0.0020150819327682257, 0.059447456151247025, 0.042595889419317245, 0.013521860353648663, -0.0309419147670269, 0.015491260215640068, 0.08324268460273743, -0.011552460491657257, -0.07175113260746002, 0.040017396211624146, 0.1010281965136528, -0.009303892962634563, -0.013968528248369694, 0.02200855314731598, -0.021724309772253036, -0.020424911752343178, 0.05676744878292084, -0.021724309772253036, -0.008816618472337723, -0.025845838710665703, 0.014597924426198006, -0.010339350439608097, -0.014892319217324257, -0.013704587705433369, -0.030393730849027634, 0.0010919257765635848, -0.015907473862171173, 0.032281920313835144, 0.028870999813079834, -0.0008685917127877474, -0.040464065968990326, -0.026190990582108498, -0.004306793678551912, 0.005091000813990831, -0.016577476635575294, 0.034251317381858826, 0.06574141979217529, 0.055183809250593185, -0.028404027223587036, -0.0016508953412994742, -0.0013844171771779656, 0.0023361246567219496, -0.04750923812389374, -0.01584656536579132, -0.016130806878209114, -0.021521279588341713, 0.01919657550752163, 0.022110069170594215, -0.022637948393821716, -0.006593429483473301, -0.0035733445547521114, -0.10265243798494339, -0.030170395970344543, 0.030860701575875282, -0.03232252597808838, -0.02245522104203701, 0.03520556539297104, -0.08957725018262863, 0.021074611693620682, 0.01813066191971302, -0.0432455874979496, 0.004735696595162153, -0.013836557976901531, 0.018100207671523094, 0.027124932035803795, -0.02661735564470291, -0.03465738147497177, -0.05477774515748024, 0.025825534015893936, -0.017552023753523827, 0.013176707550883293, 0.034393440932035446, 0.05092015862464905, -0.07508084177970886, 0.009542454034090042, 0.04393589496612549, -0.0464128702878952, -0.030292214825749397, 0.02822129987180233, -0.019694000482559204, -0.051245007663965225, 0.01547095738351345, 0.006339640822261572, 0.006933506578207016, 0.005314334761351347, -0.0069791884161531925, -0.026657961308956146, 0.00006463679892476648, 0.05664563179016113, 0.05741714686155319, 0.07122325152158737, -0.03453556075692177, 0.04560074955224991 ]
23,298
parutils.logging.logger
__init__
null
def __init__( self, file_label='', force_new_logger=False, level=None, log_format=None, file_write=True, dir=None, file_format=None, ) -> None: from . import g if g.logger and g.logger.file_write and not force_new_logger: self = g.logger return self.logs = [] self.buffer = '' self.err_count = 0 self.level = level if level else const.DEFAULT_LEVEL self.log_format = log_format if log_format else const.DEFAULT_LOG_FORMAT self.file_write = file_write self.start_time = time() if not file_write: return self.file_label = file_label self.dir = dir if dir else const.DEFAULT_DIR self.file_format = file_format if file_format else const.DEFAULT_FILE_FORMAT file_base_name = datetime.now().strftime(self.file_format) if self.file_label: file_base_name += '_' + self.file_label file_name = file_base_name + '.txt' self.log_path = p.abspath(p.join(self.dir, file_name)) u.mkdirs(self.dir) with open(self.log_path, 'w', encoding='utf-8') as in_file: in_file.write('') s = (f"Log file initialised ({self.log_path})\n" f"CWD: {os.getcwd()}\n" f"Python interpreter path: {sys.executable}\n" f"Python version: {sys.version }\n" f"ParUtils version: {u.__VERSION__}\n") self.log_print(s) g.logger = self
(self, file_label='', force_new_logger=False, level=None, log_format=None, file_write=True, dir=None, file_format=None) -> NoneType
[ 0.0005442263791337609, -0.011117103509604931, -0.04338926449418068, 0.05939044803380966, 0.0031606995034962893, -0.025936806574463844, -0.027909046038985252, 0.048933859914541245, -0.03166746348142624, -0.029267285019159317, 0.016252366825938225, 0.011191527359187603, 0.010679861530661583, 0.004925946705043316, 0.014484794810414314, 0.043910231441259384, -0.023685475811362267, 0.003995644859969616, -0.03643060848116875, 0.05127821862697601, 0.0007791275274939835, 0.03817957267165184, 0.010642649605870247, 0.07602424174547195, 0.04536150023341179, 0.019294453784823418, -0.06579092144966125, -0.01656867004930973, 0.03306291624903679, -0.027964863926172256, -0.021285299211740494, -0.034421157091856, -0.03378855064511299, 0.030886011198163033, -0.01429873425513506, -0.048189617693424225, -0.045956894755363464, -0.0025187914725393057, -0.11491084098815918, -0.01103337574750185, 0.07621029764413834, -0.027146197855472565, -0.017461759969592094, -0.03395600616931915, 0.015526732429862022, 0.058050815016031265, 0.0487850122153759, 0.023424992337822914, -0.03343503549695015, -0.026383351534605026, -0.03129534423351288, 0.08916009962558746, -0.023722689598798752, -0.01630818471312523, -0.03230006992816925, 0.07866629958152771, 0.054515667259693146, 0.0061167324893176556, -0.011275254189968109, -0.028095105662941933, -0.037677209824323654, 0.04283108189702034, 0.021285299211740494, 0.017722243443131447, -0.010958951897919178, 0.009898408316075802, -0.040635570883750916, -0.013954523019492626, 0.012661403976380825, 0.05328767001628876, 0.05235736817121506, -0.05626463517546654, 0.0580880269408226, -0.001690823002718389, 0.01732221432030201, 0.044468414038419724, -0.05514827370643616, 0.012717221863567829, 0.03399321809411049, -0.008637849241495132, -0.02065269462764263, 0.020820148289203644, -0.004325902089476585, -0.020317785441875458, 0.04394744336605072, -0.04126817360520363, -0.004939901176840067, -0.004672439303249121, -0.0004869546974077821, 0.0002937717654276639, -0.07695454359054565, 0.00991701427847147, 0.0016454708529636264, -0.01618724688887596, -0.014382461085915565, -0.06497225910425186, -0.006744686048477888, 0.011796222999691963, -0.004467773251235485, 0.01955493725836277, -0.06720498204231262, -0.06281396001577377, -0.023499416187405586, -0.0534365177154541, -0.012735827825963497, -0.055259909480810165, -0.021099237725138664, 0.018029242753982544, 0.011740405112504959, -0.007716851308941841, -0.03445836901664734, 0.0009076254209503531, 0.013814977370202541, 0.007544745225459337, -0.02122948132455349, 0.03406764194369316, -0.03585382178425789, -0.004032857250422239, -0.003442115616053343, -0.0318349190056324, 0.04737095162272453, 0.01494064275175333, -0.048561740666627884, 0.023331962525844574, 0.00949372723698616, -0.058348510414361954, -0.018131576478481293, -0.037286486476659775, 0.07985708117485046, 0.013480069115757942, 0.024634383618831635, 0.03425370156764984, 0.028839347884058952, -0.029174255207180977, 0.03862611949443817, -0.056190211325883865, -0.042310114949941635, 0.06199529394507408, -0.07993150502443314, 0.06110220402479172, 0.03587242588400841, -0.09161609411239624, 0.028243953362107277, -0.03274661302566528, 0.0005078864633105695, 0.02895098365843296, -0.007205185480415821, -0.006795852445065975, -0.021285299211740494, 0.027164803817868233, 0.03778884932398796, -0.03581660985946655, -0.03434673324227333, 0.0543668195605278, 0.02662522904574871, -0.05418075993657112, -0.004781750030815601, 0.0015233687590807676, -0.0010715910466387868, -0.019443301483988762, -0.009954226203262806, -0.01722918450832367, 0.027722984552383423, 0.020596874877810478, -0.022885417565703392, 0.036095697432756424, -0.02785322815179825, 0.002249003853648901, 0.011954374611377716, 0.006656307261437178, 0.012652100995182991, -0.025918200612068176, -0.02121087536215782, 0.041751932352781296, -0.037491150200366974, 0.04740816727280617, 0.02952777035534382, 0.00395843293517828, -0.03181631118059158, -0.0048654768615961075, 0.007214488461613655, -0.015061581507325172, 0.02383432537317276, -0.005484127439558506, 0.04097047820687294, 0.03109067678451538, 0.0035770093090832233, 0.038216784596443176, -0.038142360746860504, 0.042682234197854996, 0.015405792742967606, -0.025657715275883675, 0.0051306127570569515, -0.006600489374250174, 0.04714768007397652, 0.04737095162272453, -0.023071477189660072, -0.03492351993918419, 0.04945483058691025, 0.028802135959267616, 0.007200533989816904, 0.08231307566165924, 0.011982283554971218, -0.07628472149372101, -0.01981542259454727, 0.045956894755363464, 0.04350090026855469, 0.045101016759872437, -0.0784430205821991, 0.01779666729271412, 0.02571353316307068, -0.0281137116253376, -0.03425370156764984, 0.056934453547000885, -0.001828042441047728, -0.023164507001638412, 0.0005567272892221808, 0.07364267110824585, -0.04554756358265877, 0.04059835895895958, 0.07226581871509552, 0.03992854058742523, -0.07527999579906464, 0.012196253053843975, 0.004323576111346483, 0.022606326267123222, 0.09310457855463028, 0.007344730664044619, -0.0013477742904797196, 0.0015291831223294139, 0.003011851105839014, -0.01869906112551689, 0.018410667777061462, 0.019033968448638916, -0.012791645713150501, -0.050682827830314636, -0.0014942968264222145, 0.018568817526102066, -0.06984703987836838, 0.0035444488748908043, -0.023778507485985756, -0.026513593271374702, 0.003728183452039957, 0.021564388647675514, 0.05380864068865776, -0.047891922295093536, -0.01476388517767191, 0.05235736817121506, 0.009758862666785717, 0.00847504660487175, 0.029583588242530823, 0.031034858897328377, -0.08119671791791916, -0.012661403976380825, -0.00903322733938694, -0.015108096413314342, 0.007135412655770779, -0.04011460021138191, 0.003583986544981599, 0.010298437438905239, -0.009898408316075802, -0.02162020653486252, 0.031797707080841064, -0.025285596027970314, 0.022420266643166542, -0.008512258529663086, 0.02653219923377037, -0.0808245986700058, 0.03464442864060402, 0.04238453879952431, 0.02915564924478531, 0.051166582852602005, 0.019294453784823418, 0.014977854676544666, -0.067800372838974, -0.0668700709939003, -0.021192269399762154, -0.055445969104766846, 0.04324041306972504, 0.05604136362671852, 0.0538458526134491, 0.029974315315485, 0.05362258106470108, 0.008861121721565723, 0.007819184102118015, -0.007005170453339815, -0.024466929957270622, 0.036095697432756424, -0.027034562081098557, -0.02727644145488739, -0.05779033154249191, 0.048375677317380905, -0.004011925309896469, 0.019201423972845078, 0.02785322815179825, -0.01005655899643898, -0.054590094834566116, -0.0519852489233017, 0.01908978633582592, -0.06928885728120804, -0.04926876723766327, -0.05875784531235695, -0.004307296127080917, -0.010586831718683243, -0.0394819974899292, -0.013703341595828533, -0.03295128047466278, -0.015024369582533836, 0.034030430018901825, -0.004502659197896719, 0.010410074144601822, 0.06984703987836838, 0.050682827830314636, 0.025304201990365982, 0.031332556158304214, 0.058050815016031265, 0.004293341655284166, 0.0029862679075449705, 0.033658310770988464, 0.038961026817560196, -0.04815240576863289, 0.050496768206357956, -0.008326198905706406, 0.014289431273937225, 0.012624192051589489, -0.011777617037296295, 0.0636698380112648, 0.023945961147546768, -0.0060795205645263195, 0.03873775526881218, -0.006949352566152811, 0.047259315848350525, -0.01619654893875122, -0.04964089021086693, -0.03522121533751488, -0.005232946015894413, -0.03674691170454025, -0.05440403148531914, 0.05127821862697601, -0.07114946097135544, -0.02820674143731594, 0.011349678970873356, -0.05295276269316673, 0.023145901039242744, -0.012363707646727562, -0.031165100634098053, 0.04644065350294113, -0.05019906908273697, 0.04908270761370659, 0.0058702025562524796, 0.04662671312689781, 0.005251551978290081, -0.06050680950284004, 0.0206713005900383, -0.002974639181047678, -0.08372713625431061, -0.036560848355293274, -0.02065269462764263, 0.0007919191848486662, 0.006712125614285469, -0.04759422689676285, 0.0008285497897304595, -0.00044974262709729373, -0.012159041129052639, 0.03996575251221657, -0.013145160861313343, 0.03157443180680275, -0.009954226203262806, -0.030420860275626183, 0.012410222552716732, 0.026588017120957375, -0.06523273885250092, 0.029583588242530823, -0.01481040008366108, -0.03135116025805473, 0.022234207019209862, -0.0036398046649992466, -0.00642838329076767, -0.06381868571043015, -0.044096291065216064, 0.024373900145292282, 0.006121383979916573, -0.009879802353680134, 0.009647226892411709, -0.034663036465644836, -0.0008419228834100068, 0.0562274232506752, 0.04443120211362839, 0.06761431694030762, 0.04554756358265877, 0.0041398415341973305, -0.004916643723845482, -0.015061581507325172, -0.043054353445768356, 0.026122866198420525, 0.0024513443931937218, -0.005465521477162838, 0.052543431520462036, -0.013191675767302513, -0.001039030496031046, -0.023890143260359764, -0.021303905174136162, 0.007144715636968613, 0.044728897511959076, -0.017489667981863022, 0.02785322815179825, 0.046701136976480484, -0.013061433099210262, 0.009693741798400879, 0.020615480840206146, 0.05659954622387886, 0.0060609146021306515, -0.0169500932097435, -0.022383054718375206, -0.014196401461958885, 0.02309008315205574, -0.026755470782518387, -0.024355294182896614, 0.009740256704390049, -0.010465892031788826, -0.06467456370592117, 0.053659792989492416, 0.05920438840985298, 0.04420792683959007, 0.07327054440975189, 0.0003471187665127218, -0.035704974085092545, -0.0009413488442078233, 0.011731102131307125, -0.010437983088195324, -0.052096884697675705, 0.06292559206485748, -0.027071774005889893, 0.02048523910343647, 0.0336955226957798, -0.009261151775717735, -0.025639109313488007, 0.023592445999383926, 0.011507829651236534, 0.06597698479890823, 0.03512818366289139, -0.05864620953798294, 0.05760427191853523, 0.009572803042829037, -0.051724765449762344, 0.024076202884316444, -0.02169463224709034, 0.015359277836978436, -0.02309008315205574, 0.02011311799287796, 0.023890143260359764, 0.06136268749833107, 0.011200830340385437, -0.023964567109942436, -0.01666169986128807, -0.05120379477739334, -0.03071855567395687, -0.05793917924165726, 0.03527703508734703, -0.003386297496035695, 0.01081010326743126, 0.06601419299840927, 0.06489783525466919, -0.02785322815179825, -0.035053759813308716, -0.04900828376412392, 0.08997876197099686, -0.0051166582852602005, -0.026699652895331383, -0.05782754346728325, 0.05592972785234451, 0.03434673324227333, -0.05764148384332657, 0.013005615212023258, -0.06426522880792618, 0.013163766823709011, -0.003860751399770379, -0.054590094834566116, -0.0169500932097435, -0.014401067979633808, -0.012242767959833145, -0.003518865443766117, 0.039816904813051224, 0.03817957267165184, -0.010577528737485409, -0.037677209824323654, 0.038961026817560196, -0.021582994610071182, 0.0021571365650743246, -0.003683994058519602, -0.034514185041189194, 0.004677090793848038, -0.018010636791586876, -0.03083019144833088, -0.034030430018901825, 0.03417927771806717, 0.010326347313821316, 0.004430560860782862, -0.00470499973744154, -0.02783462218940258, 0.026941532269120216, -0.03985411673784256, -0.025583291426301003, -0.005902762990444899, 0.027313653379678726, -0.04536150023341179, -0.009954226203262806, 0.006149292923510075, -0.03174188733100891, -0.017480365931987762, 0.010270528495311737, 0.038030724972486496, -0.058608993887901306, 0.015489520505070686, -0.02383432537317276, -0.014149886555969715, -0.08357828855514526, -0.028895165771245956, -0.026681046932935715, -0.01711754873394966, 0.007093549240380526, 0.0450638048350811, 0.030290616676211357, -0.07970823347568512, -0.025118140503764153, 0.004530568607151508, 0.034402549266815186, 0.01191716268658638, 0.046142954379320145, 0.05347372964024544, -0.04904549568891525, -0.0719309151172638, -0.006791200954467058, -0.031034858897328377, 0.02506232261657715, 0.08045247197151184, 0.006284186616539955, -0.0030467375181615353, -0.03187213093042374, -0.05034791678190231, 0.007023776415735483, 0.00566088454797864, 0.01741524413228035, -0.06050680950284004, 0.011200830340385437, -0.019238635897636414, -0.01522903610020876, 0.002301333472132683, 0.046515077352523804, -0.014829006046056747, 0.0794849619269371, -0.046887196600437164, -0.01964796893298626, 0.019331665709614754, 0.008684365078806877, 0.015666278079152107, 0.027964863926172256, -0.007144715636968613, 0.053510941565036774, 0.017182668671011925, -0.02402038499712944, 0.029471952468156815, -0.03006734512746334, -0.007019124925136566, -0.026122866198420525, -0.014280128292739391, 0.024876262992620468, 0.04629180207848549, -0.01713615469634533, 0.0022478410974144936, 0.03176049515604973, 0.0562274232506752, -0.019666574895381927, -0.024746021255850792, -0.024987898766994476, 0.01611282303929329, 0.04059835895895958, 0.08759719133377075, 0.0283183790743351, -0.007121458183974028, -0.042607810348272324, 0.03120231255888939, 0.00180943647865206, -0.04201241582632065, -0.03295128047466278, -0.012624192051589489, 0.012363707646727562, 0.023350568488240242, 0.01289397943764925, 0.059725359082221985, -0.0037816755939275026, 0.0236668698489666, 0.0506456159055233, -0.04792913421988487, -0.06902837008237839, 0.016726821660995483, 0.05883226916193962, -0.03745393827557564, 0.04145423695445061, 0.03414206579327583, -0.07993150502443314, 0.012038101442158222, -0.0534365177154541, 0.00800524465739727, 0.0012640472268685699, -0.04283108189702034, 0.028002075850963593, 0.024615777656435966, -0.0469244085252285, 0.05205967277288437, -0.012586979195475578, -0.013517281040549278, 0.045584775507450104, -0.03899823874235153, 0.005888808518648148, -0.014642945490777493, -0.00600509624928236, 0.01527555100619793, 0.07479624450206757, 0.005791126750409603, -0.012140435166656971, -0.028243953362107277, -0.044914957135915756, 0.015145308338105679, -0.08782046288251877, -0.011796222999691963, -0.014215007424354553, -0.05399470031261444, 0.0006203948287293315, -0.003451418597251177, -0.0037584181409329176, -0.03267218917608261, -0.027443895116448402, -0.0248576570302248, 0.013461463153362274, 0.011331072077155113, -0.019573543220758438, -0.03736091032624245, 0.02857886254787445, 0.03427230939269066, 0.03414206579327583, -0.03790048509836197, 0.023387780413031578, -0.052096884697675705, -0.007256351877003908, -0.09325342625379562, 0.018838604912161827, -0.004416606388986111, 0.050980523228645325, -0.01001004409044981, -0.02029917947947979, 0.03174188733100891, -0.00574926333501935, 0.014233613386750221, -0.023611051961779594, -0.031220918521285057, 0.004644530359655619, 0.020373603329062462, 0.013991734944283962, 0.03944478556513786, -0.026513593271374702, 0.015219733119010925, 0.059539295732975006, 0.0046119699254632, -0.017359426245093346, -0.05138985440135002, 0.02727644145488739, -0.03732369840145111, -0.00021295182523317635, 0.006930746138095856, 0.010233316570520401, -0.02634613960981369, 0.010344953276216984, 0.034030430018901825, 0.026606623083353043, 0.006242323201149702, 0.04387301951646805, 0.027518318966031075, 0.0473337396979332, -0.007381942588835955, 0.021843479946255684, 0.06247904896736145, -0.00958210602402687, -0.08119671791791916, 0.042793869972229004, 0.07077734172344208, -0.004963158629834652, 0.0026606624014675617, 0.0309046171605587, -0.0014082439010962844, -0.019108392298221588, 0.06992146372795105, -0.02755553089082241, -0.0030583662446588278, -0.043054353445768356, 0.014242916367948055, -0.021099237725138664, -0.04290550574660301, 0.004074720665812492, -0.028430014848709106, -0.01694079115986824, -0.02859746851027012, 0.0063307019881904125, 0.03371412679553032, 0.0012791645713150501, -0.03202097862958908, -0.03592824563384056, 0.009293711744248867, -0.008405273780226707, -0.042682234197854996, 0.037100423127412796, 0.0705912783741951, 0.05894390493631363, -0.028374196961522102, -0.020224755629897118, 0.011721799150109291, -0.013703341595828533, -0.03674691170454025, -0.030048739165067673, -0.02950916439294815, -0.014633642509579659, 0.0056097181513905525, 0.0014535961672663689, -0.0007366825011558831, 0.02532280795276165, -0.017191972583532333, -0.09660250693559647, -0.03146279603242874, 0.028002075850963593, -0.039891328662633896, -0.01788969896733761, 0.02095039002597332, -0.08447137475013733, -0.01089383102953434, 0.021657418459653854, -0.028709104284644127, 0.00833550188690424, 0.008209911175072193, 0.04033787548542023, 0.06229298934340477, -0.025304201990365982, -0.024355294182896614, -0.04364974796772003, 0.04383580759167671, -0.03298849239945412, 0.030774373561143875, 0.036095697432756424, 0.020708512514829636, -0.07881514728069305, 0.011507829651236534, 0.007265654858201742, -0.041379813104867935, -0.0159174595028162, 0.03494212403893471, -0.02309008315205574, -0.058608993887901306, 0.031983766704797745, 0.007716851308941841, 0.010419377125799656, 0.01247534342110157, -0.0318349190056324, -0.037956301122903824, 0.015759307891130447, 0.06486061960458755, 0.05295276269316673, 0.08670410513877869, -0.016075611114501953, 0.035444486886262894 ]
23,299
parutils.logging.logger
_append_and_print
null
def _append_and_print(self, s, c_out): u.g.logs.append(s) self.logs.append(s) if c_out: print(s)
(self, s, c_out)
[ -0.052114278078079224, 0.032806772738695145, -0.05172351002693176, 0.0581534244120121, 0.06369522958993912, 0.010977035388350487, -0.01317954808473587, 0.03454746678471565, 0.030568735674023628, -0.05094197392463684, 0.010879343375563622, -0.0010141102829948068, 0.003379257395863533, 0.03184761479496956, 0.011962837539613247, 0.015808353200554848, -0.023321760818362236, -0.060533557087183, -0.021811973303556442, 0.004893484525382519, -0.0060480269603431225, 0.0644412413239479, 0.01054186187684536, 0.03486718609929085, -0.006421033293008804, 0.02399672381579876, 0.0031994152814149857, -0.05520489811897278, -0.0060036214999854565, 0.009769206866621971, 0.0016108090057969093, -0.08390860259532928, -0.05012490972876549, -0.05925467982888222, 0.011341161094605923, 0.031314749270677567, 0.016634294763207436, -0.01428968459367752, -0.0100178774446249, 0.021350156515836716, 0.016101429238915443, 0.050480153411626816, -0.02097715064883232, -0.020053517073392868, 0.011421090923249722, 0.07094220072031021, 0.021687638014554977, 0.08206133544445038, 0.026092663407325745, -0.07673268020153046, 0.016749748960137367, 0.016696462407708168, -0.01964498683810234, -0.04625275358557701, 0.03531124070286751, -0.024476302787661552, 0.053641825914382935, -0.04074647277593613, 0.01639450527727604, -0.0060036214999854565, -0.005963656585663557, 0.008632426150143147, 0.005670580547302961, 0.026003852486610413, 0.002236926229670644, 0.024227632209658623, -0.01822401024401188, 0.01730925776064396, -0.02380133979022503, 0.026128187775611877, -0.01964498683810234, -0.054672032594680786, -0.01920093223452568, -0.03708745911717415, -0.0515458881855011, 0.049840714782476425, -0.009991234168410301, 0.02513350360095501, -0.005475196056067944, -0.020604144781827927, -0.03101279027760029, 0.0067007876932621, -0.006372187286615372, 0.043623946607112885, 0.01169640477746725, -0.048206593841314316, -0.018401632085442543, -0.02419210784137249, -0.03412117436528206, 0.07183030992746353, -0.02760244905948639, -0.011447734199464321, -0.007904176600277424, 0.03431655839085579, 0.021350156515836716, -0.020017992705106735, -0.018330583348870277, -0.05648377537727356, -0.006878409534692764, 0.040107034146785736, -0.007309142965823412, 0.018934499472379684, 0.019041072577238083, -0.053251057863235474, -0.05907705798745155, -0.10366016626358032, -0.03861501067876816, 0.007118199020624161, 0.022291554138064384, 0.07250527292490005, -0.003563540056347847, -0.021438967436552048, 0.012682205997407436, -0.06461886316537857, 0.01980484649538994, -0.004658135585486889, 0.008028511889278889, -0.01606590487062931, -0.013747937977313995, -0.011678642593324184, 0.018970023840665817, -0.06135061755776405, 0.044547583907842636, -0.006873968988656998, -0.04202535003423691, -0.04092409461736679, -0.06923703104257584, 0.013072974979877472, 0.011607593856751919, -0.05246952176094055, 0.01323283463716507, -0.0069538988173007965, 0.009813612326979637, -0.020462047308683395, 0.05868628993630409, -0.00361682684160769, -0.07737211883068085, -0.0037611445877701044, -0.002702073659747839, 0.023428333923220634, -0.036661166697740555, -0.053535252809524536, -0.027531400322914124, -0.014449545182287693, 0.01889897510409355, -0.006030264776200056, 0.03301991894841194, 0.0650806799530983, -0.01130563672631979, 0.007611100096255541, -0.01717604137957096, -0.00549295824021101, -0.05957439914345741, -0.000533698417712003, -0.03632368519902229, 0.014405139721930027, -0.02186525985598564, -0.02394343726336956, 0.041101716458797455, -0.03115488775074482, -0.009556060656905174, -0.05953887477517128, 0.0031994152814149857, -0.006838444620370865, -0.0034569669514894485, 0.058473143726587296, -0.008237217552959919, 0.05659034848213196, -0.025399938225746155, 0.04760267958045006, 0.014556118287146091, 0.024351967498660088, 0.0007088225684128702, 0.03222062066197395, -0.048703934997320175, 0.01959170028567314, -0.004218521062284708, 0.029645102098584175, -0.00885001290589571, -0.03719403222203255, -0.023925675079226494, -0.004231842700392008, -0.016518840566277504, 0.07154611498117447, 0.005004498176276684, -0.035826344043016434, 0.00003417140760575421, -0.002235816093161702, -0.008565817959606647, 0.050977498292922974, -0.01026654802262783, 0.013952203094959259, 0.02627028524875641, -0.03554214909672737, -0.0100178774446249, 0.007135961204767227, -0.034636277705430984, -0.024316443130373955, 0.005239847116172314, -0.005768272560089827, -0.04383709281682968, 0.033943552523851395, -0.013303883373737335, -0.03960969299077988, 0.060355935245752335, 0.031669992953538895, 0.00406532222405076, 0.02824188768863678, -0.028810279443860054, -0.02666105329990387, -0.014138706028461456, 0.05925467982888222, 0.009778087958693504, -0.06007174029946327, -0.029929297044873238, 0.0021114808041602373, -0.05321553349494934, 0.016305694356560707, -0.0604269839823246, -0.012806542217731476, -0.021065961569547653, -0.018241772428154945, -0.041847728192806244, 0.041492484509944916, -0.10387331247329712, -0.0013033009599894285, 0.04170563071966171, 0.019165407866239548, 0.0026465668343007565, -0.0423450693488121, 0.06106642261147499, 0.05346420407295227, -0.004600408021360636, 0.0035524386912584305, -0.021616589277982712, 0.02749587595462799, -0.06014278903603554, 0.036217112094163895, 0.013072974979877472, -0.01626128889620304, -0.04952099546790123, 0.03415669873356819, -0.0034991521388292313, 0.023073090240359306, 0.035826344043016434, -0.020746242254972458, -0.0010340927401557565, 0.06422809511423111, 0.0002894682402256876, 0.02857936918735504, 0.04436996206641197, -0.020017992705106735, -0.022593511268496513, -0.05445888638496399, -0.002830849727615714, -0.04156353324651718, -0.027726784348487854, 0.022717846557497978, -0.00019122111552860588, -0.02044428512454033, -0.005506280343979597, 0.07012514024972916, 0.04838421568274498, -0.027904406189918518, -0.03174104169011116, -0.028845803812146187, -0.026820912957191467, -0.05037358030676842, 0.011429972015321255, 0.08589796721935272, 0.08639530837535858, 0.032753486186265945, 0.009831374511122704, 0.007384632248431444, -0.027371540665626526, 0.0020037975627928972, 0.0020759564358741045, 0.0027842239942401648, -0.04319765418767929, 0.010577386245131493, 0.0805693119764328, 0.03479613736271858, 0.009485011920332909, 0.007238094229251146, 0.03461851552128792, -0.042487166821956635, 0.015195556916296482, 0.005621734540909529, 0.011145777069032192, -0.03470732644200325, -0.015657374635338783, -0.009458368644118309, 0.007744316477328539, 0.027424827218055725, 0.00451603764668107, 0.014236398041248322, 0.03282453492283821, -0.007273618597537279, -0.004127489868551493, 0.0030573175754398108, -0.01914764568209648, -0.06838444620370865, 0.05484965443611145, 0.014049895107746124, -0.03733613342046738, -0.030444400385022163, -0.029005663469433784, 0.013001926243305206, -0.01592380739748478, -0.04468968138098717, -0.038082145154476166, 0.04696324095129967, -0.03470732644200325, 0.017025062814354897, -0.037833474576473236, 0.05900600925087929, -0.02907671220600605, -0.002322406740859151, 0.0018961142050102353, 0.01781548000872135, -0.015541919507086277, -0.006860647350549698, 0.010310953482985497, 0.020568620413541794, 0.000043191274016862735, -0.044014718383550644, 0.0026088221929967403, 0.0624873973429203, 0.008494769223034382, -0.008978788740932941, 0.01172304805368185, -0.0579402782022953, -0.04838421568274498, 0.028330698609352112, 0.04127933830022812, 0.0011734149884432554, -0.08234553039073944, -0.09996562451124191, 0.017096111550927162, -0.017460236325860023, -0.039858363568782806, 0.03492047265172005, -0.048455264419317245, 0.019023310393095016, 0.021545540541410446, 0.010257666930556297, 0.024014485999941826, 0.05953887477517128, -0.040853045880794525, 0.04774477705359459, 0.05925467982888222, -0.03461851552128792, 0.007238094229251146, 0.02127910777926445, 0.05907705798745155, 0.026927486062049866, -0.021705400198698044, -0.022593511268496513, 0.04611065611243248, -0.012575632892549038, 0.02547098696231842, 0.019573938101530075, 0.025790706276893616, -0.010994797572493553, -0.013765700161457062, 0.007082674652338028, 0.044263388961553574, -0.02127910777926445, 0.09499221295118332, -0.009467249736189842, -0.03536452725529671, -0.04557779058814049, 0.0809956043958664, -0.0009952379623427987, -0.04088857024908066, 0.05712321400642395, -0.015319892205297947, -0.0030129121150821447, -0.026625528931617737, -0.045044925063848495, 0.007175926119089127, -0.0022957634646445513, -0.043517373502254486, 0.001704060472548008, 0.04422786459326744, -0.0028708146419376135, 0.0022180539090186357, 0.037833474576473236, 0.0602138377726078, 0.03190090134739876, 0.014582761563360691, 0.03177656605839729, 0.03417446091771126, -0.05019595846533775, -0.054920703172683716, -0.04433443769812584, 0.01485807541757822, -0.009707039222121239, -0.06380180269479752, 0.02127910777926445, 0.034281034022569656, 0.046039607375860214, -0.03559543564915657, 0.028561607003211975, -0.04163458198308945, 0.017078349366784096, -0.06824234873056412, 0.00890329945832491, -0.04444101080298424, 0.05651929974555969, -0.005350860767066479, -0.0012799880933016539, -0.012859828770160675, -0.0424516424536705, 0.01980484649538994, 0.0045693241991102695, -0.011154658161103725, -0.0069761015474796295, -0.03085293062031269, 0.02582623064517975, -0.046288277953863144, -0.010772770270705223, 0.00962710939347744, 0.1361294537782669, 0.07929043471813202, -0.027211681008338928, -0.04081752151250839, 0.015284367837011814, 0.054423362016677856, -0.027815595269203186, -0.018099674955010414, 0.03296663239598274, -0.027193918824195862, 0.045044925063848495, 0.037940047681331635, 0.01944960281252861, 0.020923864096403122, -0.015808353200554848, -0.0027753429021686316, 0.03405012562870979, -0.00843260157853365, -0.0012233711313456297, -0.05861524119973183, 0.026394620537757874, 0.0471053384244442, 0.0629136934876442, -0.04177667945623398, -0.013099618256092072, -0.0012178204488009214, 0.013881154358386993, 0.03342844918370247, -0.044796254485845566, -0.02987601049244404, 0.05701664090156555, -0.02097715064883232, -0.052647143602371216, 0.015373178757727146, -0.023090852424502373, 0.010772770270705223, -0.006767395883798599, -0.033250827342271805, 0.053535252809524536, 0.03511585667729378, 0.027531400322914124, 0.0007526729605160654, 0.01093262992799282, 0.04405024275183678, 0.018295058980584145, -0.04355289787054062, -0.014245279133319855, 0.0826297253370285, 0.011980599723756313, -0.02094162628054619, -0.0268031507730484, -0.0007071573636494577, -0.002984048565849662, -0.018099674955010414, -0.0737486258149147, -0.04412129148840904, 0.0402846559882164, -0.05470755696296692, 0.01158095058053732, -0.016003737226128578, -0.010843819007277489, 0.0015575223369523883, 0.011847383342683315, 0.07467226684093475, -0.011492139659821987, -0.0024978085421025753, 0.017628977075219154, -0.030089156702160835, 0.02241588942706585, -0.0402846559882164, -0.0721145048737526, -0.04891708120703697, -0.030781881883740425, -0.04156353324651718, 0.03829529136419296, 0.005768272560089827, 0.012682205997407436, -0.017628977075219154, 0.0015786149306222796, -0.04735400900244713, -0.032806772738695145, 0.0031905341893434525, 0.004782470874488354, 0.025559797883033752, 0.0538194477558136, -0.05246952176094055, 0.05183008313179016, 0.060746703296899796, 0.025009168311953545, 0.0014731519622728229, -0.004451649729162455, -0.027140632271766663, -0.057727131992578506, -0.023517144843935966, -0.010177737101912498, 0.009271864779293537, -0.023872388526797295, 0.025364411994814873, 0.056661397218704224, -0.040213607251644135, -0.05893496051430702, 0.010683959349989891, 0.04280688613653183, -0.023179663345217705, 0.03158118203282356, -0.06394390016794205, 0.024991406127810478, -0.05229189991950989, 0.0427713617682457, -0.016829678788781166, -0.039076827466487885, 0.006389949470758438, 0.11730153113603592, 0.06216767802834511, -0.004578205291181803, 0.0025200112722814083, -0.028259649872779846, 0.018774639815092087, -0.013525910675525665, 0.035027045756578445, -0.05659034848213196, -0.0667148008942604, 0.023730291053652763, 0.016403386369347572, -0.017682263627648354, 0.030249016359448433, 0.008530293591320515, -0.027122870087623596, -0.034085649996995926, 0.031474608927965164, 0.06081775203347206, 0.027726784348487854, -0.02158106490969658, -0.034725088626146317, -0.002644346561282873, 0.020302187651395798, 0.002710954751819372, 0.06365970522165298, 0.026394620537757874, -0.0026243641041219234, 0.010675078257918358, 0.03154565766453743, -0.025542035698890686, 0.018579253926873207, -0.0072025698609650135, -0.010532980784773827, -0.013987727463245392, 0.028170838952064514, 0.0101244505494833, -0.0697343721985817, -0.03115488775074482, -0.05548909306526184, -0.004138591233640909, 0.007260296959429979, 0.0628071203827858, 0.06262949854135513, 0.04163458198308945, -0.057442933320999146, -0.04003598541021347, 0.05335763096809387, -0.02740706503391266, 0.04106619209051132, 0.003394799306988716, -0.014200873672962189, -0.011962837539613247, -0.0650806799530983, 0.03380145505070686, 0.01108360942453146, 0.01584387756884098, -0.04344632476568222, -0.027904406189918518, 0.0015819453401491046, -0.02275337092578411, 0.0471053384244442, 0.036217112094163895, -0.02873922884464264, 0.046572472900152206, -0.022344840690493584, 0.05683901906013489, -0.0333574004471302, -0.022646797820925713, 0.021154772490262985, -0.02072848007082939, 0.013463743031024933, 0.014849194325506687, -0.004582645837217569, 0.04014255851507187, -0.05090644955635071, 0.020319949835538864, -0.013410456478595734, 0.0064743198454380035, -0.020266663283109665, -0.035826344043016434, 0.030249016359448433, -0.004511597100645304, 0.08937936276197433, 0.07950358092784882, 0.04284241050481796, 0.062274251133203506, -0.004520478192716837, 0.03950311988592148, -0.03683878853917122, 0.008508090861141682, -0.05090644955635071, -0.015222200192511082, 0.032611388713121414, -0.03282453492283821, -0.0029751674737781286, 0.07822470366954803, -0.011847383342683315, 0.010222142562270164, 0.00020981591660529375, -0.03676773980259895, -0.008281623013317585, -0.04380156844854355, -0.019982468336820602, -0.004025357309728861, -0.022344840690493584, -0.026394620537757874, -0.025151265785098076, -0.05801132693886757, 0.03168775513768196, 0.044796254485845566, -0.003052877029404044, -0.03476061299443245, 0.001321063144132495, -0.0380110964179039, -0.0036057254765182734, 0.02561308443546295, 0.002435640897601843, 0.0445120595395565, -0.009485011920332909, 0.0427713617682457, 0.03893472999334335, 0.05790475383400917, 0.021758686751127243, 0.012229270301759243, -0.02053309604525566, -0.016829678788781166, 0.03511585667729378, -0.06067565456032753, -0.03722956031560898, 0.00928074587136507, 0.02429868094623089, 0.024405254051089287, 0.003734501311555505, -0.0014964648289605975, -0.05708768963813782, -0.08298496901988983, -0.019343029707670212, -0.008468125946819782, 0.002577738370746374, -0.054529935121536255, 0.03177656605839729, 0.025311125442385674, 0.026128187775611877, -0.05016043409705162, 0.006212327163666487, 0.0075933379121124744, 0.01914764568209648, -0.1006050631403923, 0.00575051037594676, 0.07538275420665741, -0.005262049846351147, 0.021954070776700974, -0.011563188396394253, -0.06426361948251724, -0.055915385484695435, -0.0010368680814281106, -0.009733682498335838, -0.02158106490969658, 0.030781881883740425, 0.046430375427007675, 0.024618400260806084, -0.06916598230600357, 0.02241588942706585, -0.006199005525559187, 0.0652938261628151, 0.04923680052161217, 0.018073031678795815, -0.0010973705211654305, -0.007073793560266495, -0.028028741478919983, 0.0314568467438221, -0.048810508102178574, -0.015346535481512547, 0.018126318231225014, 0.019236456602811813, 0.08703474700450897, -0.0034991521388292313, -0.015559681691229343, -0.05257609486579895, -0.031669992953538895, 0.03698088601231575, -0.049698617309331894, -0.006327781360596418, 0.04866841062903404, 0.0018061931477859616, 0.02127910777926445, 0.046785619109869, -0.022042883560061455, -0.01584387756884098, -0.010373121127486229, -0.05051567777991295, -0.017131635919213295, 0.06611088663339615, 0.0005339759518392384, -0.04799344763159752, 0.01079053245484829, -0.010604029521346092, 0.032060761004686356, -0.002890797099098563, -0.0027220561169087887, -0.06369522958993912, -0.04341080039739609, 0.014653810299932957, -0.03701641038060188, -0.014627167023718357, -0.01436961442232132, 0.07257632166147232, -0.037051934748888016, -0.027709022164344788, -0.02788664400577545, 0.0446186326444149, 0.028597131371498108, -0.0423450693488121, 0.02774454653263092, 0.038188718259334564, -0.008583580143749714, -0.04532912001013756, 0.047318484634160995, 0.009937947615981102, 0.008738999255001545, -0.008770083077251911, 0.022895468398928642, 0.01875687763094902, 0.0007626641890965402, -0.025293363258242607, -0.012477940879762173, 0.024849308654665947, 0.035329002887010574, 0.054672032594680786, 0.07445912063121796, -0.06369522958993912, 0.048703934997320175 ]
23,300
parutils.logging.logger
_handle_e
null
def _handle_e(self, str_in, e): s = f"Warning: the following message couldn't be logged because of {e}: {u.truncate(str_in, 256)}" self.buffer += s + '\n' self.err_count += 1 if self.err_count > const.MAX_ERR_COUNT: s += f"\nThe number of logging errors in a row reached the maximum set limit of {const.MAX_ERR_COUNT}. Disabling file_write." self.buffer += s + '\n' self.file_write = False return s
(self, str_in, e)
[ -0.06907202303409576, 0.023920807987451553, -0.010450483299791813, 0.07441622763872147, 0.02421364188194275, -0.0232253298163414, 0.015501854941248894, 0.03484714403748512, -0.0299787949770689, -0.10549314320087433, 0.03916643559932709, 0.02767273411154747, -0.031205033883452415, -0.02452477626502514, 0.003097625682130456, 0.03393204137682915, -0.027800848707556725, -0.015373741276562214, 0.044803474098443985, 0.005888691637665033, -0.04451064020395279, -0.02333514206111431, -0.008075789548456669, -0.022163810208439827, -0.030784085392951965, 0.04008153825998306, 0.023609673604369164, -0.00803461018949747, 0.047146137803792953, -0.048207659274339676, -0.036219801753759384, -0.06068967282772064, 0.000022573747628484853, 0.01341541949659586, 0.010322368703782558, -0.042497411370277405, 0.005906993988901377, -0.03574394807219505, -0.014138351194560528, -0.02229192480444908, -0.05190467834472656, 0.04410799592733383, -0.012207482010126114, -0.00019617534417193383, 0.01620648428797722, 0.009086978621780872, -0.007924797013401985, 0.061641380190849304, -0.014568449929356575, 0.022255320101976395, -0.05044051259756088, 0.03923964500427246, -0.012399653904139996, 0.005097127053886652, 0.039203040301799774, 0.018384432420134544, 0.03116842918097973, -0.020260393619537354, -0.007064600009471178, -0.057871151715517044, -0.04410799592733383, 0.03426147997379303, 0.003440789645537734, -0.004385634325444698, 0.00803461018949747, -0.02181607112288475, 0.02004076912999153, 0.0038251332007348537, -0.014248163439333439, 0.024085527285933495, -0.012170878238976002, -0.05695604905486107, -0.026007244363427162, 0.012298992834985256, -0.0030793237965554, -0.04037437215447426, -0.013836367055773735, 0.08045590668916702, 0.015410345047712326, 0.019381893798708916, 0.05205109342932701, -0.03792189434170723, 0.06310554593801498, 0.02145002968609333, 0.04824426397681236, -0.035286396741867065, -0.021779466420412064, 0.020736247301101685, -0.007824135944247246, 0.056626610457897186, -0.007993429899215698, -0.03634791448712349, -0.037372831255197525, -0.005591283086687326, -0.031095221638679504, 0.01179568562656641, -0.0012433970114216208, -0.011466247960925102, 0.06050665304064751, -0.05618736147880554, 0.014659959822893143, 0.060762882232666016, 0.06918183714151382, -0.05380809307098389, 0.009636040776968002, -0.07884532958269119, 0.04070381075143814, -0.023042310029268265, 0.019546613097190857, 0.00035174295771867037, 0.03891020640730858, -0.05435715615749359, -0.022584756836295128, -0.02468949556350708, -0.02803877554833889, 0.023207027465105057, -0.023664578795433044, -0.02567780762910843, 0.011658419854938984, -0.019125666469335556, 0.05051371827721596, -0.036494333297014236, -0.08287178725004196, -0.04000832885503769, -0.005252694711089134, 0.0037679390516132116, -0.04293666034936905, -0.020150581374764442, 0.038361143320798874, -0.018814530223608017, -0.044217806309461594, 0.0374460406601429, 0.0895337387919426, -0.021779466420412064, -0.019162269309163094, 0.017871974036097527, -0.03770226985216141, 0.055894527584314346, 0.019162269309163094, -0.04970842972397804, -0.018539998680353165, 0.008336594328284264, 0.0011124227894470096, -0.03398694843053818, 0.03147956356406212, 0.030893897637724876, 0.05512584373354912, 0.020699644461274147, 0.004506885539740324, -0.028331607580184937, 0.012564372271299362, 0.028532931581139565, -0.09568323194980621, 0.021834371611475945, -0.003376732347533107, 0.019272081553936005, -0.0014721729094162583, -0.012472862377762794, 0.005092551466077566, -0.013241549022495747, 0.01683790609240532, -0.10110064595937729, 0.00039492439827881753, 0.023371746763586998, 0.03034483641386032, -0.008116968907415867, 0.005879540927708149, 0.03850756213068962, 0.028075378388166428, 0.026794234290719032, 0.00207957299426198, 0.06427688151597977, 0.0061357696540653706, 0.07174412161111832, -0.025714412331581116, 0.08594653010368347, 0.01561166811734438, 0.010423030704259872, -0.047475576400756836, -0.02134021557867527, 0.00667110551148653, -0.0004012157442048192, 0.005353356245905161, 0.031186731532216072, 0.02981407567858696, -0.03422487527132034, 0.004612122196704149, -0.013470325618982315, -0.03173579275608063, -0.0011198580032214522, -0.016462713479995728, -0.01472401712089777, 0.006414876319468021, -0.013863819651305676, -0.019528310745954514, 0.05022088810801506, 0.004566367249935865, -0.024140434339642525, 0.04132607951760292, -0.05970136076211929, -0.07419659942388535, 0.09085148572921753, -0.015282230451703072, -0.04549895226955414, 0.016233937814831734, 0.031882211565971375, 0.05673642456531525, 0.004394785035401583, -0.0931941494345665, 0.03526809439063072, -0.026849139481782913, 0.014129200018942356, -0.01244540885090828, 0.05329563468694687, 0.02302400767803192, 0.014788074418902397, 0.026812536641955376, 0.0419483482837677, -0.03556092828512192, 0.04344911873340607, 0.018796227872371674, 0.007929372601211071, 0.00968179665505886, -0.022676268592476845, 0.03971549868583679, -0.01454099640250206, 0.020004164427518845, 0.02961275354027748, 0.037171509116888046, 0.04634084552526474, -0.03202862665057182, 0.030454648658633232, -0.0054997727274894714, 0.09670814871788025, 0.039312850683927536, 0.023152122274041176, -0.012829752638936043, -0.05047711730003357, 0.009544530883431435, -0.005961900111287832, -0.05563829839229584, -0.007938523776829243, -0.028423119336366653, 0.04385176673531532, 0.05648019537329674, -0.05439376085996628, 0.01626139134168625, 0.13389796018600464, -0.013854668475687504, 0.018640661612153053, 0.05563829839229584, 0.03656753897666931, -0.09158357232809067, -0.0444740355014801, -0.027654431760311127, -0.0025577147025614977, 0.0067580402828752995, -0.002461628755554557, -0.015410345047712326, -0.012930413708090782, -0.0033698691986501217, -0.0026743903290480375, 0.016728093847632408, 0.01894264481961727, 0.018292920663952827, -0.04216797649860382, -0.022218715399503708, -0.0104138795286417, 0.06266629695892334, 0.0256229005753994, -0.012088518589735031, 0.05428394675254822, -0.011255774646997452, 0.012399653904139996, -0.057248882949352264, 0.002710994565859437, 0.016297996044158936, 0.045535556972026825, 0.028953878208994865, 0.04000832885503769, 0.02620856836438179, 0.054686591029167175, 0.033968646079301834, 0.07258602231740952, -0.004518324043601751, 0.007384886033833027, 0.010688410140573978, -0.05863983929157257, -0.005261845886707306, 0.016252240166068077, -0.06654633581638336, -0.020388508215546608, 0.008958864025771618, 0.003699306398630142, -0.03259599208831787, -0.021614747121930122, 0.03989851847290993, -0.05885946378111839, 0.007705172523856163, -0.005495197139680386, -0.022346829995512962, 0.010175952687859535, -0.013085981830954552, -0.02077285200357437, -0.032046929001808167, -0.0475853867828846, 0.021797768771648407, -0.05999419465661049, 0.03781208023428917, -0.05684623867273331, -0.016554225236177444, 0.025201953947544098, -0.006629925686866045, 0.010917185805737972, 0.03552432358264923, 0.08074874430894852, 0.020699644461274147, 0.01700262539088726, -0.0263183806091547, 0.05281978100538254, -0.0017913153860718012, 0.014714865945279598, 0.036109987646341324, -0.03986191377043724, -0.005879540927708149, -0.0030015399679541588, 0.02708706632256508, -0.01352523174136877, 0.021157195791602135, -0.055894527584314346, -0.034700728952884674, -0.07415999472141266, -0.0481344498693943, -0.06661954522132874, -0.00784243829548359, -0.058932673186063766, 0.0007235038210637867, -0.045901596546173096, 0.02009567618370056, -0.011960403993725777, -0.0292833149433136, 0.03964228928089142, 0.03839774802327156, 0.06709539890289307, 0.020955873653292656, -0.012848054990172386, 0.005463168490678072, -0.029960492625832558, 0.04597480595111847, 0.05450357124209404, 0.02888067066669464, -0.030363138765096664, -0.05344204977154732, -0.021248705685138702, 0.033968646079301834, 0.0016117262421175838, -0.05245373770594597, 0.00012932988465763628, 0.0006502955220639706, 0.04582839086651802, -0.024561380967497826, -0.05439376085996628, 0.02249324694275856, -0.0007583921542391181, -0.05399111285805702, 0.02134021557867527, -0.003706169780343771, 0.014659959822893143, 0.05889606848359108, 0.04326609894633293, -0.03409676253795624, -0.00896801520138979, 0.03634791448712349, -0.02060813270509243, -0.047475576400756836, 0.04634084552526474, -0.01982114464044571, 0.015529308468103409, -0.06522858887910843, 0.0001309027138631791, 0.05889606848359108, 0.02375609055161476, -0.06409385800361633, -0.029887285083532333, -0.012783997692167759, -0.013333059847354889, -0.007293375674635172, 0.006401150021702051, 0.0054997727274894714, 0.016297996044158936, -0.028057077899575233, 0.004259807523339987, 0.06691237539052963, 0.00803461018949747, -0.02479930780827999, -0.007471821270883083, -0.0475853867828846, -0.005545528139919043, -0.01589534990489483, 0.05812738090753555, -0.05790775641798973, 0.05399111285805702, -0.03680546581745148, 0.05135561525821686, 0.0010884014191105962, 0.02897218056023121, 0.030253326520323753, 0.019070759415626526, 0.013671647757291794, 0.0464506596326828, -0.022840986028313637, 0.015593365766108036, -0.00034487966331653297, -0.02933822199702263, -0.029411429539322853, -0.0054768952541053295, -0.025915734469890594, -0.10241840034723282, -0.044803474098443985, -0.025201953947544098, -0.06043344363570213, -0.011420493014156818, 0.025183651596307755, 0.03634791448712349, 0.005925295874476433, -0.0343346893787384, -0.06760785728693008, 0.0005753713776357472, 0.019491707906126976, 0.028898973017930984, -0.08038270473480225, 0.009045799262821674, -0.045901596546173096, -0.040667206048965454, 0.012509466148912907, -0.02421364188194275, -0.02860613912343979, -0.0020990190096199512, 0.007014269474893808, 0.022731173783540726, 0.02159644477069378, 0.005238968413323164, 0.0189975518733263, 0.024927422404289246, 0.08836240321397781, -0.008304565213620663, -0.015593365766108036, 0.02176116406917572, -0.018009239807724953, 0.010038686916232109, 0.029265014454722404, -0.00028082242351956666, -0.07401358336210251, -0.010468785651028156, 0.016078369691967964, -0.02049832046031952, -0.04158230870962143, 0.0008790714200586081, 0.0005127440090291202, 0.023518163710832596, -0.06310554593801498, 0.0779668316245079, -0.021157195791602135, -0.00420947652310133, 0.015135813504457474, 0.012967018410563469, 0.05135561525821686, -0.024561380967497826, -0.00562331173568964, 0.026904046535491943, 0.005655340384691954, -0.026117056608200073, -0.0037542125210165977, 0.03680546581745148, -0.029850680381059647, -0.03451770916581154, 0.03532300144433975, 0.05000126361846924, 0.07503850013017654, 0.04948880523443222, 0.030381441116333008, -0.034554313868284225, 0.035707343369722366, -0.008908533491194248, 0.03312675282359123, -0.010807373560965061, 0.023554766550660133, -0.04085022583603859, 0.006364545784890652, 0.038214728236198425, 0.0008012875914573669, -0.0004661309067159891, 0.016124125570058823, -0.04886653274297714, 0.022401737049221992, -0.023975715041160583, -0.023829298093914986, -0.00800258107483387, -0.018430186435580254, -0.016590828076004982, 0.002060126978904009, -0.06497235596179962, -0.04923257604241371, -0.05230732262134552, 0.019912654533982277, -0.05062353238463402, 0.04681670293211937, 0.057358693331480026, -0.004669316112995148, -0.03642112389206886, 0.012765695340931416, 0.03788528963923454, 0.062373463064432144, 0.04593820124864578, 0.01114596240222454, -0.05219751223921776, 0.01726800575852394, -0.013433720916509628, 0.000005218950263952138, -0.004566367249935865, 0.0002087580069201067, -0.010651806369423866, -0.015556761994957924, -0.06230025365948677, 0.0085836723446846, -0.019839446991682053, 0.06585085391998291, 0.026281775906682014, -0.01372655387967825, 0.03316335380077362, -0.08104157447814941, 0.02992388792335987, 0.06566783785820007, -0.04721934720873833, -0.006474358029663563, 0.03825133293867111, -0.007709748111665249, -0.043815162032842636, -0.0011095631634816527, -0.002898590639233589, -0.020333603024482727, -0.02348155900835991, 0.01315919030457735, -0.05951834097504616, -0.040410976856946945, 0.0017775887390598655, 0.019638122990727425, 0.017286308109760284, 0.010587749071419239, -0.05388130247592926, 0.035597529262304306, 0.005627887323498726, 0.04425441101193428, 0.009938024915754795, 0.02651970274746418, -0.04721934720873833, 0.028313305228948593, 0.04257062077522278, -0.04743897169828415, 0.005303025711327791, -0.014339673332870007, -0.021010778844356537, 0.04440082609653473, -0.000995175214484334, -0.04293666034936905, -0.0007955682231113315, -0.01673724502325058, 0.000544486625585705, -0.05593113228678703, 0.01207936741411686, -0.02474440261721611, 0.011356435716152191, -0.02364627830684185, -0.041143059730529785, -0.07141468673944473, -0.010578597895801067, 0.00836862251162529, 0.007906495593488216, 0.029484638944268227, 0.07269582897424698, -0.04952540621161461, -0.025513088330626488, -0.0026469372678548098, 0.033401280641555786, 0.005174911115318537, 0.0028299579862505198, 0.0354694165289402, 0.00004729226930066943, -0.018054993823170662, 0.07002373039722443, 0.011283227242529392, -0.04619443044066429, 0.01945510320365429, -0.0687059834599495, 0.022474944591522217, 0.057139068841934204, 0.015785537660121918, -0.01648101583123207, 0.020205488428473473, 0.020699644461274147, -0.05486961454153061, 0.05157523974776268, -0.009064101614058018, 0.039093226194381714, 0.04462045431137085, -0.03653093799948692, 0.054686591029167175, 0.010825675912201405, -0.01867726445198059, 0.05051371827721596, -0.03155277296900749, 0.031625982373952866, 0.0006674536853097379, 0.010276613757014275, -0.035432811826467514, 0.009654343128204346, 0.051135990768671036, 0.018549149855971336, 0.04776841029524803, 0.045901596546173096, -0.003546026535332203, 0.07664907723665237, -0.024177037179470062, -0.02097417414188385, -0.0016654885839670897, 0.011786534450948238, -0.001687222276814282, -0.04857369884848595, -0.06815692037343979, -0.059298716485500336, -0.08455557376146317, 0.030161814764142036, -0.016334598883986473, -0.012729091569781303, -0.03398694843053818, 0.0464506596326828, 0.0015465251635760069, -0.010322368703782558, -0.05109938606619835, 0.004449691157788038, 0.07317168265581131, -0.013470325618982315, -0.05278317630290985, -0.047365762293338776, 0.007924797013401985, 0.09678135812282562, 0.012097669765353203, -0.04246080666780472, -0.0001346918143099174, -0.02668442204594612, 0.03902001678943634, 0.06259308755397797, 0.020205488428473473, 0.014019387774169445, -0.010267462581396103, 0.061128921806812286, 0.017130739986896515, 0.034975260496139526, 0.03532300144433975, 0.02567780762910843, 0.009562833234667778, -0.03071087785065174, 0.013488627038896084, -0.013552684336900711, 0.022255320101976395, 0.007133232895284891, 0.006204402539879084, -0.011777383275330067, 0.024451568722724915, -0.04817105457186699, 0.007197290193289518, -0.05501602962613106, 0.008675182238221169, -0.007178987842053175, 0.04634084552526474, -0.02375609055161476, 0.05135561525821686, 0.016041766852140427, -0.000010991967428708449, -0.03975209966301918, -0.006350819021463394, 0.03338297829031944, -0.019107364118099213, -0.09253527969121933, 0.01919887401163578, 0.04710953310132027, -0.02238343469798565, 0.009672645479440689, -0.00007864171493565664, -0.0213951226323843, -0.015337136574089527, -0.03704339638352394, -0.08440915495157242, 0.003985276445746422, -0.028587836772203445, 0.0021642199717462063, 0.0026652393862605095, 0.024140434339642525, 0.0016666324809193611, 0.003072460414841771, 0.04092343524098396, 0.04458384960889816, 0.01972963474690914, 0.0011907785665243864, 0.009535379707813263, -0.045315932482481, -0.03923964500427246, -0.05022088810801506, -0.04315628856420517, -0.032504480332136154, 0.009544530883431435, 0.051026176661252975, 0.020846061408519745, -0.023737788200378418, -0.05388130247592926, 0.00326234451495111, 0.029887285083532333, -0.04008153825998306, 0.022731173783540726, 0.013644195161759853, -0.043229494243860245, -0.00845098216086626, -0.008780418895184994, 0.01372655387967825, -0.05977457016706467, -0.024177037179470062, -0.08008986711502075, -0.04487667977809906, 0.03071087785065174, -0.023810995742678642, -0.010725014843046665, -0.01831122301518917, -0.05497942492365837, 0.0554552786052227, 0.007911071181297302, -0.002363255014643073, -0.013305606320500374, 0.017139891162514687, 0.007092053070664406, -0.0109812431037426, 0.04864690825343132, 0.0171673446893692, -0.025824224576354027, -0.02961275354027748, 0.0007154966588132083, 0.03923964500427246, 0.010002082213759422, 0.08931411057710648, -0.03656753897666931, 0.032669197767972946, 0.01711243763566017, -0.013872970826923847, -0.04451064020395279, 0.05014767870306969, 0.0013921014033257961, -0.05765152722597122, 0.011393040418624878, 0.014293918386101723, -0.011438795365393162, 0.03457261621952057, -0.00445884233340621, 0.020168883726000786, 0.01730460859835148, 0.06131194159388542, -0.024103829637169838, 0.0678640827536583, -0.003719896310940385, 0.013168341480195522 ]
23,301
parutils.logging.logger
_write_log
null
def _write_log(self, str_in, c_out): s = str(str_in) if not self.file_write: self._append_and_print(s, c_out) return try: with open(self.log_path, 'a', encoding='utf-8') as in_file: in_file.write(self.buffer + s + '\n') self.buffer = '' self.err_count = 0 except Exception as e: s = self._handle_e(str_in, e) self._append_and_print(s, c_out)
(self, str_in, c_out)
[ -0.049063462764024734, 0.024549756199121475, -0.026063838973641396, 0.08039054274559021, 0.02503642626106739, -0.05616522952914238, -0.032228317111730576, 0.08709575980901718, 0.01493353396654129, -0.07004431635141373, 0.056742023676633835, 0.021052949130535126, -0.01797972247004509, 0.021575666964054108, 0.019178371876478195, 0.02783026732504368, -0.05962598696351051, -0.08738415688276291, -0.027758168056607246, 0.0318317711353302, -0.03275103494524956, 0.013879084028303623, -0.04571085423231125, 0.03875328600406647, 0.004902741406112909, 0.02199023775756359, -0.01709650829434395, -0.003269245382398367, 0.014113406650722027, -0.029704846441745758, 0.01941269263625145, -0.07649718970060349, -0.0028276380617171526, -0.030461886897683144, -0.010346226394176483, -0.02397296391427517, 0.06214945763349533, -0.0550837442278862, 0.003580173011869192, -0.009048442356288433, -0.008507698774337769, 0.057354867458343506, -0.01533909235149622, -0.010670673102140427, 0.007322568912059069, 0.03166954591870308, -0.031975969672203064, 0.04881111904978752, 0.025378897786140442, -0.0015411190688610077, -0.03381449729204178, -0.010625611059367657, -0.04498986154794693, -0.012211792171001434, 0.043764177709817886, 0.015537364408373833, 0.04585505276918411, -0.03372437134385109, -0.02451370842754841, -0.036157719790935516, -0.02853323519229889, 0.0023747654631733894, 0.03271498531103134, -0.0069665792398154736, -0.016114158555865288, 0.04167330265045166, -0.030696209520101547, 0.025360872969031334, -0.002530229277908802, 0.033940669149160385, 0.0062951561994850636, -0.08543748408555984, -0.004589560907334089, -0.003798723453655839, -0.024982351809740067, 0.043764177709817886, -0.00921066477894783, 0.08248141407966614, 0.029831018298864365, 0.0030484418384730816, -0.045566655695438385, -0.045999251306056976, -0.0011986482422798872, -0.004830642137676477, 0.006182501092553139, -0.042430344969034195, -0.031345099210739136, -0.017637252807617188, -0.021125048398971558, 0.026604581624269485, -0.045134060084819794, -0.0041366880759596825, -0.020620353519916534, 0.008557266555726528, 0.027974465861916542, -0.024928277358412743, -0.011824258603155613, -0.030642135068774223, 0.012337964959442616, 0.045566655695438385, -0.03343597427010536, 0.0283349622040987, 0.015852797776460648, -0.03969057649374008, -0.017826512455940247, -0.13309501111507416, -0.007993992418050766, 0.003731130389496684, 0.004785580560564995, 0.007146827410906553, -0.01662786491215229, -0.041709352284669876, -0.01725873164832592, -0.075415700674057, 0.010400300845503807, -0.001516335061751306, -0.03561697527766228, -0.009913631714880466, -0.0258475411683321, -0.007295531686395407, 0.04888321831822395, -0.052884720265865326, -0.0034923020284622908, 0.011526850052177906, -0.014987608417868614, -0.034030795097351074, -0.04527825862169266, 0.02683890424668789, 0.04257454350590706, 0.010787833482027054, -0.005384904332458973, 0.04167330265045166, 0.09553135931491852, -0.004636875819414854, 0.01109425537288189, 0.03377844765782356, -0.07137814909219742, 0.027307549491524696, -0.011968457140028477, 0.018980098888278008, 0.02171986550092697, -0.06402403861284256, -0.037058956921100616, -0.022657154127955437, 0.04452122002840042, 0.03990687429904938, 0.033760420978069305, 0.013969208113849163, -0.01688922382891178, -0.006466391496360302, 0.016699962317943573, 0.003084491239860654, -0.14838002622127533, -0.007376643363386393, -0.002426586579531431, -0.05025310069322586, -0.020620353519916534, -0.007944423705339432, 0.0012707473943009973, -0.04336763173341751, -0.022242585197091103, -0.037599701434373856, 0.017664289101958275, 0.019610965624451637, 0.03961847722530365, 0.006461885292083025, 0.011689073406159878, 0.022116411477327347, 0.0022542246151715517, -0.024027038365602493, -0.011752159334719181, 0.02620803751051426, -0.015699587762355804, 0.06676380336284637, -0.04679234325885773, 0.016312429681420326, 0.00458280136808753, -0.04549455642700195, -0.003417949890717864, -0.016573790460824966, -0.010319189168512821, -0.007737138774245977, -0.013527601025998592, 0.08673526346683502, 0.017141571268439293, -0.024928277358412743, -0.041889600455760956, 0.020962825044989586, -0.025541121140122414, 0.04185355082154274, 0.00872399564832449, -0.005601202137768269, 0.01350056380033493, -0.03520240634679794, 0.010156966745853424, 0.017204657196998596, -0.02272925339639187, -0.03365227207541466, 0.017195645719766617, 0.01637551747262478, -0.03709500655531883, 0.09589185565710068, 0.006200525909662247, -0.023143824189901352, 0.06535787135362625, 0.007286519277840853, 0.04095230996608734, 0.02824483811855316, -0.0679534375667572, 0.011058205738663673, -0.0008313931757584214, 0.05411040410399437, -0.032498687505722046, -0.02512655034661293, -0.023233948275446892, 0.01968306489288807, -0.04358392953872681, 0.05205557867884636, -0.06611490994691849, 0.019358618184924126, -0.019376643002033234, 0.03731130436062813, -0.04178145155310631, 0.03720315545797348, -0.03444536402821541, -0.021593691781163216, 0.048775069415569305, 0.05425460264086723, 0.008147202432155609, -0.021449493244290352, 0.02038603089749813, 0.021791964769363403, 0.02056627906858921, 0.026171987876296043, -0.018655652180314064, -0.0023927902802824974, -0.06971986591815948, 0.002071723807603121, -0.025649268180131912, -0.022026287391781807, -0.07173864543437958, -0.03076830878853798, -0.011779196560382843, 0.05724671855568886, 0.04567480459809303, -0.030101390555500984, -0.009426962584257126, 0.089835524559021, 0.015393165871500969, 0.023936914280056953, 0.09264739602804184, 0.0074126929976046085, -0.11867518723011017, -0.04697258770465851, 0.018123921006917953, -0.009895606897771358, -0.01706947200000286, -0.031975969672203064, 0.01058956142514944, -0.01903417333960533, -0.012905745767056942, 0.045999251306056976, 0.06391588598489761, -0.058184005320072174, 0.02691100351512432, -0.05901314690709114, -0.017195645719766617, -0.0507938452064991, 0.018745776265859604, 0.05890499800443649, 0.037167105823755264, 0.0776507705450058, 0.009517086669802666, 0.018529478460550308, -0.043151333928108215, -0.034391291439533234, 0.003954187035560608, 0.016150208190083504, 0.003055201144888997, 0.018205033615231514, 0.04051971808075905, 0.06827788800001144, 0.051659032702445984, 0.037527602165937424, 0.037239205092191696, -0.00876905769109726, -0.01328426692634821, -0.057354867458343506, 0.035905372351408005, -0.012085618451237679, -0.05551633611321449, 0.0011485167779028416, -0.031615473330020905, 0.0729282796382904, -0.023630492389202118, 0.05219977721571922, 0.010490424931049347, -0.07181074470281601, 0.017916636541485786, -0.02835298702120781, -0.024802103638648987, 0.004416072275489569, 0.03684265911579132, -0.01993541233241558, -0.049856554716825485, -0.010283139534294605, -0.04459331929683685, -0.002246338874101639, -0.021755915135145187, -0.013969208113849163, -0.026694705709815025, 0.0015749156009405851, -0.03480586037039757, 0.0008640630985610187, 0.0009699587244540453, 0.04192565008997917, 0.005709350574761629, -0.009805482812225819, 0.0339767187833786, 0.007633496541529894, -0.011436725966632366, 0.0120225315913558, 0.02620803751051426, 0.002690199064090848, 0.03464363515377045, -0.043331582099199295, 0.04106045886874199, 0.031146828085184097, 0.0009440481080673635, -0.03502215817570686, -0.0010420578764751554, 0.005623732693493366, -0.03628389164805412, 0.018817875534296036, 0.02887570485472679, -0.04480961710214615, -0.028641384094953537, -0.07267593592405319, 0.03159744665026665, -0.004726999904960394, -0.00818775873631239, 0.03997897356748581, 0.015077732503414154, 0.027415698394179344, -0.04033946990966797, -0.004366504028439522, -0.01681712456047535, -0.016654901206493378, -0.05641757696866989, 0.0683860331773758, 0.005452497396618128, -0.06088772416114807, 0.007309050299227238, -0.012707473710179329, 0.028389036655426025, 0.020872700959444046, -0.05616522952914238, -0.03684265911579132, 0.03641006723046303, -0.016591815277934074, 0.01476229913532734, 0.007953436113893986, 0.030443862080574036, -0.03505820780992508, -0.03401276841759682, 0.0025888097006827593, 0.035995494574308395, 0.029037928208708763, 0.06503342092037201, 0.007692077197134495, 0.0021235449239611626, -0.04661209508776665, 0.0692872703075409, 0.005128051154315472, -0.05421855300664902, 0.07274803519248962, 0.0037063464988023043, -0.00996770616620779, -0.04971235617995262, -0.030281638726592064, 0.035274505615234375, -0.0018847165629267693, -0.049604207277297974, -0.006804356351494789, 0.030966579914093018, -0.013040931895375252, -0.008944799192249775, 0.02370259165763855, 0.08637476712465286, 0.03130904957652092, -0.007876831106841564, 0.03806834667921066, 0.043692078441381454, -0.05948178842663765, -0.04419677332043648, -0.008336463011801243, 0.014077357016503811, 0.03896958380937576, -0.02467592991888523, 0.06492527574300766, -0.03271498531103134, 0.049423959106206894, -0.011923395097255707, 0.06214945763349533, -0.019538866356015205, 0.056561775505542755, -0.04506196081638336, 0.018042810261249542, 0.022927526384592056, 0.010977094061672688, -0.01921442151069641, 0.04192565008997917, 0.01014795433729887, -0.03907773271203041, -0.005867067724466324, -0.003631994128227234, -0.005614720284938812, -0.07570409774780273, -0.03505820780992508, 0.008295907638967037, -0.044304922223091125, 0.021701840683817863, 0.04819827526807785, 0.07966955006122589, 0.04293503612279892, -0.04884716868400574, -0.015978971496224403, -0.0015152085106819868, 0.03377844765782356, 0.005939166527241468, -0.007232444826513529, 0.0532812625169754, -0.030191514641046524, 0.028064589947462082, 0.02029590867459774, 0.010814870707690716, -0.005344348959624767, -0.004274127073585987, 0.00867442786693573, 0.02853323519229889, 0.01993541233241558, -0.012292902916669846, -0.01573563739657402, 0.034030795097351074, 0.019178371876478195, 0.02004356123507023, -0.012410064227879047, 0.0009316560463048518, 0.0532812625169754, 0.03900563344359398, 0.0706571564078331, -0.02691100351512432, -0.06669170409440994, 0.051659032702445984, -0.011598949320614338, -0.027884341776371002, -0.026856929063796997, -0.04250244423747063, 0.034481413662433624, 0.009940668940544128, -0.05548028647899628, 0.08997972309589386, 0.06979196518659592, -0.01780848763883114, -0.017015397548675537, 0.024730004370212555, 0.009228689596056938, 0.012743523344397545, 0.009769433178007603, -0.014158468693494797, 0.03961847722530365, 0.025234699249267578, -0.03583327308297157, 0.0341930165886879, -0.017466016113758087, -0.016952309757471085, -0.009607210755348206, -0.008737514726817608, -0.013987232930958271, 0.02217048592865467, -0.02476605400443077, 0.017204657196998596, 0.010472400113940239, 0.0036928278859704733, 0.019466767087578773, 0.013004882261157036, 0.06856628507375717, 0.004880210384726524, -0.005538115277886391, 0.05753511190414429, -0.03893353417515755, 0.03821254521608353, -0.03166954591870308, -0.06135636940598488, -0.04264664277434349, -0.005587683524936438, -0.07534360140562057, -0.012166730128228664, -0.03422906622290611, 0.003341344418004155, -0.03659031167626381, -0.030353737995028496, -0.07491100579500198, -0.009580173529684544, 0.020169734954833984, 0.011526850052177906, 0.0012966579524800181, 0.02316184900701046, -0.038573041558265686, -0.0019049944821745157, -0.005263237282633781, 0.019809238612651825, 0.022044312208890915, 0.014942546375095844, -0.02496432699263096, -0.026965077966451645, -0.004681937862187624, -0.04142095521092415, -0.07047691196203232, -0.02835298702120781, 0.0015005633467808366, 0.07004431635141373, 0.006200525909662247, -0.08471649140119553, 0.004862185567617416, 0.012842658907175064, 0.043944425880908966, -0.004663913045078516, -0.05591288208961487, -0.004799099173396826, -0.08529328554868698, -0.0009203905938193202, 0.020692452788352966, -0.010220052674412727, 0.005776943638920784, 0.07808336615562439, 0.055408187210559845, -0.03356214985251427, 0.034571535885334015, -0.049676306545734406, -0.020277883857488632, 0.015095757320523262, 0.017727376893162727, -0.023738641291856766, -0.021773939952254295, -0.02451370842754841, 0.014455877244472504, -0.001790086505934596, 0.0036297410260885954, -0.00020291964756324887, 0.019809238612651825, -0.01488847192376852, 0.029668796807527542, 0.06492527574300766, 0.018205033615231514, -0.022116411477327347, -0.00844461191445589, 0.016754036769270897, 0.022134436294436455, 0.026874953880906105, 0.038500942289829254, 0.004368757363408804, 0.0063266996294260025, 0.00012272343155927956, -0.01753811538219452, -0.010715734213590622, 0.015176868997514248, -0.000015014787095424253, -0.013608712702989578, 0.012310927733778954, 0.03641006723046303, 0.0202057845890522, -0.06391588598489761, -0.03979872539639473, -0.018889974802732468, -0.021034924313426018, 0.01601502113044262, 0.047621481120586395, 0.05342546105384827, 0.030443862080574036, -0.06052722781896591, -0.01301389466971159, 0.012725498527288437, 0.008976343087852001, 0.03657228872179985, -0.008381525054574013, -0.010769808664917946, 0.00867442786693573, -0.055047694593667984, 0.041709352284669876, 0.01430266723036766, -0.008620353415608406, 0.032426588237285614, -0.07512730360031128, 0.01054449938237667, 0.003776192432269454, 0.017384905368089676, -0.014023282565176487, 0.005565152503550053, -0.01153586246073246, -0.05421855300664902, 0.018295155838131905, -0.04935185983777046, 0.02638828568160534, 0.018123921006917953, 0.021233197301626205, -0.0004556890926323831, 0.025559144094586372, -0.00038640631828457117, 0.05605708062648773, -0.04023132100701332, 0.01887194998562336, 0.011896357871592045, 0.04033946990966797, -0.012824634090065956, -0.027397673577070236, 0.027253475040197372, 0.011905370280146599, 0.06142846867442131, 0.08024634420871735, 0.04088021069765091, -0.013122043572366238, 0.01583477295935154, 0.0006838152767159045, -0.05277657136321068, 0.020854676142334938, -0.00939091295003891, -0.027343599125742912, 0.004641382023692131, -0.034283142536878586, -0.04235824570059776, 0.07829966396093369, -0.03377844765782356, 0.05930154398083687, -0.00017193955136463046, 0.009805482812225819, -0.024009013548493385, -0.045566655695438385, -0.02289147675037384, 0.008012017235159874, 0.028911754488945007, 0.0028186256531625986, 0.011625986546278, -0.08486068993806839, 0.02056627906858921, 0.019358618184924126, 0.06359144300222397, -0.05803980678319931, 0.0018869696650654078, -0.06200525909662247, -0.006173488683998585, 0.01520390622317791, 0.030191514641046524, 0.02058430388569832, 0.031092753633856773, 0.000773375912103802, 0.0618610605597496, 0.05198347941040993, 0.024027038365602493, 0.0377078503370285, 0.014951558783650398, 0.007836274802684784, 0.032318439334630966, -0.04639579728245735, -0.0449177622795105, 0.0007508449489250779, 0.007755163591355085, -0.01239203941076994, -0.017141571268439293, 0.005398422945290804, -0.0074126929976046085, -0.05479534715414047, -0.013707849197089672, -0.011256477795541286, 0.07411791384220123, -0.052812620997428894, 0.0672684982419014, 0.025613218545913696, 0.020187759771943092, -0.03359819948673248, -0.015330079942941666, 0.04408862441778183, 0.025288773700594902, -0.10843710601329803, 0.018015772104263306, 0.04549455642700195, -0.03271498531103134, -0.0014509952161461115, 0.010706721805036068, -0.029488548636436462, -0.006867443211376667, 0.007610965520143509, -0.05216372758150101, -0.04902741685509682, 0.027704093605279922, 0.02745174802839756, -0.016132183372974396, 0.013338340446352959, -0.008422080427408218, 0.0052271876484155655, 0.05115433782339096, 0.027613971382379532, 0.044845666736364365, 0.030173489823937416, 0.0005021592369303107, -0.075415700674057, 0.03864513710141182, -0.06946752220392227, 0.005812993273139, -0.03388659656047821, 0.0003790837654378265, 0.03846489265561104, 0.0037085996009409428, -0.04030342027544975, -0.037239205092191696, 0.01054449938237667, 0.0008066091104410589, -0.04088021069765091, -0.016672926023602486, -0.03979872539639473, 0.002489673439413309, -0.01878182590007782, 0.02611791342496872, -0.023125799372792244, -0.02665865607559681, -0.04938790947198868, -0.07721817493438721, -0.022999625653028488, 0.060238830745220184, -0.009976718574762344, -0.051911380141973495, 0.00835899356752634, -0.01359068788588047, 0.02862335927784443, -0.006633121054619551, -0.001717987353913486, -0.07105369865894318, -0.04765753075480461, 0.025901615619659424, 0.03495005890727043, -0.006768306717276573, 0.007516335230320692, 0.03570709750056267, -0.02190011367201805, 0.0341930165886879, 0.03120090253651142, 0.03165152296423912, 0.04974840581417084, -0.06114007160067558, 0.011869320645928383, 0.022747278213500977, 0.004884716589003801, -0.04318738356232643, 0.053353361785411835, 0.029542623087763786, -0.039510328322649, -0.006502441130578518, 0.04679234325885773, 0.02397296391427517, 0.02887570485472679, -0.006556515581905842, -0.028569284826517105, 0.005826511885970831, 0.026171987876296043, 0.012193767353892326, 0.07779496908187866, -0.0364641398191452, 0.022873451933264732 ]
23,302
parutils.logging.logger
close
null
@staticmethod def close(): from . import g g.logger = None
()
[ 0.01696009561419487, -0.03700694441795349, -0.028582323342561722, 0.061291687190532684, -0.026314156129956245, -0.04880823940038681, -0.028718754649162292, 0.08158581703901291, 0.016013605520129204, 0.017360862344503403, -0.001653161714784801, -0.05767626315355301, 0.04894467070698738, 0.015212072059512138, -0.05549336597323418, 0.005653365049511194, -0.04495406150817871, 0.010309077799320221, 0.02256229892373085, -0.02726917341351509, -0.029520288109779358, 0.03214658796787262, 0.009166467003524303, 0.004817724693566561, -0.031157460063695908, 0.032692309468984604, -0.02713274210691452, 0.05559568852186203, 0.04307813197374344, -0.038405366241931915, -0.03690462186932564, -0.07005739212036133, 0.012935377657413483, 0.05651659891009331, -0.0033191137481480837, -0.01814534142613411, -0.016601964831352234, -0.02286927029490471, -0.06473657488822937, 0.004340215586125851, 0.04515870660543442, 0.03612014278769493, 0.039735570549964905, -0.031225675716996193, 0.04355563968420029, 0.011502849869430065, 0.04171381890773773, 0.020328238606452942, -0.014896574430167675, -0.011417580768465996, 0.011289676651358604, 0.027780789881944656, -0.037075161933898926, 0.00322318566031754, -0.005802586674690247, 0.06163276731967926, 0.05576622858643532, 0.009678083471953869, -0.004024718422442675, -0.047102849930524826, -0.012236167676746845, 0.008833915926516056, -0.004783616866916418, 0.021334419026970863, 0.044306010007858276, 0.03334036096930504, -0.053481005132198334, 0.043419208377599716, 0.0356767438352108, 0.0011085029691457748, -0.03127683699131012, -0.028718754649162292, 0.01496479008346796, 0.018963927403092384, -0.004133437294512987, -0.034585293382406235, -0.05218490958213806, -0.019270898774266243, -0.015263233333826065, -0.06330404430627823, 0.012244694866240025, 0.03792785480618477, -0.03484110161662102, 0.059211112558841705, 0.0837005004286766, -0.04000842943787575, 0.06211027503013611, 0.009200574830174446, -0.03361321985721588, 0.02329561673104763, -0.04996790364384651, 0.016158562153577805, -0.017599616199731827, -0.012466395273804665, 0.018946874886751175, -0.04877413064241409, -0.023227401077747345, 0.016917461529374123, -0.016474060714244843, -0.032692309468984604, -0.02508627623319626, -0.03197604790329933, -0.05082060024142265, 0.0046770297922194, 0.03216364234685898, -0.07524177432060242, 0.0203452929854393, -0.04642069339752197, -0.008885078132152557, 0.015322921797633171, -0.08711127936840057, -0.017633724957704544, -0.020396454259753227, 0.008701748214662075, 0.026126563549041748, -0.02597307786345482, -0.016124455258250237, 0.02745676599442959, 0.03775731846690178, -0.026058347895741463, -0.04116809740662575, 0.06790859997272491, -0.06859075278043747, 0.012440814636647701, 0.09952651709318161, 0.0483989454805851, 0.00678744912147522, 0.025325030088424683, 0.04246419295668602, 0.021760767325758934, 0.04751214385032654, 0.00833509024232626, -0.01356637105345726, -0.02713274210691452, 0.05194615572690964, 0.04556800052523613, -0.015536095947027206, 0.006740550976246595, -0.024404119700193405, 0.03932627663016319, -0.07660607993602753, -0.013881868682801723, -0.060097914189100266, -0.0037348023615777493, 0.047273389995098114, 0.05088881403207779, -0.04972914978861809, 0.016559328883886337, -0.08663377165794373, -0.017616670578718185, 0.012679568491876125, -0.018691066652536392, 0.021197987720370293, 0.039906106889247894, -0.028718754649162292, -0.038848765194416046, -0.020737532526254654, 0.07087597250938416, 0.01826471835374832, -0.04348742589354515, 0.009388167411088943, 0.024097150191664696, -0.020549939945340157, -0.027320334687829018, -0.047989651560783386, -0.011392000131309032, 0.04689820483326912, 0.042123112827539444, 0.020140646025538445, -0.02285221591591835, -0.09284138679504395, -0.038439471274614334, -0.03349384292960167, -0.012713676318526268, -0.05365154519677162, 0.09632038325071335, -0.008219975978136063, 0.014188838191330433, -0.013446994125843048, 0.03598371148109436, -0.0072180600836873055, -0.0686589702963829, -0.03374965116381645, 0.0395309217274189, 0.04792143777012825, 0.02745676599442959, -0.014819832518696785, -0.02286927029490471, -0.03345973789691925, -0.024387065321207047, 0.02431884966790676, -0.00039570359513163567, 0.0010338921565562487, -0.020976288244128227, 0.08424622565507889, 0.007525030057877302, -0.042873483151197433, -0.012594299390912056, -0.011195880360901356, 0.010616048239171505, -0.00020477993530221283, 0.040178969502449036, -0.010027688927948475, -0.07121705263853073, 0.01973135396838188, 0.021897196769714355, 0.03392019122838974, 0.013225293718278408, -0.07537820190191269, 0.01649964042007923, 0.018503472208976746, -0.001532718539237976, -0.030270658433437347, 0.026331208646297455, 0.030645843595266342, -0.032692309468984604, -0.01713063381612301, 0.0233297236263752, 0.0018450180068612099, 0.05416316166520119, 0.01215942483395338, -0.006331257522106171, -0.021590227261185646, 0.02714979648590088, -0.03536977246403694, 0.019680190831422806, 0.012440814636647701, 0.02406304143369198, 0.05194615572690964, -0.1272902488708496, 0.02859937772154808, 0.01903214305639267, -0.011383472941815853, -0.05324225127696991, -0.018401149660348892, -0.016124455258250237, -0.02300569973886013, 0.053890299052000046, -0.009840095415711403, -0.01974840648472309, -0.01637173630297184, -0.03231712430715561, -0.02124914899468422, 0.061564549803733826, 0.05320814251899719, 0.021470850333571434, -0.002777652582153678, 0.006220407318323851, 0.07060310989618301, 0.00560646690428257, -0.008757174015045166, -0.04444244131445885, 0.02269873023033142, -0.013472574763000011, 0.012807472608983517, -0.032692309468984604, -0.01959492266178131, 0.03098692186176777, 0.006275832187384367, -0.015612837858498096, 0.00833509024232626, 0.009388167411088943, -0.0022212695330381393, 0.011878035962581635, 0.02892340160906315, 0.012594299390912056, 0.051400430500507355, -0.057573940604925156, 0.03983789309859276, -0.02136852778494358, 0.010803640820086002, 0.022204168140888214, 0.011170299723744392, -0.04167971387505531, -0.025921916589140892, -0.016900407150387764, -0.048160191625356674, -0.05276474356651306, 0.02005537785589695, 0.03489226475358009, 0.10061796009540558, 0.020993340760469437, 0.05559568852186203, 0.017923640087246895, -0.0187081191688776, 0.017028311267495155, -0.005585149861872196, 0.020856909453868866, -0.01725853979587555, -0.025273868814110756, -0.019816622138023376, 0.005926227662712336, 0.007239377126097679, 0.09441034495830536, 0.026058347895741463, 0.007056047674268484, -0.034875210374593735, 0.046693556010723114, 0.01737791672348976, -0.006651017814874649, 0.02933269366621971, -0.03898519650101662, -0.0036900360137224197, 0.05794912576675415, -0.005627784412354231, 0.009985053911805153, 0.017301173880696297, -0.009933892637491226, 0.02803659811615944, 0.05760804936289787, -0.02078869380056858, 0.032828740775585175, 0.021197987720370293, 0.026041293516755104, 0.033869028091430664, -0.031481485813856125, -0.015092694200575352, -0.01651669479906559, -0.030151281505823135, 0.05740340054035187, -0.028343569487333298, 0.02745676599442959, 0.022323545068502426, 0.0680791363120079, -0.013779545202851295, -0.01872517354786396, 0.02863348461687565, 0.07380924373865128, 0.020447617396712303, -0.04144095629453659, -0.06289475411176682, 0.005444454960525036, 0.0079556405544281, -0.04942217841744423, -0.0005910239415243268, -0.0014804910169914365, 0.0028202873654663563, -0.0946832075715065, 0.01342993974685669, -0.08574696630239487, -0.06910236924886703, -0.02917920984327793, -0.05985916033387184, 0.021863089874386787, -0.059347543865442276, 0.03687051311135292, -0.008121916092932224, -0.056857675313949585, 0.054606564342975616, 0.0013131496962159872, 0.07067132741212845, 0.06193973496556282, -0.0008564251475036144, 0.01252608373761177, 0.008808335289359093, -0.03228301927447319, 0.00560646690428257, 0.0070645748637616634, 0.011792766861617565, -0.0004308772331569344, 0.013549317605793476, 0.009200574830174446, -0.021863089874386787, -0.018025964498519897, 0.06163276731967926, -0.04038361832499504, -0.01605623960494995, -0.00398208387196064, 0.01713063381612301, -0.007107209414243698, 0.014879520982503891, -0.0937281921505928, 0.006540167611092329, 0.059211112558841705, -0.017335280776023865, 0.054060839116573334, 0.06095061078667641, 0.01208268292248249, -0.018793389201164246, 0.035744957625865936, 0.009123831987380981, 0.015868647024035454, 0.0031698921229690313, -0.014512862078845501, -0.014981844462454319, -0.058767713606357574, 0.04775089770555496, 0.04880823940038681, -0.011690443381667137, 0.016755448654294014, 0.059006467461586, -0.062280815094709396, 0.02566610835492611, -0.01157959271222353, 0.023636694997549057, -0.013446994125843048, -0.05944986641407013, 0.0003125658549834043, 0.009473437443375587, 0.02769552171230316, 0.003340431023389101, 0.009976526722311974, -0.007695568725466728, 0.010292024351656437, 0.020106539130210876, 0.0233297236263752, -0.015578730031847954, -0.03673408553004265, 0.05027487501502037, -0.0401107557117939, 0.0002933802315965295, -0.03588138893246651, -0.028872240334749222, -0.027917221188545227, 0.0638156607747078, -0.03601782023906708, 0.08124474436044693, 0.025904862210154533, 0.08363229036331177, 0.051673293113708496, -0.018691066652536392, -0.0013632455375045538, 0.06531640887260437, 0.0264164786785841, -0.03656354546546936, -0.04427190497517586, -0.06374745070934296, 0.011221460998058319, -0.0069920956157147884, 0.01225322112441063, -0.07224028557538986, 0.00913235917687416, -0.023056862875819206, -0.006987832486629486, 0.022187113761901855, 0.013395831920206547, -0.024080095812678337, 0.037552669644355774, -0.033834923058748245, 0.0701938197016716, 0.04515870660543442, 0.009055616334080696, 0.018980981782078743, -0.045806754380464554, 0.026893988251686096, -0.0005585149629041553, 0.0018343592528253794, 0.06146222725510597, 0.03816661238670349, -0.020294131711125374, -0.0036537963896989822, -0.00840756855905056, 0.016303520649671555, -0.022459976375102997, -0.011067976243793964, -0.0699891746044159, -0.005474299192428589, -0.031771402806043625, 0.023414993658661842, -0.006314203608781099, -0.016030658036470413, 0.08226797729730606, -0.0039970059879124165, -0.05358332768082619, -0.01394155714660883, 0.010070323012769222, 0.07442318648099899, -0.0433851033449173, -0.026791663840413094, -0.03345973789691925, 0.05849485099315643, 0.032521773129701614, -0.036665868014097214, -0.03160086274147034, -0.03110629878938198, 0.007840527221560478, -0.03334036096930504, 0.03676819056272507, 0.01208268292248249, -0.036495327949523926, 0.00714984443038702, -0.01901509054005146, 0.0010759939905256033, 0.036938730627298355, -0.02875286154448986, 0.008313772268593311, 0.07305887341499329, -0.0568917840719223, 0.029724933207035065, -0.02714979648590088, -0.01565547287464142, 0.014691928401589394, -0.02344910241663456, -0.05910879001021385, 0.037825532257556915, 0.012287328951060772, -0.03173729404807091, -0.030048957094550133, -0.009993581101298332, -0.1012319028377533, -0.013600478880107403, 0.006182035896927118, -0.029724933207035065, 0.0051588024944067, 0.019663138315081596, -0.06558927148580551, 0.01563841849565506, 0.010564886033535004, -0.03351089730858803, -0.026655232533812523, -0.03374965116381645, 0.05157097056508064, -0.030270658433437347, 0.017667831853032112, 0.029093939810991287, -0.06657839566469193, -0.09522893279790878, -0.021590227261185646, 0.012995066121220589, -0.016039185225963593, 0.00950754527002573, 0.030048957094550133, 0.031055137515068054, -0.034875210374593735, -0.029503233730793, -0.049490395933389664, 0.032828740775585175, 0.07619678974151611, 0.0018524790648370981, 0.07592392712831497, 0.010641628876328468, -0.01134936511516571, -0.01608182117342949, -0.03371554613113403, 0.02302275411784649, 0.005704526789486408, -0.037382133305072784, -0.05996148660778999, 0.006693652831017971, -0.00782773643732071, -0.023858394473791122, -0.012935377657413483, 0.0056832097470760345, -0.004476646892726421, -0.016482586041092873, -0.009209102019667625, -0.015220598317682743, 0.04096344858407974, 0.024233581498265266, 0.02992958016693592, 0.03956503048539162, -0.013054754585027695, 0.029400909319519997, -0.04021307826042175, -0.017804263159632683, -0.016619017347693443, -0.004193125758320093, -0.007567664608359337, 0.047443926334381104, -0.027934275567531586, -0.0389510914683342, 0.0350969098508358, -0.023790178820490837, 0.005990179721266031, -0.009993581101298332, -0.029247425496578217, 0.030134227126836777, 0.037552669644355774, 0.0028437364380806684, 0.006467688828706741, -0.00781920924782753, -0.03997432440519333, 0.06371334195137024, -0.02696220390498638, -0.00678744912147522, 0.05811966583132744, 0.0259389691054821, 0.03241945058107376, 0.03021949715912342, -0.027917221188545227, -0.01017264649271965, 0.020839856937527657, -0.022050682455301285, -0.02876991592347622, -0.012423760257661343, 0.0020358082838356495, 0.059347543865442276, 0.007350227329879999, 0.015970969572663307, 0.03830303996801376, 0.004519281443208456, 0.04901288449764252, 0.03395429998636246, -0.09652502834796906, -0.003909604623913765, 0.008134706877171993, 0.0422254353761673, 0.00759750884026289, 0.01974840648472309, 0.03334036096930504, -0.0022447186056524515, 0.018094180151820183, -0.0020283472258597612, -0.011929197236895561, -0.01649964042007923, 0.019270898774266243, 0.004193125758320093, -0.003930922131985426, -0.003468335373327136, 0.0028096288442611694, -0.09413748234510422, -0.04174792766571045, 0.0038371258415281773, -0.002014491008594632, 0.0031954729929566383, -0.0013792335521429777, -0.025700215250253677, 0.020396454259753227, 0.016184143722057343, 0.045806754380464554, -0.04154328256845474, -0.019509652629494667, -0.009047090075910091, 0.0037262754049152136, -0.009388167411088943, 0.0595862977206707, -0.04266883805394173, -0.04028129205107689, -0.046693556010723114, 0.029605556279420853, -0.0036942993756383657, -0.014257053844630718, -0.006702179554849863, -0.03349384292960167, 0.026041293516755104, -0.026808718219399452, -0.0033148503862321377, -0.03434653952717781, 0.0029972216580063105, 0.028514107689261436, 0.02167549729347229, -0.006015760358422995, 0.014794251881539822, 0.0027350180316716433, -0.027030419558286667, -0.03345973789691925, 0.006407999899238348, -0.05985916033387184, 0.02019180916249752, -0.12326553463935852, -0.03274347260594368, 0.05487942323088646, 0.009925365447998047, -0.016712814569473267, -0.022732838988304138, -0.03345973789691925, 0.03228301927447319, -0.0049200477078557014, -0.004719664808362722, 0.03308454900979996, 0.0160988736897707, 0.0010557424975559115, 0.009891257621347904, 0.044885843992233276, 0.018043017014861107, -0.05266241729259491, 0.00944785587489605, -0.026791663840413094, 0.02153906598687172, -0.04587496817111969, 0.03216364234685898, -0.006612646859139204, 0.014495808631181717, 0.02697925828397274, -0.055220503360033035, 0.02080574817955494, 0.029844311997294426, 0.0462842620909214, -0.006501796189695597, -0.010965652763843536, -0.0010679999832063913, 0.07449140399694443, -0.01991894654929638, -0.050650060176849365, 0.0804261565208435, 0.08731592446565628, -0.035199232399463654, -0.0023790178820490837, 0.06118936464190483, -0.006680862046778202, -0.027542036026716232, 0.018776334822177887, -0.038405366241931915, 0.015280287712812424, -0.0016627544537186623, -0.0012843712465837598, -0.022511137649416924, -0.05296938866376877, 0.0015039400896057487, 0.000948089815210551, 0.013361724093556404, -0.04045183211565018, 0.040349509567022324, 0.01828177273273468, 0.02933269366621971, -0.0074696047231554985, 0.005487089976668358, 0.006109556648880243, -0.038439471274614334, -0.002370490925386548, 0.0321124792098999, 0.0036218203604221344, -0.0023534370120614767, 0.0036260837223380804, 0.02699631080031395, 0.020140646025538445, -0.08724771440029144, -0.04167971387505531, -0.044033151119947433, 0.01814534142613411, 0.0043125031515955925, 0.01371132954955101, 0.03270936384797096, -0.012943903915584087, 0.05010433495044708, -0.012875688262283802, -0.06524819135665894, -0.0025516885798424482, 0.03214658796787262, -0.01054783258587122, -0.06760162860155106, -0.07224028557538986, -0.08922596275806427, 0.07653786987066269, -0.013830706477165222, -0.012142371386289597, -0.01230438333004713, 0.029690826311707497, -0.006216143723577261, -0.01814534142613411, -0.041952576488256454, -0.04884234815835953, -0.001254526898264885, 0.004868886433541775, 0.015220598317682743, 0.008467257022857666, 0.016158562153577805, 0.02288632281124592, -0.05617552250623703, -0.01452138926833868, 0.06265600025653839, 0.025188598781824112, 0.04246419295668602, 0.02078869380056858, 0.010803640820086002, -0.00445532938465476, -0.015007425099611282, 0.02066931687295437, -0.01904919743537903, 0.020379401743412018, 0.010846275836229324, 0.030560575425624847, 0.02979314886033535, -0.014444646425545216, 0.08015329390764236, 0.06163276731967926, 0.019560813903808594, -0.012807472608983517 ]
23,303
parutils.logging.logger
log
null
def log(self, *args, level=0, c_out=True): if self.level < level: return args = [str(e) for e in args] msg = ' '.join(args) fdate = datetime.now().strftime(self.log_format) s = f"{fdate}{msg}" self.log_print(s, c_out=c_out)
(self, *args, level=0, c_out=True)
[ -0.04741985723376274, 0.033139392733573914, 0.0037449877709150314, 0.08233976364135742, 0.026471544057130814, -0.08008687198162079, -0.04331376776099205, 0.05650411918759346, 0.029396677389740944, -0.06115526333451271, -0.008875325322151184, 0.02823389135301113, -0.005096272099763155, -0.029396677389740944, -0.01757805049419403, -0.016215410083532333, -0.05450558289885521, -0.04560300335288048, -0.00023846191470511258, 0.022856006398797035, 0.03880797326564789, 0.004960007965564728, 0.008053199388086796, 0.0333210788667202, 0.026707734912633896, 0.026834914460778236, 0.01893160492181778, -0.01546141691505909, 0.017241932451725006, -0.025254253298044205, -0.0206757839769125, -0.01445306371897459, -0.042187321931123734, 0.00526887271553278, -0.01796867325901985, -0.0056504118256270885, -0.016478855162858963, -0.05090821161866188, -0.05472360551357269, 0.0058093867264688015, 0.050181470811367035, -0.006885871756821871, 0.050290483981370926, -0.03184942901134491, -0.0037881380412727594, -0.01031972374767065, 0.05824830010533333, 0.07369154691696167, -0.01571577601134777, -0.04316842183470726, 0.008080452680587769, 0.012000312097370625, 0.03264884278178215, -0.06911307573318481, -0.034447528421878815, 0.06319013983011246, 0.034302178770303726, -0.012209250591695309, 0.013608226552605629, -0.026308028027415276, 0.007094809785485268, 0.04182394966483116, 0.010892031714320183, 0.06467995792627335, 0.005305210128426552, -0.02783418446779251, 0.004460373427718878, 0.005664038471877575, 0.010964706540107727, 0.03186759725213051, 0.014771012589335442, -0.06613343954086304, 0.022710658609867096, 0.022456299513578415, -0.05370616540312767, 0.026689566671848297, -0.07848803699016571, 0.09418564289808273, 0.01611548289656639, 0.055377669632434845, -0.04182394966483116, -0.05276140198111534, -0.012091155163943768, 0.03920768201351166, 0.014625664800405502, -0.0652976855635643, -0.07034853845834732, 0.013553720898926258, -0.008048657327890396, 0.04941839352250099, -0.07536305487155914, 0.0040697501972317696, -0.05021781101822853, 0.0246546920388937, -0.04767421633005142, -0.017505375668406487, -0.01679680310189724, -0.01371723785996437, -0.02425498329102993, 0.05225268378853798, 0.004887334071099758, -0.00032419466879218817, 0.0360100194811821, -0.06300844997167587, -0.039643727242946625, -0.09527575969696045, -0.04694747552275658, -0.015833871439099312, 0.0015091232489794493, 0.04211464524269104, -0.01445306371897459, -0.02452751249074936, 0.026417039334774017, -0.06591542065143585, -0.030959170311689377, 0.0022960477508604527, -0.03848094120621681, 0.016197241842746735, -0.04491259902715683, 0.0058911447413265705, 0.027289127930998802, -0.06718721240758896, 0.029087811708450317, -0.01758713461458683, -0.032576169818639755, -0.00946580246090889, -0.057630568742752075, -0.04215098172426224, 0.03960739076137543, -0.0332665741443634, 0.02372809685766697, 0.003390701487660408, 0.0466204397380352, -0.02614451013505459, 0.05356081947684288, -0.02585381455719471, -0.01960384100675583, -0.002219966845586896, 0.023491906002163887, 0.011428003199398518, 0.004158321768045425, -0.04146058112382889, 0.024854544550180435, -0.014026102609932423, 0.01132807694375515, 0.009747414849698544, 0.05076286569237709, 0.013680901378393173, 0.02516341023147106, 0.022092929109930992, 0.04985443875193596, -0.008929830975830555, -0.04345911741256714, 0.026489712297916412, -0.020839300006628036, -0.0519983246922493, -0.011446172371506691, -0.010792105458676815, 0.004280959255993366, 0.008970710448920727, -0.025417769327759743, -0.05835730955004692, 0.030595799908041954, -0.006277226377278566, 0.04709282144904137, 0.011237233877182007, -0.015007203444838524, 0.05050850659608841, 0.001978098414838314, 0.04182394966483116, 0.005427847616374493, -0.013081339187920094, 0.026053668931126595, 0.023764433339238167, -0.03215829282999039, 0.022183772176504135, -0.0319402702152729, -0.00845290720462799, -0.028324734419584274, -0.027270959690213203, 0.013953428715467453, -0.0042923144064843655, -0.0032317268196493387, 0.02638070099055767, 0.012054817751049995, 0.0032226424664258957, -0.004319567233324051, -0.010810273699462414, -0.05988346412777901, 0.0017191969091072679, 0.02676224149763584, -0.0010367415379732847, 0.029814552515745163, -0.04970908910036087, -0.019803695380687714, 0.040188781917095184, -0.07034853845834732, -0.03241265192627907, 0.06373519450426102, -0.00043973512947559357, 0.036300718784332275, 0.05966544523835182, -0.012045733630657196, -0.05032682046294212, 0.060719218105077744, 0.0056504118256270885, 0.0559590645134449, 0.01546141691505909, -0.05127158388495445, -0.04251435399055481, 0.011845880188047886, 0.024618353694677353, -0.03942570462822914, -0.02614451013505459, -0.030177922919392586, 0.0058093867264688015, -0.02143886126577854, 0.011745953001081944, -0.05170762911438942, 0.018050432205200195, 0.021420693024992943, -0.004335464909672737, -0.05694016441702843, 0.018967943266034126, 0.00733100064098835, -0.004673853516578674, 0.10043562203645706, 0.053379133343696594, 0.01611548289656639, -0.050835538655519485, -0.04676578938961029, 0.015615848824381828, 0.0025049857795238495, 0.046838462352752686, -0.05694016441702843, 0.030959170311689377, -0.023528242483735085, 0.02383710816502571, -0.0373544916510582, 0.00812133215367794, -0.022819669917225838, 0.016442516818642616, 0.009138769470155239, 0.036028191447257996, 0.0825577899813652, -0.03786320984363556, 0.015606764703989029, 0.08052290976047516, -0.001914508524350822, 0.05341546982526779, -0.018577318638563156, 0.021765895187854767, -0.057884927839040756, -0.008943457156419754, -0.021620547398924828, -0.006708728615194559, 0.027688834816217422, -0.018877100199460983, -0.02812488004565239, -0.04240534082055092, -0.024309489876031876, 0.057230859994888306, 0.04465823993086815, -0.023401062935590744, 0.03092283383011818, -0.007489975541830063, -0.016978489235043526, -0.07659851014614105, 0.05050850659608841, 0.037790536880493164, 0.027925025671720505, 0.011836795136332512, 0.00840294361114502, 0.060137826949357986, -0.06464362144470215, -0.04098819941282272, 0.0010571811581030488, -0.027688834816217422, -0.06733256578445435, 0.07078458368778229, 0.05301576107740402, 0.04941839352250099, 0.011836795136332512, -0.011209981516003609, 0.0072174472734332085, -0.03986174985766411, 0.007817008532583714, 0.006781402975320816, 0.008843530900776386, 0.006154588423669338, -0.015043540857732296, 0.05181663855910301, 0.012363682501018047, -0.017786988988518715, 0.0012263755779713392, -0.01019254419952631, 0.04916403442621231, -0.04585736244916916, 0.03708196431398392, 0.018050432205200195, 0.01339928898960352, -0.04305940866470337, 0.06776860356330872, -0.06595175713300705, 0.03399331495165825, -0.009302286431193352, -0.03715463727712631, -0.008153126575052738, -0.023092197254300117, -0.02558128722012043, 0.004244622308760881, 0.03223096579313278, -0.019149627536535263, -0.01246360968798399, -0.042187321931123734, 0.050980888307094574, -0.030850159004330635, -0.0009265948901884258, -0.003797222161665559, 0.014189619570970535, -0.006372611038386822, 0.023891612887382507, 0.026707734912633896, 0.049890775233507156, 0.020603109151124954, -0.029233159497380257, -0.028470082208514214, 0.06464362144470215, 0.023237546905875206, -0.007926019839942455, 0.009175105951726437, 0.0027116527780890465, 0.003710921620950103, 0.004887334071099758, 0.010083532892167568, 0.013217603787779808, -0.034447528421878815, -0.038844309747219086, 0.03263067454099655, 0.007203821092844009, -0.010583166964352131, 0.04596637561917305, -0.04811026155948639, 0.041896622627973557, 0.011764121241867542, 0.074636310338974, 0.025308758020401, 0.0060637458227574825, 0.04251435399055481, 0.03186759725213051, 0.02599916234612465, -0.05748521909117699, -0.040697500109672546, -0.0007880598423071206, 0.018840763717889786, 0.00462389038875699, -0.00017487206787336618, -0.07347352802753448, 0.026871250942349434, -0.002879711566492915, 0.046293407678604126, -0.048437293618917465, 0.04876432567834854, -0.018223032355308533, -0.028742609545588493, 0.030959170311689377, 0.050435829907655716, -0.004769238643348217, 0.04861897975206375, 0.04316842183470726, -0.005577737931162119, -0.034156832844018936, 0.0652613490819931, 0.07768861949443817, -0.08364789932966232, 0.0586480051279068, -0.014625664800405502, 0.002663960214704275, -0.038844309747219086, -0.029015138745307922, 0.0040697501972317696, -0.03239448368549347, -0.003218100406229496, -0.0186590775847435, 0.013045002706348896, 0.040842849761247635, 0.005591364111751318, 0.04356812685728073, 0.025290589779615402, 0.007435469888150692, -0.0019724208395928144, -0.011864048428833485, 0.0360100194811821, -0.0932408794760704, -0.038844309747219086, -0.025508612394332886, 0.06962179392576218, 0.04251435399055481, -0.05090821161866188, -0.01473467517644167, -0.04829194396734238, 0.007598986383527517, -0.024454837664961815, -0.02478187158703804, -0.028542757034301758, 0.02757982350885868, -0.05486895143985748, 0.00040311418706551194, 0.0186590775847435, 0.018877100199460983, 0.006781402975320816, 0.0020700765307992697, -0.026834914460778236, -0.0067359814420342445, 0.029796384274959564, 0.008293932303786278, 0.024055130779743195, -0.036300718784332275, -0.043386444449424744, -0.027906857430934906, -0.03793588653206825, -0.019930874928832054, 0.036700423806905746, 0.07943280041217804, 0.08030489087104797, -0.02999623864889145, -0.04171494022011757, 0.014689254574477673, 0.08960717916488647, 0.016733214259147644, -0.04705648496747017, -0.01653335988521576, -0.039244018495082855, 0.05719452351331711, 0.04981810227036476, 0.035919178277254105, -0.004076563287526369, 0.0293240025639534, 0.03270334750413895, 0.04422219470143318, -0.05225268378853798, -0.02946935035288334, 0.007508143782615662, -0.017959589138627052, 0.00825759582221508, -0.026725903153419495, -0.010492324829101562, -0.046983812004327774, 0.003218100406229496, 0.04462190344929695, 0.018731752410531044, 0.05795760080218315, -0.026053668931126595, 0.007430927827954292, 0.011055548675358295, -0.07285579293966293, -0.07231073826551437, 0.010664925910532475, 0.055086974054574966, -0.019004279747605324, 0.0015897460980340838, 0.015788450837135315, 0.023346558213233948, -0.03620987385511398, 0.00341568305157125, 0.006876787636429071, 0.05159861594438553, -0.03528327867388725, -0.039389368146657944, -0.06911307573318481, 0.08699090778827667, 0.00907063763588667, -0.04571201279759407, -0.005055392626672983, -0.029233159497380257, -0.009920015931129456, -0.0016703689470887184, -0.04026145488023758, -0.044585566967725754, 0.005041766446083784, -0.03130437433719635, 0.004648871719837189, 0.06184566766023636, 0.030941002070903778, -0.007844261825084686, -0.014752844348549843, 0.05886602774262428, -0.007644407916814089, -0.01126448716968298, -0.00206553447060287, -0.02825205959379673, -0.015506838448345661, 0.014771012589335442, -0.06751424819231033, -0.012963243760168552, -0.044440217316150665, -0.05824830010533333, -0.046838462352752686, -0.05210733786225319, 0.020312413573265076, -0.02612634189426899, -0.009947268292307854, -0.013417457230389118, -0.0005473268683999777, -0.006840450689196587, -0.05254337936639786, 0.07300114631652832, 0.0586480051279068, -0.024363994598388672, -0.006749608088284731, 0.0015034456737339497, 0.04414952173829079, 0.00907063763588667, -0.0186772458255291, -0.004235537722706795, -0.024963555857539177, -0.03753617778420448, -0.01019254419952631, -0.021093660965561867, -0.006277226377278566, 0.06784128397703171, 0.02890612743794918, 0.008248511701822281, -0.016569696366786957, 0.03279419243335724, 0.023382894694805145, 0.04520329460501671, 0.04451289027929306, -0.01836838200688362, 0.043786149471998215, -0.05850265920162201, 0.0226561538875103, -0.0033748040441423655, 0.0013705883175134659, -0.031776756048202515, 0.07608979195356369, -0.018840763717889786, -0.026943925768136978, 0.0206394474953413, -0.020839300006628036, -0.034156832844018936, -0.002934217220172286, 0.016978489235043526, -0.03928035497665405, -0.04098819941282272, -0.04407684877514839, 0.014970866031944752, -0.015961050987243652, 0.03920768201351166, 0.023528242483735085, 0.023128535598516464, -0.04981810227036476, 0.03891698643565178, 0.07827001810073853, 0.014126029796898365, 0.06144595891237259, 0.0012763390550389886, -0.00034775695530697703, -0.006100083235651255, -0.0413152314722538, 0.032576169818639755, 0.012763390317559242, 0.02719828486442566, 0.02345556952059269, -0.07300114631652832, -0.021893074735999107, 0.06286310404539108, 0.02023973874747753, -0.007349169347435236, 0.044440217316150665, -0.036845773458480835, -0.014616579748690128, -0.07499968260526657, -0.016624202951788902, -0.011809542775154114, 0.012218334712088108, 0.044839926064014435, 0.018749920651316643, 0.03917134553194046, 0.018731752410531044, -0.03381162881851196, -0.03106818161904812, 0.0005572627997025847, -0.03651874139904976, 0.030359609052538872, 0.04716549813747406, -0.0038244749885052443, -0.008012320846319199, -0.009034300222992897, 0.06300844997167587, 0.0426597036421299, -0.017414532601833344, 0.012082071043550968, -0.011954890564084053, -0.003186305519193411, 0.011409834958612919, 0.03172224760055542, -0.011037380434572697, 0.014053355902433395, 0.0005266034277155995, -0.057230859994888306, 0.01680588722229004, -0.018967943266034126, -0.0012911009835079312, -0.01880442537367344, -0.029542025178670883, 0.06206369027495384, -0.006781402975320816, -0.000031777180993231013, 0.06613343954086304, -0.03179492428898811, 0.02440033294260502, -0.017796073108911514, 0.042332667857408524, 0.002402787795290351, -0.02305586077272892, 0.01996721141040325, 0.05156227946281433, 0.08829904347658157, 0.039643727242946625, -0.02383710816502571, 0.01744178682565689, -0.0226561538875103, 0.013471962884068489, 0.027470814064145088, 0.029941732063889503, -0.05893870070576668, -0.04905502498149872, 0.007817008532583714, -0.04901868477463722, -0.009079721756279469, 0.060283172875642776, -0.03588284179568291, 0.004673853516578674, -0.004097003024071455, -0.06311746686697006, -0.01652427576482296, -0.05312477424740791, -0.08212174475193024, -0.02093014307320118, 0.006517959292978048, 0.003922130912542343, -0.018204864114522934, -0.06384420394897461, 0.011564267799258232, 0.015216141939163208, -0.020348750054836273, -0.0346110463142395, 0.012790643610060215, -0.04215098172426224, 0.0373544916510582, 0.007853345945477486, 0.012990497052669525, 0.09658388793468475, -0.042041972279548645, 0.05515964701771736, 0.018595486879348755, 0.0452759712934494, 0.031776756048202515, 0.014825518243014812, 0.013699069619178772, 0.007957815192639828, 0.04196929931640625, -0.03637339174747467, -0.04920037090778351, -0.06784128397703171, 0.0075808181427419186, 0.005005429498851299, 0.01533423736691475, 0.02545410580933094, -0.041387904435396194, -0.08728160709142685, 0.0008936644298955798, 0.04422219470143318, 0.060137826949357986, -0.039098672568798065, 0.06286310404539108, 0.05639510974287987, 0.022692490369081497, -0.039643727242946625, 0.009120600298047066, 0.01814127527177334, 0.01359005831182003, -0.056976500898599625, 0.06369885802268982, 0.07717990130186081, -0.020421424880623817, 0.025490444153547287, -0.015961050987243652, -0.035919178277254105, -0.004237809218466282, -0.028615429997444153, -0.04451289027929306, -0.0426233634352684, 0.025236085057258606, 0.03448386490345001, -0.04847363010048866, 0.010138038545846939, 0.004850996658205986, -0.03441119194030762, 0.009747414849698544, 0.042296331375837326, 0.022710658609867096, 0.061918340623378754, 0.008480160497128963, -0.04571201279759407, 0.01059225108474493, -0.016442516818642616, 0.00469202222302556, -0.02120267041027546, -0.006363526452332735, 0.05915672332048416, 0.03426584228873253, 0.005818470846861601, -0.024018792435526848, -0.03348459675908089, 0.028978800401091576, -0.0033134850673377514, -0.036555077880620956, 0.020584940910339355, -0.06075555458664894, 0.0076307812705636024, 0.006358984392136335, -0.07972349971532822, 0.00512806698679924, -0.016315337270498276, -0.0665331482887268, -0.02423681505024433, 0.050617516040802, -0.014344052411615849, -0.02612634189426899, -0.012836064212024212, 0.0077352505177259445, 0.019785527139902115, 0.02663506008684635, -0.014189619570970535, -0.050290483981370926, -0.020421424880623817, 0.02692575752735138, -0.030741147696971893, -0.055086974054574966, -0.00733100064098835, 0.017932336777448654, -0.023946119472384453, 0.012926907278597355, 0.040697500109672546, -0.02303769253194332, 0.021493367850780487, -0.05116257444024086, -0.0009862104197964072, 0.031522393226623535, 0.016070062294602394, -0.045239631086587906, 0.013553720898926258, 0.01800500974059105, -0.03426584228873253, -0.007576276082545519, -0.013953428715467453, 0.013253940269351006, -0.005741254426538944, 0.019676515832543373, 0.015561343170702457, 0.0056504118256270885, 0.05105356127023697, 0.04160592705011368, 0.047528866678476334, -0.028542757034301758, 0.024363994598388672 ]
23,304
parutils.logging.logger
log_print
null
def log_print(self, *args, level=0, c_out=True, nb_tab=0, dashes=0, tab_char=' '): if self.level < level: return args = [str(e) for e in args] s = ' '.join(args) if nb_tab != 0: for i in range(0, nb_tab): s = tab_char + s if dashes > 0: s = u.extend_str(s, '-', dashes) with lock: self._write_log(s, c_out)
(self, *args, level=0, c_out=True, nb_tab=0, dashes=0, tab_char=' ')
[ -0.03872232884168625, 0.04197000712156296, -0.015444319695234299, 0.045645952224731445, 0.04047107696533203, -0.06017128378152847, -0.019289785996079445, 0.031887926161289215, -0.0097698038443923, -0.05774444714188576, -0.006718412972986698, 0.014569944702088833, 0.011911130510270596, -0.010920766741037369, -0.026409698650240898, -0.025356879457831383, -0.007913987152278423, -0.07073516398668289, 0.014748388901352882, 0.037401843816041946, 0.04707350209355354, 0.027676649391651154, 0.029639532789587975, 0.032690923660993576, -0.01020699180662632, 0.017755169421434402, -0.012696283869445324, -0.048108477145433426, 0.011250887997448444, 0.004117593169212341, 0.006062631495296955, -0.03408278524875641, -0.04553888365626335, 0.012714128009974957, -0.012723050080239773, -0.013053171336650848, -0.009421838447451591, -0.039186280220746994, -0.027551738545298576, -0.018700921908020973, 0.01591719686985016, -0.007624015677720308, 0.02851533703505993, -0.058672357350587845, -0.005888648796826601, -0.006428441498428583, 0.09607420116662979, 0.04618128389120102, -0.008413630537688732, -0.05103495717048645, 0.009966092184185982, -0.013436825945973396, 0.031745169311761856, -0.06188434734940529, -0.02735545113682747, 0.02642754279077053, 0.05110633373260498, -0.013650958426296711, 0.006374908611178398, -0.032905057072639465, -0.005888648796826601, 0.0458957739174366, 0.0002871831529773772, 0.044111333787441254, -0.00522840628400445, -0.050142738968133926, 0.01639007218182087, -0.013579580932855606, 0.008195036090910435, 0.026802275329828262, 0.03306565433740616, -0.068379707634449, 0.014480723068118095, 0.0596359521150589, -0.04453960061073303, 0.03986436873674393, -0.06306207925081253, 0.03040684200823307, 0.01034974679350853, 0.0225909985601902, -0.008569768629968166, -0.06652388721704483, 0.010367590934038162, 0.019057808443903923, 0.0243219044059515, -0.053890060633420944, -0.034350451081991196, 0.008650068193674088, 0.030299775302410126, 0.05481796711683273, -0.0850820541381836, -0.0007182367262430489, -0.031013550236821175, -0.0057548158802092075, -0.038758017122745514, -0.03445751965045929, 0.006473052781075239, -0.02489292435348034, -0.03697357699275017, 0.0065801190212368965, 0.0090694110840559, 0.012062808498740196, 0.03997143357992172, -0.03857957199215889, -0.05588863044977188, -0.0705210343003273, -0.04807278886437416, 0.007789076305925846, 0.008890967816114426, 0.045645952224731445, 0.016193784773349762, 0.022269800305366516, 0.050642382353544235, -0.07494644075632095, 0.019450385123491287, -0.0044120256789028645, -0.06306207925081253, 0.012080652639269829, -0.03374374285340309, -0.004039524123072624, 0.029657376930117607, -0.06852246075868607, 0.061063505709171295, -0.024125616997480392, -0.046787992119789124, 0.005469305906444788, -0.05870804563164711, -0.017023548483848572, 0.05299783870577812, 0.0015636146999895573, 0.025785144418478012, -0.007320661097764969, 0.038543883711099625, -0.019789429381489754, 0.0939328745007515, -0.029710911214351654, -0.012134185992181301, 0.018504632636904716, 0.031245527788996696, -0.004378567449748516, 0.012232329696416855, -0.07094929367303848, -0.0026677364949136972, -0.00844485778361559, -0.013079938478767872, 0.0030112408567219973, 0.06937899440526962, 0.01183975301682949, 0.0554603673517704, -0.01695217192173004, 0.024875080212950706, 0.023411840200424194, -0.055710189044475555, 0.015042820945382118, 0.004168895538896322, 0.005081190261989832, -0.021216981112957, -0.03165594860911369, 0.04428977891802788, -0.006816557142883539, 0.0028283358551561832, -0.04471804201602936, -0.0038744632620364428, 0.01726444810628891, 0.03069235198199749, 0.026677364483475685, -0.024304060265421867, 0.03438613936305046, 0.014623478055000305, 0.01374910306185484, 0.019664518535137177, -0.009823337197303772, 0.041577428579330444, 0.05795858055353165, -0.0008699140162207186, 0.04104209691286087, -0.023126330226659775, -0.024375436827540398, -0.031370438635349274, -0.0602426640689373, 0.020164161920547485, -0.014998210594058037, 0.007102067582309246, 0.05471090227365494, -0.005585294216871262, -0.029550310224294662, 0.04407564550638199, -0.014846532605588436, -0.027319762855768204, 0.021020691841840744, 0.013115626759827137, 0.0013929777778685093, 0.03754459694027901, -0.02881869114935398, -0.00916309468448162, 0.040578145533800125, -0.03156672790646553, -0.04403995722532272, 0.06470376253128052, -0.029996421188116074, -0.0032253735698759556, 0.060492485761642456, -0.03683082386851311, -0.04796572029590607, 0.06159883737564087, 0.016345461830496788, 0.0425410270690918, 0.014900065958499908, -0.05160597711801529, -0.03410062938928604, 0.013704491779208183, -0.0056566717103123665, 0.017184147611260414, -0.027391139417886734, -0.01117951050400734, 0.000814150320366025, -0.0527123287320137, 0.02475016936659813, -0.019735896959900856, -0.00847608596086502, 0.060849372297525406, 0.0015914966352283955, -0.04089934378862381, 0.03431476280093193, -0.019664518535137177, -0.0068477848544716835, 0.09314771741628647, 0.06216985732316971, 0.0077489265240728855, 0.005460383370518684, -0.03965023532509804, 0.016193784773349762, -0.043468937277793884, 0.05017842724919319, -0.046145595610141754, -0.007677549030631781, -0.02837258204817772, 0.014534256421029568, -0.014632400125265121, -0.035867225378751755, -0.03993574529886246, 0.023269085213541985, 0.009930402971804142, 0.016800493001937866, 0.05849391222000122, -0.027177007868885994, 0.007552638184279203, 0.05260526388883591, -0.0002434086345601827, 0.04393288865685463, -0.019718050956726074, 0.01662204973399639, -0.076730877161026, 0.009466448798775673, -0.05538898706436157, -0.011340110562741756, 0.006089398171752691, -0.007280511315912008, -0.026909340173006058, -0.0010249371407553554, -0.046859368681907654, 0.032744456082582474, 0.03156672790646553, -0.024000706151127815, 0.07566021382808685, 0.012071730569005013, -0.014418267644941807, -0.06987863034009933, 0.034350451081991196, 0.014034613035619259, 0.0031361517030745745, 0.033832963556051254, -0.00474214693531394, 0.06623838096857071, -0.07644537091255188, -0.019932184368371964, -0.010876156389713287, 0.007971981540322304, -0.07180582731962204, 0.009457526728510857, 0.04710919037461281, 0.028426114469766617, -0.004354031290858984, -0.02469663694500923, 0.001456548343412578, -0.04104209691286087, 0.001087392563931644, 0.003513114294037223, 0.014801922254264355, -0.005696821492165327, -0.03486793860793114, 0.046002838760614395, 0.023572439327836037, 0.012259095907211304, 0.03925766050815582, 0.007548177149146795, 0.053319040685892105, -0.00973411463201046, -0.002719039097428322, -0.021252669394016266, -0.0012502226745709777, -0.0568879172205925, 0.09635970741510391, -0.045503195375204086, 0.027123473584651947, 0.007762310095131397, -0.014382578432559967, 0.017603490501642227, -0.010376513004302979, -0.019361164420843124, -0.0027681111823767424, 0.02990719862282276, 0.03158457204699516, 0.018397565931081772, -0.03793717548251152, 0.05813702568411827, -0.03800855204463005, 0.006102781742811203, -0.017969300970435143, 0.022930042818188667, -0.016809415072202682, -0.004336187150329351, 0.020431827753782272, 0.04553888365626335, 0.02764096111059189, -0.05531761050224304, 0.0018591624684631824, 0.030638819560408592, 0.020164161920547485, 0.004311650991439819, -0.003006779821589589, 0.015524620190262794, 0.011286577209830284, 0.008409169502556324, -0.021413268521428108, 0.022251954302191734, -0.05003567039966583, -0.005259633995592594, -0.02193075604736805, 0.0017364822560921311, 0.008766056969761848, 0.05017842724919319, -0.030567441135644913, 0.02243039943277836, 0.008012131787836552, 0.010644178837537766, -0.015604919753968716, 0.03265523537993431, 0.03054959699511528, 0.023197708651423454, 0.047466080635786057, -0.036795131862163544, 0.0036536389961838722, -0.0028774079401046038, 0.014605633914470673, -0.0027681111823767424, 0.009011417627334595, -0.03722339868545532, 0.013766947202384472, -0.004871518816798925, 0.05335472896695137, -0.05110633373260498, 0.043825823813676834, -0.015587075613439083, -0.023054951801896095, -0.007396500091999769, 0.021092070266604424, -0.01368664763867855, 0.035867225378751755, 0.054532457143068314, 0.03397572040557861, -0.01754995808005333, 0.07830118387937546, 0.00988579262048006, -0.10107062757015228, 0.04521768540143967, -0.024214837700128555, -0.01889720931649208, -0.06630975753068924, -0.08936470746994019, 0.038365438580513, -0.009921480901539326, -0.006776407361030579, -0.00560759985819459, -0.03126337379217148, 0.01998571678996086, -0.029478933662176132, 0.04928620532155037, 0.04482511058449745, 0.012723050080239773, -0.016595283523201942, 0.038472507148981094, 0.040792275220155716, -0.04771590232849121, -0.05471090227365494, -0.02931833453476429, 0.01316916011273861, 0.0208600927144289, -0.034564584493637085, -0.00271457782946527, -0.024214837700128555, -0.01591719686985016, -0.02735545113682747, -0.01089400053024292, -0.05392574891448021, 0.02872946858406067, -0.0277301836758852, -0.011652386747300625, 0.000729389488697052, 0.05442539229989052, -0.019735896959900856, 0.023054951801896095, -0.000995382433757186, -0.00023713521659374237, 0.042826537042856216, -0.006031404249370098, -0.016345461830496788, -0.0037785496097058058, -0.06206279247999191, -0.022822976112365723, -0.038186997175216675, -0.021752312779426575, 0.01795145682990551, 0.08650960773229599, 0.07851532101631165, -0.03997143357992172, -0.07119911909103394, 0.008083509281277657, 0.13811558485031128, -0.0006875667022541165, -0.04689505696296692, -0.05189148709177971, 0.00934153888374567, 0.027765871956944466, 0.0651320293545723, 0.040435388684272766, 0.026159876957535744, 0.021680934354662895, 0.05513916537165642, 0.04307635873556137, -0.006303531117737293, -0.051855798810720444, -0.004206815268844366, 0.00040651753079146147, 0.028051381930708885, -0.001283680903725326, -0.008699140511453152, -0.026962874457240105, -0.02983582206070423, 0.06534615904092789, 0.030781574547290802, 0.07141324877738953, -0.04814416542649269, -0.005174873396754265, -0.0021357506047934294, -0.06463238596916199, -0.050785135477781296, 0.0013271765783429146, 0.021484646946191788, 0.026605986058712006, 0.008832973428070545, 0.06081368401646614, 0.026445386931300163, -0.008690218441188335, -0.015337253920733929, 0.0033369010780006647, 0.03736615553498268, -0.007851531729102135, -0.029942886903882027, -0.04668092727661133, 0.040649522095918655, 0.04842967540025711, -0.053461793810129166, 0.0007823649793863297, -0.026748741045594215, 0.01161669846624136, 0.0027435750234872103, -0.03900783881545067, -0.10356884449720383, 0.007173445075750351, -0.03665237873792648, -0.00853854138404131, 0.06823694705963135, -0.0015089663211256266, 0.012919338420033455, 0.02837258204817772, 0.07330475747585297, 0.020396137610077858, 0.009457526728510857, -0.010322979651391506, -0.004572625271975994, -0.020449671894311905, -0.02917557954788208, -0.04750176891684532, -0.03675944358110428, -0.019735896959900856, -0.027551738545298576, -0.029728755354881287, -0.06527478247880936, 0.006798713002353907, -0.004974124021828175, 0.016345461830496788, 0.01790684647858143, -0.01903996430337429, 0.002915327437222004, -0.025517478585243225, 0.07915771752595901, 0.06912916898727417, -0.009832259267568588, 0.00007660541450604796, 0.0054871500469744205, 0.02041398361325264, 0.02889006771147251, -0.017817623913288116, -0.031727325171232224, 0.027926471084356308, -0.03570662438869476, -0.050785135477781296, 0.015480008907616138, 0.02346537448465824, 0.05753031373023987, 0.019147031009197235, 0.00922555010765791, -0.03197714686393738, 0.01346359308809042, 0.04421839863061905, 0.058815110474824905, 0.06006421893835068, -0.03147750347852707, 0.02011062763631344, -0.048393987119197845, 0.0356709361076355, -0.0002507973404135555, -0.011679153889417648, -0.01117951050400734, 0.12091358751058578, -0.033119190484285355, -0.03829406201839447, 0.08144179731607437, 0.0010790280066430569, 0.006330297794193029, 0.0009819990955293179, 0.008801745250821114, -0.06973587721586227, -0.04539613053202629, -0.034279074519872665, 0.009859025478363037, -0.0403997004032135, 0.04443253204226494, 0.03302996605634689, 0.00048514438094571233, -0.04321911558508873, 0.03502853959798813, 0.06352603435516357, 0.0021134449634701014, 0.06284794211387634, -0.041791561990976334, -0.002540595130994916, 0.016666660085320473, -0.023929327726364136, 0.053033530712127686, -0.001088507822714746, 0.022483931854367256, -0.005049962550401688, -0.03187008202075958, -0.04350462555885315, 0.010438968427479267, -0.004809063393622637, -0.033618830144405365, 0.02721269614994526, -0.011768375523388386, -0.015328331850469112, -0.09000710397958755, -0.021413268521428108, -0.0745895504951477, -0.04436115548014641, 0.030710196122527122, 0.045645952224731445, 0.03342254459857941, 0.03497500717639923, -0.053961437195539474, 0.01397215761244297, -0.01400784682482481, 0.005879726726561785, 0.015979651361703873, 0.04696643725037575, -0.013740180991590023, -0.014302278868854046, 0.018174512311816216, 0.013847246766090393, 0.04475373029708862, 0.00508565129712224, 0.0063882917165756226, -0.05695929378271103, 0.040578145533800125, 0.024018550291657448, 0.015551386401057243, 0.00047538572107441723, -0.005634366534650326, -0.0015914966352283955, -0.05624552071094513, 0.015908274799585342, -0.041006408631801605, 0.005424694623798132, 0.03219128027558327, -0.0006223231321200728, 0.0519985556602478, 0.009698426350951195, -0.0030402380507439375, 0.05610276386141777, -0.06609562039375305, 0.0452890619635582, -0.031013550236821175, -0.00826641358435154, -0.05117771402001381, -0.04154174029827118, 0.043611690402030945, -0.013758025132119656, 0.06498926877975464, -0.011456098407506943, -0.052819397300481796, 0.03493931517004967, -0.054246947169303894, 0.029764443635940552, 0.009323693811893463, 0.03394003212451935, -0.07359026372432709, -0.012624906376004219, 0.03317272290587425, -0.06159883737564087, -0.027266228571534157, 0.056281208992004395, -0.04932189732789993, 0.02107422612607479, 0.00490274652838707, -0.08122766762971878, -0.040935032069683075, -0.04668092727661133, -0.09257669746875763, 0.0038499273359775543, 0.01802283525466919, -0.026017121970653534, -0.022983575239777565, -0.03249463438987732, -0.002444681478664279, -0.008605457842350006, -0.007119911722838879, -0.0029287105426192284, 0.0195396076887846, -0.03301212191581726, -0.0130264051258564, 0.009930402971804142, 0.01324945967644453, 0.032690923660993576, -0.04546750709414482, 0.03829406201839447, 0.03140612691640854, 0.046859368681907654, 0.03658100217580795, 0.02671305276453495, 0.011821908876299858, -0.01736259274184704, 0.03301212191581726, -0.03467164933681488, -0.04568164050579071, -0.04436115548014641, 0.017041392624378204, -0.0020398369524627924, 0.008079048246145248, 0.01911134272813797, -0.03445751965045929, -0.04464666545391083, -0.032976433634757996, 0.017603490501642227, 0.030353307723999023, -0.026552453637123108, 0.06595286726951599, 0.04139898717403412, 0.01328514888882637, -0.06602424383163452, 0.008248569443821907, -0.005339934024959803, 0.021520335227251053, -0.08429690450429916, 0.030585285276174545, 0.07087791711091995, -0.02489292435348034, 0.02858671359717846, -0.012178796343505383, -0.07508919388055801, -0.005906493403017521, -0.02765880525112152, -0.01614917442202568, -0.0017576725222170353, -0.011268733069300652, 0.06327620893716812, -0.000002953734565380728, -0.02048536017537117, 0.0328693687915802, -0.03658100217580795, -0.0012479920405894518, 0.026748741045594215, 0.038401126861572266, 0.04785865545272827, 0.009671660140156746, -0.010662022978067398, 0.01563168689608574, -0.03750890865921974, 0.0068700904957950115, 0.012089574709534645, 0.0022127043921500444, 0.08208419382572174, 0.022840820252895355, -0.02758742868900299, -0.04407564550638199, 0.005674516316503286, 0.02924695611000061, -0.022555310279130936, -0.0063124531880021095, 0.034493207931518555, -0.06563166528940201, 0.022180577740073204, 0.01669342815876007, -0.0650249570608139, -0.024411126971244812, 0.0012669517891481519, -0.09421838074922562, 0.0070396121591329575, 0.02974659949541092, -0.004159973468631506, -0.00544700026512146, -0.011206277646124363, -0.027034251019358635, 0.01274089515209198, 0.013088860549032688, 0.002540595130994916, -0.03758028522133827, -0.02744467370212078, 0.048251233994960785, -0.025785144418478012, -0.009421838447451591, 0.008038897998631, 0.0396859236061573, -0.012794428505003452, 0.013918624259531498, 0.09521766752004623, -0.04539613053202629, 0.06413274258375168, -0.028907913714647293, 0.02128835767507553, 0.039114903658628464, -0.005348856095224619, -0.05681654065847397, 0.009778725914657116, 0.01579228602349758, -0.030870795249938965, -0.014641322195529938, -0.019022120162844658, -0.004043985158205032, 0.0006741833640262485, -0.022912196815013885, 0.011090288870036602, -0.03929334878921509, 0.05349748209118843, 0.05314059555530548, 0.034064941108226776, 0.00009633183071855456, 0.010590645484626293 ]
23,305
parutils.strg
big_number
Converts a potentially big number into a lisible string. Example: - big_number(10000000) returns '10 000 000'.
def big_number(int_in): """Converts a potentially big number into a lisible string. Example: - big_number(10000000) returns '10 000 000'. """ s = str(int_in) position = len(s) counter = 0 out = '' while position != 0: counter += 1 position -= 1 out = s[position] + out if counter % 3 == 0 and position != 0: out = " " + out return (out)
(int_in)
[ -0.04558097943663597, 0.018547071143984795, -0.06198250129818916, 0.061791788786649704, 0.017192993313074112, -0.0109565993770957, -0.02618522383272648, 0.023553350940346718, 0.011671782471239567, -0.13609451055526733, 0.028416594490408897, 0.04958600178360939, -0.042148102074861526, -0.02809237688779831, -0.012196249328553677, -0.0023231517989188433, 0.02954181469976902, -0.03476741537451744, 0.0687338262796402, -0.04085123911499977, 0.024392498657107353, 0.040698666125535965, 0.059236202389001846, 0.0068085393868386745, -0.020196760073304176, 0.07182341814041138, 0.03463391587138176, 0.022962132468819618, -0.006584448739886284, 0.021932270377874374, 0.0026342563796788454, -0.02136012353003025, 0.05149315670132637, 0.0012515697162598372, -0.027329515665769577, 0.02195134200155735, 0.018375428393483162, 0.008358102291822433, -0.06453809142112732, 0.014732764102518559, -0.0016055852174758911, -0.045657265931367874, 0.0157435555011034, 0.019405290484428406, -0.048556137830019, -0.06278350949287415, 0.0025841936003416777, 0.01787956804037094, -0.02404921129345894, -0.024659499526023865, 0.0027629893738776445, -0.027653731405735016, -0.033527765423059464, -0.010575168766081333, -0.04428411275148392, -0.013760115951299667, 0.022561630234122276, -0.023190991953015327, 0.04409340023994446, 0.028302164748311043, -0.04554283618927002, -0.013893616385757923, -0.006722717545926571, -0.03913480043411255, -0.031334538012742996, 0.019700899720191956, 0.00214435625821352, -0.016544559970498085, 0.008515442721545696, -0.01563866250216961, -0.016449201852083206, 0.025937292724847794, -0.010241416282951832, 0.015714948996901512, 0.0047273579984903336, 0.013779187574982643, 0.006975415628403425, -0.0462675541639328, -0.017011813819408417, 0.03471020236611366, 0.07979532331228256, -0.07628615945577621, 0.02227555774152279, -0.042148102074861526, -0.004403141792863607, -0.06701739132404327, 0.0231337770819664, 0.0012152146082371473, -0.014751835726201534, 0.011795747093856335, -0.0015292990719899535, 0.0032064025290310383, -0.011061492376029491, 0.006565377581864595, -0.05252302065491676, -0.010279559530317783, 0.0024113578256219625, 0.007375917863100767, -0.05202715843915939, -0.008715693838894367, -0.02126476727426052, 0.0192908626049757, -0.05675690248608589, -0.04485626146197319, -0.03453855961561203, -0.027882590889930725, 0.006794235669076443, -0.015247696079313755, 0.025880079716444016, 0.008629871532320976, -0.05519303306937218, -0.051645729690790176, -0.02927481383085251, -0.0652628093957901, 0.004977671895176172, 0.022389987483620644, 0.014875800348818302, 0.0273104440420866, 0.05053957924246788, -0.043330539017915726, 0.028664523735642433, -0.044741831719875336, -0.02858823724091053, -0.027062514796853065, 0.015524232760071754, 0.059693917632102966, 0.005940784700214863, 0.017078563570976257, 0.03501534461975098, -0.030304675921797752, 0.007533257827162743, 0.04817470908164978, 0.08757650852203369, 0.048022136092185974, 0.0074808113276958466, 0.009454715996980667, -0.07949017733335495, 0.04222438856959343, 0.030743321403861046, 0.03404269739985466, -0.018117962405085564, -0.036197781562805176, -0.00180106854531914, 0.000916625838726759, 0.002500755712389946, -0.003451948519796133, 0.06255465000867844, -0.03175411373376846, -0.01764117367565632, -0.043788254261016846, 0.03291747719049454, -0.008839658461511135, 0.050692152231931686, 0.024239925667643547, -0.010012557730078697, 0.05984649062156677, 0.03913480043411255, 0.0066130561754107475, 0.08757650852203369, -0.0189571101218462, 0.05309516564011574, 0.046610843390226364, 0.016554096713662148, 0.02563214860856533, 0.009368893690407276, -0.03396641090512276, 0.04359753802418709, 0.02340077795088291, 0.026700155809521675, 0.025079073384404182, -0.010413060896098614, 0.027958877384662628, -0.012892360799014568, 0.039058513939380646, 0.05599404126405716, 0.0021252846345305443, 0.0035735296551138163, 0.011099635623395443, 0.027253229171037674, 0.03903944045305252, -0.03335612267255783, -0.03814307972788811, -0.012549072504043579, 0.037017859518527985, -0.011671782471239567, -0.004052702337503433, 0.02122662402689457, -0.0006472403765656054, -0.021703410893678665, -0.07094612717628479, -0.009588216431438923, 0.01115685049444437, 0.014351333491504192, -0.04394082725048065, -0.04371196776628494, -0.014246439561247826, 0.029789743945002556, 0.004929992835968733, -0.013769651763141155, 0.013216576538980007, -0.023915709927678108, 0.04561912268400192, 0.0033303676173090935, -0.07308214157819748, 0.059198059141635895, -0.006002767011523247, -0.06602566689252853, -0.044245969504117966, -0.0662926733493805, 0.014132010750472546, -0.015323981642723083, 0.022618845105171204, 0.0005602264427579939, 0.006288839969784021, -0.0012313062325119972, -0.009859985671937466, 0.007113683968782425, 0.03158247098326683, -0.002939400961622596, -0.00893978402018547, -0.02376313880085945, -0.03341333568096161, 0.010012557730078697, -0.0055498178116977215, -0.001093037542887032, 0.037246715277433395, 0.01668759621679783, 0.06705553084611893, 0.06633081287145615, 0.014561120420694351, 0.04085123911499977, 0.007385453674942255, 0.01879500225186348, 0.05614661052823067, 0.014370405115187168, -0.09787514060735703, -0.03366126865148544, -0.07765930891036987, 0.026967156678438187, -0.040698666125535965, -0.00027489836793392897, 0.020826121792197227, -0.0002102339203702286, 0.04748813435435295, 0.007733509410172701, -0.013416827656328678, -0.02649036794900894, 0.026280581951141357, -0.02891245298087597, 0.028664523735642433, -0.02563214860856533, -0.02612800896167755, -0.034385986626148224, -0.005468763876706362, 0.018289607018232346, -0.0066130561754107475, -0.07498928904533386, -0.0019309933995828032, -0.042109958827495575, 0.04016466066241264, 0.004765500780194998, -0.03781886398792267, -0.03959251567721367, -0.009578680619597435, 0.0033708945848047733, -0.05645175650715828, -0.05782490596175194, -0.039287369698286057, 0.04722113162279129, 0.002770140999928117, 0.15127545595169067, -0.03316540643572807, 0.004119452554732561, 0.01151920948177576, -0.01925271935760975, 0.0027772928588092327, -0.033298905938863754, 0.07540886849164963, -0.004372150171548128, -0.0439026840031147, -0.005778676364570856, 0.0373230017721653, 0.025708435103297234, -0.05568889528512955, 0.018737787380814552, -0.009292607195675373, -0.008725229650735855, -0.004832251463085413, 0.03013303130865097, 0.0051540834829211235, -0.004374534357339144, -0.01419876143336296, -0.05439202859997749, 0.02750116027891636, -0.018918966874480247, -0.01849939301609993, 0.023324493318796158, 0.02595636434853077, 0.019376683980226517, 0.00012999936006963253, -0.07315842807292938, -0.0036450480110943317, -0.0044818115420639515, -0.0343669131398201, 0.008253208361566067, -0.00938319694250822, -0.028016090393066406, -0.050158146768808365, -0.014971158467233181, 0.018718715757131577, -0.0338519811630249, -0.047831419855356216, 0.041881099343299866, 0.019929759204387665, 0.016849705949425697, 0.007728741504251957, -0.03898222744464874, -0.01902385987341404, -0.0367317833006382, -0.0034018857404589653, 0.01919550448656082, -0.03825750946998596, 0.015896128490567207, 0.003950192593038082, 0.022618845105171204, -0.0005050977924838662, -0.04409340023994446, 0.06388965994119644, 0.022389987483620644, -0.0546208880841732, -0.008343798108398914, -0.004257721360772848, 0.016716204583644867, -0.010947063565254211, 0.01867103762924671, -0.03596892207860947, 0.018098890781402588, -0.04672527313232422, -0.03491998836398125, -0.00939750112593174, 0.11908268928527832, -0.01820378378033638, -0.00457716966047883, 0.052332304418087006, -0.001983440015465021, 0.04775513336062431, 0.0219131987541914, -0.006007534917443991, 0.020006045699119568, 0.013435899280011654, -0.024659499526023865, -0.02576564997434616, -0.0024697643239051104, -0.008801515214145184, -0.02740580216050148, 0.06846682727336884, 0.04428411275148392, -0.05996092036366463, 0.010393989272415638, 0.0403553768992424, 0.027157872915267944, -0.03394734114408493, 0.04420782998204231, 0.016649452969431877, -0.03686528652906418, 0.0020716460421681404, -0.0033136799465864897, -0.009359357878565788, 0.06839054077863693, 0.05767233669757843, -0.00108648173045367, 0.035434920340776443, -0.0000711457832949236, -0.0062840720638632774, -0.022008556872606277, 0.0439789704978466, -0.05500232055783272, 0.039058513939380646, -0.037609074264764786, -0.07910874485969543, -0.03717042878270149, -0.05629918351769447, -0.04054609313607216, -0.010060236789286137, 0.014389476738870144, 0.013836401514708996, 0.011414316482841969, 0.010775419883430004, -0.011214065365493298, 0.04931899905204773, -0.040202803909778595, 0.011366637423634529, 0.07018326222896576, -0.0044245971366763115, 0.019567400217056274, -0.009578680619597435, 0.04512326046824455, -0.0011150890495628119, 0.045008834451436996, 0.05622289702296257, -0.011175922118127346, 0.02526978962123394, -0.01583891361951828, 0.028283093124628067, -0.03707507252693176, 0.0390966571867466, 0.02649036794900894, -0.016420595347881317, 0.01683063432574272, -0.014809050597250462, -0.03741836175322533, 0.011509673669934273, -0.030647963285446167, -0.06362265348434448, 0.0593506321310997, -0.04573355242609978, 0.0039048977196216583, -0.065339095890522, -0.04226253181695938, -0.013445435091853142, -0.03348962217569351, -0.0498148612678051, 0.023305421695113182, 0.007962367497384548, -0.07746859639883041, 0.018508929759263992, -0.03575913608074188, 0.05046329274773598, -0.03081960789859295, 0.05366731062531471, 0.006527234334498644, 0.009716949425637722, 0.015695877373218536, -0.03966880217194557, 0.055879611521959305, 0.01843264326453209, 0.028054233640432358, 0.01586752012372017, 0.016935527324676514, 0.007876546122133732, 0.10329145938158035, 0.04428411275148392, 0.00820076186209917, 0.03800957649946213, 0.1283133178949356, 0.01227253582328558, 0.007352078333497047, 0.06057120859622955, 0.02340077795088291, 0.005087333265691996, 0.01570541225373745, 0.0009339094394817948, -0.0063651264645159245, -0.012463251128792763, 0.006508162710815668, -0.07662944495677948, 0.0038405312225222588, 0.04786956310272217, -0.015600519254803658, 0.05793933570384979, -0.06556795537471771, 0.0368080697953701, -0.021798769012093544, 0.04558097943663597, -0.022485345602035522, -0.021245695650577545, -0.00036444520810618997, -0.030152102932333946, -0.050196290016174316, 0.019166897982358932, 0.0014780443161725998, 0.01863289438188076, 0.004515186883509159, 0.0068895937874913216, 0.06556795537471771, -0.018146568909287453, 0.0044555882923305035, -0.011805282905697823, 0.03213554248213768, 0.023534279316663742, 0.04573355242609978, -0.03802864998579025, 0.01375058013945818, 0.005416317377239466, -0.01140478067100048, 0.05340031161904335, 0.021054979413747787, 0.02458321489393711, 0.027100658044219017, -0.01640152372419834, -0.008830122649669647, 0.06964926421642303, 0.004856090527027845, -0.03430970013141632, 0.019109683111310005, -0.007800259627401829, -0.0628216490149498, 0.020826121792197227, -0.05534560605883598, 0.015438411384820938, -0.03759000450372696, -0.007852706126868725, -0.012968646362423897, -0.027005299925804138, 0.0021205167286098003, 0.02599450759589672, -0.007070773281157017, 0.005788212176412344, -0.03789515048265457, 0.008834891021251678, -0.0201776884496212, 0.007504650857299566, 0.04058423638343811, -0.016678061336278915, -0.02490743063390255, -0.018146568909287453, 0.022733274847269058, 0.005945552606135607, -0.017488600686192513, -0.0025079073384404182, 0.05172201618552208, -0.017555352300405502, -0.02063540555536747, -0.0331844799220562, 0.020158616825938225, -0.011595495976507664, -0.007452203892171383, 0.01698320545256138, -0.05938877537846565, 0.06812354177236557, -0.07418828457593918, 0.020520975813269615, 0.012463251128792763, 0.03417619690299034, -0.023343564942479134, -0.052599307149648666, 0.0031301164999604225, -0.03190668672323227, 0.10626661777496338, -0.016449201852083206, -0.060609351843595505, -0.009626359678804874, 0.05915991589426994, -0.0557270385324955, -0.014379940927028656, 0.04455111548304558, 0.017955854535102844, 0.08818680047988892, 0.016153594478964806, -0.051149867475032806, 0.004944296553730965, -0.0033399034291505814, 0.02677644044160843, 0.008892104960978031, 0.03053353540599346, -0.03253604471683502, -0.04359753802418709, -0.0009976798901334405, 0.008815819397568703, 0.025288861244916916, 0.03413805365562439, 0.0367317833006382, 0.03059074841439724, -0.036750856786966324, -0.041423384100198746, -0.007728741504251957, -0.022199271246790886, -0.04050794988870621, -0.008062493056058884, -0.015810305252671242, 0.07010697573423386, -0.055917754769325256, 0.04954785853624344, -0.021283837035298347, 0.003821459598839283, -0.01406526006758213, -0.04489440470933914, -0.06076192483305931, 0.06465251743793488, 0.07045026868581772, -0.01758395880460739, 0.013874544762074947, -0.03490091860294342, 0.02267605997622013, 0.02635686658322811, -0.015991486608982086, -0.027062514796853065, -0.02399199642241001, 0.02855009399354458, -0.0025984973181039095, 0.0522560179233551, 0.007471275515854359, 0.030094889923930168, -0.018127497285604477, 0.00837717391550541, -0.0038858260959386826, -0.05973206087946892, 0.014332261867821217, -0.013197504915297031, -0.03501534461975098, -0.017660245299339294, 0.02404921129345894, -0.006427108775824308, 0.09093309938907623, 0.019376683980226517, 0.04363568127155304, 0.007795491721481085, -0.03499627485871315, -0.018127497285604477, 0.000542346911970526, -0.021398266777396202, -0.003075285814702511, -0.026700155809521675, -0.03062889166176319, -0.08330448716878891, -0.004863242618739605, 0.0022528255358338356, -0.07079355418682098, -0.010947063565254211, -0.10062143951654434, -0.02891245298087597, 0.07540886849164963, -0.017698388546705246, 0.021779697388410568, 0.01629663072526455, 0.014446690678596497, -0.004670143127441406, -0.037971433252096176, 0.015524232760071754, -0.03423341363668442, -0.04420782998204231, 0.05534560605883598, 0.022656988352537155, -0.005969391670078039, -0.07220485061407089, 0.011576424352824688, -0.011233136989176273, 0.03932551294565201, -0.06602566689252853, 0.03221182897686958, 0.019472042098641396, -0.005673782899975777, -0.06705553084611893, -0.06530094891786575, 0.035701923072338104, 0.009259232319891453, 0.051111724227666855, -0.0019202656112611294, -0.020368404686450958, -0.0462675541639328, -0.03335612267255783, 0.06614010035991669, 0.07029769569635391, -0.03301283344626427, -0.0044198292307555676, -0.020425619557499886, 0.03099125064909458, -0.005473531782627106, -0.01636338047683239, 0.006713181734085083, 0.0616392157971859, -0.062287647277116776, -0.005425852723419666, -0.03871522471308708, 0.008768140338361263, 0.021054979413747787, -0.02168434113264084, 0.010613312013447285, 0.04577169567346573, -0.054468315094709396, 0.02317192032933235, -0.01472322829067707, 0.031658753752708435, -0.06812354177236557, -0.0002194716944359243, -0.04840356856584549, 0.026852726936340332, 0.08238904923200607, -0.0037713968195021152, -0.04504697769880295, 0.015552840195596218, -0.05710018798708916, 0.007166130933910608, -0.02244720235466957, 0.006388965528458357, 0.0020585341844707727, -0.024716714397072792, 0.012673038057982922, -0.032154615968465805, 0.032783977687358856, -0.016544559970498085, 0.0003817287797573954, -0.028435664251446724, -0.023744067177176476, 0.01704995706677437, 0.047564420849084854, -0.05240859091281891, 0.026662012562155724, 0.0130449328571558, -0.06869568675756454, 0.05664247274398804, -0.05687132850289345, 0.025155359879136086, 0.0665215328335762, -0.0051540834829211235, -0.04180481284856796, 0.024526000022888184, -0.0039525763131678104, -0.03303190693259239, -0.04775513336062431, -0.011490602046251297, 0.045657265931367874, -0.0036450480110943317, -0.0027510696090757847, 0.024239925667643547, -0.0219894852489233, -0.017850961536169052, 0.07239556312561035, -0.055917754769325256, 0.0487087108194828, 0.03150618448853493, -0.02940831333398819, 0.020692620426416397, 0.004212426487356424, -0.025460505858063698, -0.03421434015035629, 0.02832123637199402, 0.013159362599253654, 0.012959110550582409, -0.030895894393324852, 0.004925224930047989, -0.029618101194500923, -0.0035282347816973925, 0.01334054209291935, 0.03312726318836212, 0.026299653574824333, -0.016582703217864037, 0.0056261043064296246, -0.01632523722946644, -0.08040560781955719, 0.010804027318954468, 0.027558375149965286, -0.0026175687089562416, 0.02067354880273342, -0.006927736569195986, 0.029370170086622238, 0.06247836351394653, 0.0558033250272274, 0.007847938686609268, -0.03108660876750946, 0.013226112350821495, -0.011481066234409809, -0.026566654443740845, -0.04180481284856796, 0.04108009487390518, 0.007790723815560341, -0.05080658197402954, 0.03249790146946907, -0.022332772612571716, -0.051378726959228516, -0.013254719786345959, -0.08032932132482529, 0.047335561364889145, -0.017593495547771454, -0.00431255204603076, 0.02576564997434616, 0.010613312013447285, 0.0058311233296990395 ]
23,307
parutils.logging.cl
check_log
Checks whether the current log file contains the 'in_list' elements. If it doesn't, a warning is thrown. - log_matches: if True, the matches are printed out in the log file
def check_log(in_list=[], in_list_not=[], log_matches=False, max_warn=0, name=''): """Checks whether the current log file contains the 'in_list' elements. If it doesn't, a warning is thrown. - log_matches: if True, the matches are printed out in the log file """ s = ' ' + name if name else '' log(f'check_log{s}...') logger = get_logger() txt = load_txt(logger) n_w = 0 n_w += check(in_list, txt, logger.log_path, log_matches) n_w += check_not(in_list_not, txt, logger.log_path) check_warn(n_w, max_warn, name)
(in_list=[], in_list_not=[], log_matches=False, max_warn=0, name='')
[ 0.009463608264923096, -0.01924651302397251, -0.011698687449097633, 0.0762765035033226, 0.00007324152102228254, -0.013756378553807735, -0.0037561743520200253, -0.045198261737823486, -0.04849766567349434, 0.011264088563621044, -0.0127807492390275, 0.026448434218764305, 0.049739375710487366, -0.08138525485992432, 0.009685342200100422, -0.029978439211845398, -0.018093496561050415, 0.015955980867147446, 0.004860410001128912, 0.021126817911863327, 0.004527808632701635, 0.07414785772562027, -0.0009140985202975571, 0.05580601841211319, 0.00037085014628246427, 0.00873632077127695, 0.04143765568733215, 0.02829326130449772, -0.012816226109862328, 0.054919082671403885, -0.049881286919116974, 0.03671915456652641, 0.000048227149818558246, -0.011796250008046627, -0.012186502106487751, -0.023237725719809532, 0.038847800344228745, -0.016177713871002197, -0.07414785772562027, -0.022847473621368408, 0.040976446121931076, 0.007215225137770176, 0.0576508454978466, 0.015769723802804947, -0.040657151490449905, 0.014332886785268784, -0.01697595603764057, 0.034714680165052414, -0.015051305294036865, 0.022776518017053604, 0.011450344696640968, -0.027583712711930275, -0.04168599471449852, -0.022811995819211006, 0.028665773570537567, 0.029659142717719078, 0.039025187492370605, -0.008709711953997612, 0.08656496554613113, -0.06879076361656189, -0.021694457158446312, 0.015184345655143261, 0.02719346061348915, -0.011157656088471413, 0.024851949885487556, 0.015015828423202038, -0.012088938616216183, -0.040657151490449905, 0.001039378228597343, 0.026271047070622444, -0.04995223879814148, -0.0462271086871624, 0.014856179244816303, 0.01310004573315382, -0.03906066715717316, 0.00964986439794302, 0.035300057381391525, 0.0924542173743248, -0.0026940684765577316, 0.00375173962675035, -0.023503806442022324, -0.013525775633752346, 0.05225827544927597, 0.012718663550913334, 0.014554621651768684, -0.004059949889779091, -0.0014468145091086626, 0.03540648892521858, 0.05516742542386055, 0.008838318288326263, -0.06112763658165932, 0.07350926101207733, 0.017100127413868904, -0.0014545752201229334, -0.07350926101207733, -0.017064649611711502, -0.016727615147829056, 0.016355101019144058, -0.05190350115299225, 0.06996151804924011, -0.033721309155225754, 0.025543758645653725, 0.03483884781599045, -0.015414949506521225, -0.006603239104151726, -0.0543869212269783, -0.08777119219303131, -0.031025024130940437, 0.03579673916101456, -0.014474797062575817, -0.025366371497511864, -0.06368201225996017, 0.027495019137859344, 0.0032816636376082897, 0.03196517750620842, 0.023557022213935852, -0.015042436309158802, -0.05204540863633156, -0.08401058614253998, -0.02738858573138714, 0.09209944307804108, -0.011202002875506878, -0.009570040740072727, 0.0006973535055294633, 0.04853314161300659, -0.030936330556869507, -0.005308312363922596, -0.01774759031832218, 0.04764620587229729, 0.0005116512766107917, 0.03881232440471649, -0.009348306804895401, 0.007299484219402075, 0.02719346061348915, 0.02902054972946644, -0.0174726415425539, -0.013357257470488548, -0.007605476770550013, -0.035761263221502304, -0.03106050193309784, -0.019370684400200844, 0.0006951361428946257, 0.010474715381860733, -0.002410248853266239, -0.020878475159406662, 0.024639084935188293, -0.014865049161016941, 0.011405997909605503, 0.04409846290946007, -0.0019257599487900734, 0.008204158395528793, -0.05821848660707474, -0.0632917582988739, -0.0356903076171875, -0.07134513556957245, -0.025029337033629417, -0.026448434218764305, 0.015299647115170956, 0.0033104890026152134, -0.022226618602871895, 0.042111724615097046, -0.019760936498641968, -0.03459050878882408, 0.06932292133569717, 0.0024590303655713797, 0.008381546474993229, -0.03114919550716877, 0.04640449583530426, 0.02171219512820244, 0.029073765501379967, -0.01576085388660431, -0.0013758596032857895, -0.018004802986979485, 0.04271484166383743, -0.08663591742515564, 0.003988995216786861, -0.04278579726815224, 0.004332682583481073, -0.01857244223356247, 0.014980350621044636, -0.05658652260899544, -0.007379308342933655, 0.059779491275548935, 0.0022106883116066456, -0.029268890619277954, 0.07109680026769638, -0.030865376815199852, 0.018093496561050415, -0.03654176741838455, 0.058679692447185516, -0.047468818724155426, -0.024869687855243683, 0.05176158994436264, -0.05956662818789482, -0.01843053102493286, 0.021534807980060577, -0.05009415000677109, 0.04094097018241882, 0.028860900551080704, -0.08621019124984741, 0.03696749731898308, 0.03237316757440567, -0.000015625319065293297, -0.06034713238477707, 0.02384084276854992, 0.043708208948373795, 0.008594410493969917, 0.04722047597169876, -0.046972136944532394, 0.034714680165052414, 0.019548071548342705, 0.01537060271948576, -0.08088856935501099, 0.0641077384352684, 0.01468766201287508, 0.012842834927141666, 0.028914116322994232, -0.02620009146630764, -0.03696749731898308, 0.0025565933901816607, 0.09309281408786774, -0.02160576358437538, -0.08500395715236664, 0.03560161590576172, -0.02724667638540268, 0.032036133110523224, 0.06854242086410522, 0.07599268108606339, 0.05279043689370155, -0.023876318708062172, -0.02052370086312294, 0.024993859231472015, 0.022084709256887436, 0.05271948128938675, -0.05009415000677109, 0.01588502526283264, -0.035246841609478, 0.001325969467870891, 0.045162785798311234, 0.025898532941937447, -0.0312024112790823, 0.017543595284223557, -0.023326419293880463, 0.0073172226548194885, 0.06652020663022995, -0.02738858573138714, -0.06126954406499863, 0.03159266337752342, 0.00611985893920064, 0.032390907406806946, -0.008452501147985458, 0.018182190135121346, -0.01087383646517992, -0.050697267055511475, -0.005308312363922596, 0.026679037138819695, -0.022900689393281937, -0.0356903076171875, -0.003204056527465582, -0.062369346618652344, 0.07279971241950989, -0.004687457345426083, 0.049739375710487366, -0.011042354628443718, -0.059637583792209625, -0.011006876826286316, 0.02515350840985775, -0.02783205360174179, -0.008332764729857445, 0.0004451310378499329, 0.011601123958826065, 0.004887017887085676, 0.04118931293487549, 0.022137925028800964, -0.02738858573138714, -0.05385475978255272, 0.0486750528216362, 0.005640913732349873, -0.029730098322033882, 0.07932756096124649, 0.0019590200390666723, 0.04853314161300659, 0.015432688407599926, 0.038883280009031296, -0.01459896843880415, -0.022723302245140076, -0.02996070124208927, 0.03898971155285835, -0.04945555701851845, -0.01997380144894123, -0.02820456773042679, -0.023965012282133102, 0.022758780047297478, -0.014785224571824074, -0.04608519747853279, 0.05761536955833435, 0.031131457537412643, -0.02460360713303089, -0.028949594125151634, -0.008643192239105701, -0.03208934888243675, 0.019175557419657707, 0.01689613237977028, -0.10359413176774979, 0.01848374865949154, -0.03831563889980316, -0.048107411712408066, -0.027175722643733025, 0.005578828044235706, -0.05179706588387489, -0.0071398355066776276, 0.0639658272266388, 0.010128810070455074, -0.047326911240816116, 0.05115847289562225, -0.007117662113159895, -0.012833965010941029, 0.007703039795160294, -0.022262096405029297, 0.02297164499759674, 0.02148159220814705, 0.068116694688797, 0.03618699312210083, 0.008740754798054695, 0.03671915456652641, -0.07123870402574539, 0.03600960597395897, -0.015822939574718475, 0.009206396527588367, 0.023361897096037865, -0.02343285083770752, -0.055380288511514664, 0.013570122420787811, -0.04271484166383743, 0.007228529080748558, -0.005583262536674738, -0.041969817131757736, -0.010386021807789803, 0.06524302065372467, 0.004767281468957663, -0.0320538692176342, 0.009144310839474201, -0.024550391361117363, 0.02687416411936283, 0.0006823864532634616, -0.013880549930036068, 0.012381628155708313, 0.06474633514881134, -0.027778837829828262, 0.03446633741259575, 0.015627814456820488, -0.003988995216786861, -0.06439156085252762, 0.018820783123373985, 0.03228447213768959, 0.02788527123630047, -0.001516660675406456, -0.021286465227603912, -0.016736483201384544, 0.04250197857618332, 0.0002796620246954262, -0.0024989424273371696, -0.014865049161016941, -0.03514040634036064, 0.0011225284542888403, 0.010403760708868504, 0.026537127792835236, -0.014368364587426186, 0.030297737568616867, 0.023308681324124336, -0.027228938415646553, -0.05076822265982628, 0.07237398624420166, -0.006323854438960552, 0.0014734226278960705, 0.04640449583530426, 0.034856587648391724, 0.0008387089474126697, -0.07084845751523972, 0.03615151345729828, -0.019583549350500107, 0.04608519747853279, 0.012319542467594147, -0.01330404169857502, 0.01132617425173521, 0.009507955051958561, -0.01270979456603527, 0.014625576324760914, 0.018288621678948402, 0.031716834753751755, 0.02992522343993187, 0.010971399024128914, -0.03874136880040169, -0.037889908999204636, -0.050377968698740005, 0.0013226434821262956, 0.024763256311416626, 0.09110607206821442, -0.03464372456073761, -0.05938924103975296, -0.001699591288343072, 0.02047048509120941, -0.05463526397943497, 0.010235242545604706, -0.057508934289216995, 0.06950031220912933, -0.006133162882179022, -0.0015743115218356252, 0.0011064527789130807, -0.02061239443719387, 0.007667562458664179, -0.010900444351136684, 0.008953619748353958, -0.04927816987037659, -0.03831563889980316, 0.05435144528746605, -0.009383783675730228, -0.01839505508542061, -0.000797133834566921, -0.0421472042798996, -0.010678710415959358, -0.03310045599937439, 0.07279971241950989, 0.06822312623262405, 0.03208934888243675, -0.005663087125867605, -0.06666211783885956, 0.01834183745086193, -0.009250743314623833, -0.023663455620408058, -0.05449335277080536, 0.01716221310198307, -0.009250743314623833, -0.009898207150399685, 0.032390907406806946, -0.04753977432847023, -0.018643395975232124, 0.0010421499609947205, -0.031255628913640976, -0.004159730393439531, -0.031255628913640976, 0.013002483174204826, 0.05381928011775017, 0.0037539571058005095, -0.0040932102128863335, 0.032302211970090866, -0.054103102535009384, -0.043708208948373795, 0.007020099088549614, 0.017135605216026306, -0.05665747821331024, 0.037073928862810135, -0.035300057381391525, -0.03196517750620842, 0.02710476703941822, 0.0016308537451550364, -0.0827334001660347, 0.020683350041508675, 0.06251125782728195, 0.0162131916731596, 0.01484731025993824, -0.01180511899292469, 0.04757525026798248, -0.02479873225092888, 0.0077695599757134914, -0.06850694119930267, 0.02588079497218132, -0.007929208688437939, 0.06832955777645111, -0.0036652632988989353, 0.031184673309326172, 0.009640995413064957, -0.03483884781599045, -0.018856260925531387, 0.02541958913207054, -0.003306054277345538, 0.017623420804739, 0.04037332907319069, -0.0028781075961887836, -0.00023905698617454618, -0.03354392200708389, -0.023716671392321587, 0.031539447605609894, -0.015273039229214191, -0.011636601760983467, -0.0796113833785057, -0.011725295335054398, -0.0568348653614521, -0.010989137925207615, -0.069003626704216, -0.012204241007566452, -0.06694593280553818, 0.021676717326045036, -0.030084872618317604, -0.016248669475317, -0.06424964964389801, -0.031025024130940437, -0.01114878710359335, 0.002745067235082388, -0.002705155173316598, 0.012585623189806938, -0.009357175789773464, 0.00025000510504469275, 0.049739375710487366, 0.021038124337792397, -0.012443712912499905, 0.06112763658165932, -0.020896214991807938, -0.01615997590124607, -0.015955980867147446, -0.016603443771600723, -0.0023902927059680223, 0.013233086094260216, 0.025827579200267792, 0.002822674112394452, -0.02824004553258419, -0.05321616679430008, 0.003405834548175335, 0.02261687070131302, 0.00957890972495079, -0.030794421210885048, 0.0478590726852417, -0.009188657626509666, -0.051371339708566666, 0.020594656467437744, -0.005853778216987848, 0.017969325184822083, -0.00604003481566906, -0.034625984728336334, 0.045198261737823486, -0.03891875594854355, -0.0031153629533946514, -0.0008370459545403719, -0.07322544604539871, -0.017907239496707916, 0.053322598338127136, 0.026412956416606903, -0.04707856848835945, 0.022350789979100227, 0.018856260925531387, -0.005281704477965832, -0.032036133110523224, 0.009685342200100422, -0.015086783096194267, -0.0575798898935318, 0.04651092737913132, -0.020772043615579605, -0.008691973984241486, 0.019636765122413635, -0.009951422922313213, 0.08323008567094803, -0.009277351200580597, 0.013658815994858742, -0.018466008827090263, 0.02588079497218132, -0.012984744273126125, 0.026395218446850777, 0.015503643080592155, -0.008173116482794285, -0.013179870322346687, 0.0023880754597485065, -0.03581447899341583, -0.017685506492853165, 0.021818628534674644, -0.049100782722234726, -0.08848074078559875, 0.026945117861032486, -0.006004557479172945, 0.006474633235484362, 0.029854269698262215, 0.03427121043205261, 0.052684005349874496, -0.015477035194635391, 0.005020058248192072, -0.034980759024620056, 0.002567680086940527, 0.029659142717719078, 0.02541958913207054, 0.032586030662059784, -0.022492699325084686, 0.008612149395048618, 0.018182190135121346, -0.030617034062743187, 0.016284147277474403, 0.03134432062506676, 0.01993832364678383, 0.004625371657311916, 0.00041547411819919944, -0.015787461772561073, 0.10146548599004745, 0.008439197205007076, 0.04342439025640488, 0.013428212143480778, 0.02428431063890457, -0.014944872818887234, 0.040621671825647354, 0.03420025482773781, 0.006665324792265892, 0.04885243996977806, 0.033348798751831055, -0.04005403444170952, -0.003476789453998208, -0.03721584007143974, -0.08010806888341904, -0.04122478887438774, -0.02451491355895996, 0.05903446674346924, -0.04108288139104843, -0.0174726415425539, 0.06361105293035507, -0.01656796596944332, 0.014439319260418415, 0.011867204681038857, -0.019920583814382553, 0.00003090417885687202, 0.0021741020027548075, -0.005645348224788904, 0.08053379505872726, 0.05640913546085358, 0.03255055472254753, -0.004288335796445608, 0.012142155319452286, 0.015246431343257427, -0.012319542467594147, 0.011876074597239494, 0.003554396331310272, -0.05048440396785736, -0.008332764729857445, -0.007862688042223454, -0.003691871417686343, -0.004117600619792938, -0.0003777793317567557, -0.022404005751013756, -0.004048863425850868, -0.05289686843752861, 0.006425851956009865, 0.019991539418697357, -0.09813060611486435, -0.02075430378317833, -0.0034812241792678833, -0.019441640004515648, -0.050697267055511475, 0.010226373560726643, -0.05853778123855591, 0.05044892430305481, 0.03490980342030525, 0.010545670054852962, -0.009463608264923096, 0.064994677901268, 0.016505880281329155, 0.0025721145793795586, 0.07514122873544693, 0.018040280789136887, 0.06346914917230606, -0.00041658279951661825, 0.006518980488181114, 0.00828841794282198, 0.007667562458664179, -0.009117702953517437, 0.03501623496413231, -0.005113186780363321, 0.022492699325084686, 0.00025069803814403713, -0.034501813352108, -0.01337499637156725, -0.021268727257847786, 0.02561471424996853, 0.008887100033462048, 0.01132617425173521, 0.05626722425222397, 0.012656577862799168, -0.03937996178865433, 0.0746445432305336, 0.024053705856204033, 0.04413393884897232, -0.0016696571838110685, 0.01694048009812832, 0.028985071927309036, 0.03010261058807373, -0.029570449143648148, -0.02419561706483364, 0.032940804958343506, 0.010598885826766491, -0.030900852754712105, 0.040799058973789215, 0.12551920115947723, -0.031486231833696365, 0.005184141453355551, 0.05307425558567047, 0.010501323267817497, -0.0746445432305336, -0.020772043615579605, -0.013516905717551708, 0.03141527622938156, -0.004192990250885487, 0.0430341400206089, -0.063362717628479, 0.08684878051280975, -0.01369429286569357, -0.04331795871257782, -0.008616584353148937, 0.009366044774651527, 0.0405861958861351, 0.06644925475120544, -0.004731804132461548, -0.0877002403140068, -0.05413857847452164, -0.01915781944990158, -0.037535134702920914, -0.021818628534674644, -0.020009277388453484, 0.02815135195851326, 0.070493683218956, -0.03973473608493805, -0.012479190714657307, -0.063362717628479, 0.04587233439087868, -0.044382281601428986, -0.004337117541581392, -0.0405152402818203, 0.04090549424290657, 0.0198851078748703, 0.0008653170079924166, -0.033260103315114975, -0.020133448764681816, -0.0140047213062644, -0.040834538638591766, -0.08401058614253998, 0.040337853133678436, -0.008009033277630806, 0.008904838003218174, 0.03636438027024269, -0.037535134702920914, 0.02157028578221798, 0.0159914568066597, -0.010483584366738796, -0.03411156311631203, -0.014989219605922699, -0.0006818321417085826, -0.0020421703811734915, 0.04345986992120743, -0.036896541714668274, -0.0029845398385077715, -0.00406216736882925, -0.06354010105133057, 0.0002382254897383973, 0.0139869824051857, 0.01903364807367325, -0.06815216690301895, -0.00828841794282198, 0.03178779035806656, -0.04157956317067146, -0.042253635823726654, 0.005193010903894901, 0.05463526397943497, 0.03959282860159874, 0.03856398165225983, -0.06776192039251328, -0.016647789627313614, -0.004102079197764397, 0.05640913546085358, 0.05016510561108589, 0.012550145387649536, 0.03388096019625664, -0.006589935161173344, 0.016151105985045433, -0.04573042318224907, 0.03423573449254036 ]
23,308
parutils.logging.core
close_logger
null
def close_logger(): if g.logger: g.logger.close()
()
[ 0.023399734869599342, -0.010233043693006039, 0.006205790210515261, 0.05023651942610741, 0.0053552063181996346, -0.029579486697912216, -0.029336461797356606, 0.0794341117143631, -0.001151108997873962, 0.03499544784426689, 0.023538604378700256, -0.08651652187108994, 0.05190297216176987, 0.006709196604788303, -0.020847981795668602, 0.00029157448443584144, -0.06388057768344879, -0.011474202387034893, 0.017445648089051247, 0.017523761838674545, -0.002684112638235092, 0.004040272906422615, 0.02635073848068714, -0.01255045086145401, -0.014355771243572235, -0.005819555371999741, -0.01918153278529644, 0.08540555834770203, 0.00432886416092515, 0.0038363065104931593, -0.07443476468324661, -0.06200582534074783, 0.022011026740074158, 0.05235430225729942, -0.00032602096325717866, 0.0362105667591095, -0.01912945695221424, -0.020518165081739426, -0.03202708438038826, 0.0090005649253726, 0.0345788337290287, 0.026489609852433205, 0.0140867093577981, -0.022948404774069786, -0.011370048858225346, -0.003964328207075596, 0.0028685505967587233, 0.003703945316374302, -0.014538039453327656, -0.0023868423886597157, 0.015458058565855026, 0.01267196238040924, -0.014173503965139389, 0.022306125611066818, 0.0022099989000707865, 0.020587600767612457, 0.051590513437986374, 0.003497808938845992, -0.021507618948817253, -0.06787311285734177, 0.0014896065695211291, 0.016412796452641487, -0.03982120752334595, 0.015527494251728058, 0.045133017003536224, 0.021524978801608086, -0.013730852864682674, 0.06943541020154953, 0.029336461797356606, -0.028277572244405746, -0.05023651942610741, -0.040828023105859756, 0.01989324577152729, 0.027201322838664055, -0.027739446610212326, -0.020986853167414665, -0.020674394443631172, 0.0005506011075340211, 0.015136919915676117, -0.04683418571949005, -0.017428288236260414, 0.05447208136320114, -0.03443996608257294, 0.03232218325138092, 0.05783969908952713, -0.03784229978919029, 0.022271407768130302, 0.040341973304748535, -0.00448292400687933, 0.00316799059510231, -0.022410279139876366, 0.009070000611245632, 0.02379898726940155, -0.01871284283697605, 0.00908735953271389, -0.039404597133398056, -0.04450809955596924, 0.0563468374311924, 0.01606561802327633, -0.008011111058294773, -0.03499544784426689, -0.00765091460198164, -0.01699431799352169, 0.004660852253437042, 0.016152413561940193, -0.07380984723567963, -0.011613072827458382, -0.05405546724796295, 0.014494642615318298, -0.0010317668784409761, -0.11109665781259537, -0.01204704400151968, 0.01636071875691414, 0.004211691673845053, -0.005793517455458641, -0.00418782327324152, -0.020084192976355553, 0.037911735475063324, 0.008761880919337273, -0.04055028036236763, -0.030273839831352234, 0.04603567719459534, -0.05422905832529068, -0.014425206929445267, 0.0680467039346695, 0.027860959991812706, 0.0015438529662787914, 0.055374741554260254, -0.007594498340040445, 0.050653133541345596, 0.024007294327020645, 0.02905872091650963, -0.008609991520643234, -0.045792654156684875, 0.04700777307152748, -0.011821378953754902, -0.053187526762485504, -0.008241115137934685, -0.025413360446691513, 0.044785842299461365, -0.09547369182109833, -0.028572672978043556, -0.06787311285734177, -0.007091091480106115, 0.03286030888557434, 0.06728291511535645, -0.040341973304748535, 0.024059370160102844, -0.06627610325813293, -0.036141131073236465, -0.024250317364931107, -0.00163498695474118, 0.006092957686632872, 0.021351389586925507, -0.052840348333120346, -0.014164824038743973, -0.04867422580718994, 0.07755935937166214, 0.03864080831408501, -0.04867422580718994, 0.04506358131766319, 0.0043744309805333614, -0.014156145043671131, -0.0376339927315712, -0.021577054634690285, -0.04575793817639351, 0.010154929012060165, 0.06443606317043304, 0.002343445084989071, 0.023434452712535858, -0.09401554614305496, -0.004964631982147694, -0.012880269438028336, -0.01741093024611473, -0.0651998519897461, 0.0910298228263855, 0.022601226344704628, 0.0165516659617424, -0.05711062625050545, 0.034301094710826874, -0.005159919150173664, -0.06481795758008957, -0.008145641535520554, 0.028746260330080986, 0.04068915173411369, 0.0070954314433038235, -0.011890814639627934, 0.001670789672061801, -0.05568720027804375, 0.002710151020437479, 0.014902575872838497, -0.011283254250884056, 0.006848067510873079, -0.05794385075569153, 0.07568459957838058, 0.028190776705741882, -0.04884781315922737, -0.03509959951043129, 0.0015905048931017518, 0.019042661413550377, 0.005511435680091381, 0.04648700729012489, -0.034249018877744675, -0.06533872336149216, 0.01252441294491291, -0.018192078918218613, 0.03338107466697693, 0.005190297029912472, -0.04926442354917526, -0.019459273666143417, 0.04374431073665619, 0.009226230904459953, -0.061485059559345245, 0.03777286410331726, 0.01613505370914936, -0.01781018264591694, -0.012481015175580978, 0.0108058862388134, -0.05155579373240471, 0.057561956346035004, -0.00826281402260065, -0.017237341031432152, -0.007763747125864029, 0.02711452916264534, -0.037981171160936356, 0.03544677793979645, 0.029631562530994415, 0.050653133541345596, 0.10234779864549637, -0.05711062625050545, 0.01782754249870777, 0.061589211225509644, -0.0032439357601106167, -0.031107064336538315, -0.026437534019351006, -0.029214950278401375, -0.04509830102324486, 0.02563902549445629, 0.012350823730230331, 0.002927136607468128, -0.013756890781223774, -0.022479714825749397, -0.013930479995906353, 0.06999089568853378, 0.029492691159248352, 0.007151847705245018, 0.008032809011638165, 0.02190687321126461, 0.08193378895521164, 0.0059584262780845165, -0.015570891089737415, -0.04603567719459534, 0.04853535443544388, -0.007902617566287518, 0.03645359352231026, -0.049403294920921326, -0.009434537030756474, -0.0005402942770160735, -0.007902617566287518, -0.01982381008565426, 0.005589550826698542, 0.03777286410331726, 0.005602569784969091, 0.01721998304128647, 0.027149247005581856, 0.00042800421942956746, 0.09012716263532639, -0.07908693701028824, 0.06565118581056595, -0.012194594368338585, 0.05027123913168907, 0.008158661425113678, 0.010371915064752102, -0.041418224573135376, -0.010710412636399269, -0.0194245558232069, -0.01677733100950718, -0.0849195122718811, -0.018365666270256042, 0.07547629624605179, 0.07762879133224487, 0.030742529779672623, 0.04450809955596924, 0.013991235755383968, -0.001487436704337597, 0.04752853885293007, -0.009434537030756474, 0.051937688142061234, -0.014321054331958294, -0.009781713597476482, -0.054020751267671585, -0.008805278688669205, -0.021629130467772484, 0.09790392965078354, -0.00977303460240364, 0.004656512290239334, -0.020795905962586403, 0.015848632901906967, 0.013418393209576607, -0.003710454795509577, 0.01397387683391571, -0.013652738183736801, 0.004595756530761719, 0.025205055251717567, -0.010814565233886242, 0.008158661425113678, -0.010554182343184948, -0.0051035028882324696, 0.02456277795135975, 0.057388368993997574, -0.011569675989449024, 0.014017273671925068, -0.023121992126107216, 0.0048517994582653046, 0.028780978173017502, 0.016273925080895424, 0.011109665967524052, -0.01255045086145401, -0.012125158682465553, 0.03787701949477196, -0.03065573424100876, 0.012055723927915096, 0.013010460883378983, 0.04325826093554497, -0.03013496845960617, -0.05228486657142639, 0.0068350485526025295, 0.05429849401116371, 0.011118345893919468, -0.019875887781381607, -0.026489609852433205, 0.014494642615318298, -0.015857312828302383, -0.04825761169195175, 0.02581261470913887, -0.04145294055342674, 0.006188431289047003, -0.0737404078245163, -0.005980124697089195, -0.025968844071030617, -0.12178971618413925, -0.022340843454003334, -0.04488999396562576, 0.02770473062992096, -0.07561516761779785, 0.056277401745319366, -0.010849283076822758, -0.037147946655750275, 0.06398472934961319, -0.026506969705224037, 0.06950484961271286, 0.057561956346035004, -0.04325826093554497, -0.020101552829146385, -0.01911209709942341, -0.051243335008621216, 0.0021893854718655348, 0.02977043390274048, 0.009330383501946926, 0.04659116268157959, -0.028607390820980072, -0.025066183879971504, -0.0015905048931017518, -0.01728941686451435, 0.04207786172628403, -0.010111532174050808, -0.003239596029743552, -0.004196502733975649, 0.0032244070898741484, 0.01687280461192131, 0.006492211017757654, -0.061589211225509644, 0.04548019543290138, 0.0737404078245163, -0.06815085560083389, 0.07721217721700668, 0.0446469709277153, 0.005446340423077345, -0.022115178406238556, 0.02924966812133789, 0.015162957832217216, 0.006921842694282532, 0.014303695410490036, -0.006045220419764519, -0.015874670818448067, -0.04895196482539177, 0.01518899668008089, -0.002794775413349271, 0.003999045584350824, 0.00621446967124939, 0.07339323312044144, -0.05599965900182724, 0.016221847385168076, -0.009339063428342342, 0.008011111058294773, 0.007256000768393278, -0.05381244421005249, 0.01012021116912365, 0.0009807752212509513, 0.011404766701161861, -0.053534701466560364, 0.036314722150564194, -0.0030594978015869856, -0.005637287627905607, -0.00896584801375866, 0.04367487505078316, -0.03141952306032181, 0.016412796452641487, 0.04707720875740051, -0.021802719682455063, 0.012481015175580978, -0.03784229978919029, -0.01810528337955475, -0.017246020957827568, 0.05523587018251419, -0.03266936168074608, 0.06395001709461212, 0.04690362140536308, 0.05596494302153587, 0.05926312506198883, -0.012264030054211617, -0.009816431440412998, 0.0037950791884213686, -0.010640976950526237, -0.0230872742831707, -0.04995878040790558, -0.05992276221513748, 0.05367357283830643, 0.006908823736011982, -0.0018639068584889174, -0.061485059559345245, -0.004686890169978142, 0.01758451759815216, -0.013774249702692032, 0.02746170572936535, 0.047979868948459625, -0.02912815473973751, 0.05770082771778107, 0.0018888602498918772, 0.03350258618593216, 0.07686500251293182, -0.0024302394594997168, 0.013756890781223774, -0.10824980586767197, 0.029753074049949646, 0.002734019421041012, 0.03398863598704338, 0.026125073432922363, 0.02326086349785328, 0.001316018053330481, 0.008588292635977268, 0.001246582600288093, -0.005029727704823017, -0.014008594676852226, 0.04381374642252922, -0.039994798600673676, 0.001714186742901802, -0.014303695410490036, 0.06026993691921234, 0.015735801309347153, -0.0037668710574507713, 0.06075598672032356, 0.056242685765028, -0.006301263812929392, -0.02846851944923401, 0.0031983687076717615, 0.07228226214647293, -0.05617325007915497, 0.02095213532447815, -0.028277572244405746, 0.0767955631017685, 0.03551621362566948, 0.019632862880825996, -0.011482881382107735, -0.01822679676115513, -0.011396086774766445, -0.013019139878451824, 0.043119389563798904, 0.033363714814186096, -0.00019921996863558888, -0.04423035681247711, -0.03825891390442848, 0.013513866811990738, -0.010371915064752102, -0.04950745031237602, -0.00351516786031425, 0.03728681802749634, -0.05676345154643059, -0.0009444301249459386, 0.0040055555291473866, -0.03700907528400421, -0.016056939959526062, -0.020379293709993362, -0.08700257539749146, 0.04506358131766319, -0.03308597579598427, -0.017541121691465378, -0.05023651942610741, 0.001513474970124662, -0.04947273060679436, -0.017081111669540405, -0.010588900186121464, -0.026836786419153214, 0.0011489391326904297, 0.052840348333120346, -0.06589420884847641, 0.06405416876077652, 0.025847332552075386, -0.049160271883010864, -0.008727163076400757, -0.05915897339582443, 0.02544807828962803, -0.047632694244384766, 0.019910603761672974, -0.001679469016380608, -0.05811744183301926, -0.0637764260172844, -0.03562036529183388, 0.035550929605960846, -0.03301654011011124, 0.016664499416947365, 0.0709977075457573, -0.02367747575044632, -0.06367227435112, 0.008505837991833687, -0.06700517237186432, 0.056034378707408905, 0.03770342841744423, 0.01142212562263012, 0.05061841756105423, 0.017549799755215645, -0.04367487505078316, -0.03072516992688179, -0.049646321684122086, -0.02291368693113327, 0.041348788887262344, -0.059054818004369736, -0.06353340297937393, -0.021629130467772484, 0.00001600269206392113, -0.029753074049949646, -0.0026168471667915583, 0.009191513061523438, -0.004934254102408886, 0.005541814025491476, 0.012012326158583164, -0.029857227578759193, 0.015258432365953922, 0.056798167526721954, 0.062491871416568756, 0.0404808446764946, 0.04659116268157959, 0.025534873828291893, -0.029405897483229637, -0.02402465231716633, 0.021993666887283325, -0.005658986046910286, 0.0027383591514080763, 0.059228405356407166, -0.035186395049095154, 0.002252311212942004, 0.00259731849655509, -0.0126372454687953, 0.0015905048931017518, 0.008549234829843044, -0.03227010741829872, 0.026854146271944046, 0.006657120306044817, 0.015857312828302383, 0.03954346850514412, -0.020136268809437752, -0.03562036529183388, 0.019493991509079933, -0.023052556440234184, 0.013939158990979195, 0.005962766241282225, 0.016759973019361496, 0.010397952981293201, 0.0052336943335831165, 0.017541121691465378, -0.021143082529306412, 0.056867603212594986, -0.0014809271087870002, -0.04926442354917526, -0.0030529883224517107, 0.004669531714171171, 0.06815085560083389, 0.01728941686451435, -0.01355726458132267, 0.0519724078476429, 0.014512001536786556, 0.022184614092111588, 0.01564900577068329, -0.06020050123333931, -0.03036063350737095, 0.034301094710826874, 0.06731763482093811, -0.007368833292275667, 0.023955216631293297, 0.03687020391225815, -0.0006113570998422801, 0.016733935102820396, -0.014329733327031136, -0.03541206195950508, -0.04221672937273979, 0.010953436605632305, 0.01387840323150158, -0.01124853640794754, 0.006900144275277853, 0.010189646854996681, -0.07818427681922913, -0.051243335008621216, 0.0230351984500885, 0.008692446164786816, -0.011022871360182762, -0.01334895845502615, 0.01758451759815216, 0.024840518832206726, 0.016916202381253242, 0.06304735690355301, -0.01984116993844509, -0.03364145755767822, 0.0012248840648680925, -0.018973225727677345, -0.031523678451776505, 0.014807101339101791, -0.039578184485435486, -0.027791524305939674, -0.03398863598704338, 0.01603958010673523, -0.01518899668008089, -0.022462356835603714, -0.0028533614240586758, -0.026611121371388435, -0.02971835620701313, 0.010727771557867527, -0.004882177338004112, -0.02503146603703499, 0.0012151197297498584, -0.01871284283697605, 0.010640976950526237, 0.017914336174726486, -0.007117129862308502, 0.00012842839350923896, 0.016152413561940193, -0.03943931311368942, 0.004491603467613459, -0.004630473908036947, 0.01716790534555912, -0.08804410696029663, -0.014789743348956108, 0.049576885998249054, 0.0037603615783154964, -0.015249752439558506, -0.029197590425610542, -0.043952617794275284, -0.00879225879907608, 0.01822679676115513, -0.023295581340789795, 0.07235170155763626, 0.02504882588982582, 0.012107799760997295, -0.013843685388565063, 0.03836306557059288, 0.013626699335873127, -0.0737404078245163, 0.012446297332644463, -0.025066183879971504, 0.012593847699463367, -0.03475242480635643, 0.002221933100372553, -0.006570326164364815, 0.013956517912447453, 0.029683638364076614, 0.002768737031146884, 0.025309208780527115, 0.037147946655750275, 0.08721087872982025, -0.014911254867911339, -0.021351389586925507, -0.031054988503456116, 0.0820726603269577, -0.03485657647252083, -0.017679991200566292, 0.08151717483997345, 0.06953956931829453, -0.03143688291311264, 0.01498069055378437, 0.044126205146312714, 0.027808882296085358, -0.03351994603872299, 0.021281953901052475, -0.023226145654916763, -0.021004213020205498, -0.01236818265169859, -0.0008630604716017842, -0.049229707568883896, -0.0010822160402312875, -0.02746170572936535, -0.020223064348101616, 0.003400165354833007, -0.008236776106059551, 0.021577054634690285, 0.04398733377456665, 0.017497723922133446, -0.03480450063943863, -0.017497723922133446, 0.013782929629087448, -0.0035325265489518642, 0.001077876309864223, -0.008653388358652592, -0.029267026111483574, 0.02966628037393093, 0.007451287936419249, 0.01696827821433544, 0.009373780339956284, -0.08568330109119415, -0.0360022597014904, -0.014607475139200687, -0.017541121691465378, -0.006626742426306009, 0.0037451726384460926, 0.03308597579598427, -0.024666929617524147, 0.00988586712628603, -0.009113398380577564, -0.04850063472986221, 0.024614853784441948, 0.034717705100774765, -0.011291934177279472, -0.09686239808797836, -0.06283904612064362, -0.07950355112552643, 0.04673003405332565, -0.06658855825662613, -0.016265245154500008, -0.000163417324074544, 0.005055766087025404, 0.015432020649313927, -0.03586339205503464, -0.01918153278529644, -0.042841650545597076, 0.0036692277062684298, 0.028121342882514, 0.04096689447760582, -0.012099120765924454, -0.01591806858778, 0.04339713230729103, -0.07846201956272125, -0.02994402125477791, 0.0708935558795929, 0.0046087754890322685, 0.04114048182964325, 0.03072516992688179, 0.00663108192384243, 0.004274617414921522, 0.019910603761672974, 0.019754374399781227, -0.009981340728700161, 0.042355600744485855, 0.026611121371388435, 0.05322224274277687, 0.0043679215013980865, -0.04516773670911789, 0.06450549513101578, 0.050479546189308167, -0.009599445387721062, -0.013756890781223774 ]
23,309
parutils.file
count_lines
Counts the number of lines of a file
def count_lines(in_path): """Counts the number of lines of a file""" with open(in_path, 'r', encoding='utf-8') as in_file: i = 0 for line in in_file: i += 1 return i
(in_path)
[ -0.07867614924907684, -0.07121364027261734, -0.0013792312238365412, 0.08926580101251602, 0.012535235844552517, 0.08926580101251602, -0.0041154841892421246, 0.04054629057645798, 0.03461182117462158, 0.0008173222304321826, 0.012162109836935997, 0.010429742746055126, -0.005872282665222883, -0.017892248928546906, -0.007564672734588385, 0.02702493779361248, 0.005370340310037136, -0.009434740990400314, -0.04523700848221779, -0.08656508475542068, -0.03022315539419651, 0.006880609318614006, 0.013219298794865608, 0.0021299240179359913, -0.0152626046910882, 0.04616094008088112, 0.015200416557490826, -0.009763447567820549, 0.044739507138729095, -0.041328076273202896, -0.03649521619081497, 0.05216648057103157, -0.06325363367795944, -0.007231525145471096, 0.007635744288563728, -0.020255377516150475, 0.022440826520323753, -0.025763418525457382, -0.03414985537528992, 0.0006246518460102379, -0.019509125500917435, 0.0530904084444046, 0.043602366000413895, 0.031129315495491028, -0.024341987445950508, -0.014294255524873734, -0.038698431104421616, -0.08095043897628784, 0.05689273402094841, -0.04111486300826073, 0.0019155989866703749, -0.033368069678545, -0.005290384870022535, 0.000011269760761933867, -0.01943805441260338, -0.01769680343568325, -0.03898271545767784, 0.03246190771460533, -0.05213094502687454, 0.011966663412749767, -0.0388050377368927, -0.046800583600997925, 0.047191474586725235, -0.024821721017360687, 0.023933326825499535, -0.0073425741866230965, -0.0019044940127059817, -0.0008151012589223683, 0.03471842780709267, -0.019917787984013557, 0.01949135772883892, 0.05365898087620735, 0.014951666817069054, -0.0067118145525455475, 0.007093823980540037, 0.02693609707057476, 0.0014391978038474917, 0.07689936459064484, 0.05120701342821121, -0.007169337477535009, 0.01209103874862194, -0.024590738117694855, 0.061121489852666855, 0.042678434401750565, 0.020948324352502823, -0.03898271545767784, 0.09331687539815903, -0.004537471104413271, -0.04370897263288498, 0.06179666891694069, 0.017750106751918793, 0.05834969878196716, 0.017972204834222794, -0.0456279031932354, 0.003968899138271809, 0.002082172781229019, 0.012215414084494114, 0.0012159888865426183, -0.020575199276208878, -0.03862736001610756, -0.024341987445950508, 0.025194846093654633, 0.06304042041301727, -0.016630731523036957, -0.01228648517280817, -0.06023309379816055, 0.04314040020108223, -0.02912154607474804, 0.043602366000413895, 0.009834518656134605, 0.010456394404172897, -0.07398542761802673, 0.011664609424769878, 0.01086505502462387, 0.00013305083848536015, -0.04278504103422165, 0.030009940266609192, 0.0038289770018309355, -0.002320928731933236, -0.00037534633884206414, 0.04143468290567398, 0.03464735671877861, -0.010625189170241356, 0.021605735644698143, 0.07348792999982834, -0.04090164601802826, -0.0009994430001825094, -0.0030494115781039, 0.03363458812236786, -0.0072359670884907246, 0.04505933076143265, -0.047013796865940094, 0.10433296114206314, -0.03327922895550728, -0.027362527325749397, 0.018905019387602806, 0.021534664556384087, 0.014845059253275394, 0.015440283343195915, 0.029850030317902565, 0.03709932044148445, -0.015111577697098255, -0.0687616765499115, -0.016008855774998665, -0.00015907800116110593, 0.03919593244791031, 0.05241522938013077, -0.009185991249978542, -0.019864484667778015, 0.023400291800498962, -0.0007051625289022923, -0.06982775032520294, 0.021428056061267853, 0.03837860748171806, 0.0013159331865608692, -0.023329218849539757, -0.012624074704945087, -0.026651812717318535, -0.023506898432970047, -0.06172559782862663, 0.007315922528505325, 0.08628080040216446, 0.0009500260348431766, 0.020823949947953224, -0.019775643944740295, 0.04086611047387123, -0.05639523267745972, -0.019118232652544975, -0.04950129985809326, -0.05035415664315224, 0.024928327649831772, -0.021392520517110825, 0.014862827025353909, 0.020290913060307503, 0.016390863806009293, 0.0021199295297265053, -0.0045219240710139275, 0.019509125500917435, 0.035677891224622726, 0.04043968394398689, -0.007453623227775097, -0.02881949208676815, 0.007764561101794243, 0.026811722666025162, 0.023933326825499535, 0.015582426451146603, 0.015004970133304596, -0.025763418525457382, 0.03327922895550728, 0.02247636206448078, 0.014880594797432423, -0.009727911092340946, 0.014898362569510937, 0.01791890151798725, -0.016932783648371696, -0.03100494109094143, 0.005854514893144369, 0.028748420998454094, -0.06087273731827736, -0.016630731523036957, -0.0293880645185709, -0.01425871904939413, -0.014454166404902935, 0.007262618746608496, 0.03073842264711857, 0.03749021515250206, -0.03709932044148445, 0.021783415228128433, -0.08585437387228012, 0.03706378489732742, -0.03319038823246956, -0.1027693897485733, -0.011371439322829247, 0.01602662354707718, 0.0379166454076767, 0.007222641259431839, -0.022582968696951866, 0.014978318475186825, -0.011380324140191078, -0.013237066566944122, 0.07220864295959473, 0.08592544496059418, -0.059415772557258606, -0.01423206739127636, 0.033705659210681915, -0.07448293268680573, 0.02409323863685131, 0.08613865822553635, 0.023986630141735077, 0.003953352104872465, -0.026243150234222412, 0.020788412541151047, 0.04111486300826073, 0.05401434004306793, 0.007027194369584322, -0.020521895959973335, -0.006125474814325571, -0.010358670726418495, -0.020379751920700073, -0.02164127118885517, -0.08763115853071213, 0.0016113241435959935, 0.010900591500103474, 0.00432425644248724, -0.07405649870634079, -0.0033981059677898884, -0.03734807297587395, 0.008533021435141563, -0.03713485971093178, 0.016133230179548264, 0.013850058428943157, -0.030542977154254913, -0.049252547323703766, -0.020255377516150475, -0.0003189888666383922, 0.00221765274181962, -0.009021637961268425, -0.008799539878964424, -0.04427754506468773, 0.03688610717654228, 0.04395772144198418, 0.015013854019343853, 0.014765104278922081, -0.010616305284202099, -0.03610432147979736, -0.013352558016777039, -0.0010449731489643455, 0.025194846093654633, -0.043815579265356064, -0.019597966223955154, 0.054938267916440964, -0.022938326001167297, 0.010287599638104439, -0.026509668678045273, -0.036459680646657944, -0.039657894521951675, 0.017705686390399933, 0.050212014466524124, 0.004333140328526497, 0.011886708438396454, -0.015538006089627743, 0.04445522278547287, -0.018300911411643028, 0.00014325349184218794, -0.0265452042222023, 0.01765238307416439, 0.005396991968154907, -0.025603506714105606, -0.08933687210083008, -0.01430313941091299, 0.04427754506468773, 0.0010216528316959739, 0.0022687355522066355, 0.02469734661281109, 0.018993858247995377, -0.008786213584244251, -0.045876652002334595, 0.003788999281823635, -0.006574113853275776, 0.04463290050625801, -0.049998797476291656, 0.031218156218528748, -0.028321992605924606, -0.07334578782320023, -0.04349575564265251, -0.049998797476291656, 0.022049931809306145, -0.002827313030138612, -0.0249638631939888, 0.014312023296952248, -0.033350300043821335, 0.053623445332050323, -0.02299162931740284, -0.04648075997829437, -0.00041726743802428246, -0.04033307731151581, -0.04630308225750923, 0.047724511474370956, -0.018194302916526794, -0.025106007233262062, 0.04495272412896156, -0.013263718225061893, 0.011504698544740677, -0.016524123027920723, -0.00018420288688503206, 0.018283143639564514, 0.11065832525491714, 0.012446396052837372, 0.02750466950237751, 0.0023431384470313787, -0.007324806414544582, -0.03367012366652489, -0.06300488114356995, -0.03898271545767784, -0.03916039690375328, -0.023329218849539757, 0.02803770639002323, -0.0033092666417360306, -0.05142023041844368, -0.011451395228505135, 0.04125700518488884, 0.01044751051813364, -0.02816208079457283, 0.012322020716965199, -0.008444182574748993, -0.025656811892986298, -0.005890050437301397, -0.03246190771460533, 0.009070499800145626, 0.03432753309607506, 0.005503599066287279, 0.05827862769365311, 0.014987202361226082, -0.010900591500103474, -0.026740651577711105, 0.0651014894247055, 0.031378068029880524, -0.04648075997829437, 0.02636752650141716, 0.07370114326477051, -0.041718970984220505, 0.03217761963605881, 0.017545776441693306, -0.03619316220283508, -0.005898934323340654, -0.007324806414544582, -0.00011785098467953503, 0.01760796457529068, -0.03727700188755989, 0.03310155123472214, -0.01961573399603367, 0.035802267491817474, 0.004131030756980181, -0.0048906076699495316, 0.020912788808345795, 0.011175992898643017, 0.026776187121868134, -0.003769010305404663, -0.04214539751410484, 0.05198880285024643, -0.04015539586544037, 0.008421972393989563, 0.02738029509782791, -0.013912245631217957, -0.05479612573981285, -0.003422536887228489, -0.05024755001068115, -0.02903270721435547, 0.0022964978124946356, -0.03184003010392189, -0.030152082443237305, 0.012348673306405544, -0.00048667320515960455, -0.021623503416776657, -0.007449181284755468, -0.05504487454891205, 0.023116005584597588, 0.007009426597505808, 0.05330362543463707, -0.00820875819772482, -0.014738451689481735, 0.047937724739313126, 0.030987173318862915, 0.03088056668639183, -0.015600194223225117, 0.030383065342903137, -0.021392520517110825, 0.008230968378484249, 0.03805878758430481, -0.02361350506544113, -0.06264952570199966, 0.015697916969656944, -0.022316450253129005, -0.00875956192612648, -0.045308079570531845, -0.0810215100646019, 0.014667380601167679, -0.06620310246944427, 0.038485217839479446, -0.02663404494524002, -0.028055474162101746, 0.022263146936893463, -0.002598551567643881, 0.059415772557258606, 0.04363790154457092, -0.025905560702085495, 0.023666808381676674, -0.016479704529047012, 0.03043636865913868, 0.004921701271086931, -0.03160904720425606, -0.012206530198454857, 0.012410860508680344, -0.0001338143047178164, -0.04580558091402054, -0.01943805441260338, 0.00875956192612648, -0.052059873938560486, 0.013761218637228012, 0.006925029214471579, 0.009603536687791348, 0.06083720177412033, 0.028837259858846664, -0.004126588813960552, -0.000367295288015157, -0.01844305358827114, -0.02242305688560009, -0.06581220775842667, 0.022192075848579407, -0.016533007845282555, -0.0805240049958229, -0.031200388446450233, -0.025692347437143326, -0.0295124389231205, -0.054334159940481186, 0.014107692055404186, -0.054725054651498795, 0.0324263721704483, -0.042109861969947815, 0.018034392967820168, 0.003387001110240817, 0.0935300886631012, 0.027629045769572258, -0.0764729306101799, 0.043424684554338455, -0.05369451642036438, -0.05213094502687454, 0.01025206409394741, 0.007418087683618069, -0.0138411745429039, 0.016586311161518097, 0.03866289556026459, -0.09751009941101074, -0.002064405009150505, 0.06563452631235123, 0.005063844379037619, 0.0008312033605761826, 0.039267003536224365, -0.03613985702395439, 0.06087273731827736, 0.03642414137721062, 0.0065474617294967175, 0.03692164272069931, -0.024111006408929825, 0.047760047018527985, 0.0038645127788186073, -0.008764004334807396, -0.06666506826877594, -0.030276458710432053, -0.04274950549006462, 0.057177022099494934, -0.02382672019302845, -0.0015036064432933927, -0.05294826626777649, 0.0456279031932354, -0.022387521341443062, 0.011051618494093418, 0.03599771484732628, -0.009559116326272488, -0.0073914360255002975, -0.028570743277668953, 0.013894477859139442, -0.012828405946493149, 0.08230079710483551, -0.011931127868592739, 0.11684154719114304, 0.05895380675792694, -0.01835421472787857, 0.022192075848579407, -0.01847858913242817, 0.0029250364750623703, 0.03930253908038139, 0.02233421802520752, 0.0567505918443203, 0.026953866705298424, 0.03526923060417175, 0.0045663439668715, 0.04033307731151581, -0.023577969521284103, -0.0016313130035996437, -0.03486056998372078, -0.031768959015607834, 0.03622869774699211, -0.005779001396149397, -0.014747335575520992, 0.07498043030500412, 0.042500756680965424, -0.039089325815439224, 0.008426414802670479, 0.07732579112052917, 0.008666280657052994, -0.03823646530508995, -0.00410437909886241, -0.010021081194281578, -0.003469177521765232, -0.028624046593904495, 0.019509125500917435, -0.0741986408829689, 0.06858399510383606, 0.06567006558179855, -0.01011880487203598, -0.06257845461368561, 0.02260073646903038, 0.05145576596260071, -0.042465221136808395, 0.03667289391160011, 0.009021637961268425, -0.051491301506757736, -0.01442751381546259, -0.03285279870033264, -0.008239852264523506, -0.043993256986141205, -0.02164127118885517, -0.007657954003661871, 0.05707041174173355, 0.06755346059799194, -0.029636815190315247, -0.055258091539144516, -0.015227068215608597, -0.01717265136539936, 0.0199710913002491, -0.019597966223955154, -0.021783415228128433, -0.012570771388709545, -0.06879720836877823, -0.012011082842946053, -0.01660407893359661, 0.014409746043384075, -0.007586882449686527, 0.07753900438547134, 0.0292636901140213, -0.000588005583267659, -0.0353936068713665, -0.0020588524639606476, -0.03516262397170067, -0.006978332996368408, -0.01821207068860531, -0.0019500242779031396, 0.06776667386293411, -0.013663495890796185, -0.03368788957595825, -0.01865626871585846, -0.025106007233262062, 0.0385562889277935, -0.0018389750039204955, 0.019153768196702003, -0.08222972601652145, 0.020024394616484642, -0.019384751096367836, 0.05067398026585579, -0.04733361676335335, -0.05973559617996216, -0.03345690667629242, 0.005228197202086449, 0.0027784514240920544, 0.03773896396160126, 0.030631816014647484, -0.03734807297587395, 0.00823540985584259, 0.011797868646681309, -0.044917188584804535, -0.02460850588977337, -0.05557791143655777, 0.06247184798121452, -0.022565200924873352, -0.017048275098204613, 0.02917484939098358, -0.010882822796702385, -0.030827263370156288, 0.02430645190179348, -0.012437512166798115, 0.018514124676585197, 0.022582968696951866, -0.015431399457156658, -0.011335903778672218, 0.016150997951626778, 0.005339246243238449, 0.017465820536017418, 0.054902732372283936, 0.04839969053864479, -0.005885608494281769, -0.014747335575520992, 0.06595434993505478, 0.01169126108288765, 0.018976090475916862, 0.07547792792320251, -0.011593538336455822, -0.023116005584597588, -0.008239852264523506, 0.020344216376543045, -0.010483046062290668, -0.004166566766798496, -0.030631816014647484, 0.010651840828359127, 0.08656508475542068, -0.03727700188755989, -0.0465162955224514, -0.019526895135641098, -0.01149581465870142, 0.03841414675116539, -0.048506297171115875, -0.052059873938560486, -0.005383666139096022, -0.005712371785193682, -0.01425871904939413, 0.004022202454507351, 0.0008867279975675046, -0.01603550650179386, 0.04932361841201782, -0.004039970692247152, 0.07291936129331589, 0.017066042870283127, 0.030560744926333427, 0.0003983890637755394, 0.013530236668884754, 0.0064230868592858315, 0.05316147953271866, -0.008706258609890938, 0.031768959015607834, -0.025336990132927895, 0.011780100874602795, -0.008644071407616138, -0.026793954893946648, 0.031093779951334, 0.008226525969803333, -0.03319038823246956, 0.03695717826485634, -0.05987773835659027, 0.03916039690375328, -0.03841414675116539, 0.026616275310516357, 0.08045293390750885, 0.028393063694238663, -0.00036979388096369803, -0.011273716576397419, -0.0233825221657753, 0.009203759022057056, -0.02197886072099209, 0.05916702374815941, 0.010394206270575523, -0.03724146634340286, 0.04409986361861229, -0.031111547723412514, -0.01346804853528738, 0.020681805908679962, 0.04317593574523926, -0.040581826120615005, -0.015111577697098255, 0.05522255599498749, 0.04818647727370262, -0.041541289538145065, 0.016630731523036957, 0.006200988311320543, 0.008088825270533562, -0.023844487965106964, 0.005130473989993334, -0.013157111592590809, 0.051917728036642075, 0.003295940812677145, 0.007982217706739902, 0.0433536134660244, -0.007782328873872757, 0.07320364564657211, -0.026118775829672813, -0.05259291082620621, -0.044739507138729095, -0.04168343544006348, -0.00843085628002882, -0.04296272248029709, 0.03713485971093178, -0.009470277465879917, -0.016852829605340958, 0.00891503132879734, -0.028943868353962898, 0.05465398356318474, 0.06574113667011261, -0.018816178664565086, -0.005858956836163998, -0.0007512479787692428, -0.01331702247262001, 0.011131573468446732, 0.02732699178159237, -0.03555351868271828, 0.042465221136808395, -0.09104259312152863, -0.060339704155921936, 0.016799526289105415, 0.007502485066652298, 0.004248742945492268, -0.000579121639020741, 0.031253691762685776, -0.07768114656209946, -0.07391435652971268, -0.05746130645275116, -0.0037912202533334494, 0.029316993430256844, -0.02137475274503231, -0.028108777478337288, 0.06385774165391922, -0.03091610223054886, 0.059024877846241, -0.022458594292402267, -0.009727911092340946, -0.034931641072034836, 0.09715473651885986, -0.019686805084347725, 0.058669522404670715, 0.052663981914520264, 0.016053274273872375, -0.0016646278090775013, 0.009061615914106369, -0.015440283343195915, -0.021694574505090714, -0.036246463656425476, -0.00198222859762609, 0.02759351022541523, 0.04612540081143379, -0.05802987888455391, 0.01773233897984028, 0.04495272412896156, 0.020379751920700073, -0.061334703117609024, -0.01847858913242817, 0.01689724810421467, 0.01058076974004507, 0.005699045956134796, -0.020024394616484642, 0.03933807462453842 ]
23,310
parutils.csvl
csv_clean
Cleans a csv field by removing csv separators and new line characters
def csv_clean(s: str): """Cleans a csv field by removing csv separators and new line characters""" out = s.replace('\r', '') out = out.replace('\n', '') out = out.replace(SEPARATOR, '') return out
(s: str)
[ -0.03420436754822731, 0.04662006348371506, 0.012546847574412823, 0.026842383667826653, -0.07547344267368317, -0.07026234269142151, -0.04462655633687973, 0.05204100161790848, 0.025286050513386726, 0.053474925458431244, 0.0025946181267499924, -0.0010246228193864226, -0.017827888950705528, 0.06669501960277557, -0.023275058716535568, 0.048753462731838226, -0.035288553684949875, 0.026737462729215622, 0.046235352754592896, 0.009119415655732155, -0.04756435379385948, 0.018990768119692802, -0.02317013591527939, 0.01425181981176138, 0.025460919365286827, 0.03179117664694786, 0.021823644638061523, -0.009110672399401665, 0.00907569844275713, 0.0021661892533302307, 0.03864603862166405, 0.01827380619943142, -0.035848136991262436, -0.017294539138674736, 0.03952038288116455, -0.01617537811398506, 0.0412340983748436, -0.009040724486112595, 0.008411196991801262, 0.008892086334526539, -0.04161881282925606, 0.011104178614914417, 0.01178616750985384, -0.027069713920354843, 0.03425682708621025, -0.027436938136816025, -0.03742195665836334, 0.014557840302586555, -0.003381528425961733, -0.03609295189380646, 0.01605297066271305, 0.02850363962352276, 0.02066951058804989, 0.035690754652023315, 0.032683007419109344, -0.053474925458431244, 0.07757186889648438, 0.0579865463078022, 0.022925319150090218, -0.020039981231093407, 0.016944801434874535, -0.02385212481021881, 0.06200852990150452, -0.012581821531057358, 0.07110171765089035, -0.01053585484623909, 0.024918826296925545, 0.0012514059199020267, 0.018955795094370842, 0.029377983883023262, -0.03969525173306465, 0.040779441595077515, -0.017058465629816055, -0.017285795882344246, 0.06235826760530472, -0.005088686477392912, -0.0015705417608842254, -0.008673500269651413, -0.006881093140691519, -0.061623819172382355, 0.0669398382306099, -0.011060461401939392, 0.02077443152666092, -0.0002133947709808126, 0.035306040197610855, -0.08435678482055664, 0.0213165245950222, 0.010089938528835773, -0.013657265342772007, 0.10450168699026108, 0.038576092571020126, -0.0700874775648117, 0.002865664893761277, -0.029920078814029694, -0.04182865470647812, -0.00393236568197608, 0.05536350980401039, 0.005385963711887598, 0.025688249617815018, -0.1031726822257042, 0.019795166328549385, 0.07106674462556839, -0.043857134878635406, -0.02878342941403389, -0.007296407129615545, -0.11534356325864792, 0.00024823195417411625, -0.056342776864767075, 0.005849366541951895, -0.017014749348163605, -0.04927807301282883, -0.011418942362070084, -0.01848364807665348, -0.0005841716192662716, 0.02094930037856102, -0.004439485725015402, -0.05326508358120918, -0.08925311267375946, 0.026982279494404793, -0.023135162889957428, 0.0019530676072463393, 0.01310642808675766, -0.06379219144582748, 0.0037990279961377382, 0.0578116774559021, -0.00523295346647501, 0.0367574542760849, 0.02138647250831127, 0.043437447398900986, 0.025111181661486626, -0.01155009400099516, 0.008787165395915508, 0.06256811320781708, -0.03661755844950676, -0.008266929537057877, 0.0624631904065609, -0.0014995012897998095, 0.040779441595077515, 0.014680248685181141, -0.004677744582295418, -0.025443432852625847, -0.027192123234272003, -0.011279047466814518, -0.04004498943686485, 0.024848878383636475, 0.004142208490520716, 0.03882090747356415, 0.061903610825538635, -0.003989198245108128, -0.05515366792678833, -0.01869349181652069, -0.00233450043015182, -0.008406825363636017, -0.005307272542268038, -0.008922688663005829, 0.03308520466089249, -0.005687612574547529, -0.02399202063679695, 0.035638291388750076, -0.005718214903026819, -0.027979033067822456, 0.017425691708922386, 0.011156639084219933, -0.011663759127259254, 0.006015492137521505, 0.05721712112426758, 0.038156405091285706, -0.0529852919280529, 0.020022494718432426, -0.0022077206522226334, 0.0157906673848629, 0.00898826401680708, -0.003283164696767926, 0.043577343225479126, 0.007060334086418152, 0.03187860921025276, 0.00019986975530628115, 0.022960294038057327, 0.024936312809586525, -0.003147641196846962, 0.03595305606722832, 0.040674518793821335, 0.03973022475838661, 0.010483393445611, 0.027017252519726753, -0.015327263623476028, -0.006981642916798592, -0.0676393136382103, -0.017215847969055176, -0.027244582772254944, 0.022628042846918106, -0.0374569296836853, -0.006194732617586851, -0.04934801906347275, -0.020477155223488808, -0.014033233746886253, 0.03731703385710716, -0.03756185248494148, -0.017784172669053078, -0.0897427499294281, -0.04004498943686485, 0.0034689628519117832, 0.014015746302902699, -0.03938048705458641, 0.0010787228820845485, 0.027909085154533386, 0.006076696328818798, -0.040674518793821335, -0.06330256164073944, 0.041164152324199677, 0.02142144739627838, -0.007694234140217304, 0.0076330299489200115, -0.0011497633531689644, 0.021771185100078583, 0.001956346444785595, -0.00601112050935626, 0.032665520906448364, 0.056972306221723557, 0.04119912534952164, -0.007038475479930639, 0.009346745908260345, 0.013910825364291668, 0.0044351136311888695, 0.05291534587740898, -0.0053990790620446205, -0.07414443790912628, 0.028486153110861778, 0.04235326126217842, -0.043717239052057266, 0.019427940249443054, -0.04427681863307953, -0.013158888556063175, 0.017539355903863907, 0.03917064517736435, -0.06557586044073105, 0.004255873151123524, -0.040989283472299576, -0.04389210790395737, -0.02339746616780758, -0.02598552592098713, -0.048823412507772446, 0.012371978722512722, -0.053754717111587524, 0.008962034247815609, -0.0024088197387754917, -0.04738948494195938, 0.06109921261668205, 0.01815139688551426, -0.03647766262292862, 0.03868101164698601, 0.03490384295582771, -0.030339764431118965, 0.04235326126217842, 0.02075694501399994, -0.048718489706516266, -0.004441671539098024, 0.09016243368387222, -0.01809893734753132, 0.03364478796720505, 0.015545849688351154, -0.02888835035264492, 0.002330128801986575, -0.004448228981345892, 0.009713970124721527, -0.01461030077189207, -0.021998515352606773, 0.03609295189380646, 0.0897427499294281, 0.01837872713804245, 0.04028980806469917, 0.012170879170298576, -0.019690243527293205, -0.02908070757985115, -0.06718464940786362, 0.02406196855008602, -0.09715718775987625, -0.06099428981542587, 0.027454426512122154, -0.008188238367438316, 0.030024999752640724, 0.017924068495631218, 0.027122175320982933, -0.0071958573535084724, 0.03616289794445038, -0.002865664893761277, -0.01054459810256958, -0.10932806879281998, -0.06924810260534286, 0.02645767293870449, -0.030164893716573715, -0.03443169593811035, -0.011847371235489845, -0.0022405085619539022, 0.03882090747356415, -0.014846374280750751, 0.030514633283019066, -0.05826633423566818, 0.013517370447516441, -0.06812894344329834, -0.006487638223916292, 0.029622800648212433, 0.007278920151293278, -0.0027563718613237143, 0.004164067097008228, 0.013062710873782635, -0.0749138593673706, 0.002415377413854003, 0.0262303426861763, 0.030619554221630096, -0.019987521693110466, -0.0012612423161044717, 0.02075694501399994, -0.01057082787156105, -0.01617537811398506, 0.02941295877099037, -0.03861106559634209, -0.015624540857970715, -0.019532863050699234, -0.002463466487824917, 0.030514633283019066, -0.02101924829185009, 0.05539848282933235, -0.03394206240773201, -0.05291534587740898, -0.05497879907488823, 0.019462915137410164, 0.015423441305756569, -0.06326758861541748, 0.04962781071662903, -0.02904573269188404, -0.03938048705458641, -0.03408195823431015, -0.02369474247097969, 0.08484641462564468, -0.020197363570332527, -0.005875596776604652, -0.0735149085521698, -0.004041658714413643, -0.019585322588682175, 0.02876594290137291, 0.03931054100394249, 0.0731651708483696, 0.010946796275675297, -0.08540599793195724, 0.053754717111587524, 0.025216102600097656, 0.03474646061658859, 0.017513126134872437, 0.009206850081682205, 0.11128660291433334, -0.032980285584926605, 0.009171877056360245, 0.012984019704163074, 0.011978523805737495, -0.014085694216191769, -0.016726216301321983, 0.032193373888731, 0.010264807380735874, -0.011488890275359154, 0.03408195823431015, -0.008376223035156727, 0.013788416981697083, -0.005403450690209866, 0.04808896407485008, 0.025758197531104088, -0.07757186889648438, -0.010334755294024944, -0.004839498084038496, 0.009381718933582306, -0.027944058179855347, 0.032613061368465424, 0.010063708759844303, -0.06540098786354065, -0.016761189326643944, 0.038086459040641785, 0.04364728927612305, 0.02652762085199356, -0.011987267062067986, -0.03913567215204239, -0.027034740895032883, 0.008739075623452663, -0.03156384453177452, -0.01802898943424225, -0.0019202796975150704, 0.003678805660456419, -0.027297044172883034, 0.04004498943686485, -0.035568345338106155, -0.021911079064011574, -0.051376499235630035, -0.026912331581115723, 0.04686487838625908, -0.040779441595077515, -0.05032728612422943, -0.032368242740631104, 0.04948791489005089, -0.03207096457481384, 0.030339764431118965, -0.04927807301282883, -0.027506886050105095, 0.016734959557652473, -0.008157636970281601, -0.003530167043209076, -0.017058465629816055, 0.04913817718625069, -0.028468666598200798, -0.012712973169982433, 0.0021268436685204506, 0.008188238367438316, 0.05770675465464592, 0.021736210212111473, 0.0688633918762207, -0.056832410395145416, 0.010815644636750221, 0.035848136991262436, 0.0047083464451134205, -0.030427198857069016, 0.02635275200009346, 0.002435050206258893, -0.014907578006386757, 0.0018492392264306545, -0.0681639164686203, 0.019620297476649284, -0.020214851945638657, 0.021928567439317703, 0.0079827681183815, 0.03366227447986603, 0.0035323528572916985, -0.006338999606668949, -0.03151138499379158, -0.03773672133684158, -0.038051486015319824, -0.03217588737607002, -0.02119411714375019, 0.02343243919312954, 0.05599303916096687, 0.04480142518877983, 0.0035585833247750998, 0.03969525173306465, 0.003482077969238162, -0.02617788314819336, 0.009294284507632256, -0.08470652252435684, 0.016866110265254974, 0.028031492605805397, 0.043857134878635406, 0.030969291925430298, 0.019515374675393105, 0.04913817718625069, -0.01806396245956421, 0.03187860921025276, -0.09030232578516006, -0.01426930632442236, 0.02857358753681183, -0.03878593444824219, 0.0690382644534111, -0.04235326126217842, 0.0012273614993318915, 0.03920561820268631, 0.022558094933629036, 0.07162632048130035, -0.017338257282972336, 0.01606171391904354, -0.025023747235536575, 0.0026667516212910414, 0.027227096259593964, -0.06305774301290512, 0.016734959557652473, 0.03214091435074806, 0.021998515352606773, -0.01855359598994255, 0.003329067723825574, 0.05476895719766617, -0.059210628271102905, 0.01850113458931446, -0.010824387893080711, 0.00647452287375927, -0.010771927423775196, 0.06470151245594025, -0.004314891528338194, -0.05043220520019531, -0.02091432735323906, 0.0005229674861766398, 0.0311441607773304, -0.014461662620306015, 0.0622883215546608, -0.07771176099777222, 0.013832134194672108, 0.04941796511411667, 0.0528104230761528, 0.0001268483028979972, -0.01202224101871252, -0.01556333713233471, 0.04203849658370018, -0.042947813868522644, 0.03878593444824219, 0.003510494250804186, 0.05022236332297325, -0.014155642129480839, 0.02093181386590004, -0.004148765932768583, -0.10058461874723434, -0.04431179165840149, 0.03233326971530914, 0.014793913811445236, 0.04948791489005089, -0.005600178148597479, -0.058965809643268585, -0.040639545768499374, -0.03198353201150894, -0.04410194978117943, -0.016761189326643944, -0.01442668866366148, 0.00905821193009615, -0.028171388432383537, -0.033137667924165726, -0.045850638300180435, -0.003611043794080615, 0.016350246965885162, -0.006531355436891317, 0.004150951746851206, -0.040814414620399475, -0.019357992336153984, -0.04413692280650139, 0.01301025040447712, 0.014688991941511631, 0.02857358753681183, 0.025583328679203987, -0.04973272979259491, -0.019375480711460114, -0.01597427949309349, -0.06697481125593185, -0.03959033265709877, -0.013464909046888351, 0.02859107404947281, -0.009880095720291138, -0.035375989973545074, -0.016306530684232712, 0.05036225914955139, -0.020512128248810768, 0.04669000953435898, 0.0178978368639946, 0.04770424962043762, -0.005661382339894772, 0.027244582772254944, 0.02670248970389366, 0.01162004191428423, -0.04969775676727295, 0.01862354390323162, -0.061693765223026276, 0.0376317985355854, -0.01855359598994255, -0.006736826617270708, 0.040989283472299576, -0.07897081971168518, -0.06323261559009552, 0.019620297476649284, -0.0783412903547287, 0.01442668866366148, 0.006334627978503704, -0.0034077586606144905, 0.035760700702667236, -0.01843118853867054, -0.014313023537397385, 0.004778294358402491, -0.025548353791236877, -0.009766431525349617, -0.0790407657623291, 0.04756435379385948, -0.016796162351965904, 0.008647269569337368, 0.03116164728999138, 0.03612792491912842, -0.04917315021157265, -0.05882591754198074, 0.010579572059214115, 0.0008393710013478994, -0.04277294501662254, 0.024166889488697052, 0.006623161491006613, 0.012503130361437798, -0.056307803839445114, -0.03409944474697113, -0.014723965898156166, -0.06900329142808914, -0.026877358555793762, 0.016254069283604622, 0.028241336345672607, 0.05473398417234421, 0.03885588049888611, 0.03703724592924118, -0.0034711486659944057, 0.005849366541951895, 0.009425437077879906, -0.00803960021585226, 0.007208972703665495, 0.02922060154378414, 0.006662507075816393, 0.06008497253060341, -0.037526875734329224, -0.04773922264575958, 0.01071946695446968, 0.04004498943686485, 0.06470151245594025, -0.059490419924259186, -0.03668750822544098, 0.001741038984619081, 0.020966786891222, 0.011340252123773098, 0.017364487051963806, 0.04434676840901375, -0.017609303817152977, 0.016866110265254974, 0.026929818093776703, 0.012721716426312923, -0.03322510048747063, -0.06945794820785522, 0.05795156955718994, -0.005587063264101744, 0.004940047860145569, -0.027856623753905296, -0.016848623752593994, -0.035638291388750076, -0.03436174988746643, 0.02358982153236866, -0.032787930220365524, -0.051551368087530136, -0.01806396245956421, -0.06445669382810593, -0.058755967766046524, -0.011077947914600372, 0.022977780550718307, 0.06347742676734924, -0.03112667426466942, 0.00803960021585226, -0.04137399420142174, -0.0028066467493772507, -0.016481399536132812, -0.0010126004926860332, 0.05473398417234421, 0.037946563214063644, 0.002983701415359974, -0.002725769765675068, -0.06305774301290512, -0.016839880496263504, -0.040954310446977615, -0.03962530568242073, 0.02876594290137291, -0.040219858288764954, -0.05204100161790848, 0.14339254796504974, -0.03404698520898819, -0.01590433157980442, -0.012406952679157257, -0.012223339639604092, 0.007248318288475275, 0.022680504247546196, 0.07393459230661392, -0.03488635644316673, 0.04256310313940048, -0.029430445283651352, 0.04179368168115616, 0.05242571234703064, 0.02894081175327301, -0.03990509361028671, 0.022663015872240067, 0.04410194978117943, -0.017775429412722588, -0.022890346124768257, 0.020512128248810768, 0.0038952059112489223, -0.005455911159515381, -0.017189618200063705, -0.040884360671043396, -0.04196855053305626, 0.03770174831151962, 0.00259243231266737, -0.004642770625650883, 0.04749440774321556, 0.03672248125076294, 0.051306549459695816, -0.007160883862525225, -0.03619787469506264, 0.03362730145454407, -0.025198616087436676, -0.0314938984811306, -0.003967339172959328, 0.04459158331155777, 0.02862604707479477, 0.030969291925430298, -0.0237297173589468, -0.013937056064605713, -0.025775684043765068, 0.015344751067459583, -0.008673500269651413, 0.025723222643136978, -0.01171621959656477, 0.035743214190006256, 0.05756685882806778, 0.012791664339601994, 0.02068699710071087, -0.04203849658370018, 0.024271810427308083, -0.0040984912775456905, -0.043577343225479126, 0.011226586997509003, -0.01610543020069599, -0.010221090167760849, -0.01317637600004673, 0.03577818721532822, 0.0572870709002018, 0.024639036506414413, -0.015545849688351154, 0.05309021472930908, 0.029657775536179543, -0.008664757013320923, -0.10345247387886047, 0.04007996246218681, -0.02624782919883728, -0.010876849293708801, -0.0002679046883713454, -0.028136415407061577, 0.04189860075712204, -0.021578829735517502, -0.016699984669685364, -0.012765433639287949, 0.010151143185794353, 0.028241336345672607, 0.0037727977614849806, -0.02124657854437828, 0.019865112379193306, -0.06249816343188286, 0.035236094146966934, -0.01588684506714344, -0.015388468280434608, -0.02853861264884472, 0.011532607488334179, -0.011602555401623249, 0.010264807380735874, -0.05067702382802963, 0.04700477421283722, 0.05445419251918793, 0.008245071396231651, 0.04256310313940048, 0.03595305606722832, 0.030567092821002007, 0.019357992336153984, -0.004804524593055248, -0.001050853170454502, 0.008878971450030804, 0.015301033854484558, -0.045990534126758575, 0.0367574542760849, -0.003707221942022443, -0.02065202407538891, -0.0034886356443166733, 0.026929818093776703, -0.04948791489005089, 0.0410592295229435, 0.017801659181714058, 0.025111181661486626, 0.01328129693865776, 0.015449672006070614, 0.05487387627363205, 0.0093205152079463, 0.03142395243048668, -0.011593811213970184 ]
23,311
parutils.csvl
csv_to_list
Converts a csv line to a list using SEPARATOR as separator
def csv_to_list(line_in: str): """Converts a csv line to a list using SEPARATOR as separator""" return line_in.strip('\n').split(SEPARATOR)
(line_in: str)
[ -0.019463153555989265, 0.03759489580988884, -0.030622495338320732, -0.017071865499019623, -0.04733522981405258, 0.02384280040860176, -0.01238564308732748, 0.06951376795768738, 0.017833925783634186, 0.0389963835477829, 0.01628352887928486, -0.0317787230014801, -0.005951941013336182, 0.014470355585217476, -0.0139272790402174, -0.0030679430346935987, -0.04432203248143196, -0.024263247847557068, -0.02808229997754097, -0.027766965329647064, -0.006149025168269873, 0.0037927748635411263, -0.023334762081503868, 0.04449721798300743, -0.02280920371413231, 0.006205960642546415, 0.03424884378910065, 0.0015120733296498656, 0.010581228882074356, 0.002656256314367056, 0.020794566720724106, 0.0631370022892952, -0.0688130259513855, -0.013769611716270447, 0.007051232736557722, 0.011938919313251972, 0.050453539937734604, 0.02193327434360981, 0.008816230110824108, 0.02986919693648815, -0.035650331526994705, -0.027416594326496124, 0.06264647841453552, 0.025401955470442772, -0.01914781890809536, -0.0500330924987793, -0.061420176178216934, -0.027241406962275505, 0.009862965904176235, -0.05626971274614334, -0.0023759587202221155, 0.0017978453543037176, -0.00665706442669034, 0.041624169796705246, -0.01606454700231552, -0.081706702709198, 0.08380893617868423, 0.03412621468305588, 0.03805037960410118, 0.05760112404823303, -0.0021558816079050303, -0.029834158718585968, 0.022966871038079262, -0.03445906564593315, 0.08570094406604767, 0.03195390850305557, 0.022756649181246758, -0.026365477591753006, -0.0026847240515053272, 0.009608946740627289, -0.024455951526761055, 0.03491454944014549, -0.023334762081503868, 0.00008020229870453477, 0.029080860316753387, 0.02941371314227581, 0.07631097733974457, 0.044707443565130234, 0.007607447914779186, -0.026085181161761284, 0.02349242940545082, 0.03132323920726776, 0.04004749655723572, 0.027118777856230736, -0.0033307219855487347, -0.051714878529310226, 0.04786079004406929, -0.0014277651207521558, -0.045758556574583054, 0.08626154065132141, 0.0012755723437294364, -0.034143730998039246, -0.012779811397194862, 0.03340795263648033, -0.033513061702251434, -0.040117572993040085, 0.0029869196005165577, -0.015337525866925716, -0.005058492999523878, -0.021565385162830353, 0.019515709951519966, 0.030254606157541275, -0.039767198264598846, -0.014295170083642006, -0.004344610497355461, -0.06905828416347504, -0.0037008021026849747, -0.019568264484405518, 0.036578815430402756, 0.049927983433008194, -0.04600381851196289, 0.03160353749990463, 0.010371005162596703, -0.0024394637439399958, -0.03917156904935837, 0.018990151584148407, -0.012928719632327557, -0.051609765738248825, -0.031235646456480026, -0.00997683685272932, 0.01308638695627451, 0.04691478610038757, -0.051259394735097885, 0.03591310977935791, 0.02993927150964737, -0.01706310734152794, 0.015451396815478802, -0.022774167358875275, 0.019796006381511688, 0.018482113257050514, 0.06604508310556412, 0.0036767141427844763, 0.033145174384117126, -0.0314633883535862, -0.03885623440146446, 0.04561840742826462, 0.03346050903201103, 0.024210691452026367, 0.04600381851196289, -0.02205590531229973, -0.011763732880353928, -0.03927667811512947, -0.008356367237865925, -0.037454746663570404, 0.029273563995957375, -0.03664889186620712, 0.05378207191824913, 0.05017324164509773, -0.0429205447435379, -0.03440651297569275, -0.04610893130302429, 0.008321329951286316, -0.0006115082651376724, -0.02813485637307167, -0.04071320220828056, -0.015749212354421616, -0.1039903536438942, -0.015871843323111534, 0.06975902616977692, -0.025314362719655037, -0.021267568692564964, 0.023247169330716133, -0.007173862773925066, 0.031113015487790108, 0.058056607842445374, 0.07911395281553268, 0.03319772705435753, -0.03505469858646393, -0.0297115296125412, -0.033740803599357605, 0.030324678868055344, -0.022020867094397545, 0.010003115050494671, 0.03346050903201103, -0.018079185858368874, 0.025086620822548866, -0.003532185684889555, 0.0595281682908535, 0.05111924558877945, -0.010318449698388577, 0.017903998494148254, 0.0033964167814701796, 0.023755207657814026, 0.0007669857586733997, 0.019235411658883095, 0.037279561161994934, -0.0019434685818850994, -0.044707443565130234, 0.01701931096613407, -0.026137737557291985, 0.006490637548267841, -0.02685599960386753, 0.0010297646513208747, -0.020987270399928093, -0.036123331636190414, -0.03938179090619087, -0.05945809558033943, 0.03938179090619087, -0.10160782188177109, -0.01749231293797493, 0.02953634224832058, -0.014689337462186813, 0.00491834431886673, -0.043025657534599304, 0.014706856571137905, 0.06008876487612724, -0.023457393050193787, -0.02018141560256481, 0.012052790261805058, 0.02825748547911644, -0.000664064078591764, -0.02871296927332878, 0.024053024128079414, 0.008076069876551628, 0.009845447726547718, 0.00394606264308095, -0.025945032015442848, 0.033513061702251434, 0.07119555026292801, -0.005062872543931007, 0.0314633883535862, 0.020233971998095512, -0.02650562673807144, 0.031883835792541504, 0.0729474127292633, -0.027591779828071594, -0.056830305606126785, -0.036298517137765884, -0.003046044846996665, -0.018377000465989113, -0.024000467732548714, -0.01706310734152794, -0.016703976318240166, -0.030552420765161514, 0.011903882026672363, 0.02449098974466324, 0.03643866628408432, 0.016292288899421692, -0.02117997594177723, 0.0016193747287616134, -0.06078950688242912, 0.00458549102768302, -0.006451220717281103, -0.045162927359342575, -0.043130770325660706, 0.07722194492816925, -0.074699267745018, 0.019690895453095436, -0.04344610497355461, -0.02025149017572403, -0.0022533286828547716, 0.033145174384117126, 0.014014871791005135, 0.010143264196813107, 0.0008693600539118052, -0.013279091566801071, -0.018990151584148407, 0.022371239960193634, -0.043200843036174774, 0.029921751469373703, 0.018289407715201378, -0.021652977913618088, 0.024613618850708008, -0.0005121450521983206, 0.01568789780139923, -0.049052052199840546, -0.038260601460933685, 0.05546385794878006, 0.05083894729614258, 0.023527465760707855, 0.024385876953601837, -0.017912758514285088, -0.08149648457765579, 0.014636781997978687, -0.01178125198930502, 0.006744657177478075, -0.03987231105566025, -0.023474911227822304, -0.01598571427166462, 0.06131506711244583, -0.028415152803063393, 0.04393662512302399, -0.01851714961230755, -0.0004412494890857488, -0.0725269615650177, 0.023947913199663162, 0.020496750250458717, -0.01909526251256466, -0.06660567969083786, 0.011938919313251972, -0.011334528215229511, 0.009381204843521118, -0.001131044002249837, -0.02569977194070816, 0.05616459995508194, 0.05693541839718819, 0.01704558916389942, -0.027872076258063316, 0.0427103228867054, 0.013603185303509235, 0.027293963357806206, 0.030675051733851433, -0.043025657534599304, -0.009854206815361977, -0.016625141724944115, -0.02958889864385128, -0.0012799520045518875, -0.0007089554565027356, -0.020899677649140358, -0.033285319805145264, 0.02431580238044262, 0.03430140018463135, -0.04067816585302353, -0.10763421654701233, 0.007949060760438442, 0.009968077763915062, -0.10237864404916763, 0.03386343643069267, -0.021600421518087387, -0.0035891211591660976, -0.011711177416145802, 0.019743451848626137, 0.046564411371946335, -0.003490579081699252, -0.056830305606126785, 0.041098613291978836, 0.04964768514037132, 0.04705493152141571, -0.01741347834467888, 0.024631137028336525, 0.0139798354357481, -0.021863199770450592, -0.0858410894870758, 0.005575291346758604, 0.06702612340450287, -0.0388912707567215, 0.03731459751725197, -0.0012065928895026445, -0.0317787230014801, -0.02599758841097355, -0.006490637548267841, 0.01653754897415638, 0.02657570131123066, 0.025139177218079567, -0.03137579560279846, 0.04274535924196243, 0.01944563537836075, 0.07119555026292801, 0.02888815477490425, 0.07715187221765518, 0.04404173418879509, -0.00004482295480556786, -0.016406159847974777, 0.060018688440322876, 0.013760852627456188, 0.025892475619912148, 0.006924222689121962, -0.010134504176676273, 0.018201814964413643, 0.003267217194661498, 0.056374821811914444, -0.002378148725256324, 0.08058551698923111, -0.0279596708714962, 0.0557091161608696, 0.010449838824570179, -0.0521002858877182, -0.024963991716504097, 0.04414684697985649, 0.0708802193403244, -0.07631097733974457, 0.08219722658395767, 0.0597383938729763, -0.026785925030708313, 0.005540254060178995, -0.026067662984132767, 0.05987854301929474, 0.027486668899655342, -0.02843267284333706, 0.041343871504068375, -0.06348737329244614, -0.011527232825756073, 0.056830305606126785, -0.021337643265724182, -0.002899326616898179, 0.02291431650519371, 0.007458539679646492, -0.005544633604586124, -0.015591545030474663, -0.003370138816535473, -0.061244990676641464, 0.021022308617830276, -0.016826605424284935, -0.02336980029940605, -0.02634795941412449, -0.06590493768453598, 0.010116985999047756, -0.026242848485708237, 0.05378207191824913, -0.03197142854332924, -0.03598318248987198, 0.032917432487010956, -0.07462919503450394, 0.02018141560256481, -0.07617083191871643, 0.02338731847703457, 0.0021515018306672573, 0.030324678868055344, -0.029974307864904404, -0.08247752487659454, 0.027031185105443, -0.015451396815478802, 0.06692101806402206, -0.03668392822146416, -0.014444077387452126, 0.0093111302703619, 0.006924222689121962, -0.002297125058248639, 0.014882042072713375, -0.004344610497355461, -0.0372445210814476, 0.028870636597275734, -0.05728578940033913, 0.020899677649140358, 0.03973216190934181, 0.051714878529310226, -0.008299431763589382, 0.043305955827236176, -0.02303694561123848, -0.06961888074874878, 0.021144937723875046, 0.025594661012291908, -0.023334762081503868, -0.08478997647762299, -0.016003232449293137, -0.024981509894132614, 0.024158135056495667, 0.024928953498601913, -0.02188071981072426, -0.00849651638418436, 0.010695098899304867, 0.04600381851196289, 0.032111577689647675, -0.04572352021932602, 0.042850472033023834, 0.005382586736232042, -0.012114104814827442, 0.07003932446241379, 0.041624169796705246, -0.05448281392455101, -0.06096469238400459, 0.012578347697854042, -0.004532935097813606, -0.014943357557058334, -0.02964145503938198, 0.05658504739403725, -0.0007089554565027356, 0.005132947117090225, 0.012227975763380527, 0.007116927299648523, 0.07224666327238083, 0.08661191165447235, -0.0033219626639038324, -0.026908554136753082, 0.0410635769367218, 0.041974540799856186, 0.021740570664405823, -0.009495075792074203, 0.056830305606126785, 0.0139272790402174, 0.018534667789936066, 0.018464593216776848, -0.007861467078328133, -0.025454511865973473, 0.017352163791656494, 0.021828163415193558, 0.011062989942729473, 0.01598571427166462, -0.023860320448875427, 0.027696890756487846, -0.020409157499670982, -0.0740685984492302, -0.023527465760707855, -0.009214778430759907, -0.003959201276302338, -0.015871843323111534, 0.04172928258776665, -0.06236618012189865, -0.05662008374929428, -0.007511095609515905, -0.01482072751969099, 0.0317787230014801, 0.02466617524623871, -0.039837274700403214, 0.1026589423418045, 0.036929186433553696, 0.0072176591493189335, 0.016222214326262474, 0.021600421518087387, 0.03445906564593315, 0.030955348163843155, 0.005316892173141241, -0.06839257478713989, 0.027013666927814484, 0.011124304495751858, 0.045758556574583054, 0.053396664559841156, -0.008124246262013912, -0.06369759142398834, -0.05658504739403725, -0.03039475344121456, 0.04264025017619133, 0.018201814964413643, -0.0008742871577851474, -0.03731459751725197, 0.0315685011446476, -0.03277728334069252, 0.005588430445641279, -0.0708802193403244, 0.02988671511411667, 0.04610893130302429, 0.015425118617713451, -0.014514151960611343, -0.051364507526159286, 0.010152023285627365, 0.015311247669160366, -0.01696675457060337, 0.004489138722419739, 0.02263401821255684, 0.011308250017464161, 0.005527115426957607, -0.06247129291296005, -0.049227237701416016, -0.02396543137729168, 0.00311173964291811, 0.04351617768406868, 0.010335967876017094, 0.040012460201978683, -0.004935862962156534, 0.0196033027023077, -0.060018688440322876, -0.001482510706409812, 0.011509713716804981, 0.06996925175189972, -0.03375832363963127, 0.021372679620981216, -0.006941741332411766, 0.013699537143111229, -0.041974540799856186, -0.018709855154156685, 0.04218476638197899, 0.0017934656934812665, -0.017229532822966576, -0.027188852429389954, 0.03580799698829651, -0.09410986304283142, -0.0058774868957698345, -0.002239094814285636, -0.061700474470853806, -0.020724492147564888, 0.012464476749300957, -0.004134387243539095, -0.04120372608304024, 0.02482384257018566, -0.019971193745732307, -0.0019938345067203045, -0.019550746306777, -0.006486258003860712, -0.003405175870284438, 0.02668081223964691, 0.03267217054963112, -0.06394285708665848, 0.013209016993641853, 0.04390158876776695, -0.006766555365175009, -0.02622533030807972, 0.020321564748883247, -0.057986535131931305, -0.021215012297034264, -0.016730254516005516, 0.0016478423494845629, 0.004482569172978401, -0.0819169282913208, 0.02128508687019348, -0.053817108273506165, -0.027188852429389954, -0.03370576724410057, 0.017956554889678955, -0.00019092526054009795, 0.04733522981405258, 0.023947913199663162, 0.01944563537836075, 0.023527465760707855, 0.028012225404381752, -0.021828163415193558, -0.06611516326665878, 0.004394976422190666, 0.012762293219566345, -0.030762644484639168, 0.02112741954624653, -0.0388912707567215, -0.07259703427553177, 0.017798887565732002, 0.0353349968791008, 0.021390197798609734, -0.0871725082397461, -0.0251742135733366, -0.08394908159971237, -0.00814176443964243, 0.041448984295129776, -0.009223537519574165, 0.013909760862588882, -0.03752481937408447, 0.02019893378019333, -0.004013947211205959, -0.0008846888085827231, -0.03195390850305557, -0.010589987970888615, 0.0577763095498085, 0.013445517979562283, 0.045408185571432114, 0.002910275710746646, 0.07038969546556473, -0.0008584109018556774, -0.02802974358201027, -0.044707443565130234, -0.04873671755194664, -0.046214040368795395, 0.026418033987283707, -0.04053801670670509, 0.0008622431196272373, -0.03346050903201103, 0.019550746306777, 0.0484914593398571, 0.0005126924952492118, 0.01131700910627842, -0.04176431894302368, -0.04901701584458351, -0.006039533764123917, -0.04239498823881149, -0.00023513233463745564, -0.012604625895619392, -0.01505722850561142, -0.043200843036174774, 0.00980165135115385, -0.043025657534599304, -0.030254606157541275, -0.0205317884683609, 0.0465293750166893, 0.021477792412042618, -0.005492078140377998, 0.11190875619649887, 0.0038212426006793976, 0.015249933116137981, -0.04218476638197899, -0.020444195717573166, -0.016870401799678802, 0.051539693027734756, 0.03717444837093353, 0.007007435895502567, 0.01743975654244423, 0.0068716672249138355, 0.02117997594177723, 0.018236853182315826, -0.015048469416797161, -0.031060460954904556, 0.016625141724944115, 0.08696228265762329, -0.004589870572090149, 0.00752861425280571, 0.03636859357357025, -0.0014135312521830201, 0.03689415007829666, 0.0028708588797599077, 0.004324901849031448, -0.02466617524623871, 0.005728579126298428, -0.05217036232352257, 0.027416594326496124, 0.03668392822146416, -0.04207965359091759, -0.012298050336539745, 0.005408864933997393, 0.02489391714334488, 0.0502433180809021, -0.013235295191407204, 0.02640051580965519, -0.036754000931978226, 0.0317261666059494, 0.014076187275350094, 0.04572352021932602, 0.05528867244720459, -0.015127303078770638, -0.020864641293883324, 0.020899677649140358, 0.04866664484143257, -0.022196054458618164, -0.01799159124493599, -0.004747537896037102, 0.08941488713026047, 0.014049909077584743, 0.0040555535815656185, 0.029308602213859558, 0.029781604185700417, 0.022721610963344574, -0.09789387881755829, -0.015162339434027672, -0.018885040655732155, -0.0260501429438591, 0.012061549350619316, 0.017833925783634186, -0.005093530286103487, 0.001467181951738894, -0.023177094757556915, 0.06842761486768723, -0.03034219890832901, -0.05087398737668991, -0.026610737666487694, -0.028642894700169563, -0.011509713716804981, 0.02030404657125473, -0.03459921479225159, 0.05441274121403694, 0.01743975654244423, -0.04278039559721947, -0.03319772705435753, -0.03267217054963112, 0.042500101029872894, -0.0111155454069376, -0.02240627631545067, -0.060193877667188644, 0.04779071360826492, -0.0821271538734436, 0.00860600732266903, 0.007747596595436335, -0.008969518356025219, -0.06390781700611115, -0.01110678631812334, 0.018201814964413643, 0.003056993940845132, -0.05472807586193085, -0.015941917896270752, 0.0372445210814476, -0.0014496633084490895, 0.017203256487846375, -0.007677522022277117, 0.05956320837140083, -0.01419005822390318, 0.0015843375585973263, 0.010519913397729397, -0.018114222213625908, -0.026558183133602142, -0.030096938833594322, 0.005820551421493292, 0.02725892700254917, -0.036298517137765884, -0.0005923473509028554, -0.01932300440967083, -0.08275782316923141, -0.00568478275090456, 0.023404836654663086, 0.025980070233345032, -0.012166661210358143, 0.007357807829976082, -0.017553627490997314, -0.03510725498199463, 0.04793086275458336, -0.01751859113574028 ]
23,313
parutils.dq
del_dup_list
Returns in_list sorted and without duplicates
def del_dup_list(in_list): """Returns in_list sorted and without duplicates""" if not in_list: return [] # If in_list elements are hashable if isinstance(in_list[0], str): out_list = list(set(in_list)) out_list.sort() return out_list # If not in_sorted = sorted(in_list) out_list = [in_sorted[0]] old_elt = in_sorted[0] for elt in in_sorted[1:]: if elt > old_elt: out_list.append(elt) old_elt = elt return out_list
(in_list)
[ 0.0011035918723791838, 0.0010995621560141444, -0.03689923137426376, -0.019766787067055702, -0.004619312006980181, -0.014737586490809917, 0.007138518616557121, 0.02474072389304638, 0.02488809823989868, -0.009689963422715664, -0.04959197714924812, -0.047712936997413635, -0.009487321600317955, -0.04454435408115387, 0.013273038901388645, -0.03828088194131851, -0.023874890059232712, 0.04277584329247475, -0.02359856106340885, -0.040786270052194595, 0.04067573696374893, 0.008105672895908356, -0.03546231612563133, 0.06657704710960388, -0.008870184421539307, 0.02461176924407482, 0.0680508017539978, -0.016727160662412643, -0.01934308186173439, 0.02151687629520893, 0.052686870098114014, 0.046460241079330444, 0.011476895771920681, 0.01493101753294468, 0.023230120539665222, 0.0141757158562541, -0.012121664360165596, 0.031225260347127914, -0.06035041809082031, 0.00747932493686676, -0.014608632773160934, -0.029530439525842667, 0.04977619647979736, -0.006452299654483795, 0.07490378618240356, 0.037046607583761215, -0.0015405382728204131, 0.09918395429849625, -0.0018686798866838217, -0.010795282199978828, 0.02871987223625183, -0.010233411565423012, -0.055044885724782944, 0.04218634217977524, -0.03533336520195007, -0.020614199340343475, 0.019693098962306976, 0.007437875494360924, 0.058323998004198074, 0.04612864553928375, -0.033730652183294296, 0.02170109562575817, -0.03426488861441612, -0.11922707408666611, 0.025864463299512863, 0.0010241471463814378, -0.026140794157981873, -0.04402853921055794, -0.05589229613542557, -0.038428258150815964, -0.06064516678452492, -0.024132797494530678, -0.0030004805885255337, 0.013844120316207409, 0.04181789979338646, 0.025422336533665657, 0.08083566278219223, 0.0028853430412709713, -0.007723416201770306, -0.019656255841255188, 0.011347941122949123, -0.00413112947717309, 0.04738134145736694, 0.015354722738265991, -0.031243683770298958, 0.010841337032616138, 0.1030157282948494, 0.05983459949493408, 0.005356191657483578, 0.03920197859406471, 0.011651904322206974, -0.005554228089749813, -0.033122725784778595, -0.012692746706306934, -0.025496024638414383, -0.017307452857494354, -0.03590444475412369, -0.009031376801431179, 0.018016699701547623, -0.006397033575922251, 0.03152001276612282, 0.04723396524786949, -0.061050452291965485, -0.0076911780051887035, 0.025274960324168205, 0.01059264037758112, 0.02127739042043686, -0.019932584837079048, 0.03203582763671875, 0.040233612060546875, -0.07707757502794266, -0.0006165607483126223, 0.014479679055511951, -0.02501705288887024, 0.025035474449396133, -0.042996909469366074, 0.004499569535255432, -0.05983459949493408, -0.029383063316345215, -0.06237683445215225, -0.05213421210646629, 0.003044232726097107, -0.04126524180173874, -0.02225375548005104, 0.012784856371581554, 0.023524872958660126, 0.030027832835912704, -0.04277584329247475, -0.03835456818342209, 0.04181789979338646, 0.031041041016578674, 0.033730652183294296, 0.0051673660054802895, 0.044802263379096985, 0.02400384470820427, -0.04093364626169205, -0.019214129075407982, 0.0352596752345562, 0.01121898740530014, -0.02256692945957184, 0.02908831089735031, -0.002758692018687725, 0.01857857033610344, 0.04049151763319969, 0.024114375934004784, -0.0677560567855835, -0.01906675286591053, -0.0001737135462462902, -0.02308274433016777, 0.052686870098114014, -0.03185160830616951, 0.018689101561903954, -0.0067931064404547215, -0.033675383776426315, -0.013475680723786354, -0.016358720138669014, -0.08474112302064896, -0.03619919717311859, -0.032109517604112625, 0.00820238795131445, 0.05681339651346207, 0.046976055949926376, 0.038244035094976425, 0.019840475171804428, -0.025974996387958527, -0.04675499349832535, 0.038796696811914444, -0.016653472557663918, -0.04067573696374893, 0.03527809679508209, -0.0252933818846941, -0.022732727229595184, 0.0012123967753723264, 0.0044327895157039165, -0.08533062785863876, 0.054271161556243896, -0.01299670897424221, 0.04583389312028885, 0.01612844690680504, 0.025053896009922028, -0.055008042603731155, -0.04653392732143402, 0.011891390196979046, 0.009763650596141815, 0.013586212880909443, 0.05817662179470062, 0.007870792411267757, 0.00586279621347785, 0.01811802014708519, -0.024851255118846893, -0.04612864553928375, 0.013577001169323921, -0.00630031805485487, -0.04741818457841873, 0.01646004244685173, 0.008266865275800228, -0.1067001223564148, 0.029198843985795975, -0.015566575340926647, 0.047933999449014664, -0.04049151763319969, -0.055560700595378876, 0.019472036510705948, -0.02816721238195896, 0.05637126788496971, 0.01759299449622631, -0.025274960324168205, -0.0410810224711895, 0.053202688694000244, 0.019932584837079048, 0.04520754516124725, -0.04458119720220566, 0.0005051653133705258, -0.021166859194636345, 0.005158155225217342, -0.07210364192724228, -0.0447654202580452, 0.015492888167500496, 0.043733786791563034, -0.04800768941640854, -0.01246247161179781, 0.006447694264352322, -0.013890175148844719, 0.016598206013441086, 0.02881198190152645, 0.02013522759079933, 0.019379926845431328, 0.004140340723097324, -0.013448047451674938, -0.044249601662158966, 0.03282797336578369, -0.0594661608338356, 0.07715126127004623, 0.021535297855734825, -0.01704033464193344, -0.005586466286331415, -0.05497119575738907, -0.024243328720331192, -0.0020206612534821033, -0.007069435901939869, -0.06440325081348419, 0.0554870143532753, 0.08989927917718887, 0.01872594654560089, -0.014829696156084538, 0.055413324385881424, -0.011384785175323486, 0.04723396524786949, -0.005876612383872271, -0.00617596972733736, 0.01971152238547802, 0.02118528075516224, -0.002982058562338352, -0.011338730342686176, 0.01928781531751156, 0.01077685970813036, -0.03013836406171322, -0.004115010611712933, -0.021019482985138893, 0.009372184053063393, 0.006410850211977959, -0.017703525722026825, 0.07803551852703094, 0.028627760708332062, 0.03835456818342209, -0.04708658903837204, 0.0009395211236551404, 0.05515541881322861, -0.012692746706306934, 0.06046094745397568, 0.08533062785863876, -0.10257360339164734, 0.032385844737291336, -0.015548153780400753, -0.008299103006720543, 0.025827620178461075, -0.02801983617246151, -0.002135798567906022, 0.01098871324211359, 0.010196567513048649, -0.0038548000156879425, -0.005531200207769871, 0.04159683734178543, 0.009487321600317955, -0.03037784993648529, 0.05839768797159195, 0.04465488716959953, -0.04653392732143402, 0.001377043197862804, 0.05552385747432709, -0.0004637158417608589, 0.0024063715245574713, -0.027393488213419914, -0.06532435119152069, -0.049923572689294815, 0.05681339651346207, 0.017344297841191292, 0.0005503567517735064, -0.011937445029616356, 0.07180888950824738, -0.03406224772334099, 0.023469606414437294, -0.04531807824969292, -0.021664252504706383, 0.03172265365719795, -0.007926058024168015, -0.02326696366071701, -0.03737820312380791, -0.04959197714924812, -0.04601811245083809, 0.007525380235165358, 0.03343589976429939, -0.06889821588993073, 0.006433877628296614, -0.039865169674158096, 0.015548153780400753, -0.0061621530912816525, 0.009846549481153488, -0.016174500808119774, 0.04800768941640854, -0.0036521581932902336, 0.0017017306527122855, -0.04867088049650192, 0.02219848893582821, 0.01578763872385025, -0.03479912504553795, 0.027577709406614304, 0.048081375658512115, 0.019877320155501366, 0.05014463886618614, -0.020245758816599846, -0.05007094889879227, -0.00021501908486243337, -0.02566182240843773, 0.0315752774477005, -0.033730652183294296, 0.06189786270260811, -0.03000940941274166, -0.02188531495630741, -0.05928194150328636, -0.0656191036105156, 0.020503666251897812, 0.019729943946003914, 0.0005661881295964122, -0.0447654202580452, 0.0037350570783019066, -0.07132992148399353, 0.0582503117620945, -0.04251793771982193, 0.028369853273034096, 0.017058756202459335, 0.043181128799915314, -0.004181790165603161, 0.03527809679508209, 0.09387842565774918, 0.0438443198800087, -0.05659233033657074, 0.03820719197392464, -0.02087210677564144, -0.0160916019231081, 0.03286481648683548, -0.06720339506864548, 0.03292008489370346, -0.028498807922005653, 0.04071258381009102, -0.008395818993449211, -0.024022266268730164, -0.06970878690481186, 0.002352257026359439, 0.01412966102361679, -0.049665667116642, -0.016017913818359375, 0.04421275854110718, -0.09424686431884766, 0.011872967705130577, -0.01408360619097948, 0.007760260254144669, 0.03262533247470856, -0.024722300469875336, 0.06823502480983734, -0.017510095611214638, -0.024998631328344345, 0.00826225895434618, -0.023893311619758606, -0.013613845221698284, 0.01048210822045803, -0.002410976914688945, 0.020245758816599846, 0.027909304946660995, -0.006926665548235178, -0.07678282260894775, -0.017850901931524277, 0.04237056151032448, 0.008280681446194649, -0.005812135525047779, -0.018403561785817146, -0.019600989297032356, 0.014166505075991154, -0.009957081638276577, 0.02219848893582821, 0.07460903376340866, -0.012748012319207191, -0.019490458071231842, 0.00934915617108345, 0.0030833794735372066, 0.008142516948282719, -0.004969330038875341, -0.01759299449622631, 0.03397013619542122, 0.005434485152363777, -0.0196194127202034, -0.004524899646639824, 0.003583075711503625, -0.0206878874450922, 0.037138719111680984, 0.03185160830616951, -0.001048326026648283, -0.005614099092781544, 0.04837612807750702, -0.025514446198940277, -0.015502098947763443, -0.016865326091647148, -0.027890881523489952, 0.00469069741666317, -0.0049186693504452705, -0.033730652183294296, 0.012084821239113808, 0.07383530586957932, -0.07958296686410904, 0.018504882231354713, 0.033730652183294296, 0.007304316386580467, -0.04001254588365555, -0.06304002553224564, 0.060682013630867004, 0.013632267713546753, 0.01313487347215414, -0.015612630173563957, 0.007635911926627159, 0.07383530586957932, -0.012140086852014065, 0.02510916255414486, 0.018412772566080093, 0.03780191019177437, 0.034688595682382584, 0.10463686287403107, -0.0361807756125927, 0.009533376432955265, 0.025311805307865143, 0.005839768797159195, 0.04520754516124725, -0.0361807756125927, -0.018136441707611084, -0.08754125982522964, -0.04126524180173874, -0.05423431843519211, -0.024574926123023033, 0.03671501204371452, -0.0328095518052578, 0.0010137847857549787, 0.05231843143701553, 0.061787329614162445, 0.05312899872660637, 0.016883747652173042, -0.06245052069425583, -0.00768657261505723, 0.0037074240390211344, 0.016819270327687263, 0.02737506665289402, 0.048634033650159836, 0.02461176924407482, -0.04528123512864113, -0.05379218980669975, -0.008856368251144886, -0.030212052166461945, 0.00264816009439528, -0.0321832038462162, -0.01744561828672886, 0.04450751096010208, 0.003463332774117589, -0.007746444083750248, -0.0518026165664196, 0.048081375658512115, -0.00015572331903968006, 0.012978287413716316, -0.03242269158363342, 0.019877320155501366, -0.07383530586957932, 0.018937798216938972, 0.0031616727355867624, -0.04074942693114281, -0.028830403462052345, 0.0026435544714331627, -0.01704033464193344, 0.01857857033610344, -0.0013482589274644852, -0.04144946113228798, 0.029346218332648277, 0.020301025360822678, 0.031870029866695404, 0.034504372626543045, 0.012830911204218864, 0.015188924968242645, 0.022419553250074387, 0.09203622490167618, 0.04465488716959953, -0.008409635163843632, -0.0024017661344259977, -0.04296006262302399, -0.013613845221698284, -0.06399796903133392, 0.032385844737291336, 0.07313527166843414, 0.008888606913387775, 0.010353154502809048, 0.02510916255414486, -0.07626701146364212, -0.04001254588365555, -0.0025399308651685715, 0.028977779671549797, -0.00908664334565401, 0.012794067151844501, -0.027872459962964058, -0.0818672925233841, 0.026380280032753944, -0.0508815161883831, 0.01497707236558199, 0.016266610473394394, 0.01585211604833603, 0.028093524277210236, -0.029512016102671623, -0.016957435756921768, -0.03209109604358673, -0.06764551997184753, 0.03857563063502312, 0.06005566567182541, -0.0594661608338356, 0.015548153780400753, 0.09129934757947922, 0.007161546032875776, -0.022916946560144424, -0.031409479677677155, 0.022677460685372353, -0.0050015682354569435, -0.032293736934661865, 0.038759853690862656, -0.03345432132482529, 0.05257634073495865, -0.0943942442536354, 0.029106732457876205, -0.012619058601558208, -0.046607617288827896, 0.04675499349832535, -0.028130367398262024, -0.007612884510308504, -0.055044885724782944, 0.03382275998592377, 0.02798299305140972, 0.035664960741996765, -0.014350724406540394, -0.030709445476531982, 0.015704739838838577, -0.03185160830616951, -0.022511662915349007, -0.04340219125151634, 0.0070740412920713425, -0.0695982500910759, 0.01422177068889141, -0.025146007537841797, 0.012637480162084103, 0.011053189635276794, 0.02492494322359562, 0.024261752143502235, -0.012020343914628029, -0.021111592650413513, 0.0272829569876194, 0.0582503117620945, 0.021756362169981003, 0.0239117331802845, -0.03199898451566696, -0.00008966324821813032, 0.0056555490009486675, -0.011541372165083885, 0.005848979577422142, -0.011790068820118904, -0.009745229035615921, 0.016386354342103004, -0.01777721382677555, -0.033675383776426315, -0.003776506520807743, 0.03828088194131851, -0.047823466360569, 0.04181789979338646, -0.00482195382937789, -0.039533574134111404, -0.041338928043842316, -0.0026297380682080984, -0.0262144822627306, -0.018956219777464867, -0.001866377191618085, 0.013070397078990936, 0.00821620412170887, 0.031243683770298958, -0.039496731013059616, 0.06392428278923035, -0.0162481889128685, -0.03619919717311859, -0.10242622345685959, 0.0011139542330056429, -0.004151854198426008, -0.005650943145155907, 0.05054992064833641, -0.028277743607759476, -0.027448754757642746, -0.001970000797882676, 0.014756008051335812, 0.0016844600904732943, -0.017371930181980133, 0.015833694487810135, 0.013715166598558426, 0.043144285678863525, 0.017298242077231407, 0.056850239634513855, 0.030856821686029434, 0.004927880596369505, -0.04786031320691109, 0.016119234263896942, 0.05036570131778717, 0.01587975025177002, 0.007654333952814341, 0.008326736278831959, -0.018808845430612564, -0.012794067151844501, 0.03957042098045349, -0.009422844275832176, 0.010113668628036976, -0.02639870159327984, -0.031409479677677155, -0.044249601662158966, 0.04417591542005539, 0.04542861133813858, -0.041670527309179306, -0.024409128352999687, 0.03000940941274166, -0.011430840007960796, 0.040823113173246384, 0.011366363614797592, -0.04049151763319969, -0.013807276263833046, -0.004239358939230442, 0.019656255841255188, 0.08039353042840958, 0.049665667116642, 0.005231843329966068, -0.0003635463071987033, 0.0009717596112750471, -0.007926058024168015, -0.006180575117468834, -0.032477956265211105, 0.0060331993736326694, 0.069303497672081, 0.006958904210478067, 0.021811628714203835, -0.006415455602109432, 0.013577001169323921, 0.04631286486983299, -0.011854546144604683, 0.06948772072792053, -0.006245052441954613, 0.016846902668476105, -0.03627288341522217, -0.033214833587408066, 0.02087210677564144, -0.010629484429955482, 0.012278251349925995, -0.031188417226076126, -0.008400424383580685, 0.029198843985795975, -0.03489123657345772, -0.015308667905628681, 0.005899640265852213, -0.02807510271668434, 0.010749227367341518, 0.0019101293291896582, 0.005199604667723179, 0.006277290638536215, 0.04296006262302399, -0.038944073021411896, -0.054308004677295685, 0.02105632610619068, -0.07534591108560562, -0.06458747386932373, -0.04867088049650192, -0.060129351913928986, 0.0020056935027241707, 0.020558932796120644, -0.05401325598359108, 0.053018465638160706, 0.0033919475972652435, -0.010647905990481377, 0.005669365171343088, 0.0200799610465765, 0.08724651485681534, 0.0459812693297863, 0.06458747386932373, -0.00219567003659904, -0.04465488716959953, 0.001114530023187399, 0.010261044837534428, -0.024114375934004784, 0.016017913818359375, -0.009883393533527851, 0.001174401375465095, 0.04104417935013771, 0.027172425761818886, -0.0536448135972023, 0.015041548758745193, -0.022456396371126175, 0.02571708895266056, 0.022824836894869804, -0.000019591347154346295, -0.008930056355893612, 0.011882179416716099, -0.03689923137426376, -0.0162481889128685, -0.00895308330655098, 0.01799827814102173, -0.010601851157844067, -0.07545644044876099, 0.007654333952814341, -0.037286095321178436, 0.0824567973613739, -0.053755346685647964, 0.06200839579105377, 0.03234900161623955, -0.009561008773744106, 0.013070397078990936, 0.02063262090086937, -0.006037804763764143, -0.007037197705358267, -0.008183966390788555, -0.04984988644719124, -0.015778427943587303, 0.05567123368382454, 0.007414848078042269, -0.06171364337205887, 0.057218678295612335, -0.01809038780629635, -0.027043471112847328, -0.0760459452867508, -0.020282603800296783, -0.031372636556625366, -0.03665974736213684, -0.023782780393958092, 0.052502650767564774, 0.005535806063562632, -0.03083840012550354, -0.016911379992961884, -0.02871987223625183, -0.030451538041234016, 0.022456396371126175, -0.013300672173500061, -0.016727160662412643, 0.01811802014708519, -0.005623310338705778, 0.04181789979338646, 0.012775645591318607, 0.024243328720331192 ]
23,314
parutils.file
delete_folder
Deletes a folder and its content
def delete_folder(dir): """Deletes a folder and its content""" if p.exists(dir): rmtree(dir) log(f"Folder '{dir}' deleted")
(dir)
[ 0.017693858593702316, 0.04692372307181358, 0.0016468933317810297, -0.06308476626873016, 0.10348737239837646, 0.017197687178850174, -0.007305251434445381, 0.0631556510925293, -0.042848024517297745, 0.039835549890995026, 0.01927983947098255, 0.05975332483649254, 0.03653954714536667, -0.00026123804855160415, -0.028831155970692635, -0.04511623829603195, -0.039197612553834915, 0.022061947733163834, -0.0054844762198626995, -0.022221431136131287, -0.02753756381571293, 0.011084134690463543, 0.0346611812710762, 0.03202083334326744, 0.01566486805677414, 0.004361443221569061, 0.02681102603673935, 0.014902889728546143, -0.02213282883167267, -0.007748262491077185, -0.015549685806035995, 0.024631410837173462, -0.0167901162058115, 0.08030903339385986, -0.045435208827257156, 0.01951020397245884, -0.00006036024933564477, -0.021229086443781853, -0.1634533405303955, -0.01474340632557869, -0.056032031774520874, 0.015142115764319897, -0.01825205236673355, 0.012900480069220066, 0.021193645894527435, -0.039835549890995026, 0.01703820377588272, -0.022256871685385704, -0.019970934838056564, 0.013830803334712982, -0.01471682544797659, -0.05443719029426575, -0.006897681392729282, -0.01581549271941185, 0.014885169453918934, -0.012182801961898804, -0.009985467419028282, 0.016276223585009575, 0.001624742872081697, 0.030674081295728683, 0.05489792302250862, 0.023107454180717468, -0.0516728013753891, 0.005843314807862043, 0.019722849130630493, -0.04851856455206871, -0.016763536259531975, 0.012971362099051476, 0.009498155675828457, -0.010233554057776928, -0.09441450238227844, 0.022611280903220177, 0.0499361976981163, 0.022115109488368034, -0.0006656240439042449, 0.02867167256772518, 0.04681740328669548, -0.03395236283540726, 0.033704277127981186, -0.01277643721550703, 0.0009785005822777748, -0.1012900322675705, 0.010862629860639572, 0.025907283648848534, 0.016949601471424103, 0.03147150203585625, 0.05638644099235535, 0.02744896151125431, -0.0057547129690647125, -0.0019647537264972925, 0.08378224074840546, -0.0326056107878685, -0.036858513951301575, -0.039729226380586624, -0.05216897651553154, -0.009569037705659866, 0.06482136994600296, 0.023568185046315193, -0.02223915234208107, -0.019474763423204422, 0.01279415749013424, 0.009498155675828457, -0.02744896151125431, -0.039870988577604294, 0.010401898063719273, 0.0014608287019655108, 0.00490413187071681, -0.08470369875431061, 0.005209809169173241, 0.05227529630064964, -0.03310178220272064, -0.029610855504870415, 0.007557767443358898, 0.07371702790260315, 0.0017255278071388602, -0.0027798940427601337, -0.013033383525907993, -0.057449664920568466, -0.0365041047334671, -0.024028915911912918, 0.051991771906614304, 0.005781293381005526, -0.03664587065577507, -0.03225120157003403, 0.11865606158971786, 0.017197687178850174, 0.07945845276117325, 0.01888998970389366, -0.06790472567081451, 0.036716751754283905, 0.010012048296630383, 0.026155369356274605, -0.018287494778633118, -0.04054436460137367, 0.017357170581817627, 0.01274985633790493, 0.01238658744841814, -0.05259426683187485, 0.027431240305304527, 0.0033823889680206776, 0.02856534905731678, 0.04107597842812538, 0.042210087180137634, -0.01422951277345419, 0.027962854132056236, 0.016045859083533287, -0.05046781152486801, 0.021672097966074944, -0.03333214670419693, -0.0075090364553034306, -0.04121774435043335, -0.02549971267580986, 0.08619222044944763, -0.024755453690886497, 0.004921852145344019, 0.0042994217947125435, -0.0323929637670517, -0.029114682227373123, -0.00939183309674263, -0.013175146654248238, 0.06134816259145737, -0.010862629860639572, 0.021831581369042397, 0.019191237166523933, -0.0323929637670517, 0.00167901162058115, 0.022753044962882996, 0.027236316353082657, -0.05737878382205963, -0.011509425938129425, 0.007575488183647394, 0.010481639765202999, -0.0043260022066533566, -0.04674651846289635, -0.07931669056415558, 0.05737878382205963, -0.0035839590709656477, 0.0013633663766086102, 0.017587536945939064, -0.01060568355023861, -0.02594272419810295, 0.006941982079297304, 0.05099942535161972, 0.009374112822115421, 0.026438895612955093, 0.018163450062274933, -0.0268641859292984, 0.02803373523056507, 0.00043138195178471506, -0.030780404806137085, -0.11752195656299591, -0.0043459380976855755, -0.014734545722603798, 0.01163346879184246, -0.02909696288406849, 0.00748245557770133, 0.04954634979367256, -0.05907994508743286, -0.0011158339912071824, 0.011509425938129425, -0.007983057759702206, 0.04855400696396828, 0.048731207847595215, 0.01927983947098255, -0.012510630302131176, -0.019208956509828568, -0.02603132650256157, 0.0050636157393455505, -0.019474763423204422, 0.023479582741856575, 0.10185708850622177, -0.017153386026620865, 0.04157215356826782, 0.003360238391906023, -0.005683830939233303, -0.07449673116207123, 0.0009347532177343965, 0.023922594264149666, 0.007681810762733221, 0.026066767051815987, -0.05649276077747345, -0.006764777936041355, -0.026119928807020187, -0.007260950282216072, 0.007358412723988295, -0.03505102917551994, -0.023001130670309067, 0.002409979933872819, 0.02851218730211258, -0.09540684521198273, 0.022664442658424377, 0.020130420103669167, 0.06067478656768799, -0.03678763285279274, 0.008018499240279198, -0.0477743074297905, 0.007376132998615503, -0.07584348320960999, -0.05975332483649254, -0.016125600785017014, -0.005639529787003994, -0.07889139652252197, -0.003544087987393141, 0.042989786714315414, 0.049758996814489365, 0.04724269360303879, 0.05638644099235535, -0.0036393352784216404, 0.00642365962266922, -0.028016015887260437, -0.07555995881557465, -0.048199597746133804, 0.003052345709875226, 0.023532744497060776, 0.03887864574790001, 0.0033713136799633503, -0.04997164011001587, 0.06375814229249954, -0.014557341113686562, 0.04171391576528549, -0.04827047884464264, -0.05312587693333626, 0.01981145143508911, 0.04933370277285576, 0.030231069773435593, -0.004656045697629452, 0.024117518216371536, 0.03439537435770035, 0.07226395606994629, -0.028193220496177673, 0.0961865484714508, -0.002815334824845195, 0.09533596783876419, -0.056953493505716324, 0.039055850356817245, 0.02744896151125431, -0.023674508556723595, -0.027714768424630165, 0.042599938809871674, 0.013095404952764511, -0.005555357784032822, -0.019970934838056564, -0.02277076430618763, 0.019776010885834694, -0.04699460789561272, 0.06127728149294853, 0.036858513951301575, 0.005976218264549971, 0.023709949105978012, 0.06439607590436935, -0.006219874601811171, -0.03735468536615372, 0.0012360006803646684, 0.027324918657541275, -0.03777997940778732, 0.0029925392009317875, -0.036964837461709976, 0.04656931757926941, 0.020910119637846947, -0.0018030547071248293, 0.008098240941762924, 0.06446696072816849, -0.011863834224641323, -0.01503579318523407, 0.019102634862065315, -0.00489084143191576, -0.0478806272149086, 0.022753044962882996, -0.001486301887780428, 0.00486426055431366, -0.000006593249509023735, -0.02043166756629944, -0.0037655935157090425, 0.005993939004838467, 0.03375743702054024, 0.006242024712264538, -0.007455875165760517, -0.030443714931607246, -0.07052735239267349, -0.030231069773435593, 0.017490074038505554, 0.010649984702467918, 0.010517081245779991, 0.0939183309674263, -0.025783240795135498, -0.053161319345235825, -0.0323929637670517, 0.026633821427822113, -0.030355112627148628, -0.011872694827616215, 0.00968421995639801, 0.041926559060811996, 0.03492698818445206, -0.07704847306013107, 0.015230718068778515, 0.02374538965523243, 0.05181456729769707, -0.0031143673695623875, 0.05387013778090477, 0.066735178232193, -0.0009192478028126061, -0.006702756509184837, -0.04812871292233467, 0.07534731179475784, 0.002412194851785898, 0.02137085050344467, -0.015275019221007824, -0.026881907135248184, 0.0730082094669342, -0.05259426683187485, 0.03643322363495827, 0.059930525720119476, 0.017605256289243698, -0.006667315494269133, 0.02184930257499218, 0.0006080325692892075, 0.039445698261260986, -0.007198928855359554, -0.026155369356274605, -0.023479582741856575, -0.000058145193179370835, -0.019244397059082985, -0.0040291850455105305, -0.014096610248088837, -0.029912102967500687, -0.03517507389187813, -0.05376381427049637, 0.017791321501135826, 0.04150126874446869, 0.030496876686811447, 0.08300253748893738, -0.04674651846289635, -0.04561241343617439, 0.008979832753539085, 0.03212715685367584, 0.01549652498215437, 0.03446625545620918, -0.04182023927569389, -0.0040291850455105305, 0.047916069626808167, -0.05174368619918823, 0.014468738809227943, 0.04320243373513222, -0.024152958765625954, -0.015886373817920685, 0.004638324957340956, 0.017020482569932938, 0.017064783722162247, -0.041430387645959854, -0.009161467663943768, -0.00932095106691122, -0.0005119545967318118, 0.0011485059512779117, -0.0248617772012949, -0.025038981810212135, -0.013396652415394783, 0.021991066634655, -0.007384993135929108, -0.042316410690546036, -0.0013057749019935727, 0.05011340230703354, 0.0028086896054446697, -0.009533596225082874, -0.0027422381099313498, 0.02798057533800602, -0.034040965139865875, -0.02457825094461441, -0.034572578966617584, 0.027750208973884583, -0.05440175160765648, 0.05702437460422516, 0.03430677205324173, 0.06003684923052788, 0.07683582603931427, 0.006871100515127182, 0.02555287443101406, -0.023639066144824028, -0.02851218730211258, 0.022699883207678795, 0.029912102967500687, -0.007668520323932171, -0.038807764649391174, 0.02028990350663662, 0.024950379505753517, -0.018429256975650787, -0.011181597597897053, -0.029469091445207596, -0.017250848934054375, 0.033208105713129044, 0.007035014685243368, 0.017286289483308792, -0.09703712910413742, -0.07825346291065216, -0.025871843099594116, -0.02296569012105465, 0.05337396636605263, -0.06871986389160156, -0.019829172641038895, -0.033792879432439804, 0.039835549890995026, -0.007424864452332258, 0.019669687375426292, 0.037886299192905426, -0.02176070027053356, -0.05007796362042427, 0.0634746178984642, 0.017844483256340027, -0.02034306526184082, -0.0026447756681591272, -0.0023612487129867077, -0.005856605246663094, -0.001930420403368771, 0.016604052856564522, -0.017144525423645973, -0.04568329453468323, -0.0383470319211483, -0.06156080961227417, 0.048731207847595215, -0.028583070263266563, -0.02675786428153515, 0.0037257224321365356, 0.03742557018995285, -0.007114756386727095, -0.03375743702054024, 0.024206120520830154, -0.025960443541407585, 0.05018428713083267, -0.009223489090800285, 0.02067975327372551, -0.022947968915104866, 0.005187658593058586, -0.024365603923797607, 0.0011269092792645097, 0.031063931062817574, 0.010596822947263718, 0.03689395636320114, -0.024099798873066902, -0.013325770385563374, 0.0025295927189290524, 0.07350438088178635, 0.03132973611354828, -0.025800960138440132, 0.012271404266357422, -0.03046143613755703, -0.002591614378616214, 0.03354479372501373, -0.04522256180644035, 0.045718733221292496, 0.042316410690546036, -0.011713210493326187, -0.0010095112957060337, -0.025180745869874954, -0.01425609365105629, -0.05975332483649254, 0.009551317431032658, -0.05791039764881134, -0.05844201147556305, 0.014521900564432144, -0.030337393283843994, -0.03606109693646431, 0.03884320333600044, -0.017791321501135826, -0.08229371905326843, 0.021565774455666542, 0.04341507703065872, -0.008235574699938297, 0.019102634862065315, 0.010251274332404137, -0.032676491886377335, 0.04426565766334534, -0.04072156921029091, 0.04933370277285576, -0.02851218730211258, -0.024294722825288773, 0.036131978034973145, -0.007198928855359554, -0.036858513951301575, 0.03767365589737892, 0.00007586563151562586, -0.009436134248971939, -0.03363339602947235, -0.04412389546632767, 0.02856534905731678, 0.06035581976175308, -0.023142894729971886, 0.054330866783857346, 0.00851910188794136, -0.007571057882159948, 0.011146157048642635, 0.06708958745002747, -0.03352707251906395, 0.01717996597290039, 0.010738587006926537, 0.005648390389978886, 0.011553727090358734, -0.001239323290064931, -0.048589445650577545, -0.006436949595808983, 0.029557693749666214, -0.0033580232411623, 0.011925855651497841, -0.01545222382992506, 0.011518285609781742, 0.0029991844203323126, 0.01785334385931492, 0.052487943321466446, 0.02549971267580986, -0.025180745869874954, 0.02817549929022789, 0.10646440088748932, 0.006804648786783218, -0.015018072910606861, -0.005807874258607626, 0.02822866104543209, 0.034289050847291946, -0.004321572370827198, -0.05479159951210022, -0.03538771718740463, 0.04210376366972923, -0.04476183280348778, -0.057591430842876434, 0.03522823378443718, 0.03186134994029999, 0.04458462819457054, 0.07428408414125443, 0.005453465506434441, 0.014451018534600735, 0.012953641824424267, -0.01474340632557869, -0.016090160235762596, -0.0006296293577179313, -0.015230718068778515, 0.019882334396243095, -0.04274170100688934, 0.014911750331521034, 0.013316910713911057, -0.043096110224723816, -0.03675219044089317, -0.013742201030254364, 0.010260134935379028, -0.04511623829603195, -0.052629705518484116, 0.004186453763395548, -0.022930249571800232, -0.01975828967988491, 0.0036769912112504244, 0.03742557018995285, -0.0461440235376358, -0.06308476626873016, 0.052523382008075714, -0.00327828130684793, 0.0007990810554474592, 0.01352955587208271, -0.040898773819208145, 0.03678763285279274, 0.03187907114624977, 0.05397646129131317, -0.043769486248493195, -0.016666073352098465, -0.016364825889468193, -0.011048694141209126, -0.01805712841451168, 0.020325344055891037, -0.014397857710719109, 0.017640698701143265, 0.020910119637846947, 0.0059053367003798485, 0.015904095023870468, -0.018482418730854988, -0.014149771071970463, -0.043627724051475525, -0.043875809758901596, -0.002635915530845523, 0.010685425251722336, 0.04125318303704262, 0.003699141787365079, -0.019297558814287186, -0.05337396636605263, -0.01014495175331831, 0.0029548832681030035, -0.04511623829603195, -0.0690033957362175, -0.010047489777207375, 0.01790650375187397, 0.01595725677907467, 0.01606357842683792, 0.008603273890912533, -0.009923445992171764, -0.040508925914764404, -0.02647433802485466, -0.0011269092792645097, -0.014832007698714733, 0.013644739054143429, -0.04784518852829933, 0.01213850174099207, -0.04720725119113922, -0.054968804121017456, -0.07917492836713791, -0.0038364753127098083, -0.05585482716560364, 0.004602884408086538, 0.025127584114670753, -0.05348028615117073, -0.0030722813680768013, -0.009772822260856628, -0.033261265605688095, 0.003329227678477764, -0.014707964845001698, 0.01508895494043827, -0.03570668771862984, -0.008412778377532959, 0.017986247316002846, 0.01060568355023861, 0.030337393283843994, 0.022664442658424377, 0.0168432779610157, 0.051601920276880264, -0.007278670556843281, -0.037390127778053284, 0.034519415348768234, 0.07120072841644287, -0.0036061094142496586, -0.03760277479887009, -0.013662459328770638, -0.01625850424170494, 0.01272327546030283, 0.006764777936041355, 0.04812871292233467, 0.00549776665866375, -0.05142471566796303, 0.023851711302995682, 0.03595477342605591, 0.022753044962882996, -0.07329174131155014, 0.006188863422721624, 0.009276649914681911, 0.01360043790191412, -0.04345051944255829, 0.0005053094355389476, 0.005958497989922762, -0.06361638009548187, -0.00385641073808074, 0.013582716695964336, -0.005347142927348614, 0.007021724246442318, 0.02720087580382824, 0.01766727864742279, 0.019262118265032768, -0.043627724051475525, -0.015310459770262241, -0.07190954685211182, 0.02262900210916996, 0.013219447806477547, -0.07995462417602539, -0.03331442549824715, 0.007531187031418085, 0.04986531659960747, 0.0517791248857975, -0.013697899878025055, -0.05387013778090477, -0.00672933692112565, -0.05202721059322357, 0.004669335670769215, 0.009648779407143593, 0.016710374504327774, -0.0020987645257264376, 0.01970512978732586, 0.020910119637846947, -0.016559751704335213, 0.011890415102243423, 0.03164870664477348, -0.016559751704335213, 0.004966153297573328, -0.011908135376870632, 0.039197612553834915, 0.007938756607472897, -0.041678473353385925, 0.002372324001044035, 0.036964837461709976, -0.07945845276117325, -0.01917351596057415, -0.038169827312231064, -0.019102634862065315, 0.07343350350856781, 0.025535153225064278, -0.046640198677778244, 0.01316628698259592, -0.030284231528639793, -0.012289125472307205, 0.02822866104543209, -0.02574779838323593, 0.03863056004047394, -0.002208409830927849, 0.06779840588569641, -0.01167776994407177, 0.061915215104818344, 0.04476183280348778, 0.06957044452428818, -0.000696081027854234, -0.05411822348833084, 0.01687871851027012, 0.008722886443138123, 0.05231073871254921, -0.06273035705089569, 0.061383605003356934, 0.042174648493528366, 0.018482418730854988, 0.027714768424630165, -0.04706548899412155, -0.00842163898050785, 0.017064783722162247, -0.017871063202619553, -0.03760277479887009, 0.08371135592460632, -0.02920328453183174, -0.02140629105269909, -0.018065989017486572, -0.04933370277285576, -0.011943576857447624, 0.010685425251722336, -0.0074647353030741215, -0.057591430842876434, -0.006490110885351896, -0.036858513951301575, 0.02179614081978798, 0.0019747214391827583, 0.0316309854388237, -0.02583640068769455 ]
23,315
parutils.dq
diff_list
null
def diff_list(list1, list2, out_path=''): if not out_path: u.mkdirs(OUT_DIR) out_path = p.join(OUT_DIR, 'file_match_out.csv') out1 = [e for e in list1 if e not in list2] out2 = [e for e in list2 if e not in list1] out = del_dup_list(out1 + out2) u.save_list(out, out_path) u.log(f"Comparison result available here: {out_path}")
(list1, list2, out_path='')
[ 0.03682558983564377, -0.015635695308446884, -0.04954131320118904, 0.01683225855231285, -0.015582118183374405, -0.02428845874965191, -0.03484322130680084, 0.02094879560172558, 0.01452842727303505, 0.05461331456899643, 0.007134734652936459, -0.02900327742099762, 0.003116423496976495, -0.012001356109976768, 0.018252061679959297, -0.04182615503668785, 0.003047219244763255, 0.002480190945789218, 0.00679541053250432, -0.0535774827003479, -0.009304623119533062, 0.02418130449950695, -0.03150355815887451, 0.06982932239770889, -0.008853678591549397, -0.018662823364138603, 0.02659229002892971, -0.019484344869852066, -0.005460438318550587, 0.07779450714588165, -0.0020906380377709866, -0.01243890542536974, -0.001918743597343564, -0.030396291986107826, -0.026020796969532967, 0.011894200928509235, 0.01663580909371376, 0.05186300352215767, -0.04350491613149643, 0.001175355981104076, 0.06779337674379349, -0.039933085441589355, 0.04025454819202423, -0.012733581475913525, 0.04714818671345711, 0.051291510462760925, -0.10144003480672836, 0.009376059286296368, 0.002457867143675685, 0.009626087732613087, 0.046326663345098495, 0.007130269892513752, -0.03607550635933876, 0.053898949176073074, -0.03668271750211716, 0.007795523852109909, 0.019145021215081215, 0.011456651613116264, 0.008398270234465599, -0.003944642376154661, -0.048684071749448776, 0.0013985955156385899, -0.004042867571115494, -0.0031052615959197283, 0.00983146857470274, 0.013867638073861599, -0.06729331612586975, -0.04575517028570175, 0.011688821017742157, 0.03557544946670532, -0.03243223577737808, 0.02137741632759571, -0.012046003714203835, 0.048005424439907074, 0.057149313390254974, 0.05211303010582924, 0.06740047037601471, 0.010992313735187054, -0.015180286951363087, -0.041111789643764496, -0.02664586901664734, -0.021663162857294083, 0.05314886197447777, -0.047112464904785156, 0.04418356344103813, 0.01834135875105858, 0.030396291986107826, 0.02064519003033638, 0.028038883581757545, -0.0005661912146024406, -0.03348592668771744, -0.0017769865226000547, -0.02403843030333519, -0.04704102873802185, 0.014930258505046368, -0.04496936872601509, -0.0732225626707077, -0.012680004350841045, -0.03868294134736061, -0.0059158471412956715, 0.047505367547273636, 0.055863454937934875, 0.017850231379270554, -0.008826890029013157, 0.045683734118938446, -0.05918525904417038, -0.033164460211992264, -0.028681812807917595, 0.02689589560031891, 0.023216908797621727, -0.08986730128526688, -0.00025267922319471836, 0.06975788623094559, -0.019287893548607826, 0.033646658062934875, -0.007616932038217783, -0.02378840185701847, -0.025931501761078835, -0.0034758392721414566, -0.008291115052998066, 0.038361478596925735, 0.043719224631786346, 0.00695614330470562, -0.00004768256621900946, 0.018055612221360207, -0.02880682609975338, 0.07629433274269104, 0.008585792034864426, 0.0038464167155325413, 0.04457646608352661, 0.036200519651174545, -0.007777664810419083, -0.023520514369010925, 0.0457194522023201, 0.02527071349322796, -0.005103255156427622, -0.003759353421628475, 0.017189443111419678, 0.0535774827003479, 0.01876997761428356, 0.0181181188672781, -0.0470053106546402, 0.027985304594039917, 0.040433138608932495, -0.05125579237937927, -0.003636571578681469, -0.04479077458381653, 0.019930822774767876, 0.03253939002752304, 0.043040577322244644, -0.023877698928117752, -0.011903130449354649, -0.04132609814405441, -0.10822651535272598, 0.004371029790490866, -0.0008868189761415124, -0.0470053106546402, -0.011170905083417892, -0.012501413002610207, -0.024734938517212868, 0.03480750322341919, 0.010670849122107029, 0.05018424242734909, 0.05914954096078873, 0.02728879824280739, 0.006112297996878624, -0.012697863392531872, 0.02325262688100338, -0.02928902395069599, -0.02078806422650814, 0.005031818524003029, -0.0151892164722085, 0.04039742052555084, -0.06572171300649643, -0.08472386002540588, 0.0012155391741544008, -0.02039516158401966, -0.01873425953090191, 0.02098451368510723, -0.0040406351909041405, -0.029717644676566124, -0.032271504402160645, -0.0020102718845009804, 0.054541878402233124, 0.008300045505166054, 0.04889838397502899, -0.005259522702544928, -0.0011608455097302794, 0.028485361486673355, 0.006058720406144857, -0.021556006744503975, 0.0017937294906005263, -0.03986164554953575, -0.024074148386716843, -0.0013372047105804086, -0.03387882933020592, -0.04296914115548134, 0.019234316423535347, 0.028342489153146744, -0.007009720895439386, -0.03611122444272041, -0.00036081086727790534, 0.02393127605319023, -0.04589804261922836, 0.08279506862163544, 0.012322820723056793, -0.023163331672549248, -0.0013427856611087918, -0.0001593371998751536, 0.0208952184766531, 0.02944975718855858, -0.002674409421160817, -0.015537469647824764, -0.021716739982366562, 0.020413020625710487, 0.003915620967745781, -0.04282626882195473, -0.028253192082047462, -0.04039742052555084, -0.02639584057033062, 0.03603978827595711, -0.047112464904785156, -0.06815055757761002, 0.04757680371403694, -0.007893749512732029, 0.03603978827595711, 0.02182389423251152, 0.016734033823013306, -0.02830677106976509, -0.011456651613116264, -0.009001017548143864, 0.0023149936459958553, 0.04743393138051033, 0.008625974878668785, -0.04807686060667038, -0.018894992768764496, -0.06300711631774902, 0.00021179848408792168, -0.02571719139814377, 0.002536000916734338, -0.07465129345655441, 0.013653328642249107, 0.09993986785411835, 0.011313778348267078, 0.02841392531991005, -0.04418356344103813, -0.02693161554634571, -0.02959262952208519, 0.016448287293314934, 0.039540182799100876, 0.01017079222947359, 0.009188538417220116, 0.010010059922933578, -0.02653871290385723, 0.024663500487804413, -0.0006658118218183517, -0.07672295719385147, -0.03273584321141243, 0.009518932551145554, -0.01322470884770155, 0.0835808739066124, 0.0013494828017428517, 0.00788035523146391, -0.027270939201116562, -0.028913982212543488, -0.02668158710002899, 0.006509664002805948, 0.048005424439907074, -0.021716739982366562, 0.03164643421769142, 0.06139979511499405, -0.06700757145881653, -0.027699558064341545, 0.008291115052998066, -0.04414784535765648, 0.01643935777246952, 0.03634339198470116, -0.057149313390254974, -0.05275596305727959, -0.009376059286296368, 0.018269922584295273, -0.0007696182001382113, 0.0057952976785600185, 0.011429863050580025, -0.02502068504691124, 0.027145924046635628, -0.024056289345026016, -0.033164460211992264, -0.019145021215081215, -0.0280746016651392, 0.031485699117183685, 0.017466260120272636, 0.0029155081138014793, -0.020270148292183876, -0.029181869700551033, 0.051148638129234314, 0.045255113393068314, -0.05314886197447777, 0.002799423411488533, 0.0640072301030159, -0.06418582797050476, 0.0313606858253479, 0.09472499042749405, -0.011903130449354649, -0.027842432260513306, -0.03125353157520294, -0.004091980401426554, 0.01294789183884859, 0.0035160223487764597, 0.00009097010479308665, -0.017850231379270554, 0.02777099609375, -0.02246682532131672, -0.0006886938936077058, -0.0005558663979172707, 0.00746959401294589, -0.03302158787846565, 0.047112464904785156, -0.012492483481764793, -0.004500508774071932, 0.014948117546737194, 0.019287893548607826, 0.026967333629727364, 0.05318458005785942, 0.014215892180800438, -0.09886831790208817, 0.011072679422795773, 0.03155713900923729, 0.0757228434085846, 0.05786368250846863, -0.031342826783657074, -0.04354063421487808, 0.01820741407573223, -0.005737255327403545, 0.07922323793172836, -0.02802102267742157, 0.05436328426003456, -0.0451122410595417, 0.030699897557497025, 0.02928902395069599, -0.00084942631656304, -0.02294902130961418, 0.0059872837737202644, -0.02752096764743328, -0.023913417011499405, 0.015885723754763603, -0.019341470673680305, 0.0731511265039444, -0.04418356344103813, 0.044862210750579834, 0.008255396969616413, 0.06647180020809174, 0.001775870332494378, 0.07093659043312073, 0.06954357028007507, 0.037325646728277206, -0.07154379785060883, -0.0451122410595417, -0.0017702893819659948, 0.01228710263967514, -0.04911269247531891, 0.021716739982366562, 0.007563354447484016, -0.007036509457975626, 0.025252854451537132, -0.014778455719351768, 0.007947326637804508, -0.04825545474886894, -0.04729105904698372, -0.009152820333838463, -0.07400836050510406, 0.005947100464254618, 0.05557771027088165, -0.07161523401737213, 0.023377642035484314, -0.021663162857294083, -0.019448626786470413, 0.051684413105249405, 0.003940177615731955, 0.05600632727146149, -0.07207957655191422, -0.0008025460410863161, -0.010661918669939041, 0.0014376624021679163, 0.007282072678208351, 0.023270485922694206, -0.0084831016138196, 0.009599299170076847, 0.006884706672281027, 0.02216321788728237, -0.011590595357120037, -0.0015916976844891906, 0.007795523852109909, 0.017189443111419678, -0.00209621898829937, 0.00485322717577219, -0.04196902737021446, 0.02314547263085842, -0.04661241173744202, -0.0036164801567792892, 0.03273584321141243, 0.00488001573830843, -0.061471231281757355, 0.01359082106500864, -0.028253192082047462, -0.00480411434546113, -0.009742172434926033, -0.016064316034317017, -0.005897988099604845, -0.015153498388826847, -0.06097117438912392, -0.04611235484480858, 0.01447485014796257, -0.011349496431648731, -0.024002712219953537, 0.10115429013967514, -0.05875663831830025, -0.010804791934788227, 0.06072114780545235, 0.044862210750579834, 0.017823442816734314, 0.0011485673021525145, 0.061471231281757355, -0.004808579105883837, -0.007134734652936459, -0.054541878402233124, 0.00845631305128336, 0.07765163481235504, -0.041218943893909454, -0.018805695697665215, 0.030289137735962868, -0.01169775053858757, -0.038861535489559174, -0.01876997761428356, 0.04614807292819023, -0.0038263252936303616, 0.06064971163868904, -0.06915067136287689, 0.013081835582852364, 0.06061399355530739, -0.02212749980390072, 0.003694613929837942, 0.04989849403500557, 0.010894088074564934, -0.04189759120345116, 0.015492822043597698, -0.061614103615283966, -0.06586458534002304, 0.05111292004585266, 0.019930822774767876, 0.05307742580771446, 0.01157273631542921, -0.00917067937552929, -0.08593828231096268, 0.038540069013834, -0.04036170244216919, -0.012296032160520554, -0.0021029161289334297, -0.04221905767917633, -0.009643946774303913, 0.09293907135725021, 0.016671527177095413, 0.021752458065748215, 0.01713586412370205, -0.014394483529031277, -0.013394370675086975, -0.007094551809132099, 0.031878601759672165, 0.0398259274661541, 0.02653871290385723, -0.03693274408578873, -0.0810805931687355, -0.052470214664936066, 0.015921441838145256, -0.0112602012231946, 0.010697637684643269, -0.006393579766154289, -0.012715722434222698, -0.007523171603679657, -0.012644286267459393, -0.07207957655191422, -0.05732790753245354, -0.01042082067579031, 0.018805695697665215, 0.0111083984375, -0.051398664712905884, 0.025431444868445396, -0.05711359530687332, -0.013340793550014496, -0.06365004926919937, 0.0005114975501783192, -0.06975788623094559, -0.034575335681438446, -0.07282965630292892, 0.01034938357770443, -0.016903696581721306, -0.02212749980390072, -0.002321691019460559, 0.002160958480089903, -0.012894313782453537, 0.03289657458662987, -0.0068891714327037334, 0.02019871026277542, 0.0037236351054161787, 0.052220188081264496, 0.024199163541197777, 0.01843065395951271, -0.043862100690603256, -0.08515247702598572, -0.031825024634599686, -0.04664812982082367, -0.02103809081017971, 0.04704102873802185, 0.03557544946670532, -0.011545947752892971, 0.021198824048042297, -0.05082717165350914, 0.004808579105883837, 0.03553973138332367, 0.05157725512981415, -0.05275596305727959, 0.014662371017038822, -0.029824798926711082, -0.06915067136287689, -0.01873425953090191, -0.0561492033302784, 0.007099016569554806, 0.03932587429881096, 0.015483892522752285, -0.007715157698839903, -0.07693726569414139, -0.005621171090751886, -0.024788515642285347, -0.08429524302482605, 0.009268904104828835, 0.03466463088989258, 0.01150129921734333, 0.006630213465541601, 0.026949474588036537, 0.018305640667676926, 0.013385441154241562, -0.001369574456475675, 0.0006697185453958809, -0.03646840527653694, -0.05514908954501152, 0.08408092707395554, -0.052077312022447586, 0.022145358845591545, -0.011170905083417892, 0.049719903618097305, 0.015546400099992752, -0.04211190342903137, 0.01182276476174593, -0.03500395640730858, -0.0323786586523056, 0.036539845168590546, 0.026628008112311363, 0.021341698244214058, 0.04689815640449524, -0.0063310726545751095, 0.024074148386716843, -0.0018238668562844396, -0.03557544946670532, 0.020573753863573074, 0.019198598340153694, -0.014439132064580917, -0.011028031818568707, -0.0007059949566610157, -0.037325646728277206, 0.013680117204785347, 0.02202034555375576, 0.04407640919089317, 0.007192777004092932, -0.06932926177978516, -0.01725194975733757, -0.007688368670642376, 0.017716288566589355, -0.0026654796674847603, 0.02235966920852661, -0.04804114252328873, -0.02019871026277542, 0.03321804106235504, 0.0015057504642754793, -0.03968305513262749, 0.039790209382772446, -0.014189103618264198, -0.036004070192575455, -0.03180716559290886, 0.05211303010582924, 0.04236193001270294, -0.024609923362731934, 0.00021723995450884104, 0.000586003705393523, -0.012805018573999405, -0.03811144828796387, 0.002173236571252346, -0.017823442816734314, 0.0057729738764464855, -0.021591724827885628, 0.007710692938417196, 0.04596947878599167, -0.03023555874824524, 0.02468136139214039, -0.05918525904417038, 0.030985644087195396, -0.03346806764602661, -0.03564688563346863, -0.11201265454292297, -0.018135977908968925, 0.07365117967128754, 0.028092460706830025, 0.0770087018609047, -0.007527636364102364, -0.08058053255081177, 0.028913982212543488, 0.0029579235706478357, 0.01853780820965767, 0.012072793208062649, -0.002323923399671912, 0.056899286806583405, -0.013948004692792892, 0.02530643157660961, 0.048826947808265686, -0.009206397458910942, 0.003685684408992529, 0.03721849247813225, -0.024949247017502785, 0.06640036404132843, 0.04286198690533638, 0.008246467448771, 0.005482762586325407, -0.03739708289504051, 0.020073696970939636, 0.026413699612021446, -0.00844291877001524, -0.015019554644823074, -0.012171017937362194, -0.07872318476438522, -0.000695949187502265, 0.016653668135404587, 0.02462778240442276, -0.010536905378103256, -0.005420255474746227, 0.007076692767441273, -0.040290266275405884, -0.01541245635598898, -0.017269808799028397, -0.037432800978422165, 0.04689815640449524, 0.02457420527935028, 0.00631767837330699, 0.08308081328868866, -0.008518819697201252, 0.013867638073861599, -0.036307673901319504, -0.006764157209545374, -0.018555669113993645, 0.006715044379234314, 0.0333251953125, -0.0009309087763540447, 0.005339889321476221, 0.004701423924416304, 0.0181181188672781, -0.011617383919656277, 0.005415790714323521, 0.019145021215081215, 0.07936611026525497, 0.028199614956974983, -0.026324402540922165, 0.005956029985100031, -0.015698201954364777, -0.01725194975733757, 0.027485249564051628, 0.05432756617665291, -0.045147959142923355, -0.04457646608352661, -0.015894653275609016, 0.0627213716506958, -0.004408980254083872, 0.020091556012630463, 0.013305074535310268, 0.011938849464058876, 0.015421385876834393, -0.021109528839588165, -0.013081835582852364, 0.09858256578445435, 0.006000678054988384, 0.00209287041798234, 0.001683225971646607, 0.02811031974852085, -0.06415010988712311, -0.06440013647079468, -0.008224143646657467, -0.019180739298462868, 0.007045438978821039, 0.028199614956974983, 0.0011334986193105578, -0.009340341202914715, -0.05275596305727959, 0.030682038515806198, -0.042647674679756165, -0.0016341132577508688, 0.028574656695127487, 0.04482649266719818, 0.04032598435878754, -0.018135977908968925, -0.02527071349322796, -0.00280835316516459, -0.0215738657861948, -0.04339776188135147, 0.00423485366627574, -0.003565134946256876, 0.06697185337543488, 0.010795862413942814, -0.01167096197605133, -0.029949812218546867, 0.02232395112514496, -0.006125692278146744, 0.048005424439907074, -0.0219131913036108, -0.009920763783156872, 0.0038330224342644215, 0.038718659430742264, -0.012572849169373512, -0.026485135778784752, -0.02173459902405739, -0.012733581475913525, -0.0600782185792923, -0.005143438465893269, 0.03800429403781891, -0.03675415366888046, 0.07068655639886856, -0.012099581770598888, 0.01862710528075695, 0.020609471946954727, -0.04596947878599167, -0.01775200664997101, -0.03236079961061478, 0.033396631479263306, 0.05072001740336418, 0.017519837245345116, -0.02260969765484333, 0.03382525220513344, 0.061078332364559174, -0.02625296637415886, -0.012724651955068111, 0.050755735486745834, 0.01632327400147915, -0.03259296715259552, -0.04432643577456474, 0.0010910831624642015, -0.06700757145881653, -0.027931727468967438, 0.022573979571461678, 0.06782909482717514, 0.054934777319431305, 0.05800655484199524, -0.05907810479402542, -0.01775200664997101, -0.03391454741358757, 0.08472386002540588, 0.0757228434085846, -0.009777890518307686, 0.03518254682421684, 0.015358878299593925, 0.05422041192650795, -0.019055724143981934, 0.04132609814405441 ]
23,317
parutils.strg
extend_str
Extends the string 'str_in' to the length 'length' with the given 'char'
def extend_str(str_in, char, length, left=False): """Extends the string 'str_in' to the length 'length' with the given 'char'""" s = str(str_in) while len(s) < length: s = char + s if left else s + char return s
(str_in, char, length, left=False)
[ -0.04575422778725624, 0.027613939717411995, -0.007763131521642208, 0.049052461981773376, 0.030578842386603355, 0.003771916963160038, 0.01817537657916546, 0.004960509482771158, 0.05971909314393997, -0.06831555813550949, 0.031192876398563385, 0.00041940645314753056, 0.014692932367324829, 0.06421030312776566, 0.004649106878787279, -0.03419286385178566, -0.03838583454489708, -0.01461398508399725, 0.029806915670633316, 0.011991186998784542, 0.0448419526219368, 0.019947299733757973, 0.06035067141056061, 0.017578886821866035, -0.025403421372175217, 0.10603472590446472, 0.05140333250164986, 0.005385946482419968, 0.010131544433534145, 0.01499994844198227, 0.06838572770357132, -0.02399991825222969, 0.023122727870941162, -0.018456077203154564, 0.029456039890646935, -0.01580696366727352, 0.013543813489377499, -0.037227943539619446, 0.00675436295568943, 0.03729811683297157, -0.0883505716919899, -0.010780665092170238, 0.016456084325909615, -0.0252279844135046, 0.024894651025533676, -0.016561346128582954, 0.011824521236121655, 0.01313153374940157, 0.0523156113922596, 0.007188572082668543, 0.06526293605566025, 0.02957884594798088, -0.015359596349298954, -0.05056123062968254, 0.024999914690852165, 0.02349114790558815, -0.04666650667786598, 0.051508594304323196, 0.015692928805947304, -0.02378939278423786, 0.02640341781079769, -0.017728010192513466, 0.0019725810270756483, -0.05119280889630318, -0.00010464602382853627, 0.016289418563246727, 0.008969267830252647, -0.024087637662887573, 0.07136818021535873, 0.008399094454944134, 0.01571924425661564, 0.06628047674894333, 0.006276294123381376, -0.04642089456319809, -0.056420858949422836, 0.030017441138625145, -0.0592629536986351, -0.006425416562706232, 0.01970168761909008, -0.02533324621617794, 0.03117533214390278, -0.05052614212036133, 0.017482396215200424, 0.0400349497795105, 0.021315716207027435, 0.004285072907805443, -0.10350842028856277, -0.05175421014428139, 0.0107455775141716, -0.01079820841550827, 0.011508732102811337, -0.0014824511017650366, 0.013552584685385227, -0.019175373017787933, -0.0033311289735138416, -0.005894716829061508, 0.0003475865232758224, 0.013298200443387032, 0.015245561487972736, -0.007298220414668322, -0.046245455741882324, 0.026280611753463745, -0.028438499197363853, 0.012499957345426083, -0.008052604272961617, -0.05277175083756447, 0.006219277158379555, -0.04242090880870819, 0.03645601496100426, -0.018105201423168182, 0.002611833158880472, -0.06256119161844254, 0.0015953892143443227, -0.06238575279712677, -0.02957884594798088, 0.046034928411245346, -0.007368396036326885, 0.015447315759956837, 0.02973674051463604, -0.04115775227546692, 0.0477893091738224, -0.042245469987392426, 0.0068069943226873875, -0.04508756473660469, 0.06526293605566025, 0.05705243721604347, -0.060982245951890945, -0.004333318676799536, 0.047368258237838745, -0.07305238395929337, 0.0025701667182147503, 0.06305241584777832, 0.013421006500720978, -0.025508685037493706, -0.004168845247477293, -0.024754300713539124, -0.062210313975811005, 0.10168386250734329, -0.008736812509596348, -0.0007225852459669113, -0.021894661709666252, -0.009552598930895329, 0.06217522546648979, 0.04305248335003853, -0.04487703740596771, 0.006657871883362532, -0.010499964468181133, -0.005416647996753454, 0.021771855652332306, 0.04294722154736519, 0.029263056814670563, 0.02861393615603447, -0.0007955016335472465, 0.0389823243021965, 0.008684180676937103, -0.035806894302368164, -0.0019177566282451153, -0.011491188779473305, 0.07228045165538788, -0.0345788300037384, -0.02349114790558815, 0.012447325512766838, -0.06694713979959488, 0.008153480477631092, 0.0056447177194058895, -0.054175253957509995, 0.007214887533336878, 0.00291007780469954, 0.027508677914738655, 0.008333304896950722, 0.03863144665956497, -0.011745573952794075, 0.0859646201133728, -0.0036359524819999933, -0.02661394327878952, 0.0355086512863636, -0.024999914690852165, 0.006657871883362532, -0.007986814714968204, -0.079017274081707, 0.00908768828958273, -0.018806952983140945, 0.008407865650951862, -0.0053947181440889835, -0.0011080006370320916, -0.026473592966794968, -0.017885902896523476, 0.056069985032081604, 0.003230252070352435, -0.05347350239753723, -0.04694720730185509, -0.023175358772277832, -0.03210515156388283, -0.05870155245065689, -0.039333198219537735, 0.026017455384135246, 0.013482409529387951, 0.025982366874814034, -0.05614015832543373, 0.06736818701028824, -0.09206985682249069, 0.05175421014428139, -0.004293845035135746, -0.05431560426950455, 0.02538587711751461, 0.009543826803565025, -0.025631491094827652, -0.011491188779473305, -0.07887692004442215, -0.04842088744044304, -0.011815749108791351, -0.003361830487847328, 0.07084186375141144, -0.030877087265253067, 0.0008870583842508495, -0.03926302492618561, -0.060771722346544266, 0.033806901425123215, 0.032368309795856476, -0.027877097949385643, -0.022701676934957504, -0.01580696366727352, 0.023508692160248756, -0.01517538633197546, 0.016675380989909172, -0.0005430353921838105, -0.05185947194695473, 0.0035591982305049896, 0.008017516694962978, 0.041227929294109344, 0.01964905485510826, -0.0010926497634500265, 0.010403472930192947, 0.0011447329306975007, 0.0536489374935627, -0.04017530009150505, 0.014184162020683289, -0.024035004898905754, 0.026596400886774063, -0.021824486553668976, -0.016052575781941414, 0.04764895886182785, 0.0018640287453308702, 0.001848677871748805, -0.007298220414668322, 0.006675415672361851, -0.03589461371302605, 0.050841931253671646, -0.026491137221455574, -0.00009628530824556947, -0.00501752644777298, 0.01317539345473051, -0.05582436919212341, 0.03849109634757042, -0.030333230271935463, 0.06371907889842987, 0.002131571527570486, -0.010754348710179329, -0.0001044404343701899, -0.02077185921370983, -0.000990128144621849, 0.0018815725343301892, -0.04810509830713272, -0.023771848529577255, 0.0003174331213813275, -0.03545602038502693, -0.010973646305501461, -0.017649061977863312, 0.018385902047157288, -0.01842098869383335, 0.04733316972851753, 0.013228025287389755, 0.03464900329709053, 0.015333280898630619, -0.009052600711584091, 0.06831555813550949, -0.014605212956666946, 0.025771841406822205, 0.042455993592739105, -0.05389455333352089, -0.0010405665962025523, 0.02114027924835682, -0.04975421726703644, 0.016675380989909172, -0.056069985032081604, -0.012543817050755024, 0.05199982225894928, -0.012482413090765476, 0.02963147684931755, 0.03473672270774841, 0.022912202402949333, 0.03845600783824921, -0.020806945860385895, 0.015999944880604744, -0.006469276268035173, -0.02338588424026966, 0.03478935360908508, 0.012228027917444706, 0.05347350239753723, -0.0019670985639095306, -0.02164904773235321, 0.002710517030209303, -0.056385770440101624, -0.0084429532289505, 0.01066663023084402, -0.08603478968143463, -0.009333301335573196, -0.03614022582769394, -0.010377157479524612, 0.002710517030209303, -0.057192787528038025, -0.011473644524812698, -0.009210494346916676, 0.009798211976885796, 0.027859553694725037, 0.05210508406162262, -0.012113993987441063, 0.005008754786103964, 0.00021833807113580406, 0.04396476224064827, 0.005114017520099878, -0.012929780408740044, -0.025210440158843994, 0.03343848139047623, -0.002442974131554365, 0.029929721727967262, 0.038105133920907974, 0.08077165484428406, 0.03168410062789917, -0.030929718166589737, -0.0525963120162487, -0.027806922793388367, 0.021666591987013817, -0.039333198219537735, -0.07859621942043304, 0.002800429007038474, 0.03024551086127758, -0.004894719924777746, -0.049157727509737015, 0.049262989312410355, 0.06863134354352951, 0.051052454859018326, -0.002673236420378089, -0.00892979372292757, 0.029210425913333893, -0.03663145378232002, 0.02343851700425148, 0.0038771796971559525, 0.010114000178873539, -0.029666565358638763, -0.03828056901693344, -0.03080691210925579, 0.031192876398563385, -0.07557868957519531, 0.06870152056217194, 0.0035745492205023766, 0.003956126980483532, 0.055298056453466415, -0.004833316896110773, -0.018824497237801552, 0.024140268564224243, -0.029561301693320274, 0.014122758992016315, 0.013526269234716892, -0.08638566732406616, 0.025192895904183388, -0.020842034369707108, -0.0031666557770222425, -0.012859605252742767, 0.0214911550283432, 0.024122724309563637, -0.026280611753463745, -0.017684150487184525, -0.034877073019742966, 0.005456121638417244, 0.014973632991313934, -0.06438574194908142, -0.016763100400567055, -0.03828056901693344, -0.04375423491001129, 0.004311388824135065, -0.001085522584617138, -0.03117533214390278, 0.0003382663708180189, 0.022912202402949333, -0.0046008615754544735, 0.000549614371266216, -0.016105208545923233, 0.04733316972851753, 0.03401742875576019, -0.021350804716348648, -0.014692932367324829, 0.014342055656015873, 0.0731225535273552, -0.041648980230093, -0.011780661530792713, -0.055298056453466415, -0.04340336099267006, 0.027456047013401985, 0.03596479073166847, 0.021070104092359543, 0.009780668653547764, 0.05326297506690025, 0.06624538451433182, 0.004578931722790003, 0.06933309882879257, 0.008434182032942772, -0.00998242199420929, -0.006175417453050613, 0.04319283366203308, -0.034666549414396286, -0.00762716680765152, -0.03271918743848801, -0.016210470348596573, 0.030105160549283028, -0.040666528046131134, 0.04105249047279358, -0.03908758610486984, 0.026526225730776787, 0.0028333235532045364, -0.014157846570014954, -0.06568398326635361, -0.004243406467139721, 0.03807004541158676, -0.0597892701625824, 0.010964875109493732, 0.013842057436704636, 0.02952621504664421, -0.06498223543167114, 0.008714882656931877, -0.0022499922197312117, 0.021315716207027435, 0.006083312444388866, -0.021842030808329582, 0.03045603632926941, -0.00785962212830782, 0.061192773282527924, 0.017008714377880096, 0.012859605252742767, 0.009666633792221546, 0.03691215440630913, 0.022649046033620834, 0.003861828939989209, 0.07326290756464005, 0.03029814176261425, 0.007412255275994539, -0.016184154897928238, 0.012578904628753662, -0.008175410330295563, 0.008153480477631092, 0.017842045053839684, 0.01586836576461792, -0.004991210997104645, 0.06515767425298691, -0.016754329204559326, -0.06905239820480347, 0.007087694946676493, -0.038315657526254654, -0.06052611023187637, 0.047719135880470276, -0.06821028888225555, 0.05021035298705101, -0.06126294657588005, 0.04305248335003853, -0.015192930586636066, 0.1086312085390091, 0.007429799064993858, 0.0025285000447183847, -0.0635436400771141, 0.052175261080265045, -0.003923232201486826, -0.012368378229439259, 0.001047693775035441, -0.008973653428256512, 0.06294715404510498, -0.021736767143011093, -0.009350845590233803, 0.005785068031400442, 0.024631494656205177, -0.004421037621796131, -0.05442086607217789, -0.008008744567632675, -0.013657848350703716, 0.01796485111117363, 0.016105208545923233, -0.014061355032026768, 0.016184154897928238, 0.038877058774232864, -0.032368309795856476, 0.06466644257307053, -0.011806976981461048, 0.06277171522378922, -0.029210425913333893, 0.03761390596628189, 0.017692921683192253, 0.016508715227246284, -0.0055789281614124775, 0.0033201640471816063, -0.00030591999529860914, 0.02031571976840496, -0.012061362154781818, 0.02359640970826149, -0.010447332635521889, 0.01964905485510826, 0.031087612733244896, 0.08954355120658875, -0.079017274081707, 0.004484633915126324, -0.014017496258020401, 0.009991194121539593, -0.017438536509871483, -0.009035056456923485, 0.05452612787485123, -0.02261395752429962, 0.006925414782017469, 0.015210473909974098, 0.03747355565428734, 0.022999921813607216, 0.020140280947089195, -0.059648919850587845, 0.010947330854833126, -0.0004407879605423659, -0.00951751135289669, -0.04607001692056656, 0.0013563550310209394, -0.02447360008955002, 0.055298056453466415, -0.004421037621796131, -0.042245469987392426, 0.01356135681271553, -0.05905243009328842, 0.07256115227937698, -0.002184203127399087, 0.008302602916955948, 0.0033925322350114584, 0.004548230208456516, -0.009254354052245617, -0.015280649065971375, 0.01914028450846672, -0.004811387043446302, 0.002020826330408454, -0.03291216865181923, 0.07712253928184509, -0.07578921318054199, -0.06161382421851158, 0.02912270650267601, 0.013043815270066261, -0.005491209216415882, 0.060420844703912735, -0.012789430096745491, -0.09059618413448334, -0.011491188779473305, -0.0360349640250206, 0.09178915619850159, 0.01325434073805809, -0.042245469987392426, -0.06431557238101959, -0.040350738912820816, -0.042350731790065765, 0.04894720017910004, 0.041789330542087555, -0.03212269768118858, 0.013140305876731873, -0.01118417177349329, -0.02394728548824787, 0.011289435438811779, -0.016719240695238113, -0.005421034060418606, -0.01669292524456978, 0.006605240516364574, 0.013710479252040386, 0.03189462795853615, -0.05024544149637222, -0.032210417091846466, -0.07319273054599762, -0.03342093899846077, -0.03475426509976387, -0.02471921406686306, 0.0451226532459259, 0.077964648604393, -0.03908758610486984, -0.025298159569501877, -0.009122775867581367, 0.031140243634581566, 0.029315689578652382, -0.03401742875576019, -0.003999986220151186, 0.03652619197964668, -0.03410514444112778, 0.003552619367837906, 0.05912260338664055, -0.026894643902778625, 0.045157741755247116, -0.025263071060180664, 0.004618405364453793, -0.014833282679319382, -0.028210429474711418, -0.023298166692256927, -0.02047361433506012, -0.00310305948369205, 0.010184175334870815, 0.012131537310779095, -0.0329647995531559, 0.04908755049109459, 0.02199992537498474, 0.06263136118650436, -0.00507892994210124, 0.09256108850240707, -0.06628047674894333, -0.026999907568097115, 0.01550871878862381, 0.023631498217582703, -0.04140336811542511, -0.02266658842563629, -0.03485953062772751, -0.018964847549796104, -0.015570121817290783, -0.060210321098566055, 0.04561387747526169, -0.027140257880091667, -0.021227996796369553, 0.11592942476272583, -0.054841917008161545, -0.0002483544230926782, -0.015692928805947304, 0.0007319053984247148, 0.017622746527194977, 0.0252279844135046, -0.004421037621796131, -0.07452606409788132, -0.02584201656281948, 0.0016107400879263878, 0.00951751135289669, -0.02866656892001629, -0.012008730322122574, -0.025684121996164322, -0.010333297774195671, -0.015842050313949585, -0.028227973729372025, 0.03975424915552139, 0.04028056189417839, -0.04543844237923622, -0.038666535168886185, -0.03178936615586281, -0.019368354231119156, 0.028736744076013565, 0.0469822958111763, 0.014219249598681927, -0.1465258151292801, -0.0774032399058342, 0.02047361433506012, 0.0107455775141716, 0.030771823599934578, -0.01703502982854843, 0.03571917489171028, 0.0003251085290685296, 0.043789323419332504, -0.043368272483348846, 0.040912140160799026, -0.02384202368557453, 0.06049102172255516, -0.062210313975811005, 0.05221034586429596, 0.013043815270066261, -0.005692963022738695, -0.01964905485510826, -0.002745604608207941, -0.019105197861790657, 0.013806969858705997, -0.0006332215270958841, 0.011166628450155258, -0.031052526086568832, -0.03491216152906418, -0.030315686017274857, 0.04985947906970978, -0.06319276243448257, 0.02631569840013981, -0.012403465807437897, 0.03373672813177109, 0.0073289223946630955, -0.0013333287788555026, 0.030368316918611526, 0.011999959126114845, -0.07333308458328247, 0.03398234024643898, 0.016824504360556602, 0.02298237755894661, -0.04161389172077179, 0.03219287097454071, -0.022508695721626282, 0.01940344274044037, -0.023105183616280556, -0.022403432056307793, -0.04929807782173157, 0.02087712101638317, -0.033649008721113205, -0.03694724291563034, -0.015342053025960922, -0.009421020746231079, -0.03401742875576019, 0.06178926303982735, 0.04340336099267006, -0.010605227202177048, 0.0261578056961298, 0.0624559260904789, -0.0387016199529171, -0.01903502270579338, -0.03835074603557587, 0.004177617374807596, -0.009421020746231079, 0.007820148952305317, 0.05943839251995087, -0.002807007869705558, -0.025806929916143417, 0.026385875418782234, -0.04807000979781151, 0.0049648950807750225, -0.025157809257507324, -0.03321041166782379, 0.07305238395929337, -0.003171041840687394, -0.03894723579287529, 0.03807004541158676, -0.025824472308158875, -0.014377144165337086, -0.07445588707923889, -0.010026281699538231, 0.044245462864637375, -0.03096480667591095, 0.042561259120702744, -0.048175275325775146, -0.0015087667852640152, 0.04456125199794769, 0.03894723579287529, 0.025192895904183388, 0.008758742362260818, -0.06161382421851158, 0.02261395752429962, -0.024122724309563637, -0.023017464205622673, 0.04733316972851753, 0.017842045053839684, 0.004745597951114178, -0.011377153918147087, 0.009122775867581367, -0.008535058237612247, 0.02912270650267601, 0.012061362154781818, -0.04975421726703644, 0.011780661530792713, 0.013447321951389313, 0.02578938566148281, -0.061438385397195816, 0.016254330053925514, 0.03168410062789917, 0.03161392733454704, -0.05368402600288391, 0.03940337523818016, -0.009473651647567749, -0.02984200231730938, -0.04364897310733795, -0.03403497114777565, 0.032824449241161346, 0.01402626745402813, 0.005491209216415882, 0.05133315920829773, 0.03080691210925579, 0.011885924264788628 ]
23,319
parutils.dq
file_match
Compares two files and outputs the diff if the files don't match. Note that the files are sorted before comparison. - del_dup: if true, duplicates are deleted before comparison - err: if True, an exception is raised when the files don't match - out_path: specifies an output path for file comparison different from default
import os.path as p import parutils as u from . import wrap OUT_DIR = 'out' @wrap.simple def file_match(in1, in2, del_dup=False, err=True, out_path=''): """Compares two files and outputs the diff if the files don't match. Note that the files are sorted before comparison. - del_dup: if true, duplicates are deleted before comparison - err: if True, an exception is raised when the files don't match - out_path: specifies an output path for file comparison different from default """ s = f"Comparing files '{in1}' and '{in2}'..." u.log(s) l1, l2 = u.load_txt(in1), u.load_txt(in2) l1.sort(), l2.sort() if del_dup: l1, l2 = del_dup_list(l1), del_dup_list(l2) res = l1 == l2 s = "Files match" if res else "Files don't match" u.log(s) if not res: diff_list(l1, l2, out_path) if err: raise Exception(s)
(in1, in2, del_dup=False, err=True, out_path='')
[ 0.044912293553352356, -0.04885729402303696, -0.028923669829964638, 0.06698911637067795, -0.035448089241981506, -0.008809865452349186, -0.005689902231097221, 0.0023458991199731827, -0.02740636095404625, -0.021849224343895912, 0.010734948329627514, -0.020825041458010674, -0.0003846610779874027, -0.00913703441619873, -0.025035569444298744, -0.03726885840296745, 0.038236141204833984, 0.05329541489481926, 0.010858230292797089, 0.0069559053517878056, 0.005599812138825655, 0.07199622690677643, -0.019089622423052788, 0.05158844590187073, 0.010829780250787735, -0.004926506895571947, 0.024466579779982567, -0.04954008013010025, -0.0070080626755952835, 0.012309154495596886, -0.013731630519032478, 0.003963964991271496, 0.00907539390027523, -0.005889048799872398, -0.04134662076830864, -0.01132290530949831, 0.020578479394316673, 0.0710858404636383, -0.06839262694120407, -0.04513989016413689, 0.029530592262744904, -0.041194889694452286, 0.05253676325082779, -0.014841161668300629, 0.0051635862328112125, 0.06027502939105034, -0.06038882955908775, -0.009634900838136673, -0.011910861358046532, 0.015922242775559425, 0.08815555274486542, -0.02412518486380577, -0.014367002993822098, 0.011920345015823841, -0.03840683773159981, 0.05993363633751869, -0.0013762450544163585, 0.0388430655002594, 0.015097207389771938, -0.031009966507554054, 0.020047422498464584, -0.02368895895779133, 0.012954010628163815, 0.03751542046666145, -0.01318160630762577, -0.0056567108258605, -0.014499767683446407, -0.06239926069974899, -0.019118070602416992, 0.03533429279923439, -0.06395450234413147, -0.00996681209653616, -0.0012292559258639812, -0.0028425802011042833, 0.06406829506158829, 0.06300618499517441, 0.008340448141098022, 0.018833575770258904, 0.04957801476120949, -0.031465157866477966, -0.016756761819124222, -0.019800858572125435, 0.04366051405668259, -0.0308582354336977, -0.00939308013767004, 0.034499771893024445, 0.05674729123711586, -0.04005691036581993, 0.05375060811638832, 0.009326698258519173, -0.06573733687400818, 0.03377905115485191, 0.024087252095341682, 0.015694646164774895, 0.01518255565315485, -0.027956385165452957, 0.012726414017379284, -0.008591752499341965, -0.030213380232453346, -0.037477489560842514, 0.006960646715015173, 0.029265062883496284, -0.004675203002989292, -0.030251313000917435, 0.08223804831504822, -0.05507825314998627, -0.0196680948138237, -0.004310100805014372, 0.010782364755868912, 0.00846847053617239, -0.08094833791255951, -0.05469892546534538, -0.015315319411456585, 0.00554765434935689, 0.02640114538371563, -0.01783784292638302, -0.008425796404480934, -0.015324803069233894, -0.04354671761393547, -0.040701765567064285, 0.048174504190683365, 0.03956378623843193, -0.02317686751484871, -0.02114746905863285, 0.04976767674088478, -0.09483170509338379, 0.06224752962589264, 0.018833575770258904, 0.00996681209653616, 0.05595070496201515, 0.039753448218107224, -0.001051446539349854, -0.005775250494480133, 0.017098156735301018, -0.016235187649726868, 0.007434805389493704, -0.009127551689743996, 0.058378394693136215, 0.006225701421499252, 0.007567569613456726, 0.0487055629491806, -0.05758180841803551, 0.0012114749988541007, 0.014480801299214363, -0.013579899445176125, -0.02535799704492092, 0.005983880255371332, -0.048667628318071365, 0.04312945902347565, 0.08208632469177246, -0.011654816567897797, -0.023461362347006798, -0.007927929982542992, -0.02835467830300331, 0.04149835184216499, -0.015941208228468895, 0.009611193090677261, -0.041194889694452286, -0.024789007380604744, -0.04210527613759041, 0.05352301150560379, -0.011986726894974709, 0.011057376861572266, 0.06285445392131805, 0.021963022649288177, 0.015979140996932983, -0.01593172550201416, 0.052916090935468674, -0.004416786599904299, -0.011986726894974709, 0.001648886245675385, -0.0003476174606475979, -0.026837371289730072, -0.03506876155734062, -0.024087252095341682, 0.01938359998166561, -0.003942627925425768, -0.009568518958985806, 0.023271700367331505, -0.016102423891425133, -0.03793267905712128, -0.022550979629158974, 0.03804647922515869, 0.04601234197616577, 0.01021337416023016, 0.08944526314735413, -0.002823613816872239, -0.00971076637506485, 0.027273597195744514, -0.04472263157367706, -0.020730210468173027, 0.008212425746023655, -0.022740641608834267, 0.023518262431025505, -0.018605979159474373, -0.003532480914145708, -0.03205311670899391, 0.037705086171627045, 0.05048839747905731, -0.01572309620678425, -0.01806543953716755, -0.030308211222290993, 0.024295881390571594, 0.01046941988170147, 0.03724989295005798, 0.0003043504839297384, 0.017050739377737045, 0.0487055629491806, -0.05841632932424545, 0.02833571285009384, 0.012631583027541637, -0.088534876704216, -0.014660981483757496, -0.01669037900865078, 0.04134662076830864, 0.03510669618844986, 0.027008067816495895, 0.03231864422559738, -0.04513989016413689, 0.008809865452349186, 0.06133714318275452, 0.004084875341504812, -0.015154105611145496, 0.05147464945912361, 0.0427880622446537, 0.016491232439875603, 0.07161690294742584, 0.0617164708673954, -0.005704126786440611, -0.011266006156802177, 0.024447612464427948, -0.04680892825126648, 0.0418018139898777, 0.030573740601539612, -0.032015182077884674, -0.07214795798063278, -0.006405881606042385, 0.000546467665117234, -0.03827407583594322, 0.0003710290475282818, -0.02958749048411846, 0.02490280568599701, 0.02662874199450016, -0.0012743009719997644, 0.03064960613846779, -0.07897584140300751, -0.0015184925869107246, -0.03063063882291317, -0.001776908989995718, 0.03603604808449745, 0.029302995651960373, -0.006377432029694319, -0.026571843773126602, -0.023044103756546974, 0.03008061647415161, -0.0022712191566824913, -0.05010906979441643, -0.05048839747905731, 0.03880513086915016, 0.03537222370505333, 0.0513608492910862, 0.015865344554185867, 0.0070934114046394825, -0.03008061647415161, -0.01633950136601925, -0.04134662076830864, -0.00404457189142704, 0.011360838077962399, -0.04165008291602135, -0.013902327045798302, 0.1079564094543457, -0.028582274913787842, -0.03910859301686287, 0.0371171273291111, -0.0671408474445343, 0.02566145919263363, 0.008103368803858757, -0.0278994869440794, 0.0661545917391777, 0.021299200132489204, 0.005542912986129522, 0.016235187649726868, -0.054129935801029205, -0.025585593655705452, -0.027178766205906868, 0.01572309620678425, -0.03558085486292839, -0.06759604066610336, -0.06505455076694489, -0.004585112910717726, 0.004625416360795498, -0.004442865028977394, 0.022797541692852974, -0.047150321304798126, -0.05792320519685745, 0.05868185684084892, -0.02492177113890648, -0.0842864140868187, 0.033760085701942444, -0.014585115946829319, -0.0833001658320427, -0.0002638988371472806, 0.05769560858607292, -0.03188241645693779, -0.06588906794786453, -0.009336180984973907, -0.024542445316910744, -0.035504989326000214, -0.028221914544701576, -0.024770040065050125, -0.013257471844553947, 0.0301185492426157, 0.023802757263183594, -0.025073502212762833, 0.0020246568601578474, 0.03108583204448223, -0.0074063558131456375, 0.04028450697660446, 0.003926032688468695, -0.010156475007534027, -0.03009958192706108, 0.05299195647239685, -0.014632531441748142, 0.07093410938978195, 0.04403984174132347, -0.08003795892000198, 0.02239924855530262, -0.017648179084062576, 0.05534378066658974, 0.04787104204297066, -0.01467994786798954, 0.022228550165891647, 0.017098156735301018, 0.023082036525011063, -0.01467046421021223, 0.020085355266928673, 0.00995732843875885, -0.05705075338482857, 0.05651969462633133, 0.023556195199489594, 0.052347101271152496, -0.016149839386343956, -0.04453296586871147, -0.052347101271152496, -0.024049319326877594, -0.01258416660130024, 0.0020554771181195974, 0.038008544594049454, 0.004684686195105314, -0.034234244376420975, 0.04752964898943901, 0.06069228798151016, -0.008610718883574009, 0.025054534897208214, 0.025187300518155098, 0.04165008291602135, -0.04028450697660446, -0.04039830341935158, 0.006334757898002863, 0.014945476315915585, 0.004630157724022865, 0.027728790417313576, -0.02642011269927025, -0.02215268462896347, 0.029473692178726196, -0.03907066211104393, 0.017999056726694107, -0.029549557715654373, -0.05807493254542351, 0.01728781871497631, -0.03664296865463257, 0.006989096291363239, 0.03630157560110092, -0.1145566925406456, 0.00629208330065012, -0.01605500653386116, -0.005685160402208567, -0.006917972583323717, -0.007908963598310947, 0.02439071424305439, -0.03463253751397133, 0.04881935939192772, 0.01596965827047825, 0.020597444847226143, -0.05101945623755455, -0.010915128514170647, -0.006789949722588062, 0.007335232105106115, 0.04191561043262482, 0.0356377549469471, -0.002206022385507822, 0.009625418111681938, 0.005372215993702412, 0.006500713061541319, -0.013854911550879478, -0.03385491669178009, -0.007610244210809469, 0.028316745534539223, -0.08747275918722153, -0.04422950744628906, 0.011730681173503399, -0.007648176979273558, -0.052916090935468674, 0.03910859301686287, -0.028316745534539223, 0.0008451875182799995, 0.06315791606903076, 0.02966335602104664, -0.0009483169997110963, 0.018956856802105904, -0.05155051499605179, -0.05454719439148903, 0.0021017075050622225, -0.026989102363586426, -0.0656614676117897, 0.034272175282239914, -0.042636334896087646, -0.005310575477778912, 0.034499771893024445, 0.01454718317836523, 0.016538647934794426, -0.01915600337088108, 0.04275013133883476, 0.006225701421499252, 0.0779895931482315, -0.05375060811638832, 0.005125653464347124, 0.004954956471920013, -0.026458045467734337, -0.03929825872182846, -0.03178758546710014, 0.013807496055960655, -0.017221437767148018, -0.007889997214078903, 0.04400191083550453, -0.012375537306070328, 0.035732585936784744, -0.03827407583594322, 0.04309152439236641, 0.03713609278202057, 0.008852539584040642, 0.025452828034758568, 0.0062114764004945755, -0.01850166544318199, -0.07089617848396301, -0.007045995444059372, -0.046202003955841064, -0.02467520907521248, -0.022304415702819824, 0.025263166055083275, 0.014992891810834408, 0.04183974862098694, -0.012508301064372063, -0.0666477233171463, 0.019990522414445877, -0.04502609372138977, -0.013579899445176125, 0.0007491704309359193, -0.05841632932424545, 0.00249170302413404, 0.046619266271591187, 0.024599343538284302, 0.09574208408594131, -0.0074063558131456375, -0.0037292565684765577, -0.04605027288198471, 0.013911810703575611, 0.03334282711148262, -0.02137506566941738, -0.033968716859817505, 0.011247039772570133, -0.04339498654007912, -0.07927930355072021, 0.060085367411375046, -0.003022760385647416, 0.011313421651721, -0.017401617020368576, 0.015248937532305717, -0.0194215327501297, 0.0004860124608967453, -0.06118541583418846, -0.06645805388689041, 0.0035704136826097965, 0.04248460382223129, 0.016737794503569603, -0.0533333495259285, 0.08041728287935257, -0.06069228798151016, -0.06304411590099335, -0.08436228334903717, 0.03114273026585579, -0.011863445863127708, 0.006439072545617819, 0.008269323967397213, -0.012110007926821709, -0.000934684940148145, -0.02736843004822731, 0.03233760967850685, -0.010886679403483868, -0.07723093777894974, 0.041422486305236816, -0.029701288789510727, 0.004338550381362438, 0.004438123665750027, 0.03387388214468956, 0.009668092243373394, 0.016804177314043045, -0.0686202198266983, -0.06660978496074677, 0.011654816567897797, -0.058643925935029984, -0.03334282711148262, 0.02767189033329487, 0.02442864701151848, 0.014869610778987408, 0.03260314092040062, 0.009677574969828129, -0.008525369688868523, 0.009284023195505142, 0.0019582747481763363, -0.026268381625413895, -0.02833571285009384, -0.002747748512774706, -0.06922714412212372, -0.01170223206281662, -0.0025201523676514626, 0.0003476174606475979, 0.00041518505895510316, 0.031996216624975204, -0.004343291744589806, -0.05424373224377632, -0.01896633952856064, -0.029265062883496284, -0.07628262042999268, 0.02112850360572338, 0.010412520729005337, -0.020275017246603966, 0.02287340722978115, 0.020806076005101204, -0.009445237927138805, 0.002277146326377988, 0.05007113888859749, 0.010801331140100956, 0.024201050400733948, 0.01009009312838316, 0.07336180657148361, -0.0308582354336977, 0.038710299879312515, -0.004542438313364983, 0.019762925803661346, 0.020256051793694496, -0.026192516088485718, 0.007828356698155403, 0.0006762685952708125, -0.03281176835298538, 0.03554292023181915, 0.014234238304197788, -0.036472272127866745, 0.026439078152179718, -0.007596019189804792, 0.035448089241981506, 0.06308204680681229, -0.007197726052254438, -0.0368705652654171, -0.004201044328510761, -0.06217166408896446, 0.05955430865287781, -0.009350406005978584, -0.007245142012834549, -0.017373166978359222, 0.05348508059978485, 0.043432921171188354, -0.019336184486746788, -0.0393361896276474, -0.026989102363586426, 0.004656236618757248, 0.041991475969552994, 0.02841157838702202, -0.022475114092230797, -0.01677572727203369, -0.011303938925266266, 0.023233767598867416, 0.03753438591957092, -0.018672361969947815, -0.021735426038503647, -0.036244675517082214, -0.03235657513141632, 0.007970604114234447, 0.03186345100402832, 0.03660503774881363, -0.06194406747817993, -0.020559512078762054, 0.01726885326206684, 0.011977244168519974, -0.025547660887241364, 0.02167852781713009, 0.002624467248097062, 0.0054101487621665, 0.04510195925831795, -0.018757710233330727, -0.008392605930566788, -0.04286392778158188, -0.004426269792020321, -0.04904695600271225, 0.006519679445773363, -0.015599815174937248, -0.02114746905863285, -0.11660505831241608, -0.03338075801730156, 0.07635848969221115, 0.011237557046115398, 0.023802757263183594, 0.0243527814745903, -0.07836891710758209, 0.02342342957854271, 0.04684685915708542, -0.056140366941690445, 0.0074395472183823586, 0.02812708355486393, 0.012783313170075417, -0.029284030199050903, 0.040929362177848816, -0.005353249609470367, -0.00875770766288042, 0.02040778286755085, 0.05147464945912361, -0.039943113923072815, 0.000022411399186239578, 0.02416311763226986, -0.0001038703485392034, -0.013579899445176125, -0.04422950744628906, 0.10310102999210358, 0.0075438618659973145, 0.015865344554185867, -0.08193459361791611, 0.0011201994493603706, -0.07726886868476868, -0.03239450976252556, 0.025851121172308922, -0.012972977012395859, -0.09232814610004425, -0.0038928412832319736, -0.016111906617879868, -0.007847323082387447, -0.05094359070062637, 0.0032954015769064426, -0.014338552951812744, 0.1158464103937149, 0.008961595594882965, 0.037705086171627045, 0.06642012298107147, -0.000796586275100708, -0.031028931960463524, -0.02590802125632763, -0.024011386558413506, 0.03630157560110092, -0.0058653405867516994, 0.01896633952856064, 0.0393361896276474, -0.018985306844115257, 0.0002831615274772048, 0.011768613941967487, -0.002144381869584322, -0.002690849592909217, -0.04923661798238754, 0.07514464110136032, -0.03506876155734062, -0.032735902816057205, 0.0074917045421898365, -0.0010917499894276261, -0.003466098802164197, 0.050374601036310196, 0.020464681088924408, -0.026287347078323364, -0.06660978496074677, 0.02687530405819416, 0.026799438521265984, -0.015457567758858204, -0.02192508988082409, 0.002558085136115551, 0.029265062883496284, 0.015248937532305717, 0.017790427431464195, 0.0005621741875074804, 0.0990801602602005, 0.002562826732173562, -0.008591752499341965, 0.0336652547121048, -0.00398293137550354, -0.017667146399617195, 0.02734946273267269, 0.02365102618932724, -0.030554775148630142, -0.0770033448934555, 0.04654340073466301, -0.005893790163099766, 0.008719774894416332, -0.045936476439237595, -0.01243243645876646, 0.015267903916537762, -0.0036936947144567966, 0.022816507145762444, 0.02040778286755085, -0.007164535112679005, -0.007648176979273558, -0.034746333956718445, -0.006036038044840097, -0.01221432350575924, -0.04908489063382149, -0.017382651567459106, -0.006301566492766142, 0.08125180006027222, -0.014528216794133186, 0.032223813235759735, -0.017686111852526665, -0.0031934576109051704, -0.02038881555199623, 0.04954008013010025, -0.012138457968831062, -0.044912293553352356, -0.014091990888118744, 0.033494558185338974, -0.005599812138825655, -0.024599343538284302, 0.015267903916537762, -0.0031484125647693872, -0.0676339715719223, 0.051436714828014374, 0.0324324406683445, -0.028923669829964638, 0.052422963082790375, -0.03182552009820938, 0.028980568051338196, 0.0012754864292219281, -0.012128974311053753, 0.010137508623301983, -0.03779991716146469, 0.04297772794961929, 0.03630157560110092, 0.044760562479496, 0.006837365683168173, -0.014035091735422611, -0.0199146568775177, 0.034499771893024445, 0.002655287738889456, 0.05894738435745239, 0.045974407345056534, -0.04680892825126648, -0.027008067816495895, 0.01730678603053093, -0.05276435986161232, -0.022475114092230797, 0.029473692178726196, 0.03937412425875664, 0.04752964898943901, 0.06148887425661087, -0.017856810241937637, -0.005192035809159279, -0.0329255685210228, 0.006723567843437195, 0.03956378623843193, -0.012754864059388638, 0.0582645982503891, 0.04403984174132347, 0.04335705563426018, -0.028278812766075134, 0.06266479194164276 ]
23,320
parutils.dq
find_dup_list
Returns a list of the duplicates in in_list
def find_dup_list(in_list): """Returns a list of the duplicates in in_list""" if not in_list: return [] in_sorted = sorted(in_list) dup_list = [] old_elt = in_sorted[0] for elt in in_sorted[1:]: if elt == old_elt: dup_list.append(elt) else: old_elt = elt if dup_list: dup_list = del_dup_list(dup_list) return dup_list
(in_list)
[ 0.00045299340854398906, -0.04314421862363815, -0.02326003834605217, 0.032478731125593185, 0.014505064114928246, 0.0015824338188394904, 0.018020037561655045, -0.0005350133287720382, 0.03156984597444534, -0.009691682644188404, -0.057723477482795715, -0.0833948403596878, -0.012622373178601265, -0.04830075055360794, 0.02314874716103077, -0.05137982964515686, -0.013902232050895691, 0.03943448141217232, -0.06469777971506119, -0.016953488811850548, 0.03744977340102196, 0.00589384138584137, -0.038098979741334915, 0.055423442274332047, -0.015005878172814846, 0.020440639927983284, 0.04422004148364067, 0.019865630194544792, -0.013021170161664486, 0.008240249007940292, 0.016619613394141197, 0.033220674842596054, 0.007368461228907108, 0.0033619473688304424, 0.031031932681798935, 0.05256694555282593, -0.01488531194627285, 0.02756333164870739, -0.056833140552043915, -0.02216566726565361, -0.03763526305556297, -0.03748687356710434, 0.026839932426810265, -0.01301189512014389, 0.08302386850118637, 0.03503844514489174, 0.003633221611380577, 0.06818492710590363, 0.013512710109353065, -0.0013308674097061157, 0.01776963099837303, 0.0005744292866438627, -0.07527052611112595, 0.00787391234189272, -0.02865770272910595, -0.027396392077207565, 0.016703082248568535, 0.000726296566426754, 0.04221678525209427, 0.04477650299668312, -0.039842553436756134, 0.017380109056830406, -0.003104584524407983, -0.08814330399036407, -0.009960638359189034, -0.011203399859368801, -0.032812606543302536, -0.04533296078443527, -0.05679604411125183, -0.05004432424902916, -0.04384906589984894, -0.028490765020251274, -0.011008638888597488, -0.004915399011224508, 0.03086499497294426, 0.006714620161801577, 0.09036914259195328, -0.02084871008992195, -0.014690550044178963, -0.005773275159299374, -0.026153631508350372, -0.036448147147893906, 0.04110386222600937, 0.04971044883131981, -0.024781029671430588, 0.015720002353191376, 0.0782754048705101, 0.056870236992836, 0.016563966870307922, 0.030289985239505768, 0.027526233345270157, 0.0076095936819911, -0.015729276463389397, -0.006403930019587278, -0.022518090903759003, -0.04010223597288132, -0.02448425069451332, -0.013484886847436428, 0.01653614453971386, -0.006000496447086334, -0.018233347684144974, 0.060246095061302185, -0.0820593386888504, -0.02511490508913994, 0.02578265778720379, 0.009849346242845058, 0.015553063713014126, -0.005161168985068798, 0.03041982650756836, 0.041178058832883835, -0.07512213289737701, -0.0035613456275314093, 0.005884567275643349, -0.01191752403974533, 0.022128568962216377, -0.040844183415174484, 0.04025062546133995, -0.007855364121496677, -0.0195132065564394, -0.0590960793197155, -0.042290978133678436, 0.015191365033388138, -0.03750542178750038, -0.0013865134678781033, 0.015905488282442093, -0.007813629694283009, 0.04273614659905434, -0.031903721392154694, -0.04399745538830757, 0.02481812611222267, 0.04841203987598419, 0.03374003991484642, 0.01754704676568508, 0.03793203830718994, 0.03965706750750542, -0.03019724227488041, -0.013299399986863136, 0.03151419758796692, -0.029399650171399117, -0.011889700777828693, 0.00936244335025549, -0.005958762019872665, -0.017890196293592453, 0.04310712218284607, -0.000023185843019746244, -0.05048949271440506, -0.038321562111377716, 0.02800849825143814, -0.009969912469387054, 0.05178790166974068, -0.019568851217627525, -0.00997918751090765, -0.022462444379925728, 0.001485053333453834, -0.021535011008381844, -0.02964078262448311, -0.053642768412828445, -0.027823012322187424, -0.016888568177819252, 0.013132461346685886, 0.03661508485674858, 0.03273840993642807, 0.02029225043952465, 0.03336906433105469, -0.020997099578380585, -0.022536639124155045, -0.01685147173702717, -0.0070716822519898415, -0.032886799424886703, 0.015914762392640114, -0.02205437421798706, -0.014180461876094341, 0.007623505312949419, 0.011630019173026085, -0.11084688454866409, 0.07642053812742233, -0.013169558718800545, 0.036763474345207214, 0.03233034163713455, 0.015182089991867542, -0.051750801503658295, -0.04221678525209427, 0.03429650142788887, 0.0278786588460207, 0.007646691054105759, 0.05119434371590614, 0.03149564936757088, 0.004521239548921585, 0.04718782752752304, -0.0029446021653711796, -0.028917383402585983, 0.021627753973007202, 0.007048496510833502, -0.05316050350666046, -0.008124319836497307, -0.00733136385679245, -0.08421098440885544, 0.04640878364443779, -0.014347399584949017, 0.06106223911046982, -0.02457699365913868, -0.0541992262005806, 0.02094145305454731, -0.023222940042614937, 0.06432680785655975, 0.04759589955210686, -0.0430329255759716, -0.030568215996026993, 0.05256694555282593, 0.028249632567167282, 0.015247010625898838, -0.02986336685717106, 0.018919648602604866, -0.02170194871723652, 0.007090230938047171, -0.04366357997059822, -0.07348985224962234, 0.0051750801503658295, 0.0181777011603117, -0.0619896724820137, -0.010452178306877613, -0.030289985239505768, -0.03472311794757843, 0.016341382637619972, 0.03958287090063095, -0.0018224073573946953, 0.01146308146417141, 0.0012253718450665474, -0.014829665422439575, -0.047558803111314774, 0.0015789559110999107, -0.035446517169475555, 0.04774428904056549, -0.0011795797618106008, -0.0298819150775671, -0.002422920661047101, -0.04941366985440254, -0.027971401810646057, 0.03795059025287628, -0.03414811193943024, -0.07245112210512161, 0.047373317182064056, 0.10149835050106049, 0.02513345517218113, 0.0058660185895860195, 0.011889700777828693, -0.002215407323092222, 0.05290082097053528, 0.0107025858014822, 0.003916088957339525, -0.012353417463600636, 0.03505699709057808, -0.01807568408548832, -0.020700320601463318, 0.022666480392217636, -0.019439011812210083, -0.04971044883131981, 0.009784425608813763, -0.009181594476103783, 0.0054301247000694275, 0.01350343506783247, -0.0020890445448458195, 0.09712085872888565, -0.011815506033599377, -0.016953488811850548, -0.033127933740615845, -0.019049489870667458, 0.013930054381489754, -0.024094728752970695, 0.0599864162504673, 0.12472128868103027, -0.07931413501501083, 0.0293254554271698, -0.002090203808620572, 0.007674514316022396, -0.02589395083487034, -0.026302020996809006, 0.04247646406292915, -0.010470726527273655, -0.0016415576683357358, -0.012891328893601894, 0.011490903794765472, 0.041623227298259735, 0.0304383747279644, -0.02745203860104084, 0.047447510063648224, 0.0562024861574173, -0.020867258310317993, 0.001202185987494886, 0.03201501443982124, -0.022870516404509544, 0.018474480137228966, -0.01201954111456871, -0.06822202354669571, -0.058613814413547516, 0.076272152364254, 0.0396941639482975, 0.021961631253361702, -0.03119887039065361, 0.08280128240585327, -0.007094867993146181, 0.036763474345207214, -0.076272152364254, -0.0293254554271698, -0.0003889425133820623, 0.025318941101431847, -0.012047364376485348, -0.0275447815656662, -0.04770719259977341, -0.049116890877485275, -0.014755470678210258, 0.046928148716688156, -0.05679604411125183, 0.0057222661562263966, -0.03182952478528023, -0.03639249876141548, -0.03921189904212952, -0.019383365288376808, -0.01394860353320837, 0.04718782752752304, 0.004310248419642448, 0.03108757920563221, -0.028490765020251274, 0.03463037684559822, 0.017361558973789215, -0.0209600031375885, 0.041511934250593185, 0.06859300285577774, 0.024076180532574654, 0.06636715680360794, -0.03817317262291908, -0.05675894394516945, -0.016378479078412056, 0.00014831694716122001, 0.04314421862363815, -0.03757961466908455, 0.04529586434364319, -0.027637526392936707, -0.020644675940275192, -0.05942995473742485, -0.03383278474211693, -0.009524744935333729, -0.01720389537513256, -0.0151635417714715, -0.013976426795125008, -0.014866762794554234, -0.04485069587826729, 0.0559799000620842, -0.02854641154408455, 0.025226198136806488, 0.005801097955554724, 0.04210549220442772, -0.0033480357378721237, 0.029195614159107208, 0.08732715994119644, 0.06428970396518707, -0.04277324303984642, 0.010674762539565563, 0.005499681923538446, -0.0001722997985780239, 0.023074552416801453, -0.0579831562936306, 0.042921632528305054, -0.04069579392671585, 0.03303518891334534, 0.0036424959544092417, -0.04114096239209175, -0.03913770243525505, 0.003630903083831072, 0.015469594858586788, -0.05100885406136513, -0.02172049880027771, 0.03861834108829498, -0.08754974603652954, 0.019921276718378067, -0.043811969459056854, 0.0025713101495057344, 0.01417118776589632, -0.03297954425215721, 0.05831703543663025, -0.008314443752169609, -0.030067402869462967, 0.006960390135645866, -0.04388616606593132, 0.01652686856687069, -0.0042267790995538235, 0.028509313240647316, 0.013818763196468353, 0.03513118997216225, -0.005685168784111738, -0.08799491077661514, -0.00584746990352869, 0.05917027220129967, 0.028620604425668716, 0.002208451507613063, -0.028490765020251274, -0.023853596299886703, 0.010952992364764214, -0.009849346242845058, 0.028843188658356667, 0.04896850138902664, -0.004753097891807556, -0.01520991325378418, 0.011815506033599377, 0.002239752560853958, 0.005416213069111109, -0.01875271089375019, -0.0032668854109942913, 0.0423651747405529, 0.0006845620227977633, -0.057612184435129166, -0.015237736515700817, 0.03340616449713707, -0.029919013381004333, 0.013920780271291733, 0.020811613649129868, -0.026394763961434364, 0.004734549205750227, 0.03802478313446045, -0.024094728752970695, -0.006376106757670641, -0.020644675940275192, -0.02272212691605091, 0.03262712061405182, -0.01130541693419218, -0.04473940283060074, -0.008750337176024914, 0.08762393891811371, -0.06503165513277054, 0.026060888543725014, 0.02964078262448311, 0.01609097607433796, -0.01707405596971512, -0.06469777971506119, 0.05787186697125435, -0.007887824438512325, 0.026654446497559547, -0.028305277228355408, -0.003060531336814165, 0.0791657418012619, 0.024836676195263863, 0.0408070832490921, 0.00783217791467905, 0.03255292400717735, 0.03696750849485397, 0.055386342108249664, -0.03437069430947304, 0.00438212463632226, 0.030605314299464226, -0.004762372467666864, 0.05445890873670578, -0.05612828955054283, -0.020755967125296593, -0.07990769296884537, -0.040621597319841385, -0.050563689321279526, -0.0635477602481842, 0.02160920575261116, -0.023185843601822853, -0.00319500919431448, 0.05846542492508888, 0.057055722922086716, 0.054978273808956146, 0.00639001838862896, -0.05193629115819931, -0.045592643320560455, 0.008425735868513584, 0.027173807844519615, 0.016174444928765297, 0.023111648857593536, 0.03559490665793419, -0.040955472737550735, -0.08257870376110077, -0.03761671110987663, -0.006510585080832243, -0.01575709879398346, -0.03726428747177124, 0.005555327981710434, 0.056944433599710464, 0.029065772891044617, -0.02060757763683796, -0.07252532243728638, 0.07745926827192307, -0.002636230317875743, 0.010832426138222218, -0.03824736922979355, 0.00904247909784317, -0.05646216496825218, -0.029733525589108467, -0.0020507879089564085, -0.024781029671430588, -0.019457560032606125, -0.015720002353191376, -0.007725522853434086, 0.012112285010516644, -0.011286868713796139, -0.02965933084487915, 0.046482980251312256, 0.021330976858735085, 0.03668927773833275, 0.03184807300567627, -0.01493168342858553, 0.028731897473335266, 0.042847439646720886, 0.05323469638824463, 0.030827898532152176, -0.01008120458573103, 0.010952992364764214, -0.021553561091423035, -0.001583593082614243, -0.03348035737872124, 0.04032481834292412, 0.061470307409763336, 0.027248002588748932, -0.009988461621105671, 0.01975433900952339, -0.07478825747966766, -0.024966515600681305, 0.011824780143797398, 0.03086499497294426, -0.009626762010157108, -0.0004486460820771754, 0.00688619539141655, -0.07708829641342163, 0.02856495976448059, -0.01786237396299839, 0.021627753973007202, 0.005981947761029005, -0.022777773439884186, 0.02502216212451458, -0.05482988432049751, -0.027952853590250015, -0.018650691956281662, -0.05401374027132988, 0.05304921045899391, 0.04010223597288132, -0.016805099323391914, -0.0017563276924192905, 0.073155976831913, 0.005643434356898069, -0.009923540987074375, -0.028249632567167282, -0.008782797493040562, 0.022184215486049652, -0.03233034163713455, 0.05379115790128708, -0.04852333292365074, 0.01079532876610756, -0.11032751947641373, -0.0070113991387188435, 0.02194308303296566, -0.026283472776412964, 0.05367986485362053, -0.03824736922979355, -0.0029608323238790035, -0.026524605229496956, 0.02765607461333275, 0.02624637447297573, 0.02437295950949192, -0.011750585399568081, -0.007553947623819113, 0.006983575876802206, -0.017055505886673927, -0.002856496023014188, -0.06321388483047485, -0.02789720706641674, -0.07241402566432953, 0.01751922257244587, -0.04043611139059067, 0.023222940042614937, 0.043255507946014404, 0.019680144265294075, 0.004358938429504633, -0.013957877643406391, -0.018715612590312958, 0.015172815881669521, 0.0700397938489914, 0.01830754242837429, 0.032812606543302536, -0.036002978682518005, -0.0007309337379410863, -0.023686658591032028, -0.00487830163910985, -0.0033294870518147945, -0.026598799973726273, 0.029510941356420517, 0.005717629101127386, -0.003352673025801778, -0.05675894394516945, 0.0008712080889381468, 0.00463253166526556, -0.03316503018140793, 0.00415954040363431, -0.008119682781398296, -0.0416974201798439, -0.009932815097272396, -0.024873772636055946, -0.014848214574158192, 0.006403930019587278, -0.014254656620323658, -0.023297134786844254, 0.022666480392217636, -0.0023104692809283733, -0.04032481834292412, 0.04266195371747017, -0.029084322974085808, -0.0066033280454576015, -0.10899201035499573, 0.009617487899959087, 0.020199507474899292, -0.01797366514801979, 0.019439011812210083, -0.009821522980928421, -0.05074917525053024, -0.025430234149098396, 0.03574329614639282, -0.008532389998435974, 0.028360923752188683, 0.026617348194122314, 0.05349437892436981, 0.01345706358551979, 0.03683766722679138, 0.06291710585355759, 0.02160920575261116, -0.003865080187097192, -0.02934400364756584, 0.03238598629832268, 0.02470683492720127, 0.012028815224766731, 0.00007774503319524229, 0.020440639927983284, 0.020125312730669975, -0.0035056995693594217, 0.012603824958205223, -0.020477736368775368, -0.0020322392228990793, -0.0363554023206234, -0.03507554531097412, -0.06866719573736191, 0.052975013852119446, -0.004975682124495506, -0.010489275678992271, -0.04841203987598419, 0.014291753992438316, 0.01224212534725666, 0.0635477602481842, 0.02383504807949066, -0.05382825434207916, -0.0074983020313084126, 0.00512407161295414, 0.04110386222600937, 0.07208015024662018, 0.023445524275302887, 0.022462444379925728, 0.019791435450315475, 0.004210549406707287, -0.012770762667059898, 0.005777912214398384, -0.0028472216799855232, 0.006570868194103241, 0.0816141664981842, 0.0005439978558570147, 0.0028820002917200327, -0.03659653663635254, 0.051416926085948944, 0.06948333978652954, -0.010869523510336876, 0.05468149483203888, 0.0037978412583470345, 0.02645041048526764, -0.017880922183394432, -0.01754704676568508, 0.02437295950949192, 0.028360923752188683, 0.026543153449892998, -0.047373317182064056, -0.02083016186952591, 0.019476108253002167, -0.03398117423057556, -0.00009890211367746815, 0.005726903211325407, -0.022295506671071053, 0.02854641154408455, 0.0008833806496113539, 0.010980815626680851, 0.023445524275302887, 0.06009770557284355, -0.05041529983282089, -0.018557948991656303, 0.0097566032782197, -0.08918202668428421, -0.06922365725040436, -0.029900463297963142, -0.006255540531128645, -0.011852603405714035, 0.03494570404291153, -0.051862094551324844, 0.06844460964202881, 0.008314443752169609, -0.01930917054414749, -0.004467912018299103, 0.04904269799590111, 0.09333693236112595, 0.06777685880661011, 0.04804106801748276, -0.01798294112086296, -0.060246095061302185, -0.006436390336602926, 0.008917275816202164, -0.009329983033239841, 0.009297523647546768, -0.008286620490252972, 0.01119412574917078, 0.033331967890262604, 0.017176073044538498, -0.04555554687976837, 0.01598895713686943, -0.038544148206710815, 0.006570868194103241, 0.020422091707587242, 0.008360815234482288, -0.006881558336317539, 0.0012682656524702907, -0.0075075761415064335, -0.02954803965985775, -0.005091611295938492, 0.024502798914909363, -0.00809649657458067, -0.0787205770611763, -0.0026478234212845564, -0.06388163566589355, 0.08547229319810867, -0.03783929720520973, 0.04674265906214714, 0.041400641202926636, -0.006134974304586649, 0.006199894472956657, 0.03839575871825218, -0.04711363464593887, 0.009710230864584446, 0.03182952478528023, -0.05653636157512665, -0.016795825213193893, 0.0546443946659565, 0.013484886847436428, -0.04429423436522484, 0.07530762255191803, -0.03553926199674606, -0.033573102205991745, -0.0862884372472763, -0.0017493718769401312, -0.020347896963357925, -0.009636037051677704, -0.026209278032183647, 0.018585771322250366, 0.010888071730732918, -0.016350656747817993, -0.02680283598601818, -0.004736867733299732, -0.010396532714366913, 0.005838195327669382, -0.02646895870566368, -0.011852603405714035, 0.029084322974085808, -0.026858480647206306, 0.06518004089593887, 0.006556956563144922, 0.028713349252939224 ]
23,322
parutils.strg
gen_random_string
Generates a random string (letters and digits) of length 'length'
def gen_random_string(length=10): """Generates a random string (letters and digits) of length 'length'""" import random import string letters = string.ascii_letters digits = string.digits ln = letters + digits out = ''.join(random.choice(ln) for i in range(length)) return out
(length=10)
[ -0.03940434753894806, 0.04592449218034744, -0.008947479538619518, -0.02212950959801674, 0.048475850373506546, 0.003246783511713147, 0.0006040656589902937, -0.006790339946746826, 0.0635005310177803, -0.03518751636147499, 0.003074035281315446, 0.09340814501047134, 0.014989243820309639, 0.05846868082880974, 0.005390635225921869, -0.025708502158522606, -0.004378506913781166, -0.018780849874019623, 0.04737734794616699, -0.01761147566139698, 0.0291989054530859, 0.07009154558181763, 0.028100403025746346, 0.010267455130815506, -0.005164733622223139, 0.08710061758756638, 0.03600253164768219, -0.004183611366897821, -0.02546045370399952, 0.019790763035416603, 0.04085720703005791, -0.08483274281024933, 0.05343683063983917, 0.0521257147192955, -0.02044632099568844, -0.009753638878464699, -0.018408775329589844, -0.05690951645374298, -0.043727487325668335, 0.023865852504968643, 0.03499262034893036, 0.02434423193335533, -0.025176968425512314, -0.0436566136777401, -0.04557013511657715, -0.06378401815891266, 0.026824722066521645, 0.015919426456093788, -0.01476777158677578, -0.011684877797961235, 0.04340856522321701, 0.04149504750967026, 0.008460241369903088, -0.042522676289081573, 0.0013255116064101458, 0.009753638878464699, -0.0756903663277626, -0.015919426456093788, 0.040396545082330704, 0.01756718009710312, 0.0032645014580339193, -0.017336849123239517, -0.011073613539338112, -0.05024763196706772, 0.024556845426559448, 0.017974689602851868, -0.010400338098406792, 0.014953807927668095, 0.06782367080450058, -0.021473951637744904, 0.04836954548954964, 0.04631428420543671, -0.03982957452535629, -0.01402362436056137, 0.015804260969161987, 0.07965914905071259, -0.06332335621118546, -0.05081459879875183, 0.0769660472869873, -0.014670323580503464, -0.0015192998107522726, -0.026240035891532898, 0.026824722066521645, -0.02606285735964775, 0.01899346336722374, -0.0344788059592247, -0.08965197950601578, -0.03883737698197365, 0.03451424092054367, -0.036888424307107925, -0.012003797106444836, 0.013952753506600857, -0.01181776076555252, 0.013483231887221336, -0.03474457189440727, -0.04206201434135437, 0.06534317880868912, 0.020818393677473068, 0.043160516768693924, -0.00811031460762024, 0.0056608314625918865, -0.024291079491376877, -0.03982957452535629, 0.037561699748039246, -0.0386602021753788, -0.04907825589179993, -0.015405611135065556, -0.003964353818446398, 0.03540012985467911, 0.010249736718833447, -0.04464881122112274, -0.022785067558288574, 0.07239485532045364, -0.06537861377000809, -0.011419110931456089, 0.03926260396838188, 0.006090487819164991, -0.005235604476183653, -0.04142417386174202, -0.07661169022321701, 0.07519426941871643, -0.06498882174491882, -0.02602742239832878, -0.02026914246380329, 0.06240202859044075, 0.044542502611875534, -0.05092090740799904, -0.058716729283332825, 0.04603079706430435, -0.03276018053293228, 0.045109473168849945, 0.05829150229692459, 0.07278464734554291, 0.02673613280057907, 0.037030164152383804, -0.011241932399570942, -0.07483991235494614, 0.06190593168139458, 0.0399358794093132, 0.016805317252874374, 0.014519722200930119, -0.024875765666365623, 0.08299009501934052, -0.04766083508729935, 0.03164396062493324, 0.0111444853246212, 0.014439992606639862, -0.03936891257762909, -0.0013022569473832846, -0.03474457189440727, 0.058078888803720474, 0.0020342229399830103, 0.04758996143937111, -0.01622062921524048, -0.008632989600300789, 0.00205637002363801, 0.018497364595532417, -0.025283275172114372, 0.011888631619513035, -0.09234508126974106, 0.004360788967460394, 0.030598610639572144, -0.03442564979195595, -0.06690234690904617, 0.0313427560031414, -0.011020460166037083, 0.04227462783455849, -0.007414891850203276, 0.040290236473083496, 0.000756327819544822, -0.02755115181207657, -0.03855389356613159, 0.048582158982753754, -0.0313427560031414, -0.024663152173161507, 0.015830839052796364, -0.01858595386147499, 0.012836533598601818, 0.050495680421590805, -0.007707235403358936, -0.033823247998952866, -0.0869588777422905, -0.05814976245164871, 0.005811432376503944, 0.03206918388605118, 0.025070661678910255, 0.0013410146348178387, 0.03488631173968315, -0.022182663902640343, -0.07980088889598846, -0.00807487964630127, 0.038943685591220856, 0.0006987450178712606, -0.015476482920348644, -0.011729171499609947, 0.0011394749162718654, 0.011073613539338112, -0.018444212153553963, -0.0571221299469471, 0.02195233292877674, 0.005510230083018541, 0.06321704387664795, -0.02508837915956974, -0.058008018881082535, 0.0052621811628341675, 0.011596288532018661, -0.03054545633494854, 0.0032932928297668695, -0.03286648541688919, -0.023830417543649673, 0.04397553578019142, 0.010152289643883705, 0.03851845860481262, 0.037101034075021744, -0.008734866976737976, -0.018869437277317047, -0.07285551726818085, 0.015184138901531696, 0.019170640036463737, -0.00018935879052150995, -0.029074881225824356, -0.006763763260096312, 0.005018561612814665, -0.004026365932077169, 0.033220842480659485, 0.04145960882306099, -0.01779751293361187, 0.038341280072927475, -0.03309681639075279, -0.026753850281238556, 0.043018776923418045, -0.05949631333351135, 0.05173592269420624, -0.00472178915515542, -0.001492723124101758, -0.07703691720962524, 0.01106475479900837, 0.004916684702038765, 0.041636787354946136, -0.00007076731708366424, -0.07182788848876953, -0.0013997048372402787, 0.023582367226481438, 0.0508500337600708, 0.033291712403297424, 0.041069820523262024, -0.05896477773785591, 0.024698588997125626, -0.03054545633494854, -0.05850411579012871, -0.02980130910873413, -0.01742543838918209, -0.03727821260690689, 0.017443155869841576, 0.020393166691064835, 0.02859649993479252, 0.018940309062600136, -0.03244125843048096, -0.017097659409046173, 0.004779371898621321, 0.004885678645223379, 0.04273528978228569, -0.10857456922531128, 0.039581526070833206, 0.009266399778425694, -0.040290236473083496, -0.05481881648302078, 0.04135330393910408, 0.045747313648462296, -0.06495338678359985, 0.10765324532985687, 0.06934739649295807, -0.02448597550392151, 0.014590593986213207, 0.02774604596197605, 0.02771061100065708, 0.025176968425512314, 0.0694182738661766, 0.030120229348540306, -0.03375237435102463, -0.015830839052796364, 0.05446446314454079, -0.005581101402640343, -0.002095127711072564, -0.01876313053071499, -0.00045650973333977163, -0.011038178578019142, -0.05276355519890785, 0.027657458558678627, 0.0449322946369648, 0.03286648541688919, -0.011684877797961235, -0.014794347807765007, -0.0036387895233929157, 0.010754694230854511, -0.022271251305937767, 0.03300822898745537, 0.00011821082443930209, 0.026275470852851868, -0.013483231887221336, 0.006400548852980137, 0.011720312759280205, 0.01306686457246542, -0.028915420174598694, -0.009124658070504665, -0.04057371988892555, 0.01170259527862072, -0.06424468010663986, -0.013093440793454647, 0.013173171319067478, -0.026718415319919586, -0.013040287420153618, 0.06562666594982147, 0.03499262034893036, 0.05751192197203636, 0.020517190918326378, -0.034159883856773376, -0.008898756466805935, 0.009248682297766209, 0.0026798145845532417, -0.04269985482096672, 0.005248893052339554, 0.02212950959801674, -0.03118329681456089, 0.007476903963834047, 0.010187724605202675, -0.016318077221512794, 0.0140767777338624, 0.015255010686814785, -0.007716094143688679, -0.040290236473083496, -0.03095296584069729, 0.028313016518950462, 0.00800400786101818, -0.04014849290251732, 0.058752164244651794, 0.034195318818092346, -0.01786838285624981, -0.043160516768693924, -0.005860156379640102, 0.08171441406011581, -0.007928707636892796, 0.010232019238173962, 0.035949379205703735, 0.05499599501490593, 0.04089264199137688, 0.040361106395721436, -0.011126766912639141, -0.010249736718833447, -0.07632820308208466, -0.009594178758561611, -0.005718414206057787, 0.013545244932174683, 0.01242902409285307, 0.039723265916109085, 0.0023564649745821953, 0.04390466585755348, 0.07320987433195114, -0.012420165352523327, 0.039546091109514236, 0.008340645581483841, -0.005368487909436226, 0.012907404452562332, 0.013846446759998798, -0.0337878093123436, 0.02879139594733715, 0.028614217415452003, -0.0065600089728832245, -0.003251213114708662, 0.045074038207530975, -0.0029212194494903088, -0.013173171319067478, -0.022111792117357254, 0.021332209929823875, -0.006515714339911938, -0.01340350229293108, -0.02299768105149269, -0.03573676571249962, -0.01443113386631012, -0.058078888803720474, -0.0635005310177803, -0.016761021688580513, 0.01237587071955204, 0.03805779665708542, -0.008663995191454887, -0.0025580048095434904, -0.028738243505358696, 0.00544821796938777, -0.03915629908442497, 0.04145960882306099, -0.01839105784893036, -0.005904451012611389, 0.06024045869708061, 0.039014555513858795, 0.024734023958444595, 0.019383253529667854, -0.03876650705933571, -0.00266874092631042, -0.014519722200930119, 0.03327399492263794, -0.015184138901531696, 0.018010126426815987, -0.054535333067178726, -0.012491036206483841, -0.04553470015525818, 0.0445779412984848, 0.0337878093123436, -0.056590598076581955, 0.021562540903687477, -0.056661467999219894, -0.01585741527378559, 0.04904282093048096, -0.02489348314702511, -0.05081459879875183, 0.107511505484581, -0.005545665975660086, 0.038979120552539825, -0.01577768474817276, 0.02057034522294998, -0.002708605956286192, -0.01000168826431036, -0.042451806366443634, 0.019152922555804253, 0.06963088363409042, -0.010604092851281166, 0.07519426941871643, 0.02347606047987938, 0.06328792124986649, -0.007534486707299948, 0.013554103672504425, -0.0053596291691064835, -0.024237925186753273, -0.0237418282777071, -0.0076142167672514915, 0.030368277803063393, -0.015946004539728165, -0.01786838285624981, -0.0012535330606624484, -0.021296774968504906, -0.021261338144540787, 0.04599536210298538, 0.00398207176476717, 0.007866695523262024, 0.07668256014585495, 0.051275260746479034, -0.01140139251947403, -0.023617804050445557, -0.032547567039728165, 0.005984181072562933, -0.028702806681394577, 0.02673613280057907, 0.017168531194329262, 0.03734908625483513, 0.015618224628269672, 0.04617254063487053, -0.032210927456617355, -0.05648428946733475, -0.004965408239513636, -0.07512339949607849, -0.007335161790251732, -0.03922716900706291, 0.07026872038841248, -0.027533434331417084, 0.022200381383299828, -0.010834423825144768, 0.062012236565351486, -0.008101455867290497, 0.04195570945739746, -0.026080574840307236, 0.047164734452962875, 0.0251946859061718, 0.009753638878464699, -0.013447796925902367, 0.0076275053434073925, 0.03873107209801674, -0.050601985305547714, -0.04000675305724144, 0.01940097101032734, -0.038270410150289536, 0.011525417678058147, -0.020853830501437187, 0.00295444019138813, 0.0156713780015707, 0.01656612567603588, -0.019454125314950943, 0.04135330393910408, -0.02384813502430916, 0.07111917436122894, -0.030368277803063393, 0.02856106497347355, 0.0010387049987912178, 0.028773678466677666, -0.02179287187755108, 0.015804260969161987, -0.0002268706593895331, 0.04482598975300789, 0.006369542796164751, 0.031059272587299347, -0.05035393685102463, 0.022572454065084457, -0.0076142167672514915, 0.018231598660349846, 0.01476777158677578, 0.00403965450823307, 0.024609999731183052, 0.04199114441871643, -0.039687830954790115, -0.05853955075144768, 0.002113952999934554, -0.005076144821941853, 0.016592703759670258, -0.0033885259181261063, 0.06424468010663986, -0.027905507013201714, 0.02131449244916439, 0.029943052679300308, 0.020694369450211525, -0.045676443725824356, -0.034904029220342636, 0.00295444019138813, 0.000756327819544822, 0.017177389934659004, -0.02030457928776741, -0.02202320285141468, -0.01237587071955204, 0.010134571231901646, 0.030828941613435745, 0.005288757849484682, -0.01067496370524168, 0.09688083082437515, -0.01005484163761139, 0.0802261158823967, 0.021137313917279243, 0.04542839527130127, -0.043762922286987305, -0.03208690509200096, -0.09688083082437515, -0.016645856201648712, 0.04950348287820816, -0.033557478338479996, -0.01510440930724144, -0.04160135239362717, 0.026381777599453926, -0.06644168496131897, -0.057370178401470184, -0.02000337652862072, 0.09418772906064987, -0.037597134709358215, 0.0017817444168031216, -0.022253533825278282, -0.019542714580893517, -0.022164946421980858, -0.05889390781521797, -0.06148070469498634, 0.002540287096053362, -0.03541784733533859, -0.05623624101281166, -0.03027969039976597, -0.008841173723340034, 0.042451806366443634, 0.010134571231901646, -0.03545328229665756, 0.041636787354946136, -0.020056528970599174, -0.018461929634213448, 0.03410673141479492, -0.05836237594485283, -0.009585320018231869, -0.0066308798268437386, -0.04223919287323952, 0.00030175596475601196, -0.00008872733451426029, 0.041034381836652756, -0.017770934849977493, -0.04362117871642113, -0.02808268554508686, 0.0055412366054952145, 0.0056475428864359856, 0.05237376317381859, 0.05269268527626991, -0.02748028002679348, 0.03816410154104233, -0.03114786185324192, -0.012792238965630531, 0.039687830954790115, -0.02175743691623211, -0.009718203917145729, -0.0025092808064073324, 0.002965513849630952, 0.01645096018910408, 0.011489981785416603, 0.020924700424075127, 0.02037544921040535, -0.055244043469429016, 0.017443155869841576, -0.032547567039728165, 0.006657456513494253, -0.009106939658522606, -0.047873448580503464, -0.02370639331638813, 0.019241511821746826, 0.07547774910926819, -0.004735077265650034, 0.05708669498562813, 0.056696902960538864, 0.05751192197203636, -0.005426070652902126, -0.010161148384213448, -0.031608521938323975, 0.025070661678910255, -0.038908250629901886, -0.014608311466872692, -0.090785913169384, -0.05825606733560562, -0.0014063490089029074, -0.002728538354858756, -0.012384729459881783, -0.06378401815891266, 0.004792660009115934, -0.08419489860534668, -0.03602025285363197, 0.021881461143493652, -0.032777898013591766, 0.008229909464716911, 0.017824089154601097, -0.013757857494056225, -0.018975744023919106, -0.00511158024892211, -0.026488084346055984, -0.041813965886831284, -0.04695212095975876, -0.007056106813251972, -0.007950854487717152, -0.029305212199687958, -0.005089432932436466, -0.013802152127027512, 0.026558956131339073, 0.04833411052823067, -0.03027969039976597, 0.004188040737062693, -0.02149166911840439, 0.019950222223997116, -0.056626033037900925, -0.03077578730881214, -0.01600801572203636, 0.0059265983290970325, 0.014572875574231148, 0.03780974820256233, -0.03795148804783821, -0.0885889083147049, -0.038234975188970566, 0.02007424645125866, 0.06569753587245941, 0.00219589751213789, 0.03681755065917969, -0.04266441985964775, 0.05092090740799904, -0.036959294229745865, 0.005093862302601337, -0.03180341795086861, 0.022483864799141884, -0.016123181208968163, 0.036888424307107925, -0.022873656824231148, -0.022040920332074165, -0.0069940946996212006, -0.000004619773335434729, -0.043089646846055984, -0.025336427614092827, -0.01429824996739626, 0.02000337652862072, -0.02583252638578415, 0.06488251686096191, -0.03384096547961235, 0.02175743691623211, -0.013704704120755196, -0.00041941311792470515, 0.03609112277626991, 0.009168952703475952, -0.019170640036463737, 0.03848302364349365, -0.01170259527862072, -0.018869437277317047, -0.1122598648071289, 0.017770934849977493, 0.025673067197203636, -0.00017551677592564374, 0.012127822265028954, 0.016876187175512314, 0.004349715542048216, -0.027267666533589363, -0.017079941928386688, 0.013589538633823395, 0.02313942275941372, 0.010240877978503704, 0.0016233917558565736, -0.04149504750967026, 0.005244463682174683, -0.008827884681522846, -0.05035393685102463, 0.023316601291298866, 0.011888631619513035, -0.01922379434108734, 0.04482598975300789, 0.013465514406561852, -0.06842607259750366, -0.021438516676425934, 0.019241511821746826, 0.011622864753007889, -0.026240035891532898, 0.047838013619184494, 0.032777898013591766, 0.03816410154104233, -0.010568656958639622, -0.01527272816747427, -0.08681713044643402, -0.00629867147654295, 0.06523687392473221, -0.06810715794563293, 0.03244125843048096, -0.0033973846584558487, -0.02057034522294998, 0.05276355519890785, -0.04209744930267334, -0.013332631438970566, 0.029659567400813103, 0.003089538309723139, -0.013093440793454647, -0.019241511821746826, 0.0037473109550774097, -0.008274204097688198, -0.002447268692776561, 0.02468086965382099, -0.01390845887362957, -0.029943052679300308, 0.01895802654325962, -0.06509513407945633, 0.016424383968114853, -0.0016388949006795883, -0.03741995617747307, -0.016132039949297905, 0.04698755964636803, 0.02822442725300789, -0.033362582325935364, 0.024964354932308197, 0.04195570945739746, 0.012242987751960754, 0.02538958191871643, 0.02482261322438717, -0.002307741204276681, 0.03848302364349365, 0.012056950479745865, -0.007437039166688919, 0.006719469092786312, 0.043762922286987305, 0.02097785472869873, -0.06321704387664795, -0.008646277710795403, -0.009470154531300068, -0.03752626106142998, -0.051948536187410355, -0.06275638192892075, 0.014696900732815266, 0.033823247998952866, -0.011941784992814064, -0.0009357203962281346, 0.019879352301359177, -0.028631936758756638 ]
23,323
parutils.csvl
get_csv_fields_dict
Returns a dictionary whose keys are the csv fields of the 'in_path' file and elements are the columns index.
def get_csv_fields_dict(in_path): """Returns a dictionary whose keys are the csv fields of the 'in_path' file and elements are the columns index. """ fields = {} line_list = get_header(in_path, True) for i, elt in enumerate(line_list): fields[elt] = i return fields
(in_path)
[ 0.02385968714952469, 0.0005478400853462517, -0.04657705873250961, 0.008447619155049324, -0.013818351551890373, 0.027765674516558647, 0.011054681614041328, 0.025278370827436447, -0.014693514443933964, -0.018102040514349937, 0.0024873032234609127, -0.02325168065726757, -0.04631911590695381, 0.016646508127450943, 0.029737092554569244, -0.0043113259598612785, 0.023380650207400322, 0.034287936985492706, -0.01927199400961399, -0.07524552941322327, -0.005960315931588411, -0.028742171823978424, -0.015458129346370697, 0.015798982232809067, -0.02343592420220375, 0.07760386168956757, 0.028447380289435387, -0.009391873143613338, 0.09757598489522934, 0.013643319718539715, -0.025646861642599106, -0.003770106937736273, -0.04506625235080719, -0.003901381278410554, -0.03388259932398796, -0.04108656570315361, 0.06975504010915756, -0.050814684480428696, -0.02220148593187332, 0.026199594140052795, -0.03388259932398796, -0.025867953896522522, -0.04046013206243515, -0.012049602344632149, -0.019179871305823326, -0.012565487995743752, -0.02951599843800068, -0.08467885851860046, 0.06371181458234787, 0.033403560519218445, -0.005430612247437239, -0.06507522612810135, 0.011607415042817593, -0.008198888972401619, -0.037641189992427826, -0.0717448815703392, 0.0011480747489258647, -0.015384431928396225, -0.04679815098643303, 0.032592885196208954, -0.053615204989910126, 0.0037171365693211555, 0.038691386580467224, -0.020285340026021004, -0.011892994865775108, 0.04057068005204201, 0.017107119783759117, -0.010115033015608788, -0.03163481503725052, -0.0416392982006073, 0.020027397200465202, 0.0026899725198745728, 0.01746639609336853, -0.008894412778317928, -0.0067065064795315266, 0.004518601112067699, -0.01848895475268364, 0.017217665910720825, 0.015347582288086414, 0.009009565226733685, -0.011331048794090748, -0.03609353303909302, -0.017844097688794136, 0.02610747329890728, 0.008088341914117336, 0.028631625697016716, 0.08526844531297684, -0.004449509084224701, -0.013947322964668274, 0.06186936795711517, -0.028668474406003952, 0.0018574168207123876, 0.022514700889587402, 0.03725427761673927, -0.0030999169684946537, -0.07447170466184616, 0.021611902862787247, 0.026089048013091087, 0.0018343861447647214, 0.001350743928924203, -0.015983227640390396, -0.027544580399990082, -0.022606823593378067, -0.017355849966406822, -0.02181457169353962, -0.07885672897100449, 0.007558638229966164, -0.048566900193691254, 0.02406235598027706, -0.06054280325770378, -0.03537498041987419, -0.03802810236811638, 0.0007974340696819127, 0.032906100153923035, 0.031597964465618134, -0.03344041109085083, 0.02362016960978508, -0.02006424590945244, 0.006568323355168104, -0.0022961494978517294, 0.006310380529612303, 0.04823525995016098, -0.045287344604730606, 0.026015350595116615, 0.04075492545962334, -0.06172196939587593, -0.0002831322781275958, -0.011929843574762344, 0.04462406411767006, 0.028502654284238815, 0.07708797603845596, -0.04418187588453293, 0.03356938064098358, -0.018009917810559273, 0.008171251974999905, 0.059584733098745346, 0.04071807488799095, 0.035761892795562744, 0.023141132667660713, 0.06349071860313416, 0.0021660267375409603, -0.07082366198301315, -0.036462023854255676, -0.037567492574453354, 0.05431533604860306, 0.0222567580640316, 0.055089160799980164, -0.00022080574126448482, -0.050261951982975006, -0.03791755810379982, -0.0023974839132279158, -0.006034013815224171, -0.024283450096845627, -0.020340614020824432, 0.01043746154755354, -0.08630020916461945, -0.04001794755458832, -0.005449036601930857, -0.0248730331659317, -0.020616980269551277, 0.010852011851966381, 0.02524152211844921, 0.008912837132811546, 0.020709102973341942, 0.0066788699477910995, 0.08077286928892136, 0.021298686042428017, -0.06109553948044777, 0.022588398307561874, -0.07834084331989288, 0.018507378175854683, 0.006149166729301214, -0.019861577078700066, -0.00848446786403656, -0.06352756917476654, 0.024946730583906174, 0.013772290199995041, 0.04414502903819084, 0.010299278423190117, 0.00702432869002223, 0.04418187588453293, -0.014555330388247967, 0.0009885879699140787, 0.03909672424197197, 0.04160245135426521, 0.022404154762625694, 0.02922120690345764, -0.023380650207400322, 0.046208567917346954, 0.006070862524211407, 0.03753064200282097, -0.05413109064102173, 0.016480688005685806, -0.01872847229242325, -0.015384431928396225, 0.007199361454695463, 0.019290419295430183, 0.014011808671057224, -0.015596313402056694, 0.01678469032049179, 0.039686307311058044, -0.048382654786109924, -0.0418972410261631, -0.016462262719869614, -0.03964945673942566, 0.01607534848153591, -0.011183653026819229, -0.047092944383621216, -0.034656427800655365, 0.05519970878958702, -0.006305774673819542, -0.06382235884666443, 0.02982921525835991, -0.007277665194123983, 0.001450926880352199, 0.004011928103864193, -0.0633801743388176, 0.019032476469874382, 0.045655835419893265, 0.01398417167365551, 0.045655835419893265, 0.051625363528728485, -0.0029663394670933485, -0.027673551812767982, 0.08202573657035828, -0.07347678393125534, -0.03880193084478378, -0.0007749792421236634, -0.05494176596403122, -0.07041832059621811, 0.021040743216872215, 0.002043964574113488, -0.043297503143548965, 0.013173495419323444, -0.047645676881074905, 0.029497575014829636, 0.03399314358830452, -0.012887915596365929, 0.04598747566342354, -0.046466510742902756, 0.016563598066568375, 0.039944250136613846, 0.010253217071294785, -0.0157160721719265, -0.04532419517636299, -0.048456352204084396, -0.036572571843862534, 0.0206906795501709, -0.062864288687706, -0.02349119819700718, -0.032979801297187805, 0.02293846383690834, -0.0012793490896001458, 0.017927007749676704, -0.01119286473840475, -0.022717369720339775, -0.032095424830913544, 0.03648044914007187, -0.03537498041987419, -0.037199001759290695, 0.03609353303909302, -0.06621754169464111, 0.013661744073033333, -0.0466139055788517, 0.03406684473156929, 0.01799149438738823, 0.040939170867204666, -0.005011455621570349, -0.022846341133117676, -0.012629973702132702, 0.09735489636659622, 0.020782800391316414, -0.037143729627132416, -0.04631911590695381, 0.01971418224275112, -0.03729112446308136, 0.00695984298363328, -0.011165227741003036, 0.0034868307411670685, 0.04650336131453514, 0.007885673083364964, -0.02249627746641636, -0.04532419517636299, -0.0039336238987743855, 0.0027337304782122374, 0.08386818319559097, -0.018571864813566208, 0.00674335565418005, -0.029387028887867928, 0.025573162361979485, -0.012749732472002506, -0.02304900996387005, -0.07336623221635818, 0.018977202475070953, -0.0019541452638804913, 0.04226573184132576, 0.012620761059224606, -0.04830895736813545, 0.03585401549935341, 0.062053609639406204, -0.01426053885370493, 0.045213647186756134, -0.025002004578709602, 0.010363764129579067, -0.022827917709946632, 0.007139481604099274, 0.015089640393853188, 0.029442301020026207, -0.04735088348388672, -0.02715766802430153, -0.006093893200159073, 0.03338513895869255, 0.0030147037468850613, -0.015485766343772411, -0.0413813591003418, -0.06923915445804596, -0.08630020916461945, 0.052620284259319305, -0.01940096542239189, 0.00347992149181664, -0.007558638229966164, 0.016618870198726654, -0.009433328174054623, -0.052178096026182175, 0.03126632422208786, 0.023712292313575745, 0.05483121797442436, 0.004691330250352621, 0.004417266231030226, 0.05755804106593132, 0.0019253570353612304, 0.005587220191955566, -0.0016858389135450125, 0.02306743524968624, 0.0246150903403759, -0.015494978055357933, 0.010465098544955254, -0.012528639286756516, -0.05070414021611214, 0.022330455482006073, 0.015605525113642216, -0.02529679611325264, 0.004525510128587484, -0.0335141085088253, -0.03898617625236511, -0.06846532970666885, 0.010142670013010502, 0.020432736724615097, -0.02367544174194336, 0.05059359222650528, 0.06791259348392487, 0.0018758412916213274, -0.02833683416247368, 0.035761892795562744, -0.0350986123085022, 0.0180651918053627, 0.004067201633006334, -0.056526269763708115, 0.036517295986413956, 0.06209046021103859, 0.06581220030784607, 0.016830751672387123, 0.01804676651954651, -0.046761300414800644, 0.044660910964012146, 0.030934683978557587, -0.03891247883439064, 0.026512810960412025, 0.05339411273598671, 0.03213227540254593, -0.02660493366420269, 0.051367420703172684, 0.04263422265648842, 0.005462855100631714, 0.022956889122724533, -0.018212586641311646, 0.014500057324767113, 0.0649278312921524, -0.11401061713695526, -0.025370493531227112, -0.057705435901880264, -0.03957575932145119, 0.009645209647715092, 0.004721269942820072, -0.05449957773089409, 0.009718907065689564, 0.027452459558844566, -0.007982401177287102, -0.00043988419929519296, -0.0008659500163048506, -0.06537001579999924, 0.0007853429997339845, -0.03531970828771591, 0.0005749010015279055, 0.05836871638894081, -0.04034958779811859, 0.03935466706752777, -0.041049715131521225, 0.014481632970273495, -0.017576944082975388, -0.033348288387060165, -0.012482577934861183, -0.06525947153568268, 0.02734191156923771, 0.01694129966199398, 0.008392345160245895, 0.018184950575232506, 0.019843153655529022, 0.051367420703172684, -0.06540686637163162, -0.01398417167365551, 0.011109954677522182, 0.03635147586464882, -0.06021116301417351, -0.0058175260201096535, 0.015964802354574203, 0.006278137676417828, -0.025591587647795677, 0.0371805801987648, 0.002254694467410445, -0.020027397200465202, -0.0025057278107851744, -0.03192960470914841, -0.013007675297558308, 0.005453642923384905, 0.031468991190195084, -0.044292423874139786, 0.05295192450284958, 0.01385520026087761, 0.004235324915498495, -0.03511703759431839, 0.018479742109775543, 0.005720797460526228, -0.017355849966406822, -0.043481748551130295, 0.008641076274216175, 0.043297503143548965, -0.006922994274646044, 0.031984876841306686, 0.0563051775097847, 0.0148593345656991, 0.043850235641002655, 0.013182707130908966, -0.03835974261164665, 0.02686287648975849, 0.01535679493099451, 0.014067081734538078, 0.016747841611504555, 0.04396078363060951, -0.004401145037263632, 0.010833587497472763, -0.02765512838959694, 0.01006897259503603, -0.07181858271360397, 0.0589214526116848, 0.03388259932398796, -0.06087444722652435, 0.04742458462715149, 0.028263134881854057, -0.0033877992536872625, 0.043592292815446854, 0.08467885851860046, -0.019732605665922165, -0.05383629724383354, 0.05626832693815231, 0.010621706023812294, -0.005402975715696812, 0.006084681022912264, -0.004403448197990656, 0.016406988725066185, 0.0037309550680220127, 0.059326790273189545, -0.06931285560131073, -0.03675681725144386, 0.0003281858516857028, 0.0002592380333226174, 0.02168560028076172, 0.07760386168956757, -0.020119519904255867, 0.009783392772078514, 0.06890751421451569, -0.07030777633190155, -0.014444783329963684, -0.031800635159015656, 0.06787574291229248, 0.03618565574288368, 0.00542140007019043, -0.017328213900327682, -0.08895333856344223, -0.030160855501890182, 0.008834532462060452, -0.029737092554569244, 0.004629147704690695, -0.012841855175793171, 0.11865358054637909, -0.016489900648593903, 0.043408047407865524, 0.05066728964447975, 0.018839020282030106, 0.03983370214700699, -0.0010519219795241952, -0.004005019087344408, 0.009203022345900536, 0.009507025592029095, -0.04941442608833313, 0.015430492348968983, 0.050814684480428696, 0.013265617191791534, -0.023841263726353645, -0.05855296179652214, -0.01888507977128029, 0.010612494312226772, -0.016692569479346275, 0.01193905621767044, 0.0032749492675065994, 0.03410369157791138, -0.028263134881854057, 0.011791660450398922, -0.02380441315472126, 0.02623644471168518, 0.012196998111903667, 0.018682410940527916, 0.04300270974636078, -0.028263134881854057, -0.026715479791164398, 0.10546165704727173, 0.048566900193691254, -0.013532772660255432, 0.01752167008817196, 0.05103578045964241, -0.008088341914117336, 0.0070888143964111805, 0.002100389450788498, 0.007254634518176317, 0.013809139840304852, -0.01618589647114277, 0.07196597754955292, 0.02312270924448967, -0.01535679493099451, 0.02089334838092327, 0.023712292313575745, -0.007457303814589977, -0.006116923876106739, 0.007802762556821108, 0.038322895765304565, 0.005315459333360195, -0.022330455482006073, -0.018737684935331345, -0.018682410940527916, -0.08202573657035828, 0.015034366399049759, -0.015522615052759647, -0.008668712340295315, -0.050998929888010025, -0.011220501735806465, 0.019972125068306923, -0.03307192027568817, -0.047645676881074905, 0.004629147704690695, -0.024338724091649055, 0.03946521133184433, -0.015706859529018402, -0.03126632422208786, -0.0293317548930645, -0.07583511620759964, -0.016775479540228844, 0.00492854556068778, 0.02039588801562786, -0.04440297186374664, 0.007830399088561535, -0.013578834012150764, 0.008323254063725471, -0.054462730884552, 0.021409232169389725, 0.009299750439822674, -0.03983370214700699, -0.018571864813566208, 0.03001346066594124, 0.029239632189273834, -0.04432927072048187, 0.034656427800655365, 0.04127081111073494, 0.0055918265134096146, 0.010308490134775639, -0.03773331269621849, -0.019124599173665047, -0.044587213546037674, 0.008037674240767956, 0.020801225677132607, 0.023380650207400322, -0.04853004962205887, -0.07023407518863678, -0.037143729627132416, -0.005513522308319807, 0.016701780259609222, 0.02877902053296566, -0.0515885129570961, 0.03681208938360214, -0.05022510141134262, -0.012049602344632149, -0.05169906094670296, -0.05910569801926613, -0.050998929888010025, 0.045766379684209824, -0.03218754753470421, -0.03636990115046501, 0.052178096026182175, -0.02686287648975849, 0.010852011851966381, -0.004106353502720594, -0.024449270218610764, -0.046650756150484085, -0.025573162361979485, 0.011708750389516354, -0.014813273213803768, -0.003984291572123766, 0.029884489253163338, -0.020801225677132607, 0.02603377401828766, 0.039944250136613846, -0.039760004729032516, -0.03262973576784134, 0.03196645528078079, -0.01230754517018795, 0.03076886385679245, 0.020967045798897743, 0.006577535532414913, 0.00862725730985403, -0.005209518596529961, 0.03382732346653938, 0.008373920805752277, -0.01566079817712307, 0.03382732346653938, 0.020248491317033768, 0.015679223462939262, 0.030879409983754158, -0.02584953047335148, -0.03417738899588585, -0.03957575932145119, 0.04705609381198883, -0.01743876002728939, -0.0015465038595721126, -0.030860984697937965, -0.0390230268239975, 0.002200572518631816, -0.007360575255006552, 0.050188254565000534, -0.08114136010408401, 0.0670282170176506, -0.05737379565834999, -0.011220501735806465, 0.022735795006155968, -0.021059168502688408, -0.014619816094636917, -0.04768252745270729, -0.0680968388915062, -0.013947322964668274, 0.028318408876657486, -0.00466139055788517, 0.012196998111903667, 0.006139954086393118, -0.03242706507444382, 0.04716664180159569, -0.10096608847379684, 0.040054794400930405, -0.03990739956498146, 0.016296442598104477, 0.018756110221147537, 0.003470709314569831, -0.024965155869722366, 0.015494978055357933, 0.016674144193530083, 0.07380842417478561, 0.0206906795501709, -0.01370780449360609, 0.0024873032234609127, 0.02642068825662136, -0.004633754026144743, -0.00186087132897228, 0.00016711569332983345, 0.04027589038014412, 0.04351859539747238, 0.029239632189273834, 0.04362914338707924, 0.048382654786109924, 0.024909881874918938, 0.019658908247947693, -0.05040934681892395, 0.03460115194320679, 0.09285932034254074, 0.028134163469076157, -0.010584857314825058, 0.018783746287226677, 0.009783392772078514, 0.003394708503037691, -0.019677333533763885, 0.03305349871516228, 0.04443981871008873, 0.02437557280063629, 0.044034481048583984, -0.021022319793701172, -0.017088694497942924, 0.09344890713691711, 0.03460115194320679, -0.040054794400930405, -0.08593172580003738, 0.03635147586464882, 0.029165934771299362, -0.008949685841798782, -0.01888507977128029, -0.03898617625236511, -0.003332525724545121, 0.0008930109906941652, 0.028686897829174995, 0.029387028887867928, 0.0767194852232933, -0.010824375785887241, 0.0025932439602911472, -0.023841263726353645, -0.028189437463879585, 0.07285034656524658, 0.026218019425868988, 0.01730978861451149, 0.09492286294698715, -0.08770047128200531, -0.08033068478107452, -0.05029879882931709, -0.0035996807273477316, -0.03275870531797409, 0.0006448564236052334, -0.01613062247633934, 0.004877878352999687, -0.09064839035272598, 0.01770591549575329, -0.01292476523667574, 0.011358684860169888, -0.005527340807020664, -0.01174559909850359, -0.0223857294768095, 0.05711585283279419, -0.009617572650313377, 0.04757197946310043, 0.0062551070004701614, 0.0714869424700737, 0.021243412047624588, 0.0273603368550539, 0.053173016756772995, 0.009382660500705242, -0.028797445818781853, 0.02137238346040249, -0.005163457244634628, 0.024965155869722366, -0.04012849181890488, -0.027397185564041138, -0.06975504010915756, -0.05586298927664757, 0.013910474255681038, -0.0364067517220974, -0.005301640834659338, 0.023970233276486397, 0.005366126541048288, -0.010916497558355331, -0.012114088051021099, 0.01208645198494196, 0.011045468971133232, 0.001569534419104457, 0.03174535930156708, 0.006503837648779154 ]
23,324
parutils.strg
get_duration_ms
Gives the duration in ms between 'end_time' and 'start_time'. If 'end_time' is not given, the current time is taken.
def get_duration_ms(start_time, end_time=None): """Gives the duration in ms between 'end_time' and 'start_time'. If 'end_time' is not given, the current time is taken.""" from time import time from math import floor if not end_time: end_time = time() duration = floor((end_time - start_time) * 1000) return duration
(start_time, end_time=None)
[ -0.0611034594476223, -0.004523970652371645, 0.035567138344049454, 0.02472797781229019, 0.030808931216597557, -0.0004311550874263048, 0.014155206270515919, 0.02184366062283516, -0.047655556350946426, -0.039278171956539154, -0.02718975394964218, -0.025756780058145523, -0.010609515011310577, 0.036669425666332245, 0.0445324070751667, 0.024562636390328407, -0.02134763076901436, -0.03137844428420067, -0.004213952459394932, -0.02658349648118019, 0.05221167579293251, 0.02191714569926262, 0.005346093326807022, -0.005993687082082033, -0.04758206754922867, 0.07091381400823593, 0.04074788838624954, 0.006857145577669144, -0.009847099892795086, 0.03334419056773186, 0.050227560102939606, 0.05886214226484299, 0.010379872284829617, -0.002075974363833666, 0.012933504767715931, 0.06793764233589172, 0.03218679130077362, -0.030184300616383553, -0.08605189621448517, -0.009893028996884823, -0.09060801565647125, -0.02597723715007305, 0.027061153203248978, 0.08928526937961578, -0.002470960607752204, -0.045450981706380844, 0.02294594794511795, -0.014237877912819386, -0.003835041308775544, 0.01450426410883665, 0.05221167579293251, -0.001770548988133669, -0.04570817947387695, 0.01938188448548317, -0.03200307488441467, 0.003153000958263874, -0.04243806004524231, 0.0021506084594875574, -0.03494250774383545, 0.036742910742759705, -0.022211089730262756, -0.004574492108076811, -0.014136835001409054, -0.06224248930811882, -0.03714708238840103, 0.0332707054913044, -0.03891074284911156, -0.025150522589683533, 0.00009544545173412189, 0.040564171969890594, 0.0015041629085317254, -0.001717731007374823, 0.0069076670333743095, 0.015413651242852211, 0.053901851177215576, 0.04699418321251869, -0.022119231522083282, 0.03839633986353874, 0.010398243553936481, 0.014844135381281376, -0.006342744920402765, 0.021476231515407562, 0.013567320071160793, 0.005070521496236324, 0.06132391840219498, 0.013172333128750324, -0.04640629515051842, 0.006668838206678629, -0.057943571358919144, -0.02669372409582138, -0.02180691808462143, 0.05515110865235329, 0.009874656796455383, 0.07381650805473328, -0.04567143693566322, 0.02070463076233864, -0.08921178430318832, -0.008230412378907204, -0.09589899331331253, 0.004969478584825993, 0.05485716462135315, 0.07455136626958847, 0.059376541525125504, 0.01297024730592966, 0.012593632563948631, -0.012354803271591663, -0.0033367155119776726, -0.05324047803878784, 0.039204686880111694, 0.046773724257946014, -0.03821262717247009, -0.044311948120594025, 0.0022091674618422985, -0.01584538072347641, -0.0126487473025918, -0.005327722057700157, -0.02759392559528351, 0.0018658508779481053, -0.010563586838543415, -0.026601867750287056, 0.004124391824007034, 0.011849588714540005, 0.02933921478688717, -0.035952936857938766, 0.01884911209344864, -0.005589515436440706, -0.018619470298290253, -0.03821262717247009, 0.02320314757525921, 0.013741848058998585, 0.020686257630586624, 0.01702115312218666, 0.03273793309926987, 0.05081544443964958, 0.04199714586138725, 0.0702524483203888, 0.009401592426002026, 0.11353559046983719, 0.04563469439744949, 0.007624153979122639, -0.009599084965884686, -0.0023515461944043636, 0.022321317344903946, 0.007371546234935522, -0.04750858247280121, 0.004108316730707884, -0.0044091492891311646, -0.03835959732532501, -0.10604003816843033, 0.05074195936322212, -0.028145069256424904, -0.07561691105365753, 0.05437950789928436, -0.03262770548462868, 0.026436524465680122, -0.02226620353758335, 0.002330878283828497, -0.013291748240590096, -0.05235864594578743, -0.029780128970742226, -0.04706766828894615, 0.00992058590054512, -0.019547227770090103, -0.03262770548462868, 0.057906825095415115, -0.02755718305706978, 0.039057713001966476, 0.02248666062951088, -0.031066130846738815, -0.02601397968828678, 0.007697639521211386, 0.021145544946193695, 0.027740897610783577, -0.04192366078495979, 0.025775151327252388, -0.04886807128787041, -0.022137602791190147, 0.007738975342363119, 0.009663385339081287, 0.023974748328328133, 0.02494843676686287, 0.01734265312552452, -0.031139615923166275, 0.04126228764653206, 0.023938005790114403, 0.001995599362999201, -0.03444647789001465, 0.01049010083079338, -0.013980677351355553, -0.03001895733177662, 0.010756487026810646, -0.024599378928542137, -0.025462836027145386, 0.019896285608410835, 0.009819542989134789, 0.027024410665035248, 0.006751509848982096, 0.013503019697964191, 0.028953412547707558, 0.047802526503801346, -0.05015407130122185, -0.002581189386546612, -0.007665489800274372, -0.015799451619386673, 0.044018007814884186, -0.00648512365296483, 0.020153487101197243, 0.025922123342752457, -0.045414235442876816, -0.03898422792553902, -0.0509624183177948, -0.04129903018474579, 0.019602343440055847, -0.03229701891541481, 0.03957211598753929, -0.06114020198583603, -0.02426869235932827, -0.005998279899358749, 0.003832744900137186, 0.01124333031475544, 0.020043257623910904, -0.05235864594578743, 0.036889880895614624, 0.005704336799681187, 0.003880969947203994, -0.005405800882726908, -0.04941921308636665, -0.000035253819078207016, 0.004308106377720833, -0.05867842957377434, -0.0064529734663665295, -0.02487494982779026, 0.0077068256214261055, 0.0320398174226284, -0.016543494537472725, 0.004494117107242346, -0.023827778175473213, -0.0017429918516427279, -0.014871693216264248, -0.0580170564353466, -0.05610642582178116, 0.013879634439945221, -0.0016453934367746115, 0.06194854527711868, -0.04449566453695297, -0.05272607505321503, 0.022284574806690216, 0.00612228736281395, -0.0009679460199549794, 0.05827425420284271, -0.0034997621551156044, 0.023938005790114403, 0.00910305604338646, -0.010995316319167614, -0.008790741674602032, 0.0627201497554779, -0.008303897455334663, 0.03090078756213188, -0.020080000162124634, -0.01673639565706253, 0.08318594843149185, -0.11449091136455536, 0.01692011021077633, 0.015119707211852074, 0.01823366992175579, 0.021604830399155617, -0.01849086955189705, -0.01061870064586401, -0.057723112404346466, -0.0067469170317053795, 0.12367663532495499, -0.05188098922371864, 0.02437892183661461, -0.08156926184892654, 0.01082997303456068, -0.03986605629324913, 0.007293467875570059, 0.008832077495753765, -0.011684245429933071, 0.02555469423532486, -0.03990279883146286, 0.0066275023855268955, -0.019143056124448776, -0.03183773159980774, -0.04096834361553192, -0.019473742693662643, 0.0533139631152153, 0.001884222379885614, 0.0049878498539328575, 0.06452055275440216, -0.053901851177215576, -0.0070592318661510944, -0.050411272794008255, 0.0014295288128778338, -0.01129844505339861, 0.06848878413438797, -0.032848160713911057, -0.08957921713590622, 0.026252809911966324, 0.03536505252122879, -0.030717073008418083, 0.03455670550465584, -0.030496615916490555, 0.016249552369117737, -0.07745405286550522, 0.015321793965995312, -0.005603293888270855, -0.037385910749435425, 0.054012078791856766, -0.035346679389476776, -0.08855041116476059, -0.021421115845441818, -0.00382815208286047, 0.028365526348352432, 0.006508088205009699, 0.09163682162761688, -0.027575554326176643, 0.05239538848400116, -0.05324047803878784, 0.04343011975288391, -0.019694199785590172, 0.037992168217897415, 0.0611034594476223, 0.04475286602973938, 0.08899132907390594, -0.04467937722802162, -0.01211597491055727, 0.08046697080135345, 0.09332699328660965, -0.037955425679683685, -0.10310060530900955, -0.032425619661808014, 0.038028910756111145, 0.005024592857807875, -0.013043733313679695, -0.008101811632514, 0.041739944368600845, 0.010480915196239948, 0.026436524465680122, 0.011445416137576103, 0.06881947070360184, 0.0012458142591640353, 0.00863917637616396, 0.006145251914858818, 0.02537097968161106, -0.0046089389361441135, 0.01702115312218666, -0.0583844855427742, 0.0739634782075882, -0.0439077764749527, -0.026987668126821518, 0.0009604826336726546, -0.006085544358938932, -0.04578166455030441, -0.030735444277524948, 0.06962781399488449, 0.03270119056105614, -0.04706766828894615, -0.015248307958245277, -0.03202144801616669, -0.059192828834056854, 0.08465566486120224, 0.018408197909593582, 0.021476231515407562, -0.009626642800867558, 0.047765783965587616, -0.003348197788000107, -0.026032352820038795, -0.014568563550710678, 0.026859067380428314, -0.040564171969890594, -0.007017896044999361, 0.047986239194869995, 0.016084209084510803, 0.04739835485816002, 0.046847209334373474, -0.013769405893981457, -0.002755718305706978, -0.023607319220900536, 0.004569899290800095, -0.04886807128787041, 0.004308106377720833, -0.056400366127491, 0.008712662383913994, 0.010609515011310577, 0.003433165606111288, -0.015092150308191776, -0.04071114584803581, -0.03843308240175247, 0.01631385274231434, -0.031029388308525085, 0.007761939894407988, -0.027465324848890305, -0.020778115838766098, -0.04343011975288391, 0.007353174965828657, -0.0286962129175663, -0.03270119056105614, 0.03736754134297371, 0.0624629482626915, 0.0021804620046168566, 0.010324757546186447, -0.021898774430155754, 0.027961354702711105, 0.013264190405607224, 0.02283571846783161, -0.000387235835660249, -0.036889880895614624, 0.006163623183965683, 0.02608746662735939, -0.007660896982997656, -0.07447788119316101, -0.055334821343421936, 0.04089485853910446, -0.017746826633810997, -0.04236457496881485, -0.017746826633810997, -0.046847209334373474, 0.052983276546001434, -0.03266444802284241, -0.025003550574183464, -0.0499703586101532, 0.03112124465405941, -0.041739944368600845, 0.033748362213373184, 0.002051861956715584, 0.06213226169347763, 0.004468856379389763, -0.012520146556198597, -0.007082195952534676, -0.0015822416171431541, 0.0343913659453392, -0.04633281007409096, -0.018150998279452324, 0.03161727264523506, 0.025573065504431725, 0.023533834144473076, 0.0077803111635148525, 0.0019623010884970427, -0.010095114819705486, 0.015239122323691845, 0.011344373226165771, -0.011289259418845177, 0.05015407130122185, -0.00736236060038209, -0.08149577677249908, -0.019528856500983238, -0.020741373300552368, 0.043099433183670044, -0.0013652287889271975, -0.022394804283976555, 0.03497925028204918, 0.08325943350791931, -0.03165401890873909, 0.03281141817569733, -0.0476188100874424, -0.014403221197426319, 0.03858005627989769, 0.0026294144336134195, -0.03894748538732529, -0.024176834151148796, 0.05235864594578743, 0.0005006221472285688, 0.012988618575036526, -0.013659177348017693, 0.03876376897096634, 0.006430009379982948, 0.037202198058366776, -0.05809054151177406, 0.025242378935217857, 0.08340640366077423, 0.059156086295843124, -0.0007911208085715771, -0.0018819259712472558, 0.07120776176452637, -0.017728453502058983, 0.01033394318073988, 0.05276281759142876, 0.06077277287840843, 0.020649515092372894, 0.05276281759142876, 0.024654492735862732, 0.0210904311388731, 0.01752636767923832, -0.025279121473431587, 0.0291922427713871, -0.029522929340600967, 0.011822031810879707, 0.026032352820038795, -0.04820669814944267, 0.004257584922015667, -0.03202144801616669, 0.00541498651728034, -0.03237050399184227, -0.02911875583231449, -0.06264666467905045, 0.06242620572447777, -0.022045746445655823, 0.019565599039196968, 0.07477182149887085, -0.026748837903141975, 0.05140333250164986, 0.09619294106960297, 0.027244867756962776, 0.01919816993176937, 0.04221760481595993, -0.0839942917227745, -0.003880969947203994, -0.010067556984722614, 0.019179798662662506, -0.02487494982779026, 0.030312901362776756, 0.03894748538732529, 0.002898097038269043, 0.01035231538116932, 0.007679268252104521, -0.012924319133162498, -0.01823366992175579, 0.025242378935217857, -0.052983276546001434, -0.04335663467645645, 0.08083440363407135, 0.017158938571810722, 0.011197402141988277, -0.0021896478720009327, 0.012235389091074467, -0.07488205283880234, 0.014302178286015987, -0.015395279042422771, 0.04273200407624245, 0.01667209528386593, -0.02941269986331463, -0.018472498282790184, -0.03051498718559742, 0.0173793975263834, -0.017113011330366135, -0.06628420948982239, -0.03404230624437332, 0.005327722057700157, -0.004583678208291531, 0.013089661486446857, -0.07951165735721588, 0.025793522596359253, 0.031451933085918427, -0.0013411162653937936, 0.06003791466355324, -0.0021253477316349745, 0.05581248179078102, 0.06000117212533951, 0.03869028389453888, -0.020300457254052162, 0.0036168801598250866, -0.026895809918642044, 0.025315865874290466, -0.026326294988393784, -0.017544738948345184, -0.006338152103126049, -0.017406953498721123, 0.0006682616658508778, -0.011326001957058907, 0.037992168217897415, -0.03986605629324913, 0.020208600908517838, 0.01851842738687992, -0.050411272794008255, -0.039057713001966476, -0.00009192903962684795, 0.04614909365773201, -0.030790558084845543, -0.020300457254052162, -0.03813914209604263, 0.03468530625104904, 0.0011269740061834455, -0.014853321947157383, -0.009116834960877895, 0.009801171720027924, 0.00013714004307985306, 0.000860587868373841, 0.020318828523159027, -0.024397293105721474, -0.018160182982683182, 0.03128658980131149, 0.00803291890770197, -0.010719744488596916, 0.0031116651371121407, -0.05985420197248459, -0.018573541194200516, -0.10714232921600342, 0.0026317108422517776, 0.02733672596514225, -0.03033127263188362, -0.017893796786665916, 0.00648512365296483, -0.00104372831992805, 0.01129844505339861, -0.00636111618950963, 0.0001529997680336237, 0.008905562572181225, -0.011105544865131378, 0.04107857495546341, 0.0008290119003504515, -0.02941269986331463, 0.0352548211812973, 0.06896644085645676, 0.009801171720027924, 0.019620714709162712, -0.012281318195164204, -0.021476231515407562, -0.05827425420284271, -0.020851600915193558, 0.01820611208677292, -0.025132151320576668, -0.019473742693662643, 0.033785104751586914, 0.03176424652338028, -0.03508947789669037, -0.0329032763838768, -0.0248014647513628, -0.028714584186673164, 0.05110938847064972, -0.05985420197248459, 0.02551795169711113, 0.029890358448028564, -0.018729697912931442, 0.01033394318073988, 0.037808455526828766, -0.04203388839960098, 0.015037036500871181, -0.033785104751586914, -0.06749672442674637, -0.022082488983869553, -0.021788544952869415, 0.03729405254125595, -0.04188691824674606, -0.0031598901841789484, 0.025922123342752457, -0.003807484172284603, 0.007899725809693336, -0.044311948120594025, 0.028971785679459572, 0.008345233276486397, 0.027171382680535316, -0.030882416293025017, -0.016745582222938538, -0.013503019697964191, 0.01438484899699688, -0.009764428250491619, 0.0030037329997867346, 0.004923549946397543, 0.0013847483787685633, -0.04365057870745659, 0.0033045655582100153, 0.07723359763622284, -0.02911875583231449, -0.00021600812033284456, -0.006508088205009699, -0.017893796786665916, -0.04273200407624245, -0.007541482336819172, -0.0027419396210461855, 0.019032826647162437, -0.0017602150328457355, -0.0042162491008639336, -0.05448973551392555, -0.007803275715559721, -0.03508947789669037, -0.032921649515628815, 0.04096834361553192, 0.045524466782808304, -0.01699359528720379, 0.05129310116171837, 0.010407429188489914, 0.04258503392338753, 0.022155974060297012, -0.023074546828866005, 0.042878977954387665, -0.011785288341343403, -0.004478042013943195, 0.00727050332352519, 0.029026899486780167, -0.019896285608410835, -0.009718500077724457, -0.057796597480773926, -0.004126687999814749, 0.03415253385901451, 0.02537097968161106, 0.010536029934883118, -0.04376080632209778, 0.036246880888938904, 0.027722526341676712, 0.01129844505339861, -0.051587045192718506, -0.09060801565647125, 0.0351262241601944, 0.04251154884696007, -0.032168418169021606, -0.027630668133497238, 0.007840018719434738, 0.02926572784781456, 0.0052266791462898254, -0.031451933085918427, 0.022780604660511017, 0.02601397968828678, -0.012474218383431435, 0.005249643232673407, -0.06926038861274719, 0.01851842738687992, 0.043981265276670456, 0.01881236955523491, -0.05459996312856674, 0.03196633234620094, -0.014807392843067646, 0.007582818157970905, 0.05720871314406395, 0.023368490859866142, -0.04214411973953247, 0.008133961819112301, 0.02759392559528351, -0.00015185156371444464, -0.013365233317017555, 0.01816936954855919, 0.02634466625750065, 0.0411888025701046, -0.046883951872587204, -0.05386510491371155, -0.015900494530797005, -0.04258503392338753, 0.010710557922720909, 0.04331989213824272, 0.007380732335150242, -0.06812135875225067, -0.016084209084510803, 0.030827302485704422, -0.026528380811214447, -0.04486309364438057, -0.009782799519598484, -0.047802526503801346, -0.014834949746727943, 0.01491762138903141, 0.00359621224924922, -0.005846715532243252, 0.07212633639574051, 0.046810466796159744, 0.01243747491389513, -0.003123147413134575, -0.019528856500983238, -0.007160274777561426, -0.018150998279452324, 0.019032826647162437, -0.07987909018993378, -0.0035594694782048464, -0.06918690353631973, -0.004716871306300163, -0.00938781350851059, 0.04647978022694588, -0.016653724014759064, -0.027887869626283646, -0.04196040332317352, 0.01662616617977619, -0.0063794879242777824, 0.05184424668550491, -0.004558417480438948, 0.024672864004969597, 0.03115798719227314, -0.026895809918642044, 0.03712870925664902, -0.025609808042645454, 0.011215773411095142 ]
23,325
parutils.strg
get_duration_string
Outputs a string representing the time elapsed between 'end_time' and 'start_time'. If 'end_time' is not given, the current time is taken. - return_dms: if True, the duration in ms is also output: (dms, dstr). If False, only the duration string is output (dstr).
def get_duration_string(start_time, return_dms=False, end_time=None): """Outputs a string representing the time elapsed between 'end_time' and 'start_time'. If 'end_time' is not given, the current time is taken. - return_dms: if True, the duration in ms is also output: (dms, dstr). If False, only the duration string is output (dstr). """ from math import floor dms = get_duration_ms(start_time, end_time) if dms >= 1000: duration_s = dms / 1000 if duration_s > 120: duration_m = duration_s // 60 duration_s = duration_s % 60 dm = str(floor(duration_m)) ds = str(floor(duration_s)) dstr = f"{dm} minutes and {ds} seconds" else: duration_s = floor(duration_s * 10) / 10 dstr = str(duration_s) + " s" else: dstr = str(dms) + " ms" if return_dms: return (dms, dstr) return dstr
(start_time, return_dms=False, end_time=None)
[ -0.011201883666217327, -0.006137891672551632, 0.0351424403488636, 0.012655351310968399, 0.035086892545223236, -0.01347003411501646, 0.0173027440905571, 0.0109334085136652, -0.017663797363638878, -0.07387688755989075, -0.002328325528651476, 0.008336608298122883, -0.01269238255918026, 0.04354847967624664, 0.06106415390968323, 0.021829785779118538, -0.01347003411501646, -0.06310085952281952, -0.001120766974054277, -0.002705578925088048, 0.07284002006053925, 0.036697741597890854, -0.007197904400527477, -0.014099560678005219, -0.06076790392398834, 0.03430924192070961, 0.04643689841032028, -0.031180119141936302, -0.04058599844574928, 0.03279097005724907, 0.041659899055957794, 0.027254831045866013, -0.009692870080471039, 0.006924801040440798, -0.022996263578534126, 0.06517459452152252, 0.014201396144926548, -0.03403150662779808, -0.0936884805560112, 0.027328893542289734, -0.08117199689149857, -0.02038557641208172, 0.0301432516425848, 0.022551892325282097, -0.05273217335343361, -0.04625174403190613, -0.018524767830967903, -0.022051973268389702, -0.019830111414194107, 0.01781192049384117, 0.1016131192445755, -0.0014013926265761256, -0.02694006823003292, -0.0063878512009978294, -0.03238362818956375, 0.008369010873138905, -0.023885007947683334, 0.008878187276422977, -0.0014847124693915248, 0.018561799079179764, -0.009253126569092274, -0.004735341761261225, 0.02258892171084881, 0.0036521845031529665, -0.0533987320959568, 0.029328567907214165, -0.030124735087156296, -0.03784570470452309, 0.02758811041712761, 0.058953385800123215, 0.012312814593315125, -0.022033456712961197, -0.016284391283988953, 0.00005070067345513962, 0.028773102909326553, 0.04721455276012421, -0.03299463912844658, 0.008137566968798637, 0.04128958657383919, -0.004297913052141666, -0.0028652751352638006, 0.015765957534313202, 0.02097807265818119, -0.0188580472022295, 0.055583562701940536, -0.003004141617566347, -0.06584115326404572, -0.007526555098593235, -0.05184342712163925, -0.02766217291355133, -0.03847523033618927, -0.025995776057243347, 0.014692057855427265, 0.07672827690839767, -0.07569140940904617, 0.014349520206451416, -0.06317491829395294, -0.01570115238428116, -0.08435666561126709, -0.002201031194999814, 0.027495533227920532, 0.02449602074921131, 0.03606821224093437, 0.0189413670450449, -0.0029231361113488674, -0.05754620581865311, -0.023885007947683334, -0.051991552114486694, 0.050102971494197845, 0.013358940370380878, -0.04425206780433655, -0.06058274954557419, -0.019607925787568092, -0.03195777162909508, 0.013544095680117607, -0.019274646416306496, -0.028606463223695755, 0.007295111194252968, -0.0034647148568183184, -0.050584375858306885, 0.02755107916891575, -0.0030296004842966795, 0.020644793286919594, -0.053620919585227966, 0.008193112909793854, -0.018311839550733566, -0.02449602074921131, -0.01973753422498703, 0.04932532086968422, -0.001631679362617433, 0.017386063933372498, 0.01493275910615921, 0.02762514166533947, 0.061397433280944824, 0.04673314839601517, 0.05195452272891998, -0.0040248092263937, 0.11294461041688919, 0.05088062211871147, 0.09835439175367355, -0.0010316610569134355, -0.03623485192656517, 0.0017983189318329096, -0.005818499252200127, -0.02073737233877182, 0.01966347172856331, 0.022107519209384918, -0.012701639905571938, -0.0592496320605278, 0.0389196015894413, -0.005138054024428129, -0.06491538137197495, 0.012581288814544678, -0.029328567907214165, 0.03190222382545471, -0.04628877714276314, 0.01174809131771326, 0.009859508834779263, -0.021996425464749336, -0.028736071661114693, 0.003330477513372898, -0.023607276380062103, -0.005360240116715431, -0.04277082905173302, 0.052584048360586166, -0.012248010374605656, 0.05687964707612991, 0.024829300120472908, 0.005804612301290035, 0.003099033609032631, -0.006767419166862965, 0.01495127473026514, -0.0006046471535228193, -0.008169968612492085, -0.00858656782656908, 0.002190616214647889, 0.007896864786744118, 0.02177423983812332, -0.024477504193782806, -0.021644631400704384, 0.027976935729384422, -0.02270001545548439, -0.06484131515026093, 0.05328764021396637, 0.024681175127625465, 0.013034919276833534, -0.014979047700762749, 0.007480266038328409, -0.012923826463520527, -0.038216013461351395, 0.019108006730675697, -0.022570407018065453, -0.032735422253608704, 0.030698716640472412, -0.024533051997423172, 0.012747928500175476, -0.01503459457308054, -0.006378593388944864, 0.01949683204293251, 0.03592009097337723, -0.030809808522462845, 0.017237940803170204, -0.005670375190675259, -0.015802988782525063, 0.08169043064117432, 0.003920659422874451, -0.020829949527978897, 0.026995614171028137, -0.08072762191295624, -0.00579535448923707, -0.024995939806103706, -0.03197628632187843, 0.02466266043484211, -0.02507000043988228, 0.04595549777150154, -0.02518109418451786, -0.0002220414753537625, 0.05669449269771576, -0.045066751539707184, 0.006813707761466503, 0.027754750102758408, -0.06328601390123367, 0.049658600240945816, 0.030957933515310287, -0.01095192413777113, 0.02114471234381199, -0.002957852790132165, 0.011599967256188393, -0.006161035969853401, -0.02414422482252121, 0.031198635697364807, -0.0613233707845211, 0.0069062854163348675, 0.0378827340900898, -0.018228519707918167, 0.02362579107284546, -0.01570115238428116, 0.0027564966585487127, 0.002439418574795127, -0.05565762519836426, -0.052435923367738724, 0.04495565965771675, 0.0024486761540174484, 0.0492512583732605, 0.008193112909793854, -0.0809498131275177, 0.02025596797466278, 0.008179226890206337, -0.03523501753807068, 0.051065776497125626, 0.015664121136069298, 0.029161928221583366, 0.021311352029442787, -0.006045314017683268, 0.00790612306445837, 0.019070975482463837, -0.03512392193078995, 0.005901819095015526, -0.00188395322766155, -0.03143933787941933, 0.08702290058135986, -0.09761376678943634, -0.021644631400704384, 0.013321910053491592, 0.03506837785243988, -0.003617467824369669, -0.028643494471907616, -0.029772941023111343, -0.03464252129197121, -0.01172957569360733, 0.07528406381607056, -0.02369985356926918, -0.022811109200119972, -0.045659247785806656, -0.035494234412908554, -0.006355449091643095, 0.009924313053488731, -0.0035248901695013046, -0.013257104903459549, 0.01353483833372593, -0.03984537720680237, 0.009419766254723072, -0.02782881259918213, -0.03558681160211563, -0.00517508527263999, -0.004906610120087862, 0.04384472966194153, -0.021959396079182625, 0.027958421036601067, 0.09272567182779312, -0.0204966701567173, -0.016228845342993736, -0.033772289752960205, -0.007230306975543499, 0.006114747375249863, 0.029013805091381073, 0.019589409232139587, -0.11153743416070938, 0.009563260711729527, -0.003018028102815151, -0.03171706944704056, 0.05136202648282051, 0.01866363361477852, 0.020070813596248627, -0.06643365323543549, -0.017506415024399757, 0.010202046483755112, -0.067877858877182, 0.03991943970322609, -0.0423634871840477, -0.058842290192842484, -0.03506837785243988, -0.012784959748387337, 0.021440960466861725, 0.027254831045866013, 0.0795426294207573, -0.053620919585227966, 0.006022169720381498, -0.03399447724223137, 0.05573168769478798, -0.05139905586838722, 0.011229656636714935, 0.035290561616420746, 0.04328926280140877, 0.0974656492471695, -0.037290237843990326, -0.05836088955402374, 0.07865388691425323, 0.12198018282651901, 0.018404416739940643, -0.09672502428293228, -0.040697090327739716, 0.021366897970438004, 0.011137079447507858, -0.011442584916949272, -0.051547180861234665, 0.04517784342169762, -0.052547018975019455, 0.0052908072248101234, 0.03642001003026962, 0.09753970801830292, -0.02414422482252121, -0.0329020619392395, 0.002601429121568799, 0.04332629591226578, 0.019404254853725433, 0.02469968982040882, -0.02177423983812332, 0.09531784802675247, -0.005841643549501896, -0.010572356171905994, -0.007716339081525803, -0.027643656358122826, -0.011738833971321583, -0.015210491605103016, 0.07535813003778458, -0.005573168396949768, -0.009868767112493515, -0.005707405973225832, -0.026717880740761757, -0.0354757159948349, 0.049584537744522095, 0.019274646416306496, 0.037771642208099365, -0.025995776057243347, 0.01901542954146862, -0.004279397428035736, -0.032087378203868866, 0.044696442782878876, 0.026884520426392555, -0.031217150390148163, 0.005739808082580566, 0.05091765150427818, 0.004246995318681002, 0.0063276756554841995, 0.04254864156246185, -0.005693519487977028, -0.003684586612507701, -0.024199772626161575, -0.024199772626161575, -0.04799220338463783, -0.007216420024633408, -0.04391879215836525, 0.05662043020129204, 0.002930079586803913, 0.010646418668329716, 0.030717231333255768, -0.033698227256536484, -0.032735422253608704, 0.030180281028151512, -0.027014128863811493, 0.011664771474897861, 0.0033050186466425657, -0.0023005520924925804, -0.0365125872194767, -0.012562774121761322, -0.026754911988973618, -0.019848626106977463, 0.004420578014105558, 0.0475478321313858, 0.023514697328209877, 0.006397109013050795, -0.0321984738111496, 0.01970050297677517, -0.03623485192656517, 0.04447425529360771, 0.0014661969617009163, -0.05088062211871147, -0.002231118967756629, 0.0012775702634826303, -0.008780980482697487, -0.05910150706768036, -0.07084034383296967, 0.015090140514075756, 0.006582263857126236, -0.009683611802756786, -0.054991066455841064, -0.0015726611018180847, 0.015099398791790009, 0.008864300325512886, -0.052621081471443176, -0.04384472966194153, 0.02138541452586651, -0.006711872294545174, 0.011479616165161133, -0.02070034109055996, 0.0475478321313858, 0.042141299694776535, -0.006998863071203232, 0.025014454498887062, 0.011979535222053528, 0.05721292644739151, -0.03447588160634041, -0.03947506844997406, 0.050473280251026154, 0.02349618263542652, 0.01966347172856331, 0.032365113496780396, 0.025014454498887062, -0.0010657990351319313, 0.020607762038707733, 0.013368198648095131, -0.03562384098768234, 0.06758160889148712, 0.02838427759706974, -0.055990904569625854, -0.03991943970322609, -0.012266525998711586, 0.030532076954841614, 0.014182880520820618, 0.03379080444574356, 0.04451128840446472, 0.04943641275167465, -0.02734740823507309, 0.061434462666511536, -0.058990415185689926, 0.02866200916469097, 0.022996263578534126, -0.03251323476433754, -0.032254017889499664, -0.010081695392727852, 0.03562384098768234, -0.028217637911438942, 0.06113821640610695, 0.019070975482463837, 0.054028257727622986, 0.009341075085103512, -0.0022496345918625593, -0.10279811173677444, 0.017432352527976036, 0.05484294146299362, 0.009382735006511211, -0.01630290597677231, 0.012849763967096806, 0.08361604809761047, -0.009878024458885193, -0.024014616385102272, 0.021403929218649864, 0.05369497835636139, 0.017432352527976036, 0.003559606848284602, -0.021792756393551826, 0.018746953457593918, 0.013608899898827076, -0.0062582422979176044, 0.05228780210018158, 0.017506415024399757, 0.0365125872194767, -0.0027287232223898172, -0.016904661431908607, 0.006767419166862965, 0.007285853382200003, 0.010340912267565727, -0.054509662091732025, -0.03164300695061684, -0.020033782348036766, 0.01981159672141075, -0.057953547686338425, -0.013849602080881596, 0.055953871458768845, -0.004483067896217108, 0.010100211016833782, 0.06917394697666168, 0.00844770111143589, 0.04095630720257759, 0.029439661651849747, -0.05188046023249626, 0.014571706764400005, -0.021440960466861725, 0.003196239937096834, -0.005323209334164858, 0.004739970434457064, 0.0363459475338459, 0.018154457211494446, -0.04343738779425621, 0.012331330217421055, 0.018034106120467186, -0.0068322233855724335, 0.019200583919882774, -0.05369497835636139, -0.029698878526687622, 0.07969075441360474, -0.037216175347566605, 0.005031589884310961, -0.031846676021814346, 0.014395808801054955, -0.04914016276597977, 0.01817297376692295, -0.030235828831791878, 0.027736233547329903, -0.002950909547507763, 0.04380769655108452, 0.003429998178035021, -0.005999025423079729, -0.01021130383014679, 0.0008985808817669749, -0.08176449686288834, -0.028847165405750275, -0.010387200862169266, -0.028439823538064957, 0.044178009033203125, -0.0009431337821297348, -0.00030637384043075144, -0.028199121356010437, 0.0049390122294425964, 0.05139905586838722, 0.09087412804365158, 0.04588143527507782, 0.10501997172832489, 0.009077228605747223, -0.017043527215719223, 0.006762790028005838, -0.013340424746274948, -0.0022068172693252563, -0.03458697348833084, 0.009442910552024841, -0.016636185348033905, 0.0024695061147212982, -0.009216095320880413, -0.01725645549595356, 0.04077115282416344, -0.024847814813256264, 0.03319830819964409, -0.004071097820997238, -0.06110118329524994, -0.02214455045759678, 0.02666233479976654, 0.036734770983457565, -0.036771804094314575, -0.023570245131850243, -0.04084521532058716, -0.01319230068475008, -0.023996101692318916, -0.028291700407862663, -0.03397596254944801, 0.021922364830970764, 0.010757511481642723, -0.009924313053488731, 0.04258567467331886, 0.028606463223695755, -0.0023433691821992397, 0.01585853472352028, 0.03666071221232414, -0.025051485747098923, -0.0005314529989846051, -0.004962156526744366, -0.020626278594136238, -0.0778392031788826, 0.022311190143227577, 0.012479454278945923, -0.013034919276833534, -0.015784472227096558, 0.0341055691242218, -0.016506576910614967, 0.051028747111558914, -0.006503573153167963, 0.01026685070246458, 0.0499548465013504, -0.0037424475885927677, 0.0296248160302639, -0.02706967666745186, 0.0005259562167339027, 0.039178818464279175, 0.06332304328680038, -0.020274484530091286, 0.0218668170273304, 0.011451843194663525, -0.0285879485309124, -0.06584115326404572, -0.006540603935718536, -0.008966135792434216, -0.02418125607073307, -0.008244031108915806, 0.016997238621115685, 0.02173720858991146, -0.05265811085700989, -0.00704515166580677, -0.027810296043753624, -0.03399447724223137, 0.014525418169796467, -0.02386649325489998, 0.05713886395096779, -0.006147149484604597, -0.00009322848927695304, 0.015599317848682404, 0.03527204692363739, -0.03516095504164696, 0.019478317350149155, -0.008299577049911022, -0.09835439175367355, -0.03943803533911705, 0.005966623313724995, 0.018228519707918167, -0.049621567130088806, -0.04784407839179039, 0.019311677664518356, 0.01629364863038063, 0.015117914415895939, -0.042141299694776535, 0.033290889114141464, 0.009739158675074577, 0.05025109648704529, -0.039289914071559906, -0.027199285104870796, -0.012025823816657066, -0.006864625494927168, -0.0032355855219066143, -0.024773752316832542, 0.0031545800156891346, -0.019274646416306496, -0.028995288535952568, 0.02258892171084881, 0.07254377007484436, -0.04839954525232315, -0.01882101595401764, 0.008294948376715183, 0.01413659192621708, -0.03142081946134567, -0.009998375549912453, 0.031846676021814346, 0.018996912986040115, -0.0134330028668046, 0.01857105642557144, -0.07324735820293427, -0.0036313545424491167, -0.04343738779425621, -0.05539840832352638, 0.06810005009174347, 0.07402501255273819, -0.04154880344867706, 0.025755073875188828, -0.021440960466861725, 0.04669611528515816, 0.012636835686862469, -0.021515022963285446, 0.03638297691941261, 0.016358453780412674, -0.02249634452164173, 0.012016566470265388, 0.0009743787231855094, 0.02425531856715679, 0.00517508527263999, -0.03880850970745087, -0.014201396144926548, -0.006216582376509905, 0.01841367408633232, -0.016849113628268242, -0.03134676069021225, -0.00041197010432370007, -0.015997400507330894, 0.019719017669558525, -0.06928504258394241, -0.06202695891261101, -0.0037517051678150892, 0.06972941011190414, -0.01801559142768383, -0.05906447768211365, 0.04091927781701088, 0.014766119420528412, -0.02758811041712761, -0.01809891127049923, 0.0043604024685919285, 0.04543706402182579, 0.030495045706629753, 0.011757348664104939, -0.07498781383037567, 0.018682150170207024, 0.010785284452140331, 0.014062530361115932, -0.06002728268504143, 0.04899204149842262, 0.024070164188742638, 0.0007458279142156243, 0.024477504193782806, 0.02053370140492916, -0.08546759188175201, 0.00003661514347186312, 0.032365113496780396, 0.018561799079179764, 0.025032969191670418, 0.01708981581032276, 0.008419928140938282, 0.03840116783976555, -0.038253042846918106, -0.06502646952867508, -0.0021952451206743717, -0.0558057464659214, 0.018367385491728783, 0.046103619039058685, -0.02986551821231842, -0.07961669564247131, 0.03086535632610321, 0.02762514166533947, 0.012544258497655392, -0.03210589662194252, 0.012072112411260605, -0.054065290838479996, -0.005624086130410433, -0.013099723495543003, 0.0075589572079479694, -0.004135902039706707, 0.0840604156255722, 0.06421179324388504, 0.0022149179130792618, -0.025921713560819626, 0.01582150347530842, 0.0026546611916273832, 0.009174435399472713, -0.01396995224058628, -0.06395257264375687, 0.0399564728140831, -0.04921422526240349, -0.025199608877301216, 0.004517784342169762, 0.0458073727786541, -0.04351145029067993, -0.040104594081640244, -0.03554977849125862, 0.002483392832800746, -0.028532400727272034, 0.009271642193198204, -0.02262595295906067, 0.030495045706629753, 0.054954033344984055, -0.06447100639343262, 0.07813545316457748, -0.042659737169742584, 0.030809808522462845 ]
23,326
parutils.logging.core
get_logger
null
def get_logger() -> Logger: if g.logger is None: logger = Logger(file_write=False) g.logger = logger else: logger = g.logger return logger
() -> parutils.logging.logger.Logger
[ 0.0188558641821146, -0.02579611912369728, -0.01699010655283928, 0.059415798634290695, 0.009923663921654224, -0.005110552068799734, 0.012158967554569244, 0.025651905685663223, -0.005975830368697643, -0.008093960583209991, 0.047554269433021545, -0.025633879005908966, -0.04239865392446518, 0.022335004061460495, 0.043408144265413284, 0.0019750434439629316, -0.06810463964939117, -0.017909465357661247, 0.01964903622865677, 0.04856376349925995, 0.054548606276512146, 0.02431793510913849, 0.02943749912083149, 0.021668018773198128, -0.02559782564640045, 0.025327427312731743, -0.02494886703789234, 0.05061880126595497, 0.05386359617114067, 0.012762859463691711, -0.019685089588165283, -0.07729822397232056, 0.004459339659661055, 0.015331655740737915, 0.004267806652933359, 0.04077625647187233, -0.013781365007162094, 0.03897359222173691, -0.04888824373483658, -0.026985876262187958, 0.025183213874697685, 0.01717037335038185, 0.05216909199953079, -0.018513357266783714, -0.003334928071126342, 0.0282116886228323, 0.026859691366553307, 0.0152956023812294, 0.011203555390238762, 0.0020482768304646015, 0.08436466753482819, 0.030681338161230087, -0.02204657904803753, -0.0016618306981399655, -0.019270475953817368, 0.015313629060983658, 0.039838869124650955, -0.016422268003225327, -0.043336037546396255, 0.002694982336834073, -0.04524686187505722, 0.013474912382662296, 0.033998239785432816, -0.0016302841249853373, -0.016350161284208298, 0.036990661174058914, -0.02092892676591873, 0.024209775030612946, 0.0020054634660482407, 0.05321463569998741, -0.02502097375690937, -0.04218233376741409, 0.03868516534566879, -0.03810831159353256, -0.029780006036162376, -0.0020494034979492426, -0.0070213754661381245, -0.02761681005358696, 0.028896700590848923, -0.008724892511963844, -0.03843279182910919, 0.06320139020681381, -0.03500773012638092, 0.03489957004785538, 0.08270621299743652, -0.03331322595477104, -0.01619693450629711, 0.022226843982934952, 0.019594956189393997, -0.04834744334220886, -0.06403061747550964, 0.03832463175058365, 0.013087338767945766, -0.012798912823200226, 0.0031186083797365427, -0.07758665084838867, -0.04834744334220886, 0.04546318203210831, 0.02604849264025688, 0.06273270398378372, -0.05757708102464676, 0.06157899647951126, -0.05797366797924042, 0.025832172483205795, 0.016124827787280083, -0.03904569894075394, 0.01007689069956541, -0.002296142978593707, 0.052673835307359695, -0.03129424527287483, -0.06248032674193382, 0.011546061374247074, 0.013574058189988136, 0.03713487461209297, 0.012077847495675087, 0.0217220988124609, -0.06121846288442612, 0.008652785792946815, 0.02599441260099411, -0.03610735759139061, -0.08184093981981277, 0.055918630212545395, -0.05483703315258026, 0.0043038600124418736, 0.060713715851306915, -0.018179863691329956, -0.006394949741661549, -0.03239386901259422, 0.05361122265458107, 0.00533137796446681, 0.03327717259526253, 0.039586495608091354, 0.019270475953817368, -0.02936539426445961, -0.0066968961618840694, 0.049032457172870636, -0.049176666885614395, 0.04456184804439545, -0.03868516534566879, 0.05011405423283577, -0.08393202722072601, -0.04932088032364845, -0.009986757300794125, 0.0012167980894446373, 0.009310758672654629, 0.056567590683698654, -0.011293688789010048, 0.05732470750808716, -0.021019060164690018, -0.0019344836473464966, 0.012681739404797554, -0.03156464174389839, 0.009445958770811558, 0.03857700526714325, -0.04481422156095505, -0.02761681005358696, -0.048852190375328064, 0.07005151361227036, 0.015439815819263458, -0.06273270398378372, -0.010158010758459568, -0.009986757300794125, 0.008702359162271023, -0.0726473480463028, 0.028500115498900414, -0.0056693777441978455, 0.008260706439614296, 0.01756695844233036, 0.0282116886228323, 0.010329263284802437, -0.07398132234811783, 0.023092122748494148, -0.05645943060517311, 0.0024155694991350174, -0.054296232759952545, 0.07055626064538956, 0.025381505489349365, 0.031077923253178596, -0.04084836319088936, 0.049429040402173996, 0.014511443674564362, -0.015160402283072472, 0.0033574614208191633, 0.04380473122000694, 0.0604252889752388, 0.030807524919509888, 0.028626300394535065, 0.0040740203112363815, -0.024083588272333145, 0.04477816820144653, -0.00846350658684969, -0.013538004830479622, 0.0021496766712516546, -0.052349355071783066, 0.02612059935927391, 0.03385402634739876, -0.0017023906111717224, -0.024750573560595512, -0.025507692247629166, 0.028626300394535065, 0.001767737208865583, 0.025129133835434914, -0.031222136691212654, 0.009815504774451256, -0.03857700526714325, -0.008143533952534199, 0.029743952676653862, -0.00887811928987503, -0.07946141809225082, 0.02916710078716278, 0.0023344496730715036, -0.013303658924996853, -0.06298507004976273, 0.027202196419239044, -0.011203555390238762, -0.02529137395322323, -0.0151063222438097, 0.028175635263323784, -0.06273270398378372, 0.05213303864002228, 0.0030307285487651825, 0.0027896221727132797, -0.03248400241136551, 0.02307409606873989, -0.03448496013879776, -0.008436466567218304, 0.025075053796172142, -0.017026159912347794, -0.018567437306046486, -0.08724892884492874, 0.05782945454120636, -0.006228203419595957, 0.014087817631661892, -0.036990661174058914, 0.02262343093752861, -0.02365094982087612, -0.034070346504449844, 0.01380840502679348, 0.0534309558570385, -0.009391878731548786, -0.0012291914317756891, -0.011915607377886772, 0.04549923539161682, 0.13065707683563232, 0.029671845957636833, 0.004351179581135511, -0.0377117283642292, 0.02741851657629013, 0.0407041497528553, 0.021794205531477928, 0.01853138394653797, -0.022010525688529015, -0.011185528710484505, -0.0019480035407468677, 0.03201530873775482, 0.025435585528612137, -0.004799592308700085, 0.021541832014918327, -0.015710214152932167, -0.03544037044048309, 0.019937461242079735, 0.020442208275198936, 0.03398021310567856, -0.021938418969511986, -0.007801027502864599, -0.029581712558865547, 0.014790856279432774, -0.07033994048833847, 0.03709882125258446, 0.055125460028648376, 0.042759183794260025, 0.07026783376932144, 0.04849165678024292, -0.01744077168405056, -0.02768891677260399, -0.09727174043655396, 0.0014995909295976162, -0.007210655137896538, -0.0027332890313118696, 0.09972336143255234, -0.0367022342979908, -0.0006421989528462291, 0.07621662318706512, 0.029653819277882576, -0.017621038481593132, 0.01570120081305504, -0.015025203116238117, 0.02767089009284973, 0.006705909501761198, -0.0184142105281353, -0.038216471672058105, 0.0019457502057775855, -0.04052388295531273, 0.02794128842651844, 0.012645686976611614, 0.011257635429501534, -0.023434629663825035, -0.006458043120801449, 0.04128099977970123, -0.004583272617310286, 0.014619603753089905, -0.022641457617282867, 0.0034183012321591377, 0.06763594597578049, -0.012825952842831612, 0.0042137266136705875, -0.0436965711414814, -0.04766242951154709, 0.0221006590873003, 0.0056558577343821526, -0.050726957619190216, 0.022857777774333954, 0.018396183848381042, 0.028247741982340813, -0.009680304676294327, -0.006138070020824671, 0.023128176108002663, -0.005160124972462654, 0.004754525609314442, 0.05970422551035881, -0.026174677535891533, 0.06302112340927124, -0.02781510166823864, -0.003589554224163294, -0.03520602360367775, 0.009472997859120369, -0.019486796110868454, 0.05732470750808716, -0.00794524047523737, 0.04513870179653168, -0.06763594597578049, -0.0034881543833762407, -0.02190236561000347, -0.007954253815114498, 0.00836886651813984, -0.0021451700013130903, 0.03489957004785538, -0.0691862404346466, -0.002566542476415634, -0.030483044683933258, -0.03242992237210274, -0.022677510976791382, -0.061939530074596405, -0.005412498023360968, 0.007449508178979158, 0.02579611912369728, 0.029978299513459206, -0.022335004061460495, 0.02689574472606182, -0.04946509376168251, 0.0407041497528553, 0.032700322568416595, -0.06785226613283157, -0.028698407113552094, -0.01918034255504608, -0.0766492635011673, -0.04409315809607506, 0.04348025098443031, -0.014763816259801388, 0.054043859243392944, -0.08479730784893036, -0.00966227799654007, -0.012366273440420628, 0.03286256268620491, 0.010482490062713623, 0.027562730014324188, -0.019216395914554596, -0.005606284365057945, 0.029257234185934067, -0.043732624500989914, 0.003819393925368786, -0.03617946431040764, 0.05051064118742943, 0.030879631638526917, -0.058117881417274475, 0.06056950241327286, -0.014908029697835445, -0.02302001602947712, -0.02626481093466282, 0.008486039936542511, 0.014430323615670204, 0.02786918170750141, -0.006394949741661549, 0.022533297538757324, -0.014853949658572674, -0.04362446442246437, 0.03215952217578888, -0.014619603753089905, 0.04402105137705803, 0.026174677535891533, 0.016494372859597206, -0.04524686187505722, -0.013366752304136753, 0.028482088819146156, 0.02904091402888298, 0.0029631287325173616, -0.0636700838804245, 0.03567471727728844, -0.023001989349722862, 0.01013998407870531, 0.00707996217533946, 0.01905415579676628, 0.03489957004785538, 0.02015378139913082, -0.073152095079422, 0.033042825758457184, 0.007363881450146437, 0.03617946431040764, 0.018251970410346985, -0.03590906411409378, 0.0037810872308909893, -0.02529137395322323, -0.027021929621696472, -0.009815504774451256, 0.052024878561496735, -0.014051764272153378, 0.08148040622472763, 0.011311715468764305, 0.01867559738457203, 0.010112944059073925, -0.05620705708861351, -0.022479217499494553, 0.02599441260099411, 0.005119565408676863, 0.001853363704867661, -0.01905415579676628, -0.05238540843129158, 0.07607240974903107, 0.0004720725701190531, 0.02923920750617981, -0.019216395914554596, 0.022028552368283272, 0.05919947847723961, -0.035494450479745865, 0.05501729995012283, 0.005736977327615023, -0.01234824676066637, 0.025057027116417885, -0.03623354062438011, 0.04218233376741409, 0.050150107592344284, -0.05166434496641159, 0.02911302074790001, -0.04708557948470116, -0.017621038481593132, 0.007683854550123215, -0.026949824765324593, 0.04964536055922508, 0.008427453227341175, -0.019144289195537567, 0.054873086512088776, 0.025255320593714714, 0.06424693763256073, 0.027202196419239044, 0.024624386802315712, -0.04686925932765007, -0.05887499824166298, -0.0803988054394722, 0.06504011154174805, 0.0026589292101562023, 0.007566681131720543, 0.03612538427114487, 0.06770805269479752, -0.032772429287433624, -0.05620705708861351, -0.040487829595804214, 0.07178207486867905, -0.07924509793519974, -0.0002370221191085875, -0.04914061352610588, 0.12669120728969574, 0.0464366190135479, -0.032051362097263336, -0.03163674846291542, -0.02886064723134041, -0.0337098129093647, 0.00465087266638875, -0.021830258890986443, 0.022226843982934952, -0.016350161284208298, -0.06035318225622177, 0.02035207487642765, -0.013646164909005165, 0.024029508233070374, -0.026012439280748367, -0.024750573560595512, -0.005223218351602554, -0.004046980291604996, 0.00904486607760191, 0.012104887515306473, -0.049248773604631424, 0.05919947847723961, -0.05249356850981712, -0.06619381159543991, -0.03482746332883835, 0.03275440260767937, 0.0282116886228323, -0.007255721837282181, 0.0014241044409573078, 0.00904486607760191, -0.014628617092967033, -0.050726957619190216, -0.010933156125247478, 0.003051008563488722, 0.02417372167110443, -0.11616365611553192, -0.011861528269946575, 0.022713564336299896, -0.023957401514053345, -0.021866312250494957, 0.01108638197183609, 0.0611824095249176, -0.10080496221780777, 0.01594456098973751, -0.0574328675866127, -0.03385402634739876, -0.07996616512537003, -0.04773453623056412, -0.0012843979056924582, -0.0749187096953392, 0.003708980744704604, 0.0976322740316391, -0.005601777695119381, -0.06951071321964264, -0.001078781671822071, -0.0215959120541811, 0.03612538427114487, 0.025633879005908966, 0.004080780316144228, 0.03140240162611008, -0.0026611825451254845, -0.062408220022916794, -0.060245025902986526, -0.0037405274342745543, -0.01788242533802986, 0.05213303864002228, -0.04647267237305641, -0.04517475515604019, -0.0564233772456646, -0.05249356850981712, -0.014277097769081593, -0.02224487066268921, 0.011077368631958961, -0.02107314020395279, -0.02112722024321556, -0.04055993631482124, -0.03814436495304108, 0.022335004061460495, 0.03738724812865257, 0.014691709540784359, 0.07974984496831894, -0.02009970135986805, -0.01600765436887741, -0.04932088032364845, -0.015989627689123154, 0.01744978502392769, -0.005493618082255125, 0.023326469585299492, 0.05303436890244484, -0.011780408211052418, 0.012213047593832016, -0.039117805659770966, -0.037891991436481476, 0.03810831159353256, 0.009310758672654629, -0.05627916380763054, 0.008436466567218304, 0.04102862998843193, -0.014024724252521992, 0.006584229413419962, -0.0023840228095650673, 0.05685601755976677, 0.029203154146671295, 0.010491503402590752, 0.01770215854048729, 0.06377824395895004, 0.015719227492809296, 0.05166434496641159, 0.015737254172563553, 0.018396183848381042, -0.005800070706754923, 0.01500717643648386, 0.017206426709890366, -0.02392134815454483, -0.03461114317178726, -0.023308442905545235, 0.007174601778388023, 0.03163674846291542, -0.01433117687702179, 0.021037086844444275, 0.011789421550929546, 0.05375543609261513, 0.01952284947037697, -0.0364498607814312, -0.0026183691807091236, 0.013240565545856953, 0.025778092443943024, -0.028049448505043983, 0.061615049839019775, 0.01937863603234291, -0.0431918241083622, 0.03435877338051796, -0.018125783652067184, -0.04448974132537842, 0.0025710491463541985, -0.028175635263323784, 0.03684644773602486, -0.041389159858226776, 0.029401445761322975, -0.07974984496831894, -0.045210808515548706, -0.049104560166597366, -0.01815282367169857, -0.0009548484813421965, 0.003749540774151683, -0.009806491434574127, 0.006322843488305807, 0.030951738357543945, -0.007566681131720543, 0.025724012404680252, 0.041533373296260834, -0.017603011801838875, 0.0015559241874143481, -0.025579798966646194, -0.013429845683276653, -0.03480943664908409, 0.0015649375272914767, -0.058117881417274475, 0.001810550456866622, 0.017269520089030266, 0.0023682494647800922, -0.007566681131720543, -0.019486796110868454, -0.05101538449525833, -0.00588119076564908, 0.03735119476914406, 0.012528513558208942, -0.06175926327705383, 0.0028459555469453335, 0.004430046305060387, -0.01854941062629223, 0.029022887349128723, 0.010815982706844807, -0.01475480291992426, 0.0023705027997493744, -0.055918630212545395, 0.02559782564640045, -0.013141418807208538, -0.027508649975061417, -0.06756383925676346, -0.04978957399725914, 0.010302223265171051, 0.02100103348493576, -0.01867559738457203, -0.030933711677789688, -0.022965935990214348, 0.01303325966000557, 0.0272202230989933, -0.022839751094579697, 0.04798690974712372, 0.012077847495675087, 0.02886064723134041, 0.017278533428907394, 0.03060923144221306, 0.031077923253178596, -0.01619693450629711, 0.0028346888720989227, -0.03980281576514244, 0.05346700921654701, -0.029527632519602776, -0.024353988468647003, 0.023831214755773544, 0.009716358035802841, 0.0015660641947761178, 0.01387149840593338, 0.0008202120079658926, 0.054548606276512146, 0.10368922352790833, 0.04730189964175224, -0.011302702128887177, -0.005015912000089884, 0.1056360974907875, -0.026354944333434105, 0.010230117477476597, 0.013583071529865265, 0.054873086512088776, 0.012366273440420628, -0.009491024538874626, 0.05858657509088516, 0.024390041828155518, -0.04874403029680252, 0.03390810638666153, -0.009265691973268986, 0.024678466841578484, 0.03655802085995674, -0.0014331176644191146, -0.02164999209344387, 0.01312339212745428, -0.008855585940182209, -0.015097308903932571, -0.00026870958390645683, 0.0024899293202906847, -0.0182880237698555, 0.02255132421851158, 0.02878854051232338, -0.0691862404346466, 0.0003118044987786561, 0.01704418659210205, -0.025237293913960457, -0.028554195538163185, -0.0026747023221105337, 0.01925244927406311, 0.04052388295531273, 0.00253724935464561, 0.00995070394128561, -0.014862962998449802, -0.05173645168542862, -0.013339712284505367, -0.06925833970308304, -0.013105365447700024, -0.003107341704890132, -0.04250681400299072, 0.022353030741214752, -0.038613058626651764, 0.04290339723229408, 0.02547163888812065, -0.04661688581109047, -0.04142521321773529, -0.0005591074586845934, -0.007120522204786539, -0.04005518928170204, 0.018585463985800743, -0.021668018773198128, -0.004238513298332691, 0.004281326662749052, -0.03300677239894867, 0.020496288314461708, -0.008121000602841377, -0.028157608583569527, -0.0018319571390748024, -0.013700244948267937, -0.02429990842938423, -0.02352476306259632, 0.060930036008358, 0.01552994828671217, -0.04156942665576935, 0.012582593597471714, 0.01821591705083847, -0.07895667105913162, 0.0038599539548158646, 0.03962254896759987, -0.03041093796491623, 0.03558458387851715, 0.03008645959198475, -0.02871643379330635, -0.03448496013879776, -0.007580201141536236, -0.018396183848381042, 0.03311493247747421, 0.015566001646220684, -0.01575528085231781, 0.01072584930807352, -0.012276140041649342, 0.024624386802315712, 0.0037472874391824007, 0.05548599362373352, -0.00040813436498865485, -0.0016190174501389265 ]
23,327
parutils.logging.core
get_logs
null
def get_logs(): return get_logger().logs
()
[ -0.031363386660814285, -0.004109538160264492, 0.002169513376429677, 0.02322080358862877, 0.03549417108297348, 0.016863131895661354, -0.022489842027425766, -0.0175090990960598, 0.0570150651037693, 0.058205001056194305, -0.006140933837741613, -0.037670060992240906, 0.011074929498136044, 0.010590454563498497, 0.04729156568646431, -0.01973598450422287, -0.06082286685705185, -0.021112913265824318, 0.022353848442435265, 0.031108397990465164, 0.006519164424389601, 0.026943612843751907, 0.01985497772693634, -0.009383516386151314, -0.027725571766495705, 0.01704162172973156, -0.008036335930228233, -0.04079790040850639, 0.04032192379236221, 0.039641957730054855, -0.07554411143064499, -0.0473935604095459, -0.027164600789546967, -0.019480997696518898, -0.043483760207891464, 0.026297645643353462, 0.023509789258241653, -0.06014290452003479, -0.058205001056194305, 0.020024968311190605, 0.038112036883831024, -0.0031299637630581856, 0.05245929956436157, -0.022489842027425766, 0.007738851476460695, 0.000768147932831198, 0.013922283425927162, -0.009358017705380917, 0.021452894434332848, 0.005061489529907703, 0.02381577342748642, 0.05327525734901428, -0.003922548145055771, -0.024597734212875366, 0.029595475643873215, -0.009366517886519432, 0.022268854081630707, -0.023152807727456093, 0.013046828098595142, 0.00761560769751668, -0.03797604516148567, -0.02078992873430252, 0.030649421736598015, 0.018019072711467743, 0.035324182361364365, 0.011678398586809635, -0.01866503804922104, 0.04684958606958389, 0.01325931679457426, 0.010581955313682556, -0.026790620759129524, -0.09036734700202942, 0.002258758759126067, 0.011703897267580032, -0.07493214309215546, -0.004895748104900122, -0.0020760181359946728, 0.009774496778845787, 0.004882998764514923, -0.004857500083744526, -0.06109485402703285, 0.05769502744078636, -0.04249780997633934, 0.06537863612174988, 0.08009987324476242, -0.05232330411672592, -0.047699544578790665, 0.02078992873430252, 0.00043294645729474723, 0.014729741029441357, -0.04916146770119667, 0.023968765512108803, -0.003372201230376959, 0.01995697245001793, -0.05572313070297241, -0.046067629009485245, -0.06367871910333633, 0.03515418991446495, 0.0023883769754320383, 0.0211299117654562, -0.037534065544605255, 0.043143779039382935, 0.01812106743454933, 0.056573085486888885, -0.027640577405691147, -0.03143138065934181, -0.04032192379236221, -0.02534569427371025, 0.0504194051027298, 0.01138091366738081, -0.03784004971385002, 0.031244391575455666, 0.025073708966374397, -0.022149858996272087, 0.02662062831223011, 0.0150102274492383, -0.012978831306099892, 0.028439534828066826, -0.04144386574625969, -0.01671013981103897, -0.015035726130008698, 0.018716035410761833, 0.0050317407585680485, -0.010488459840416908, 0.020398950204253197, 0.04708757624030113, -0.0476655438542366, -0.03418523818254471, 0.0037865550257265568, 0.004810752347111702, 0.05405721440911293, 0.0139562813565135, -0.0034805708564817905, -0.020517943426966667, 0.04450370743870735, -0.03282530978322029, 0.02089192345738411, 0.03542617708444595, -0.01201838068664074, 0.05466918647289276, -0.0627947673201561, 0.009638503193855286, -0.0004278998530935496, 0.008206327445805073, -0.01681213453412056, 0.02349279075860977, 0.05980291962623596, 0.0726882591843605, 0.011219422332942486, -0.03291030600667, 0.03372626379132271, -0.0431777760386467, -0.027963560074567795, 0.005945443641394377, -0.07384419441223145, -0.03036043606698513, -0.044333718717098236, 0.02696061134338379, 0.02452973648905754, -0.057729028165340424, -0.0288305152207613, -0.04735955968499184, -0.017900077626109123, -0.08207177370786667, 0.007777099497616291, 0.016132168471813202, 0.008746049366891384, 0.03586815297603607, 0.001530983718112111, 0.017798082903027534, -0.046067629009485245, 0.03376026079058647, -0.04191984236240387, 0.004806502256542444, -0.0056862072087824345, -0.0030067202169448137, -0.017900077626109123, 0.05497517064213753, -0.0054779681377112865, 0.05800101161003113, -0.05827299878001213, -0.02801455743610859, -0.013106324709951878, 0.05626710131764412, -0.000023141386918723583, 0.025872668251395226, -0.005839199293404818, -0.005001992452889681, -0.06918643414974213, 0.060414887964725494, 0.01564769446849823, -0.010547956451773643, -0.0023692529648542404, -0.05392122268676758, -0.014024278149008751, 0.024325747042894363, -0.07119233161211014, -0.0011538155376911163, -0.014619247056543827, -0.04293978959321976, 0.0010417276062071323, 0.04004993662238121, -0.017211614176630974, -0.032179344445466995, 0.014576748944818974, -0.00411378825083375, -0.009613004513084888, 0.002023958368226886, -0.10287870466709137, 0.023067811504006386, 0.01633615791797638, 0.039743952453136444, -0.07112433761358261, -0.02417275495827198, -0.016157668083906174, -0.03994794189929962, -0.01045446190983057, 0.013522803783416748, -0.03586815297603607, -0.0016744137974455953, 0.005945443641394377, -0.07513613253831863, -0.06082286685705185, 0.05419320985674858, -0.048379506915807724, 0.046781592071056366, 0.03807803988456726, 0.029697470366954803, -0.01927700638771057, -0.07602008432149887, 0.03478020802140236, 0.05511116236448288, 0.036140140146017075, -0.027164600789546967, 0.007335122209042311, 0.041511863470077515, -0.032621320337057114, 0.017211614176630974, 0.08499561995267868, 0.0038035542238503695, -0.02801455743610859, 0.004228532314300537, 0.04902547597885132, 0.07914792746305466, 0.039301976561546326, -0.02311880886554718, -0.018478048965334892, 0.03491620346903801, 0.03702409192919731, 0.008036335930228233, 0.053411249071359634, -0.009434513747692108, 0.01764509081840515, -0.031805362552404404, 0.037296079099178314, -0.02534569427371025, -0.017424102872610092, 0.04389173910021782, 0.0018029696075245738, -0.0705803632736206, 0.038248028606176376, 0.029221495613455772, -0.004079789854586124, 0.007403118535876274, -0.05511116236448288, 0.02311880886554718, 0.03350527584552765, -0.041409868746995926, -0.00759435910731554, 0.0956030786037445, 0.05429520457983017, 0.04083189740777016, 0.00940051581710577, -0.03841802105307579, -0.03852001577615738, -0.0588509701192379, 0.003032218897715211, -0.03933597356081009, -0.0401519313454628, 0.06735052913427353, -0.03316529095172882, 0.007186379749327898, 0.015613695606589317, -0.019480997696518898, 0.03479720652103424, -0.020976919680833817, 0.00268586166203022, -0.019328005611896515, -0.01705012284219265, 0.015358708798885345, 0.030173446983098984, 0.00572020560503006, -0.057491037994623184, -0.04905947297811508, 0.021503891795873642, -0.008044836111366749, -0.020687934011220932, -0.028303543105721474, 0.02009296603500843, 0.027827566489577293, -0.016990624368190765, -0.01260485127568245, 0.0011304417857900262, 0.019090017303824425, -0.009969986975193024, 0.04457170516252518, -0.0350181981921196, -0.018138065934181213, 0.04562564939260483, -0.029612474143505096, -0.03372626379132271, 0.007981088943779469, 0.01564769446849823, -0.018869027495384216, -0.02978246659040451, -0.027249597012996674, -0.0259406641125679, 0.07894393801689148, -0.011678398586809635, 0.08281973749399185, -0.032077349722385406, 0.1340211033821106, 0.02299981564283371, -0.015834685415029526, 0.02628064714372158, -0.009613004513084888, -0.006880395580083132, 0.04212383180856705, -0.008478313684463501, 0.035562168806791306, -0.022030865773558617, -0.042905788868665695, -0.022557837888598442, 0.02662062831223011, 0.05419320985674858, 0.005673457868397236, -0.009901990182697773, -0.03277431055903435, 0.009621504694223404, -0.03464421629905701, -0.023390796035528183, -0.04705357551574707, -0.03797604516148567, 0.025192702189087868, -0.007449866272509098, 0.038927994668483734, 0.031924355775117874, 0.024937715381383896, -0.02407076023519039, -0.0231018103659153, 0.048855483531951904, 0.03416823968291283, -0.03750006854534149, 0.026943612843751907, 0.020160961896181107, -0.03790804743766785, -0.034508224576711655, -0.005010492168366909, -0.0006024064496159554, 0.050147417932748795, -0.017713088542222977, 0.003529443172737956, -0.003699434455484152, -0.001112380181439221, 0.0006980265607126057, 0.026229649782180786, 0.026195650920271873, -0.0380440391600132, 0.06918643414974213, -0.049331460148096085, -0.033437278121709824, -0.01776408590376377, 0.02170788124203682, 0.0410698838531971, -0.05677707493305206, 0.03408324345946312, 0.0015097347786650062, -0.02556668408215046, -0.06099285930395126, 0.0850636214017868, 0.02077293023467064, 0.019650988280773163, 0.010080480948090553, -0.013106324709951878, 0.03471221402287483, 0.0013461181661114097, 0.0036739357747137547, -0.008822545409202576, 0.019820978865027428, 0.04661159962415695, 0.040695905685424805, -0.01692262850701809, -0.07690403610467911, -0.00940051581710577, -0.009009536355733871, -0.02769157476723194, 0.020619938150048256, 0.04212383180856705, 0.030564425513148308, -0.046781592071056366, 0.0144832544028759, 0.04212383180856705, 0.03326728567481041, 0.004861749708652496, -0.040457915514707565, -0.002619990147650242, -0.01715211756527424, -0.019667986780405045, -0.008542059920728207, -0.0413418710231781, 0.04729156568646431, -0.020755931735038757, 0.014466254971921444, -0.046169623732566833, 0.030292440205812454, -0.02265983261168003, 0.030037453398108482, 0.031584374606609344, 0.057729028165340424, 0.03750006854534149, -0.03797604516148567, -0.06826848536729813, 0.045251671224832535, 0.044435713440179825, 0.05456719174981117, -0.0019219635287299752, -0.05864698067307472, 0.03576615825295448, -0.015622195787727833, 0.012009881436824799, 0.02932349033653736, 0.0018295308109372854, -0.016982125118374825, -0.029102500528097153, 0.029391486197710037, -0.021163910627365112, -0.0001867247628979385, 0.021180909126996994, -0.027725571766495705, 0.057967014610767365, 0.011720896698534489, 0.01563919521868229, 0.05419320985674858, -0.030734417960047722, 0.01624266430735588, 0.025838669389486313, -0.029340488836169243, 0.01868203841149807, 0.022149858996272087, -0.004832001402974129, -0.05905495956540108, -0.03469521179795265, 0.014296263456344604, 0.0008727987878955901, 0.04905947297811508, 0.029000505805015564, -0.047699544578790665, -0.03105740062892437, -0.021673884242773056, 0.019990971311926842, 0.02616165205836296, 0.0025201202370226383, 0.00794709101319313, -0.02628064714372158, -0.004317777696996927, -0.10315068811178207, 0.04259980469942093, -0.050147417932748795, 0.02170788124203682, -0.034151241183280945, 0.11158225685358047, 0.06163882464170456, -0.06293076276779175, -0.06690855324268341, -0.022846823558211327, -0.0022226355504244566, 0.009128529578447342, -0.02616165205836296, 0.01483173668384552, -0.02065393701195717, -0.07812798023223877, -0.03889399766921997, 0.002157826442271471, -0.003767431015148759, -0.03319929167628288, -0.05732104927301407, 0.006939892657101154, 0.014253766275942326, -0.009366517886519432, -0.04096788913011551, -0.012638849206268787, 0.001795532531104982, -0.03512019291520119, -0.03166937083005905, -0.033335283398628235, -0.004509017802774906, 0.03277431055903435, -0.005792451556771994, 0.007539111655205488, 0.07221227884292603, 0.018648039549589157, -0.04096788913011551, -0.02719859965145588, 0.05718505382537842, -0.0013461181661114097, -0.03869000822305679, 0.036956097930669785, -0.004441021475940943, -0.023067811504006386, -0.028116552159190178, 0.0483115129172802, 0.028779517859220505, -0.06935642659664154, -0.0029918458312749863, -0.06809849292039871, -0.06085686758160591, -0.06707854568958282, 0.01359929982572794, -0.0019325879402458668, 0.03597014769911766, -0.020993918180465698, 0.08519960939884186, -0.0015968552324920893, -0.029697470366954803, -0.01085394062101841, -0.00974899809807539, -0.02616165205836296, 0.016404155641794205, -0.07574810087680817, 0.09125129878520966, 0.0038184283766895533, -0.046883586794137955, -0.013004329986870289, -0.01190788671374321, -0.015962177887558937, 0.04399373382329941, -0.026943612843751907, -0.06201280653476715, -0.04083189740777016, 0.000009711414350022096, -0.012536854483187199, -0.025192702189087868, 0.024257751181721687, -0.018886027857661247, -0.032077349722385406, 0.004164785612374544, -0.02160588651895523, 0.025260699912905693, 0.06038089096546173, -0.004449520725756884, 0.08159580081701279, -0.03953996300697327, -0.0007553985924459994, -0.03301230072975159, 0.006285426206886768, -0.02733459323644638, -0.03991394490003586, -0.009901990182697773, -0.018750034272670746, -0.009417515248060226, 0.04708757624030113, -0.01360779907554388, -0.06072087213397026, 0.047563549131155014, -0.03624213486909866, -0.04892348125576973, -0.0006645595422014594, 0.07547610998153687, -0.0018465298926457763, 0.0034784458111971617, -0.014959230087697506, 0.028405537828803062, 0.0075561110861599445, -0.022489842027425766, 0.04025392606854439, 0.07438816875219345, -0.0008409254369325936, -0.014576748944818974, 0.03852001577615738, -0.008542059920728207, 0.048039525747299194, -0.03178836405277252, 0.04715557023882866, -0.00922202505171299, 0.006905894260853529, -0.006570161785930395, -0.024716727435588837, 0.023764776065945625, 0.035902149975299835, 0.07500013709068298, 0.01441525761038065, 0.05565513297915459, 0.010717947967350483, 0.03495020046830177, 0.00625142827630043, -0.0004348057263996452, 0.011652899906039238, 0.01961698941886425, -0.007568860426545143, 0.052595291286706924, -0.011771894060075283, 0.048413507640361786, -0.00957050733268261, -0.06507264822721481, -0.002690111519768834, -0.05079338327050209, 0.06340673565864563, 0.013148822821676731, 0.0022460094187408686, 0.028524531051516533, -0.03430423513054848, -0.06809849292039871, 0.043041784316301346, -0.03168636932969093, 0.04113788157701492, 0.009910489432513714, 0.05011342093348503, 0.004436771385371685, 0.05011342093348503, 0.032740313559770584, 0.05303726717829704, -0.029510479420423508, -0.01423676684498787, 0.0011336291208863258, 0.003620813600718975, 0.015095222741365433, -0.007811097893863916, -0.03058142587542534, -0.02065393701195717, 0.016786634922027588, 0.022744828835129738, 0.008512311615049839, 0.022472843527793884, -0.028320541605353355, -0.01378628984093666, 0.044299717992544174, 0.020126963034272194, -0.09737098217010498, 0.013913783244788647, -0.025736674666404724, 0.00794284138828516, 0.0352901816368103, -0.010964435525238514, -0.04892348125576973, 0.029935458675026894, -0.03238333389163017, -0.037772055715322495, -0.007853595539927483, 0.01623416319489479, -0.06248878315091133, -0.011601902544498444, -0.039777953177690506, -0.008270073682069778, 0.08431565761566162, -0.05677707493305206, -0.00847406405955553, -0.0019017771119251847, 0.009196526370942593, -0.02228585258126259, 0.002968472195789218, -0.024495739489793777, 0.008958538994193077, -0.0223198514431715, -0.024189753457903862, -0.006769901607185602, -0.04378974437713623, -0.023900769650936127, 0.011848390102386475, 0.061366841197013855, 0.011848390102386475, 0.07160031050443649, -0.023169806227087975, 0.02452973648905754, -0.0009067970677278936, 0.0031108397524803877, 0.0288305152207613, 0.04368774965405464, 0.07500013709068298, 0.030734417960047722, -0.04259980469942093, -0.049331460148096085, 0.08649154752492905, -0.01936200261116028, 0.007772849872708321, 0.027045607566833496, 0.027232598513364792, -0.04708757624030113, 0.0014013653853908181, 0.06289675831794739, 0.030853411182761192, -0.07255226373672485, 0.010658451355993748, -0.015486202202737331, 0.05184733122587204, 0.03335228189826012, 0.0516093410551548, -0.0052484795451164246, -0.017798082903027534, -0.0139562813565135, -0.013284815475344658, -0.03654811903834343, -0.005698956549167633, 0.013191320933401585, 0.00005119658089824952, 0.02391776815056801, -0.0924072414636612, 0.0076368567533791065, 0.007097134366631508, -0.08152779936790466, 0.02570267580449581, 0.02628064714372158, 0.006191931199282408, 0.011015432886779308, -0.04871949180960655, -0.002985471161082387, -0.01226486824452877, 0.017662091180682182, 0.001571356551721692, -0.023407794535160065, 0.024325747042894363, 0.01384578738361597, -0.024580733850598335, 0.036140140146017075, 0.012383862398564816, 0.03168636932969093, 0.04531966522336006, -0.04644160717725754, 0.0005439720116555691, 0.00805758498609066, 0.022608835250139236, -0.044537708163261414, -0.008950038813054562, -0.014967729337513447, 0.010241972282528877, 0.010360966436564922, -0.014746740460395813, -0.03512019291520119, -0.004135036841034889, 0.021401897072792053, -0.025430690497159958, 0.02592366561293602, -0.04531966522336006, 0.03143138065934181, 0.025141704827547073, 0.018393052741885185, -0.06272677332162857, 0.03678610548377037, -0.016132168471813202, -0.07894393801689148, -0.03070041909813881, 0.03797604516148567, -0.018767032772302628, 0.0005917820381000638, -0.034270234405994415, -0.05140535160899162, -0.002947223139926791, 0.011686897836625576, -0.04508167877793312, 0.019412999972701073, 0.045251671224832535, 0.02486971952021122, -0.020840926095843315, -0.0579330176115036, 0.051439352333545685, 0.06684055924415588, 0.050487399101257324, 0.028524531051516533, -0.0012919334694743156 ]
23,328
parutils.strg
hash512
Contrary to hash, this hash function is not randomised, meaning it always outputs the same string for the same input string
def hash512(in_str: str, length=10): """Contrary to hash, this hash function is not randomised, meaning it always outputs the same string for the same input string""" import hashlib out = hashlib.sha512(in_str.encode('utf-8')).hexdigest()[:length] return out
(in_str: str, length=10)
[ -0.017238080501556396, 0.027329079806804657, 0.009920830838382244, -0.0002810441073961556, 0.028588328510522842, 0.011188586242496967, -0.00627071363851428, -0.031055772677063942, 0.04182744771242142, 0.006993930321186781, 0.019126951694488525, 0.05860607326030731, -0.005487937945872545, 0.051527056843042374, 0.00277374847792089, -0.03590557724237442, -0.010533437132835388, 0.01270308718085289, 0.050676215440034866, -0.017935771495103836, 0.023908691480755806, 0.05237790197134018, 0.025831596925854683, 0.06793130934238434, -0.03998962417244911, 0.026750506833195686, 0.057380858808755875, -0.014881245791912079, 0.0022802595049142838, 0.022700494155287743, 0.04179341346025467, -0.023415202274918556, 0.04962116852402687, 0.01856539584696293, 0.03413582593202591, -0.10441546142101288, 0.03743709623813629, 0.012566952034831047, -0.08923642337322235, -0.013792166486382484, -0.04301862791180611, 0.006628067698329687, -0.03013686276972294, -0.011886278167366982, 0.026903659105300903, 0.011358755640685558, -0.010456861928105354, 0.059797253459692, -0.04281442239880562, -0.023789573460817337, 0.011026926338672638, 0.010678080841898918, -0.026784541085362434, 0.003913877997547388, 0.061294734477996826, 0.00519865145906806, -0.004143605940043926, -0.026954708620905876, 0.011528924107551575, 0.007381063885986805, -0.025048820301890373, 0.010380285792052746, 0.030545266345143318, -0.06105649843811989, -0.010924825444817543, 0.020522335544228554, -0.019007833674550056, 0.029132867231965065, 0.05043797940015793, -0.03449317812919617, -0.026120882481336594, 0.013800675049424171, -0.024027809500694275, -0.026410169899463654, -0.034816499799489975, 0.06558298319578171, 0.008014941588044167, -0.028673412278294563, 0.02305784821510315, -0.015876732766628265, 0.04785141348838806, -0.05966111645102501, 0.007283216807991266, -0.008346770890057087, -0.06609348952770233, 0.01807190664112568, 0.01688072644174099, -0.03449317812919617, -0.00030656938906759024, -0.027448197826743126, -0.04962116852402687, 0.025338107720017433, -0.005079533439129591, 0.05850397050380707, -0.009512425400316715, -0.03396565467119217, 0.008848767727613449, 0.04165727645158768, 0.048157718032598495, -0.007091776933521032, -0.017323166131973267, 0.048361919820308685, -0.0002640272432472557, 0.026205966249108315, -0.03405074030160904, 0.005194397177547216, -0.019382204860448837, 0.00788731500506401, 0.017595434561371803, -0.0074831647798419, 0.0077639431692659855, -0.00027758756186813116, 0.005760207772254944, -0.06439180672168732, 0.028094839304685593, 0.006708897650241852, 0.030545266345143318, -0.02664840593934059, 0.03495263308286667, -0.06575315445661545, 0.04179341346025467, -0.0029311543330550194, -0.02787362039089203, -0.020573385059833527, 0.06340482831001282, 0.07358091324567795, -0.027278028428554535, -0.034527212381362915, -0.00990381371229887, 0.038730375468730927, -0.018412243574857712, 0.13872145116329193, 0.03713079169392586, 0.05710858851671219, -0.023670455440878868, -0.020199015736579895, -0.01673608273267746, 0.0499955415725708, 0.02972845733165741, 0.03685852140188217, -0.009121038019657135, -0.03743709623813629, 0.03910474851727486, -0.03627995029091835, 0.008291466161608696, 0.0053262775763869286, 0.0017357198521494865, -0.011426822282373905, 0.04842998832464218, 0.00713431928306818, 0.054453957825899124, 0.025099871680140495, 0.06500440835952759, 0.04567325860261917, -0.018344176933169365, -0.016540389508008957, 0.019620440900325775, -0.02384062297642231, 0.00869987066835165, -0.028179923072457314, 0.02651227079331875, -0.006028223317116499, -0.01338376197963953, -0.04434594139456749, -0.026427187025547028, -0.016923269256949425, 0.0862414538860321, 0.011460856534540653, 0.002039896324276924, -0.018667496740818024, -0.005921867676079273, -0.00225898833014071, -0.004913618788123131, 0.05656404793262482, 0.014251621440052986, 0.05530479922890663, -0.04230391979217529, 0.03505473583936691, -0.0007030090782791376, -0.06599138677120209, -0.0705859437584877, -0.042848456650972366, -0.03161732852458954, 0.013128508813679218, 0.027618367224931717, -0.010320726782083511, 0.03262132406234741, 0.04213374853134155, 0.009852763265371323, -0.04431190714240074, -0.06915652751922607, -0.06306449323892593, -0.01679564267396927, -0.028230974450707436, 0.021220026537775993, 0.029898626729846, -0.001944176503457129, -0.04877032712101936, -0.045196786522865295, -0.005083787254989147, -0.06541281938552856, -0.017187030985951424, -0.0519694946706295, -0.06609348952770233, 0.03435704484581947, -0.04860015586018562, -0.019450273364782333, 0.050710249692201614, 0.004637094680219889, -0.03447616100311279, 0.043869469314813614, -0.04196358099579811, 0.008640311658382416, 0.0706540122628212, -0.016276627779006958, -0.04897452890872955, -0.011043943464756012, 0.030409131199121475, 0.07909437268972397, -0.032298002392053604, 0.021151959896087646, 0.007734163664281368, -0.03801566734910011, 0.034527212381362915, 0.009895305149257183, 0.016540389508008957, 0.031021738424897194, 0.028350092470645905, 0.019620440900325775, -0.050540078431367874, 0.03291061148047447, 0.02395974099636078, 0.034323010593652725, 0.06575315445661545, 0.021543346345424652, -0.04911066219210625, -0.0018792996415868402, -0.03251922130584717, 0.035429105162620544, -0.0072406744584441185, -0.016055408865213394, -0.0181229580193758, 0.05299050733447075, 0.061090532690286636, 0.049723271280527115, 0.01055896282196045, -0.06428970396518707, 0.09291206300258636, 0.0012805188307538629, -0.030290013179183006, -0.08481203764677048, -0.0025397667195647955, -0.04996150732040405, -0.04141904041171074, 0.02079460583627224, 0.032995693385601044, 0.02932005189359188, -0.0020792477298527956, -0.023108897730708122, -0.011545940302312374, 0.04257618635892868, -0.1137407049536705, -0.012983865104615688, -0.029064800590276718, 0.02227507159113884, -0.039308950304985046, 0.0045052142813801765, 0.028179923072457314, 0.025338107720017433, -0.015527886338531971, 0.0490766279399395, 0.0009189105476252735, -0.061464905738830566, -0.0060239690355956554, -0.0077554346062242985, -0.012218106538057327, 0.015732089057564735, 0.04628586396574974, 0.03251922130584717, 0.01010801550000906, -0.005160363391041756, -0.03845810890197754, 0.04563922435045242, -0.04475434496998787, 0.00955496821552515, 0.08290614932775497, 0.04060223326086998, -0.0637451633810997, 0.05193546041846275, -0.024878650903701782, -0.010099507868289948, 0.0034778211265802383, -0.09107424318790436, -0.037369027733802795, 0.015612971037626266, 0.03808373585343361, -0.017246589064598083, -0.013698573224246502, 0.01754438504576683, 0.02416394278407097, -0.07575906813144684, -0.011954345740377903, -0.032468173652887344, -0.0363139845430851, -0.030579300597310066, -0.011571465991437435, 0.004220181610435247, -0.008780701085925102, 0.022377172484993935, -0.016114968806505203, -0.02511688880622387, 0.05278630554676056, -0.04475434496998787, -0.012941323220729828, 0.03648415207862854, 0.015612971037626266, 0.04080643504858017, 0.021560363471508026, -0.050744280219078064, 0.07208342850208282, -0.0002630966482684016, -0.031021738424897194, 0.02050531841814518, 0.009282697923481464, 0.007836264558136463, -0.04887242615222931, 0.014855720102787018, -0.025423191487789154, 0.03219590336084366, -0.016251102089881897, -0.030851570889353752, -0.0007716083200648427, 0.059150610119104385, -0.012337224557995796, -0.017476316541433334, -0.024810584262013435, 0.05282033979892731, -0.015127990394830704, -0.09958267211914062, -0.011894786730408669, 0.03627995029091835, -0.013366744853556156, 0.051084619015455246, 0.01754438504576683, -0.03553120791912079, -0.021441245451569557, -0.042644254863262177, -0.03207678347826004, -0.06929266452789307, 0.010635538958013058, 0.015970325097441673, 0.012337224557995796, 0.03845810890197754, -0.007091776933521032, 0.10999699681997299, 0.02635911852121353, -0.026120882481336594, 0.0191099364310503, -0.028316058218479156, 0.04744300991296768, 0.027073826640844345, -0.0499955415725708, -0.01202241238206625, -0.03384653851389885, -0.02462339960038662, 0.021560363471508026, -0.010142049752175808, 0.009640051983296871, 0.023585369810461998, 0.04039803147315979, -0.01597883366048336, -0.006126070395112038, -0.02836710773408413, -0.04455014318227768, -0.0006540855974890292, 0.040295928716659546, -0.026410169899463654, -0.02314293198287487, -0.07501032948493958, -0.017935771495103836, -0.005309260915964842, -0.009274189360439777, -0.017323166131973267, -0.018310142681002617, -0.01939922198653221, 0.04192954674363136, -0.014251621440052986, 0.012056446634232998, 0.020147964358329773, 0.05962708219885826, -0.06711450219154358, -0.02038620039820671, 0.0451287180185318, 0.0017867705319076777, 0.017646485939621925, 0.04924679920077324, -0.042848456650972366, 0.025338107720017433, -0.02923496812582016, 0.0254912581294775, -0.010431336238980293, -0.03314884752035141, -0.0036139560397714376, 0.048191752284765244, -0.03405074030160904, -0.012056446634232998, -0.008087263442575932, 0.056598082184791565, 0.028316058218479156, -0.06534475088119507, -0.021066874265670776, 0.0058410377241671085, -0.0046158237382769585, -0.03981945663690567, 0.01144383940845728, -0.06616155803203583, 0.08134059607982635, -0.08379102498292923, -0.0191099364310503, 0.04257618635892868, 0.006330272648483515, -0.0284862257540226, -0.019977794960141182, 0.011060959659516811, 0.007181115448474884, 0.025253022089600563, -0.009214630350470543, 0.05629177764058113, 0.0040776655077934265, 0.0142260966822505, 0.011120518669486046, 0.04594552516937256, 0.0173997413367033, -0.04291652515530586, -0.002652503317221999, 0.0038968613371253014, 0.023381168022751808, -0.002333437092602253, 0.0392749160528183, 0.014183553867042065, 0.03801566734910011, -0.01219258178025484, 0.01963745802640915, 0.02082863822579384, 0.0882154107093811, 0.046592168509960175, -0.0024972243700176477, -0.014600466936826706, 0.04764721170067787, -0.0014921660767868161, 0.002826926065608859, -0.020284099504351616, -0.08699019998311996, -0.02659735456109047, 0.03964928910136223, -0.04672830179333687, -0.03343813493847847, 0.0033884826116263866, -0.07902630418539047, 0.013349727727472782, -0.05704052001237869, 0.049723271280527115, -0.020777588710188866, 0.05724472180008888, -0.049723271280527115, -0.0010667445603758097, 0.002837561769410968, 0.01676160842180252, 0.025218989700078964, -0.001621919684112072, 0.024759532883763313, 0.0013188067823648453, -0.03194065019488335, 0.04039803147315979, 0.04921276494860649, -0.03437406197190285, 0.00955496821552515, -0.00014278211165219545, -0.029796523973345757, 0.010890791192650795, -0.022411206737160683, 0.03907071426510811, 0.06371112912893295, -0.012175564654171467, 0.021049857139587402, -0.02705680951476097, 0.032672375440597534, -0.03231501951813698, 0.05343294516205788, 0.019858676940202713, -0.009342256933450699, 0.04356316477060318, -0.013970843516290188, 0.027941687032580376, 0.02239418961107731, 0.001977146603167057, 0.008095772005617619, 0.028928665444254875, -0.032672375440597534, 0.0030694163870066404, -0.024095876142382622, 0.023704487830400467, 0.0107886902987957, 0.006968405097723007, 0.03495263308286667, 0.055066563189029694, -0.0004801945760846138, -0.05469219386577606, -0.01963745802640915, 0.0006227107951417565, -0.05510059744119644, -0.036960624158382416, 0.0667060986161232, 0.017714552581310272, -0.005641089752316475, 0.02630806900560856, -0.02812887169420719, 0.0003102918271906674, -0.015468327328562737, 0.003084306139498949, -0.048736292868852615, 0.0510505847632885, -0.01358796376734972, -0.07929857820272446, -0.029047783464193344, -0.020743554458022118, 0.04788544774055481, -0.051867395639419556, 0.010039948858320713, 0.02726101316511631, -0.04455014318227768, 0.006232425570487976, -0.04281442239880562, 0.009835746139287949, 0.021049857139587402, 0.05217369645833969, -0.06823761761188507, -0.027890635654330254, 0.055202700197696686, -0.023006796836853027, -0.047579146921634674, -0.10441546142101288, -0.00573468254879117, -0.01093333400785923, -0.051663193851709366, 0.07351284474134445, 0.010652555152773857, 0.04060223326086998, -0.060511961579322815, -0.052480001002550125, -0.04179341346025467, -0.05959304794669151, 0.0012103242333978415, -0.0412488728761673, 0.034323010593652725, -0.047204773873090744, 0.0021100908052176237, -0.004820025991648436, -0.016131984069943428, 0.054419923573732376, 0.029251985251903534, -0.023091880604624748, 0.0124988853931427, -0.028843579813838005, -0.036382049322128296, -0.005436887498944998, -0.04455014318227768, -0.013528404757380486, -0.02572949416935444, 0.00039085603202693164, 0.009835746139287949, 0.08351875841617584, 0.019280103966593742, 0.011163061484694481, -0.02812887169420719, -0.02783958613872528, 0.014294164255261421, -0.07473805546760559, 0.06524264812469482, -0.01029520109295845, 0.0019154604524374008, 0.06105649843811989, -0.030698418617248535, 0.059797253459692, 0.00018612192070577294, -0.017365707084536552, -0.01043984480202198, 0.02615491673350334, -0.06309852004051208, 0.028690429404377937, -0.017067912966012955, -0.04060223326086998, 0.002222827635705471, -0.00784477312117815, -0.0013719844864681363, -0.03348918259143829, -0.00040760700358077884, -0.07582713663578033, -0.017059404402971268, 0.016319170594215393, 0.0249977707862854, 0.03348918259143829, 0.0015527886571362615, 0.04608166217803955, 0.07310444116592407, 0.03801566734910011, 0.017680520191788673, -0.021339144557714462, -0.04747704416513443, -0.03194065019488335, -0.019535357132554054, 0.02166246436536312, 0.02561037614941597, -0.008048975840210915, 0.0003802205028478056, 0.042065683752298355, 0.0016272374195978045, -0.09263979643583298, -0.029081815853714943, -0.01095035020262003, 0.02561037614941597, 0.05278630554676056, -0.015570428222417831, -0.01745929941534996, 0.03553120791912079, -0.03740306198596954, -0.005534734111279249, 0.03447616100311279, -0.00608352804556489, -0.0539434514939785, -0.06541281938552856, 0.010754656977951527, 0.03340410068631172, -0.028843579813838005, 0.01109499391168356, 0.013656031340360641, -0.028690429404377937, 0.04928082972764969, -0.04349509999155998, -0.005160363391041756, -0.03355725109577179, -0.04056819900870323, -0.00007843710045563057, -0.037743400782346725, 0.012779663316905499, 0.05322874337434769, 0.047204773873090744, 0.010431336238980293, -0.06323465704917908, -0.061532970517873764, -0.0044967057183384895, 0.02824798971414566, 0.06139683723449707, 0.024368146434426308, 0.046183761209249496, -0.03808373585343361, 0.010814215987920761, -0.021066874265670776, 0.017595434561371803, 0.002371725160628557, 0.005487937945872545, -0.0284862257540226, -0.003545888466760516, 0.017101945355534554, 0.016276627779006958, -0.001201815903186798, 0.0638813003897667, -0.02195175178349018, -0.020437251776456833, -0.02511688880622387, -0.0058580548502504826, 0.010099507868289948, 0.04359719902276993, -0.046762336045503616, 0.012039429508149624, -0.018310142681002617, 0.002967315260320902, 0.043461065739393234, 0.005594293121248484, -0.036620285362005234, -0.005351802799850702, -0.013724098913371563, -0.004866822622716427, -0.07133468240499496, 0.030987706035375595, 0.05513463169336319, -0.0020452141761779785, -0.02685260772705078, -0.03607574850320816, 0.025474242866039276, -0.013222101144492626, -0.06371112912893295, 0.0022930221166461706, -0.015936290845274925, -0.022428223863244057, 0.05278630554676056, -0.012337224557995796, 0.02099880762398243, 0.04257618635892868, -0.04162324219942093, 0.017204048112034798, 0.03726692870259285, 0.02334713377058506, 0.013213593512773514, 0.028265006840229034, -0.03143014386296272, -0.033914607018232346, -0.017161505296826363, 0.023398185148835182, -0.0044881971552968025, 0.01300939079374075, -0.0019707654137164354, 0.04155517742037773, 0.020777588710188866, 0.0254912581294775, -0.021271077916026115, -0.04924679920077324, 0.0156895462423563, -0.0055092088878154755, -0.020454267039895058, 0.01511097326874733, -0.01943325623869896, 0.013443320989608765, 0.03627995029091835, -0.0804557204246521, -0.021100908517837524, 0.007542723789811134, 0.04352913051843643, -0.00007065985846566036, 0.007985162548720837, -0.032672375440597534, 0.024197977036237717, -0.03129400685429573, 0.027499249204993248, 0.008491413667798042, -0.010584487579762936, -0.045605190098285675, -0.021322127431631088, -0.010720622725784779, 0.021764565259218216, 0.07160695642232895, -0.0006333463243208826, 0.03781146556138992, -0.010422827675938606, 0.08699019998311996, -0.03869634494185448, 0.0017803891096264124, 0.04866822436451912, -0.007551232352852821, -0.0637451633810997, 0.030902620404958725, 0.019365187734365463, -0.043835435062646866, -0.03753919526934624, 0.056189678609371185, 0.008925343863666058, -0.04152114316821098, 0.007436368614435196, -0.01791875623166561, -0.015127990394830704, -0.0539434514939785, -0.02685260772705078, -0.03760726377367973, 0.007355538662523031, 0.022785577923059464, 0.02812887169420719, 0.04672830179333687, -0.00918059702962637 ]
23,329
parutils.logging.sl
init_sl_timer
Initialises the timer for the step_log function
def init_sl_timer(th_name='DEFAULT'): """Initialises the timer for the step_log function""" with lock: sl_time_dict[th_name] = time()
(th_name='DEFAULT')
[ 0.010152732022106647, 0.01365065947175026, 0.017533358186483383, 0.05544213950634003, -0.02187953144311905, 0.0011750847334042192, -0.031638748943805695, 0.06520135700702667, -0.036413416266441345, 0.016877496615052223, 0.01776072382926941, 0.05096479132771492, 0.020008141174912453, 0.003832415910437703, 0.0024616660084575415, 0.004573539365082979, 0.02976735681295395, 0.0033164718188345432, -0.07345645874738693, -0.0397714264690876, 0.03683316707611084, 0.03580128028988838, 0.03602864593267441, 0.08017247915267944, -0.015355898067355156, 0.014140368439257145, -0.034279681742191315, -0.007336901500821114, -0.01710486225783825, -0.035923708230257034, 0.014682547189295292, -0.014682547189295292, -0.012076592072844505, -0.012522577308118343, -0.0017150772036984563, -0.04351420700550079, 0.000199764413991943, -0.06180836632847786, -0.04522819072008133, 0.012085337191820145, 0.14096644520759583, 0.02235175110399723, 0.01774323359131813, -0.016825027763843536, -0.05257383733987808, 0.022054428234696388, 0.050405122339725494, -0.012024123221635818, 0.05127960443496704, -0.0062219370156526566, -0.008189520798623562, -0.051034752279520035, -0.03209347650408745, 0.0026168865151703358, -0.03153381124138832, 0.03455951437354088, 0.028350695967674255, -0.02333117090165615, 0.003281492507085204, 0.012347681447863579, 0.0377776101231575, 0.015198491513729095, -0.0005432717734947801, 0.09346460551023483, 0.011324537917971611, -0.015303429216146469, 0.009523105807602406, -0.005150697194039822, 0.024363059550523758, -0.023960798978805542, 0.02303384803235531, -0.007581755984574556, -0.022788992151618004, -0.017472144216299057, 0.007332528941333294, 0.04942570626735687, -0.044108856469392776, -0.026042064651846886, 0.01250508800148964, 0.009750470519065857, -0.02912024036049843, 0.04722201079130173, -0.06628571450710297, 0.035766299813985825, -0.007896569557487965, 0.012277722358703613, 0.03914180025458336, -0.010826082900166512, -0.021932000294327736, -0.02319125458598137, -0.06247297301888466, 0.05162939801812172, 0.026724159717559814, 0.02647930569946766, 0.033125367015600204, -0.017227288335561752, -0.022106897085905075, 0.012365170754492283, -0.005806558299809694, -0.008701092563569546, 0.03447206690907478, -0.06068902835249901, 0.02730131894350052, -0.003036637557670474, -0.0055310968309640884, -0.043339312076568604, 0.00019279588013887405, -0.03023957647383213, 0.04764176160097122, -0.026426836848258972, -0.020480360835790634, 0.025692271068692207, -0.03704304248094559, 0.01694745570421219, -0.044808439910411835, 0.021966980770230293, 0.012933583930134773, -0.01108842808753252, -0.042639728635549545, 0.03009966015815735, -0.02299886755645275, -0.022281793877482414, -0.024712853133678436, 0.009068375453352928, -0.014665057882666588, 0.025762230157852173, -0.0018047115299850702, 0.03464696556329727, 0.036903128027915955, -0.04883105680346489, 0.06271782517433167, 0.010467546060681343, 0.031463850289583206, 0.037882547825574875, 0.005684130825102329, -0.018451564013957977, 0.008346927352249622, 0.07142766565084457, 0.021564718335866928, 0.018014322966337204, -0.07611488550901413, -0.03191858157515526, -0.0459977351129055, -0.028805427253246307, 0.10171970725059509, 0.061563510447740555, -0.02480030059814453, 0.08283090591430664, -0.021005049347877502, -0.008303203620016575, -0.013676893897354603, -0.006711646914482117, 0.02417067438364029, 0.02172212488949299, -0.021984469145536423, -0.017472144216299057, 0.0018189218826591969, 0.010869807563722134, -0.009042141027748585, -0.040855783969163895, 0.01075612474232912, -0.03515416383743286, -0.011403241194784641, -0.08416011929512024, 0.0020058422815054655, 0.015417112037539482, -0.051349565386772156, 0.026409346610307693, 0.016658876091241837, 0.0018724838737398386, -0.037882547825574875, -0.033754993230104446, -0.01372061762958765, -0.016501469537615776, 0.021005049347877502, -0.005609800107777119, 0.003740595420822501, 0.019343534484505653, 0.042010098695755005, -0.013528231531381607, -0.03662329167127609, 0.046592384576797485, -0.07485563308000565, -0.008290085941553116, -0.06939886510372162, 0.0226665660738945, -0.032775573432445526, 0.010327628813683987, -0.013440783135592937, 0.04305947944521904, 0.03172619640827179, 0.02943505346775055, 0.0016702599823474884, -0.04057595133781433, 0.018451564013957977, 0.0817815288901329, -0.013764341361820698, -0.045787859708070755, 0.039211757481098175, 0.017131095752120018, 0.006143233738839626, 0.058100562542676926, -0.03938665613532066, 0.014551375061273575, 0.02859555184841156, -0.05439275875687599, 0.048586200922727585, 0.03513667359948158, -0.0440039187669754, 0.03963150829076767, -0.01695619896054268, -0.031288955360651016, -0.033947378396987915, 0.08849754929542542, 0.004258725792169571, -0.016693854704499245, -0.08150169253349304, 0.02041040174663067, 0.025045154616236687, -0.03552144765853882, 0.05260881781578064, -0.03826731815934181, 0.006589219439774752, -0.04967055842280388, 0.01579313911497593, 0.00023665660410188138, 0.05617670342326164, -0.04830636829137802, 0.012365170754492283, 0.006042668595910072, 0.02184455282986164, -0.008102072402834892, 0.02960995025932789, -0.03851217404007912, 0.036238521337509155, -0.0035503956023603678, -0.0024310590233653784, 0.0026759139727801085, 0.015889331698417664, -0.06194828078150749, -0.037707649171352386, 0.01051126979291439, 0.007848473265767097, -0.0017522426787763834, 0.0006913871038705111, 0.006265661213546991, 0.009164568036794662, 0.014804975129663944, -0.08737821131944656, 0.002411383204162121, -0.002247417811304331, 0.02597210556268692, 0.00043232188909314573, -0.02352355793118477, -0.0032202787697315216, 0.004923332016915083, 0.05009030923247337, 0.04057595133781433, -0.011857971549034119, -0.039176780730485916, 0.005723482463508844, -0.0004030813870485872, -0.06813961267471313, -0.02530750073492527, -0.0030563133768737316, 0.014498906210064888, 0.017349716275930405, 0.011683075688779354, 0.009890387766063213, -0.01380806602537632, 0.06929393112659454, -0.019973160699009895, -0.01888880506157875, -0.013991707004606724, 0.02331368252635002, -0.03742781654000282, -0.013825555332005024, 0.00616946816444397, -0.008438748307526112, 0.03833727538585663, 0.07842351496219635, 0.05194421112537384, 0.020882623270154, 0.020882623270154, -0.07118280977010727, -0.040505990386009216, -0.02530750073492527, 0.007498680613934994, -0.027318807318806648, -0.02747621387243271, -0.07492559403181076, 0.019448472186923027, 0.015557029284536839, 0.014516395516693592, 0.02513260394334793, 0.02235175110399723, -0.05099977180361748, 0.0025403692852705717, 0.01290734950453043, 0.03207598626613617, 0.02941756322979927, -0.026356877759099007, -0.01348450779914856, -0.008036486804485321, -0.03742781654000282, -0.05935981497168541, -0.06695032119750977, -0.0019479079637676477, 0.04040105268359184, -0.054322801530361176, -0.028473123908042908, 0.04585782065987587, 0.030606858432292938, -0.02403075620532036, 0.035923708230257034, 0.027248850092291832, -0.015644477680325508, -0.016072973608970642, 0.028980322182178497, 0.06565608829259872, -0.036728229373693466, 0.015522049739956856, -0.022788992151618004, -0.01662389747798443, 0.03784756734967232, -0.052014172077178955, 0.05970960855484009, -0.017620805650949478, -0.004212815314531326, 0.014560120180249214, -0.06530629098415375, -0.01675506867468357, 0.05519728362560272, -0.04127553477883339, -0.01470003742724657, -0.013834300450980663, -0.02369845286011696, -0.006720391567796469, -0.021302374079823494, -0.05831043794751167, 0.032775573432445526, -0.017314737662672997, -0.06369724869728088, 0.046452466398477554, 0.028682999312877655, 0.005850282497704029, 0.02529001049697399, -0.03924673795700073, 0.11060444265604019, -0.059429775923490524, -0.02990727312862873, -0.041695285588502884, -0.06341741234064102, 0.029295137152075768, 0.03683316707611084, 0.0397714264690876, -0.010502524673938751, -0.016851261258125305, 0.020357932895421982, -0.03994632139801979, -0.033632565289735794, 0.09353455901145935, -0.030327023938298225, 0.005561703350394964, 0.09318476915359497, -0.006510516162961721, 0.040016282349824905, -0.00464349752292037, 0.04228993505239487, -0.01579313911497593, -0.0444236695766449, -0.042639728635549545, 0.015618243254721165, 0.10248925536870956, -0.012688728980720043, -0.02023550681769848, -0.0014505464350804687, -0.011840482242405415, -0.027983414009213448, -0.07611488550901413, 0.025185072794556618, 0.018136750906705856, 0.019955672323703766, 0.036098603159189224, -0.060059402137994766, -0.025674782693386078, -0.03333524242043495, 0.041695285588502884, 0.09941107779741287, -0.035766299813985825, 0.0424298495054245, -0.010170222260057926, 0.07429596036672592, 0.01609920710325241, 0.019326044246554375, -0.012776177376508713, 0.011726799421012402, -0.008172031491994858, -0.04361914470791817, -0.022404219955205917, 0.031201506033539772, -0.020777685567736626, -0.008255107328295708, -0.015583263710141182, -0.00682095717638731, 0.016134187579154968, 0.029994722455739975, -0.05033516511321068, -0.009584318846464157, -0.00473094591870904, 0.011464455164968967, -0.01904621161520481, -0.02039291337132454, -0.09969091415405273, -0.029679907485842705, -0.05572197213768959, -0.0077435350976884365, 0.031323932111263275, 0.005526724271476269, -0.007830983027815819, -0.04012122005224228, 0.0054261586628854275, 0.06716019660234451, 0.07548525929450989, 0.011123406700789928, 0.06803467124700546, -0.03462947532534599, 0.04029611498117447, -0.0019468148238956928, 0.0012188088148832321, -0.027878476306796074, 0.06380218267440796, 0.025692271068692207, 0.003248699475079775, 0.026077043265104294, 0.026007086038589478, -0.020935092121362686, 0.02154722809791565, -0.018189219757914543, -0.012321447022259235, 0.05337836220860481, -0.024240631610155106, 0.001435243058949709, -0.010642441920936108, 0.028350695967674255, -0.009103354066610336, -0.04536810889840126, -0.002147945575416088, 0.009304485283792019, -0.007135770749300718, -0.02501017600297928, 0.041345495730638504, 0.0025513002183288336, 0.019850734621286392, 0.017690764740109444, -0.057610854506492615, -0.020970070734620094, -0.006794722750782967, 0.023943308740854263, -0.029539991170167923, -0.030834224075078964, 0.051874253898859024, 0.03714798018336296, 0.005023897159844637, 0.027983414009213448, 0.009794195182621479, 0.015836862847208977, -0.02201944962143898, -0.01642276532948017, -0.0041603464633226395, 0.011621861718595028, 0.06369724869728088, 0.03399984911084175, -0.0342097245156765, -0.019151149317622185, -0.07233712822198868, -0.03424470126628876, 0.03151632100343704, -0.00640995055437088, -0.0033120992593467236, 0.04305947944521904, 0.008102072402834892, 0.09227530658245087, 0.038057442754507065, 0.008849754929542542, -0.01003030501306057, -0.042674705386161804, -0.006869053468108177, 0.03471692278981209, -0.04211503639817238, -0.07856343686580658, -0.022561626508831978, 0.020008141174912453, 0.011831737123429775, -0.013056011870503426, -0.025517376139760017, 0.016676366329193115, -0.017349716275930405, 0.01904621161520481, 0.044458650052547455, -0.052014172077178955, -0.012373915873467922, 0.020130569115281105, 0.05722608044743538, 0.029837315902113914, -0.02808835171163082, -0.0646766647696495, -0.0011433848412707448, -0.03651835396885872, -0.007804749067872763, 0.005723482463508844, -0.023068826645612717, -0.028997812420129776, -0.023785902187228203, -0.009663022123277187, -0.04806151241064072, -0.06359230726957321, -0.010939765721559525, -0.08150169253349304, -0.04386400058865547, -0.01100972481071949, 0.012540067546069622, 0.023715943098068237, -0.019168637692928314, 0.021494759246706963, -0.008788540959358215, 0.008740444667637348, -0.02250915765762329, 0.026864077895879745, 0.042814623564481735, 0.019850734621286392, -0.06831450760364532, -0.04585782065987587, 0.009636787697672844, 0.010091518983244896, 0.06737007200717926, -0.06327749788761139, -0.09682261198759079, -0.028875384479761124, -0.054182883352041245, 0.018539011478424072, -0.0375327542424202, 0.07779388874769211, -0.025185072794556618, -0.002189483493566513, 0.019955672323703766, -0.05635159835219383, 0.08304078131914139, -0.044948358088731766, 0.013685638085007668, 0.024293100461363792, -0.047606781125068665, -0.042639728635549545, -0.10689663887023926, -0.07013343274593353, -0.014953636564314365, 0.032460760325193405, -0.0055704484693706036, 0.028560571372509003, -0.014953636564314365, -0.0065411231480538845, 0.017638295888900757, 0.03907184302806854, 0.01051126979291439, -0.03316034376621246, -0.07667455077171326, 0.025359969586133957, -0.0011056727962568402, -0.015102298930287361, 0.04354918748140335, 0.026846587657928467, 0.0010215039364993572, 0.01957090012729168, 0.010607462376356125, -0.07118280977010727, -0.0126624945551157, 0.050859853625297546, -0.002200414426624775, -0.004910214804112911, -0.011866716668009758, 0.015504560433328152, 0.03518914431333542, -0.03634345903992653, -0.016702599823474884, 0.043794043362140656, -0.022264303639531136, -0.005561703350394964, 0.009321974590420723, -0.06716019660234451, 0.011630605906248093, -0.05932483822107315, 0.045752882957458496, -0.014061665162444115, 0.0013696568785235286, -0.010056539438664913, 0.04155537113547325, 0.06803467124700546, -0.01330961100757122, 0.04145043343305588, 0.05544213950634003, -0.04911088943481445, 0.002533810678869486, -0.02301635779440403, 0.03170870617032051, 0.024572934955358505, -0.041520390659570694, 0.039701469242572784, -0.0017533358186483383, 0.01339705940335989, 0.029662419110536575, 0.04291956126689911, -0.016046738252043724, 0.07814368605613708, 0.0826210305094719, 0.05509234592318535, -0.027353787794709206, -0.010248925536870956, -0.018976252526044846, 0.08052227646112442, -0.041765246540308, -0.040366075932979584, 0.007944665849208832, -0.034087296575307846, -0.03513667359948158, 0.011464455164968967, -0.045298151671886444, 0.02184455282986164, -0.06555114686489105, 0.028000904247164726, -0.07118280977010727, -0.030781755223870277, -0.0020124008879065514, -0.010826082900166512, -0.0861889123916626, 0.02779102697968483, 0.057960644364356995, -0.01969332806766033, 0.004420504905283451, -0.011892951093614101, 0.01957090012729168, -0.0022036938462406397, 0.033807460218667984, 0.031114058569073677, -0.02891036495566368, -0.0067641157656908035, -0.0332128144800663, 0.002306445501744747, 0.004295891150832176, 0.05439275875687599, 0.041520390659570694, -0.06082894653081894, 0.02385585941374302, -0.007380625233054161, 0.04459856450557709, -0.06632068753242493, -0.007660459727048874, -0.006702902261167765, -0.06887418031692505, 0.03809242323040962, -0.004556049592792988, 0.00480527663603425, 0.02020052634179592, -0.0045779114589095116, 0.0263218991458416, 0.011595627292990685, -0.0595347136259079, 0.038896944373846054, 0.045438069850206375, 0.00431993929669261, -0.003790877992287278, -0.02303384803235531, -0.044633544981479645, 0.033125367015600204, -0.013274631462991238, 0.02959246002137661, 0.02221183478832245, 0.04277964308857918, 0.00008034300117287785, 0.04204507917165756, 0.017375951632857323, -0.047921597957611084, 0.032285865396261215, -0.02219434455037117, -0.04603271558880806, -0.002699962118640542, 0.05921990051865578, 0.003917677793651819, -0.07611488550901413, 0.008569920435547829, 0.02056780830025673, -0.007555521558970213, -0.0029710514936596155, 0.0007864869548939168, 0.044948358088731766, 0.01052001491189003, -0.0062044477090239525, -0.01594180054962635, -0.03704304248094559, 0.026234449818730354, -0.018451564013957977, 0.03513667359948158, -0.012627515941858292, 0.004429249558597803, -0.018206708133220673, -0.0005930078914389014, -0.03784756734967232, -0.01165684126317501, -0.005653523840010166, 0.03256569802761078, 0.004883980378508568, 0.0368681475520134, -0.017358461394906044, 0.03489181771874428, 0.02973237633705139, -0.026741649955511093, -0.04606769606471062, -0.07443588227033615, -0.03072928637266159, -0.045612964779138565, 0.010799848474562168, 0.020672747865319252, 0.011508178897202015, 0.05551209673285484, -0.018049301579594612, -0.016142932698130608, 0.04515823349356651, -0.0024725969415158033, -0.020935092121362686, 0.04354918748140335, 0.0029382584616541862, -0.029032791033387184, 0.007240708451718092, -0.056806329637765884, -0.011639351025223732, 0.013213418424129486, -0.01709611713886261, 0.03984138369560242, 0.042814623564481735, 0.016702599823474884, -0.0068865432403981686, 0.015084808692336082, -0.024572934955358505, 0.03153381124138832, 0.03419223427772522, 0.008119562640786171, 0.023138785734772682, -0.026671690866351128, -0.005732227582484484, -0.012592536397278309, 0.042324911803007126, 0.041765246540308, -0.04208005964756012, -0.012470108456909657, 0.019675837829709053, -0.024205652996897697, -0.05299358814954758, 0.008657368831336498, 0.010441311635077, 0.007839728146791458, 0.028997812420129776, 0.031971048563718796, -0.0069696190766990185, 0.0799626037478447, 0.04284960404038429, 0.009365699253976345, -0.02630440890789032, 0.002068149158731103, -0.004228118807077408 ]
23,330
parutils.strg
like
Behaves as the LIKE of Oracle SQL (you can match strings with wildcard character '*'). Returns the match object that you can access with the group function. Important note: If in_str is multiline and contains 'Hello World' among other characters - like(in_str, 'Hello World') returns True if exact=False - like(in_str, 'Hello World') returns False if exact=True, and like(in_str, '*Hello World*') returns a match object - like(in_str, 'Hel*ld') returns a match object If in_str is a one line string (no ) and contains 'Hello World' among other characters - like(in_str, 'Hello World') returns True if exact=False - like(in_str, 'Hello World') returns False if exact=True, and like(in_str, '*Hello World*') returns a match object - like(in_str, 'Hel*ld') returns None - like(in_str, '*Hel*ld*') returns a match object Example: - m = like('Hello World', 'He*o w*d') - m.group(0) => 'Hello World' - m.group(1) => 'll'
def like(in_str: str, like_string: str, case_sensitive=True, exact=False) -> re.Match: """Behaves as the LIKE of Oracle SQL (you can match strings with wildcard character '*'). Returns the match object that you can access with the group function. Important note: If in_str is multiline and contains 'Hello World' among other characters - like(in_str, 'Hello World') returns True if exact=False - like(in_str, 'Hello World') returns False if exact=True, and like(in_str, '*Hello World*') returns a match object - like(in_str, 'Hel*ld') returns a match object If in_str is a one line string (no \n) and contains 'Hello World' among other characters - like(in_str, 'Hello World') returns True if exact=False - like(in_str, 'Hello World') returns False if exact=True, and like(in_str, '*Hello World*') returns a match object - like(in_str, 'Hel*ld') returns None - like(in_str, '*Hel*ld*') returns a match object Example: - m = like('Hello World', 'He*o w*d') - m.group(0) => 'Hello World' - m.group(1) => 'll' """ if not case_sensitive: in_str = in_str.lower() like_string = like_string.lower() if '*' not in like_string and not exact: return like_string in in_str like_string = re.escape(like_string) like_string = like_string.replace(r'\*', '(.*)') if '\n' not in in_str: like_string = '^' + like_string + '$' m = re.search(like_string, in_str) return m
(in_str: str, like_string: str, case_sensitive=True, exact=False) -> re.Match
[ 0.036716703325510025, -0.049938980489969254, 0.012937928549945354, 0.07677452266216278, 0.008797080256044865, -0.06827956438064575, 0.04393208771944046, -0.031385138630867004, 0.02861272729933262, -0.05747425928711891, -0.06202385947108269, 0.06312571465969086, -0.08772199600934982, -0.004785078577697277, -0.007166510447859764, -0.05370661988854408, 0.026071347296237946, 0.018029572442173958, -0.04421643540263176, 0.023547740653157234, -0.03518832102417946, 0.09966470301151276, 0.011000793427228928, 0.018216175958514214, 0.013853180222213268, 0.0022070452105253935, -0.032504767179489136, -0.02470291219651699, 0.011400660499930382, 0.021255169063806534, 0.07105197757482529, -0.03334004804491997, -0.04546047002077103, 0.023938722908496857, 0.019193630665540695, -0.0507209450006485, 0.004109747242182493, 0.011587265878915787, -0.047735270112752914, -0.031385138630867004, -0.04094640910625458, -0.010512067005038261, 0.03977346792817116, -0.012511403299868107, -0.010156629607081413, 0.010405435226857662, 0.009712331928312778, -0.01766524836421013, 0.04290131852030754, 0.0173720121383667, 0.04933473840355873, 0.016021350398659706, -0.06412094086408615, -0.07720104604959488, -0.0038076252676546574, 0.010565382428467274, -0.04510503262281418, 0.1204933449625969, 0.029554635286331177, -0.014190846122801304, 0.006531165912747383, -0.029252514243125916, -0.05118301510810852, -0.0158347450196743, -0.05999786779284477, 0.003201159881427884, 0.028594953939318657, -0.06959468126296997, 0.014341906644403934, -0.05633685737848282, -0.07563711702823639, -0.022588059306144714, 0.024347474798560143, 0.006380104925483465, -0.0343175008893013, 0.023192303255200386, -0.015888061374425888, 0.010272146202623844, 0.02011776715517044, 0.027315380051732063, 0.0052071609534323215, -0.04798407480120659, 0.0504365935921669, -0.04805516451597214, -0.03328673169016838, 0.014084214344620705, -0.07126523554325104, -0.030372142791748047, 0.07954693585634232, -0.042865775525569916, -0.055128369480371475, 0.02011776715517044, 0.05843393877148628, 0.06568486988544464, -0.014821747317910194, -0.046491239219903946, 0.07698778063058853, 0.002185941208153963, 0.0149372648447752, 0.040271081030368805, -0.048766039311885834, 0.0010035558370873332, -0.0275108702480793, -0.054168689996004105, -0.01467957254499197, -0.001121849869377911, 0.006100197788327932, -0.0150083526968956, -0.003885377198457718, 0.04755755141377449, -0.04279468581080437, -0.04279468581080437, -0.043825455009937286, 0.005300463177263737, -0.0027124332264065742, 0.04275914281606674, -0.03799627721309662, -0.026977714151144028, -0.03577479347586632, -0.04652678221464157, -0.006593367550522089, 0.04343447461724281, -0.015177185647189617, -0.02173500880599022, 0.044180892407894135, -0.014626257121562958, -0.013177848421037197, -0.04496285691857338, -0.024898404255509377, 0.03799627721309662, 0.018891507759690285, 0.04108858481049538, -0.0017449763836339116, -0.00650895107537508, -0.0341753251850605, 0.12731774151325226, -0.008255038410425186, 0.02182386815547943, -0.010698671452701092, 0.018162861466407776, 0.039524659514427185, -0.007593035697937012, 0.042261529713869095, -0.036130230873823166, 0.0029878972563892603, 0.021486202254891396, 0.00843275710940361, -0.01176498457789421, 0.0414084792137146, -0.030851982533931732, 0.012866840697824955, -0.0692036971449852, 0.03433527052402496, 0.06422757357358932, -0.016216840595006943, 0.030887527391314507, 0.01612798124551773, -0.07201165705919266, -0.012742437422275543, 0.07066099345684052, 0.05118301510810852, 0.010014453902840614, -0.036858879029750824, 0.030336597934365273, 0.021272940561175346, 0.0414084792137146, -0.02536047250032425, 0.008717106655240059, -0.014581827446818352, -0.07300688326358795, -0.016385672613978386, 0.028594953939318657, 0.0074508604593575, 0.056976646184921265, -0.03483288362622261, 0.08160847425460815, -0.07549494504928589, 0.05960688367486, -0.00626903073862195, -0.012680236250162125, 0.0462779738008976, 0.018011800944805145, 0.030851982533931732, 0.007997346110641956, 0.013933153823018074, 0.037605296820402145, 0.015719227492809296, 0.0006603364017792046, -0.01467957254499197, -0.004545158240944147, -0.009125860407948494, -0.01272466592490673, 0.006468964274972677, -0.0035499329678714275, -0.052391503006219864, 0.006722213700413704, 0.03541935607790947, 0.02624906599521637, -0.0032944621052592993, 0.0730779692530632, -0.043292298913002014, -0.02041989006102085, 0.04311458021402359, 0.0115694934502244, 0.057580891996622086, 0.0038787126541137695, -0.03426418453454971, 0.012582491151988506, -0.0598912350833416, -0.1091904267668724, -0.07357557862997055, -0.03764083981513977, 0.023263391107320786, 0.03995118662714958, 0.014635142870247364, 0.0926981270313263, -0.0021170752588659525, 0.050756487995386124, -0.005122744478285313, -0.0037942964117974043, -0.011685010977089405, 0.004820622503757477, -0.056621208786964417, 0.00797957368195057, 0.07058990746736526, 0.0011179622961208224, 0.04414534941315651, 0.0368233360350132, 0.023121215403079987, -0.014430765993893147, -0.03470848128199577, -0.01995782181620598, 0.04318566620349884, 0.04201272502541542, -0.002208156045526266, -0.027937395498156548, -0.005811404902487993, 0.0181984044611454, 0.04165728762745857, -0.018376123160123825, -0.027990709990262985, 0.028310604393482208, -0.0024369689635932446, -0.009730104357004166, -0.007255369797348976, -0.04425198212265968, -0.018287263810634613, 0.009401324205100536, 0.05669229477643967, -0.0035321610048413277, -0.03328673169016838, 0.004258586559444666, -0.0002449187159072608, -0.042936861515045166, 0.0016072443686425686, -0.003565483260899782, -0.0013062331127002835, 0.019389120861887932, -0.003978679422289133, 0.06255701929330826, 0.025982487946748734, 0.02491617575287819, 0.012973472476005554, -0.049725718796253204, 0.00695324782282114, 0.017949597910046577, 0.017052117735147476, 0.014084214344620705, 0.039382483810186386, -0.039453573524951935, 0.00008948419417720288, 0.013515514321625233, 0.015790315344929695, -0.006606696173548698, -0.0455670990049839, -0.008712664246559143, -0.02004668116569519, -0.005007226951420307, -0.011445090174674988, -0.03934694081544876, -0.0553060881793499, 0.027777448296546936, 0.016598936170339584, -0.012546947225928307, 0.0813952088356018, -0.0020171082578599453, 0.07968910783529282, -0.014510739594697952, -0.02884376049041748, -0.020313259214162827, -0.04741537570953369, -0.04261696711182594, 0.029554635286331177, -0.00897924229502678, -0.07698778063058853, 0.05022333189845085, 0.032949063926935196, -0.02448965050280094, -0.008321682922542095, 0.011942703276872635, -0.024738457053899765, 0.012813525274395943, 0.03262916952371597, 0.022357024252414703, -0.016536734998226166, 0.01679442636668682, -0.027777448296546936, 0.015328246168792248, -0.046988848596811295, -0.05733208358287811, -0.011809414252638817, 0.029039250686764717, -0.01937134936451912, 0.009454639628529549, -0.05939362198114395, 0.030087793245911598, 0.012289254926145077, -0.017611932009458542, -0.02447187900543213, -0.017709678038954735, 0.027333151549100876, 0.0031056359875947237, 0.016234612092375755, -0.021432887762784958, 0.011809414252638817, -0.018536070361733437, 0.0008147296030074358, 0.03984455391764641, -0.01035211980342865, 0.01864270120859146, 0.0316694900393486, -0.015692569315433502, 0.0008791526779532433, 0.013213392347097397, -0.014919493347406387, -0.014341906644403934, -0.019122542813420296, -0.028666041791439056, -0.009059215895831585, 0.05285356938838959, 0.03717877343297005, 0.006775529123842716, -0.016821084544062614, -0.048019617795944214, -0.017576389014720917, -0.040768690407276154, 0.017949597910046577, 0.009041443467140198, 0.021184081211686134, -0.06387213617563248, 0.000988560845144093, 0.029625723138451576, -0.025858085602521896, -0.030780896544456482, -0.005273805465549231, 0.05729654058814049, -0.0077396538108587265, 0.02891484834253788, -0.016821084544062614, -0.07005675137042999, 0.02255251631140709, -0.04119521751999855, -0.008606032468378544, -0.019389120861887932, -0.08836178481578827, 0.049441371113061905, -0.027617501094937325, 0.043825455009937286, -0.009481297805905342, 0.04624243080615997, -0.008997013792395592, -0.00480729341506958, -0.029750127345323563, 0.019211402162909508, 0.04119521751999855, -0.03259362652897835, -0.04709548130631447, -0.0454249233007431, -0.015150527469813824, 0.010636470280587673, 0.029963389039039612, 0.010734215378761292, 0.056016966700553894, -0.06309017539024353, 0.015932491049170494, 0.016821084544062614, 0.09404879063367844, 0.07140741497278214, -0.022463655099272728, 0.008512730710208416, -0.058469485491514206, 0.01930026151239872, 0.003689886536449194, -0.026906626299023628, -0.04769972339272499, -0.04812625050544739, 0.00798846036195755, 0.023458881303668022, -0.06646683067083359, 0.0064778500236570835, -0.033837657421827316, -0.03764083981513977, -0.027901850640773773, -0.008566046133637428, -0.001379542169161141, 0.0818217322230339, 0.03163394704461098, -0.003432194236665964, -0.0012929042568430305, -0.00022936832101549953, -0.06088646128773689, -0.012964586727321148, -0.015150527469813824, -0.015879174694418907, -0.04062651842832565, -0.011693896725773811, 0.053813252598047256, -0.05729654058814049, -0.01796737127006054, 0.027422010898590088, -0.008321682922542095, -0.04265251010656357, 0.026053575798869133, 0.08217716962099075, 0.041159674525260925, -0.025698138400912285, 0.0511474683880806, -0.06035330519080162, 0.045140575617551804, -0.03170503303408623, -0.05850502848625183, 0.04005781561136246, -0.03991564363241196, -0.007957358844578266, 0.02381431870162487, -0.03319787234067917, 0.030443230643868446, -0.030567632988095284, -0.018464982509613037, -0.012582491151988506, 0.010156629607081413, -0.013915381394326687, -0.009001457132399082, 0.0328068882226944, -0.011924930848181248, -0.006144627463072538, 0.028008483350276947, -0.011098538525402546, 0.03485065698623657, -0.011338459327816963, -0.021344028413295746, 0.009632359258830547, -0.031776122748851776, -0.002110410714522004, -0.03845834732055664, -0.030780896544456482, -0.02980344183743, -0.024827316403388977, -0.033162329345941544, 0.020668696612119675, 0.020668696612119675, 0.018607158213853836, -0.006908818148076534, 0.04119521751999855, -0.013320024125277996, 0.016670024022459984, 0.05427531898021698, -0.01974455825984478, -0.030887527391314507, -0.017327582463622093, 0.0148661769926548, 0.0010085541289299726, -0.02935914508998394, -0.008730435743927956, 0.07286470383405685, -0.015399334020912647, -0.04290131852030754, 0.012884613126516342, -0.006273473612964153, 0.02130848355591297, -0.01752307265996933, -0.054453037679195404, 0.022232621908187866, 0.001264024991542101, 0.029234742745757103, -0.026444556191563606, 0.03707214072346687, -0.0042452579364180565, -0.007610807660967112, -0.07478407025337219, 0.00671332748606801, 0.10208167880773544, 0.06063765287399292, 0.042936861515045166, 0.009605701081454754, 0.01795848459005356, -0.06739097088575363, 0.035170551389455795, -0.001764969783835113, -0.012333684600889683, 0.04762863740324974, -0.02521829679608345, -0.07848062366247177, 0.015354904346168041, 0.01618129573762417, 0.05242704600095749, 0.009250263683497906, -0.039382483810186386, 0.014875063672661781, 0.0004959465004503727, -0.009810077957808971, 0.005607028026133776, 0.00017022129031829536, 0.009898937307298183, 0.02825728803873062, 0.02536047250032425, 0.02603580430150032, 0.010983021929860115, -0.04357665032148361, -0.07776974886655807, -0.01364880334585905, 0.003445523092523217, -0.01208487804979086, -0.07158513367176056, 0.004900595638900995, -0.0019404671620577574, 0.009196947328746319, -0.011525063775479794, 0.021610606461763382, -0.026355696842074394, -0.011996018700301647, -0.013577716425061226, -0.04823288321495056, -0.01278686709702015, 0.038636066019535065, 0.018376123160123825, 0.009374666959047318, -0.02002890780568123, -0.010307690128684044, 0.08345674723386765, -0.022961268201470375, -0.014190846122801304, 0.023121215403079987, 0.018589386716485023, 0.011942703276872635, 0.07620581984519958, -0.023618828505277634, -0.03504614531993866, -0.10051774978637695, -0.016616707667708397, 0.05413314700126648, -0.05352890118956566, 0.02683553844690323, 0.03756975382566452, 0.027190975844860077, 0.054381951689720154, -0.0640498548746109, -0.011267371475696564, -0.04407426342368126, 0.0344596765935421, 0.04400317370891571, 0.044927310198545456, 0.03616577386856079, 0.023050127550959587, -0.01716763526201248, -0.05249813199043274, 0.000085943698650226, 0.04261696711182594, 0.018287263810634613, 0.025164982303977013, 0.03261139988899231, 0.014857291243970394, 0.08679786324501038, 0.027493098750710487, -0.09653685241937637, -0.006340118125081062, -0.019868962466716766, -0.02329893410205841, -0.02671113610267639, 0.004962797276675701, 0.002160394098609686, -0.013746549375355244, -0.0409819558262825, 0.016687795519828796, -0.02767081744968891, 0.0020459876395761967, -0.021468430757522583, 0.07656125724315643, -0.06124189868569374, -0.01605689339339733, 0.0629124566912651, 0.00018591052503325045, 0.0036254634615033865, 0.03504614531993866, -0.0002835170307662338, 0.008032890036702156, -0.03454853594303131, 0.000023412369046127424, 0.0723670944571495, -0.007677452173084021, -0.02196604385972023, 0.036787789314985275, 0.0013584380503743887, -0.017203180119395256, 0.04563818871974945, 0.06426312029361725, 0.009605701081454754, -0.054381951689720154, -0.02402758225798607, -0.007428645621985197, -0.005393765401095152, 0.04553155601024628, 0.005500396713614464, -0.04243924841284752, -0.03469070792198181, 0.01430636364966631, -0.060602109879255295, 0.013844294473528862, 0.03261139988899231, -0.0058869351632893085, 0.07457080483436584, 0.054168689996004105, 0.04208381101489067, -0.020579837262630463, 0.04631351679563522, -0.005673672538250685, -0.015301587991416454, -0.026089118793606758, 0.013808750547468662, -0.03174057602882385, -0.03344667702913284, 0.03190052509307861, 0.006664454936981201, 0.012147080153226852, 0.028737129643559456, -0.027706360444426537, -0.007219826336950064, -0.05388433858752251, -0.010814188979566097, 0.0457092747092247, -0.044323068112134933, -0.07115860283374786, 0.01946020871400833, 0.014697344973683357, 0.05249813199043274, 0.04748646169900894, 0.0007897379109635949, -0.07083871215581894, -0.013444427400827408, 0.008095091208815575, 0.03764083981513977, 0.0637655034661293, 0.039524659514427185, 0.017718564718961716, -0.0014561833813786507, 0.06220157817006111, -0.04151511192321777, -0.0010946367401629686, 0.013231164775788784, 0.025609279051423073, -0.07528167963027954, -0.031385138630867004, -0.012298140674829483, 0.026568960398435593, -0.0002482509589754045, 0.04908592998981476, 0.026728907600045204, -0.04563818871974945, 0.04105304181575775, 0.027759676799178123, 0.05701218917965889, 0.045886993408203125, 0.023547740653157234, -0.0035943626426160336, 0.021130764856934547, -0.0031500656623393297, 0.0414084792137146, -0.04830396920442581, -0.05583924427628517, -0.020455433055758476, 0.012449202127754688, 0.008459414355456829, 0.010156629607081413, -0.015657026320695877, 0.04290131852030754, 0.07521059364080429, -0.01722983829677105, -0.0030834211502224207, 0.015292702242732048, -0.08473632484674454, 0.006957690697163343, 0.0026413456071168184, 0.012955700047314167, -0.03675224632024765, -0.014359679073095322, 0.0273686945438385, 0.024009808897972107, -0.011231827549636364, 0.03454853594303131, -0.03703659772872925, -0.012422543950378895, 0.03813845291733742, 0.017798537388443947, 0.02898593619465828, 0.010805303230881691, 0.05406205728650093, -0.043896544724702835, -0.023618828505277634, 0.035010602325201035, -0.021272940561175346, -0.02861272729933262, 0.006917704362422228, 0.028417235240340233, -0.03106524609029293, 0.0409819558262825, -0.012075992301106453, 0.06678672134876251, 0.0116050373762846, 0.021486202254891396, -0.03577479347586632, 0.029892301186919212, -0.046491239219903946, 0.03207824379205704, -0.0300167053937912, -0.012920156121253967, -0.021184081211686134, -0.07968910783529282, 0.0184116680175066, 0.006002452224493027, 0.0014639586443081498, -0.02418752759695053, 0.05168062448501587, 0.024880630895495415, -0.0058425054885447025, -0.001219595200382173, -0.019246945157647133, -0.03689442202448845, -0.06479627639055252, 0.007712995633482933, -0.01205822080373764, -0.0014450759626924992, 0.0027457554824650288, -0.022054903209209442, -0.04371882230043411, 0.012662464752793312, 0.03145622834563255, -0.016616707667708397, 0.04094640910625458, 0.003036770038306713, -0.005860277451574802, 0.024898404255509377, 0.006513393949717283, -0.03349999338388443, -0.0006231265142560005, 0.007188725285232067, 0.017576389014720917, -0.004678447265177965, 0.004762863740324974, 0.014999466948211193, -0.0007630800828337669, -0.03778301551938057, 0.009196947328746319, -0.00787738524377346, 0.01515941321849823, -0.057047732174396515, -0.00078529492020607, 0.006153513211756945, 0.05914481729269028 ]
23,331
parutils.strg
like_dict
Returns the key whose list elt matches (using the like_list function) in_str. See the like_list function description for more details.
def like_dict(in_str, like_dict, case_sensitive=True, skey='', exact=False): """Returns the key whose list elt matches (using the like_list function) in_str. See the like_list function description for more details.""" if not isinstance(like_dict, dict): raise Exception(E_WRONG_TYPE_DICT) for key in like_dict: item = like_dict[key] if not skey else like_dict[key][skey] if isinstance(item, str) and like(in_str, item, case_sensitive, exact=exact): return key if isinstance(item, list) and like_list(in_str, item, case_sensitive, exact=exact): return key return False
(in_str, like_dict, case_sensitive=True, skey='', exact=False)
[ 0.03429928049445152, -0.05190374702215195, -0.045090265572071075, 0.021706825122237206, 0.0018861928256228566, 0.007549230474978685, 0.03340746462345123, -0.047123607248067856, 0.08718402683734894, -0.03813409432768822, -0.08140505105257034, 0.07526934891939163, -0.0360829159617424, -0.026165910065174103, -0.013038364239037037, -0.04751600697636604, 0.017488529905676842, 0.031106576323509216, -0.01919190026819706, -0.03053581342101097, -0.0012251335429027677, 0.06403245776891708, 0.04537564516067505, 0.04127328842878342, 0.02316940389573574, -0.030642829835414886, -0.009239223785698414, -0.021207407116889954, 0.03281886503100395, 0.0326940082013607, 0.01935242861509323, -0.03770602121949196, -0.008775479160249233, 0.06196344271302223, 0.05147567391395569, -0.05104760453104973, -0.018567629158496857, -0.02054746262729168, -0.025042220950126648, -0.04773004353046417, -0.012699473649263382, 0.005498051643371582, 0.06242718547582626, 0.006492427550256252, 0.015749488025903702, 0.08169043064117432, -0.02482818439602852, 0.040559835731983185, 0.04537564516067505, 0.015044951811432838, 0.02067231759428978, -0.036065079271793365, -0.07526934891939163, -0.08404482901096344, -0.009065319783985615, -0.007477885112166405, -0.03749198466539383, 0.07130968570709229, 0.03645747900009155, -0.032426465302705765, -0.01340400893241167, -0.020476117730140686, -0.02113606221973896, -0.008744264952838421, -0.011450929567217827, -0.02067231759428978, 0.009747559204697609, -0.053187962621450424, -0.006590527482330799, -0.07205881178379059, -0.058217812329530716, -0.057682719081640244, -0.011950347572565079, 0.03816976770758629, -0.0377773679792881, 0.022759169340133667, -0.03431711718440056, 0.016213232651352882, -0.024221748113632202, 0.01910271868109703, -0.018835173919796944, -0.03447764366865158, -0.002744566649198532, -0.02596971020102501, -0.07102430611848831, 0.08326002955436707, -0.022313259541988373, 0.02639778144657612, 0.09524605423212051, 0.024810347706079483, -0.06346169114112854, 0.025577310472726822, 0.04173703491687775, 0.05875290185213089, -0.002354396739974618, -0.01863897405564785, 0.009346242062747478, -0.056862249970436096, 0.015151970088481903, 0.0375276580452919, 0.03224810212850571, -0.022973204031586647, 0.012021692469716072, -0.060251154005527496, -0.03913292661309242, -0.022134896367788315, -0.03223026543855667, -0.013948016799986362, -0.003344313707202673, 0.019245410338044167, -0.08882497251033783, -0.04840782284736633, -0.01812172122299671, 0.0375276580452919, -0.007321817334741354, 0.035048406571149826, -0.017640139907598495, -0.06371140480041504, -0.0043141646310687065, -0.027521470561623573, 0.008374161086976528, 0.031748682260513306, -0.02655830979347229, 0.006702004466205835, 0.01740826666355133, -0.01584758795797825, -0.018068211153149605, 0.0008477835217490792, -0.025827018544077873, 0.036189932376146317, 0.037384968250989914, 0.02159980684518814, -0.02470332942903042, 0.026843691244721413, 0.04637448117136955, 0.07202313840389252, -0.044198449701070786, 0.050726547837257385, 0.0005205981433391571, 0.041701361536979675, 0.07320033758878708, -0.007036435883492231, 0.054115451872348785, -0.00921246875077486, 0.032462138682603836, -0.024168239906430244, -0.011994938366115093, 0.01255678292363882, 0.029661832377314568, -0.009355159476399422, -0.025398947298526764, -0.023668821901082993, -0.00012973150296602398, 0.04277154058218002, -0.00883344653993845, -0.016231069341301918, -0.023098058998584747, -0.057754065841436386, -0.010532358661293983, 0.01888868398964405, 0.05407978221774101, -0.016159722581505775, -0.020725825801491737, -0.020993370562791824, 0.006064355373382568, 0.013832081109285355, -0.007821234874427319, 0.02646912820637226, 0.050084441900253296, -0.011763066053390503, 0.011201220564544201, 0.017952274531126022, -0.02646912820637226, 0.02918025106191635, 0.0183892659842968, 0.03362150117754936, -0.0696687400341034, 0.02193869650363922, -0.027753343805670738, -0.02693287283182144, -0.0036542199086397886, 0.03554782271385193, 0.03597589582204819, 0.01580299623310566, 0.02427525818347931, 0.055970434099435806, 0.027129072695970535, 0.030179085209965706, -0.02588052861392498, 0.029037559404969215, -0.05379439890384674, -0.008632788434624672, 0.027753343805670738, -0.023098058998584747, -0.05311661958694458, 0.0009168992983177304, 0.029840195551514626, -0.0007747659692540765, -0.05090491101145744, 0.06528100371360779, -0.04359201341867447, -0.06107162684202194, 0.008115534670650959, 0.040595509111881256, 0.03247997537255287, 0.020262081176042557, -0.0039329128339886665, -0.017800666391849518, 0.034798696637153625, -0.0871126800775528, -0.04673120751976967, -0.044198449701070786, 0.012521110475063324, -0.011281484737992287, 0.043021250516176224, 0.08796882629394531, -0.02618374675512314, 0.04298557713627815, -0.04387739300727844, -0.05629148706793785, 0.039668019860982895, 0.008806692436337471, -0.007259389851242304, 0.01024697721004486, 0.050940584391355515, -0.004209375940263271, 0.04377037659287453, 0.02550596557557583, 0.002303117187693715, 0.04740899056196213, -0.011290403082966805, 0.032801028341054916, 0.08111967146396637, 0.03651098534464836, 0.0026576146483421326, -0.032087575644254684, -0.005917205475270748, -0.028270598500967026, 0.10823090374469757, -0.002488169353455305, 0.00474446639418602, 0.05329498276114464, -0.041451651602983475, -0.01463471632450819, -0.03567267954349518, -0.028662996366620064, 0.004726629704236984, 0.020048044621944427, -0.00828052032738924, -0.013528862968087196, 0.004601775668561459, 0.02757498063147068, -0.0025149239227175713, -0.01600811444222927, 0.014732816256582737, 0.003368838457390666, 0.009899168275296688, 0.0015595649601891637, 0.0071166991256177425, -0.005582774057984352, -0.03956099972128868, 0.022438114508986473, 0.016614550724625587, -0.0338890440762043, -0.0399177260696888, -0.010603703558444977, 0.04573237523436546, 0.03845514729619026, -0.014269071631133556, -0.008075402118265629, 0.0012897902633994818, -0.025737836956977844, 0.03909725695848465, 0.0028069938998669386, -0.016204314306378365, 0.023276422172784805, 0.034977059811353683, -0.024507129564881325, 0.015615714713931084, 0.00044562979019246995, -0.02621941827237606, 0.013189972378313541, -0.008878038264811039, 0.03394255414605141, 0.08375944942235947, 0.002847125753760338, 0.048265133053064346, -0.029982885345816612, 0.012922427617013454, -0.00857482012361288, -0.012423010542988777, -0.03934696316719055, 0.00506106112152338, 0.0006621740758419037, -0.06503129005432129, 0.014063953422009945, 0.04773004353046417, -0.05950202792882919, 0.05675522983074188, 0.02206355147063732, 0.005132406484335661, 0.03460249677300453, 0.054329488426446915, -0.0056006102822721004, 0.022652151063084602, 0.020743662491440773, 0.008249307051301003, 0.006724299862980843, -0.07976410537958145, -0.04027445241808891, -0.06549503654241562, 0.06071489676833153, -0.08433020859956741, 0.02295536920428276, -0.05265287309885025, -0.018995700404047966, -0.07362841069698334, 0.020904188975691795, -0.04612477496266365, 0.046481501311063766, 0.010202386416494846, -0.03651098534464836, -0.01664130389690399, -0.036921221762895584, 0.04922829568386078, -0.07733836770057678, 0.03706391155719757, 0.03019692189991474, 0.038740526884794235, 0.04294990375638008, 0.05243883654475212, -0.05764704942703247, -0.008231470361351967, -0.01103177573531866, -0.004945124965161085, -0.003917306195944548, -0.024899529293179512, 0.017042621970176697, -0.019459446892142296, -0.009087614715099335, -0.00910545140504837, -0.037813037633895874, 0.012521110475063324, -0.006452295929193497, -0.02283051423728466, -0.02181384339928627, 0.00008277175948023796, 0.04287856072187424, 0.04341365024447441, -0.001535039977170527, -0.02757498063147068, 0.01021130383014679, 0.055899087339639664, 0.022812677547335625, -0.0075938212685287, 0.08968111127614975, 0.011691720224916935, -0.009667295962572098, -0.014260153286159039, -0.027985217049717903, 0.11479467898607254, -0.07733836770057678, -0.01220005564391613, -0.029322940856218338, -0.044162776321172714, 0.04202241450548172, -0.007076567504554987, -0.04951367899775505, 0.05646985024213791, 0.03981070965528488, -0.024382276460528374, -0.026593981310725212, -0.02063664421439171, -0.004664202686399221, 0.03265833854675293, -0.02655830979347229, -0.03087470307946205, 0.020279917865991592, -0.01651645079255104, 0.03397822752594948, -0.014545534737408161, 0.009292732924222946, 0.08326002955436707, 0.005310770124197006, 0.02757498063147068, 0.010550194419920444, 0.057076286524534225, 0.021278752014040947, 0.01209303829818964, 0.014447434805333614, -0.06256987899541855, 0.029412122443318367, 0.013751817867159843, 0.011138794012367725, -0.06460321694612503, -0.07159506529569626, 0.01774715818464756, -0.023276422172784805, -0.029037559404969215, 0.0321945920586586, 0.03189137578010559, -0.04922829568386078, -0.06381842494010925, -0.0022016731090843678, 0.019619973376393318, 0.0791933462023735, -0.010692885145545006, 0.05268854647874832, -0.0350840799510479, -0.020690154284238815, 0.016498614102602005, -0.05354468896985054, -0.0207079891115427, -0.06071489676833153, -0.04048848897218704, -0.006706463638693094, -0.005948419217020273, 0.012610292062163353, -0.045982081443071365, 0.02338344044983387, 0.03362150117754936, -0.07170208543539047, 0.01821090281009674, 0.07177343219518661, 0.02579134702682495, 0.010773149318993092, -0.009118827991187572, -0.060251154005527496, 0.08033487200737, -0.03515542298555374, -0.03681420534849167, 0.026825854554772377, 0.014848751947283745, -0.048657532781362534, 0.061785079538822174, -0.01928108185529709, 0.022188406437635422, -0.01583866961300373, -0.023329932242631912, -0.00959595013409853, -0.013609127141535282, -0.012208973988890648, -0.03203406557440758, 0.03258699178695679, 0.01572273299098015, 0.018478447571396828, 0.003199393395334482, 0.02621941827237606, 0.10416422039270401, -0.037170931696891785, -0.027753343805670738, -0.009756477549672127, -0.03913292661309242, 0.0023387898690998554, -0.011299320496618748, 0.030946047976613045, -0.02067231759428978, 0.04751600697636604, 0.009694050066173077, 0.037384968250989914, 0.012449764646589756, -0.017729321494698524, 0.027289599180221558, 0.042557504028081894, 0.015383842401206493, 0.019049210473895073, -0.034085243940353394, -0.0014859900111332536, 0.027129072695970535, 0.000023096665245248005, 0.019709154963493347, -0.006965090520679951, 0.014732816256582737, -0.0029898162465542555, 0.05151134729385376, -0.008730888366699219, 0.04655284434556961, 0.02680801786482334, -0.019816173240542412, 0.01689993217587471, 0.015473023988306522, -0.05222479999065399, 0.008021893911063671, -0.0095067685469985, 0.0031012934632599354, -0.07469858974218369, -0.024810347706079483, 0.007638412062078714, -0.012342746369540691, 0.012137629091739655, -0.01681075058877468, 0.028984051197767258, 0.07391379028558731, 0.040310125797986984, 0.060643553733825684, -0.008543606847524643, -0.05154702067375183, 0.01583866961300373, -0.0399177260696888, 0.0032127706799656153, 0.061535369604825974, -0.022081388160586357, -0.03025043196976185, 0.027967380359768867, -0.002958602737635374, 0.046659864485263824, -0.01082665752619505, 0.0219030249863863, -0.006336359307169914, -0.0348343700170517, 0.009310568682849407, 0.004401116631925106, 0.06681492924690247, -0.018478447571396828, 0.009497850202023983, 0.01372506283223629, -0.017096132040023804, 0.007023058366030455, -0.012592455372214317, -0.03058932162821293, -0.004842565860599279, 0.0018193066352978349, -0.021118225529789925, -0.030482303351163864, 0.03355015441775322, -0.010835575871169567, 0.009925922378897667, -0.01879950240254402, -0.004086751025170088, 0.013038364239037037, -0.045090265572071075, -0.0032506727147847414, -0.02456063963472843, 0.012342746369540691, 0.03756333142518997, 0.04523295536637306, -0.012663801200687885, 0.00023103633429855108, -0.004775679670274258, 0.07213015854358673, 0.006902663037180901, -0.05247450992465019, 0.05379439890384674, -0.0033086410257965326, 0.03770602121949196, 0.08918169885873795, -0.04476921260356903, -0.03681420534849167, -0.09189281612634659, -0.027164744213223457, 0.004673121031373739, -0.007406539749354124, 0.047373317182064056, -0.014946851879358292, 0.016320250928401947, -0.040809545665979385, -0.038276784121990204, -0.02042260766029358, -0.033104244619607925, 0.03133844956755638, -0.000658272416330874, 0.0319448821246624, 0.02261647768318653, 0.023989876732230186, -0.003078998066484928, -0.047194954007864, -0.027842525392770767, 0.020315591245889664, 0.006581609137356281, 0.009934840723872185, 0.025470292195677757, 0.03544080629944801, 0.028306270018219948, 0.02825276181101799, -0.057076286524534225, 0.019423773512244225, 0.012975936755537987, -0.05778973922133446, 0.02655830979347229, 0.011959264986217022, -0.034887880086898804, -0.004153637681156397, 0.01944161020219326, 0.06788510829210281, 0.018835173919796944, 0.008721970021724701, -0.003917306195944548, 0.032640501856803894, -0.11179817467927933, 0.012788655236363411, 0.02363314852118492, -0.0037233359180390835, -0.020565299317240715, 0.03041095845401287, 0.02402554824948311, -0.03856216371059418, 0.03540513291954994, 0.024132566526532173, 0.028199251741170883, -0.0014636946143582463, -0.014813079498708248, 0.0217781700193882, 0.012485437095165253, -0.031106576323509216, 0.03401389718055725, 0.019512955099344254, 0.07020383328199387, -0.03451331704854965, 0.0217781700193882, -0.005190374795347452, -0.04587506502866745, 0.04537564516067505, 0.007892579771578312, -0.016757240518927574, -0.00018156836449634284, 0.01541951484978199, -0.02926943264901638, 0.016703732311725616, 0.030018558725714684, -0.029162414371967316, 0.03977503627538681, 0.0029207004699856043, 0.011950347572565079, 0.007165749091655016, -0.04384172335267067, -0.062248822301626205, -0.002744566649198532, 0.001804814557544887, -0.003968585282564163, -0.09603085368871689, 0.008057566359639168, 0.018870847299695015, 0.05311661958694458, 0.007464508060365915, -0.024293094873428345, 0.017176395282149315, 0.015383842401206493, -0.05265287309885025, -0.02985803224146366, 0.08433020859956741, -0.020476117730140686, -0.06189209595322609, -0.007281685248017311, 0.05197509378194809, 0.023526132106781006, 0.10965781658887863, 0.01783633977174759, -0.0854717344045639, -0.025220584124326706, 0.040595509111881256, -0.005622906144708395, 0.0614996962249279, -0.008565901778638363, 0.03906158357858658, 0.006987385917454958, 0.02985803224146366, -0.004160325974225998, -0.04837215319275856, -0.03977503627538681, 0.01737259514629841, -0.02418607659637928, -0.036065079271793365, -0.06281958520412445, -0.013216727413237095, 0.00544454250484705, 0.025131402537226677, -0.00734857190400362, -0.0016688124742358923, 0.057076286524534225, -0.002795846201479435, 0.06167805939912796, -0.034120917320251465, 0.008204716257750988, -0.0353337861597538, 0.0028270597103983164, 0.0033465430606156588, -0.007076567504554987, 0.02341911382973194, -0.006492427550256252, -0.06549503654241562, -0.011807656846940517, -0.021082552149891853, 0.023704495280981064, 0.023740166798233986, 0.05739733949303627, 0.05889559164643288, 0.016614550724625587, -0.021421443670988083, -0.03041095845401287, -0.04855051636695862, -0.006006387062370777, -0.06795645505189896, -0.04976338520646095, -0.04919262230396271, 0.02233109623193741, -0.03981070965528488, -0.018228739500045776, 0.010309403762221336, 0.03447764366865158, -0.010193468071520329, -0.025595147162675858, 0.018781665712594986, 0.04362768679857254, 0.02079717069864273, 0.0010523439850658178, -0.01583866961300373, -0.03258699178695679, 0.023579640313982964, 0.04095223546028137, -0.036707185208797455, -0.04298557713627815, 0.005712087731808424, 0.032176755368709564, -0.0721658319234848, 0.006679709069430828, -0.036956895142793655, 0.04048848897218704, -0.031409792602062225, 0.018335755914449692, -0.04701659083366394, 0.039239946752786636, -0.05493592470884323, -0.018407102674245834, 0.013296990655362606, -0.015348169952630997, -0.06492427736520767, -0.03511975333094597, 0.02596971020102501, -0.05154702067375183, 0.0038526493590325117, -0.014010444283485413, -0.02418607659637928, -0.01575840637087822, 0.001851634937338531, -0.013412927277386189, 0.003317559137940407, -0.08668460696935654, -0.037813037633895874, -0.007865825667977333, 0.023526132106781006, 0.021332262083888054, 0.03934696316719055, -0.008904792368412018, -0.018621137365698814, -0.016783995553851128, -0.03545864298939705, -0.010594785213470459, 0.005556019488722086, 0.010496685281395912, -0.04773004353046417, 0.030018558725714684, 0.05311661958694458, -0.05022713169455528, -0.020957699045538902, 0.030981721356511116, 0.013618044555187225, -0.052545856684446335, 0.00883344653993845, -0.011486602015793324, 0.021207407116889954, -0.025809183716773987, -0.0037656971253454685, 0.0028159120120108128, 0.030660666525363922, -0.04616044461727142, -0.008690755814313889, -0.011281484737992287, 0.031231429427862167 ]
23,332
parutils.strg
like_list
Returns True if in_str matches (using the like function) one of the like_list elements. See the like function description for more details.
def like_list(in_str, like_list, case_sensitive=True, exact=False): """Returns True if in_str matches (using the like function) one of the like_list elements. See the like function description for more details.""" if not isinstance(like_list, list): raise Exception(E_WRONG_TYPE_LIST) for elt in like_list: if like(in_str, elt, case_sensitive, exact=exact): return elt return False
(in_str, like_list, case_sensitive=True, exact=False)
[ 0.03246686980128288, -0.063784159719944, -0.0173655953258276, 0.012061860412359238, 0.01821907050907612, -0.009005027823150158, 0.02482043392956257, -0.03668199107050896, 0.0288439579308033, -0.011339019984006882, -0.05030274763703346, 0.04263889417052269, -0.050267912447452545, -0.03919015824794769, -0.017583318054676056, -0.05678218603134155, 0.0026975893415510654, -0.0001801658800104633, -0.02455916628241539, -0.002044419990852475, -0.02297414280474186, 0.0682431310415268, 0.012514724396169186, 0.04337044432759285, 0.05713054537773132, -0.015972167253494263, 0.015946039929986, -0.010302657261490822, -0.011251930147409439, 0.04357945919036865, 0.036716826260089874, 0.000051164930482627824, -0.05030274763703346, 0.03495762124657631, 0.08820398896932602, -0.018898366019129753, -0.03495762124657631, 0.00401699123904109, -0.018602263182401657, -0.036960676312446594, 0.00018887479382101446, -0.027537619695067406, 0.06998491287231445, 0.012715029530227184, 0.01710432767868042, 0.05207936838269234, -0.024210810661315918, 0.03929466754198074, 0.025726161897182465, 0.018532590940594673, 0.036856167018413544, -0.0031744029838591814, -0.10151122510433197, -0.08040078729391098, -0.004850870929658413, 0.02368827350437641, -0.023357335478067398, 0.07886801660060883, 0.06218171864748001, -0.0007647524471394718, 0.0067929611541330814, -0.024228228256106377, -0.007716107182204723, -0.04964086785912514, -0.007032456342130899, 0.019455736503005028, 0.0011049447348341346, -0.05253223329782486, -0.0069105313159525394, -0.0361594557762146, -0.07036811113357544, -0.04542575031518936, 0.005756598897278309, 0.03480086103081703, -0.019351230934262276, 0.042813073843717575, 0.020082779228687286, 0.021093014627695084, -0.015728317201137543, 0.028513018041849136, -0.02441982366144657, -0.0025016386061906815, 0.04873514175415039, -0.01722625270485878, -0.05963871255517006, 0.04128030315041542, -0.050999462604522705, 0.016425032168626785, 0.07099515199661255, -0.00461573014035821, -0.021824564784765244, 0.020936254411935806, 0.031073441728949547, 0.02567390911281109, -0.031561143696308136, -0.010851319879293442, 0.01718270778656006, -0.05706087127327919, 0.007498383987694979, 0.030010953545570374, -0.014718081802129745, 0.03204884007573128, -0.001290009473450482, -0.09335967153310776, -0.013455288484692574, 0.0089876102283597, -0.04406715929508209, -0.011922517791390419, 0.008935356512665749, 0.03375579044222832, -0.07510576397180557, -0.0228522177785635, -0.004580894019454718, 0.016651462763547897, -0.005782725755125284, 0.012497306801378727, -0.009196624159812927, -0.034382835030555725, -0.014578739181160927, -0.05169617384672165, 0.027520200237631798, 0.014961931854486465, -0.00833008624613285, -0.0481429323554039, 0.038075417280197144, -0.0022109781857579947, -0.007955602370202541, -0.02381019853055477, -0.05155683308839798, -0.0013455288717523217, 0.027676962316036224, 0.018393248319625854, -0.014883551746606827, 0.023740528151392937, 0.030951516702771187, 0.044554855674505234, -0.03164822980761528, -0.010520380921661854, -0.019281558692455292, -0.001650341204367578, 0.05594613030552864, -0.004236891865730286, 0.08604416996240616, 0.0007756385602988303, -0.0054909768514335155, 0.006057057064026594, -0.004990213550627232, 0.0007168533629737794, 0.02039630152285099, 0.007724815979599953, -0.02626611664891243, -0.04984988272190094, -0.009187915362417698, 0.02664930932223797, -0.030028371140360832, 0.014021368697285652, -0.024088885635137558, -0.0228522177785635, 0.006287843454629183, 0.030272221192717552, 0.03387771546840668, 0.013577213510870934, -0.050999462604522705, 0.0863228589296341, 0.011164841242134571, 0.02090141922235489, -0.06242556869983673, 0.018985455855727196, 0.010076225735247135, -0.017740078270435333, 0.022329682484269142, -0.028042737394571304, 0.0062007540836930275, 0.053437959402799606, -0.036856167018413544, 0.05375147983431816, -0.07385168224573135, 0.048073261976242065, -0.01699982024729252, -0.010494253598153591, -0.033773209899663925, 0.016137637197971344, 0.04375363513827324, -0.01068584993481636, 0.008517327718436718, 0.06538660079240799, 0.00862183514982462, 0.017234960570931435, -0.016102802008390427, 0.0018833049107342958, -0.03629879653453827, -0.00866538006812334, 0.02664930932223797, -0.04458969458937645, -0.06131082773208618, -0.007920767180621624, -0.0013596807839348912, 0.01881127618253231, -0.04020039364695549, 0.037796732038259506, -0.023914705961942673, -0.04901382699608803, 0.037343867123126984, 0.004824744071811438, 0.0838843584060669, 0.05082528293132782, -0.03516663610935211, -0.02957550808787346, 0.013829772360622883, -0.09802765399217606, -0.04399748519062996, -0.021911654621362686, -0.0012638826156035066, 0.04072292894124985, 0.04100161790847778, 0.09517112374305725, -0.044415514916181564, 0.014247800223529339, -0.029401328414678574, -0.059081342071294785, 0.028774285688996315, -0.004972795955836773, -0.02675381489098072, 0.019124798476696014, 0.04458969458937645, 0.03222301974892616, 0.02210325002670288, 0.03175273910164833, -0.007790132891386747, 0.0410364530980587, -0.05618998035788536, 0.007415649015456438, 0.08444172888994217, 0.036821331828832626, -0.037343867123126984, 0.003065541386604309, -0.015144819393754005, 0.04131513833999634, 0.05458753928542137, 0.018776440992951393, -0.016259562224149704, 0.03619429096579552, -0.016033129766583443, -0.04291757941246033, -0.0035924313124269247, -0.019089961424469948, -0.014996767975389957, 0.018915783613920212, 0.01598958484828472, -0.012218620628118515, -0.03222301974892616, 0.059185851365327835, 0.010973244905471802, -0.04357945919036865, 0.004633147735148668, -0.003200529608875513, 0.01446552388370037, -0.0006379287224262953, 0.004659274592995644, 0.012906625866889954, -0.008168971166014671, -0.006949721835553646, 0.06939271092414856, -0.022329682484269142, -0.04511222988367081, 0.0015360364923253655, 0.0002356852637603879, 0.0520096980035305, 0.023531513288617134, -0.011190967634320259, 0.020831746980547905, -0.0359504409134388, 0.028042737394571304, 0.020100196823477745, -0.023287663236260414, -0.006135437171906233, 0.02551714889705181, -0.04458969458937645, 0.011095169931650162, 0.0025299424305558205, -0.0530199334025383, 0.03298940509557724, 0.00816461630165577, 0.029471000656485558, 0.04828227683901787, -0.004689755849540234, 0.07123900204896927, 0.015066439285874367, -0.038075417280197144, 0.004837807733565569, -0.015954749658703804, -0.03541048616170883, 0.036960676312446594, -0.04497288540005684, -0.03943400830030441, 0.03272813931107521, 0.06953205168247223, -0.019142216071486473, 0.042464714497327805, 0.012645358219742775, -0.02616160921752453, 0.01820165291428566, 0.03213592991232872, -0.02478559873998165, 0.003383417148143053, -0.01753106527030468, -0.023148320615291595, 0.01728721521794796, -0.05288058891892433, -0.03591560572385788, -0.012175076641142368, 0.05472688004374504, -0.0911998599767685, 0.011757047846913338, -0.02870461530983448, 0.010851319879293442, -0.03065541386604309, -0.016642754897475243, -0.03887663781642914, 0.007254533935338259, 0.020692404359579086, -0.021685222163796425, 0.0373787023127079, 0.034644100815057755, 0.02490752376616001, -0.050651103258132935, 0.009344675578176975, 0.05117363855242729, 0.010799066163599491, 0.03490537032485008, 0.020309211686253548, -0.0554584302008152, -0.003383417148143053, -0.018410665914416313, 0.01968216896057129, -0.01978667639195919, -0.0014054026687517762, 0.015066439285874367, -0.011495780199766159, 0.004528640769422054, -0.03751804679632187, 0.01453519519418478, -0.035340815782547, 0.020622732117772102, -0.03065541386604309, -0.01647728495299816, -0.004498159512877464, 0.07670820504426956, 0.048421621322631836, 0.017400430515408516, -0.012114114128053188, 0.01989118382334709, 0.027694379910826683, 0.024367570877075195, -0.017295923084020615, 0.06329645961523056, -0.01754848286509514, 0.04333560913801193, -0.009275004267692566, -0.030968934297561646, 0.08952774107456207, -0.1176053136587143, 0.03912048786878586, -0.012410216964781284, -0.07036811113357544, 0.044415514916181564, -0.02149362489581108, -0.011382563970983028, 0.04559992998838425, 0.06120632216334343, -0.029784521088004112, -0.008782950229942799, -0.015388669446110725, -0.03312874957919121, 0.08402369916439056, -0.05326378345489502, -0.031456634402275085, -0.023026395589113235, -0.010947117581963539, 0.029261985793709755, -0.04542575031518936, 0.006888759322464466, 0.0816548764705658, -0.03288489952683449, 0.029122643172740936, 0.04277823492884636, 0.058593641966581345, 0.0520096980035305, -0.025691326707601547, 0.012436344288289547, -0.06570012867450714, 0.025360388681292534, -0.01453519519418478, -0.002445030491799116, -0.07141318172216415, -0.03358161076903343, -0.011269347742199898, -0.001164818648248911, -0.027816304937005043, 0.00800350122153759, -0.011069042608141899, -0.043056923896074295, -0.023165738210082054, 0.0177749153226614, -0.024019213393330574, 0.10353169590234756, -0.015728317201137543, 0.04556509107351303, -0.03091668151319027, -0.01141740009188652, -0.026422876864671707, -0.037100017070770264, -0.005438723135739565, -0.04333560913801193, -0.07705656439065933, 0.0321010947227478, -0.01592862233519554, 0.012497306801378727, -0.002876122249290347, -0.01821907050907612, 0.00028167926939204335, -0.05848913639783859, 0.05500556528568268, 0.08221224695444107, 0.013673011213541031, -0.013847189955413342, 0.04218602925539017, -0.02811240777373314, 0.04169832915067673, -0.04511222988367081, -0.042569223791360855, 0.032292690128088, -0.02151104249060154, -0.06956689059734344, 0.055284250527620316, -0.03912048786878586, 0.0056564463302493095, -0.03894630819559097, -0.041489314287900925, -0.03466152027249336, -0.0014043140690773726, 0.04089710861444473, -0.029105225577950478, 0.030742503702640533, -0.00017798863700591028, 0.012697611935436726, -0.03347710520029068, 0.010607469826936722, 0.06270425766706467, -0.027885975316166878, -0.04960603266954422, 0.0006548022502101958, -0.024280481040477753, -0.010276530869305134, -0.00732856011018157, 0.022625785320997238, -0.009196624159812927, 0.0036533938255161047, 0.034017059952020645, 0.03541048616170883, 0.055179744958877563, 0.0035858997143805027, 0.004297854378819466, 0.018375830724835396, 0.02454174868762493, 0.011347728781402111, -0.010084934532642365, -0.005020694807171822, 0.03689100220799446, 0.01795780286192894, 0.041593823581933975, -0.04458969458937645, 0.0046462113969028, -0.0180797278881073, 0.07113449275493622, 0.02003052644431591, 0.0008959305705502629, 0.01856742613017559, 0.0031961752101778984, -0.00843894761055708, -0.007986083626747131, -0.06455054879188538, 0.02260836772620678, -0.0035663044545799494, 0.00884826760739088, -0.07280661165714264, 0.010076225735247135, -0.013664302416145802, 0.010084934532642365, -0.05354246869683266, -0.02037888392806053, 0.036333631724119186, 0.08994577080011368, 0.014709373004734516, 0.04190734401345253, -0.014866134151816368, -0.05232321843504906, 0.017478810623288155, -0.02907039038836956, 0.03283264487981796, 0.06883534044027328, -0.030620578676462173, -0.026475129649043083, 0.021075597032904625, 0.037343867123126984, 0.05448302999138832, -0.002213155385106802, -0.019455736503005028, -0.021232357248663902, -0.014395851641893387, -0.0005818650242872536, 0.006440249737352133, 0.054935894906520844, -0.0173655953258276, 0.004485095851123333, 0.05106913298368454, -0.019960854202508926, 0.01893320120871067, -0.013882025144994259, -0.024994613602757454, -0.00843023881316185, -0.00903986394405365, -0.054935894906520844, -0.039015982300043106, 0.03142179921269417, -0.03213592991232872, 0.0088874576613307, -0.015022894367575645, 0.0004120409721508622, 0.03499245643615723, -0.02689315937459469, -0.0038493445608764887, -0.054935894906520844, -0.00874376017600298, 0.017374305054545403, 0.05880265682935715, 0.014857425354421139, -0.0006956253200769424, 0.027537619695067406, 0.07308529317378998, -0.03919015824794769, -0.06921853125095367, 0.013768809847533703, -0.00816461630165577, 0.01832357607781887, 0.08109750598669052, -0.033651284873485565, -0.043056923896074295, -0.06587430089712143, -0.018985455855727196, 0.03824959695339203, -0.025447476655244827, 0.01943831890821457, 0.01629439741373062, 0.029627760872244835, -0.03183982893824577, -0.038075417280197144, -0.011530616320669651, -0.049919553101062775, 0.015667354688048363, -0.006178982090204954, 0.029976118355989456, 0.01135643757879734, 0.022207757458090782, 0.006531693506985903, -0.04340527951717377, -0.052950259298086166, -0.004685401450842619, -0.004746363963931799, -0.02013503387570381, 0.05880265682935715, 0.017069492489099503, 0.053681809455156326, 0.0014489473542198539, -0.05936002731323242, 0.01781846024096012, 0.03919015824794769, -0.04608762636780739, 0.04190734401345253, -0.01992601901292801, -0.036229126155376434, -0.04100161790847778, -0.054448194801807404, 0.010372328571975231, 0.03276297450065613, 0.023845035582780838, 0.013760100118815899, 0.03741353750228882, -0.10819967836141586, 0.0014772512950003147, 0.036821331828832626, -0.0055345213040709496, -0.015397378243505955, 0.047341711819171906, 0.011495780199766159, -0.028495600447058678, -0.007877222262322903, 0.025255881249904633, 0.028182080015540123, -0.0004221106937620789, -0.0012421103892847896, 0.030951516702771187, 0.015528012067079544, -0.07663853466510773, 0.02530813403427601, 0.0331113301217556, 0.008038337342441082, -0.07322463393211365, 0.006244299001991749, 0.021702639758586884, -0.011966061778366566, 0.0666406899690628, 0.0027346021961420774, -0.06172885745763779, -0.012061860412359238, 0.0025081702042371035, -0.06953205168247223, 0.05476171523332596, 0.032292690128088, -0.0029022491071373224, 0.04845645651221275, 0.02259095013141632, 0.04357945919036865, -0.0026823487132787704, -0.0004316360573284328, -0.05413467437028885, -0.001981280278414488, -0.027328604832291603, 0.015440923161804676, -0.06068378686904907, 0.04483354464173317, -0.0008355124155059457, 0.02382761798799038, 0.008952774107456207, -0.016564374789595604, -0.025865506380796432, 0.01405620388686657, -0.08325731754302979, -0.027433112263679504, 0.04838678240776062, -0.05570228025317192, -0.02933165803551674, 0.0015262389788404107, 0.026718979701399803, 0.04870030656456947, 0.07893769443035126, 0.005978676490485668, -0.06493373960256577, -0.03344227001070976, 0.04702819138765335, 0.0016220371471717954, 0.08130651712417603, 0.0284433476626873, 0.06712839007377625, -0.0054474323987960815, 0.05086011812090874, -0.0012551737017929554, -0.010494253598153591, -0.01368172001093626, 0.03887663781642914, -0.011286766268312931, 0.004650565795600414, -0.006758125498890877, 0.00032141373958438635, -0.02624869905412197, 0.03570659086108208, 0.011495780199766159, 0.004977150354534388, 0.03161339461803436, 0.028408510610461235, 0.04396265000104904, 0.01785329543054104, 0.03873729705810547, -0.015972167253494263, 0.040235232561826706, 0.002445030491799116, -0.012262165546417236, -0.01093840878456831, -0.0434749498963356, -0.025569401681423187, 0.014091040007770061, -0.026562219485640526, 0.031003771349787712, 0.013011133298277855, 0.05939486622810364, 0.04518190026283264, 0.025726161897182465, 0.012061860412359238, 0.014212965033948421, -0.07566313445568085, -0.037309031933546066, -0.04047907888889313, -0.045147065073251724, -0.0568866953253746, 0.04169832915067673, 0.03042898140847683, -0.030725086107850075, -0.004008282441645861, 0.04486837983131409, -0.007480965927243233, -0.021284611895680428, 0.02539522387087345, 0.02748536504805088, 0.04946669191122055, 0.0528109185397625, -0.004132384434342384, -0.052706409245729446, -0.012889208272099495, 0.03116053156554699, -0.0321010947227478, -0.010633597150444984, -0.010328784584999084, 0.03424349054694176, -0.061171483248472214, 0.009997845627367496, -0.06023092195391655, 0.0822819173336029, -0.015292870812118053, 0.012941461987793446, -0.032553959637880325, 0.05120847374200821, -0.04396265000104904, 0.009466600604355335, -0.04100161790847778, -0.04162865877151489, -0.05451786518096924, -0.05807110667228699, 0.02480301633477211, -0.015876369550824165, -0.007071646396070719, -0.030637996271252632, 0.01099066250026226, 0.01576315239071846, 0.019960854202508926, -0.014134583994746208, -0.010659723542630672, -0.0749664232134819, -0.025203626602888107, -0.03288489952683449, -0.004165043123066425, 0.034138984978199005, -0.019873766228556633, 0.007986083626747131, -0.0165556650608778, -0.05194002389907837, -0.013646884821355343, 0.0034944559447467327, -0.0000694672780809924, 0.009449183009564877, -0.040235232561826706, -0.011443526484072208, 0.002612677402794361, -0.04852612689137459, -0.03884180262684822, 0.08729825913906097, 0.024959776550531387, -0.04984988272190094, -0.040235232561826706, -0.051487162709236145, -0.009370802901685238, -0.010224277153611183, 0.018306158483028412, -0.0002775969624053687, 0.01466582901775837, -0.05531908944249153, 0.003731774166226387, -0.007955602370202541, 0.07831064611673355 ]
23,333
parutils.file
list_files
Lists the files of the 'in_dir' directory - incl_root: if True, the root directory is included in each paths - walk: if True, the files of all the subdirectories are listed as well - only_list: list of wanted patterns. e.g. ['*.py'] (only these patterns will be output) - ignore_list: list of unwanted patterns. e.g. ['*.pyc'] (these patterns won't be output)
def list_files(in_dir, walk=False, incl_root=True, abspath=False, only_list=[], ignore_list=[]): """Lists the files of the 'in_dir' directory - incl_root: if True, the root directory is included in each paths - walk: if True, the files of all the subdirectories are listed as well - only_list: list of wanted patterns. e.g. ['*.py'] (only these patterns will be output) - ignore_list: list of unwanted patterns. e.g. ['*.pyc'] (these patterns won't be output) """ if not p.exists(in_dir): return [] out = [] for root, dir, files in os.walk(in_dir): for file in files: cur_path = file if not incl_root else p.join(root, file) cur_path = p.abspath(cur_path) if abspath else cur_path only = not only_list or like_list(file, only_list, case_sensitive=False) ignore = not like_list(file, ignore_list, case_sensitive=False) if only and ignore: out.append(cur_path) if not walk: break out.sort() return out
(in_dir, walk=False, incl_root=True, abspath=False, only_list=[], ignore_list=[])
[ -0.025936486199498177, -0.03128577023744583, 0.014503336511552334, 0.0036729229614138603, 0.04181481525301933, 0.013947689905762672, 0.03729429468512535, -0.0524757094681263, 0.0020212847739458084, -0.03156830370426178, 0.0022696780506521463, -0.017469927668571472, -0.01118828821927309, -0.04347233846783638, -0.004574672784656286, 0.03301863744854927, 0.025013547390699387, -0.004016670864075422, 0.01964542828500271, -0.004259177949279547, -0.0029100850224494934, 0.0405716709792614, -0.006196880247443914, 0.07293106615543365, 0.023845745250582695, 0.009172889403998852, -0.005363409407436848, -0.008838559500873089, 0.00630047544836998, -0.03365904465317726, -0.012516191229224205, 0.06558521836996078, 0.020022138953208923, -0.0329621285200119, -0.0718386098742485, -0.05168461799621582, 0.0157935693860054, 0.03550492227077484, -0.025465600192546844, 0.042869605123996735, 0.008287620730698109, -0.02872414141893387, 0.03663505241274834, 0.013505055569112301, 0.0010977566707879305, 0.000794622756075114, -0.027499834075570107, 0.00498669920489192, -0.018364615738391876, 0.03226521611213684, -0.010086411610245705, 0.0034727957099676132, -0.05172228813171387, -0.025522105395793915, 0.021171104162931442, 0.029289206489920616, -0.002634615870192647, 0.005462295841425657, 0.07530433684587479, -0.002289690775796771, -0.019551251083612442, 0.02849811501801014, -0.023224174976348877, -0.03591930493712425, 0.010491374880075455, -0.010161753743886948, -0.05160927772521973, -0.0800885558128357, -0.030720705166459084, 0.019212212413549423, -0.06283523887395859, 0.00017452270549256355, 0.03646553307771683, 0.05526336282491684, -0.014635185711085796, -0.021472472697496414, 0.035994645208120346, -0.02798955701291561, -0.010660894215106964, 0.009389498271048069, -0.027556339278817177, -0.04053400084376335, -0.026576893404126167, 0.0508558563888073, 0.03970523923635483, 0.0068796672858297825, 0.01925930194556713, -0.06566055864095688, 0.05115722492337227, 0.0647941306233406, -0.010557299479842186, -0.011329554952681065, 0.027612846344709396, 0.04539356008172035, -0.09417751431465149, 0.025220736861228943, 0.017705371603369713, 0.008508938364684582, 0.003837733529508114, 0.03637135401368141, -0.009530764073133469, -0.028309760615229607, -0.008979826234281063, -0.021020419895648956, 0.03311281278729439, -0.034073423594236374, -0.04840724170207977, -0.012902319431304932, 0.008843268267810345, 0.00084171153139323, 0.010962262749671936, 0.013222523033618927, 0.034073423594236374, 0.012845812365412712, -0.011555580422282219, 0.007524783257395029, -0.030551185831427574, -0.03034399449825287, -0.055527061223983765, -0.037143610417842865, 0.03480800986289978, 0.0017093218630179763, -0.029044345021247864, -0.006465286016464233, 0.018713071942329407, -0.03375321999192238, 0.028686469420790672, -0.020832065492868423, -0.022640274837613106, 0.06389002501964569, 0.013853511773049831, 0.03273610398173332, -0.000639229838270694, 0.009323573671281338, 0.026671070605516434, 0.045016851276159286, -0.0036258341278880835, -0.03623950481414795, 0.036277178674936295, -0.011338972486555576, 0.06961601972579956, -0.04456479847431183, 0.04825655743479729, 0.014635185711085796, -0.008344127796590328, -0.013288446702063084, 0.020022138953208923, -0.0262001845985651, 0.015313263051211834, 0.030249817296862602, 0.02746216207742691, -0.01014291774481535, -0.03445013239979744, -0.0034374792594462633, -0.009963980875909328, 0.006234551314264536, -0.017818385735154152, 0.011988797225058079, -0.03047584369778633, -0.01020884234458208, 0.005867259111255407, -0.0043510012328624725, 0.00532102957367897, 0.05289009213447571, 0.020135151222348213, 0.013081256300210953, -0.007416479289531708, -0.011894620023667812, -0.03256658464670181, -0.013335535302758217, 0.015850074589252472, -0.042869605123996735, -0.03343301638960838, 0.010303019545972347, -0.04799285903573036, 0.010707982815802097, -0.024260127916932106, 0.013128344900906086, 0.01280814129859209, 0.020832065492868423, 0.030023790895938873, -0.035184718668460846, 0.0745885893702507, -0.01936289668083191, -0.0034845678601413965, 0.01711205393075943, -0.0025333750527352095, -0.023958759382367134, 0.004014316480606794, 0.0006804325385019183, -0.05661952123045921, 0.042229197919368744, -0.011404897086322308, -0.010773907415568829, -0.061705105006694794, 0.02555977739393711, -0.04897230491042137, 0.007887366227805614, -0.029854271560907364, -0.01075507141649723, 0.022282399237155914, -0.0018576513975858688, 0.030155640095472336, -0.05104421079158783, 0.03104090876877308, 0.039629895240068436, -0.05341748520731926, 0.012007633224129677, 0.03006146103143692, -0.030551185831427574, 0.015171997249126434, -0.031116250902414322, -0.0015821822453290224, -0.054886654019355774, 0.004569963552057743, 0.036277178674936295, 0.015190832316875458, 0.03989359363913536, -0.03145528957247734, -0.030306322500109673, 0.010303019545972347, 0.016151443123817444, -0.08747207373380661, 0.005278649739921093, 0.0343371219933033, -0.0027076033875346184, 0.06897561252117157, 0.009672030806541443, 0.02572929672896862, -0.049349017441272736, -0.03831141069531441, -0.011555580422282219, 0.017008459195494652, 0.0264827162027359, -0.02983543649315834, -0.0373319648206234, 0.028629964217543602, -0.07835569232702255, -0.022960476577281952, -0.019438238814473152, 0.008278203196823597, 0.02058720402419567, -0.018694236874580383, -0.014729362912476063, -0.028347430750727654, 0.004593508318066597, 0.009300028905272484, 0.03608882427215576, -0.006135664880275726, 0.031700149178504944, -0.008344127796590328, -0.014955389313399792, -0.014541007578372955, -0.028686469420790672, -0.015275592915713787, 0.015511035919189453, -0.022301234304904938, 0.04561958834528923, -0.02908201515674591, 0.06347564607858658, 0.02855462208390236, 0.023431364446878433, -0.004911357071250677, -0.015991341322660446, 0.05590377002954483, -0.08242415636777878, 0.04561958834528923, -0.03614532947540283, -0.02220705710351467, 0.014333817176520824, 0.031474124640226364, -0.05232502520084381, 0.03872579336166382, 0.04464014247059822, -0.03959222510457039, 0.028837153688073158, -0.019033275544643402, 0.061140041798353195, -0.018760159611701965, 0.02382691018283367, -0.0359569750726223, 0.04158879071474075, -0.045129865407943726, 0.0491606630384922, -0.05710924416780472, 0.0067525277845561504, 0.006620679050683975, 0.04889696463942528, -0.08958164602518082, 0.010538463480770588, 0.06091401353478432, -0.0009323573904111981, 0.032980963587760925, -0.061479080468416214, -0.006667767651379108, -0.0025168939027935266, 0.048181213438510895, -0.06615028530359268, 0.0332069918513298, -0.0014220804441720247, -0.05609212443232536, 0.02542792819440365, 0.040609344840049744, -0.06596192717552185, -0.003955455496907234, -0.07383517175912857, -0.008932736702263355, -0.032171037048101425, -0.0718386098742485, -0.057146914303302765, 0.005674195010215044, -0.011348390020430088, 0.03531656786799431, -0.03380972519516945, -0.044828496873378754, -0.06758178025484085, 0.020681381225585938, -0.02128411829471588, -0.006917338352650404, -0.0012231303844600916, -0.030212145298719406, 0.05093120038509369, 0.005806043744087219, 0.029854271560907364, 0.03509053960442543, 0.03706827014684677, 0.007618960924446583, 0.025126559659838676, 0.03267959505319595, 0.002256728708744049, -0.003006617072969675, -0.045468904078006744, -0.06566055864095688, -0.039403870701789856, -0.008918610401451588, 0.022056372836232185, 0.010849249549210072, 0.006860831752419472, -0.0029359839390963316, 0.044715482741594315, -0.002693476853892207, 0.014390324242413044, -0.0486709401011467, 0.05349282547831535, -0.07537967711687088, -0.03590046614408493, 0.062345512211322784, 0.04580794274806976, -0.009012787602841854, 0.052513379603624344, 0.07530433684587479, -0.010133500210940838, -0.0373319648206234, 0.03243473544716835, -0.007477694656699896, 0.054133232682943344, -0.0219056885689497, 0.014418576844036579, -0.026784084737300873, 0.004666495602577925, 0.056167468428611755, 0.017479347065091133, 0.01037836167961359, -0.03955455496907234, -0.01797848753631115, -0.0032491241581737995, 0.049575041979551315, -0.01878841407597065, 0.028121404349803925, 0.007251668255776167, -0.024373140186071396, -0.003399808192625642, 0.00866904016584158, -0.04780450463294983, 0.03243473544716835, -0.028705306351184845, 0.011207124218344688, -0.040270302444696426, -0.004362773150205612, 0.10201308131217957, -0.08702002465724945, 0.03185083344578743, 0.07383517175912857, -0.02444848231971264, 0.038537438958883286, 0.01596308872103691, 0.050893526524305344, -0.027141958475112915, -0.0005397548666223884, -0.03959222510457039, -0.030626526102423668, -0.014550426043570042, 0.0010359525913372636, 0.02791421487927437, -0.043736036866903305, -0.07364681363105774, 0.12476636469364166, -0.004558191634714603, 0.0024109443183988333, -0.05168461799621582, 0.025484435260295868, -0.016207950189709663, -0.047729164361953735, 0.02804606221616268, -0.0057777902111411095, 0.01448450144380331, 0.032641924917697906, -0.02128411829471588, -0.034129928797483444, 0.014437412843108177, -0.008245240896940231, -0.012921154499053955, 0.025296078994870186, 0.05827704444527626, 0.032453570514917374, 0.01908036321401596, -0.06788314878940582, -0.0047583188861608505, 0.0332823321223259, -0.039855923503637314, -0.007534200791269541, -0.10404731333255768, 0.04328398406505585, 0.01687660999596119, 0.10434868186712265, -0.009469549171626568, 0.003752973861992359, -0.005627106409519911, -0.010416032746434212, 0.05744828283786774, -0.014446830376982689, 0.042869605123996735, -0.055640075355768204, -0.04663670435547829, 0.017545269802212715, -0.02919502928853035, -0.024994712322950363, -0.07530433684587479, -0.03580629080533981, -0.008424178697168827, -0.05729759857058525, 0.059633199125528336, 0.009672030806541443, 0.012450267560780048, -0.010227677412331104, 0.05914347618818283, -0.027820037677884102, 0.0508558563888073, 0.003783581545576453, -0.05556473135948181, -0.015991341322660446, -0.005236269440501928, 0.05047914758324623, -0.04852025583386421, -0.04411274567246437, -0.03160597383975983, -0.02439197525382042, 0.01964542828500271, -0.0036093532107770443, -0.003741201711818576, 0.03034399449825287, -0.024900535121560097, 0.0864926278591156, -0.019268719479441643, 0.08807481080293655, -0.025861144065856934, 0.010303019545972347, 0.02572929672896862, -0.005688321776688099, -0.04987641051411629, 0.02885599061846733, -0.0004382197221275419, -0.06550987809896469, 0.0035410744603723288, 0.05187297239899635, -0.017658283933997154, -0.06166743487119675, -0.03819840028882027, -0.009205851703882217, -0.03480800986289978, -0.02751866914331913, -0.049575041979551315, 0.03642786294221878, -0.0044075073674321175, -0.02017282322049141, -0.0416264608502388, 0.04539356008172035, -0.013344953767955303, -0.0697290301322937, -0.07767761498689651, 0.038424424827098846, 0.053455155342817307, 0.0248628631234169, -0.016217367723584175, -0.019984468817710876, 0.020361177623271942, -0.07684884965419769, 0.010934009216725826, 0.016151443123817444, 0.030570020899176598, 0.0389518178999424, -0.03880113363265991, -0.044376444071531296, 0.056920889765024185, -0.019927961751818657, 0.031888507306575775, 0.00016436919395346195, -0.02542792819440365, -0.010698565281927586, -0.008716128766536713, 0.03861277922987938, 0.04573259875178337, 0.004120266065001488, 0.03723778948187828, 0.06132839620113373, -0.02260260283946991, 0.012082974426448345, 0.03554259240627289, 0.0332823321223259, 0.03959222510457039, -0.04844491183757782, -0.030739540234208107, -0.016848357394337654, -0.04249289259314537, 0.0713488832116127, 0.05793800577521324, -0.01768653653562069, -0.003969582263380289, -0.01791256293654442, 0.05955785885453224, -0.03347068652510643, -0.015812404453754425, -0.04531821981072426, 0.01768653653562069, 0.03993126377463341, 0.011555580422282219, 0.030626526102423668, 0.07918445020914078, 0.0502907931804657, -0.006375817582011223, 0.0023285390343517065, 0.043510012328624725, 0.037369634956121445, -0.0006050905212759972, -0.003538720076903701, 0.007378808222711086, -0.051948316395282745, -0.0007875594310462475, 0.039102502167224884, -0.01775246113538742, 0.05123256519436836, -0.08702002465724945, -0.021641992032527924, 0.10954727977514267, 0.04938668757677078, -0.011160035617649555, 0.037143610417842865, -0.02723613567650318, -0.040722355246543884, -0.0028229709714651108, -0.0648694708943367, 0.07537967711687088, -0.028761811554431915, -0.028950167819857597, 0.004007253330200911, -0.020907407626509666, 0.03154946491122246, 0.04098605364561081, -0.004108494147658348, -0.061140041798353195, 0.04874628037214279, 0.015219085849821568, -0.02290397137403488, -0.03283027932047844, -0.0005627106293104589, 0.03669155761599541, -0.015689972788095474, -0.006714856717735529, -0.010444286279380322, -0.03230288624763489, -0.001930639031343162, -0.1266499161720276, 0.014409159310162067, 0.0029548194725066423, -0.05499966815114021, -0.0005282769561745226, 0.0025498562026768923, 0.0033126939088106155, 0.011640340089797974, 0.020832065492868423, 0.02393992431461811, -0.08295155316591263, 0.02427896298468113, 0.05334214121103287, -0.02815907634794712, -0.0035575556103140116, -0.034770336002111435, -0.018628312274813652, 0.07146189361810684, -0.04844491183757782, -0.009026914834976196, 0.012723381631076336, 0.01427731104195118, 0.017903145402669907, 0.009205851703882217, 0.0025663371197879314, 0.08799947053194046, -0.05375652387738228, -0.04098605364561081, 0.044715482741594315, -0.04034564644098282, 0.05322913080453873, 0.04516753554344177, -0.025107724592089653, 0.0126951290294528, 0.04196549952030182, -0.029816599562764168, 0.03028748743236065, 0.06257154047489166, -0.01763002946972847, -0.02075672335922718, 0.002151956083253026, -0.000011045623978134245, 0.0448661670088768, -0.004329811315983534, 0.008527773432433605, -0.03526005893945694, 0.006912629585713148, -0.011461403220891953, 0.038537438958883286, 0.005542346742004156, 0.01590658165514469, -0.0033433015923947096, 0.027480997145175934, 0.017564106732606888, -0.04181481525301933, -0.06611261516809464, -0.07063313573598862, -0.04949970170855522, -0.016970787197351456, 0.014418576844036579, -0.06731808930635452, 0.04769149050116539, -0.03765216842293739, 0.011291883885860443, 0.0264827162027359, -0.008923319168388844, -0.018345778807997704, 0.03642786294221878, -0.020624876022338867, 0.0015857138205319643, 0.025107724592089653, -0.0167635977268219, -0.02375156804919243, -0.058992791920900345, 0.020719053223729134, 0.01286464836448431, 0.017008459195494652, 0.09553366899490356, 0.048181213438510895, 0.01989028975367546, -0.0017870182637125254, 0.015915999189019203, -0.04283193126320839, -0.06532151997089386, -0.016923699527978897, -0.036917585879564285, 0.010670311748981476, 0.01740400493144989, -0.004840724170207977, 0.03799120709300041, 0.058013346046209335, 0.013363788835704327, -0.0264827162027359, 0.06189345940947533, -0.021302953362464905, -0.0046194070018827915, -0.0046217613853514194, 0.02896900288760662, -0.05255105346441269, -0.04701341316103935, 0.045242875814437866, 0.04490383714437485, 0.08799947053194046, 0.03486451506614685, 0.042342208325862885, -0.008767926134169102, -0.023732732981443405, 0.024316633120179176, 0.022395411506295204, -0.029270371422171593, 0.007020933553576469, 0.030852552503347397, -0.04343466833233833, -0.02017282322049141, 0.06833520531654358, 0.018948515877127647, 0.039102502167224884, -0.014399741776287556, 0.000011569854905246757, 0.02578580193221569, -0.018025575205683708, 0.01821393147110939, -0.003178491024300456, 0.027838872745633125, -0.02751866914331913, 0.003131402190774679, -0.000778141722548753, 0.000538283318746835, 0.006719565484672785, 0.010387779213488102, 0.05224968492984772, 0.00016672362107783556, -0.001965955598279834, 0.025465600192546844, -0.04603396728634834, 0.03669155761599541, -0.03665388748049736, 0.05955785885453224, -0.009879221208393574, 0.023921087384223938, -0.0832529217004776, -0.0004111437010578811, -0.0026416792534291744, -0.02827208861708641, -0.010020487010478973, 0.013231940567493439, -0.045694928616285324, 0.014173715375363827, 0.020737888291478157, -0.015350934118032455, 0.02312999777495861, 0.011781606823205948, 0.0002149896026821807, 0.027820037677884102, -0.0061827534809708595, -0.011028186418116093, -0.007802607025951147, -0.01966426521539688, 0.017677119001746178, 0.02220705710351467, 0.029439890757203102, -0.005631815176457167, 0.01665058359503746, -0.005664777476340532, -0.009092838503420353, 0.05149626359343529, 0.010679730214178562, -0.016151443123817444, 0.022527260705828667, -0.01729099079966545, -0.040609344840049744, -0.04908531904220581, -0.044376444071531296, 0.0033291750587522984, 0.06908862292766571, -0.04452712833881378, -0.04158879071474075, 0.0016410431126132607, -0.028780648484826088, -0.0036234797444194555, -0.021830346435308456, -0.07014340907335281, 0.013853511773049831, 0.025992993265390396, 0.06279756873846054, 0.013797005638480186, 0.013118927367031574 ]
23,334
parutils.msc
list_to_dict
Transforms 'list_in' to a dictionary using the 'separator'
def list_to_dict(list_in: List[str], separator='='): """Transforms 'list_in' to a dictionary using the 'separator'""" out = {} for elt in list_in: e = elt.split(separator) key = e[0].strip() value = elt[elt.find(separator) + 1:].strip() out[key] = value return out
(list_in: List[str], separator='=')
[ -0.0028027743101119995, -0.02013608068227768, -0.0361022911965847, -0.06298697739839554, -0.012939398176968098, 0.009482795372605324, 0.0020689319353550673, 0.04074767231941223, 0.021544326096773148, 0.012729075737297535, -0.03588282689452171, -0.026098262518644333, -0.002994807669892907, 0.009848573245108128, 0.05139181390404701, -0.041040293872356415, 0.003989266697317362, 0.02646404132246971, -0.02220272645354271, -0.02648233063519001, 0.0008961561834439635, -0.035517048090696335, 0.028146618977189064, 0.0413329191505909, -0.021013949066400528, -0.007407005410641432, 0.018279757350683212, 0.006369110196828842, -0.007535027340054512, 0.05815870687365532, 0.040674518793821335, 0.019660569727420807, -0.008988995105028152, 0.0172281451523304, 0.07374085485935211, -0.01315886527299881, -0.019404524937272072, 0.03421853482723236, -0.0498189702630043, 0.017264723777770996, -0.04169869422912598, -0.03498666733503342, 0.01610337756574154, 0.03127402067184448, 0.037236202508211136, 0.05658586323261261, -0.007695055566728115, -0.02717730775475502, 0.07205827534198761, 0.023263482376933098, 0.0039824084378778934, -0.05812212824821472, -0.01780424639582634, 0.005651270505040884, -0.06104835495352745, -0.03350526839494705, 0.05870737507939339, 0.009848573245108128, 0.016551455482840538, 0.03127402067184448, 0.002565018367022276, 0.03591940179467201, -0.0015579857863485813, -0.04919714480638504, -0.015326099470257759, 0.03743738308548927, -0.0167800672352314, -0.013625231571495533, -0.026884686201810837, -0.020867636427283287, 0.04660012200474739, -0.0996379405260086, -0.04078425094485283, -0.0020003486424684525, 0.05395226180553436, 0.007219544146209955, 0.030524177476763725, -0.001117337611503899, -0.024653440341353416, 0.027652818709611893, 0.003833811031654477, 0.019002169370651245, 0.0013087994884699583, 0.0035983414854854345, 0.0334869809448719, 0.01153115276247263, 0.02028239145874977, 0.04890452325344086, 0.01795055717229843, 0.03471233695745468, -0.007320133037865162, 0.024690017104148865, -0.002626743633300066, 0.05779292806982994, -0.04594172164797783, -0.04502727463841438, 0.014356788247823715, -0.013204586692154408, 0.023098882287740707, -0.007411577273160219, 0.015929633751511574, 0.023135460913181305, -0.06156044453382492, -0.05095288157463074, 0.015326099470257759, -0.04253998398780823, 0.010031462647020817, -0.03388933464884758, -0.005189476069062948, -0.01573760062456131, -0.0670105367898941, 0.007045799400657415, -0.05899999663233757, 0.01770365610718727, 0.013296031393110752, 0.03917482867836952, -0.00007161962275858968, -0.05109919235110283, 0.021617481485009193, -0.04367389902472496, -0.07878858596086502, 0.059256043285131454, -0.08112956583499908, 0.014859732240438461, 0.016094233840703964, -0.046380653977394104, 0.04846559092402458, 0.0032782857306301594, 0.06573031097650528, 0.053769372403621674, 0.040345318615436554, 0.013789831660687923, -0.03560849279165268, -0.03818722814321518, 0.05044079199433327, -0.017767667770385742, -0.030871666967868805, 0.040345318615436554, 0.01923992484807968, 0.011924363672733307, 0.06609608978033066, -0.06613267213106155, 0.01376239862293005, 0.013561220839619637, -0.0352427139878273, -0.03641320392489433, -0.002009493065997958, 0.03935771808028221, -0.025842217728495598, 0.01024178508669138, -0.013277743011713028, 0.03833353891968727, -0.002398132346570492, -0.021087104454636574, 0.013268598355352879, -0.024287661537528038, -0.01868211291730404, -0.02233074977993965, 0.009537662379443645, 0.02324519492685795, 0.04005269333720207, 0.0065108491107821465, 0.012774798087775707, 0.05998759716749191, -0.003548047039657831, 0.03220675513148308, 0.06909547001123428, -0.017758524045348167, 0.02993893250823021, -0.0740334764122963, 0.02906106412410736, -0.030158398672938347, -0.0184809360653162, 0.012363297864794731, -0.054610662162303925, 0.028420953080058098, 0.03306633606553078, 0.0300852432847023, -0.013716676272451878, -0.0010504687670618296, 0.05969497561454773, 0.008088266476988792, 0.05223310366272926, -0.02598852850496769, -0.007448155432939529, 0.0035640497226268053, 0.011650030501186848, 0.03796776011586189, 0.0107447300106287, 0.02339150570333004, 0.03306633606553078, -0.026372596621513367, -0.041040293872356415, -0.007283555343747139, -0.033999066799879074, -0.01436593197286129, -0.02062988094985485, 0.005514103919267654, -0.05622008442878723, 0.012838808819651604, 0.006241087801754475, -0.00972055085003376, -0.05914630740880966, 0.016075944527983665, 0.02200154960155487, -0.017630500718951225, -0.028951331973075867, -0.007539599668234587, 0.043929941952228546, -0.0025467295199632645, -0.007246977183967829, -0.03855300322175026, -0.03986980766057968, -0.005921031814068556, 0.02785399742424488, -0.010991630144417286, -0.021964970976114273, 0.0877135694026947, 0.02476317249238491, -0.056183505803346634, -0.04484438896179199, 0.004814553540199995, 0.04769745469093323, 0.03869931772351265, 0.0318409763276577, -0.025421572849154472, -0.02342808246612549, -0.016057655215263367, -0.017923124134540558, 0.02595195174217224, 0.00036234885919839144, -0.05603719502687454, -0.013835554011166096, 0.0464538112282753, 0.0550495944917202, -0.045502789318561554, 0.011393985711038113, -0.03939429298043251, -0.031420331448316574, -0.012838808819651604, 0.01538096647709608, -0.007425294257700443, 0.04063794016838074, -0.032773710787296295, -0.0370350256562233, 0.037217915058135986, 0.0176579337567091, -0.018435213714838028, 0.016130810603499413, -0.007269838359206915, -0.004275030922144651, 0.05344017222523689, 0.04147922992706299, 0.0275430865585804, -0.04107687249779701, 0.09341970831155777, 0.018371202051639557, 0.05344017222523689, -0.030213266611099243, -0.02973775379359722, -0.004245311487466097, -0.02114197053015232, 0.04890452325344086, -0.0249460618942976, 0.03665095940232277, 0.005047736689448357, 0.012527897953987122, 0.04700247943401337, -0.031584933400154114, -0.03597427159547806, 0.0945170447230339, -0.05826844274997711, 0.028000308200716972, -0.05274519324302673, -0.011567730456590652, 0.02165406011044979, 0.01727386750280857, -0.02271481603384018, -0.026079973205924034, 0.03652293607592583, 0.0011550585040822625, -0.011613452807068825, -0.06894916296005249, -0.015262088738381863, 0.018197456374764442, 0.0929807797074318, 0.023684127256274223, -0.01090933009982109, 0.0066205826587975025, -0.005980470683425665, -0.016386855393648148, 0.0019454819848760962, -0.03076193295419216, -0.019569125026464462, -0.02909764274954796, 0.06861995905637741, 0.008810678496956825, -0.08332423865795135, 0.05647612735629082, 0.027817418798804283, 0.011668318882584572, 0.05259888246655464, 0.013945288024842739, 0.03030470944941044, -0.017630500718951225, -0.01186035294085741, -0.004222450312227011, 0.04005269333720207, -0.03134717792272568, -0.06327959895133972, -0.006844621617347002, 0.03676069155335426, 0.0038589583709836006, 0.032627400010824203, -0.036047425121068954, -0.004311608616262674, -0.07878858596086502, -0.005555253941565752, 0.0021718069911003113, 0.03286515548825264, 0.046380653977394104, 0.005518676247447729, -0.008422039449214935, 0.014621976763010025, 0.05281834676861763, -0.07289956510066986, 0.060316797345876694, 0.10066211223602295, 0.06821760535240173, 0.05197705700993538, -0.03560849279165268, -0.059585243463516235, -0.03921140357851982, 0.007964816875755787, 0.007182965986430645, -0.006350821349769831, 0.016313700005412102, 0.014036731794476509, -0.04023558273911476, -0.018892435356974602, -0.047551143914461136, 0.02046528086066246, -0.029701177030801773, 0.02013608068227768, -0.08039801567792892, -0.026592062786221504, 0.017977990210056305, 0.027433352544903755, 0.019495969638228416, -0.008193427696824074, -0.01598449982702732, 0.007539599668234587, 0.01563701033592224, 0.05585430562496185, 0.020209236070513725, -0.03163979947566986, -0.08398263901472092, -0.04060136154294014, 0.026409173384308815, -0.05069683492183685, 0.051538124680519104, -0.007073232904076576, 0.05457408353686333, -0.010616707615554333, -0.008975278586149216, 0.000925875676330179, -0.05215994641184807, 0.0150517662987113, 0.03388933464884758, 0.007224116008728743, -0.02565932832658291, 0.02337321639060974, 0.0740700513124466, -0.029170798137784004, 0.050111591815948486, 0.011805485934019089, 0.00043150378041900694, 0.017831679433584213, -0.03376131132245064, 0.07622814178466797, -0.10475882887840271, 0.04213763028383255, 0.0809101015329361, -0.009830284863710403, 0.015966210514307022, -0.006227371282875538, 0.05351332575082779, 0.013881276361644268, -0.002311259973794222, -0.03418195620179176, -0.06733973324298859, 0.03796776011586189, 0.01838034577667713, 0.019002169370651245, -0.0464903898537159, -0.06280408799648285, -0.017447613179683685, -0.04835585504770279, 0.012107253074645996, 0.008234578184783459, 0.0249460618942976, -0.028073463588953018, -0.020703036338090897, -0.027433352544903755, 0.03304804489016533, -0.03489522635936737, 0.0004400766920298338, 0.004247597418725491, 0.036376625299453735, -0.05197705700993538, -0.03370644524693489, -0.09232237935066223, 0.04762430116534233, -0.02682981826364994, 0.01772194541990757, 0.0533304363489151, 0.01653316803276539, 0.03374302387237549, 0.00503402017056942, -0.038114070892333984, -0.025842217728495598, -0.021964970976114273, 0.015472411178052425, -0.007781927939504385, -0.005724426358938217, 0.0014791149878874421, -0.0031914133578538895, 0.034675758332014084, -0.00026676079141907394, -0.04729510098695755, -0.013122286647558212, -0.03403564542531967, 0.003911538980901241, -0.08281214535236359, 0.0464538112282753, 0.05267203599214554, 0.05984128639101982, -0.015207221731543541, 0.06741289049386978, -0.03425511345267296, -0.05095288157463074, 0.017548201605677605, 0.004663669969886541, 0.0430154986679554, 0.014823154546320438, 0.005258059129118919, -0.044807810336351395, -0.00614964310079813, 0.07410663366317749, 0.0033971634693443775, -0.009309050627052784, -0.06156044453382492, -0.006757749244570732, -0.0516112819314003, 0.029207376763224602, 0.019349658861756325, 0.014621976763010025, 0.025513017550110817, 0.08142218738794327, 0.03249937668442726, 0.06686422228813171, 0.016569744795560837, 0.0189290139824152, -0.004960864782333374, 0.0030611050315201283, 0.018407778814435005, -0.06225542351603508, 0.02719559706747532, 0.02439739555120468, 0.04440545290708542, -0.04422256350517273, -0.004453347530215979, -0.007996822707355022, 0.029152508825063705, -0.005262631457298994, -0.016213111579418182, 0.055488526821136475, 0.005998759996145964, -0.01118366327136755, 0.024872906506061554, 0.028073463588953018, -0.040491629391908646, -0.008774100802838802, -0.01894730143249035, 0.00008137132681440562, -0.035535335540771484, 0.008280300535261631, -0.0396137610077858, -0.06401115655899048, 0.04158896207809448, -0.03972349315881729, -0.01995319128036499, 0.028256352990865707, -0.031219154596328735, 0.06851022690534592, -0.012280997820198536, 0.01641428843140602, 0.0022026696242392063, 0.03495009243488312, -0.013981865718960762, 0.039321139454841614, -0.03076193295419216, 0.014640266075730324, 0.027762552723288536, 0.01798713579773903, 0.03324922174215317, -0.0877867266535759, 0.01874612458050251, -0.049636080861091614, -0.008033400401473045, -0.03771171718835831, 0.029463421553373337, 0.021416304633021355, -0.011256818659603596, -0.06653502583503723, 0.03253595530986786, -0.06408431380987167, -0.009226750582456589, -0.03666924685239792, 0.009583384729921818, -0.020940791815519333, 0.03771171718835831, 0.014768288470804691, -0.019002169370651245, -0.010772163048386574, 0.002480432391166687, 0.027451641857624054, 0.007411577273160219, 0.027927152812480927, 0.03749224916100502, -0.039650339633226395, 0.04078425094485283, -0.03286515548825264, -0.0033057190012186766, 0.013716676272451878, 0.05592746287584305, 0.06119466572999954, -0.017072690650820732, -0.0004189301689621061, 0.03332237899303436, 0.032060444355010986, 0.025695906952023506, 0.004213305655866861, -0.002757051959633827, 0.054647237062454224, 0.055781152099370956, 0.0010178916854783893, -0.0043824780732393265, -0.05120892450213432, 0.0025695906952023506, 0.0038018054328858852, -0.020062925294041634, 0.007498449645936489, -0.0011087646707892418, -0.02560446225106716, -0.10731927305459976, 0.03763855993747711, -0.047916922718286514, 0.02461686171591282, 0.02339150570333004, -0.05439119413495064, 0.02062988094985485, -0.0636819526553154, 0.04169869422912598, -0.017676223069429398, -0.007823077961802483, -0.0567687526345253, -0.04195474088191986, -0.0361022911965847, 0.011037352494895458, 0.013204586692154408, -0.01942281424999237, 0.021215125918388367, 0.00962910708039999, -0.03509640321135521, -0.027616241946816444, 0.028164908289909363, -0.006177076604217291, -0.017566490918397903, -0.030213266611099243, -0.05592746287584305, 0.03994296118617058, -0.034145381301641464, -0.0031594077590852976, 0.0044784946367144585, -0.014283631928265095, -0.03538902476429939, 0.006378254387527704, -0.08873774856328964, 0.022824550047516823, -0.011137940920889378, -0.04349100962281227, 0.03403564542531967, 0.03935771808028221, 0.012326720170676708, -0.07937383651733398, -0.015298666432499886, 0.05417172610759735, 0.011668318882584572, -0.051684435456991196, -0.03855300322175026, -0.012372441589832306, -0.03939429298043251, 0.03460260108113289, 0.07761809974908829, -0.04561252146959305, 0.03718133643269539, -0.07443583011627197, -0.020520146936178207, -0.030908243730664253, 0.002485004486516118, 0.03059733286499977, -0.010790452361106873, 0.020355546846985817, 0.03818722814321518, -0.0042361668311059475, 0.028164908289909363, -0.028494108468294144, 0.00972055085003376, 0.0008441471145488322, 0.08105641603469849, -0.03491351380944252, 0.012024953030049801, 0.008586639538407326, -0.00014816867769695818, -0.04140607267618179, 0.00845404528081417, 0.0021340863313525915, 0.0038018054328858852, -0.08017854392528534, 0.010598418302834034, -0.028658708557486534, 0.02836608700454235, -0.009610817767679691, 0.011732330545783043, 0.061304397881031036, 0.00606277072802186, -0.02183694951236248, -0.04264971986413002, 0.0025695906952023506, 0.03407222405076027, -0.017017822712659836, -0.030835088342428207, -0.009610817767679691, -0.01571931131184101, -0.0009801707929000258, 0.05622008442878723, -0.03767513856291771, 0.01616738922894001, 0.02853068709373474, -0.018115157261490822, 0.061304397881031036, -0.05040421336889267, 0.043417852371931076, -0.06075573340058327, -0.016460010781884193, -0.0001538839569548145, -0.00890212319791317, -0.018270613625645638, 0.019057035446166992, -0.041881583631038666, 0.010369807481765747, -0.04422256350517273, -0.01690809056162834, 0.012244420126080513, -0.0062365154735744, -0.022257594391703606, 0.0964190885424614, -0.0006824046722613275, -0.01359779853373766, 0.0602070651948452, -0.021196836605668068, 0.0412963405251503, 0.04542963206768036, 0.05259888246655464, -0.08903037756681442, -0.003703502705320716, -0.01325945369899273, 0.0017065831925719976, -0.02425108291208744, -0.011311685666441917, -0.01573760062456131, 0.025750773027539253, 0.05091630294919014, 0.030926533043384552, -0.01567358896136284, -0.006154215428978205, -0.05918288603425026, -0.021251704543828964, 0.09656540304422379, -0.014119031839072704, -0.009203889407217503, -0.022934282198548317, -0.04330812022089958, -0.027250463142991066, 0.01737445592880249, -0.009048433974385262, -0.00503402017056942, 0.021013949066400528, 0.014969466254115105, -0.05091630294919014, 0.0019420527387410402, 0.06302355229854584, 0.019569125026464462, 0.016423434019088745, -0.03381618112325668, -0.018261468037962914, -0.02527526207268238, -0.004227022640407085, -0.005157470237463713, -0.005486670415848494, -0.019916614517569542, -0.020556725561618805, -0.012436453253030777, 0.06386484205722809, 0.003003952093422413, 0.007160105276852846, -0.049599502235651016, 0.010662429966032505, -0.015618721954524517, 0.027104152366518974, -0.028640421107411385, 0.031091133132576942, 0.0015602719504386187, -0.0705220028758049, -0.07593552023172379, -0.02681153081357479, -0.011147085577249527, -0.06053626537322998, 0.0396137610077858, -0.07118040323257446, 0.05490328371524811, -0.04681959003210068, 0.03710818290710449, 0.004515072796493769, -0.010141195729374886, -0.02922566421329975, -0.022440481930971146, -0.04180843010544777, 0.04736825451254845, 0.06269435584545135, -0.0044899252243340015, -0.02873186394572258, 0.05797581747174263, -0.0275247972458601, -0.0014093884965404868, 0.00962910708039999, -0.02856726385653019, 0.006309671327471733, 0.009647395461797714, -0.03833353891968727, 0.013131431303918362, -0.06737631559371948, -0.03511469066143036, -0.008792389184236526, -0.05420830473303795, 0.01515235472470522, -0.001962627749890089, -0.04243025183677673, 0.03833353891968727, 0.035846248269081116, 0.0240681953728199, 0.013963576406240463, 0.00035263289464637637, -0.04831928014755249, 0.0036189164966344833, 0.05402541533112526, -0.05018474534153938 ]
23,335
parutils.csvl
load_csv
Loads a csv file and returns a list whose elements correspond to the lines of the 'in_path' file. Each element is also a list whose elements correspond to the csv fields. When quote is True, the buitin csv package is used and separators between quote char are ignored (less performant).
def load_csv(in_path, quote=False): """Loads a csv file and returns a list whose elements correspond to the lines of the 'in_path' file. Each element is also a list whose elements correspond to the csv fields. When quote is True, the buitin csv package is used and separators between quote char are ignored (less performant). """ out_list = [] with open(in_path, 'r', encoding='utf-8') as in_file: if quote: reader = csv.reader(in_file, delimiter=SEPARATOR, doublequote='"') for row in reader: out_list.append(row) else: for line in in_file: line_list = csv_to_list(line) out_list.append(line_list) return out_list
(in_path, quote=False)
[ -0.01415262371301651, 0.00795173179358244, -0.02810462936758995, 0.0004992629401385784, -0.03009256161749363, 0.035107988864183426, 0.003611107589676976, 0.036913543939590454, 0.051285021007061005, -0.00038413613219745457, 0.007878780364990234, -0.00719485804438591, -0.035691604018211365, 0.03374014422297478, -0.03162454813718796, 0.011261913925409317, 0.0007876500021666288, 0.018310869112610817, -0.012182928621768951, -0.04709029942750931, -0.023563388735055923, -0.012711827643215656, -0.014179980382323265, 0.037679534405469894, -0.010678300634026527, 0.0003764420107472688, -0.012857731431722641, 0.003679499728605151, 0.0003493700933177024, -0.011179842986166477, 0.04121769219636917, 0.04435461387038231, -0.051978062838315964, -0.008343846537172794, -0.008156907744705677, -0.04114473983645439, 0.04063407704234123, -0.035399794578552246, 0.004023740533739328, 0.002822317648679018, -0.0032349503599107265, -0.03197106719017029, 0.06842866539955139, 0.00022882886696606874, -0.04621488228440285, 0.0036544224712997675, -0.06737086176872253, -0.010140282101929188, -0.01652355305850506, -0.018420295789837837, 0.02702859230339527, 0.010012616403400898, -0.008767878636717796, 0.04169187694787979, -0.051102641969919205, -0.05974741652607918, -0.023709291592240334, 0.062081869691610336, -0.0018978832522407174, 0.03826314955949783, 0.010122044011950493, -0.009584025479853153, 0.02907123975455761, -0.008567261509597301, 0.07579678297042847, 0.04300500825047493, 0.011654028668999672, -0.04019636660814285, 0.023836957290768623, 0.0016425523208454251, -0.008631094358861446, 0.05741296336054802, -0.03136921674013138, 0.011398698203265667, 0.021684883162379265, 0.018839767202734947, -0.035126227885484695, 0.0012367587769404054, -0.023034488782286644, -0.004673466086387634, 0.01460857130587101, -0.014371477998793125, 0.035472746938467026, 0.037533633410930634, -0.018803292885422707, -0.02784929797053337, 0.049862463027238846, 0.00016855823923833668, -0.00330562237650156, 0.09031416475772858, -0.011106891557574272, -0.036202263087034225, 0.008421357721090317, 0.020317038521170616, -0.01438971608877182, -0.049825988709926605, 0.01412526611238718, 0.017818445339798927, -0.036348167806863785, -0.036111075431108475, -0.007669043727219105, 0.004534401930868626, -0.0037866474594920874, -0.0542030893266201, -0.008435036055743694, -0.07222215086221695, 0.011061296798288822, -0.0303843691945076, 0.02821405790746212, -0.034287285059690475, -0.06029455363750458, -0.016131436452269554, 0.00181011320091784, 0.04490175098180771, 0.0005394433974288404, -0.04081645607948303, 0.0156481321901083, -0.022797396406531334, -0.04420870915055275, -0.0036270655691623688, 0.04307796061038971, 0.03363071754574776, -0.012684470973908901, -0.002605742309242487, 0.09359698742628098, -0.03833610191941261, 0.010979225859045982, -0.034214332699775696, 0.023727528750896454, 0.02817758172750473, 0.09439945966005325, -0.050117794424295425, 0.04234844073653221, -0.05734001100063324, 0.011608433909714222, -0.012775660492479801, 0.0005129413912072778, 0.035673364996910095, 0.03306534141302109, 0.04216606169939041, 0.04512060433626175, -0.0814870148897171, 0.009087041951715946, -0.04851285740733147, 0.005393863655626774, -0.0006189492996782064, 0.02901652455329895, -0.037570107728242874, -0.05759534239768982, -0.016569146886467934, -0.02852410078048706, -0.022925062105059624, -0.03979513421654701, -0.049461230635643005, 0.010805965401232243, -0.04271320253610611, -0.04709029942750931, 0.021137746050953865, -0.03233582526445389, -0.03778896480798721, -0.01397936325520277, 0.0645987018942833, -0.024730615317821503, 0.039029140025377274, 0.01361460518091917, 0.10541515797376633, -0.006200891453772783, -0.03932094946503639, -0.02801343984901905, -0.050591979175806046, -0.00809763465076685, -0.04234844073653221, 0.018748577684164047, 0.04701735079288483, 0.002405125182121992, 0.022086117416620255, -0.03153335675597191, 0.039029140025377274, 0.037114161998033524, -0.018146727234125137, 0.01376050803810358, -0.04110826551914215, 0.06248310208320618, -0.0036156668793410063, 0.04741858318448067, 0.03855495527386665, 0.026134934276342392, -0.04672554135322571, 0.060951117426157, 0.018237916752696037, -0.0011512684868648648, -0.026080220937728882, 0.00047903027734719217, -0.025642510503530502, -0.017170999199151993, -0.06926760822534561, -0.024548236280679703, 0.04271320253610611, -0.05577154830098152, 0.04603250324726105, 0.012702709063887596, -0.03997751325368881, 0.03182516619563103, -0.08192472159862518, 0.019879329949617386, 0.03957628086209297, -0.049898941069841385, -0.034487899392843246, -0.014316764660179615, 0.019587522372603416, 0.007618889678269625, -0.051722731441259384, 0.009702571667730808, 0.020955367013812065, 0.0307491272687912, 0.04395337775349617, -0.07353527843952179, 0.00817058701068163, 0.015575180761516094, -0.00746386731043458, 0.11139719188213348, 0.049570657312870026, -0.06653191894292831, 0.011644910089671612, 0.07178443670272827, -0.008890984579920769, -0.025058897212147713, 0.019149811938405037, -0.00800644513219595, 0.01317689474672079, -0.002845115028321743, -0.04067055508494377, 0.008676689118146896, -0.03217168524861336, 0.04034227132797241, 0.006647720467299223, 0.04191073402762413, 0.033594243228435516, 0.013869935646653175, -0.01438971608877182, -0.023399246856570244, 0.012529448606073856, -0.04843990504741669, -0.0633220449090004, -0.037752486765384674, -0.015876106917858124, -0.0675167664885521, 0.02903476357460022, -0.04373452439904213, -0.010176757350564003, -0.016094962134957314, 0.05664696916937828, -0.01335015520453453, -0.016806239262223244, -0.006369592156261206, -0.04716325178742409, -0.020663559436798096, -0.012219403870403767, -0.051467400044202805, 0.009757285006344318, 0.037077683955430984, -0.05701172724366188, 0.0664224922657013, -0.008038361556828022, -0.017982585355639458, -0.00791525561362505, -0.034214332699775696, -0.008257216773927212, 0.050956737250089645, -0.011882002465426922, 0.018028181046247482, -0.014143504202365875, -0.060951117426157, -0.0071127875708043575, -0.021137746050953865, -0.0035221977159380913, -0.011745218187570572, 0.0072039770893752575, 0.009821117855608463, 0.0297460425645113, -0.03895619139075279, 0.019915804266929626, 0.01641412451863289, -0.00377752841450274, -0.07193034142255783, 0.006105142645537853, -0.04169187694787979, 0.010815084911882877, -0.06576592475175858, 0.0552973635494709, -0.010587110184133053, -0.0018146727234125137, -0.0035997088998556137, 0.008366644382476807, 0.049935415387153625, 0.0040738945826888084, 0.021484265103936195, -0.05325471609830856, 0.06397861242294312, 0.006068666931241751, 0.008859068155288696, 0.01325896568596363, 0.013459582813084126, -0.018000824376940727, -0.01307658664882183, -0.038190197199583054, -0.03209873288869858, -0.04249434545636177, -0.04202016070485115, 0.025223039090633392, 0.023490436375141144, 0.017781969159841537, -0.024475283920764923, -0.026372026652097702, -0.020663559436798096, -0.0006702434620819986, -0.09928721934556961, -0.021921975538134575, 0.023545149713754654, -0.08776085823774338, -0.037570107728242874, 0.010495920665562153, 0.052269868552684784, -0.02677326090633869, -0.03067617490887642, 0.012647994793951511, 0.025916079059243202, 0.0306579377502203, -0.0015593419084325433, 0.051722731441259384, 0.016952143982052803, 0.036366406828165054, -0.05569859594106674, 0.024420570582151413, 0.03053027205169201, -0.03040260635316372, 0.002562427194789052, -0.00024991645477712154, -0.04019636660814285, -0.007609770633280277, 0.05847075954079628, 0.009857594035565853, -0.008726842701435089, -0.004429534077644348, -0.051139120012521744, -0.008813473396003246, 0.02899828739464283, 0.06310319155454636, 0.024767091497778893, 0.0635044276714325, 0.08827151358127594, -0.02688268944621086, -0.009647858329117298, 0.063686802983284, -0.024985944852232933, 0.008918341249227524, -0.008184265345335007, 0.0023709291126579046, 0.03007432445883751, 0.010049091652035713, 0.08010093122720718, -0.03253644332289696, 0.04570421949028969, -0.004235756117850542, 0.04202016070485115, 0.04402633011341095, -0.00746386731043458, -0.016295578330755234, -0.036694686859846115, 0.07864189893007278, -0.04107178747653961, 0.06627658754587173, 0.020189372822642326, -0.03284648805856705, -0.007386356126517057, -0.035582173615694046, 0.04588659852743149, 0.025277752429246902, -0.03844552859663963, 0.024183478206396103, -0.03187987953424454, 0.018484128639101982, 0.023764004930853844, -0.009210147894918919, -0.011845527216792107, -0.02810462936758995, -0.0029841791838407516, 0.02950894832611084, -0.025277752429246902, -0.018000824376940727, -0.016350291669368744, 0.021137746050953865, 0.022724444046616554, -0.02857881598174572, -0.053181763738393784, -0.04862228408455849, 0.04322386160492897, 0.009511073119938374, -0.0025669867172837257, -0.0006856317049823701, -0.04439108818769455, 0.048366956412792206, -0.0292900949716568, 0.024584712460637093, -0.10235118865966797, 0.0567563958466053, -0.023216867819428444, 0.011407816782593727, -0.025952555239200592, -0.035107988864183426, 0.03862790763378143, 0.014900377951562405, 0.04340624064207077, 0.004459170624613762, -0.02730216085910797, 0.013505177572369576, -0.04187425598502159, -0.036968257278203964, 0.0065428526140749454, 0.04132711887359619, -0.03895619139075279, 0.014590333215892315, -0.06996064633131027, 0.008954817429184914, 0.018894482403993607, 0.049242373555898666, 0.033411864191293716, 0.06310319155454636, 0.015474872663617134, -0.04760096222162247, -0.010577991604804993, 0.018183203414082527, -0.01461768988519907, -0.06755324453115463, -0.021192459389567375, 0.00330562237650156, 0.019478095695376396, 0.0031870759557932615, 0.0005756342434324324, -0.014462667517364025, -0.023253343999385834, 0.04030579701066017, 0.010660062544047832, -0.02870648168027401, -0.010641824454069138, -0.023326294496655464, -0.03441494703292847, 0.08287309110164642, 0.06335852295160294, -0.03459732607007027, -0.07364470511674881, 0.021739596500992775, 0.037260062992572784, -0.052123963832855225, -0.005941001232713461, 0.01615879498422146, 0.06580240279436111, 0.012073501013219357, 0.017280425876379013, 0.014772712253034115, 0.06430689245462418, 0.07025245577096939, 0.03115036152303219, -0.06879342347383499, 0.07014302909374237, 0.02932656928896904, 0.034615565091371536, 0.04340624064207077, 0.019241001456975937, -0.02907123975455761, 0.010441207326948643, 0.021739596500992775, -0.06106054410338402, -0.04187425598502159, 0.02629907615482807, 0.022031404078006744, 0.01421645563095808, 0.04767391458153725, -0.01448090560734272, 0.014982448890805244, 0.02788577415049076, -0.09884950518608093, -0.006643161177635193, 0.0012823535362258554, 0.034688517451286316, 0.0016129157738760114, 0.05843428522348404, -0.05664696916937828, -0.03073089011013508, 0.008599177934229374, -0.004347463604062796, 0.04424518719315529, 0.018101131543517113, -0.04647020995616913, 0.09272156655788422, -0.002328753937035799, 0.005562564358115196, 0.04592307284474373, 0.025113610550761223, -0.006155296694487333, 0.04088940843939781, -0.011079533956944942, -0.048950567841529846, 0.025861365720629692, -0.01325896568596363, 0.04479232430458069, 0.06748028844594955, 0.005612718872725964, -0.037132397294044495, -0.0622277706861496, -0.0079608503729105, 0.022359685972332954, 0.021466027945280075, 0.024511760100722313, 0.020700035616755486, 0.00863565318286419, -0.04548536241054535, 0.0310226958245039, -0.035126227885484695, 0.04628783091902733, 0.018073774874210358, -0.018028181046247482, -0.0320257805287838, -0.04132711887359619, -0.037296541035175323, 0.011116010136902332, 0.012064381502568722, -0.003902914235368371, 0.0073407613672316074, 0.019295716658234596, 0.023034488782286644, -0.06000274419784546, -0.05617278441786766, -0.0018317707581445575, -0.006442544050514698, 0.05558916926383972, -0.0072313337586820126, 0.019587522372603416, 0.006173534784466028, 0.038190197199583054, -0.031223313882946968, 0.03968570753931999, 0.005024545826017857, 0.05788714811205864, -0.03346657752990723, 0.019259240478277206, -0.05340062081813812, 0.026061981916427612, 0.0008303951472043991, -0.023909907788038254, 0.012018786743283272, -0.0056811110116541386, -0.020444704219698906, -0.018630031496286392, 0.06762619316577911, -0.07535906881093979, -0.0009734487975947559, -0.013477819971740246, -0.05905437469482422, -0.006000274792313576, 0.04851285740733147, -0.008129551075398922, -0.03224463760852814, 0.013423106633126736, -0.006583888083696365, -0.02752101607620716, -0.035363320261240005, 0.04391690343618393, -0.0058133359998464584, 0.005662872921675444, 0.035126227885484695, -0.04563126713037491, -0.005193246528506279, 0.04103531315922737, -0.009894070215523243, 0.009159993380308151, 0.021648406982421875, 0.00705351447686553, 0.001415718230418861, -0.037296541035175323, 0.021502504125237465, 0.0026764143258333206, -0.07331642508506775, 0.01575756072998047, -0.004468289669603109, -0.03053027205169201, -0.03107740916311741, 0.06273843348026276, 0.047929245978593826, 0.03045732155442238, -0.0015969575615599751, 0.0006388970068655908, 0.00849886890500784, 0.036184027791023254, -0.0029180666897445917, -0.024748852476477623, -0.007386356126517057, 0.02724744752049446, -0.052744053304195404, 0.012210285291075706, -0.005982036702334881, -0.07116434723138809, 0.03073089011013508, -0.012611519545316696, -0.04723620414733887, -0.024147002026438713, 0.011298389174044132, -0.08994940668344498, 0.005986595991998911, 0.03833610191941261, -0.011708742007613182, -0.018839767202734947, -0.023016251623630524, -0.012000549584627151, 0.003948508761823177, 0.0010566592682152987, -0.05489612743258476, -0.04606897756457329, 0.07007007300853729, 0.008015564642846584, 0.020608846098184586, -0.01425293181091547, 0.0785689428448677, 0.004634710494428873, -0.038226671516895294, -0.02722921036183834, -0.04749153554439545, -0.025332465767860413, -0.024165239185094833, 0.017225712537765503, 0.010550634935498238, -0.065510593354702, 0.07667220383882523, 0.04862228408455849, -0.0059318821877241135, -0.01411614753305912, -0.04672554135322571, -0.0160128902643919, 0.014590333215892315, -0.011809051036834717, 0.015091875568032265, -0.02803167700767517, -0.02744806371629238, -0.011517244391143322, -0.017608707770705223, -0.024621186777949333, -0.035563938319683075, -0.051321499049663544, 0.0660577341914177, -0.02892533503472805, 0.04267672449350357, 0.10191347450017929, 0.022232020273804665, 0.025660749524831772, -0.049242373555898666, -0.0587625689804554, -0.005320912227034569, 0.035509224981069565, 0.07951731979846954, 0.020991841331124306, 0.04435461387038231, 0.008416798897087574, -0.021958451718091965, 0.03133274242281914, -0.019842853769659996, -0.06324909627437592, -0.008936579339206219, 0.0565740168094635, 0.008038361556828022, -0.0017964347498491406, -0.007304285652935505, 0.036202263087034225, 0.022067878395318985, -0.0031255229841917753, -0.010249708779156208, -0.038372576236724854, -0.004543520975857973, -0.06934055685997009, 0.024858281016349792, 0.051686257123947144, 0.037132397294044495, 0.03381309658288956, 0.036895304918289185, 0.02602550759911537, 0.01426205039024353, 0.05325471609830856, 0.017563113942742348, -0.007723757531493902, 0.0538383312523365, 0.017015976831316948, 0.03994103893637657, 0.04026931896805763, -0.004741858225315809, -0.017225712537765503, 0.003984984941780567, -0.0005072420462965965, 0.006109701935201883, -0.008425917476415634, 0.013778746128082275, 0.08725019544363022, 0.007956291548907757, -0.011626671999692917, 0.048294004052877426, 0.01307658664882183, -0.021867262199521065, -0.07659924775362015, -0.023216867819428444, 0.037533633410930634, -0.004345183726400137, 0.010505040176212788, 0.010103805921971798, 0.01593993976712227, 0.017909634858369827, -0.03237230330705643, 0.07317052036523819, 0.003795766504481435, -0.04676201939582825, -0.014316764660179615, -0.0147362370043993, -0.02770339511334896, 0.02735687419772148, -0.035746317356824875, 0.011106891557574272, 0.04585012421011925, -0.04807514697313309, -0.0034310079645365477, -0.052342820912599564, 0.01358724758028984, 0.014052314683794975, -0.019660474732518196, -0.03151512145996094, 0.06164415925741196, -0.06554707139730453, 0.03881028667092323, -0.020006993785500526, -0.03251820430159569, -0.06080521270632744, 0.000750034349039197, 0.034962087869644165, 0.004338344559073448, -0.05296291038393974, -0.023308057337999344, 0.07565087825059891, 0.05777772143483162, 0.0007089989958330989, -0.04140007123351097, 0.0552973635494709, -0.0015137470327317715, -0.011726980097591877, 0.0594920851290226, -0.02923537977039814, 0.009720809757709503, -0.007992766797542572, 0.023964622989296913, -0.010322661139070988, 0.01586698740720749, -0.02794048748910427, -0.010915393009781837, -0.05588097497820854, -0.037861913442611694, -0.033776622265577316, 0.03972218185663223, -0.07386356592178345, 0.010714775882661343, 0.011982311494648457, -0.005361947696655989, 0.04048817604780197, 0.018949195742607117 ]
23,336
parutils.file
load_txt
Loads a text file - list_out: if True, a list es output, each element representing a line a the file. If False, a string is output.
def load_txt(in_path, list_out=True): """Loads a text file - list_out: if True, a list es output, each element representing a line a the file. If False, a string is output. """ if list_out: out = [] else: out = '' with open(in_path, 'r', encoding='utf-8') as in_file: for line in in_file: if list_out: out.append(line.strip('\n')) else: out += line return out
(in_path, list_out=True)
[ -0.01472090557217598, -0.03898753970861435, -0.008823399432003498, -0.028765197843313217, -0.010286347009241581, 0.04238889366388321, -0.025345558300614357, 0.011959592811763287, 0.08038894087076187, 0.005527196917682886, 0.018542854115366936, -0.018762296065688133, -0.051459163427352905, -0.034306108951568604, 0.005129458382725716, 0.02492496185004711, -0.02251109853386879, -0.030923044309020042, -0.03194710612297058, -0.0521540641784668, -0.01563524641096592, -0.014108296483755112, 0.029130933806300163, 0.040925946086645126, -0.016604449599981308, -0.021450461819767952, -0.002177276648581028, -0.07387883216142654, -0.042096301913261414, 0.009756028652191162, 0.0430106446146965, 0.013093376532196999, -0.015607817098498344, -0.011913875117897987, -0.017463931813836098, -0.00246643740683794, 0.03611650690436363, -0.017079908400774002, 0.01258134562522173, -0.00958230346441269, -0.01910974644124508, -0.010972103103995323, 0.0518614761531353, 0.04692402854561806, -0.038365788757801056, 0.005476908292621374, -0.030557308346033096, -0.010057761333882809, 0.016595305874943733, -0.001034349319525063, 0.04143797606229782, -0.021011577919125557, -0.03209340199828148, 0.013120806775987148, -0.06118776276707649, -0.03818291798233986, -0.0301367100328207, 0.019384048879146576, 0.032495710998773575, -0.0015920979203656316, 0.010652083903551102, -0.02230994403362274, 0.05036195367574692, 0.02165161818265915, 0.0516786053776741, 0.06510114669799805, -0.009399435482919216, -0.03803662583231926, 0.05467764660716057, 0.01987779326736927, 0.016192995011806488, 0.02254767157137394, -0.03600678592920303, 0.009847463108599186, 0.046960603445768356, 0.04205973073840141, -0.0044482736848294735, 0.009029126726090908, 0.008334226906299591, 0.01163957267999649, -0.027850855141878128, 0.018817156553268433, 0.03737829998135567, 0.0606025829911232, 0.015607817098498344, -0.11571911722421646, 0.07380568236112595, -0.02262081950902939, -0.0017509647877886891, 0.018872017040848732, -0.00667469622567296, 0.007461030501872301, 0.006244955584406853, 0.030575593933463097, -0.03565933555364609, -0.044437017291784286, 0.004148826468735933, -0.016915326938033104, -0.06729556620121002, -0.036774832755327225, -0.030740175396203995, 0.03114248625934124, 0.0046585723757743835, 0.00992061011493206, 0.024796953424811363, -0.08916662633419037, 0.0043248375877738, -0.021157871931791306, 0.042096301913261414, 0.02432149648666382, 0.0010006329976022243, -0.043266661465168, 0.02925894223153591, 0.010112621821463108, -0.008233649656176567, -0.037670888006687164, -0.05796927958726883, -0.03858523070812225, -0.03542160615324974, -0.01428202074021101, 0.057347528636455536, -0.030758462846279144, -0.054019320756196976, -0.010414354503154755, 0.030868183821439743, -0.05423876270651817, 0.0012286469573155046, -0.03101447969675064, 0.08360742777585983, -0.020481260493397713, 0.07194042205810547, -0.011996166780591011, 0.027174241840839386, -0.0342695377767086, 0.012343616224825382, -0.02946009673178196, -0.05032538250088692, 0.013678555376827717, 0.06539373844861984, -0.014894630759954453, 0.06202895939350128, -0.07556121796369553, -0.006222096737474203, -0.016156421974301338, -0.0002713023859541863, 0.020389825105667114, 0.0685025006532669, -0.061809513717889786, -0.045278213918209076, 0.027887430042028427, -0.007666757330298424, -0.036701686680316925, -0.09340917319059372, -0.07951117306947708, 0.02324257232248783, -0.023571735247969627, -0.03119734674692154, -0.0022538527846336365, -0.0013555119512602687, -0.02081042341887951, -0.0028413175605237484, 0.05687206983566284, -0.0010183483827859163, 0.060895174741744995, 0.02430320903658867, 0.050435103476047516, 0.002115558600053191, -0.03876809775829315, -0.015278654173016548, -0.05083741247653961, -0.018670862540602684, -0.05303183197975159, -0.03796347603201866, 0.055811431258916855, 0.006103232502937317, -0.022730540484189987, -0.014848913066089153, 0.046265702694654465, 0.03902411460876465, 0.04205973073840141, -0.028125157579779625, -0.03719542920589447, -0.016074132174253464, -0.011584712192416191, 0.028125157579779625, 0.05972481518983841, -0.01647644117474556, -0.00009307714935857803, 0.023736316710710526, 0.027082808315753937, -0.00016558161587454379, -0.01034120749682188, 0.0007257589022628963, -0.019658351317048073, -0.038548655807971954, -0.048825860023498535, -0.008032494224607944, 0.03891439363360405, -0.05632346495985985, -0.03095961920917034, 0.020956717431545258, -0.041950009763240814, 0.0345255509018898, 0.0075204623863101006, 0.004827725701034069, 0.08148615062236786, -0.05094713345170021, -0.005892933811992407, -0.04502219706773758, 0.0605660118162632, -0.005508910398930311, -0.06415022909641266, -0.034178100526332855, -0.020133810117840767, 0.040194470435380936, 0.015050068497657776, -0.07951117306947708, 0.02759484015405178, -0.04045048728585243, 0.01819540560245514, 0.024028906598687172, 0.08272965997457504, -0.03993845731019974, 0.047253191471099854, -0.00369622721336782, -0.010112621821463108, -0.021267592906951904, 0.047911517322063446, 0.02251109853386879, 0.032477427273988724, 0.026479342952370644, -0.02415691502392292, 0.02084699645638466, 0.013934571295976639, 0.010889812372624874, 0.007799336686730385, -0.00015400946722365916, -0.04824068024754524, 0.023827750235795975, -0.011136684566736221, -0.03514730557799339, 0.0129836555570364, -0.015452378429472446, -0.025693008676171303, -0.020901856943964958, 0.07490289211273193, -0.04835040122270584, -0.005746639333665371, -0.000508888449985534, 0.013065946288406849, 0.02691822685301304, 0.042718056589365005, 0.022913409397006035, -0.00023272860562428832, -0.007762763183563948, 0.020389825105667114, 0.007483888883143663, -0.08521667122840881, -0.04151112586259842, 0.034306108951568604, 0.017994249239563942, -0.005156888626515865, 0.01985950767993927, 0.007680472452193499, -0.007877055555582047, -0.03913383558392525, -0.0607123039662838, 0.026515915989875793, -0.012691066600382328, -0.038402359932661057, 0.03690284118056297, 0.021395601332187653, -0.016092417761683464, -0.024065479636192322, -0.020371537655591965, 0.03895096853375435, 0.05646975710988045, 0.019676638767123222, 0.03920698165893555, 0.05467764660716057, -0.03520216420292854, 0.07504918426275253, -0.003058473812416196, -0.021889345720410347, -0.03128878027200699, -0.024467790499329567, -0.05332442373037338, -0.0602734200656414, -0.04165741801261902, -0.02433978207409382, 0.0782676711678505, -0.006286100950092077, 0.035805631428956985, 0.010268060490489006, 0.02841774746775627, 0.004823153838515282, -0.02777770906686783, -0.036774832755327225, 0.02582101710140705, -0.03551303967833519, 0.007739904802292585, 0.012828217819333076, 0.008329655043780804, -0.0602368488907814, -0.01885373145341873, -0.07431771606206894, -0.021322453394532204, -0.037524592131376266, -0.01699761673808098, -0.015927836298942566, -0.01901831291615963, -0.05599430203437805, 0.013139094226062298, -0.0022195649798959494, -0.04374212026596069, 0.010560649447143078, -0.05241008102893829, 0.001693818485364318, 0.0216881912201643, -0.0956035926938057, -0.019585205242037773, -0.008887403644621372, 0.04074307531118393, -0.03648224472999573, 0.05017908662557602, -0.031636230647563934, 0.07877970486879349, 0.01654958911240101, 0.049008727073669434, 0.030100136995315552, 0.022255083546042442, -0.05241008102893829, -0.0520077683031559, -0.014848913066089153, -0.047143470495939255, -0.04915502294898033, 0.059249356389045715, -0.01889030449092388, -0.015159789472818375, -0.026406195014715195, 0.05376330763101578, 0.01978635974228382, -0.047838371247053146, 0.03708570823073387, -0.019274327903985977, 0.03745144605636597, 0.012819074094295502, 0.03723200410604477, 0.05361701175570488, 0.06824648380279541, 0.020389825105667114, 0.01259048841893673, 0.009093130938708782, 0.013632838614284992, -0.03095961920917034, 0.06155350059270859, -0.013623694889247417, 0.025400418788194656, 0.033410053700208664, -0.011164114810526371, 0.02260253205895424, 0.029039500281214714, -0.010706944391131401, 0.023882610723376274, 0.012910508550703526, 0.0029830406419932842, 0.01675988733768463, 0.027229102328419685, 0.009820032864809036, 0.0780482292175293, -0.04765550047159195, 0.016842179000377655, 0.01901831291615963, 0.009856605902314186, 0.040121324360370636, -0.014839769341051579, -0.004267691168934107, -0.0037305152509361506, -0.029807547107338905, 0.047216616570949554, -0.07461030036211014, 0.06480855494737625, 0.02856404148042202, 0.000729187682736665, -0.0012195035815238953, 0.029185794293880463, -0.02342544123530388, -0.023882610723376274, 0.02331572026014328, -0.05354386568069458, 0.023187711834907532, 0.048057813197374344, 0.043705545365810394, -0.026589063927531242, -0.03351977467536926, -0.029990416020154953, -0.003881381591781974, 0.03604336082935333, 0.03117906115949154, 0.04692402854561806, -0.00021501322044059634, 0.0607123039662838, -0.05968824401497841, 0.02238309010863304, -0.09626191854476929, 0.06429652869701385, -0.012462480925023556, 0.0027910287026315928, -0.017290206626057625, 0.004105395171791315, 0.00411911029368639, 0.018433133140206337, 0.0431935153901577, -0.027485119178891182, -0.016695883125066757, 0.038512084633111954, -0.05946879833936691, -0.023754604160785675, 0.015269510447978973, -0.0011726435041055083, -0.03697598725557327, 0.046082835644483566, 0.01422716025263071, 0.008923977613449097, 0.04688745364546776, -0.0047591496258974075, -0.006185523234307766, 0.005668919999152422, 0.001706390641629696, -0.014117439277470112, 0.0024504363536834717, -0.06473541259765625, -0.012243038974702358, -0.04820410907268524, -0.017436500638723373, -0.008731965906918049, 0.011063537560403347, -0.03388551250100136, -0.02673535794019699, -0.03520216420292854, -0.015388375148177147, 0.03569591045379639, 0.033428341150283813, 0.06345532834529877, 0.02688165381550789, -0.008421089500188828, -0.07431771606206894, 0.004285977687686682, 0.03920698165893555, -0.04933788999915123, -0.026936514303088188, 0.012188178487122059, 0.022108787670731544, 0.020517833530902863, -0.008334226906299591, -0.010569793172180653, 0.09143419563770294, -0.015388375148177147, 0.008059924468398094, 0.07534177601337433, 0.009856605902314186, 0.06828305870294571, 0.07033118605613708, -0.048716139048337936, 0.09048327803611755, -0.04425415024161339, -0.05383645370602608, 0.059359077364206314, 0.004224259871989489, -0.0017452501924708486, -0.03734172508120537, 0.00564606161788106, -0.06268728524446487, -0.0258027296513319, 0.041108813136816025, -0.0000010714944664869108, 0.026095319539308548, 0.03964586555957794, -0.02059098146855831, 0.009353717789053917, 0.0215236097574234, -0.07351309061050415, -0.008178789168596268, -0.0002891606418415904, -0.03178252652287483, -0.004242546856403351, 0.03607993200421333, -0.0518980473279953, -0.035988498479127884, 0.0008714821888133883, 0.020462973043322563, 0.02071898803114891, -0.00035087871947325766, -0.0868990570306778, -0.02421177551150322, -0.005102028138935566, -0.055628564208745956, 0.018149686977267265, 0.0014858056092634797, 0.05500681325793266, 0.03906068950891495, -0.017070764675736427, -0.021761339157819748, 0.03884124755859375, 0.013751703314483166, 0.08441204577684402, -0.005042595788836479, 0.009609733708202839, -0.017930245026946068, 0.009372005239129066, -0.014510606415569782, 0.026552490890026093, 0.029679538682103157, 0.03971901535987854, 0.03964586555957794, 0.042791202664375305, -0.06605206429958344, 0.06799046695232391, -0.009655451402068138, 0.034214675426483154, -0.07183070480823517, 0.02258424647152424, -0.0521540641784668, -0.052373506128787994, 0.011008677072823048, -0.007013002876192331, -0.024394642561674118, 0.004859727341681719, -0.012407620437443256, 0.046082835644483566, -0.018597714602947235, -0.04520506411790848, -0.029990416020154953, -0.01461118459701538, -0.027357110753655434, 0.0027498833369463682, 0.0044482736848294735, -0.01078923512250185, 0.05950537323951721, 0.018387416377663612, 0.0021544182673096657, 0.0007766191847622395, 0.03821949288249016, 0.0025304413866251707, -0.01900002546608448, 0.03381236642599106, -0.013779133558273315, 0.02086528390645981, 0.012032739818096161, 0.01000290084630251, -0.016302715986967087, -0.05540912225842476, -0.003001327393576503, 0.011063537560403347, 0.059322506189346313, -0.024486077949404716, -0.022255083546042442, 0.023937473073601723, -0.03778060898184776, -0.0036139364819973707, 0.0011612143134698272, -0.0017601082799956203, -0.0687219426035881, 0.04674116149544716, -0.02412034012377262, 0.012425906956195831, -0.0515323132276535, 0.04403470829129219, -0.002843603491783142, 0.023553447797894478, 0.06978257745504379, -0.06707612425088882, -0.030063563957810402, -0.026589063927531242, -0.010944672860205173, 0.04220602288842201, 0.06235812231898308, 0.02333400584757328, 0.02600388415157795, -0.011118398047983646, -0.012416763231158257, -0.029953842982649803, -0.02322428487241268, 0.024650659412145615, 0.05884704738855362, -0.010697800666093826, -0.026333048939704895, 0.00021087011555209756, -0.04132825508713722, 0.01761936955153942, 0.018561141565442085, -0.0011703576892614365, 0.04125510901212692, 0.030100136995315552, 0.01567182131111622, -0.026168465614318848, 0.017399927601218224, 0.0260770320892334, 0.0006097517907619476, -0.029807547107338905, -0.0173176359385252, -0.024760380387306213, -0.015452378429472446, 0.012288755737245083, -0.0064918277785182, 0.01633014716207981, 0.0172444898635149, -0.09318973124027252, -0.017884528264403343, 0.016110705211758614, -0.010213200002908707, -0.01638500764966011, -0.01643986813724041, -0.0517883263528347, 0.02258424647152424, -0.009966326877474785, 0.005956937558948994, -0.040194470435380936, 0.043559249490499496, 0.007982205599546432, 0.07091636210680008, 0.03121563419699669, 0.07062377035617828, 0.04941103979945183, -0.005979796405881643, 0.024723805487155914, -0.03287973627448082, -0.03971901535987854, -0.002573872683569789, -0.018689149990677834, -0.0054494780488312244, -0.01987779326736927, 0.006583262234926224, 0.0948721170425415, 0.013632838614284992, -0.021359028294682503, -0.0214687492698431, -0.041072241961956024, -0.004416271578520536, -0.021980781108140945, -0.04056020826101303, -0.06766130775213242, -0.009399435482919216, -0.03628109022974968, -0.01563524641096592, -0.01211503054946661, -0.04143797606229782, -0.013239671476185322, 0.05255637690424919, -0.010204056277871132, 0.00986574962735176, 0.08843515068292618, 0.0071318671107292175, 0.02675364539027214, -0.018634289503097534, 0.015891263261437416, 0.11864501237869263, -0.031435076147317886, 0.0434129573404789, 0.03657367825508118, 0.0022732827346771955, 0.021249307319521904, -0.0215784702450037, 0.006116947624832392, 0.014629471115767956, -0.0007537606288678944, -0.05588458105921745, 0.054823942482471466, 0.03381236642599106, -0.018872017040848732, -0.029935555532574654, 0.01683303527534008, 0.004066535737365484, -0.006875851657241583, 0.03979216143488884, -0.05643318593502045, 0.027357110753655434, -0.06371134519577026, 0.0605660118162632, 0.008334226906299591, 0.03114248625934124, 0.006811847444623709, 0.021084725856781006, -0.004827725701034069, -0.058481309562921524, 0.06129748374223709, -0.009019983001053333, -0.00369622721336782, 0.051568884402513504, 0.010908099822700024, -0.06535716354846954, 0.03554961457848549, -0.004274548497051001, 0.00048060098197311163, 0.055043384432792664, 0.031727664172649384, 0.0015829545445740223, -0.014986064285039902, -0.009298857301473618, 0.054165616631507874, 0.020316677168011665, -0.04926474392414093, 0.01901831291615963, -0.001088638324290514, -0.04436387121677399, -0.058408163487911224, -0.04169399291276932, -0.03123392164707184, -0.04502219706773758, -0.009481726214289665, 0.02000580169260502, 0.016823891550302505, 0.05453135445713997, -0.025510139763355255, 0.07380568236112595, -0.041950009763240814, -0.012718496844172478, -0.02935037575662136, -0.011977879330515862, -0.03167280554771423, 0.011392700485885143, 0.0011349269188940525, 0.008681676350533962, 0.002024124376475811, -0.0692339688539505, -0.007168441079556942, -0.05087398737668991, -0.03982873633503914, -0.011109254322946072, 0.02421177551150322, -0.0025464422069489956, 0.015717538073658943, -0.00559577252715826, -0.008453091606497765, -0.03862180560827255, 0.013157380744814873, -0.0433032363653183, -0.02583930268883705, 0.022895121946930885, 0.015379231423139572, -0.018524568527936935, 0.005202605854719877, -0.002008123556151986, 0.03289802372455597, -0.0006748986779712141, -0.05420219153165817, 0.09794431179761887, 0.024010619148612022, 0.008425661362707615, 0.054092470556497574, -0.007986776530742645, -0.013897997327148914, -0.00014208017091732472, 0.056579478085041046, 0.02847260795533657, 0.04666801169514656, 0.04699717462062836, -0.060163699090480804, -0.017546221613883972, 0.011950449086725712, 0.0002527298347558826, 0.007109008729457855, -0.04809438809752464, 0.016668453812599182, -0.024906674399971962, 0.0022515670862048864, -0.028765197843313217, 0.04213287681341171 ]
23,337
parutils.logging.main
log
Logs 'str_in' in the current log file (log_path) - level: log level. Current log level is the attribute level of the current logger. You can get the current loger by using the get_logger function. Nothing is logged if logger level < level - c_out: specifies if something should be printed in the console or not
def log_input(str_in): """Same as input but traced in the log file""" log_print(str_in, c_out=False) command = input(str_in + '\n') log_print(command, c_out=False) return command
(*args, level=0, c_out=True)
[ -0.03586264327168465, 0.007261739112436771, 0.009599056094884872, 0.025692639872431755, 0.00551321217790246, -0.028672272339463234, -0.04556875303387642, 0.044712331146001816, 0.046853382140398026, -0.032918695360422134, 0.019394375383853912, 0.00867126602679491, -0.030813325196504593, 0.03068843111395836, 0.0024354481138288975, -0.03882443532347679, -0.028743641451001167, 0.0023150139022618532, -0.049779489636421204, 0.000008141334546962753, -0.0021856585517525673, 0.01631661131978035, 0.02246321737766266, 0.05406159535050392, -0.0159151628613472, 0.0724746584892273, -0.013702740892767906, -0.020857427269220352, -0.03170543164014816, -0.033079273998737335, -0.005923580843955278, -0.060520440340042114, -0.012239688076078892, -0.014407504349946976, -0.0025536520406603813, -0.0482807531952858, 0.015611846931278706, -0.0051385280676186085, -0.03679043427109718, -0.035595010966062546, -0.011820398271083832, 0.005151909776031971, -0.030313747003674507, 0.024550745263695717, -0.01181147713214159, 0.010963977314531803, 0.00009799221879802644, 0.039359696209430695, -0.0200545322149992, -0.0023596191313117743, 0.02735195681452751, -0.020036689937114716, -0.012864162214100361, 0.01767261140048504, 0.014398583211004734, -0.03613027557730675, 0.037432748824357986, -0.06722907721996307, 0.007859449833631516, -0.02644200809299946, -0.031205851584672928, 0.05213464796543121, 0.05070728063583374, 0.01107995118945837, 0.007359870709478855, -0.01655747927725315, 0.0007019755430519581, 0.007565055042505264, 0.02105369046330452, -0.0002949523914139718, -0.06280422955751419, -0.04713885858654976, -0.05113549157977104, -0.02257027104496956, -0.046746332198381424, -0.014951689168810844, 0.01804729551076889, 0.06069886311888695, -0.007854989729821682, 0.02676316723227501, 0.012266451492905617, -0.01718195341527462, -0.009991582483053207, 0.05498938634991646, -0.07119002193212509, -0.04878033325076103, -0.005267883185297251, 0.01885911077260971, -0.02378353476524353, -0.020090216770768166, -0.06137686222791672, 0.0037736063823103905, -0.024604270234704018, 0.0661228597164154, -0.009964819066226482, 0.0017886715941131115, -0.000159324481501244, 0.005798686295747757, -0.014175557531416416, 0.02562127076089382, -0.05313380807638168, 0.08507118374109268, 0.015246083959937096, -0.015879478305578232, -0.059057388454675674, -0.054025910794734955, -0.013033661991357803, -0.0122842937707901, 0.03853895887732506, -0.008653423748910427, -0.007507068105041981, -0.017440663650631905, 0.001826586085371673, -0.03043864108622074, -0.0029283363837748766, 0.018662847578525543, -0.011704424396157265, 0.031866010278463364, -0.026531219482421875, -0.008176147006452084, 0.02524658665060997, 0.0010320546571165323, -0.04374885559082031, -0.0325796939432621, 0.04421275109052658, 0.012043424881994724, -0.028832850977778435, -0.0200545322149992, 0.03871738165616989, -0.009161924012005329, 0.025478534400463104, 0.018716374412178993, 0.055596016347408295, 0.059164438396692276, -0.0008324459777213633, 0.055025070905685425, 0.0030688431579619646, 0.014389662072062492, -0.00995589792728424, 0.0028101324569433928, 0.03864601254463196, -0.029832009226083755, 0.020090216770768166, -0.06002086028456688, -0.026727482676506042, 0.006436541676521301, 0.049779489636421204, -0.015959767624735832, 0.026691798120737076, -0.030295904725790024, 0.021910112351179123, 0.008488384075462818, -0.09591919183731079, 0.031509168446063995, 0.01032166089862585, 0.01477326825261116, -0.050457488745450974, -0.020036689937114716, 0.044605277478694916, -0.0319373793900013, -0.009126239456236362, -0.031152326613664627, 0.04028748720884323, 0.016066821292042732, 0.031402114778757095, 0.03682611882686615, 0.004924422595649958, 0.08499981462955475, 0.03158053755760193, 0.02289142832159996, 0.00589235732331872, 0.05006496235728264, 0.0040590800344944, 0.07572191953659058, -0.03038511425256729, 0.02251674421131611, -0.05070728063583374, 0.013140714727342129, -0.010428713634610176, -0.016851874068379402, -0.057951174676418304, -0.00851068738847971, 0.0038204421289265156, 0.04556875303387642, 0.004435994662344456, -0.007747936528176069, -0.023373166099190712, 0.028351115062832832, -0.019251637160778046, 0.02508600801229477, -0.008532989770174026, -0.004179514478892088, 0.01843089982867241, -0.03095606341958046, -0.015014136210083961, 0.013238846324384212, -0.06126980856060982, 0.010045108385384083, 0.02199932374060154, 0.00439808052033186, 0.01815434731543064, 0.07743476331233978, -0.00019863287161570042, -0.05777275562286377, 0.009759634733200073, 0.01327453088015318, 0.004844133276492357, 0.033596694469451904, -0.024961113929748535, 0.015629690140485764, -0.025692639872431755, 0.009411713108420372, -0.019733374938368797, -0.0038784288335591555, -0.007288502529263496, 0.020500585436820984, 0.003173665376380086, 0.0331149585545063, -0.008002187125384808, 0.02148190140724182, 0.10141456127166748, 0.043499067425727844, 0.021125059574842453, 0.02497895620763302, 0.0144342677667737, -0.028529535979032516, 0.04556875303387642, 0.04813801497220993, -0.005004711914807558, -0.03411411494016647, 0.025995954871177673, -0.025121692568063736, -0.008644502609968185, 0.0320444330573082, -0.009518765844404697, -0.007101160008460283, -0.05723749101161957, -0.08164549618959427, 0.015130110085010529, -0.007756857667118311, -0.037896644324064255, 0.013907925225794315, 0.030474325641989708, 0.010990740731358528, -0.019501427188515663, 0.013684899546205997, -0.004835212137550116, 0.08250191807746887, -0.040572959929704666, -0.0026138692628592253, 0.06002086028456688, -0.009652581997215748, -0.047210223972797394, 0.03461369499564171, 0.01791347935795784, 0.04196464642882347, 0.02424742840230465, -0.000039691727579338476, 0.020982323214411736, 0.003091145772486925, -0.02340884879231453, 0.031973063945770264, 0.04399864748120308, 0.007582897320389748, -0.0025068165268749, -0.0751509740948677, -0.05277696251869202, -0.01273034606128931, 0.06797844171524048, -0.033864326775074005, 0.08863960951566696, 0.06879918277263641, -0.021125059574842453, 0.01406850479543209, -0.023283954709768295, -0.04578285664319992, 0.030456483364105225, 0.04332064464688301, -0.0011720036854967475, -0.03679043427109718, -0.0018399676773697138, 0.03497053682804108, 0.04649654030799866, -0.014666215516626835, -0.05755864828824997, -0.022088533267378807, -0.007185910362750292, -0.04378454014658928, 0.02719137631356716, -0.025853218510746956, 0.02137484960258007, 0.00960797630250454, -0.0001492882875027135, -0.0010738720884546638, -0.04332064464688301, 0.000519930268637836, -0.013809793628752232, -0.056488122791051865, -0.02760174497961998, -0.0019470204133540392, -0.01322992518544197, -0.037004537880420685, -0.04239285737276077, -0.019715532660484314, -0.04232148826122284, -0.01574566215276718, -0.018413059413433075, -0.05341928079724312, -0.03818211704492569, -0.09235076606273651, -0.02069684863090515, 0.08450023829936981, -0.032026588916778564, -0.018930479884147644, -0.0660158097743988, 0.021196428686380386, -0.0017407209379598498, 0.017931321635842323, 0.02094663865864277, 0.03714727610349655, -0.017931321635842323, 0.03068843111395836, 0.046282436698675156, 0.007319726049900055, -0.07136844098567963, -0.03259753808379173, 0.043820224702358246, 0.01596868969500065, -0.014648373238742352, -0.029742799699306488, -0.00039949602796696126, -0.01691432110965252, -0.024336639791727066, -0.01123160868883133, -0.022820059210062027, -0.03814643248915672, -0.025210902094841003, -0.03174111619591713, -0.005232199095189571, -0.0035505800042301416, 0.06148391589522362, 0.006115383468568325, 0.042714014649391174, 0.00909055583178997, -0.029421640560030937, -0.022142060101032257, 0.02965358830988407, 0.05966401845216751, 0.02802995592355728, 0.034274693578481674, 0.031295061111450195, -0.008706950582563877, -0.03356100991368294, -0.035595010966062546, 0.054240018129348755, 0.0101075554266572, -0.0017050367314368486, -0.014050662517547607, 0.006668488960713148, -0.03530953824520111, -0.009920213371515274, -0.0035617314279079437, 0.027048639953136444, -0.0014340596972033381, -0.0123645830899477, -0.0166645310819149, 0.03932401165366173, 0.0064320811070501804, 0.09056655317544937, 0.09342129528522491, 0.0025804152246564627, 0.016173873096704483, 0.01273034606128931, 0.028458166867494583, -0.08635582029819489, 0.060948651283979416, 0.01964416354894638, -0.0565594919025898, -0.027673114091157913, 0.009946976788341999, -0.007703331299126148, 0.016816189512610435, -0.025121692568063736, 0.02786937728524208, 0.018011610954999924, -0.005589041393250227, -0.029261061921715736, 0.020232953131198883, 0.07743476331233978, 0.014345057308673859, -0.0415007509291172, 0.017360374331474304, 0.09727519005537033, 0.010562529787421227, -0.01259652990847826, -0.02984985150396824, 0.003459139261394739, 0.008153844624757767, -0.07165391743183136, 0.005535515025258064, -0.04524759203195572, 0.0660158097743988, -0.03329337760806084, 0.03818211704492569, -0.009251134470105171, 0.007953121326863766, -0.0288685355335474, 0.00415275152772665, -0.004741541109979153, -0.062197599560022354, -0.023979797959327698, 0.016486110165715218, 0.03693316876888275, -0.016280926764011383, 0.020625479519367218, -0.03482780233025551, 0.016191715374588966, -0.08557076752185822, -0.06212623044848442, 0.039216961711645126, -0.042250119149684906, 0.0019793591927736998, 0.014238004572689533, 0.05184917524456978, 0.06280422955751419, 0.0328473262488842, -0.03309711441397667, 0.04132232815027237, 0.046389490365982056, 0.04299948737025261, -0.07111865282058716, 0.01921595260500908, -0.01980474404990673, -0.011918529868125916, -0.011677661910653114, -0.03068843111395836, 0.027155693620443344, 0.022695165127515793, 0.029475167393684387, 0.06166233494877815, -0.03620164468884468, -0.054561175405979156, 0.05163506790995598, 0.02283790148794651, -0.0003975445288233459, 0.03725432604551315, 0.009153002873063087, 0.055453281849622726, 0.00886306818574667, 0.007400015369057655, 0.03586264327168465, -0.005209896247833967, -0.049779489636421204, -0.013738425448536873, 0.0247291661798954, -0.06362497061491013, -0.0490301214158535, 0.0812886580824852, 0.0025268888566643, 0.041358012706041336, -0.06986970454454422, 0.08885370939970016, 0.031776800751686096, 0.0142736891284585, 0.0044404552318155766, 0.0021566650830209255, 0.05288401618599892, 0.024229586124420166, -0.004324481822550297, 0.012917688116431236, 0.013613530434668064, 0.043606121093034744, -0.047745488584041595, 0.011873925104737282, -0.010767714120447636, -0.020875269547104836, 0.02786937728524208, 0.0019436749862506986, -0.0403231717646122, -0.006244739051908255, -0.06144823133945465, -0.08471434563398361, 0.017083821818232536, 0.024907587096095085, -0.02373000793159008, 0.003871737979352474, 0.044855065643787384, -0.022820059210062027, 0.0330614298582077, -0.003987711854279041, -0.037539802491664886, 0.09556234627962112, 0.021125059574842453, -0.09541960805654526, 0.008421475999057293, -0.043035171926021576, -0.0401090644299984, 0.057487282902002335, 0.015611846931278706, 0.034809958189725876, -0.007185910362750292, 0.04167916998267174, -0.037789590656757355, -0.0011865004198625684, 0.03582695871591568, 0.022802216932177544, 0.03200874850153923, 0.03975222259759903, -0.006695251911878586, 0.008095857687294483, -0.029243219643831253, 0.01864500530064106, 0.03609459102153778, -0.018466584384441376, 0.014532399363815784, -0.049101490527391434, 0.0144342677667737, 0.04342769831418991, -0.06348223239183426, -0.009206529706716537, 0.022552428767085075, 0.031134484335780144, -0.08164549618959427, -0.12432383000850677, 0.025068165734410286, 0.022766534239053726, 0.02906479872763157, 0.003657632740214467, -0.04646085575222969, 0.02440800704061985, -0.014826794154942036, 0.011882846243679523, 0.0328473262488842, 0.004951186012476683, -0.008421475999057293, 0.06915602087974548, -0.001368266879580915, 0.0019280631095170975, -0.028583060950040817, -0.022338323295116425, -0.05866486206650734, 0.007110081147402525, 0.00013611579197458923, 0.006204593926668167, -0.0015110038220882416, 0.012168319895863533, -0.017333609983325005, 0.05259854346513748, -0.028244061395525932, -0.0053660147823393345, -0.03545227274298668, -0.024907587096095085, 0.02492542937397957, 0.03725432604551315, 0.0008424822008237243, -0.01901968941092491, -0.007185910362750292, 0.045497383922338486, -0.03953811898827553, 0.007814845070242882, 0.001453016884624958, -0.03853895887732506, 0.004061310552060604, 0.004511823877692223, -0.063446544110775, -0.07757750153541565, -0.02949300967156887, -0.015950847417116165, -0.03329337760806084, 0.06680086255073547, 0.0652664452791214, -0.018894795328378677, 0.004795067477971315, 0.004902120213955641, -0.04981517419219017, 0.05142096430063248, -0.002517967950552702, 0.0028681193944066763, 0.008274278603494167, 0.02503248117864132, -0.01837737485766411, 0.0408584326505661, -0.026227902621030807, 0.023212585598230362, 0.0015935235423967242, -0.007658726070076227, -0.00813154224306345, -0.008354568853974342, -0.08499981462955475, 0.016325531527400017, 0.003588494611904025, -0.022035006433725357, 0.0014797800686210394, 0.029742799699306488, -0.020500585436820984, -0.014255846850574017, 0.05812959745526314, -0.0034167643170803785, 0.03398922085762024, -0.04578285664319992, -0.07900486886501312, 0.01869853213429451, -0.032133642584085464, 0.031152326613664627, 0.006423159968107939, -0.024800533428788185, -0.023123376071453094, -0.020357849076390266, -0.030474325641989708, 0.001248947810381651, -0.008144923485815525, 0.005522133316844702, -0.05366906896233559, 0.06044907122850418, -0.02990337833762169, -0.024443691596388817, 0.004409231711179018, 0.0032160405535250902, 0.10491161048412323, 0.029296746477484703, 0.06380338966846466, 0.022427532821893692, 0.021499743685126305, -0.016387978568673134, 0.00045107086771167815, -0.016218479722738266, -0.03668338060379028, -0.0573088601231575, 0.01351539883762598, -0.05934286117553711, 0.0020841816440224648, 0.039109908044338226, -0.007011949550360441, 0.038681697100400925, 0.004090304020792246, -0.02283790148794651, -0.015228241682052612, -0.036058906465768814, -0.08442886918783188, 0.011927451007068157, -0.02676316723227501, -0.03329337760806084, -0.006953962612897158, -0.04546169936656952, 0.06280422955751419, -0.006204593926668167, -0.02481837570667267, -0.03406058996915817, 0.04267833009362221, -0.017743978649377823, -0.005276804324239492, 0.03347180038690567, 0.04885169863700867, 0.07743476331233978, 0.03639790788292885, -0.039787907153367996, 0.04503348842263222, 0.03457801043987274, 0.04592559486627579, -0.040002014487981796, 0.004616646096110344, 0.05920012295246124, -0.03975222259759903, 0.020821742713451385, -0.06908465176820755, 0.007328647188842297, -0.02257027104496956, -0.02356942929327488, -0.0072840419597923756, -0.009786398150026798, 0.0029127246234565973, -0.08450023829936981, 0.009384950622916222, -0.025103850290179253, 0.08592760562896729, -0.07971855252981186, 0.09070929139852524, 0.026156535372138023, 0.04592559486627579, -0.07254602015018463, -0.04649654030799866, -0.007747936528176069, 0.06019928306341171, -0.06740749627351761, 0.018769901245832443, 0.02738763950765133, 0.05359769985079765, -0.03117016702890396, 0.040929801762104034, -0.001293553039431572, -0.028101325035095215, -0.0041928961873054504, -0.019983164966106415, -0.03447095677256584, 0.017797505483031273, 0.011133477091789246, -0.05930717661976814, 0.0034613695461302996, -0.03932401165366173, -0.005022554192692041, 0.08364381641149521, 0.037789590656757355, 0.029885536059737206, 0.028797166422009468, -0.007953121326863766, -0.0319909043610096, -0.032972220331430435, -0.04542601481080055, 0.007854989729821682, -0.030813325196504593, 0.029457325115799904, -0.01785995252430439, -0.0020217341370880604, 0.005838830955326557, 0.05663086101412773, 0.014630530960857868, -0.045390330255031586, 0.005593501962721348, -0.04324927553534508, 0.00841701589524746, -0.0012456023832783103, -0.056131280958652496, 0.05202759429812431, 0.006574817933142185, 0.015397741459310055, 0.003557270858436823, -0.10519708693027496, -0.026941588148474693, 0.049101490527391434, 0.00639193644747138, -0.03564853593707085, 0.034542325884103775, -0.050457488745450974, 0.016227399930357933, 0.02979632467031479, -0.03382864221930504, -0.04667496308684349, -0.05006496235728264, 0.026798849925398827, -0.021713849157094955, -0.037789590656757355, -0.023426691070199013, -0.01393468864262104, -0.009839924052357674, 0.04756706953048706, -0.0012076878920197487, 0.049779489636421204, 0.006164449267089367, -0.04917285963892937, 0.00851068738847971, 0.016950005665421486, -0.03125938028097153, -0.05384749174118042, 0.016387978568673134, 0.042821064591407776, 0.029475167393684387, 0.017824267968535423, 0.04906580597162247, 0.032704588025808334, 0.048102330416440964, -0.019447900354862213, 0.00034150914871133864, 0.027262745425105095, -0.027940746396780014, 0.0038851196877658367, 0.006655107252299786, -0.020821742713451385, -0.02189227007329464 ]
23,338
parutils.logging.main
log_array
null
def log_array(array, nb_tab=0, tab_char=' '): for elt in array: log_print(elt, nb_tab=nb_tab, tab_char=tab_char)
(array, nb_tab=0, tab_char=' ')
[ -0.019545435905456543, 0.06969582289457321, -0.023544946685433388, 0.026014210656285286, 0.043264273554086685, -0.01479819044470787, -0.045385755598545074, -0.03683027997612953, -0.037804074585437775, 0.0290920939296484, -0.00011948266910621896, -0.046707332134246826, 0.0640617311000824, -0.023423222824931145, -0.05032427981495857, -0.023910120129585266, 0.02825741469860077, -0.026727166026830673, -0.011737694963812828, 0.11462946236133575, 0.03343939036130905, 0.01860642060637474, -0.004977652337402105, 0.001882378477603197, 0.013789618387818336, -0.0007526253466494381, 0.00802945252507925, -0.03957776725292206, 0.013659199699759483, 0.0430208258330822, -0.01938893273472786, -0.08903259038925171, -0.03380456194281578, 0.0031365728937089443, -0.008868481032550335, -0.014493879862129688, 0.031422246247529984, -0.02528386563062668, -0.05101984739303589, 0.027579236775636673, -0.002164952689781785, -0.02024100348353386, -0.002751837484538555, -0.023005882278084755, -0.031074460595846176, -0.03517830744385719, 0.12436740100383759, -0.0017921722028404474, -0.09925742447376251, -0.009042372927069664, -0.0011813773307949305, -0.05449768528342247, 0.041977476328611374, 0.009033678099513054, -0.01495469268411398, 0.04726378619670868, 0.053871672600507736, -0.0753994733095169, 0.01415479090064764, -0.02370144985616207, -0.037804074585437775, 0.04138624295592308, 0.04935048520565033, 0.015798067674040794, 0.022588541731238365, -0.019667159765958786, 0.0034560991916805506, 0.07219986617565155, 0.029422489926218987, -0.02959638088941574, 0.017032699659466743, 0.020797457545995712, 0.0173370111733675, 0.025509923696517944, -0.05272398889064789, 0.05181974917650223, -0.04782024025917053, 0.028448695316910744, -0.0061209904961287975, 0.005421076435595751, -0.01416348572820425, 0.022292926907539368, 0.030657120048999786, 0.08499830216169357, 0.04702033847570419, -0.05578448250889778, -0.043751172721385956, 0.09028460830450058, 0.019510658457875252, 0.04608132317662239, -0.013946120627224445, 0.005655830260366201, -0.004808107856661081, 0.025440366938710213, -0.0909801796078682, 0.0017497860826551914, 0.031004903838038445, -0.0012987542431801558, -0.0339088961482048, -0.006586151197552681, 0.03717806190252304, -0.003043106058612466, 0.0655919760465622, -0.007499082945287228, -0.08736322820186615, 0.002938771154731512, -0.005034166853874922, 0.03763018175959587, 0.024570908397436142, 0.04298604652285576, 0.007238245103508234, 0.039508212357759476, 0.053384777158498764, -0.03679550066590309, 0.04086456820368767, 0.05303699150681496, 0.03745628893375397, 0.00993791501969099, 0.010789984837174416, -0.030222391709685326, 0.05498458072543144, -0.08917170763015747, 0.004303821362555027, -0.0312657430768013, 0.015493757091462612, -0.002499694237485528, 0.0052819629199802876, 0.03213519975543022, 0.015824152156710625, -0.047924574464559555, -0.0009623822988942266, 0.0028583460953086615, -0.005816679913550615, -0.011016043834388256, 0.045768316835165024, -0.03999510779976845, 0.017997799441218376, -0.08478963375091553, -0.0031691775657236576, -0.05919276177883148, -0.03832574933767319, -0.04350772500038147, 0.0044516297057271, 0.02535342052578926, -0.0037060684990137815, -0.01560678705573082, 0.045663982629776, 0.053871672600507736, 0.04886358976364136, -0.02286676876246929, -0.03752584755420685, 0.024988248944282532, -0.010181363672018051, -0.008811965584754944, 0.027961798012256622, 0.007577334064990282, -0.04514230415225029, -0.016145851463079453, 0.04601176455616951, 0.028796479105949402, 0.012581069953739643, -0.0336480587720871, -0.050498172640800476, 0.048794034868478775, -0.02695322595536709, 0.04806368798017502, -0.10850846767425537, 0.05119374021887779, -0.05734951049089432, 0.03434362635016441, 0.049628712236881256, -0.0776948481798172, -0.02910948358476162, 0.031161407008767128, 0.03968210518360138, 0.04882881045341492, -0.0169109757989645, 0.01817169040441513, -0.016250187531113625, 0.010781290009617805, 0.00031871104147285223, 0.025527313351631165, -0.006942629348486662, 0.05275876447558403, -0.03434362635016441, -0.014719938859343529, 0.03039628267288208, -0.038221411406993866, 0.013659199699759483, 0.029474657028913498, -0.019510658457875252, 0.014824273996055126, 0.01768479309976101, -0.043264273554086685, 0.03328288719058037, -0.003164830384775996, -0.019145485013723373, 0.006999144330620766, 0.024223124608397484, -0.044968415051698685, -0.0099466098472476, 0.029248597100377083, -0.02448396198451519, -0.046707332134246826, 0.033108994364738464, 0.03340461105108261, 0.021823419257998466, 0.005321088247001171, -0.0727563202381134, -0.02531864307820797, 0.030100667849183083, 0.002098656492307782, 0.0290920939296484, -0.007794699165970087, 0.03582170605659485, 0.03811707720160484, -0.0353522002696991, 0.051298074424266815, -0.008911953307688236, -0.0362042672932148, 0.017623931169509888, 0.0015954570844769478, -0.023058049380779266, -0.01811952330172062, -0.021284352988004684, 0.03331766650080681, 0.07852952927350998, 0.03749106824398041, -0.007733836770057678, 0.017554374411702156, -0.020119279623031616, 0.02274504490196705, -0.04695077985525131, -0.00291051366366446, 0.015328560024499893, -0.031509190797805786, 0.023458000272512436, -0.04402939975261688, 0.02664022147655487, -0.02157996967434883, -0.01310274563729763, -0.015145974233746529, -0.008216386660933495, -0.021719083189964294, -0.018832480534911156, -0.022536374628543854, 0.0011004089610651135, 0.03811707720160484, -0.03724762052297592, -0.045837871730327606, -0.04771590605378151, 0.004271216690540314, -0.018241247162222862, -0.032343871891498566, 0.031161407008767128, -0.0072730234824121, 0.061453353613615036, 0.04013422131538391, 0.00952926930040121, 0.013407056219875813, 0.003849529195576906, -0.0077034058049321175, 0.010320477187633514, -0.012894075363874435, 0.031144017353653908, 0.041560135781764984, -0.006907850969582796, -0.0145460469648242, 0.06298360228538513, 0.06110557168722153, 0.036934614181518555, 0.04100368171930313, 0.0009064109181053936, 0.020988738164305687, -0.05578448250889778, -0.0064600794576108456, -0.003984295297414064, 0.020780067890882492, -0.0328829362988472, -0.01858903095126152, -0.010668260976672173, -0.02919642999768257, -0.021806029602885246, 0.024657854810357094, -0.04253393039107323, -0.04896792396903038, -0.012920158915221691, 0.02919642999768257, 0.009007594548165798, -0.0006988276145420969, -0.001207460998557508, 0.03881264477968216, 0.019528046250343323, 0.03683027997612953, -0.011424689553678036, -0.03717806190252304, 0.01850208453834057, 0.047889795154333115, -0.03361327946186066, -0.04555964469909668, -0.018658587709069252, -0.02874431200325489, 0.03742150962352753, -0.039056092500686646, -0.020571397617459297, 0.016189325600862503, -0.045350976288318634, 0.018049966543912888, -0.005164586007595062, -0.023510169237852097, 0.0057819015346467495, 0.03253515064716339, -0.014893830753862858, 0.040760233998298645, 0.005042861681431532, 0.08256381750106812, -0.01725006476044655, 0.00995530467480421, -0.009337988682091236, 0.03423929214477539, 0.015885014086961746, 0.0021421294659376144, -0.007194772362709045, 0.013050577603280544, 0.0061209904961287975, -0.047472454607486725, 0.035247862339019775, -0.018728144466876984, -0.022971104830503464, 0.0388474240899086, 0.049593936651945114, 0.005686261225491762, 0.008003368973731995, 0.05192408710718155, 0.013154912739992142, 0.06093167886137962, -0.05519324913620949, -0.039508212357759476, -0.062288034707307816, -0.03036150522530079, -0.03703894838690758, -0.0089032594114542, -0.03585648536682129, 0.014398239552974701, 0.013067967258393764, -0.000038344496715581045, -0.05877542123198509, 0.04935048520565033, 0.025996821001172066, 0.02876169979572296, 0.05696694552898407, -0.02368406020104885, -0.0037734515499323606, 0.06284449249505997, -0.01945848949253559, -0.022588541731238365, 0.0006749174790456891, 0.009633604437112808, -0.03703894838690758, 0.02363189309835434, -0.004175576381385326, -0.01940632238984108, 0.04935048520565033, 0.011285576038062572, 0.054741133004426956, 0.006764390040189028, 0.010207447223365307, 0.007220855914056301, 0.033978454768657684, -0.0005512912757694721, -0.013554864563047886, -0.03432623669505119, 0.08625032007694244, 0.01310274563729763, -0.05181974917650223, 0.010442201048135757, -0.05108940601348877, -0.03703894838690758, -0.04761156812310219, -0.042394816875457764, 0.029787661507725716, 0.006620929576456547, 0.027770517393946648, 0.012728878296911716, -0.05122851952910423, 0.009790107607841492, -0.044898856431245804, 0.07004360854625702, -0.04086456820368767, 0.025440366938710213, 0.00019820945453830063, 0.042012255638837814, -0.02582293003797531, -0.0026931490283459425, -0.04044722765684128, -0.016232797876000404, -0.02956160344183445, 0.017580458894371986, -0.04695077985525131, -0.016215408220887184, -0.03521308675408363, 0.012798435054719448, -0.05081117898225784, -0.02277982234954834, -0.04942004382610321, 0.003838661126792431, -0.0695219337940216, -0.025666426867246628, -0.017963020130991936, 0.0066730971448123455, 0.02069312147796154, 0.04145580157637596, 0.03957776725292206, -0.07317366451025009, 0.0735214427113533, 0.0396125465631485, -0.03662160784006119, 0.010233530774712563, -0.013467918150126934, -0.0437859483063221, -0.02570120431482792, -0.009138013236224651, -0.009868358261883259, 0.042394816875457764, 0.056653942912817, -0.02787485159933567, -0.033108994364738464, 0.01600673794746399, 0.10398728400468826, 0.01851947419345379, -0.007859908044338226, -0.0273879561573267, 0.005190669558942318, -0.03829097002744675, 0.021388689056038857, -0.026466328650712967, -0.0041625346057116985, 0.014893830753862858, 0.07014794647693634, 0.027753127738833427, 0.0002160061994800344, 0.024327460676431656, 0.057245172560214996, -0.019075928255915642, 0.014293904416263103, 0.03856919705867767, 0.007129563018679619, -0.034813135862350464, -0.06520941853523254, 0.03710850700736046, -0.015719816088676453, 0.01036395039409399, -0.007133910432457924, -0.00905976165086031, 0.02822263538837433, -0.020988738164305687, -0.012111562304198742, -0.001041720388457179, 0.03477835655212402, 0.035247862339019775, 0.01563287153840065, 0.07049572467803955, 0.00020405113173183054, -0.07588637620210648, -0.020432284101843834, -0.08381583541631699, -0.022258147597312927, 0.01649363525211811, 0.017980409786105156, -0.01011180691421032, 0.0312657430768013, 0.04343816637992859, 0.0061470745131373405, -0.0005007539875805378, 0.01327663753181696, 0.031491801142692566, -0.0016921843634918332, -0.014250431209802628, -0.08291160315275192, 0.031057070940732956, -0.0932059958577156, -0.05140240862965584, -0.01893681474030018, -0.049593936651945114, 0.006755695678293705, 0.058531973510980606, 0.024240514263510704, -0.0059731826186180115, 0.015467673540115356, -0.039438653737306595, -0.059262316673994064, -0.013128829188644886, -0.06962627172470093, -0.015711123123764992, 0.019301988184452057, -0.01600673794746399, 0.05498458072543144, 0.027579236775636673, -0.04893314838409424, -0.006394870113581419, 0.00205518351867795, 0.015954570844769478, 0.009129318408668041, -0.06691356003284454, -0.01246804092079401, -0.03423929214477539, 0.06194025278091431, 0.025527313351631165, -0.0362042672932148, -0.015867624431848526, 0.006912198383361101, 0.0001429173134965822, -0.03870831057429314, -0.018762923777103424, -0.04309038445353508, -0.0564800500869751, -0.07679060846567154, -0.05981877073645592, 0.02617071196436882, 0.06868725270032883, 0.014172179624438286, 0.0405515618622303, -0.036586832255125046, 0.0071730357594788074, 0.031856972724199295, 0.012337621301412582, 0.03662160784006119, 0.03323071822524071, -0.06607887893915176, 0.028100911527872086, -0.0160589050501585, 0.04635955020785332, 0.06882636994123459, 0.03491747006773949, -0.002623592270538211, 0.06552242487668991, 0.03498702496290207, -0.054219458252191544, 0.06667010486125946, 0.03138746693730354, 0.005238489713519812, -0.04145580157637596, -0.019075928255915642, -0.036934614181518555, -0.044585853815078735, 0.019528046250343323, -0.004438587464392185, -0.05185452848672867, 0.025092583149671555, -0.005947099067270756, 0.025857707485556602, 0.020832234993577003, 0.061488132923841476, 0.0006895895930938423, -0.064235620200634, 0.012981021776795387, -0.00780339352786541, -0.004010379314422607, 0.047576792538166046, -0.03378717228770256, 0.011016043834388256, -0.0059514460153877735, -0.0145460469648242, 0.0005727560492232442, 0.052097976207733154, 0.022953715175390244, 0.007990327663719654, 0.011894198134541512, -0.028361748903989792, 0.04465540871024132, 0.021719083189964294, 0.0035995598882436752, -0.08736322820186615, -0.027335787191987038, -0.0018356450600549579, -0.03559564799070358, -0.025440366938710213, -0.0007792525575496256, 0.02742273360490799, -0.052515316754579544, -0.0405515618622303, 0.028622586280107498, -0.05526280775666237, -0.02232770435512066, 0.01937154494225979, 0.04385550692677498, -0.029335543513298035, -0.010311782360076904, -0.044064175337553024, -0.0312657430768013, -0.004166881553828716, 0.007525166962295771, -0.02274504490196705, -0.004014726262539625, 0.02404923364520073, 0.04486408084630966, -0.03343939036130905, 0.022049477323889732, -0.024675242602825165, -0.007955549284815788, -0.05328044295310974, 0.008911953307688236, -0.041594915091991425, -0.0008939124527387321, 0.020588787272572517, -0.008533739484846592, 0.04121235013008118, -0.013050577603280544, 0.0058079855516552925, 0.05199364200234413, -0.06649621576070786, 0.026031600311398506, 0.005899278447031975, -0.048272356390953064, -0.05032427981495857, -0.008955426514148712, 0.03258731961250305, 0.003043106058612466, 0.04587265104055405, -0.008816312998533249, -0.022571152076125145, 0.02441440522670746, -0.04684644564986229, 0.004399462137371302, -0.017215285450220108, 0.0173804834485054, -0.034413184970617294, -0.02072790078818798, 0.0753994733095169, -0.09070195257663727, -0.008746756240725517, 0.06322705000638962, -0.014754717238247395, -0.05519324913620949, -0.02784007415175438, -0.050498172640800476, -0.030065888538956642, -0.015137279406189919, -0.04103846102952957, 0.013989593833684921, -0.031109239906072617, -0.01560678705573082, 0.01349400170147419, -0.036934614181518555, 0.03627382591366768, -0.0198932196944952, -0.0008428317378275096, 0.023944897577166557, 0.003521308535709977, 0.02022361382842064, -0.024170957505702972, 0.029891997575759888, -0.03448273986577988, 0.03804752230644226, -0.030291948467493057, 0.0035995598882436752, 0.05035905912518501, 0.04688122496008873, 0.015754595398902893, 0.007446915376931429, 0.0235971137881279, -0.024223124608397484, -0.007903381250798702, -0.04437718167901039, 0.021249575540423393, -0.006294882390648127, 0.0388474240899086, 0.054949801415205, 0.009164096787571907, -0.029631158336997032, -0.02031056024134159, 0.009146708063781261, 0.023979676887392998, -0.010259615257382393, 0.0776948481798172, -0.013607031665742397, 0.05442812666296959, 0.06385306268930435, 0.00472985627129674, -0.0708782896399498, 0.003960385452955961, 0.012146340683102608, 0.03241342678666115, -0.1038481742143631, 0.03124835342168808, 0.027127116918563843, -0.025683816522359848, 0.10057900846004486, 0.019962776452302933, -0.04013422131538391, -0.034813135862350464, -0.042429592460393906, 0.022588541731238365, 0.03491747006773949, -0.0339088961482048, 0.05738428607583046, 0.023423222824931145, 0.003206129651516676, 0.029039926826953888, -0.02750968001782894, 0.048759255558252335, 0.009833579882979393, -0.00024480701540596783, 0.04806368798017502, 0.033126384019851685, -0.002582293003797531, -0.03213519975543022, -0.04218614473938942, -0.032343871891498566, 0.030674509704113007, -0.0014519963879138231, 0.047959353774785995, -0.029039926826953888, 0.0035713023971766233, -0.06079256534576416, 0.021266965195536613, -0.017641320824623108, -0.045663982629776, -0.010972571559250355, 0.039473433047533035, -0.018310803920030594, 0.03759540244936943, 0.022136423736810684, 0.031109239906072617, -0.06534852832555771, 0.046255212277173996, -0.04309038445353508, 0.06399217247962952, -0.012172424234449863, 0.0025518618058413267, -0.016571886837482452, -0.01682402938604355, -0.05220231041312218, -0.0021019168198108673, -0.014215652830898762, 0.007442567963153124, -0.03787362948060036, -0.030187612399458885, 0.059366654604673386, -0.067643903195858, -0.005625399295240641, -0.04573353752493858, 0.03328288719058037, 0.013224469497799873, 0.011894198134541512, 0.03138746693730354, 0.012311537750065327, 0.01940632238984108, -0.03465663269162178, 0.014763412065804005, -0.001606325269676745, -0.016380606219172478, -0.0591232068836689, 0.022588541731238365, 0.04799412935972214, 0.004127756226807833, 0.029683327302336693, -0.06333138793706894, -0.022032087668776512, -0.006812210660427809, -0.019075928255915642, 0.002571424702182412, -0.0044081564992666245, 0.01163335982710123, 0.0168675035238266, -0.007894686423242092, 0.005021125078201294, -0.017963020130991936 ]
23,339
parutils.logging.main
log_dict
null
def log_dict(d, nb_tab=0, depth=0, tab_char=' '): for key in d: if isinstance(d[key], dict) and depth > 0: log_print(f'{key}:', nb_tab=nb_tab, tab_char=tab_char) log_dict(d[key], nb_tab + 1, depth - 1, tab_char=tab_char) else: log_print(f'{key}: {d[key]}', nb_tab=nb_tab, tab_char=tab_char)
(d, nb_tab=0, depth=0, tab_char=' ')
[ -0.013576586730778217, 0.04126009717583656, -0.03836093097925186, -0.0062314411625266075, 0.006920877378433943, 0.00507354224100709, -0.04348750412464142, -0.027877965942025185, -0.007353984750807285, -0.028443656861782074, -0.01873851753771305, 0.01831424981355667, -0.008467689156532288, 0.0013600894017145038, -0.013992016203701496, -0.045326001942157745, 0.04352286085486412, 0.01842031627893448, -0.008043420501053333, 0.04691700637340546, 0.03196154907345772, 0.04016406834125519, 0.028001710772514343, 0.012922506779432297, -0.027294596657156944, -0.03425966948270798, -0.004134406801313162, -0.007079978007823229, 0.06155426427721977, 0.05246785283088684, -0.04677558317780495, -0.08450011163949966, -0.020523980259895325, 0.06038752570748329, -0.029893239960074425, -0.03355255350470543, 0.0003270401793997735, -0.027771899476647377, -0.12049221247434616, 0.008450010791420937, -0.04295716807246208, 0.042992524802684784, -0.08442939817905426, -0.018826907500624657, 0.00716394791379571, -0.014310217462480068, 0.063322052359581, 0.026481416076421738, -0.03758310526609421, -0.01958705484867096, -0.00654964242130518, -0.039987292140722275, 0.020347202196717262, 0.00031571529689244926, -0.003005234058946371, -0.05359923467040062, 0.02073611505329609, -0.056286267936229706, 0.01673208363354206, -0.04801303520798683, -0.04493708908557892, 0.012109325267374516, -0.039386242628097534, 0.02651677094399929, -0.04154294356703758, -0.06714046746492386, -0.03212064877152443, -0.01065090298652649, -0.02520861104130745, -0.06586766242980957, -0.029080059379339218, 0.014646097086369991, 0.01512339897453785, 0.04260361194610596, -0.09157124906778336, 0.019799189642071724, -0.061624977737665176, -0.006355185993015766, 0.0033853077329695225, -0.0030427994206547737, -0.03427734598517418, -0.07106494903564453, -0.030317509546875954, 0.018084438517689705, 0.009369258768856525, 0.025862691923975945, 0.020223457366228104, 0.06544338911771774, 0.017474552616477013, 0.06215531378984451, -0.01845567300915718, -0.005612716544419527, -0.00190147350076586, 0.011605506762862206, -0.047906968742609024, 0.016502270475029945, 0.012639661319553852, 0.009130608290433884, -0.035391051322221756, 0.018667807802557945, 0.012869472615420818, -0.018384961411356926, 0.018049081787467003, -0.003811785951256752, -0.09199552237987518, -0.0533517450094223, -0.022274088114500046, 0.013134640641510487, -0.011375694535672665, 0.031908515840768814, -0.06035217270255089, -0.009316225536167622, 0.030335186049342155, -0.009457648731768131, 0.08704572170972824, 0.027754221111536026, 0.008273232728242874, -0.006823649164289236, 0.040411558002233505, -0.0031952708959579468, 0.03183780238032341, -0.033499520272016525, 0.016670210286974907, -0.004057066049426794, -0.0158658679574728, 0.004202908370643854, -0.009333903901278973, 0.018225861713290215, 0.01117239985615015, 0.02793099917471409, 0.043133947998285294, -0.0036990896333009005, -0.03800737112760544, 0.018384961411356926, 0.10995621234178543, 0.004706726875156164, -0.0172889344394207, 0.005908820778131485, 0.006302152760326862, 0.0019202561816200614, -0.012082808651030064, -0.062190666794776917, -0.021354839205741882, 0.014681452885270119, 0.009298548102378845, -0.001615313347429037, 0.0216023288667202, 0.07375197857618332, 0.005449196323752403, -0.05370530113577843, -0.008715178817510605, 0.037689171731472015, -0.005356387700885534, 0.05232642963528633, -0.0006060187006369233, -0.007566118612885475, -0.044901732355356216, -0.06841327250003815, 0.005873464979231358, -0.015070364810526371, 0.005572941619902849, -0.053952790796756744, 0.010191279463469982, -0.004631596151739359, 0.0005673484411090612, 0.04741198569536209, -0.0403408482670784, -0.017695525661110878, 0.02116038277745247, 0.024094905704259872, 0.0374770350754261, 0.021107349544763565, -0.0165818203240633, 0.030582675710320473, 0.05996325984597206, 0.06505447626113892, -0.03775988146662712, -0.020082034170627594, -0.04939190670847893, -0.020523980259895325, 0.008388138376176357, 0.00010282154107699171, 0.013311419636011124, 0.03924482315778732, -0.0194633100181818, -0.04857872426509857, 0.0033786785788834095, 0.004300136584788561, 0.019975967705249786, 0.043133947998285294, -0.0309715885668993, -0.00760589400306344, 0.04196720942854881, -0.05370530113577843, 0.03475464880466461, 0.00858259480446577, 0.014486996456980705, -0.002179899485781789, 0.06738795340061188, 0.004724404774606228, -0.05543772876262665, -0.00894057098776102, -0.05533166229724884, -0.03807808458805084, -0.007261176127940416, -0.0022141505032777786, -0.0009546037763357162, 0.022539256140589714, -0.0504525788128376, 0.0011103898286819458, -0.018119793385267258, -0.01159666758030653, 0.056993380188941956, -0.02188517525792122, 0.014902425929903984, -0.021284127607941628, -0.022839779034256935, 0.00651870621368289, -0.04511386528611183, -0.03705276921391487, 0.05002830922603607, 0.0026317895390093327, -0.0013280482962727547, 0.021832142025232315, -0.02826687879860401, -0.031166044995188713, 0.04875550419092178, 0.024147938936948776, 0.0018130842363461852, -0.009846560657024384, -0.014990814961493015, 0.002028533024713397, -0.0432400144636631, 0.007703122217208147, 0.08853065967559814, -0.05140718072652817, 0.01088071521371603, -0.0777825266122818, 0.07018105685710907, -0.03010537475347519, 0.01347935851663351, 0.022256409749388695, -0.01786346547305584, -0.048790860921144485, -0.04126009717583656, -0.01317883562296629, 0.027595119550824165, -0.002222989220172167, -0.007835705764591694, -0.0016396204009652138, -0.015432761050760746, 0.025296999141573906, -0.011304983869194984, 0.03402985632419586, 0.009899594821035862, 0.011455245316028595, 0.036522433161735535, 0.01598961278796196, 0.02404187247157097, -0.015529989264905453, 0.007380501367151737, -0.027064785361289978, -0.058442965149879456, 0.053952790796756744, 0.018756195902824402, 0.013505875132977962, 0.044901732355356216, -0.05918543413281441, 0.015574183315038681, 0.018844585865736008, 0.04638667032122612, 0.017987210303544998, 0.033640943467617035, 0.002854972379282117, -0.07594403624534607, 0.013673814944922924, 0.05543772876262665, -0.0031223497353494167, -0.04564420133829117, 0.019816868007183075, 0.01990525610744953, -0.046351317316293716, -0.06554945558309555, 0.027011750265955925, -0.029345227405428886, 0.00763683021068573, -0.023317081853747368, 0.06466556340456009, 0.022397832944989204, 0.003166544483974576, 0.04419462010264397, 0.03254491835832596, 0.04147223010659218, 0.061306774616241455, -0.03040589764714241, -0.013435164466500282, 0.028001710772514343, -0.012754566967487335, -0.020683081820607185, 0.016360847279429436, 0.0389266200363636, -0.02839062362909317, 0.11589597165584564, 0.011084010824561119, 0.01398317702114582, 0.03903268650174141, 0.034507159143686295, 0.009475326165556908, -0.02794867753982544, -0.016811633482575417, -0.008984765969216824, 0.0374770350754261, 0.014672613702714443, 0.07608545571565628, -0.04681093990802765, -0.01829657144844532, -0.056144844740629196, 0.005153092555701733, -0.030016984790563583, 0.06547874957323074, -0.02029416896402836, 0.05564986541867256, 0.004693468566983938, -0.02720620669424534, 0.024024194106459618, -0.08464153110980988, 0.10267294198274612, 0.022150343284010887, 0.006739679258316755, 0.038679130375385284, 0.007062300108373165, -0.07032247632741928, 0.0034361316356807947, 0.04939190670847893, 0.002991975750774145, 0.03659314289689064, -0.05126575753092766, 0.006355185993015766, -0.05091220140457153, -0.048614080995321274, 0.009307386353611946, 0.01903904229402542, 0.021496262401342392, -0.03487839177250862, 0.030936233699321747, -0.006275635678321123, 0.015220627188682556, 0.047624122351408005, 0.0360097773373127, 0.048048388212919235, 0.010173601098358631, 0.003252723952755332, 0.0533517450094223, 0.02047094702720642, -0.026145536452531815, -0.03141353651881218, 0.02679961733520031, -0.06250886619091034, -0.010058695450425148, 0.032633308321237564, 0.03800737112760544, 0.013382130302488804, -0.023104947060346603, -0.010606708936393261, 0.0936218798160553, -0.016024969518184662, -0.015079203993082047, 0.00456972373649478, 0.06035217270255089, 0.016210585832595825, -0.007871061563491821, -0.07046390324831009, 0.06639799475669861, 0.0071904645301401615, -0.04801303520798683, 0.046492740511894226, 0.03362326696515083, 0.011632023379206657, -0.02031184732913971, 0.007711960934102535, 0.056109488010406494, 0.0017611555522307754, 0.04203792288899422, 0.006872263271361589, -0.02319333516061306, -0.03438341245055199, 0.018190504983067513, 0.008922893553972244, -0.004649274051189423, -0.01483171433210373, -0.009059896692633629, 0.014531190507113934, 0.023865094408392906, 0.035656217485666275, -0.05112433433532715, -0.04140152037143707, 0.01688234508037567, -0.022079631686210632, -0.06724653393030167, -0.007075558416545391, -0.004826052580028772, 0.020135069265961647, -0.05950363352894783, -0.039386242628097534, 0.032633308321237564, -0.020859859883785248, -0.044866375625133514, 0.008153907023370266, -0.03367630019783974, 0.015255982056260109, 0.03765381500124931, 0.010429929941892624, -0.02782493270933628, 0.016078002750873566, 0.0634988322854042, 0.005338709801435471, -0.021142706274986267, 0.03240349516272545, -0.055826641619205475, 0.001989862648770213, 0.026569804176688194, -0.015795156359672546, -0.020523980259895325, 0.06438272446393967, 0.03413592278957367, -0.039386242628097534, -0.08556078374385834, 0.011402212083339691, 0.09241978824138641, 0.01029734592884779, -0.011110527440905571, -0.046174537390470505, 0.02490808814764023, -0.030352864414453506, 0.05688731372356415, -0.023564571514725685, 0.019816868007183075, 0.006598256528377533, 0.03583299741148949, 0.07474193722009659, 0.0001255403331015259, 0.006969491485506296, 0.06250886619091034, -0.03242117166519165, 0.037264902144670486, 0.06760008633136749, 0.04207327589392662, 0.005961854010820389, 0.009979144670069218, 0.0403408482670784, 0.0208775382488966, -0.029893239960074425, -0.020842181518673897, -0.03355255350470543, 0.014451640658080578, -0.011437566950917244, -0.049497973173856735, 0.07382269203662872, 0.02450149692595005, 0.038961976766586304, -0.009616749361157417, 0.0008071042248047888, 0.018066760152578354, -0.0008932837517932057, -0.05009901896119118, -0.03411824628710747, -0.023988839238882065, 0.030511964112520218, -0.006554062012583017, -0.008118551224470139, 0.010385735891759396, 0.09326832741498947, -0.04090654104948044, -0.0013678234536200762, 0.032933831214904785, 0.004918861202895641, 0.06417058408260345, -0.04882621392607689, -0.03259795159101486, 0.013938982971012592, -0.013063929043710232, -0.037689171731472015, -0.0071241725236177444, -0.0432400144636631, -0.020506303757429123, 0.006655709818005562, -0.01584818959236145, 0.03758310526609421, 0.011861835606396198, 0.00807877629995346, -0.019092075526714325, -0.07092352211475372, -0.04507851228117943, -0.036663856357336044, 0.03684063255786896, -0.029062381014227867, 0.001308160717599094, 0.005798333790153265, -0.0417904332280159, -0.04023478180170059, 0.005148672964423895, 0.033057574182748795, 0.03127211332321167, -0.015812834724783897, -0.05780656263232231, 0.014221828430891037, 0.06982749700546265, 0.0662919282913208, -0.008379300124943256, -0.015901224687695503, 0.027718864381313324, -0.0002636485151015222, -0.011844158172607422, 0.015803996473550797, -0.03645172342658043, -0.029009347781538963, -0.037830594927072525, -0.029009347781538963, 0.029575038701295853, -0.004591820761561394, 0.04939190670847893, 0.01600729115307331, -0.004786277189850807, -0.0015843771398067474, 0.012003258801996708, 0.04712914302945137, 0.056993380188941956, 0.051371823996305466, 0.0004239921399857849, 0.032474204897880554, 0.0029544103890657425, 0.039704445749521255, 0.08442939817905426, -0.008865440264344215, -0.0038626096211373806, 0.009316225536167622, 0.01383291557431221, -0.062013890594244, -0.06551410257816315, 0.020683081820607185, 0.0504172220826149, -0.04822516813874245, 0.015167593024671078, -0.047624122351408005, 0.017783913761377335, 0.03433037921786308, 0.027754221111536026, -0.06137748807668686, 0.04090654104948044, 0.002346734283491969, -0.02724156342446804, 0.010491802357137203, 0.008617950603365898, 0.02101896144449711, -0.03821950778365135, -0.00805667880922556, 0.0047553409822285175, -0.012754566967487335, 0.04564420133829117, -0.04854337126016617, 0.03433037921786308, 0.0016352009261026978, -0.0032947089057415724, -0.0011578990379348397, 0.03821950778365135, -0.02881489135324955, -0.013497036881744862, 0.056710533797740936, -0.030759455636143684, 0.0791967585682869, -0.02248622290790081, 0.04362892732024193, -0.043133947998285294, -0.015644894912838936, -0.01641388237476349, -0.010244312696158886, -0.056003421545028687, 0.031484246253967285, 0.04780089855194092, -0.004560884553939104, -0.019816868007183075, 0.019339565187692642, 0.03850235044956207, 0.016935378313064575, -0.016316654160618782, 0.03874984011054039, -0.016369687393307686, 0.016917699947953224, -0.0035532473120838404, -0.009758171625435352, -0.06501912325620651, -0.004693468566983938, -0.037830594927072525, -0.048790860921144485, 0.05833689868450165, 0.0014352202415466309, 0.01065090298652649, 0.044159263372421265, -0.024819698184728622, -0.03012305311858654, -0.07180741429328918, 0.013550070114433765, -0.043310727924108505, 0.047058429569005966, -0.01903904229402542, -0.02998162992298603, 0.12607841193675995, 0.052503205835819244, 0.04210863262414932, -0.00417418172582984, -0.05579128861427307, 0.005904401186853647, 0.016343170776963234, -0.015300177037715912, -0.03415360301733017, -0.05837225168943405, 0.03701741248369217, -0.0029102156404405832, 0.015052687376737595, -0.024254007264971733, -0.02405955083668232, -0.0075219240970909595, -0.0662212148308754, 0.021513940766453743, -0.0475887656211853, -0.004015081096440554, -0.03818415105342865, 0.009316225536167622, 0.02218569815158844, -0.10147084295749664, -0.004050436895340681, 0.045043155550956726, -0.06466556340456009, -0.025137899443507195, -0.06286242604255676, 0.002492576604709029, -0.020135069265961647, -0.033782366663217545, -0.03850235044956207, 0.03733561560511589, 0.010279668495059013, -0.006235860753804445, -0.02248622290790081, -0.009696299210190773, 0.0016506690299138427, 0.04988688603043556, 0.015883546322584152, -0.03054732084274292, 0.04422997310757637, -0.006894360762089491, 0.010933748446404934, 0.012409849092364311, -0.0432046577334404, 0.025685911998152733, -0.00828207191079855, 0.01483171433210373, 0.05893794447183609, 0.006739679258316755, -0.016679048538208008, 0.03804272785782814, 0.0031621248926967382, -0.06035217270255089, -0.05416492372751236, -0.03620423004031181, 0.02577430196106434, -0.02649909444153309, -0.016493432223796844, -0.010032178834080696, 0.03199690580368042, -0.05533166229724884, 0.02566823549568653, -0.022698355838656425, 0.015141076408326626, -0.014805197715759277, 0.008092034608125687, -0.007309789769351482, 0.020541658625006676, 0.0978645607829094, 0.0764390155673027, -0.07417625188827515, 0.010986782610416412, 0.023546893149614334, 0.017695525661110878, -0.05002830922603607, 0.02133716270327568, 0.026180893182754517, -0.028054744005203247, 0.015963096171617508, -0.008171585388481617, 0.0044238814152777195, -0.019109753891825676, -0.1036629006266594, 0.004560884553939104, 0.02404187247157097, -0.05200822651386261, -0.030140729621052742, 0.03155495971441269, 0.02565055713057518, 0.011490601114928722, -0.01713867299258709, 0.004826052580028772, 0.025385389104485512, 0.05055864527821541, 0.0015556506114080548, 0.007115333806723356, -0.032332781702280045, -0.015892384573817253, 0.0009015702526085079, 0.014301378279924393, 0.012365654110908508, -0.0006828068871982396, 0.0892377719283104, -0.01167621836066246, -0.05016973242163658, -0.061306774616241455, 0.054094213992357254, -0.006112115923315287, -0.015229465439915657, -0.03187315911054611, -0.023511536419391632, -0.007398179266601801, 0.04338143765926361, -0.023122625425457954, 0.05377601087093353, -0.005232642870396376, 0.006143052130937576, -0.03303989768028259, 0.03411824628710747, -0.047164496034383774, 0.00471556605771184, -0.0026273701805621386, -0.035656217485666275, -0.05876116454601288, -0.06364025175571442, -0.04797767847776413, -0.008507464081048965, -0.05009901896119118, -0.006240280345082283, 0.049321193248033524, -0.0023202174343168736, -0.01253359392285347, 0.02116038277745247, 0.020647725090384483, 0.025137899443507195, 0.0055685220286250114, -0.015176432207226753, 0.014663774520158768, 0.017545264214277267, -0.018809229135513306, 0.0055773607455194, 0.06989821046590805, 0.0288325697183609, -0.07269130647182465, -0.02720620669424534, 0.012109325267374516, 0.00025052824639715254, -0.020417913794517517, -0.022839779034256935, 0.006213763263076544, 0.021690718829631805, -0.005325451493263245, -0.05002830922603607, 0.02162000723183155, 0.011959063820540905, -0.01887994073331356, 0.015795156359672546, 0.025403067469596863, -0.01659066043794155 ]
23,340
parutils.logging.main
log_example
null
def log_example(list_in, what="duplicates", n_print=5): if not list_in: return log_print(f"Examples of {what} (limited to {n_print}):") log_array(list_in[:n_print])
(list_in, what='duplicates', n_print=5)
[ -0.002265973249450326, -0.0017828346462920308, -0.031345609575510025, 0.002454981440678239, 0.031753357499837875, 0.03282369673252106, -0.011247042566537857, -0.06469597667455673, -0.0063413274474442005, 0.02050631493330002, -0.020149534568190575, 0.032534874975681305, 0.029035039246082306, -0.055045947432518005, 0.0015502909664064646, -0.028712239116430283, 0.03812441602349281, 0.0024464866146445274, -0.005593789741396904, 0.04468235746026039, 0.018399618566036224, 0.06619105488061905, -0.0014802092919126153, 0.025348318740725517, 0.013617075979709625, 0.03345230594277382, 0.005436636973172426, -0.03836226835846901, -0.016624215990304947, 0.03730892017483711, -0.04281351715326309, -0.03154948353767395, -0.02808362804353237, 0.026180803775787354, -0.01382094994187355, -0.017957890406250954, -0.023632381111383438, 0.023581411689519882, -0.10472321510314941, 0.04359503090381622, 0.03642546758055687, -0.02923891320824623, 0.04437654837965965, -0.0246687401086092, -0.01916414499282837, 0.04274555668234825, 0.06377854943275452, 0.06452608108520508, -0.03754677250981331, -0.04111456498503685, 0.027760827913880348, -0.029595691710710526, -0.027777817100286484, -0.013668044470250607, 0.010091757401823997, -0.012954486533999443, 0.025942951440811157, -0.025059498846530914, 0.08827739208936691, -0.014262677170336246, -0.000936014752369374, 0.0520218200981617, 0.039789386093616486, 0.023190654814243317, 0.00970949325710535, -0.0006450696964748204, -0.014245687983930111, 0.031498514115810394, -0.02976558730006218, -0.051138363778591156, 0.00781516544520855, -0.05212375521659851, 0.0180768184363842, 0.014661930501461029, -0.04033305123448372, 0.03306154906749725, -0.04393482208251953, 0.003754677250981331, 0.009717988781630993, 0.0003623539814725518, -0.003408516524359584, 0.025773055851459503, 0.02816857397556305, 0.0023296838626265526, 0.009335724636912346, -0.04471633955836296, 0.0010634359205141664, 0.03961949050426483, 0.09018021076917648, 0.021049978211522102, -0.0630989670753479, 0.03761473298072815, 0.007934091612696648, 0.009870894253253937, -0.060958292335271835, 0.004102962091565132, -0.01510365679860115, -0.025246381759643555, 0.023564422503113747, -0.01088176853954792, -0.027319099754095078, -0.025993920862674713, 0.020489325746893883, -0.014500529505312443, -0.06863754242658615, -0.008936472237110138, -0.04342513531446457, 0.014143751002848148, -0.004599904641509056, 0.055861443281173706, -0.056608982384204865, 0.03243293613195419, -0.019147155806422234, -0.026095857843756676, 0.0528373159468174, 0.02964666113257408, 0.03798849880695343, 0.0013081907527521253, -0.04658518359065056, -0.05970107018947601, 0.026809414848685265, -0.03690117225050926, -0.055793486535549164, -0.048454027622938156, 0.013829445466399193, -0.017150890082120895, 0.005270989146083593, -0.015188604593276978, -0.010219178162515163, -0.07733616232872009, 0.05334699898958206, -0.009981325827538967, -0.01619098335504532, 0.04614345356822014, 0.025093477219343185, -0.031532492488622665, 0.0030559846200048923, -0.07121994346380234, -0.014109771698713303, -0.07305480539798737, -0.03690117225050926, -0.01145941112190485, 0.008214418776333332, 0.03669729828834534, -0.003744059009477496, -0.03676525503396988, 0.00035253193345852196, 0.024277981370687485, 0.03338434919714928, -0.031124746426939964, -0.026435647159814835, 0.03836226835846901, -0.004914210177958012, -0.05946321412920952, 0.01116209477186203, -0.008044523186981678, -0.011986085213720798, -0.04036702960729599, -0.006740580312907696, -0.024227013811469078, 0.03267078846693039, -0.040706817060709, -0.00908088218420744, 0.08107385039329529, -0.03999326005578041, 0.04342513531446457, -0.0682297945022583, 0.04376492649316788, -0.013217823579907417, 0.04475031793117523, 0.035474054515361786, -0.010312620550394058, 0.049473393708467484, 0.009140345267951488, -0.00003467581336735748, 0.0867823138833046, -0.041318438947200775, 0.008579692803323269, -0.010023798793554306, -0.033282410353422165, -0.06408435851335526, -0.034505654126405716, 0.01763509027659893, -0.016343889757990837, -0.036629341542720795, 0.0009487568167969584, 0.015706783160567284, 0.017906922847032547, -0.023598402738571167, 0.021117936819791794, -0.00005037118535256013, 0.03185529261827469, 0.0388379730284214, -0.02191644161939621, 0.005419647321105003, -0.018212733790278435, -0.060550544410943985, 0.009539598599076271, 0.04345911741256714, -0.013846434652805328, -0.016360878944396973, 0.029663650318980217, -0.010295631363987923, -0.09636438637971878, 0.04383288323879242, 0.08053018152713776, -0.02235816977918148, 0.03955153375864029, -0.07237523049116135, -0.004022261593490839, 0.03764871135354042, -0.01099220011383295, 0.0018231846624985337, 0.006116216536611319, 0.007810918148607016, 0.002603639382869005, -0.0004382757470011711, -0.01302244421094656, -0.04903166741132736, -0.03829431161284447, 0.057832226157188416, -0.03673127666115761, -0.08290871232748032, 0.03927970305085182, 0.021406758576631546, 0.0587836354970932, 0.07740411907434464, 0.0468909926712513, 0.01681959442794323, -0.052667420357465744, -0.009420672431588173, -0.002023872919380665, 0.011501885019242764, 0.022816885262727737, -0.013659549877047539, 0.030835924670100212, -0.020744167268276215, -0.014627951197326183, 0.07142381370067596, 0.02488960325717926, -0.05803610011935234, 0.03761473298072815, 0.03628955036401749, -0.03605169802904129, -0.005606531631201506, -0.019588882103562355, -0.02410808578133583, 0.025841014459729195, -0.011298011057078838, 0.002964666113257408, -0.019368018954992294, 0.012937496416270733, -0.0076027968898415565, -0.04142037779092789, 0.022222252562642097, 0.044852253049612045, 0.00022245613217819482, -0.028882132843136787, 0.006931711919605732, -0.04573570936918259, 0.004175167065113783, 0.0002447548322379589, 0.041726186871528625, -0.0010522865923121572, -0.0571526437997818, 0.015197099186480045, -0.04848800599575043, -0.01505268830806017, 0.0450221486389637, -0.000057472258049529046, 0.03567792847752571, 0.03693515062332153, 0.0007576250936836004, -0.009964335709810257, -0.02973160706460476, 0.0074668810702860355, 0.0355759933590889, 0.03717300295829773, -0.0423378087580204, 0.00608223769813776, 0.016021089628338814, -0.011196074075996876, 0.021746547892689705, 0.0037971511483192444, 0.00017586776812095195, -0.01320932898670435, 0.03248390555381775, 0.08834534883499146, 0.011875653639435768, -0.011264031752943993, -0.014848814345896244, -0.03202518820762634, 0.03890593349933624, -0.02050631493330002, -0.04862391948699951, -0.01657324843108654, 0.0018391122575849295, 0.006281863898038864, -0.022901833057403564, 0.02638467773795128, -0.02652059495449066, -0.040706817060709, 0.031787335872650146, -0.056269191205501556, -0.005449378862977028, 0.005449378862977028, -0.007229028269648552, -0.06398241966962814, -0.01916414499282837, -0.08555907011032104, 0.008137965574860573, 0.07910306751728058, 0.0013177472865208983, -0.010338104330003262, -0.005733952857553959, 0.04023111239075661, -0.01816176436841488, 0.03489641472697258, -0.007611291483044624, 0.025161435827612877, 0.0021194389555603266, 0.05647306516766548, -0.009089377708733082, -0.0051435683853924274, 0.030632050707936287, -0.07339459657669067, -0.0004295155522413552, 0.014908277429640293, -0.021338799968361855, -0.011722748167812824, -0.002208633814007044, -0.03594976291060448, -0.029680639505386353, 0.01816176436841488, -0.02976558730006218, 0.014016329310834408, -0.026469625532627106, -0.010185199789702892, -0.007016659248620272, -0.03017333522439003, -0.036969128996133804, -0.03710504621267319, -0.04621141403913498, 0.05596338212490082, 0.04155629128217697, 0.0009577824966982007, 0.03355424478650093, 0.04084273427724838, 0.008775071240961552, -0.012572222389280796, 0.044478487223386765, 0.030869903042912483, 0.0021746547427028418, 0.03120969422161579, 0.06772010773420334, 0.03605169802904129, -0.02804964780807495, -0.014619456604123116, -0.030716998502612114, 0.04967726767063141, 0.05174998566508293, -0.04631334915757179, 0.05086653307080269, -0.01698099635541439, 0.04808025807142258, 0.0303262397646904, 0.047536592930555344, -0.03645944595336914, 0.03141356632113457, 0.019554903730750084, -0.08868514001369476, -0.05161407217383385, 0.007951081730425358, 0.04767251014709473, 0.01778799667954445, 0.004939694423228502, -0.018433596938848495, 0.005653252825140953, -0.07427804917097092, 0.02798169106245041, -0.0159786157310009, 0.027472006157040596, 0.0016203726409003139, -0.03221207484602928, -0.06452608108520508, -0.008978945203125477, -0.012283401563763618, 0.10995598137378693, -0.025739077478647232, 0.02251107431948185, 0.0036251323763281107, 0.02217128500342369, 0.01953791454434395, -0.014602466486394405, -0.01285254955291748, 0.0024825893342494965, -0.08589886128902435, 0.03017333522439003, -0.11083943396806717, -0.00029811245622113347, 0.00361876143142581, 0.0010427299421280622, -0.06320090591907501, 0.02001361921429634, -0.05215773358941078, 0.013549118302762508, -0.03788656368851662, -0.011374463327229023, -0.010151220485568047, -0.019588882103562355, 0.01244480162858963, -0.01923210360109806, 0.014322140254080296, -0.0075815599411726, 0.04108058661222458, 0.05949719622731209, -0.014534508809447289, -0.016301415860652924, -0.054672177881002426, 0.007849144749343395, 0.06625901162624359, -0.016182489693164825, 0.0571526437997818, 0.12973174452781677, 0.06775408983230591, -0.02429497055709362, -0.06795796006917953, 0.015834204852581024, 0.041352417320013046, -0.00451920460909605, -0.08243300765752792, -0.0023169417399913073, 0.00034058617893606424, 0.013922886922955513, 0.024159055203199387, -0.03554201498627663, -0.004663615021854639, -0.007624033838510513, 0.03221207484602928, 0.024770677089691162, 0.004228259436786175, 0.006859506480395794, 0.046041518449783325, -0.008405550383031368, 0.012538244016468525, 0.061366040259599686, -0.006740580312907696, -0.0180768184363842, -0.013277286663651466, -0.03173636645078659, 0.0052794842049479485, -0.02076115645468235, -0.015468930825591087, -0.002191644161939621, 0.06911324709653854, -0.04777444526553154, -0.03058108314871788, 0.015766246244311333, 0.022646989673376083, -0.026775436475872993, 0.04814821481704712, 0.04808025807142258, 0.011450916528701782, -0.02076115645468235, 0.00046030900557525456, -0.026469625532627106, 0.0327727273106575, 0.015876678749918938, -0.022901833057403564, -0.011187579482793808, 0.06656482070684433, 0.046789057552814484, -0.030462155118584633, -0.01417772937566042, 0.045327961444854736, 0.0021810259204357862, 0.028729228302836418, 0.01008326280862093, 0.04729874059557915, -0.008188934065401554, 0.0237343180924654, -0.03948357701301575, 0.057424478232860565, -0.020404377952218056, -0.032942622900009155, -0.01127252634614706, -0.03151550516486168, -0.04896371066570282, -0.00787887629121542, -0.03326542302966118, -0.02522939257323742, -0.02217128500342369, 0.024498844519257545, -0.07529742270708084, -0.0067533222027122974, -0.05752641335129738, 0.018926292657852173, 0.025756066665053368, 0.008775071240961552, 0.020676208660006523, 0.022646989673376083, -0.024210022762417793, 0.00012430200877133757, -0.040163155645132065, 0.010686389170587063, 0.0013262421125546098, 0.05671091750264168, 0.009505620226264, -0.06513770669698715, 0.018280690535902977, 0.007492365315556526, 0.02157665230333805, 0.042507704347372055, 0.0074541387148201466, 0.03435274958610535, -0.02470271848142147, -0.044818274676799774, 0.020778145641088486, 0.06381252408027649, 0.022052358835935593, 0.012691149488091469, 0.003098458284512162, -0.05324506387114525, -0.008125224150717258, 0.05477411672472954, 0.002221375936642289, 0.030971840023994446, 0.02429497055709362, -0.042133934795856476, 0.10227672755718231, -0.016343889757990837, 0.009904872626066208, 0.01393138151615858, 0.0015343633713200688, -0.02295280061662197, 0.065545454621315, 0.01557086780667305, -0.02767588011920452, 0.07794778048992157, 0.05005103722214699, -0.009930357336997986, -0.04162425175309181, -0.026775436475872993, -0.044070739299058914, -0.04342513531446457, 0.03479447588324547, 0.004502214957028627, 0.02392120286822319, 0.022375158965587616, -0.031753357499837875, 0.06272520124912262, -0.03754677250981331, 0.042201895266771317, -0.0027820290997624397, 0.012308885343372822, -0.0146959088742733, 0.05011899769306183, 0.006171432323753834, 0.0007985060219652951, -0.02935783937573433, -0.013396212831139565, -0.005101094488054514, 0.015316025353968143, -0.012342864647507668, 0.01263168640434742, 0.025841014459729195, -0.028559332713484764, -0.00948863010853529, -0.04780842363834381, -0.0010252095526084304, 0.02589198388159275, 0.005878363735973835, 0.009148840792477131, 0.005071362946182489, -0.06724440306425095, -0.017923912033438683, 0.02920493297278881, 0.002988026477396488, 0.0330105796456337, -0.03870205953717232, -0.04648324474692345, -0.0046338834799826145, 0.03270476683974266, -0.028406428173184395, 0.056235212832689285, 0.027692869305610657, 0.004901467822492123, -0.026537584140896797, -0.031226683408021927, 0.047536592930555344, -0.016029583290219307, 0.0229188222438097, -0.06405037641525269, 0.007696239277720451, 0.027217162773013115, 0.048861775547266006, 0.007203544024378061, -0.04553183540701866, 0.006311595439910889, 0.0346415713429451, -0.03764871135354042, 0.06775408983230591, -0.03392801061272621, -0.053075168281793594, -0.005211526062339544, -0.0019644098356366158, 0.03170238807797432, -0.08209321647882462, 0.024566803127527237, 0.016896048560738564, -0.03261982277035713, 0.046041518449783325, -0.025942951440811157, -0.06540953367948532, -0.06789000332355499, -0.02213730663061142, 0.0105844521895051, 0.05603133887052536, 0.07210339605808258, 0.020659219473600388, 0.011374463327229023, 0.03982336446642876, 0.003731316886842251, -0.01222393848001957, -0.02723415195941925, -0.030190324410796165, -0.0604146271944046, -0.027285121381282806, 0.006927464623004198, -0.03326542302966118, 0.0431533046066761, 0.026741458103060722, -0.01041455753147602, -0.016021089628338814, -0.03338434919714928, -0.05317710340023041, -0.00017162039875984192, -0.041794147342443466, -0.07964672893285751, 0.03180432692170143, -0.05317710340023041, -0.011213063262403011, 0.015689793974161148, 0.004680604673922062, 0.031124746426939964, 0.01897726021707058, -0.03435274958610535, -0.05368679016828537, 0.01713390089571476, 0.00031271280022338033, 0.053109146654605865, 0.07482171803712845, -0.011943611316382885, 0.06544351577758789, -0.02597692981362343, 0.025178425014019012, -0.0014600342838093638, 0.041726186871528625, 0.0060567534528672695, 0.017550142481923103, 0.030750976875424385, 0.014432571828365326, -0.008724103681743145, -0.042541682720184326, 0.0014791474677622318, 0.01979275606572628, -0.008498992770910263, -0.0398913212120533, -0.0007608106243424118, 0.0004810149548575282, -0.020659219473600388, -0.048012297600507736, 0.057764265686273575, 0.04226985201239586, 0.049541354179382324, -0.02645263634622097, 0.01704045943915844, 0.06476393342018127, -0.014831825159490108, -0.08929675817489624, 0.047706488519907, -0.03402994945645332, 0.016360878944396973, -0.10424751043319702, 0.0005078265094198287, 0.06466200202703476, -0.011264031752943993, 0.0033554243855178356, 0.009369703941047192, 0.012470285408198833, -0.07047240436077118, -0.016114531084895134, 0.006630148738622665, -0.0034042689949274063, -0.00126465514767915, 0.07257910072803497, -0.05684683471918106, 0.021270841360092163, 0.03453963249921799, -0.06374456733465195, 0.0431533046066761, 0.051070407032966614, 0.02410808578133583, 0.03143055737018585, 0.005576800089329481, -0.006307348143309355, -0.08154955506324768, -0.02898406982421875, 0.0033554243855178356, -0.00838006567209959, 0.008970450609922409, 0.07054036110639572, -0.024838633835315704, -0.031379587948322296, -0.06486587226390839, -0.0025208157021552324, 0.04668711870908737, -0.006086484994739294, -0.024753687903285027, -0.010236168280243874, 0.03618761524558067, 0.01439859252423048, 0.0033426822628825903, -0.020591262727975845, -0.02923891320824623, 0.04899768903851509, -0.0015003843000158668, -0.05416249483823776, 0.012215443886816502, -0.038022480905056, -0.026537584140896797, 0.0010002562776207924, -0.03754677250981331, 0.0004186316509731114, -0.013404707424342632, -0.0073224701918661594, -0.047706488519907, -0.01354062370955944, 0.0328916534781456, -0.0843358263373375, -0.024125076830387115, -0.013685034587979317, 0.022035369649529457, 0.05174998566508293, 0.011187579482793808, -0.02786276303231716, 0.06557942926883698, 0.0034509901888668537, -0.02410808578133583, -0.02976558730006218, -0.0048589943908154964, -0.004931199364364147, -0.023054737597703934, -0.00989637803286314, 0.02511046640574932, 0.0563371479511261, 0.027353079989552498, -0.018994249403476715, 0.02426099218428135, -0.009063892997801304, -0.032314009964466095, 0.03598374128341675, 0.07319072633981705, 0.052735377103090286, -0.04750261455774307, 0.011748232878744602, 0.004735820461064577, 0.0245498139411211 ]
23,341
parutils.logging.main
log_input
Same as input but traced in the log file
def log_input(str_in): """Same as input but traced in the log file""" log_print(str_in, c_out=False) command = input(str_in + '\n') log_print(command, c_out=False) return command
(str_in)
[ -0.0358637236058712, 0.007288722321391106, 0.009554739110171795, 0.025693414732813835, 0.005535682197660208, -0.02869098074734211, -0.045641496777534485, 0.044749364256858826, 0.046819113194942474, -0.03295537456870079, 0.01939496025443077, 0.008698291145265102, -0.030796412378549576, 0.030689356848597527, 0.0025358865968883038, -0.03889697417616844, -0.028655294328927994, 0.002326235407963395, -0.04981667548418045, 0.000022547254047822207, -0.0022113732993602753, 0.016370631754398346, 0.02246389538049698, 0.053991857916116714, -0.0158888790756464, 0.07254821062088013, -0.013712076470255852, -0.020893743261694908, -0.031688544899225235, -0.033044587820768356, -0.0060129729099571705, -0.060486581176519394, -0.012284664437174797, -0.014452545903623104, -0.0025314257945865393, -0.048210836946964264, 0.015549869276583195, -0.005196671467274427, -0.03675585612654686, -0.035560399293899536, -0.01182075496762991, 0.005076233763247728, -0.03036819025874138, 0.024587171152234077, -0.011802912689745426, 0.01095538679510355, 0.00013660777767654508, 0.03932520002126694, -0.020037295296788216, -0.0024176789447665215, 0.027370624244213104, -0.0200551375746727, -0.012802100740373135, 0.017708828672766685, 0.014407939277589321, -0.03616705164313316, 0.03743387758731842, -0.06723110377788544, 0.007864147424697876, -0.026407120749354362, -0.03120679408311844, 0.052136220037937164, 0.05070880800485611, 0.011151655577123165, 0.007351171690970659, -0.01656690053641796, 0.0007265303866006434, 0.007583125960081816, 0.02101864106953144, -0.00034458618029020727, -0.06277044117450714, -0.04714028164744377, -0.05106566101312637, -0.02258879505097866, -0.04667637124657631, -0.014943218789994717, 0.01806568168103695, 0.060665007680654526, -0.007824001833796501, 0.026799660176038742, 0.012284664437174797, -0.017235999926924706, -0.009911592118442059, 0.05502673238515854, -0.07112079858779907, -0.04874611645936966, -0.00524127809330821, 0.018841838464140892, -0.023909149691462517, -0.0200551375746727, -0.061343029141426086, 0.0037893326953053474, -0.024640697985887527, 0.06616054475307465, -0.009965119883418083, 0.0017708829836919904, -0.00013751385267823935, 0.005834546405822039, -0.014158142730593681, 0.02560420148074627, -0.053099725395441055, 0.08514512330293655, 0.015219779685139656, -0.0158888790756464, -0.05905916914343834, -0.05406322702765465, -0.013069740496575832, -0.012222214601933956, 0.03850443661212921, -0.008680448867380619, -0.0074671488255262375, -0.01753932423889637, 0.0018043379532173276, -0.030475245788693428, -0.0028994304593652487, 0.01866341196000576, -0.011669092811644077, 0.03186697140336037, -0.026514176279306412, -0.008198697119951248, 0.02526519075036049, 0.000993612571619451, -0.043750178068876266, -0.03261636197566986, 0.044178400188684464, 0.012079473584890366, -0.028815878555178642, -0.020090823993086815, 0.03871854767203331, -0.00913543626666069, 0.025425774976611137, 0.018734781071543694, 0.05563338100910187, 0.05916622653603554, -0.0008447379223071039, 0.05502673238515854, 0.003035480622202158, 0.014354411512613297, -0.009947276674211025, 0.0027834533248096704, 0.03864717856049538, -0.02986859530210495, 0.02012650854885578, -0.059986986219882965, -0.02672828920185566, 0.0063965898007154465, 0.049780990928411484, -0.015978092327713966, 0.026710446923971176, -0.030332503840327263, 0.0219107735902071, 0.008497562259435654, -0.0959220826625824, 0.03142090514302254, 0.010437949560582638, 0.014836163260042667, -0.050459012389183044, -0.020019453018903732, 0.04460662230849266, -0.031974028795957565, -0.009144357405602932, -0.031135423108935356, 0.04025301709771156, 0.016067305579781532, 0.031474433839321136, 0.03675585612654686, 0.004888886120170355, 0.08500238507986069, 0.0315101183950901, 0.02292780391871929, 0.005901456344872713, 0.050066474825143814, 0.004068124108016491, 0.07579557597637177, -0.03036819025874138, 0.022446053102612495, -0.05067312344908714, 0.013105425983667374, -0.010384421795606613, -0.016843460500240326, -0.05795292556285858, -0.008502022363245487, 0.0038160965777933598, 0.04557012766599655, 0.0044227465987205505, -0.007752631325274706, -0.023266814649105072, 0.02835197001695633, -0.019234376028180122, 0.02510460838675499, -0.008502022363245487, -0.004161797929555178, 0.018413614481687546, -0.030903467908501625, -0.015041353181004524, 0.013212481513619423, -0.06127166002988815, 0.010081096552312374, 0.022035671398043633, 0.004351376090198755, 0.01811921037733555, 0.07743709534406662, -0.00019529336714185774, -0.05773881450295448, 0.009786693379282951, 0.013274931348860264, 0.004786290694028139, 0.03356202319264412, -0.024979708716273308, 0.015514183789491653, -0.025675572454929352, 0.00943876150995493, -0.01966260001063347, -0.0039186920039355755, -0.007288722321391106, 0.02050120383501053, 0.0031425366178154945, 0.03313380107283592, -0.007997967302799225, 0.021446865051984787, 0.10134624689817429, 0.04353606328368187, 0.02112569659948349, 0.02494402416050434, 0.01437225379049778, -0.02853039652109146, 0.04557012766599655, 0.0481751523911953, -0.005045009311288595, -0.03413298726081848, 0.02594321221113205, -0.025175977498292923, -0.008631381206214428, 0.03206324204802513, -0.009554739110171795, -0.007150441873818636, -0.05720353499054909, -0.08171933144330978, 0.015068117529153824, -0.007757091894745827, -0.03793347254395485, 0.013890502974390984, 0.030510930344462395, 0.011017835699021816, -0.01944848708808422, 0.013703154399991035, -0.004830897320061922, 0.08250441402196884, -0.04053850099444389, -0.0025715718511492014, 0.059986986219882965, -0.009706401266157627, -0.04717596620321274, 0.03463258221745491, 0.0179318618029356, 0.042001597583293915, 0.024176789447665215, -0.00008551926293876022, 0.02096511237323284, 0.003126924391835928, -0.023409556597471237, 0.031974028795957565, 0.043964289128780365, 0.007569744251668453, -0.002455594716593623, -0.07508186995983124, -0.05277855694293976, -0.012677202001214027, 0.0679091215133667, -0.03391887620091438, 0.08878502249717712, 0.06883694231510162, -0.02112569659948349, 0.014033243991434574, -0.023391714319586754, -0.04581992328166962, 0.030475245788693428, 0.043286267668008804, -0.001158657018095255, -0.036898598074913025, -0.001832217094488442, 0.034935906529426575, 0.046426575630903244, -0.014666657894849777, -0.057631757110357285, -0.02207135781645775, -0.007261958438903093, -0.04378586262464523, 0.027192197740077972, -0.02588968351483345, 0.021393336355686188, 0.009599345736205578, -0.00010656801168806851, -0.0011123776203021407, -0.04332195222377777, 0.0004959698999300599, -0.013917266391217709, -0.056347087025642395, -0.027602579444646835, -0.001928121317178011, -0.013248167000710964, -0.03704134002327919, -0.04235845059156418, -0.01973397098481655, -0.042394135147333145, -0.015719374641776085, -0.018449299037456512, -0.05342089384794235, -0.038254640996456146, -0.0924249216914177, -0.020661788061261177, 0.08450278639793396, -0.03200971335172653, -0.018859680742025375, -0.06601780652999878, 0.021214909851551056, -0.0017541554989293218, 0.017949705943465233, 0.021054325625300407, 0.037184081971645355, -0.017949705943465233, 0.030635830014944077, 0.04628383368253708, 0.007373475003987551, -0.07137059420347214, -0.03261636197566986, 0.04389291629195213, 0.01599593460559845, -0.014693422242999077, -0.0297615397721529, -0.0003663318930193782, -0.01698620244860649, -0.024355215951800346, -0.011249790899455547, -0.022892119362950325, -0.038183268159627914, -0.02526519075036049, -0.0317777581512928, -0.005210053641349077, -0.0035774512216448784, 0.06148577108979225, 0.006124489475041628, 0.04271530359983444, 0.009108672849833965, -0.029351158067584038, -0.022160571068525314, 0.0297080110758543, 0.05970150604844093, 0.02801295928657055, 0.03427572920918465, 0.03131385147571564, -0.008698291145265102, -0.03352633863687515, -0.0354890301823616, 0.054277338087558746, 0.010098939761519432, -0.00173073704354465, -0.014140299521386623, 0.006668690126389265, -0.03534628823399544, -0.009938355535268784, -0.003568529849871993, 0.02712082676589489, -0.0014441394014284015, -0.012364955618977547, -0.01670072041451931, 0.03932520002126694, 0.006378747057169676, 0.09056928753852844, 0.09349548071622849, 0.0025648807641118765, 0.016192205250263214, 0.012703966349363327, 0.028494711965322495, -0.08635842055082321, 0.06084343418478966, 0.01960907131433487, -0.05659688264131546, -0.027638264000415802, 0.009974041022360325, -0.00778831634670496, 0.016843460500240326, -0.02515813522040844, 0.0279059037566185, 0.018047839403152466, -0.00556244608014822, -0.029279787093400955, 0.02023356407880783, 0.07743709534406662, 0.014354411512613297, -0.041502002626657486, 0.017414426431059837, 0.09727812558412552, 0.01053608488291502, -0.012659359723329544, -0.029850753024220467, 0.0034815468825399876, 0.008118405938148499, -0.07165607810020447, 0.005495536141097546, -0.04517759010195732, 0.06601780652999878, -0.03324085474014282, 0.038183268159627914, -0.009242492727935314, 0.007962282747030258, -0.028851564973592758, 0.00418856181204319, -0.004759526811540127, -0.06227084621787071, -0.023998362943530083, 0.016522293910384178, 0.036898598074913025, -0.016299260780215263, 0.02062610350549221, -0.03479316458106041, 0.016236811876296997, -0.08557334542274475, -0.06209241971373558, 0.03921814262866974, -0.04225139319896698, 0.001934812287800014, 0.014247355982661247, 0.05185073986649513, 0.06277044117450714, 0.032759103924036026, -0.03306242823600769, 0.041323576122522354, 0.046426575630903244, 0.04296509921550751, -0.07104942947626114, 0.019127320498228073, -0.0198410265147686, -0.011901047080755234, -0.011678013950586319, -0.030671514570713043, 0.027156513184309006, 0.02264232188463211, 0.029493900015950203, 0.06166419759392738, -0.036274105310440063, -0.05452713742852211, 0.051636628806591034, 0.022838590666651726, -0.00040257477667182684, 0.03721976652741432, 0.009117593988776207, 0.05541926994919777, 0.008912403136491776, 0.007444845512509346, 0.035899411886930466, -0.005192210897803307, -0.04974530637264252, -0.01364962663501501, 0.024729911237955093, -0.06359120458364487, -0.04903160035610199, 0.08129110932350159, 0.002529195509850979, 0.04135926067829132, -0.06987181305885315, 0.08892776817083359, 0.03175991773605347, 0.01429196260869503, 0.004413825459778309, 0.0021411178167909384, 0.052814241498708725, 0.024230318143963814, -0.004351376090198755, 0.01291807834059, 0.013596098870038986, 0.0436074361205101, -0.0477469302713871, 0.011945653706789017, -0.010759118013083935, -0.020893743261694908, 0.0279059037566185, 0.0018734781770035625, -0.04036007449030876, -0.006236006040126085, -0.061450082808732986, -0.08471690118312836, 0.017021887004375458, 0.02487265318632126, -0.023748567327857018, 0.0038919278886169195, 0.04482073709368706, -0.022785063832998276, 0.033026743680238724, -0.004030208569020033, -0.03750525042414665, 0.09556522965431213, 0.021161383017897606, -0.0954938605427742, 0.00845295563340187, -0.043000783771276474, -0.040038906037807465, 0.05745333060622215, 0.01560339704155922, 0.03479316458106041, -0.007235194556415081, 0.04168042913079262, -0.03782641515135765, -0.0013036285527050495, 0.0357566699385643, 0.02280290611088276, 0.0320453979074955, 0.03971773758530617, -0.0066909934394061565, 0.008136248216032982, -0.02924410253763199, 0.018681254237890244, 0.0361313633620739, -0.01850282773375511, 0.014488231390714645, -0.049067284911870956, 0.014479310251772404, 0.04335763677954674, -0.06351983547210693, -0.00913543626666069, 0.022606637328863144, 0.031117580831050873, -0.08164796233177185, -0.12432757765054703, 0.025033237412571907, 0.02287427708506584, 0.029047833755612373, 0.003682276699692011, -0.04649794474244118, 0.024408744648098946, -0.014836163260042667, 0.011892125941812992, 0.032866161316633224, 0.004955796059221029, -0.008444033563137054, 0.06912242621183395, -0.0013660778058692813, 0.0019783037714660168, -0.028548238798975945, -0.022338997572660446, -0.05866663157939911, 0.007070149760693312, 0.00011953181092394516, 0.006258309353142977, -0.0015578863676637411, 0.012168686836957932, -0.01732521317899227, 0.05256444588303566, -0.02824491448700428, -0.005348334088921547, -0.0354890301823616, -0.024836968630552292, 0.024890495464205742, 0.03721976652741432, 0.000897150719538331, -0.018931051716208458, -0.007168284617364407, 0.045427385717630386, -0.03957499563694, 0.0078507661819458, 0.0014809399144724011, -0.03854012116789818, 0.004077045246958733, 0.004491887055337429, -0.06337708979845047, -0.07750847190618515, -0.029458213597536087, -0.0159691721200943, -0.03327654302120209, 0.06676719337701797, 0.06526841223239899, -0.018841838464140892, 0.004871043376624584, 0.004911189433187246, -0.04981667548418045, 0.05138682946562767, -0.0025158135686069727, 0.002883818233385682, 0.008274529129266739, 0.024961866438388824, -0.01843145675957203, 0.04085966572165489, -0.02622869424521923, 0.023231130093336105, 0.0015813048230484128, -0.007734788581728935, -0.008185315877199173, -0.008368202485144138, -0.08500238507986069, 0.016343867406249046, 0.0035529176238924265, -0.02207135781645775, 0.0014697882579639554, 0.0297615397721529, -0.02044767700135708, -0.014283040538430214, 0.05813135206699371, -0.0033544180914759636, 0.033936720341444016, -0.04574855417013168, -0.07900725305080414, 0.01866341196000576, -0.032134611159563065, 0.03120679408311844, 0.006441196426749229, -0.024801282212138176, -0.023124074563384056, -0.020429832860827446, -0.03054661676287651, 0.0012010333593934774, -0.008131787180900574, 0.00556244608014822, -0.05367068946361542, 0.06045089662075043, -0.029886437579989433, -0.024408744648098946, 0.004398213233798742, 0.0032808170653879642, 0.10491477698087692, 0.029279787093400955, 0.06384100019931793, 0.022338997572660446, 0.021482549607753754, -0.016343867406249046, 0.00046725437277927995, -0.016192205250263214, -0.036684487015008926, -0.05731058865785599, 0.01350688561797142, -0.059380337595939636, 0.0021121236495673656, 0.03918245807290077, -0.007052307017147541, 0.03864717856049538, 0.004081506282091141, -0.02285643480718136, -0.015228701755404472, -0.03609567880630493, -0.0843600481748581, 0.01188320480287075, -0.026799660176038742, -0.03329438343644142, -0.0069541726261377335, -0.04549875482916832, 0.0628061294555664, -0.006280612666159868, -0.024836968630552292, -0.03406161814928055, 0.042679619044065475, -0.017708828672766685, -0.005285884719341993, 0.033490654081106186, 0.04881748929619789, 0.07750847190618515, 0.03636331856250763, -0.0397891066968441, 0.045034848153591156, 0.03457905352115631, 0.045926980674266815, -0.04007459059357643, 0.004590021446347237, 0.05916622653603554, -0.03971773758530617, 0.020822372287511826, -0.06901536881923676, 0.00736901443451643, -0.022553108632564545, -0.023605825379490852, -0.007279801182448864, -0.009840221144258976, 0.0029239642899483442, -0.08450278639793396, 0.009376312606036663, -0.02515813522040844, 0.08593019843101501, -0.07972095906734467, 0.0907120332121849, 0.026193009689450264, 0.04599834978580475, -0.07254821062088013, -0.046533629298210144, -0.007757091894745827, 0.060272470116615295, -0.0673738420009613, 0.018806152045726776, 0.027441995218396187, 0.05363500490784645, -0.031135423108935356, 0.04089535400271416, -0.0013448897516354918, -0.028102172538638115, -0.004181871190667152, -0.019983766600489616, -0.03447199985384941, 0.017762357369065285, 0.011115971021354198, -0.05927328020334244, 0.003510541282594204, -0.039360884577035904, -0.0050717731937766075, 0.08364634215831757, 0.037790730595588684, 0.02986859530210495, 0.028762351721525192, -0.007899832911789417, -0.03195618465542793, -0.032919690012931824, -0.04546307027339935, 0.007864147424697876, -0.030796412378549576, 0.029458213597536087, -0.01779804192483425, -0.0020195648539811373, 0.005865770857781172, 0.056632570922374725, 0.014613130129873753, -0.04546307027339935, 0.005615973845124245, -0.043286267668008804, 0.008457415737211704, -0.0012512158136814833, -0.05609729140996933, 0.05206485092639923, 0.006548252422362566, 0.01532683614641428, 0.003499389626085758, -0.10505752265453339, -0.02696024253964424, 0.04910296946763992, 0.006423353683203459, -0.0356496125459671, 0.03450768440961838, -0.050459012389183044, 0.01622788980603218, 0.029779382050037384, -0.03379397839307785, -0.04674774035811424, -0.05013784393668175, 0.02683534473180771, -0.021696662530303, -0.03771936148405075, -0.023409556597471237, -0.01392618753015995, -0.009866985492408276, 0.047532819211483, -0.0012166457017883658, 0.049780990928411484, 0.0061780172400176525, -0.04910296946763992, 0.008479719050228596, 0.016941595822572708, -0.03126032277941704, -0.05392048507928848, 0.01638847403228283, 0.04282235726714134, 0.029493900015950203, 0.017949705943465233, 0.04910296946763992, 0.03270557522773743, 0.048103783279657364, -0.01934143155813217, 0.0003203313099220395, 0.027263568714261055, -0.027941588312387466, 0.0038852368015795946, 0.006677611730992794, -0.02078668586909771, -0.0219107735902071 ]
23,342
parutils.logging.main
log_print
Prints something in the current log file (log_path) - level: log level. Current log level is the attribute level of the current logger. You can get the current loger by using the get_logger function. Nothing is logged if logger level < level - c_out: specifies if something should be printed in the console or not - nb_tab: number of tab indentations - dashes: total length of the input string extended with dashes ('-')
def log_input(str_in): """Same as input but traced in the log file""" log_print(str_in, c_out=False) command = input(str_in + '\n') log_print(command, c_out=False) return command
(*args, level=0, c_out=True, nb_tab=0, dashes=0, tab_char=' ')
[ -0.0358637236058712, 0.007288722321391106, 0.009554739110171795, 0.025693414732813835, 0.005535682197660208, -0.02869098074734211, -0.045641496777534485, 0.044749364256858826, 0.046819113194942474, -0.03295537456870079, 0.01939496025443077, 0.008698291145265102, -0.030796412378549576, 0.030689356848597527, 0.0025358865968883038, -0.03889697417616844, -0.028655294328927994, 0.002326235407963395, -0.04981667548418045, 0.000022547254047822207, -0.0022113732993602753, 0.016370631754398346, 0.02246389538049698, 0.053991857916116714, -0.0158888790756464, 0.07254821062088013, -0.013712076470255852, -0.020893743261694908, -0.031688544899225235, -0.033044587820768356, -0.0060129729099571705, -0.060486581176519394, -0.012284664437174797, -0.014452545903623104, -0.0025314257945865393, -0.048210836946964264, 0.015549869276583195, -0.005196671467274427, -0.03675585612654686, -0.035560399293899536, -0.01182075496762991, 0.005076233763247728, -0.03036819025874138, 0.024587171152234077, -0.011802912689745426, 0.01095538679510355, 0.00013660777767654508, 0.03932520002126694, -0.020037295296788216, -0.0024176789447665215, 0.027370624244213104, -0.0200551375746727, -0.012802100740373135, 0.017708828672766685, 0.014407939277589321, -0.03616705164313316, 0.03743387758731842, -0.06723110377788544, 0.007864147424697876, -0.026407120749354362, -0.03120679408311844, 0.052136220037937164, 0.05070880800485611, 0.011151655577123165, 0.007351171690970659, -0.01656690053641796, 0.0007265303866006434, 0.007583125960081816, 0.02101864106953144, -0.00034458618029020727, -0.06277044117450714, -0.04714028164744377, -0.05106566101312637, -0.02258879505097866, -0.04667637124657631, -0.014943218789994717, 0.01806568168103695, 0.060665007680654526, -0.007824001833796501, 0.026799660176038742, 0.012284664437174797, -0.017235999926924706, -0.009911592118442059, 0.05502673238515854, -0.07112079858779907, -0.04874611645936966, -0.00524127809330821, 0.018841838464140892, -0.023909149691462517, -0.0200551375746727, -0.061343029141426086, 0.0037893326953053474, -0.024640697985887527, 0.06616054475307465, -0.009965119883418083, 0.0017708829836919904, -0.00013751385267823935, 0.005834546405822039, -0.014158142730593681, 0.02560420148074627, -0.053099725395441055, 0.08514512330293655, 0.015219779685139656, -0.0158888790756464, -0.05905916914343834, -0.05406322702765465, -0.013069740496575832, -0.012222214601933956, 0.03850443661212921, -0.008680448867380619, -0.0074671488255262375, -0.01753932423889637, 0.0018043379532173276, -0.030475245788693428, -0.0028994304593652487, 0.01866341196000576, -0.011669092811644077, 0.03186697140336037, -0.026514176279306412, -0.008198697119951248, 0.02526519075036049, 0.000993612571619451, -0.043750178068876266, -0.03261636197566986, 0.044178400188684464, 0.012079473584890366, -0.028815878555178642, -0.020090823993086815, 0.03871854767203331, -0.00913543626666069, 0.025425774976611137, 0.018734781071543694, 0.05563338100910187, 0.05916622653603554, -0.0008447379223071039, 0.05502673238515854, 0.003035480622202158, 0.014354411512613297, -0.009947276674211025, 0.0027834533248096704, 0.03864717856049538, -0.02986859530210495, 0.02012650854885578, -0.059986986219882965, -0.02672828920185566, 0.0063965898007154465, 0.049780990928411484, -0.015978092327713966, 0.026710446923971176, -0.030332503840327263, 0.0219107735902071, 0.008497562259435654, -0.0959220826625824, 0.03142090514302254, 0.010437949560582638, 0.014836163260042667, -0.050459012389183044, -0.020019453018903732, 0.04460662230849266, -0.031974028795957565, -0.009144357405602932, -0.031135423108935356, 0.04025301709771156, 0.016067305579781532, 0.031474433839321136, 0.03675585612654686, 0.004888886120170355, 0.08500238507986069, 0.0315101183950901, 0.02292780391871929, 0.005901456344872713, 0.050066474825143814, 0.004068124108016491, 0.07579557597637177, -0.03036819025874138, 0.022446053102612495, -0.05067312344908714, 0.013105425983667374, -0.010384421795606613, -0.016843460500240326, -0.05795292556285858, -0.008502022363245487, 0.0038160965777933598, 0.04557012766599655, 0.0044227465987205505, -0.007752631325274706, -0.023266814649105072, 0.02835197001695633, -0.019234376028180122, 0.02510460838675499, -0.008502022363245487, -0.004161797929555178, 0.018413614481687546, -0.030903467908501625, -0.015041353181004524, 0.013212481513619423, -0.06127166002988815, 0.010081096552312374, 0.022035671398043633, 0.004351376090198755, 0.01811921037733555, 0.07743709534406662, -0.00019529336714185774, -0.05773881450295448, 0.009786693379282951, 0.013274931348860264, 0.004786290694028139, 0.03356202319264412, -0.024979708716273308, 0.015514183789491653, -0.025675572454929352, 0.00943876150995493, -0.01966260001063347, -0.0039186920039355755, -0.007288722321391106, 0.02050120383501053, 0.0031425366178154945, 0.03313380107283592, -0.007997967302799225, 0.021446865051984787, 0.10134624689817429, 0.04353606328368187, 0.02112569659948349, 0.02494402416050434, 0.01437225379049778, -0.02853039652109146, 0.04557012766599655, 0.0481751523911953, -0.005045009311288595, -0.03413298726081848, 0.02594321221113205, -0.025175977498292923, -0.008631381206214428, 0.03206324204802513, -0.009554739110171795, -0.007150441873818636, -0.05720353499054909, -0.08171933144330978, 0.015068117529153824, -0.007757091894745827, -0.03793347254395485, 0.013890502974390984, 0.030510930344462395, 0.011017835699021816, -0.01944848708808422, 0.013703154399991035, -0.004830897320061922, 0.08250441402196884, -0.04053850099444389, -0.0025715718511492014, 0.059986986219882965, -0.009706401266157627, -0.04717596620321274, 0.03463258221745491, 0.0179318618029356, 0.042001597583293915, 0.024176789447665215, -0.00008551926293876022, 0.02096511237323284, 0.003126924391835928, -0.023409556597471237, 0.031974028795957565, 0.043964289128780365, 0.007569744251668453, -0.002455594716593623, -0.07508186995983124, -0.05277855694293976, -0.012677202001214027, 0.0679091215133667, -0.03391887620091438, 0.08878502249717712, 0.06883694231510162, -0.02112569659948349, 0.014033243991434574, -0.023391714319586754, -0.04581992328166962, 0.030475245788693428, 0.043286267668008804, -0.001158657018095255, -0.036898598074913025, -0.001832217094488442, 0.034935906529426575, 0.046426575630903244, -0.014666657894849777, -0.057631757110357285, -0.02207135781645775, -0.007261958438903093, -0.04378586262464523, 0.027192197740077972, -0.02588968351483345, 0.021393336355686188, 0.009599345736205578, -0.00010656801168806851, -0.0011123776203021407, -0.04332195222377777, 0.0004959698999300599, -0.013917266391217709, -0.056347087025642395, -0.027602579444646835, -0.001928121317178011, -0.013248167000710964, -0.03704134002327919, -0.04235845059156418, -0.01973397098481655, -0.042394135147333145, -0.015719374641776085, -0.018449299037456512, -0.05342089384794235, -0.038254640996456146, -0.0924249216914177, -0.020661788061261177, 0.08450278639793396, -0.03200971335172653, -0.018859680742025375, -0.06601780652999878, 0.021214909851551056, -0.0017541554989293218, 0.017949705943465233, 0.021054325625300407, 0.037184081971645355, -0.017949705943465233, 0.030635830014944077, 0.04628383368253708, 0.007373475003987551, -0.07137059420347214, -0.03261636197566986, 0.04389291629195213, 0.01599593460559845, -0.014693422242999077, -0.0297615397721529, -0.0003663318930193782, -0.01698620244860649, -0.024355215951800346, -0.011249790899455547, -0.022892119362950325, -0.038183268159627914, -0.02526519075036049, -0.0317777581512928, -0.005210053641349077, -0.0035774512216448784, 0.06148577108979225, 0.006124489475041628, 0.04271530359983444, 0.009108672849833965, -0.029351158067584038, -0.022160571068525314, 0.0297080110758543, 0.05970150604844093, 0.02801295928657055, 0.03427572920918465, 0.03131385147571564, -0.008698291145265102, -0.03352633863687515, -0.0354890301823616, 0.054277338087558746, 0.010098939761519432, -0.00173073704354465, -0.014140299521386623, 0.006668690126389265, -0.03534628823399544, -0.009938355535268784, -0.003568529849871993, 0.02712082676589489, -0.0014441394014284015, -0.012364955618977547, -0.01670072041451931, 0.03932520002126694, 0.006378747057169676, 0.09056928753852844, 0.09349548071622849, 0.0025648807641118765, 0.016192205250263214, 0.012703966349363327, 0.028494711965322495, -0.08635842055082321, 0.06084343418478966, 0.01960907131433487, -0.05659688264131546, -0.027638264000415802, 0.009974041022360325, -0.00778831634670496, 0.016843460500240326, -0.02515813522040844, 0.0279059037566185, 0.018047839403152466, -0.00556244608014822, -0.029279787093400955, 0.02023356407880783, 0.07743709534406662, 0.014354411512613297, -0.041502002626657486, 0.017414426431059837, 0.09727812558412552, 0.01053608488291502, -0.012659359723329544, -0.029850753024220467, 0.0034815468825399876, 0.008118405938148499, -0.07165607810020447, 0.005495536141097546, -0.04517759010195732, 0.06601780652999878, -0.03324085474014282, 0.038183268159627914, -0.009242492727935314, 0.007962282747030258, -0.028851564973592758, 0.00418856181204319, -0.004759526811540127, -0.06227084621787071, -0.023998362943530083, 0.016522293910384178, 0.036898598074913025, -0.016299260780215263, 0.02062610350549221, -0.03479316458106041, 0.016236811876296997, -0.08557334542274475, -0.06209241971373558, 0.03921814262866974, -0.04225139319896698, 0.001934812287800014, 0.014247355982661247, 0.05185073986649513, 0.06277044117450714, 0.032759103924036026, -0.03306242823600769, 0.041323576122522354, 0.046426575630903244, 0.04296509921550751, -0.07104942947626114, 0.019127320498228073, -0.0198410265147686, -0.011901047080755234, -0.011678013950586319, -0.030671514570713043, 0.027156513184309006, 0.02264232188463211, 0.029493900015950203, 0.06166419759392738, -0.036274105310440063, -0.05452713742852211, 0.051636628806591034, 0.022838590666651726, -0.00040257477667182684, 0.03721976652741432, 0.009117593988776207, 0.05541926994919777, 0.008912403136491776, 0.007444845512509346, 0.035899411886930466, -0.005192210897803307, -0.04974530637264252, -0.01364962663501501, 0.024729911237955093, -0.06359120458364487, -0.04903160035610199, 0.08129110932350159, 0.002529195509850979, 0.04135926067829132, -0.06987181305885315, 0.08892776817083359, 0.03175991773605347, 0.01429196260869503, 0.004413825459778309, 0.0021411178167909384, 0.052814241498708725, 0.024230318143963814, -0.004351376090198755, 0.01291807834059, 0.013596098870038986, 0.0436074361205101, -0.0477469302713871, 0.011945653706789017, -0.010759118013083935, -0.020893743261694908, 0.0279059037566185, 0.0018734781770035625, -0.04036007449030876, -0.006236006040126085, -0.061450082808732986, -0.08471690118312836, 0.017021887004375458, 0.02487265318632126, -0.023748567327857018, 0.0038919278886169195, 0.04482073709368706, -0.022785063832998276, 0.033026743680238724, -0.004030208569020033, -0.03750525042414665, 0.09556522965431213, 0.021161383017897606, -0.0954938605427742, 0.00845295563340187, -0.043000783771276474, -0.040038906037807465, 0.05745333060622215, 0.01560339704155922, 0.03479316458106041, -0.007235194556415081, 0.04168042913079262, -0.03782641515135765, -0.0013036285527050495, 0.0357566699385643, 0.02280290611088276, 0.0320453979074955, 0.03971773758530617, -0.0066909934394061565, 0.008136248216032982, -0.02924410253763199, 0.018681254237890244, 0.0361313633620739, -0.01850282773375511, 0.014488231390714645, -0.049067284911870956, 0.014479310251772404, 0.04335763677954674, -0.06351983547210693, -0.00913543626666069, 0.022606637328863144, 0.031117580831050873, -0.08164796233177185, -0.12432757765054703, 0.025033237412571907, 0.02287427708506584, 0.029047833755612373, 0.003682276699692011, -0.04649794474244118, 0.024408744648098946, -0.014836163260042667, 0.011892125941812992, 0.032866161316633224, 0.004955796059221029, -0.008444033563137054, 0.06912242621183395, -0.0013660778058692813, 0.0019783037714660168, -0.028548238798975945, -0.022338997572660446, -0.05866663157939911, 0.007070149760693312, 0.00011953181092394516, 0.006258309353142977, -0.0015578863676637411, 0.012168686836957932, -0.01732521317899227, 0.05256444588303566, -0.02824491448700428, -0.005348334088921547, -0.0354890301823616, -0.024836968630552292, 0.024890495464205742, 0.03721976652741432, 0.000897150719538331, -0.018931051716208458, -0.007168284617364407, 0.045427385717630386, -0.03957499563694, 0.0078507661819458, 0.0014809399144724011, -0.03854012116789818, 0.004077045246958733, 0.004491887055337429, -0.06337708979845047, -0.07750847190618515, -0.029458213597536087, -0.0159691721200943, -0.03327654302120209, 0.06676719337701797, 0.06526841223239899, -0.018841838464140892, 0.004871043376624584, 0.004911189433187246, -0.04981667548418045, 0.05138682946562767, -0.0025158135686069727, 0.002883818233385682, 0.008274529129266739, 0.024961866438388824, -0.01843145675957203, 0.04085966572165489, -0.02622869424521923, 0.023231130093336105, 0.0015813048230484128, -0.007734788581728935, -0.008185315877199173, -0.008368202485144138, -0.08500238507986069, 0.016343867406249046, 0.0035529176238924265, -0.02207135781645775, 0.0014697882579639554, 0.0297615397721529, -0.02044767700135708, -0.014283040538430214, 0.05813135206699371, -0.0033544180914759636, 0.033936720341444016, -0.04574855417013168, -0.07900725305080414, 0.01866341196000576, -0.032134611159563065, 0.03120679408311844, 0.006441196426749229, -0.024801282212138176, -0.023124074563384056, -0.020429832860827446, -0.03054661676287651, 0.0012010333593934774, -0.008131787180900574, 0.00556244608014822, -0.05367068946361542, 0.06045089662075043, -0.029886437579989433, -0.024408744648098946, 0.004398213233798742, 0.0032808170653879642, 0.10491477698087692, 0.029279787093400955, 0.06384100019931793, 0.022338997572660446, 0.021482549607753754, -0.016343867406249046, 0.00046725437277927995, -0.016192205250263214, -0.036684487015008926, -0.05731058865785599, 0.01350688561797142, -0.059380337595939636, 0.0021121236495673656, 0.03918245807290077, -0.007052307017147541, 0.03864717856049538, 0.004081506282091141, -0.02285643480718136, -0.015228701755404472, -0.03609567880630493, -0.0843600481748581, 0.01188320480287075, -0.026799660176038742, -0.03329438343644142, -0.0069541726261377335, -0.04549875482916832, 0.0628061294555664, -0.006280612666159868, -0.024836968630552292, -0.03406161814928055, 0.042679619044065475, -0.017708828672766685, -0.005285884719341993, 0.033490654081106186, 0.04881748929619789, 0.07750847190618515, 0.03636331856250763, -0.0397891066968441, 0.045034848153591156, 0.03457905352115631, 0.045926980674266815, -0.04007459059357643, 0.004590021446347237, 0.05916622653603554, -0.03971773758530617, 0.020822372287511826, -0.06901536881923676, 0.00736901443451643, -0.022553108632564545, -0.023605825379490852, -0.007279801182448864, -0.009840221144258976, 0.0029239642899483442, -0.08450278639793396, 0.009376312606036663, -0.02515813522040844, 0.08593019843101501, -0.07972095906734467, 0.0907120332121849, 0.026193009689450264, 0.04599834978580475, -0.07254821062088013, -0.046533629298210144, -0.007757091894745827, 0.060272470116615295, -0.0673738420009613, 0.018806152045726776, 0.027441995218396187, 0.05363500490784645, -0.031135423108935356, 0.04089535400271416, -0.0013448897516354918, -0.028102172538638115, -0.004181871190667152, -0.019983766600489616, -0.03447199985384941, 0.017762357369065285, 0.011115971021354198, -0.05927328020334244, 0.003510541282594204, -0.039360884577035904, -0.0050717731937766075, 0.08364634215831757, 0.037790730595588684, 0.02986859530210495, 0.028762351721525192, -0.007899832911789417, -0.03195618465542793, -0.032919690012931824, -0.04546307027339935, 0.007864147424697876, -0.030796412378549576, 0.029458213597536087, -0.01779804192483425, -0.0020195648539811373, 0.005865770857781172, 0.056632570922374725, 0.014613130129873753, -0.04546307027339935, 0.005615973845124245, -0.043286267668008804, 0.008457415737211704, -0.0012512158136814833, -0.05609729140996933, 0.05206485092639923, 0.006548252422362566, 0.01532683614641428, 0.003499389626085758, -0.10505752265453339, -0.02696024253964424, 0.04910296946763992, 0.006423353683203459, -0.0356496125459671, 0.03450768440961838, -0.050459012389183044, 0.01622788980603218, 0.029779382050037384, -0.03379397839307785, -0.04674774035811424, -0.05013784393668175, 0.02683534473180771, -0.021696662530303, -0.03771936148405075, -0.023409556597471237, -0.01392618753015995, -0.009866985492408276, 0.047532819211483, -0.0012166457017883658, 0.049780990928411484, 0.0061780172400176525, -0.04910296946763992, 0.008479719050228596, 0.016941595822572708, -0.03126032277941704, -0.05392048507928848, 0.01638847403228283, 0.04282235726714134, 0.029493900015950203, 0.017949705943465233, 0.04910296946763992, 0.03270557522773743, 0.048103783279657364, -0.01934143155813217, 0.0003203313099220395, 0.027263568714261055, -0.027941588312387466, 0.0038852368015795946, 0.006677611730992794, -0.02078668586909771, -0.0219107735902071 ]
23,344
parutils.file
mkdirs
Same as os.makedirs but - Input can also be a path - With a 'delete' option which (if True) deletes the folder if it already exists.
def mkdirs(dir, delete=False): """Same as os.makedirs but - Input can also be a path - With a 'delete' option which (if True) deletes the folder if it already exists.""" if not dir: return if p.exists(dir) and not delete: return if p.exists(dir) and delete: delete_folder(dir) os.makedirs(dir) log(f"Folder '{dir}' created")
(dir, delete=False)
[ -0.06350293010473251, 0.09973466396331787, -0.01064284984022379, -0.0867011547088623, 0.043669331818819046, 0.014768946915864944, -0.03754216805100441, 0.06842590868473053, -0.04423600435256958, 0.0212502833455801, 0.032743144780397415, 0.06623005121946335, 0.021409660577774048, 0.015521560795605183, 0.011785052716732025, -0.04919440671801567, -0.007707654964178801, 0.004905273672193289, -0.006454773712903261, -0.02503991685807705, 0.017380960285663605, 0.024083653464913368, 0.05312570929527283, 0.004922982305288315, 0.01469811238348484, 0.024119071662425995, 0.03231813758611679, 0.044271424412727356, -0.0238003171980381, 0.012980381026864052, -0.0013547055423259735, 0.05638408288359642, 0.010775664821267128, 0.052913203835487366, -0.019019003957509995, 0.04310265928506851, -0.01942630112171173, 0.013343406841158867, -0.07550933957099915, -0.03949011117219925, 0.03267231211066246, -0.036479651927948, -0.015742918476462364, -0.001091290614567697, 0.03447858616709709, -0.04908815398812294, 0.02197633497416973, -0.015512706711888313, -0.03479733690619469, -0.0049805352464318275, -0.0003627489786595106, -0.028351418673992157, 0.041260965168476105, -0.03952552750706673, -0.030582699924707413, 0.00622456194832921, 0.009022516198456287, -0.013378824107348919, -0.01981588825583458, 0.03198167681694031, 0.0037874202243983746, 0.04912357032299042, 0.0012849780032411218, 0.03814425691962242, -0.021569037809967995, -0.0425005666911602, -0.06945300847291946, -0.018328368663787842, 0.00464849965646863, 0.026208681985735893, -0.10299304127693176, -0.013139758259057999, 0.04944232478737831, -0.01064284984022379, 0.03658590465784073, 0.0746593251824379, -0.01160796731710434, -0.044661011546850204, 0.03952552750706673, -0.009996487759053707, -0.07983022928237915, -0.06024455279111862, -0.026084722951054573, 0.030936870723962784, 0.038569264113903046, 0.11878908425569534, 0.017983052879571915, 0.017398668453097343, -0.011395464651286602, 0.027926413342356682, 0.011970993131399155, -0.03715257719159126, 0.013458512723445892, -0.03253064304590225, -0.033858783543109894, 0.020878402516245842, 0.05379863455891609, 0.042960990220308304, -0.03520463407039642, -0.013768412172794342, 0.02224196307361126, -0.014255397953093052, -0.01675230637192726, -0.05872161686420441, -0.035417139530181885, -0.07253430038690567, -0.004329745192080736, -0.04618394747376442, -0.010076175443828106, 0.03704632818698883, -0.03952552750706673, -0.07030302286148071, 0.03449629247188568, 0.023977402597665787, -0.027890997007489204, 0.013343406841158867, 0.05029233545064926, -0.045511022210121155, -0.07423432171344757, -0.047317296266555786, -0.009075641632080078, -0.019160671159625053, 0.004936263896524906, -0.03704632818698883, 0.06162581965327263, 0.024402407929301262, 0.029183723032474518, 0.02734203077852726, -0.021675288677215576, 0.06991343200206757, -0.051567353308200836, 0.04242973029613495, -0.01894816942512989, -0.02128569968044758, 0.025004500523209572, -0.02429615706205368, -0.0038648953195661306, -0.010757955722510815, 0.03828592598438263, 0.0027204789221286774, 0.035062968730926514, -0.04869856685400009, -0.014096020720899105, 0.00011337635078234598, -0.0031676203943789005, 0.009235018864274025, -0.02151591144502163, 0.035062968730926514, 0.006056330632418394, 0.05032775551080704, -0.025854511186480522, 0.014104875735938549, 0.06428210437297821, 0.025889927521348, 0.035541098564863205, -0.004247842822223902, -0.006578733678907156, -0.06283000111579895, 0.050859011709690094, 0.026031596586108208, 0.02089611254632473, 0.020364854484796524, 0.009013662114739418, 0.016345009207725525, -0.025128459557890892, 0.03490358963608742, 0.019833598285913467, 0.023481562733650208, -0.00444042356684804, 0.015928858891129494, 0.02222425490617752, 0.01575177162885666, 0.04763605073094368, -0.04257139936089516, -0.08542613685131073, -0.029219139367341995, -0.007247231900691986, 0.009119912981987, -0.013865809887647629, -0.0030857182573527098, 0.03187542408704758, 0.009668879210948944, 0.021569037809967995, 0.004869856406003237, 0.03509838506579399, 0.0028732153587043285, 0.00836287159472704, 0.06102373078465462, -0.009270436130464077, 0.005724295042455196, -0.09392625093460083, 0.006113883573561907, 0.0017553619109094143, 0.02927226573228836, -0.023764899000525475, 0.02771391160786152, 0.037967171519994736, -0.03109624795615673, -0.025960762053728104, 0.024136779829859734, -0.004117242526262999, 0.09605128318071365, 0.02296801470220089, -0.025925345718860626, 0.06329042464494705, -0.029130596667528152, -0.10844727605581284, 0.021551329642534256, -0.048769399523735046, -0.03655048832297325, 0.07239262759685516, -0.0076722376979887486, 0.05199236050248146, 0.03375253453850746, -0.02587221935391426, -0.011386609636247158, 0.04944232478737831, 0.0797593966126442, -0.014317378401756287, 0.01778825744986534, -0.05652575194835663, -0.020364854484796524, 0.005972214974462986, 0.02877642586827278, -0.01038607582449913, -0.040765125304460526, -0.020878402516245842, -0.0037187994457781315, -0.030812909826636314, -0.07961772382259369, 0.004252270329743624, 0.0071099903434515, 0.02052423171699047, -0.03789633885025978, -0.026651397347450256, -0.055711157619953156, 0.062404997646808624, -0.0358598530292511, -0.031043121591210365, 0.012342873029410839, 0.01633615605533123, -0.03924218937754631, 0.04065887629985809, 0.07040926814079285, 0.0857803076505661, 0.06669047474861145, 0.040163036435842514, -0.03198167681694031, 0.004495763219892979, -0.014529881067574024, -0.10625141859054565, -0.021356534212827682, -0.023180516436696053, -0.005768566392362118, 0.029555601999163628, 0.010988167487084866, -0.037117160856723785, 0.056915342807769775, -0.00644149212166667, 0.017823675647377968, -0.01593771204352379, -0.01196213811635971, -0.006317532155662775, 0.031645212322473526, -0.0238003171980381, -0.016947099938988686, 0.04012761637568474, 0.014538735151290894, 0.018257534131407738, 0.008110525086522102, 0.06775298714637756, 0.026793064549565315, 0.045121435075998306, -0.06499044597148895, 0.0765010192990303, 0.0035328594967722893, -0.00044631128548644483, -0.02371177449822426, -0.005423249211162329, 0.022295089438557625, -0.015052284114062786, -0.02427844889461994, -0.03573589399456978, 0.02162216231226921, -0.06265291571617126, 0.05209860950708389, 0.021427368745207787, 0.04469642788171768, -0.0045820921659469604, 0.02201175130903721, -0.0201700609177351, -0.02002839185297489, -0.05397571995854378, 0.01993984915316105, -0.009730858728289604, -0.04104846343398094, -0.046856872737407684, -0.04012761637568474, 0.021338826045393944, -0.05482573062181473, 0.024862831458449364, 0.072959303855896, -0.011262649670243263, 0.016221050173044205, 0.007304784841835499, 0.009252727031707764, -0.07101136445999146, 0.01367101538926363, 0.028528505936264992, -0.005799556616693735, -0.037967171519994736, -0.0001840031036408618, 0.014804364182054996, 0.0018084875773638487, 0.04345683008432388, 0.03072436712682247, -0.007220669183880091, -0.03060040809214115, -0.055463239550590515, 0.00483001209795475, -0.006078466307371855, 0.011519424617290497, -0.0008477977244183421, 0.04540477320551872, -0.030936870723962784, -0.036762990057468414, -0.0009047972271218896, 0.03277856111526489, -0.017460649833083153, -0.00006599209154956043, -0.017274709418416023, 0.01190901268273592, 0.045617274940013885, 0.008783450350165367, -0.01893046125769615, -0.005830546375364065, -0.0025810240767896175, -0.052311114966869354, 0.0039954958483576775, 0.03835676237940788, 0.034088995307683945, -0.017159603536128998, -0.09215539693832397, 0.005042515229433775, 0.051461100578308105, 0.03619631379842758, 0.029449351131916046, 0.027908705174922943, 0.01239599846303463, 0.034815046936273575, 0.0544007234275341, 0.07331347465515137, 0.016495531424880028, 0.017469502985477448, 0.08556780964136124, -0.03998595103621483, 0.005817264784127474, -0.05829660966992378, -0.023393020033836365, -0.046113114804029465, 0.01683199591934681, 0.013706432655453682, 0.02503991685807705, 0.0076014031656086445, -0.022188836708664894, -0.03878176584839821, 0.005378977861255407, 0.0017819247441366315, 0.023995110765099525, 0.023003431037068367, 0.08691366016864777, -0.06013830006122589, -0.003395618172362447, 0.02052423171699047, 0.042217228561639786, 0.034939005970954895, 0.07409265637397766, -0.032371263951063156, 0.003714372403919697, 0.05914662033319473, -0.05004441738128662, -0.03187542408704758, 0.05043400451540947, 0.005091213621199131, 0.01724814623594284, -0.03892343491315842, 0.08337194472551346, 0.050009001046419144, -0.010014195926487446, 0.015822606161236763, -0.022914888337254524, 0.036515068262815475, -0.013954352587461472, -0.0391005203127861, 0.02103777974843979, -0.019886722788214684, 0.06222791224718094, 0.016849704086780548, -0.01683199591934681, 0.008721469901502132, 0.05649033561348915, -0.012360581196844578, 0.01921379752457142, 0.01590229570865631, -0.037258829921483994, -0.0013635598588734865, 0.019745055586099625, -0.0303701963275671, 0.03368169814348221, -0.025889927521348, 0.05333821102976799, 0.017195019870996475, 0.008274328894913197, -0.007720936089754105, 0.010908478870987892, -0.0019080983474850655, -0.04324432462453842, -0.006370657589286566, 0.012413706630468369, -0.0019435154972597957, -0.028741007670760155, -0.08762200176715851, 0.008663917891681194, 0.07890938222408295, 0.007982137612998486, -0.0018350505270063877, -0.0020464465487748384, 0.008779022842645645, 0.01681428588926792, -0.011324630118906498, 0.03828592598438263, -0.03306189924478531, -0.014547589235007763, -0.049654826521873474, -0.012369435280561447, -0.0032096782233566046, -0.02587221935391426, -0.019851306453347206, -0.046006862074136734, 0.06523837149143219, 0.01749606616795063, -0.04505059868097305, 0.0022390272933989763, 0.01196213811635971, -0.04182764142751694, 0.033717114478349686, 0.01896587759256363, -0.02626180835068226, 0.07607601583003998, 0.012263184413313866, 0.021905500441789627, -0.003953438252210617, 0.0641404390335083, 0.026775356382131577, 0.019355466589331627, -0.005033660680055618, -0.07905105501413345, -0.0021073196548968554, -0.02066590078175068, 0.022135712206363678, 0.050115250051021576, 0.01602625474333763, 0.03945469111204147, 0.05248820036649704, -0.0070347292348742485, 0.0031167082488536835, 0.009270436130464077, -0.027164945378899574, 0.02247217483818531, -0.018275244161486626, 0.0023773754946887493, -0.026917025446891785, 0.01641584374010563, 0.05695075914263725, -0.023481562733650208, -0.011138689704239368, -0.024402407929301262, -0.03423066437244415, -0.021870082244277, 0.013051215559244156, 0.04384641721844673, -0.010465764440596104, -0.006047476548701525, -0.002271123928949237, -0.03460254520177841, -0.009465230628848076, 0.0006458093994297087, 0.06428210437297821, 0.012865275144577026, -0.01287413015961647, -0.005463093519210815, -0.04143805056810379, 0.02176383137702942, -0.005339133553206921, 0.0030436604283750057, -0.040517207235097885, -0.03175146505236626, -0.003455384634435177, -0.04983191564679146, -0.036019228398799896, 0.044058918952941895, -0.009447521530091763, -0.020152350887656212, -0.003920234739780426, -0.018009614199399948, 0.03609006479382515, 0.0027979540172964334, -0.041756805032491684, -0.0666196346282959, 0.0006530035170726478, -0.008827721700072289, -0.010279824025928974, -0.04639645293354988, -0.052559033036231995, 0.019957557320594788, 0.012617355212569237, -0.022047169506549835, -0.0012252116575837135, -0.042358897626399994, -0.02358781360089779, -0.01493717823177576, -0.001091290614567697, 0.037967171519994736, 0.008708189241588116, -0.046219367533922195, 0.08684282004833221, 0.0055649178102612495, 0.00811495166271925, 0.051709022372961044, 0.05135485157370567, -0.02417219616472721, -0.0012384930159896612, 0.0070347292348742485, 0.03001602552831173, -0.025057625025510788, -0.017779404297471046, -0.03562964126467705, 0.010775664821267128, 0.0006530035170726478, -0.025783676654100418, 0.05029233545064926, -0.04257139936089516, -0.003760857507586479, -0.011147544719278812, 0.011678801849484444, 0.044554758816957474, 0.01391008123755455, -0.02721807174384594, 0.03483275696635246, 0.013307989574968815, 0.024933665990829468, 0.015680938959121704, -0.03782550245523453, 0.0403401218354702, 0.015548123978078365, -0.023109683766961098, -0.002769177546724677, -0.07090511173009872, 0.017735132947564125, 0.014423629269003868, -0.028634756803512573, 0.017221583053469658, -0.01610594429075718, 0.003506296779960394, 0.04122554883360863, -0.040163036435842514, -0.023977402597665787, 0.019107546657323837, 0.037223413586616516, -0.04242973029613495, 0.008389434777200222, 0.012617355212569237, -0.020754443481564522, -0.07044468820095062, -0.004865429364144802, 0.03185771778225899, -0.02248988300561905, -0.01672574318945408, -0.013591326773166656, -0.006012059282511473, -0.07395098358392715, -0.029803521931171417, -0.08457612991333008, -0.023906568065285683, 0.009783984161913395, -0.030564989894628525, 0.021321117877960205, 0.014839781448245049, -0.02309197373688221, 0.03387649357318878, -0.02525242045521736, 0.08131775259971619, 0.02881184220314026, -0.03609006479382515, 0.016061672940850258, -0.03325669467449188, -0.003760857507586479, -0.015034575015306473, -0.047458965331315994, -0.0012351727345958352, -0.010678267106413841, 0.010306387208402157, -0.015645520761609077, 0.011581404134631157, 0.020595066249370575, -0.013281427323818207, 0.01244912389665842, 0.01544187217950821, -0.06679672002792358, -0.030405612662434578, -0.029945190995931625, -0.03387649357318878, -0.010315241292119026, 0.01239599846303463, 0.01683199591934681, -0.01683199591934681, -0.042323481291532516, -0.05992579832673073, 0.02516387775540352, -0.01946171745657921, -0.09484709799289703, -0.07579267770051956, 0.0057729934342205524, 0.01191786676645279, 0.0016081593930721283, -0.07207387685775757, 0.02456178516149521, -0.027288904413580894, -0.01917838118970394, -0.06477794796228409, 0.009633461944758892, 0.01780596561729908, -0.004754750989377499, -0.07366764545440674, 0.031184790655970573, 0.042110975831747055, -0.03598381206393242, -0.04799022153019905, 0.0799010619521141, -0.029555601999163628, -0.06385710090398788, 0.03247751668095589, -0.027855578809976578, -0.046856872737407684, 0.03453170880675316, -0.07207387685775757, 0.013768412172794342, -0.002809021854773164, -0.004214639309793711, -0.03150354325771332, -0.01638042740523815, 0.016132507473230362, -0.02881184220314026, 0.023623231798410416, 0.031397294253110886, 0.044519342482089996, 0.009394396096467972, -0.020612774416804314, -0.041863057762384415, 0.0017631094669923186, 0.02698785997927189, -0.007986565120518208, -0.04108387976884842, 0.0022910460829734802, -0.02734203077852726, 0.03038790449500084, 0.004940690938383341, 0.0073623377829790115, -0.003991068806499243, -0.05978412926197052, 0.03538172319531441, 0.01117410697042942, 0.028617048636078835, -0.028245167806744576, 0.03217646852135658, -0.023393020033836365, 0.008584229275584221, -0.01159911323338747, -0.02429615706205368, 0.01391008123755455, -0.06222791224718094, 0.009527210146188736, -0.008708189241588116, -0.0038294780533760786, -0.001753148389980197, 0.019603386521339417, 0.06382168084383011, 0.010518889874219894, -0.0425005666911602, -0.012422561645507812, -0.01493717823177576, 0.05663200467824936, 0.025323253124952316, -0.0018571862019598484, -0.04650270193815231, 0.007787343114614487, 0.02833371050655842, 0.07012593746185303, 0.01372414082288742, -0.04012761637568474, 0.02172841504216194, -0.0021947557106614113, -0.03145042061805725, -0.012847566977143288, 0.01917838118970394, -0.02394198626279831, 0.020435689017176628, 0.025854511186480522, 0.04289015382528305, -0.03885260224342346, 0.005095640663057566, 0.007694373372942209, 0.06474252790212631, -0.03145042061805725, -0.037258829921483994, -0.05482573062181473, 0.034620251506567, 0.019621094688773155, 0.024738870561122894, -0.04402350261807442, 0.056809090077877045, -0.05383405089378357, -0.027501408010721207, -0.03485046327114105, -0.05953621119260788, -0.09753879904747009, -0.03557651489973068, -0.017239293083548546, 0.01136890146881342, -0.01633615605533123, -0.031149372458457947, 0.044661011546850204, 0.016982518136501312, 0.0636800155043602, 0.015371037647128105, 0.014122583903372288, 0.035434845834970474, 0.0483798123896122, 0.00692847790196538, -0.009314707480370998, 0.011209524236619473, 0.0035771310795098543, 0.09449292719364166, -0.062263328582048416, 0.07324264198541641, 0.010545453056693077, 0.06573420763015747, 0.017504921182990074, -0.06219249591231346, 0.016070526093244553, 0.03878176584839821, -0.03453170880675316, -0.022897180169820786, 0.018505454063415527, -0.0011886877473443747, -0.019249213859438896, 0.03562964126467705, -0.029555601999163628, -0.022560717537999153, -0.03279627114534378, -0.03697549179196358, -0.056879922747612, -0.03607235476374626, -0.02636805921792984, 0.0238003171980381, 0.024402407929301262, 0.024685746058821678, 0.015388746745884418 ]
23,346
parutils.msc
replace_from_dict
Replaces the variables (delimited by '@@') in 'str_in' with the values of 'dict_in'. Example: - replace_from_dict('Hello @@VAR@@', {'VAR': 'world'}) returns 'Hello world'
def replace_from_dict(str_in: str, dict_in, var_del='@@'): """Replaces the variables (delimited by '@@') in 'str_in' with the values of 'dict_in'. Example: - replace_from_dict('Hello @@VAR@@', {'VAR': 'world'}) returns 'Hello world' """ for key in dict_in: str_in = str_in.replace(var_del + key + var_del, str(dict_in[key])) return str_in
(str_in: str, dict_in, var_del='@@')
[ 0.03951435908675194, -0.019327286630868912, -0.028569992631673813, -0.053450070321559906, -0.05201709270477295, -0.006408097222447395, -0.009394960477948189, 0.06165386736392975, 0.0912090316414833, -0.0075679137371480465, -0.060113415122032166, 0.02948351576924324, -0.05735493451356888, 0.04270273447036743, -0.011213050223886967, -0.019345199689269066, -0.03381827473640442, 0.05860878899693489, -0.0003546060179360211, -0.0883430764079094, 0.015001485124230385, 0.02434270828962326, 0.03904864192008972, -0.004095181822776794, -0.028569992631673813, 0.0031391168013215065, -0.0016009047394618392, -0.022945554926991463, 0.047897279262542725, -0.007035024929791689, 0.06358838826417923, -0.03912029042840004, 0.03553784638643265, 0.04710914194583893, 0.03700665012001991, -0.07580452412366867, 0.028981974348425865, 0.029877586290240288, -0.050225868821144104, -0.004511640872806311, -0.040553268045186996, 0.010371176525950432, 0.03833215311169624, -0.016004569828510284, 0.035806529223918915, 0.04230866581201553, -0.056172724813222885, 0.021315542981028557, 0.04890036582946777, 0.05065576359629631, 0.036899175494909286, -0.07981685549020767, -0.012225091457366943, -0.007675386965274811, -0.011956407688558102, 0.014374557882547379, -0.010890631005167961, 0.03998007997870445, 0.005839384160935879, -0.04452978074550629, 0.032152436673641205, -0.04603441059589386, -0.061152324080467224, -0.027208663523197174, 0.012968447990715504, -0.032242000102996826, 0.04513879865407944, -0.028140099719166756, 0.013631200417876244, -0.10016514360904694, -0.026778770610690117, -0.016882268711924553, -0.020796088501811028, -0.01415961142629385, 0.02851625718176365, 0.00022208355949260294, -0.006242409348487854, -0.0678873211145401, -0.039227765053510666, -0.049509380012750626, 0.010998103767633438, -0.11413667351007462, 0.0011710114777088165, -0.013550595380365849, 0.004948250949382782, 0.022784344851970673, 0.017464416101574898, -0.023841166868805885, 0.03109561651945114, 0.01779579184949398, 0.0017609952483326197, 0.012431081384420395, 0.011732504703104496, 0.018539149314165115, -0.030791109427809715, -0.015932921320199966, 0.05291270092129707, -0.013344604521989822, 0.01698974147439003, -0.011965364217758179, 0.06462729722261429, -0.03808138146996498, -0.05807142332196236, -0.014061094261705875, 0.0011586968321353197, -0.06330179423093796, 0.026599649339914322, -0.057820651680231094, 0.017894309014081955, -0.006600653752684593, -0.04632100462913513, -0.04370582103729248, -0.014025269076228142, 0.004545226227492094, 0.02246192656457424, 0.04961685463786125, -0.06455564498901367, -0.03940688818693161, 0.058250542730093, 0.005991638172417879, -0.03754401579499245, 0.04402824118733406, -0.08404414355754852, 0.044207364320755005, 0.023160502314567566, 0.014705933630466461, 0.00855756364762783, 0.02835504710674286, 0.03190166503190994, 0.0021203591022640467, 0.02040201984345913, 0.014150654897093773, 0.02033037133514881, 0.06616774946451187, 0.018539149314165115, 0.038654573261737823, -0.05950440093874931, 0.020276634022593498, 0.0670991837978363, -0.005503530148416758, 0.027692293748259544, -0.013228175230324268, -0.024790514260530472, 0.00926061812788248, -0.008620256558060646, -0.0071201082319021225, 0.019954213872551918, 0.00600507203489542, -0.03157924488186836, -0.06254947930574417, -0.011813109740614891, 0.016452375799417496, -0.00561548164114356, 0.012941580265760422, 0.014258128590881824, 0.02240818925201893, -0.013004273176193237, -0.038618750870227814, -0.0004240158596076071, -0.01907651498913765, 0.059146154671907425, 0.04374164342880249, -0.0188794806599617, 0.0022972424048930407, 0.04306098073720932, -0.02799680270254612, 0.13405506312847137, -0.030755283311009407, 0.042953506112098694, 0.011159313842654228, -0.0023912815377116203, -0.0028189357835799456, -0.019183989614248276, 0.009645731188356876, 0.07745244354009628, 0.009627819061279297, -0.014392470009624958, -0.048506297171115875, -0.029250657185912132, 0.04510297253727913, 0.023303799331188202, 0.004332518670707941, 0.02534579299390316, 0.012583335861563683, -0.005051246378570795, -0.03663049265742302, -0.010998103767633438, 0.04467308148741722, -0.004581050481647253, -0.00280774082057178, -0.0188794806599617, 0.003056272864341736, -0.014007356949150562, 0.0019994517788290977, -0.012941580265760422, -0.005799081642180681, 0.0011665334459394217, -0.042272843420505524, -0.05208874121308327, 0.0006605131784453988, -0.02000795118510723, -0.0034212341997772455, -0.005270671099424362, -0.003972034901380539, 0.0011564578162506223, -0.004513879772275686, -0.011195138096809387, -0.03584235534071922, -0.03912029042840004, -0.02366204373538494, 0.009547214023768902, 0.027244489639997482, 0.05130060389637947, -0.08626525849103928, 0.01674792729318142, 0.04639265313744545, 0.04972432553768158, 0.07809728384017944, -0.057426583021879196, -0.002619662322103977, 0.023321712389588356, 0.014132742770016193, 0.03449893742799759, 0.030110444873571396, 0.022676872089505196, -0.02201412059366703, -0.0198825653642416, 0.022444013506174088, -0.01570901833474636, -0.04162800312042236, 0.05130060389637947, -0.0006571545964106917, -0.010550298728048801, 0.008472480811178684, 0.08218127489089966, -0.032671891152858734, -0.009224793873727322, -0.06713500618934631, 0.07175635546445847, 0.049903448671102524, 0.01385510340332985, 0.04728826507925987, -0.029895497485995293, 0.0025524916127324104, -0.013568507507443428, 0.0546322762966156, -0.02065279148519039, 0.005006466060876846, -0.008647125214338303, 0.012771413661539555, 0.06333761662244797, -0.033639151602983475, -0.0490078367292881, 0.09142398089170456, -0.020581142976880074, 0.10145482420921326, 0.03061198629438877, 0.010415956377983093, 0.011625031940639019, -0.004670611582696438, -0.024074025452136993, -0.012225091457366943, -0.06358838826417923, 0.027978889644145966, 0.02169170044362545, -0.034140694886446, -0.0005390458973124623, -0.013505814597010612, -0.0025323403533548117, -0.07315351068973541, 0.03872622177004814, 0.04667925089597702, 0.05610107630491257, -0.027781855314970016, -0.031435947865247726, 0.06795896589756012, 0.02828339673578739, 0.0337287113070488, 0.014840275049209595, -0.01401631347835064, 0.013416253961622715, -0.047216616570949554, -0.03362124040722847, 0.010514473542571068, 0.0622628815472126, 0.007335054688155651, 0.015153739601373672, 0.0036025955341756344, 0.04173547774553299, -0.027907241135835648, 0.025077110156416893, -0.04245196655392647, -0.014911924488842487, 0.042201194912195206, -0.06835303455591202, 0.017965957522392273, 0.019631795585155487, -0.012305696494877338, 0.010012932121753693, 0.041878774762153625, 0.07250867038965225, 0.03704247251152992, -0.006452878005802631, 0.016980785876512527, 0.03225991129875183, -0.012708720751106739, 0.030576162040233612, -0.027065366506576538, -0.02977011166512966, -0.03743654116988182, -0.011920583434402943, 0.007344010751694441, -0.0666692852973938, 0.0011363065568730235, -0.03571696951985359, -0.015574676916003227, -0.055850304663181305, -0.009224793873727322, -0.015117915347218513, 0.0072723617777228355, 0.057104162871837616, -0.0397651307284832, -0.013371473178267479, -0.0018427197355777025, -0.0015829926123842597, -0.016568804159760475, 0.03686335310339928, 0.06086573004722595, 0.04678672179579735, -0.018333159387111664, -0.028784940019249916, -0.05276940390467644, -0.0277102068066597, -0.059755172580480576, 0.026850419119000435, -0.021584227681159973, -0.0437774695456028, 0.002395759569481015, -0.0313284769654274, -0.006479746196419001, 0.02240818925201893, 0.004594484809786081, 0.012807237915694714, 0.018091343343257904, -0.028229661285877228, 0.00579460384324193, -0.039944253861904144, -0.004395211115479469, -0.0076619526371359825, -0.010675683617591858, -0.0018203294603154063, -0.01149068959057331, 0.04832717403769493, -0.01779579184949398, 0.01383719127625227, 0.023876991122961044, 0.00042737441253848374, 0.019273551180958748, -0.012341520749032497, -0.06437652558088303, 0.022587310522794724, 0.03093440644443035, 0.01417752355337143, -0.026044370606541634, -0.014831319451332092, -0.002373369410634041, -0.0023554570507258177, -0.01158920768648386, -0.010854805819690228, 0.022748520597815514, 0.022999292239546776, 0.02498754858970642, 0.012843063101172447, -0.015494071878492832, -0.0263130534440279, -0.016649410128593445, -0.005427402909845114, -0.0003148632531519979, 0.0034861660096794367, 0.046822547912597656, 0.02932230569422245, 0.015234344638884068, 0.04506715014576912, 0.051157303154468536, 0.017374854534864426, -0.02547117881476879, -0.0029353653080761433, 0.005060202442109585, 0.04399241507053375, 0.013541639782488346, -0.029465604573488235, -0.04101898893713951, 0.05434567853808403, 0.04796892777085304, -0.03607521578669548, -0.10618364810943604, -0.014079006388783455, -0.060149241238832474, 0.014652197249233723, 0.013765541836619377, 0.022103682160377502, -0.007285796105861664, -0.0530201755464077, 0.014052137732505798, 0.04807640239596367, -0.009672599844634533, 0.020778177306056023, 0.03772313892841339, -0.001782266073860228, 0.025453265756368637, 0.005015422124415636, -0.04632100462913513, 0.026259316131472588, -0.03462432324886322, 0.025650301948189735, 0.008938198909163475, -0.005091548897325993, -0.05441732704639435, -0.03772313892841339, 0.015726929530501366, -0.018825745210051537, -0.08010345697402954, -0.015538851730525494, 0.003535424591973424, -0.04943773150444031, -0.023554570972919464, -0.021637963131070137, -0.020509494468569756, 0.016219517216086388, 0.04101898893713951, -0.027334049344062805, -0.03869039937853813, 0.05097818374633789, -0.009045671671628952, 0.07372670620679855, 0.012269871309399605, 0.04345504939556122, 0.034158606082201004, 0.018485412001609802, 0.004652699455618858, -0.025918984785676003, -0.021279718726873398, 0.06681258231401443, -0.027047453448176384, -0.058787912130355835, 0.04503132402896881, -0.03507212921977043, 0.008530695922672749, 0.0377589613199234, 0.01474175788462162, 0.021476753056049347, -0.007129064295440912, -0.05602942779660225, 0.027531083673238754, 0.06803061813116074, -0.02453974261879921, 0.007970938459038734, 0.021960383281111717, -0.012001188471913338, 0.046607598662376404, -0.04005172848701477, -0.007433571852743626, -0.03165089711546898, 0.043920766562223434, -0.014293952845036983, 0.04510297253727913, 0.010362219996750355, -0.009914414957165718, -0.0453895702958107, 0.0053064958192408085, -0.012610203586518764, -0.004984075669199228, -0.0017665928462520242, 0.013667024672031403, -0.016927048563957214, -0.016380727291107178, 0.028605816885828972, 0.053450070321559906, -0.010496561415493488, 0.0650930106639862, 0.0005356873734854162, -0.06960689276456833, -0.030146269127726555, 0.026581736281514168, 0.01802865043282509, 0.00023313875135499984, 0.025005461648106575, 0.0030719460919499397, -0.03068363480269909, 0.0892028659582138, 0.0016691951313987374, 0.03605730086565018, 0.013747629709541798, -0.00015505266492255032, 0.01824359782040119, -0.02683250792324543, 0.0028458042070269585, 0.016416551545262337, 0.017070347443223, -0.008750120177865028, 0.013066965155303478, 0.006726039107888937, -0.050225868821144104, 0.028605816885828972, 0.002102446975186467, 0.024396445602178574, -0.0011178345885127783, 0.06824556738138199, -0.02136928029358387, 0.003631702857092023, -0.007281317841261625, -0.038224682211875916, 0.04080403968691826, -0.061725515872240067, -0.006076721008867025, -0.008109758608043194, -0.03152551129460335, 0.0009790149051696062, -0.04406406357884407, -0.03145385906100273, -0.013756586238741875, 0.006529004778712988, -0.013264000415802002, -0.022676872089505196, 0.016980785876512527, -0.03786643594503403, 0.0337466262280941, 0.0035399028565734625, 0.03876204788684845, 0.0043146065436303616, -0.07010843604803085, 0.02269478514790535, 0.024396445602178574, -0.034767620265483856, 0.07487308233976364, 0.012887842953205109, 0.061725515872240067, -0.12309278547763824, -0.068281389772892, 0.06315848976373672, -0.001509104622527957, 0.06000594049692154, 0.04864959418773651, 0.02237236499786377, 0.045246269553899765, 0.039586007595062256, -0.004256391432136297, -0.023769518360495567, -0.006323014385998249, 0.0014284997014328837, -0.04012337699532509, -0.027083279564976692, -0.030916493386030197, 0.04929443448781967, -0.083542600274086, -0.05635184794664383, -0.023267975077033043, 0.004733304493129253, -0.03322717174887657, 0.049903448671102524, -0.002021841937676072, -0.0019737028051167727, 0.06412575393915176, 0.0514080747961998, -0.017903264611959457, 0.026528000831604004, -0.04442230984568596, -0.00008284402429126203, -0.022318627685308456, 0.026241404935717583, 0.028462519869208336, -0.027978889644145966, 0.030826933681964874, 0.012556467205286026, -0.0626569539308548, -0.008042586967349052, 0.018100298941135406, -0.02446809411048889, 0.060794077813625336, 0.06699170917272568, -0.06441234797239304, 0.04345504939556122, -0.026259316131472588, 0.05495469644665718, 0.010165185667574406, 0.017213644459843636, -0.053450070321559906, 0.05620855093002319, 0.03876204788684845, 0.015646325424313545, -0.04309680312871933, -0.038547102361917496, 0.0059647695161402225, 0.011168270371854305, -0.014571592211723328, -0.02505919709801674, 0.02702954225242138, 0.04503132402896881, -0.008548608049750328, -0.04839882254600525, -0.05961187183856964, -0.043920766562223434, 0.01827942207455635, 0.0033361511304974556, 0.009206881746649742, -0.030110444873571396, 0.07659266144037247, 0.025363706052303314, 0.020061688497662544, -0.04109063744544983, 0.0007036144379526377, 0.02421732246875763, -0.014105874113738537, 0.05853714048862457, 0.022945554926991463, -0.02899988740682602, -0.019990039989352226, -0.004030250012874603, -0.01369389332830906, -0.039944253861904144, -0.0005871850298717618, -0.03707829862833023, -0.05853714048862457, -0.011651899665594101, 0.03501839190721512, -0.013111745938658714, 0.053772490471601486, -0.03847545012831688, -0.05839384347200394, -0.10697178542613983, -0.05438150465488434, 0.028462519869208336, 0.002937604207545519, 0.026581736281514168, -0.017168864607810974, 0.027907241135835648, 0.011186182498931885, -0.035322900861501694, -0.0674574226140976, -0.007084283512085676, 0.04936608299612999, -0.017258426174521446, 0.030755283311009407, 0.0042922161519527435, -0.013595376163721085, 0.0263130534440279, 0.012225091457366943, -0.07132646441459656, -0.018933217972517014, 0.022103682160377502, 0.015610501170158386, 0.07365505397319794, -0.036576755344867706, 0.014105874113738537, -0.022390276193618774, 0.02996714599430561, 0.016362814232707024, -0.019327286630868912, 0.027495259419083595, 0.031919579952955246, 0.02960890159010887, -0.01123096328228712, -0.034642234444618225, -0.024754690006375313, 0.025721950456500053, 0.0019054125295951962, 0.00420713284984231, 0.016165779903531075, 0.05212456360459328, -0.031991228461265564, 0.07046668231487274, -0.009977106936275959, -0.043240103870630264, -0.0542382076382637, 0.07537462562322617, -0.08103489130735397, 0.03714994713664055, 0.022318627685308456, 0.026259316131472588, -0.008705339394509792, -0.008929242379963398, 0.0001605103025212884, 0.048828717321157455, 0.03233155980706215, -0.01440142560750246, 0.04134140536189079, 0.014079006388783455, -0.030074620619416237, -0.03290475159883499, 0.07293856889009476, 0.017571888864040375, -0.042631085962057114, 0.0016613585175946355, -0.0718996599316597, -0.018306290730834007, -0.049186959862709045, 0.012663940899074078, -0.03519751504063606, -0.007442527916282415, -0.001956910127773881, -0.009753204882144928, 0.0067887320183217525, 0.030110444873571396, 0.00281669688411057, -0.026241404935717583, -0.04109063744544983, 0.01149068959057331, -0.03491092100739479, -0.021423017606139183, -0.029590990394353867, 0.01871827058494091, 0.029752200469374657, 0.010371176525950432, -0.01638968288898468, 0.03679170459508896, 0.02518458291888237, -0.05602942779660225, -0.0687112808227539, 0.011365304701030254, -0.05133642628788948, 0.04764650762081146, -0.03747236728668213, -0.028605816885828972, 0.03772313892841339, 0.02935813181102276, -0.06552290916442871, -0.013058009557425976, -0.0010053233709186316, -0.026599649339914322, 0.018001781776547432, -0.035806529223918915, 0.029429780319333076, -0.012448993511497974, -0.03501839190721512, -0.04911531135439873, -0.0007304828031919897, -0.06971436738967896, -0.05327094718813896, -0.037902262061834335, 0.031274739652872086, 0.0003733578778337687, 0.04463725537061691, -0.006582741159945726, 0.04829134792089462, 0.020151248201727867, -0.007876899093389511, 0.017133040353655815, -0.022838082164525986, -0.014446206390857697, 0.028444606810808182, 0.02373369410634041, 0.08418744057416916, -0.09257035702466965, 0.005199022125452757, 0.020867738872766495, -0.01369389332830906, 0.03562740981578827, 0.013308780267834663, -0.013550595380365849, 0.024109849706292152, -0.04241614043712616, 0.007102195639163256, 0.02036619558930397, -0.0041735474951565266, -0.03553784638643265, -0.0005978203844279051, 0.017930133268237114, -0.01630907692015171 ]
23,347
parutils.csvl
save_csv
Saves a list to a csv file - mode: mode for the open methode. - quote: determines whether each field should be wrapped into double quotes or not (default=False)
def save_csv(array_in, out_path, mode='w', quote=False): """Saves a list to a csv file - mode: mode for the open methode. - quote: determines whether each field should be wrapped into double quotes or not (default=False) """ import os.path as p file.mkdirs(p.dirname(out_path)) with open(out_path, mode, encoding='utf-8') as out_file: for row in array_in: write_csv_line(row, out_file, quote)
(array_in, out_path, mode='w', quote=False)
[ -0.03158697113394737, 0.04639933630824089, -0.04244011268019676, -0.00421752966940403, 0.013614176772534847, 0.0007846818771213293, -0.057894978672266006, -0.012789337895810604, -0.004571341909468174, 0.00776216434314847, -0.002891276031732559, -0.023581698536872864, 0.026776861399412155, 0.010358234867453575, 0.003032366745173931, 0.022348782047629356, 0.05084478110074997, -0.017078498378396034, 0.040738340467214584, 0.09168730676174164, 0.02210567146539688, -0.012224975042045116, -0.037056952714920044, -0.03723060339689255, 0.03695276379585266, -0.02967682108283043, 0.03057980164885521, 0.044384993612766266, 0.002155433176085353, 0.020021868869662285, -0.030301962047815323, 0.02696787752211094, -0.00002519962981750723, -0.011434866115450859, 0.0061862887814641, -0.02340804785490036, 0.014352189376950264, 0.03368813917040825, 0.005131363868713379, -0.008048687130212784, -0.011183073744177818, -0.02662057615816593, 0.01847638189792633, 0.03782101720571518, 0.008187606930732727, 0.016080008819699287, -0.057825520634651184, -0.01889314316213131, -0.008482812903821468, -0.039418596774339676, 0.02436312474310398, -0.03196900337934494, -0.0027306494303047657, 0.043898772448301315, -0.0530327744781971, -0.0044107153080403805, 0.03730006515979767, -0.001505330204963684, -0.008248385041952133, -0.04358620196580887, 0.002153262495994568, 0.00015777749649714679, 0.06456314772367477, 0.012242339551448822, 0.046121496707201004, 0.08265750110149384, -0.05101843178272247, 0.010401647537946701, 0.012407307513058186, 0.03455639258027077, 0.005539441481232643, -0.02203621156513691, 0.023060748353600502, 0.0369180329144001, 0.024901440367102623, 0.04865678772330284, -0.03778628632426262, -0.02154999040067196, -0.04108563810586929, -0.009333699010312557, -0.019049428403377533, 0.008244043216109276, 0.05212979391217232, 0.049802880734205246, 0.004475834313780069, -0.005999614484608173, 0.01941409334540367, 0.05053221061825752, -0.007927131839096546, 0.05140046030282974, -0.022192496806383133, 0.03455639258027077, -0.006998103577643633, -0.005287648644298315, -0.023147573694586754, -0.03136122599244118, -0.015663249418139458, 0.011617198586463928, -0.04146767035126686, -0.011148343794047832, -0.0031886519864201546, -0.011200438253581524, 0.06893913447856903, -0.01800752617418766, -0.031274404376745224, -0.09161785244941711, 0.015593788586556911, 0.022661352530121803, 0.03830723464488983, -0.014994695782661438, -0.05296331271529198, 0.06692478805780411, 0.0441766120493412, -0.010288774967193604, 0.009047175757586956, -0.01014985516667366, 0.016305753961205482, -0.05275493487715721, 0.017599448561668396, -0.01976139284670353, 0.06313921511173248, -0.006563977804034948, -0.015368043445050716, -0.028634918853640556, 0.06272245198488235, -0.02615172229707241, 0.03604978322982788, 0.00869553443044424, 0.04323890060186386, -0.005335402674973011, -0.0012274899054318666, -0.02347750775516033, 0.05077531933784485, -0.04709393531084061, 0.023998457938432693, 0.008573979139328003, 0.0029563948046416044, -0.024467313662171364, -0.027367273345589638, -0.02158472128212452, 0.008712898939847946, -0.08168505877256393, -0.020056599751114845, -0.020976945757865906, 0.055672258138656616, -0.013605494052171707, 0.0026004118844866753, -0.027158891782164574, 0.019952408969402313, -0.054630354046821594, -0.036744385957717896, 0.014916553162038326, -0.06289610266685486, -0.0728636309504509, 0.02747146226465702, -0.025491850450634956, -0.018233271315693855, 0.036709655076265335, -0.013266876339912415, -0.024571504443883896, 0.018823683261871338, 0.07869827747344971, -0.06216677650809288, 0.0844634622335434, -0.013327653519809246, 0.0648062601685524, -0.011183073744177818, 0.032646238803863525, -0.027384638786315918, -0.02471042424440384, 0.04511432349681854, -0.056089017540216446, 0.01376177929341793, 0.013093225657939911, -0.07453066855669022, 0.03283725306391716, 0.00710663478821516, 0.019014697521924973, 0.022765541449189186, 0.029121140018105507, 0.010809725150465965, 0.01889314316213131, 0.043898772448301315, 0.06800141930580139, 0.020924849435687065, 0.016010548919439316, -0.0000915733544388786, -0.07258578389883041, 0.0649799108505249, 0.015576424077153206, -0.010054347105324268, 0.0029520534444600344, -0.021897291764616966, -0.031187577173113823, -0.013831239193677902, -0.06213204562664032, -0.028930123895406723, -0.0034382741432636976, -0.014760267920792103, 0.061958394944667816, -0.021376341581344604, 0.019084157422184944, 0.042579032480716705, -0.0812682956457138, 0.043030522763729095, 0.05858958140015602, 0.003755185753107071, -0.05393575504422188, -0.013805191963911057, 0.021428436040878296, 0.06129852309823036, -0.008508860133588314, 0.004801428411155939, -0.013978841714560986, 0.06664694845676422, 0.09453517198562622, -0.04758015647530556, 0.03830723464488983, -0.009724412113428116, -0.00880406517535448, -0.03879345580935478, 0.024606235325336456, -0.013727049343287945, 0.019032062962651253, 0.03283725306391716, -0.021706275641918182, 0.023269128054380417, 0.0004118765937164426, 0.03243785724043846, -0.015107568353414536, -0.019900314509868622, 0.019587744027376175, -0.017903337255120277, -0.012962987646460533, -0.06807088106870651, -0.030979197472333908, 0.009594174101948738, -0.015142298303544521, -0.018181176856160164, -0.003735650097951293, -0.0032298939768224955, -0.019240442663431168, -0.01170402392745018, -0.07501689344644547, 0.01739106886088848, -0.024606235325336456, -0.025005629286170006, 0.006915619596838951, -0.021272150799632072, -0.009863331913948059, 0.03236839920282364, -0.0011341528734192252, -0.023112842813134193, -0.033115096390247345, 0.0026655306573957205, -0.07439175248146057, -0.03460848703980446, 0.000015660738426959142, -0.06077757477760315, -0.005608901847153902, -0.003431762335821986, -0.0494903102517128, 0.05952729284763336, -0.06438949704170227, -0.0074365702457726, -0.002346448367461562, -0.024849344044923782, 0.002800109563395381, 0.02469305880367756, 0.01643599197268486, 0.0007911937427707016, 0.04080779850482941, -0.06456314772367477, -0.026863686740398407, -0.04428080469369888, 0.004710261709988117, -0.010219315066933632, 0.005291990004479885, -0.02886066399514675, 0.013909381814301014, -0.01507283840328455, 0.018597938120365143, -0.008934303186833858, -0.0016768098575994372, -0.029381616041064262, 0.008838796056807041, -0.037543173879384995, 0.03643181547522545, -0.024432584643363953, 0.0316043384373188, -0.011200438253581524, 0.037161145359277725, -0.0030171724501997232, 0.03139595687389374, 0.005791234318166971, -0.04494067281484604, 0.039418596774339676, -0.09071487188339233, 0.05185195058584213, -0.008899573236703873, -0.03820304572582245, 0.0620625838637352, 0.07341931015253067, -0.010106442496180534, -0.0691475123167038, -0.01191240455955267, -0.04671190679073334, -0.02071646973490715, -0.029329519718885422, 0.05945783108472824, 0.01625365950167179, -0.0002219466696260497, -0.04219700023531914, 0.05122681334614754, -0.012884845957159996, 0.07397498935461044, -0.03889764845371246, -0.04178024083375931, -0.018320096656680107, -0.038098856806755066, -0.029433710500597954, -0.04681609570980072, 0.05897160992026329, -0.02830498479306698, 0.012112102471292019, -0.021445801481604576, 0.00017663482867646962, 0.027610383927822113, -0.01328424084931612, 0.02649902179837227, 0.04632987454533577, 0.01930990256369114, -0.013188733719289303, 0.032194748520851135, 0.07043252140283585, 0.012910893186926842, 0.00538749760016799, -0.04327363148331642, -0.01393542904406786, 0.0007564637344330549, -0.027124162763357162, 0.014847093261778355, -0.04407242313027382, 0.020560184493660927, -0.11363669484853745, 0.01891050860285759, -0.029954660683870316, 0.0712660476565361, 0.028964854776859283, 0.03726533427834511, 0.0902981087565422, 0.017747052013874054, -0.011834261938929558, 0.12523652613162994, -0.028582824394106865, 0.012146832421422005, -0.0224877018481493, -0.020785929635167122, -0.01123516820371151, -0.004028684925287962, 0.024449950084090233, -0.052859123796224594, 0.08599158376455307, 0.01983085460960865, 0.04817056655883789, 0.048795707523822784, 0.0028283277060836554, -0.009351063519716263, 0.02066437527537346, -0.002739332150667906, -0.029833106324076653, 0.037126414477825165, 0.08404669910669327, -0.027801398187875748, -0.009594174101948738, 0.05001125857234001, -0.015402773395180702, 0.02528347074985504, -0.009394476190209389, 0.010540567338466644, -0.04059942066669464, -0.04997653141617775, 0.03914075717329979, -0.005335402674973011, 0.020907485857605934, -0.02333858795464039, -0.0005282764905132353, 0.03601505234837532, -0.05987459048628807, -0.048378948122262955, -0.022626621648669243, 0.047059208154678345, -0.011981864459812641, -0.06664694845676422, -0.019935043528676033, -0.019605109468102455, 0.017677592113614082, 0.029121140018105507, -0.04504486545920372, 0.039001837372779846, -0.02752355858683586, 0.005548124201595783, -0.0251445509493351, 0.011113612912595272, -0.07633662968873978, 0.02026497945189476, -0.03367077559232712, 0.03294144570827484, 0.038133587688207626, -0.035737212747335434, 0.01665305532515049, 0.02332122251391411, 0.05001125857234001, 0.01415249239653349, -0.017903337255120277, 0.05570698529481888, -0.07730907201766968, -0.0345737561583519, 0.023199668154120445, 0.024675695225596428, -0.022348782047629356, 0.008118147030472755, -0.04942084848880768, 0.023928998038172722, -0.0057347980327904224, -0.0314306877553463, 0.025075091049075127, 0.0748085081577301, 0.04000900685787201, -0.001680065761320293, -0.003931006416678429, -0.007354086264967918, -0.05907580256462097, -0.07071036845445633, -0.011808213777840137, 0.0406341478228569, 0.023078111931681633, -0.010063029825687408, -0.020160788670182228, 0.01842428743839264, 0.011643246747553349, 0.01838955655694008, -0.025804420933127403, -0.024866709485650063, 0.00993279181420803, -0.009785189293324947, 0.013996207155287266, 0.0012535374844446778, 0.05570698529481888, 0.023251762613654137, 0.03499051555991173, 0.014838410541415215, 0.039835356175899506, -0.06709843873977661, 0.01885841228067875, -0.03012831136584282, 0.053831566125154495, -0.04955976828932762, 0.04650352522730827, -0.019118888303637505, 0.09870278090238571, 0.04091198742389679, 0.0604650042951107, -0.05584590882062912, 0.03203846514225006, -0.036605462431907654, -0.06602180749177933, 0.007592855487018824, 0.05146992206573486, -0.05442197620868683, -0.007462617941200733, 0.019587744027376175, -0.023720618337392807, 0.003720455802977085, 0.015116251073777676, 0.01979612372815609, -0.011643246747553349, 0.025995437055826187, -0.02873910963535309, 0.01581953465938568, -0.018215907737612724, -0.08710294216871262, -0.040738340467214584, 0.022261956706643105, 0.0883532240986824, 0.017903337255120277, 0.019987139850854874, -0.06244461610913277, -0.011747436597943306, 0.02528347074985504, 0.018215907737612724, 0.0015487427590414882, -0.005956202279776335, -0.08724186569452286, 0.07182172685861588, 0.04056468978524208, -0.007588514126837254, 0.03677911311388016, -0.045739464461803436, 0.00420450558885932, 0.03158697113394737, 0.0024571504909545183, -0.06449368596076965, -0.06171528249979019, 0.0025808762293308973, 0.007527736481279135, 0.014812362380325794, -0.052025601267814636, -0.08550536632537842, -0.0206296443939209, -0.028478633612394333, 0.03344503045082092, -0.007076246198266745, 0.0017712321132421494, 0.02332122251391411, 0.010366917587816715, -0.052407633513212204, -0.03238576278090477, -0.02029971033334732, 0.04955976828932762, -0.019535647705197334, 0.019223077222704887, -0.05886742100119591, -0.0028977878391742706, -0.049316659569740295, 0.022435607388615608, 0.030284596607089043, 0.04726758599281311, -0.0006647547124885023, 0.020386533811688423, 0.004282648209482431, -0.00994147453457117, -0.032142654061317444, 0.007132682483643293, 0.0251445509493351, 0.03598032146692276, 0.026308007538318634, 0.03969643637537956, 0.09550761431455612, 0.02613435685634613, -0.042474839836359024, 0.016713833436369896, -0.004037367179989815, 0.015724025666713715, -0.031743258237838745, 0.038098856806755066, -0.01891050860285759, -0.024415219202637672, 0.03104865737259388, -0.014699489809572697, 0.031257037073373795, 0.022261956706643105, 0.04723285511136055, -0.01733897253870964, 0.03559829294681549, -0.01688748225569725, 0.04011319950222969, -0.009724412113428116, -0.03016304038465023, 0.0067506516352295876, -0.012398624792695045, -0.003935347776859999, -0.031204942613840103, -0.0008129000198096037, 0.05032382905483246, 0.0027480146382004023, 0.014265364967286587, 0.0449754036962986, -0.008200631476938725, -0.014690808020532131, 0.02201884612441063, 0.008252725936472416, -0.04716339707374573, -0.0467466376721859, 0.018788952380418777, -0.038585077971220016, -0.001454320503398776, 0.006464128848165274, -0.014794997870922089, -0.04139820858836174, -0.018563207238912582, 0.022869732230901718, -0.09634113311767578, -0.013067178428173065, 0.032611507922410965, -0.05101843178272247, -0.0014141638530418277, 0.009628904052078724, -0.017582083120942116, 0.041571859270334244, -0.010557932779192924, 0.04403769224882126, 0.016574911773204803, -0.029937295243144035, 0.012146832421422005, -0.030840277671813965, -0.05039329081773758, -0.0059865908697247505, -0.007571149151772261, -0.013501303270459175, -0.03695276379585266, -0.043447282165288925, -0.009229508228600025, 0.019205713644623756, -0.03386178985238075, -0.04000900685787201, -0.04410715401172638, -0.11787375807762146, -0.039870087057352066, 0.05813809111714363, -0.049281928688287735, 0.043482013046741486, 0.0025027336087077856, -0.05060167238116264, -0.028478633612394333, 0.039835356175899506, -0.02469305880367756, -0.005274625029414892, 0.019483553245663643, 0.0006750652100890875, 0.036709655076265335, -0.0324031300842762, 0.060117702931165695, -0.029972026124596596, -0.06682059913873672, -0.012520180083811283, -0.052893854677677155, 0.002409396693110466, 0.012077371589839458, -0.022869732230901718, -0.008283114992082119, -0.013431843370199203, 0.06553559005260468, -0.01553301140666008, 0.004330402240157127, -0.0126156872138381, -0.07071036845445633, -0.013318970799446106, 0.011617198586463928, 0.0018927872879430652, 0.008582661859691143, 0.028218159452080727, 0.028096603229641914, -0.017330290749669075, -0.022227225825190544, -0.04605203494429588, -0.00993279181420803, -0.04372512176632881, -0.020004503428936005, -0.04455864429473877, -0.035355184227228165, 0.09925846010446548, -0.036605462431907654, 0.010036981664597988, -0.009403158910572529, -0.05390102416276932, 0.025561310350894928, 0.046607717871665955, 0.05098370090126991, -0.0068244533613324165, 0.04549635574221611, -0.014786315150558949, 0.0009377111564390361, -0.04424607381224632, -0.028027143329381943, -0.0345737561583519, 0.018615301698446274, 0.052477091550827026, -0.005009808577597141, -0.02300865203142166, -0.011113612912595272, 0.0008470874163322151, 0.026898417621850967, 0.002817474538460374, 0.034452199935913086, -0.02616908587515354, -0.014699489809572697, 0.006086439825594425, 0.021497895941138268, 0.008873526006937027, -0.0083004804328084, 0.02573496103286743, 0.06880021095275879, -0.0010299627901986241, 0.04007846862077713, 0.029572630301117897, 0.030058851465582848, 0.03410490229725838, -0.013232145458459854, 0.008773677051067352, -0.0029194941744208336, 0.030423516407608986, -0.019275173544883728, -0.04962923005223274, 0.06650803238153458, -0.016375213861465454, 0.007171753793954849, 0.050219640135765076, 0.004567000549286604, 0.03566775470972061, -0.0017734027933329344, 0.01937936246395111, 0.061541635543107986, 0.022817637771368027, 0.011009423062205315, -0.06970319151878357, -0.011625881306827068, 0.009576808661222458, 0.013058495707809925, -0.02259189262986183, -0.015689296647906303, 0.006134193856269121, 0.032194748520851135, 0.016522817313671112, -0.029051680117845535, -0.008925620466470718, 0.008587002754211426, -0.0057608457282185555, 0.019084157422184944, -0.03370550647377968, 0.019535647705197334, -0.003303695237264037, 0.020612278953194618, -0.014647395350039005, -0.07578095048666, -0.056471046060323715, -0.0622362345457077, 0.04664244502782822, 0.042995791882276535, 0.003175628138706088, -0.06890439987182617, 0.03380969539284706, -0.027888223528862, 0.08279641717672348, -0.013553398661315441, 0.029607361182570457, -0.050219640135765076, -0.013379748910665512, -0.016774609684944153, 0.022366147488355637, 0.007397498935461044, 0.020803295075893402, 0.08494967967271805, 0.014274046756327152, 0.013154003769159317, 0.003299353877082467, 0.03426118567585945, -0.029416345059871674, -0.014465061947703362, -0.003173457458615303, 0.006155899725854397, 0.015854263678193092, -0.03478213772177696, 0.016609642654657364, 0.03209055960178375, 0.011608516797423363, 0.015220440924167633, -0.014465061947703362, -0.04678136482834816, 0.006520565133541822, -0.0009876355761662126, 0.08745024353265762, -0.029867835342884064, 0.015359360724687576, 0.03563302382826805, 0.028964854776859283, -0.00474499212577939, -0.06883494555950165 ]
23,348
parutils.file
save_list
Saves a list in a file, each element representing a line
def save_list(in_list, out_path, mode='w'): """Saves a list in a file, each element representing a line""" mkdirs(p.dirname(out_path)) with open(out_path, mode, encoding='utf-8') as out_file: for elt in in_list: s = str(elt).strip('\n') + '\n' out_file.write(s)
(in_list, out_path, mode='w')
[ -0.02188323251903057, 0.015475581400096416, -0.06656885892152786, 0.008502289652824402, 0.03222385421395302, 0.019567640498280525, -0.05157937854528427, 0.009112121537327766, 0.000691031978931278, 0.035582348704338074, -0.011012321338057518, -0.058862004429101944, -0.01051738578826189, 0.01111837849020958, 0.05578633397817612, 0.022784722968935966, 0.04670072719454765, -0.05461969971656799, -0.014812720939517021, 0.035688403993844986, 0.018807560205459595, -0.0051437970250844955, 0.0006976606091484427, 0.026514416560530663, 0.03176427260041237, -0.03987768292427063, 0.07024552673101425, 0.01856009103357792, -0.014353137463331223, 0.040478676557540894, 0.0006280602538026869, 0.005992258433252573, 0.018153537064790726, -0.03008502535521984, 0.01829494722187519, 0.028423454612493515, -0.028776980936527252, 0.034910649061203, -0.02497658133506775, -0.008842557668685913, -0.006169021129608154, 0.021759498864412308, 0.014980645850300789, 0.06331642717123032, 0.010764853097498417, 0.03994838893413544, -0.03948880359530449, 0.020787302404642105, 0.05606915429234505, -0.017490677535533905, -0.01008431613445282, -0.022484226152300835, -0.0405140295624733, -0.00033363973489031196, -0.03291323035955429, -0.011242113076150417, 0.05062485858798027, -0.002865766640752554, 0.02725682035088539, -0.01997419446706772, -0.032966259866952896, -0.015449066646397114, 0.04486239328980446, -0.057836782187223434, 0.01584678329527378, 0.06013469770550728, -0.08816927671432495, -0.018595444038510323, 0.008016192354261875, 0.014149860478937626, 0.006239726208150387, -0.05974581837654114, 0.005378007423132658, 0.029148181900382042, 0.02478214167058468, 0.049246110022068024, 0.00009915287228068337, 0.014264755882322788, -0.013743306510150433, -0.009978258982300758, -0.045392680913209915, 0.006385555490851402, 0.031446099281311035, 0.04779665544629097, 0.007896876893937588, -0.01433546096086502, 0.054831814020872116, 0.044827040284872055, -0.010013611055910587, 0.01932017132639885, 0.005837590899318457, 0.04309476539492607, -0.040301915258169174, -0.01707528531551361, -0.051437970250844955, -0.03386774659156799, -0.008789529092609882, -0.01560815330594778, -0.0226433128118515, 0.014317785389721394, -0.025789689272642136, 0.031251657754182816, -0.02225443348288536, -0.014538738876581192, -0.014998321421444416, -0.06282149255275726, 0.018259594216942787, 0.01866615004837513, 0.0073533314280211926, 0.026814913377165794, -0.03885245695710182, 0.031994063407182693, 0.04684213548898697, -0.02365086041390896, 0.015060189180076122, -0.009218178689479828, -0.01592632569372654, -0.03782723471522331, 0.0660385712981224, -0.05447828769683838, 0.02867092192173004, -0.03319605067372322, -0.0753716453909874, 0.00002629001028253697, 0.023438744246959686, -0.0179060697555542, 0.04967034235596657, 0.024022061377763748, 0.048220887780189514, -0.010128507390618324, -0.022554930299520493, 0.041044317185878754, 0.019567640498280525, -0.0048212045803666115, 0.03818076103925705, -0.05575098097324371, -0.06469517946243286, -0.05168543756008148, 0.0134428096935153, -0.036802008748054504, 0.01688968390226364, -0.07459389418363571, 0.004547222517430782, 0.04118572920560837, -0.0055768657475709915, -0.027009353041648865, 0.007419617846608162, -0.011807753704488277, 0.013928906992077827, 0.005378007423132658, 0.007379846181720495, 0.018171213567256927, -0.08173511177301407, -0.07017482072114944, 0.010853234678506851, -0.020663568750023842, -0.025135667994618416, -0.011197921819984913, 0.0216711163520813, -0.0348929725587368, -0.017764659598469734, 0.05111979693174362, 0.0010826720390468836, 0.06526082009077072, -0.007043996825814247, 0.022855427116155624, -0.008612766861915588, 0.005386845674365759, 0.0047328234650194645, 0.004511869978159666, 0.04698354750871658, -0.07144751399755478, -0.034839943051338196, 0.025789689272642136, -0.09856292605400085, -0.0038954096380621195, 0.010897425003349781, -0.0017521610716357827, 0.026797236874699593, 0.019161084666848183, -0.03443339094519615, -0.02405741438269615, 0.004454421810805798, 0.036908067762851715, -0.009589380584657192, 0.0575186088681221, -0.02987290918827057, -0.023739241063594818, 0.03641313314437866, -0.013566543348133564, -0.017490677535533905, 0.0067876907996833324, -0.023244304582476616, -0.07028087973594666, -0.06625068932771683, -0.024958904832601547, -0.024092767387628555, -0.016164956614375114, -0.01999187096953392, 0.029908262193202972, -0.011418875306844711, 0.01154260989278555, 0.05069556459784508, -0.04687748849391937, 0.04422604665160179, 0.05366517975926399, -0.06674562394618988, -0.02497658133506775, 0.004922843538224697, 0.021335266530513763, 0.043236177414655685, -0.019019674509763718, -0.05221572518348694, -0.03330210596323013, 0.06833648681640625, 0.0010379289742559195, -0.10252241045236588, 0.050872329622507095, 0.0006341364933177829, -0.04175136983394623, -0.0499885156750679, 0.018701501190662384, -0.052003610879182816, 0.03598890081048012, -0.023438744246959686, -0.03924133628606796, 0.00924469344317913, 0.0024945647455751896, 0.04949357733130455, 0.010950454510748386, -0.016332881525158882, -0.01163982879370451, 0.004560479894280434, 0.025665955618023872, -0.049811750650405884, -0.030686018988490105, -0.036448486149311066, -0.03119863010942936, -0.04754918813705444, 0.013345589861273766, -0.03938274830579758, -0.026832589879631996, 0.017746983096003532, -0.05005921795964241, 0.007291464600712061, 0.040301915258169174, -0.005355912260711193, -0.022325139492750168, -0.016659891232848167, 0.02377459406852722, 0.0632103681564331, 0.039453450590372086, -0.004465469624847174, -0.013743306510150433, 0.02660279907286167, -0.0054354555904865265, -0.0211938563734293, -0.025188695639371872, -0.030332492664456367, -0.015546286478638649, 0.005952486768364906, -0.039453450590372086, 0.03736765310168266, -0.045286625623703, 0.0348576195538044, -0.006403231527656317, -0.01877220720052719, 0.0357944630086422, 0.00970427691936493, 0.0013743306044489145, 0.041998837143182755, 0.0075566088780760765, -0.024570025503635406, -0.006266240496188402, -0.04440281167626381, 0.012170117348432541, 0.017092959955334663, 0.019214114174246788, -0.02660279907286167, 0.011242113076150417, 0.012152440845966339, 0.06013469770550728, -0.019549963995814323, 0.01620914600789547, -0.015581638552248478, 0.027398230507969856, 0.008100153878331184, 0.017861878499388695, 0.00010757672134786844, -0.016377070918679237, 0.05684690922498703, 0.04496845230460167, 0.015201599337160587, -0.01734042912721634, 0.013522353023290634, -0.006633023265749216, 0.015546286478638649, -0.06943242251873016, 0.03439803794026375, -0.015988193452358246, -0.010658795945346355, 0.029660794883966446, 0.06239726021885872, -0.036448486149311066, -0.02319127693772316, -0.052357133477926254, -0.04157460480928421, 0.0009788238676264882, -0.03602425381541252, 0.006708147469907999, 0.0024658406618982553, 0.003265692386776209, -0.02810528129339218, 0.0565640889108181, -0.0062264688313007355, 0.04118572920560837, -0.038322169333696365, -0.014308947138488293, -0.017375780269503593, -0.008599509485065937, -0.011710533872246742, -0.0004178782692179084, 0.050872329622507095, 0.012859492562711239, 0.055291395634412766, -0.04475633427500725, 0.023438744246959686, 0.05447828769683838, 0.02358015440404415, 0.02386297471821308, 0.02319127693772316, -0.05419546738266945, -0.0414685495197773, 0.0311102494597435, 0.018895940855145454, 0.002091324655339122, 0.043412938714027405, -0.00948332343250513, -0.003172891912981868, -0.018171213567256927, -0.0029607764445245266, 0.03126933425664902, -0.05352376773953438, 0.0301557295024395, -0.07218991965055466, 0.027097733691334724, 0.00619553541764617, 0.07487671077251434, -0.012603186070919037, 0.08032100647687912, 0.021335266530513763, 0.012240822426974773, 0.02131759189069271, 0.06458912044763565, 0.024163471534848213, 0.04259983077645302, -0.04535732790827751, -0.007976420223712921, 0.00923585519194603, -0.019567640498280525, -0.006783271674066782, -0.048680469393730164, 0.04754918813705444, 0.003882152494043112, 0.009633571840822697, 0.0012329203309491277, 0.01641242392361164, -0.004944938700646162, 0.08215934038162231, 0.01211708877235651, -0.049917809665203094, -0.01912573352456093, 0.04581691324710846, -0.03924133628606796, 0.025860395282506943, 0.048326943069696426, 0.00848019402474165, -0.006933520082384348, -0.007331236265599728, 0.04560479521751404, -0.06158415228128433, -0.007905715145170689, 0.06716985255479813, -0.037473708391189575, 0.038145408034324646, -0.0075698657892644405, 0.016253337264060974, 0.02027469128370285, -0.020150957629084587, -0.052180372178554535, -0.04175136983394623, 0.07095257937908173, 0.0025674793869256973, -0.04815018177032471, -0.028494160622358322, -0.03282484784722328, 0.02941332571208477, 0.05119049921631813, 0.0026028319261968136, 0.03998374193906784, -0.012276175431907177, 0.006973291747272015, -0.041998837143182755, 0.025807365775108337, -0.05578633397817612, 0.021282238885760307, -0.04500380530953407, 0.0207519493997097, 0.04546338692307472, -0.0330192856490612, 0.001995209837332368, -0.004021353088319302, 0.03468085825443268, -0.02225443348288536, 0.021759498864412308, 0.09170453250408173, -0.08781574666500092, -0.026832589879631996, 0.021706469357013702, -0.04309476539492607, -0.04291800409555435, 0.028989095240831375, 0.014132183976471424, 0.06303361058235168, -0.010110830888152122, -0.06819508224725723, 0.00815760251134634, 0.05532674863934517, 0.008891168050467968, 0.029095154255628586, 0.029360298067331314, -0.06275078654289246, -0.05119049921631813, -0.0481148287653923, 0.000417602073866874, -0.00900606345385313, 0.02479981817305088, -0.0764322280883789, -0.030208759009838104, -0.006023191846907139, 0.021352943032979965, 0.0461704395711422, 0.01268272940069437, 0.04655931517481804, 0.044650278985500336, 0.03072137013077736, -0.04348364472389221, -0.024163471534848213, 0.0857653021812439, 0.02025701478123665, -0.0230852197855711, -0.015095541253685951, 0.01601470820605755, -0.03307231515645981, 0.00683188159018755, -0.040584735572338104, 0.03167589008808136, -0.067912258207798, 0.03825146704912186, 0.003199406201019883, 0.08944196254014969, 0.036236368119716644, 0.09919927269220352, -0.02458770200610161, 0.03537023067474365, -0.03743835538625717, -0.09955279529094696, 0.07325049489736557, 0.04390787333250046, -0.004984710365533829, -0.02205999568104744, 0.0036368942819535732, -0.04083220288157463, -0.008869072422385216, 0.04797341674566269, 0.033797044306993484, 0.019549963995814323, -0.008299012668430805, -0.013911230489611626, -0.009447970427572727, -0.028140634298324585, -0.062079086899757385, -0.01550209615379572, 0.007534513249993324, 0.001904618926346302, -0.021070122718811035, -0.004958196077495813, -0.036731306463479996, -0.01827727071940899, 0.0013688068138435483, 0.03441571444272995, -0.04532197490334511, -0.0127269197255373, -0.0866844654083252, 0.016447776928544044, 0.0082548214122653, -0.0650840550661087, 0.0015102169709280133, -0.018118184059858322, -0.011427713558077812, -0.005329397972673178, -0.02423417754471302, -0.005386845674365759, -0.008073640055954456, 0.033797044306993484, 0.08852279931306839, -0.029466355219483376, 0.00263818446546793, -0.06632139533758163, -0.0001951295416802168, 0.012329204007983208, 0.019496934488415718, 0.01866615004837513, 0.014786206185817719, -0.023703888058662415, 0.02612553909420967, -0.04836229607462883, 0.01969137415289879, -0.0012660634238272905, 0.05253389850258827, -0.049069348722696304, 0.011560285463929176, -0.02405741438269615, -0.025860395282506943, -0.028229014948010445, 0.042458418756723404, 0.006451841443777084, 0.027698727324604988, 0.011162569746375084, 0.0923408791422844, -0.011012321338057518, 0.020221661776304245, -0.011993354186415672, -0.03185265138745308, 0.023244304582476616, 0.028635570779442787, 0.03743835538625717, -0.0001862913923105225, 0.1319357454776764, -0.009783820249140263, -0.012196632102131844, -0.043801818042993546, -0.03270111232995987, -0.03217082470655441, -0.015793753787875175, 0.05493787303566933, 0.006823043338954449, -0.03835752233862877, -0.011418875306844711, -0.014503385871648788, 0.024481644853949547, -0.026090186089277267, 0.018073994666337967, -0.0012174536241218448, 0.027398230507969856, -0.08329062163829803, 0.03906457498669624, 0.00820179283618927, -0.025665955618023872, 0.0030513673555105925, -0.0386756956577301, 0.013610733672976494, -0.03683736175298691, 0.014777367934584618, 0.02704470604658127, 0.008935358375310898, -0.040867555886507034, -0.007945487275719643, 0.023703888058662415, 0.005545932333916426, 0.07805844396352768, 0.02158273570239544, 0.02902444824576378, -0.07989677786827087, 0.0025939936749637127, -0.044155340641736984, 0.033125344663858414, -0.00298066227696836, 0.028900714591145515, -0.05408941209316254, -0.03722624108195305, -0.009447970427572727, -0.059144824743270874, -0.03856963664293289, 0.05872059613466263, -0.006310431286692619, 0.003473388496786356, 0.020027222111821175, -0.07176569104194641, 0.05461969971656799, -0.017181342467665672, 0.06550828367471695, 0.022413520142436028, -0.025683632120490074, 0.011772400699555874, -0.08463402092456818, -0.006306012161076069, -0.004622346721589565, 0.0015455695101991296, -0.03165821358561516, -0.027486613020300865, -0.025789689272642136, -0.028600217774510384, 0.05320559814572334, 0.020416101440787315, -0.04846835508942604, -0.002631555777043104, -0.08908843994140625, -0.031340040266513824, 0.059427645057439804, -0.022749369964003563, 0.0933307483792305, 0.0329839363694191, -0.0726141482591629, -0.02941332571208477, 0.028211340308189392, 0.02950170822441578, 0.010897425003349781, 0.015422552824020386, 0.014591767452657223, 0.06865466386079788, -0.01504251267760992, 0.04684213548898697, -0.012930197641253471, -0.025471515953540802, 0.008338783867657185, -0.03563537448644638, 0.01820656657218933, 0.043518997728824615, -0.06335178017616272, -0.004405812360346317, -0.005492903292179108, -0.03556467220187187, 0.02867092192173004, 0.02780478447675705, -0.006588832475244999, -0.02487052232027054, -0.04235236346721649, -0.004653280135244131, -0.0005142692243680358, -0.00544429337605834, -0.02062821574509144, -0.002865766640752554, -0.052746012806892395, -0.013460485264658928, -0.0009992620907723904, 0.01573188789188862, -0.03552931919693947, 0.0027442420832812786, -0.0017068656161427498, -0.03404451161623001, 0.07883620262145996, -0.029572412371635437, 0.03828681632876396, 0.03895851597189903, 0.03825146704912186, 0.07141216099262238, -0.012081735767424107, 0.02225443348288536, -0.005302883218973875, 0.002457002643495798, 0.015723049640655518, -0.012285012751817703, -0.03736765310168266, -0.031092572957277298, 0.004180439747869968, -0.03234758973121643, 0.08512895554304123, 0.011710533872246742, -0.04263518378138542, -0.0007805181667208672, -0.024463968351483345, 0.01896664686501026, 0.00815760251134634, 0.043589700013399124, -0.07031623274087906, -0.015201599337160587, 0.022201405838131905, 0.03471621125936508, 0.00928004551678896, -0.013937745243310928, 0.0005592884845100343, 0.055574215948581696, -0.047655243426561356, 0.0014881216920912266, 0.03658989444375038, 0.0012240821961313486, 0.023332687094807625, -0.026319976896047592, 0.05362982675433159, -0.06914959847927094, -0.030615312978625298, -0.028547188267111778, -0.0415038987994194, 0.047655243426561356, -0.003937391098588705, 0.004790271166712046, 0.06833648681640625, 0.02188323251903057, -0.009067930281162262, -0.033991482108831406, 0.04192813113331795, 0.03160518407821655, 0.03468085825443268, 0.03765047341585159, -0.06172556057572365, -0.030898133292794228, -0.019161084666848183, -0.039559509605169296, -0.024304881691932678, 0.019850460812449455, 0.01827727071940899, 0.03514043986797333, -0.020663568750023842, 0.005550351459532976, -0.04670072719454765, 0.05819030851125717, -0.024941228330135345, 0.003566188970580697, -0.04231701046228409, 0.044827040284872055, -0.006398812402039766, 0.018436357378959656, -0.06872536987066269, -0.06628604233264923, -0.0801088884472847, -0.0377211757004261, -0.015113217756152153, -0.01566118188202381, 0.03849893435835838, -0.04945822432637215, 0.040761496871709824, -0.005302883218973875, 0.038039349019527435, 0.0230852197855711, 0.021794850006699562, -0.029059801250696182, -0.011418875306844711, -0.024393264204263687, 0.01914340816438198, 0.06059427931904793, 0.010959291830658913, 0.04655931517481804, 0.01753486692905426, -0.0047328234650194645, 0.004319640342146158, 0.0622558519244194, -0.016651052981615067, -0.02773408032953739, -0.004229049663990736, 0.04769059643149376, -0.004662118386477232, -0.04602902755141258, -0.013610733672976494, 0.05684690922498703, -0.01080020610243082, 0.07204850763082504, -0.026797236874699593, -0.008643699809908867, 0.009598218835890293, 0.03176427260041237, 0.004741661716252565, -0.027769433334469795, 0.03475156053900719, 0.012011030688881874, 0.04974104464054108, -0.03590052202343941, -0.036731306463479996 ]
23,349
parutils.logging.core
set_logger
null
def set_logger(logger): g.logger = logger
(logger)
[ -0.004054906312376261, -0.008030606433749199, -0.008329829201102257, 0.07920598238706589, -0.013905050233006477, 0.013465017080307007, -0.027141250669956207, 0.04449616000056267, -0.020646359771490097, 0.05512736365199089, 0.043792106211185455, -0.04850926250219345, 0.026630811393260956, 0.039990220218896866, -0.028954187408089638, -0.04178555682301521, -0.04861487075686455, 0.019396664574742317, 0.018006158992648125, 0.029253410175442696, 0.02173764258623123, -0.013817043974995613, 0.03333691880106926, 0.016809269785881042, -0.017689336091279984, 0.014054661616683006, -0.03358333557844162, 0.07913557440042496, 0.04829804599285126, -0.020998386666178703, -0.023708989843726158, -0.08793624490499496, -0.02142081782221794, 0.007361756172031164, 0.0035224659368395805, -0.0038700923323631287, -0.0010566298151388764, 0.027669290080666542, -0.02652520313858986, 0.019027037546038628, -0.005425609648227692, 0.0365755632519722, 0.05051581561565399, 0.011291252449154854, 0.004283723421394825, 0.0469251424074173, 0.03265046700835228, 0.06646262109279633, 0.018463794142007828, 0.028989389538764954, 0.009346306324005127, 0.0077841877937316895, -0.02791570872068405, -0.01673886366188526, -0.06287194788455963, 0.038546912372112274, 0.06565295904874802, 0.019132645800709724, -0.04998777434229851, -0.029359016567468643, -0.009003079496324062, 0.006147264502942562, 0.0040285042487084866, -0.004050505813211203, 0.01797095686197281, 0.006169266067445278, -0.00212976080365479, 0.05044541135430336, 0.0046731531620025635, -0.007652177941054106, -0.02884857915341854, -0.042912039905786514, 0.02546912431716919, -0.044425755739212036, -0.03956778720021248, 0.0302214827388525, -0.05822519585490227, 0.013526621274650097, -0.03326651081442833, 0.02085757441818714, -0.00825942400842905, 0.05382486432790756, -0.016774067655205727, 0.01757492683827877, 0.012004106305539608, -0.012831369414925575, -0.013720235787332058, 0.04696034640073776, 0.06142864003777504, -0.06716667115688324, -0.04182075709104538, 0.022512100636959076, 0.017539724707603455, -0.0028602159582078457, -0.015805993229150772, 0.0017315307632088661, 0.0010615801438689232, 0.006063657812774181, 0.012558548711240292, 0.05026939511299133, -0.05308561027050018, 0.02578594721853733, -0.0015335158677771688, -0.018129369243979454, -0.009883146733045578, -0.08709137886762619, -0.00924069806933403, -0.04988216608762741, 0.04551703855395317, 0.013553023338317871, -0.0742776095867157, 0.017460519447922707, -0.015779592096805573, 0.01892142929136753, 0.006362880580127239, 0.019185448065400124, -0.006824915297329426, -0.0022837724536657333, 0.006244071759283543, 0.0025081895291805267, -0.0674130916595459, 0.05755634605884552, -0.02509949542582035, 0.03678677976131439, 0.040236640721559525, -0.04340487718582153, 0.0365755632519722, 0.07681220024824142, 0.004778760951012373, -0.018710212782025337, 0.02759888395667076, -0.0003677027707453817, 0.004257321357727051, -0.02983425371348858, 0.033794552087783813, 0.026454798877239227, -0.10891702771186829, -0.0033860558178275824, -0.03819488361477852, 0.02029433287680149, -0.12546227872371674, -0.03120715729892254, -0.03833569586277008, -0.000839913438539952, 0.04326406866312027, 0.04938932880759239, -0.04199677333235741, 0.02883097715675831, -0.028443748131394386, 0.021139197051525116, -0.010340780951082706, -0.002541191875934601, 0.004147313069552183, -0.000777208711951971, -0.0911748856306076, -0.011247249320149422, -0.02103358879685402, 0.06596978008747101, 0.046537913382053375, -0.007273749448359013, 0.003509265137836337, -0.04361609369516373, 0.031876008957624435, 0.00460274750366807, -0.02759888395667076, -0.025257907807826996, -0.03706840053200722, 0.030256684869527817, -0.00018082615861203521, 0.02640199474990368, -0.023497775197029114, -0.028760572895407677, -0.04319366067647934, 0.011880896985530853, 0.022019263356924057, 0.044038526713848114, 0.04277123138308525, 0.00102637754753232, -0.05111426115036011, 0.04175035282969475, 0.03527306392788887, 0.023990612477064133, 0.045798659324645996, 0.06762430816888809, 0.03472742438316345, -0.02235368825495243, -0.01583239622414112, 0.004567544907331467, -0.053895268589258194, 0.054282501339912415, 0.04125751554965973, 0.0026996037922799587, -0.030538305640220642, -0.0810365229845047, 0.041046299040317535, 0.05048061162233353, -0.008325428701937199, -0.0763193666934967, -0.027880506590008736, 0.008329829201102257, 0.02872536890208721, 0.010842419229447842, -0.02516990154981613, -0.01160807628184557, 0.040799882262945175, -0.019625483080744743, 0.04069427400827408, 0.00369187886826694, -0.0034234586637467146, -0.017416514456272125, 0.037244413048028946, -0.011132840998470783, -0.04882608726620674, 0.02103358879685402, -0.025064293295145035, -0.032562460750341415, -0.04706595465540886, 0.0233569648116827, -0.019132645800709724, 0.03182320296764374, 0.01909744180738926, 0.004607148002833128, -0.03240404650568962, -0.006516891997307539, 0.007084534969180822, 0.010155967436730862, 0.046115484088659286, -0.03735002130270004, 0.022459296509623528, -0.03254485875368118, 0.016536448150873184, 0.018076565116643906, 0.004796362016350031, -0.006142864003777504, 0.026190778240561485, -0.008981077931821346, -0.01242653839290142, 0.04125751554965973, 0.009231897071003914, -0.0012452939990907907, -0.003641274990513921, 0.03235124424099922, 0.014820319600403309, 0.06780032068490982, 0.006961325649172068, 0.01885102316737175, -0.03766684606671333, 0.02316335029900074, 0.020065516233444214, 0.0400606244802475, -0.017117293551564217, -0.05273358151316643, -0.019678285345435143, 0.009038282558321953, 0.014186671003699303, 0.015163545496761799, 0.040553461760282516, 0.06364640593528748, -0.03875812888145447, -0.028514154255390167, -0.038300491869449615, 0.011968904174864292, 0.026947634294629097, -0.02578594721853733, 0.02478267252445221, 0.01501393411308527, 0.033178504556417465, -0.055162567645311356, 0.03490343689918518, 0.012690558098256588, 0.09715934097766876, 0.0559370256960392, 0.026754019781947136, 0.02615557610988617, 0.009073485620319843, -0.06347039341926575, -0.052592772990465164, -0.023057742044329643, 0.0027062043081969023, 0.08019165694713593, 0.06498410552740097, -0.02029433287680149, 0.05407128483057022, 0.05287439376115799, -0.0330376960337162, -0.0009279201040044427, 0.006486089900135994, 0.061463840305805206, -0.02615557610988617, -0.014565099962055683, -0.02078717015683651, 0.03402337059378624, -0.027510877698659897, 0.02208966761827469, -0.02921820618212223, 0.006415684707462788, -0.009267100133001804, 0.024430645629763603, 0.02311054617166519, 0.028514154255390167, 0.03490343689918518, -0.03233364224433899, 0.007951400242745876, 0.03402337059378624, 0.022828923538327217, 0.011027232743799686, -0.007969002239406109, 0.007458563428372145, 0.010481591336429119, 0.009038282558321953, -0.0016215224750339985, 0.06216789409518242, -0.05100865289568901, 0.011062435805797577, -0.003773285076022148, 0.018322983756661415, 0.012848970480263233, -0.006877719424664974, -0.01092162448912859, 0.008818265981972218, -0.02559233270585537, 0.030872732400894165, -0.05766195431351662, -0.019502272829413414, -0.0267892237752676, -0.003108834847807884, -0.004345328081399202, 0.05301520228385925, -0.04664352163672447, 0.008893071673810482, -0.04502420127391815, 0.011062435805797577, -0.01966068521142006, -0.00460274750366807, 0.033988166600465775, 0.016360435634851456, -0.01860460452735424, -0.03833569586277008, -0.005051581654697657, 0.00018041362636722624, -0.045657847076654434, -0.0011248349910601974, -0.07286950200796127, 0.0071065365336835384, 0.0007057032780721784, 0.03263286501169205, -0.024448245763778687, -0.042172785848379135, 0.010684006847441196, 0.01501393411308527, 0.0004130812012590468, 0.045657847076654434, -0.018991833552718163, -0.0581899955868721, 0.011555273085832596, -0.054599322378635406, -0.03738522529602051, -0.02191365510225296, -0.017759742215275764, 0.015409964136779308, -0.07205983996391296, -0.01730210706591606, 0.02277611941099167, -0.02666601352393627, -0.011440863832831383, 0.011388059705495834, -0.01192490104585886, -0.04143352806568146, 0.05586661770939827, -0.01467070821672678, 0.03826529160141945, -0.047488387674093246, 0.021174399182200432, 0.08772502839565277, -0.06508971750736237, 0.0765305832028389, -0.032562460750341415, 0.024571456015110016, -0.07156700640916824, 0.02490588091313839, 0.059281278401613235, 0.014116265811026096, 0.05361364781856537, 0.025803549215197563, 0.009407910518348217, -0.04889649152755737, 0.07927639037370682, -0.0053596049547195435, 0.03444579988718033, 0.03217523172497749, 0.055021755397319794, -0.03476262465119362, 0.024800272658467293, 0.01174008660018444, -0.008510243147611618, -0.03833569586277008, -0.062343910336494446, 0.03696279227733612, -0.04407372698187828, -0.03015107661485672, -0.02759888395667076, -0.028197329491376877, 0.015823595225811005, -0.012901774607598782, 0.00021754142653662711, 0.05333202704787254, -0.04520021378993988, 0.05280398949980736, 0.010719209909439087, 0.002842614660039544, 0.04400332272052765, -0.04833324998617172, -0.020540751516819, -0.02715885080397129, 0.021491223946213722, -0.027933308854699135, 0.098356232047081, -0.001146286609582603, 0.041926365345716476, 0.032738473266363144, -0.028056519106030464, -0.009522318840026855, 0.01735491119325161, 0.03425218537449837, 0.03696279227733612, -0.023990612477064133, -0.03513225167989731, 0.004642350599169731, 0.027757296338677406, -0.006178066600114107, -0.027246857061982155, 0.037983667105436325, 0.033794552087783813, -0.0000850501746754162, 0.050903044641017914, -0.0014829119900241494, -0.02034713700413704, 0.0570635087788105, -0.04583386331796646, -0.0011418862268328667, 0.06656822562217712, -0.06589937955141068, -0.0038876936305314302, -0.1051151379942894, -0.00817581731826067, 0.03177040070295334, -0.017337309196591377, 0.05262797325849533, -0.02022392675280571, -0.016386836767196655, 0.0006055957637727261, 0.021878452971577644, 0.03046790137887001, -0.007009729277342558, 0.08307827264070511, -0.012012907303869724, -0.02777489833533764, -0.026824425905942917, 0.06399843096733093, 0.018463794142007828, 0.02772209420800209, -0.0012276927009224892, 0.04593946784734726, 0.009407910518348217, -0.013922651298344135, 0.006406883709132671, 0.0765305832028389, -0.04861487075686455, 0.0050559816882014275, -0.06368160992860794, 0.08624651283025742, 0.015524372458457947, -0.01797095686197281, -0.01610521599650383, -0.03178799897432327, -0.01560357864946127, 0.002091257832944393, 0.0010654304642230272, -0.053402435034513474, 0.021086392924189568, -0.05414168909192085, -0.0013167994329705834, 0.05005818232893944, 0.04287683963775635, 0.003218843135982752, -0.018252577632665634, 0.023198552429676056, -0.047101158648729324, -0.008805065415799618, 0.046537913382053375, -0.03125996142625809, -0.002233168575912714, -0.0444609597325325, -0.0675186961889267, 0.00474355835467577, 0.013491419143974781, 0.0105783985927701, -0.0053904070518910885, 0.008431036956608295, 0.022212877869606018, -0.03727961704134941, -0.07455923408269882, -0.01948467083275318, 0.007902996614575386, 0.06266073137521744, -0.046608321368694305, 0.05044541135430336, 0.029183004051446915, -0.060513369739055634, 0.0050559816882014275, -0.013077788054943085, 0.0785723328590393, -0.07420720160007477, 0.02085757441818714, -0.018446194007992744, -0.06368160992860794, -0.06061897799372673, -0.014380286447703838, 0.011044833809137344, -0.07117977738380432, 0.004941573366522789, 0.05157189443707466, 0.017143694683909416, -0.07638976722955704, 0.023568179458379745, -0.05312081053853035, 0.0422079861164093, 0.028496552258729935, 0.0021198601461946964, 0.022248080000281334, -0.003953698556870222, -0.017275704070925713, -0.04280643165111542, -0.012752163223922253, 0.03265046700835228, 0.09504717588424683, -0.019079841673374176, -0.056781888008117676, -0.034551408141851425, -0.029570233076810837, -0.036681171506643295, -0.0024333838373422623, 0.0046731531620025635, -0.03470982238650322, 0.01897423341870308, -0.015524372458457947, -0.09194934368133545, -0.0139842564240098, 0.021332811564207077, 0.03351293131709099, 0.04615068435668945, -0.022142471745610237, -0.05530337616801262, -0.006340879015624523, -0.04319366067647934, -0.020083116367459297, 0.02715885080397129, 0.013174595311284065, 0.06199188157916069, -0.010243973694741726, -0.0029306213837116957, -0.02821493148803711, -0.04481298476457596, 0.035484280437231064, 0.015990808606147766, -0.07184862345457077, -0.015207548625767231, 0.010437588207423687, -0.02721165493130684, 0.02091037854552269, 0.013755438849329948, 0.04995257407426834, -0.012276927009224892, 0.033301714807748795, -0.03520265966653824, 0.05530337616801262, 0.022124871611595154, 0.043792106211185455, 0.00954872090369463, 0.04481298476457596, -0.026578007265925407, 0.04424974322319031, 0.004237520042806864, 0.013315405696630478, 0.0012023907620459795, 0.00499437702819705, 0.022195275872945786, 0.0513254776597023, -0.0257155429571867, 0.0274052694439888, -0.009469515644013882, -0.009566322900354862, -0.006816114764660597, -0.014653106220066547, -0.06850437074899673, 0.02346257120370865, 0.05086784064769745, -0.05607783421874046, 0.055162567645311356, 0.04199677333235741, -0.033178504556417465, 0.03164719045162201, -0.027616485953330994, -0.05449371412396431, -0.016193222254514694, -0.03527306392788887, 0.020259130746126175, -0.009381508454680443, 0.0444609597325325, -0.035185057669878006, -0.04970615357160568, -0.01801495999097824, 0.019027037546038628, 0.005861242767423391, -0.012804967351257801, -0.017777342349290848, 0.037737250328063965, 0.018991833552718163, 0.015392362140119076, 0.039110153913497925, -0.010032758116722107, -0.017750941216945648, -0.026366790756583214, -0.06632181257009506, -0.018498996272683144, -0.034357793629169464, -0.017882950603961945, -0.08195178955793381, 0.0011539871338754892, -0.023568179458379745, -0.008778663352131844, -0.03245685249567032, 0.004076907876878977, -0.05730992928147316, 0.015779592096805573, -0.03632914274930954, -0.006807314231991768, -0.05980931594967842, -0.01023517269641161, -0.04358088970184326, 0.02471226640045643, 0.04618588835000992, 0.03903974965214729, -0.03208722174167633, 0.038054075092077255, -0.039919815957546234, -0.034674618393182755, 0.002237569075077772, -0.0003564269281923771, -0.038546912372112274, 0.004041705280542374, 0.02664841338992119, -0.012787365354597569, 0.04745318368077278, -0.019695887342095375, 0.033741749823093414, -0.02384980209171772, 0.015233950689435005, 0.022195275872945786, 0.036681171506643295, 0.008558646775782108, 0.04449616000056267, 0.0005423409747891128, 0.033864956349134445, 0.04889649152755737, -0.05037500336766243, -0.006820515263825655, -0.038863733410835266, 0.01276976428925991, 0.009971152991056442, -0.03235124424099922, -0.01566518284380436, 0.018393389880657196, 0.00836943183094263, 0.07265828549861908, -0.029499828815460205, 0.06593457609415054, 0.042348798364400864, 0.03217523172497749, -0.030362293124198914, -0.04713635891675949, 0.07462963461875916, -0.011423262767493725, -0.014283479191362858, 0.005883244331926107, 0.08385273069143295, -0.02872536890208721, -0.010640003718435764, 0.060654181987047195, 0.07976922392845154, -0.039673395454883575, 0.0017568327020853758, -0.03497384116053581, 0.018129369243979454, -0.0034982641227543354, -0.004389331676065922, -0.059844519942998886, -0.0705813318490982, -0.03134796768426895, 0.008699457161128521, 0.012153717689216137, 0.012259325943887234, -0.040799882262945175, 0.018252577632665634, -0.0045323423109948635, -0.0900484025478363, -0.028478950262069702, 0.02085757441818714, -0.027669290080666542, -0.04189116507768631, 0.014468292705714703, -0.04326406866312027, 0.039602991193532944, -0.004527941811829805, 0.014697110280394554, -0.011484866961836815, -0.030256684869527817, -0.03384735807776451, -0.032122425734996796, -0.01295457873493433, -0.044038526713848114, -0.030802326276898384, 0.015893999487161636, -0.013280202634632587, 0.04801642522215843, -0.007731384132057428, -0.016193222254514694, 0.002312374534085393, 0.06361120194196701, -0.03664596751332283, -0.05562020093202591, 0.010745611973106861, -0.06927882879972458, 0.010807216167449951, -0.05100865289568901, -0.03569549694657326, -0.02235368825495243, -0.02377939596772194, 0.01966068521142006, -0.01966068521142006, -0.03323131054639816, -0.05569060519337654, -0.03354813531041145, -0.012162518687546253, -0.0024839877150952816, -0.029570233076810837, -0.004305724985897541, 0.022705715149641037, -0.08828826993703842, 0.04206717759370804, 0.015779592096805573, -0.009091086685657501, 0.0003743032575584948, 0.03346012532711029, 0.009275900200009346, 0.004637950100004673, 0.04020143672823906, 0.03441059961915016, 0.03184080496430397, 0.030432699248194695, -0.01757492683827877, 0.028003714978694916, -0.008453038521111012, -0.03837089613080025, 0.05231115221977234, 0.05033980309963226, -0.00547841377556324, -0.02414902299642563 ]
23,350
parutils.logging.sl
step_log
Logs something only when the 'counter' is a multiple of 'step' - Initialise timer with init_sl_timer() - For more info, check out the README.md file
def step_log(counter, step, what='lines written', th_name='DEFAULT', extra=''): """Logs something only when the 'counter' is a multiple of 'step' - Initialise timer with init_sl_timer() - For more info, check out the README.md file """ if counter % step != 0: return False # Avoids error if sl time has not been initialised st = get_logger().start_time if th_name not in sl_time_dict else sl_time_dict[th_name] dstr = strg.get_duration_string(st) bn_1 = strg.big_number(step) bn_2 = strg.big_number(counter) s = "{bn1} {what} in {dstr}. {bn2} {what} in total{extra}." msg = s.format(bn1=bn_1, bn2=bn_2, dstr=dstr, what=what, extra=extra) log(msg) init_sl_timer(th_name) return True
(counter, step, what='lines written', th_name='DEFAULT', extra='')
[ 0.01628228835761547, 0.054238706827163696, -0.04480743408203125, 0.11516827344894409, 0.02882765792310238, 0.0007496080943383276, -0.011210756376385689, 0.003496688324958086, -0.0420670285820961, 0.024859406054019928, 0.04078579694032669, 0.04811727628111839, 0.0658409520983696, -0.023364638909697533, 0.02578473836183548, -0.020819975063204765, 0.04281441122293472, -0.007189119700342417, -0.02183428220450878, -0.004117283504456282, 0.06505797803401947, 0.05053737759590149, 0.03751154616475105, 0.02671007066965103, 0.03247560188174248, 0.015018854290246964, 0.010774781927466393, 0.00048518774565309286, -0.03165704011917114, 0.017803749069571495, -0.030091093853116035, -0.05043060705065727, -0.024788226932287216, -0.04196025803685188, -0.02457468956708908, -0.012607651762664318, -0.046729277819395065, -0.051854196935892105, -0.08242575079202652, 0.016504723578691483, 0.06701540946960449, 0.040323130786418915, -0.023240074515342712, 0.014307060278952122, -0.06548505276441574, 0.0027003686409443617, 0.039362210780382156, 0.0341305248439312, 0.02646094374358654, -0.027973506599664688, 0.0021064653992652893, -0.0016349019715562463, -0.01085485890507698, -0.006281582172960043, 0.044843025505542755, 0.003627925179898739, 0.04046549275517464, -0.028863247483968735, 0.0052494811825454235, -0.0038281173910945654, -0.010890448465943336, 0.015018854290246964, 0.036248110234737396, 0.11246345937252045, 0.024788226932287216, -0.022599460557103157, 0.03450421616435051, 0.0007251401548273861, -0.010187552310526371, -0.019681105390191078, -0.04854435473680496, -0.05064414441585541, 0.04317030683159828, 0.00020867242710664868, -0.0518186055123806, 0.008465900085866451, -0.04747666418552399, 0.030589349567890167, 0.08790656179189682, 0.014431623741984367, -0.00629492849111557, -0.030624939128756523, -0.006170364562422037, -0.04712076485157013, -0.03525159880518913, 0.012847882695496082, -0.008038823492825031, 0.007278094068169594, 0.027030378580093384, 0.023257870227098465, -0.07050319761037827, 0.011273037642240524, 0.023257870227098465, -0.035625290125608444, -0.019414182752370834, 0.01811515912413597, -0.020286129787564278, 0.029913144186139107, -0.06957786530256271, 0.048615533858537674, 0.034166112542152405, -0.0344330370426178, 0.07851088047027588, -0.03290268033742905, -0.017874928191304207, -0.08021918684244156, -0.055270805954933167, -0.028987811878323555, 0.019431976601481438, -0.0320129357278347, 0.017421159893274307, -0.014698547311127186, -0.06363438814878464, 0.0023578177206218243, -0.0262118149548769, 0.02608725056052208, 0.06231756880879402, -0.013568573631346226, -0.07765673100948334, -0.016246698796749115, 0.02799130044877529, -0.07445365935564041, -0.030589349567890167, -0.006962235551327467, -0.045198921114206314, -0.004119507968425751, 0.02811586484313011, 0.011388704180717468, -0.023311255499720573, -0.03747595474123955, 0.04402446001768112, -0.01811515912413597, 0.041782308369874954, -0.01623780094087124, 0.01822192780673504, 0.019965821877121925, -0.062281977385282516, 0.02316889539361, 0.016896210610866547, 0.023987459018826485, -0.1054878756403923, -0.046302203088998795, -0.06552064418792725, -0.007478286046534777, 0.07708729058504105, 0.03662180155515671, -0.028453966602683067, 0.06665951013565063, 0.023809511214494705, -0.011878062970936298, 0.003454425372183323, -0.006441736128181219, 0.055448755621910095, 0.013666445389389992, -0.0338280126452446, 0.014351547695696354, 0.0054229809902608395, 0.0259093027561903, 0.00047990487655624747, -0.01741226203739643, 0.06488002836704254, -0.05455901473760605, 0.04583953693509102, 0.04850876331329346, 0.03676416352391243, 0.04028754308819771, -0.06964904814958572, 0.06619684398174286, -0.023453613743185997, 0.05840270221233368, 0.02146059088408947, 0.03279590979218483, 0.0658409520983696, 0.0014714117860421538, -0.0005471916520036757, 0.032226476818323135, 0.04822404682636261, -0.025571200996637344, 0.028987811878323555, -0.023916279897093773, -0.014609572477638721, 0.028863247483968735, -0.016397954896092415, 0.027083763852715492, -0.026745660230517387, -0.059292443096637726, -0.008274605497717857, -0.02128264121711254, 0.021478384733200073, 0.011095089837908745, 0.05445224419236183, 0.03509144484996796, 0.04943409562110901, -0.020464079454541206, -0.015570494346320629, 0.06466648727655411, -0.0023289010860025883, -0.0402519516646862, 0.14043696224689484, 0.009778270497918129, 0.007963195443153381, 0.03487790748476982, -0.03608795627951622, -0.039718106389045715, -0.027510840445756912, 0.03790303319692612, 0.04046549275517464, 0.06238874793052673, -0.08114451915025711, -0.008505938574671745, 0.0010832615662366152, -0.03151468187570572, -0.011362012475728989, 0.10399311035871506, 0.020766591653227806, -0.020873360335826874, -0.04658691957592964, 0.009778270497918129, 0.007295888848602772, 0.014832008630037308, 0.027172736823558807, -0.03804539144039154, -0.02719053253531456, -0.00040066218934953213, 0.020268335938453674, 0.0007740760338492692, 0.08342225849628448, -0.03327637165784836, -0.0002015822974499315, -0.025161920115351677, -0.015570494346320629, 0.03176381066441536, 0.035038061439991, 0.03726241737604141, -0.0019752285443246365, -0.00018170211114920676, -0.0652003362774849, 0.03053596429526806, 0.062281977385282516, 0.006334966979920864, -0.03268914297223091, 0.01021424401551485, -0.023684946820139885, -0.02726171165704727, 0.025695765390992165, -0.06996935606002808, 0.005814467556774616, 0.019254028797149658, -0.03455759957432747, 0.024663662537932396, -0.032333243638277054, 0.011851370334625244, -0.026567712426185608, -0.05384721979498863, -0.012322934344410896, 0.03090965561568737, 0.03603457286953926, -0.00798099022358656, 0.005516403820365667, -0.00854597706347704, -0.014458316378295422, -0.023257870227098465, 0.007033414673060179, -0.02377392165362835, -0.05164065584540367, -0.008385823108255863, -0.005080429837107658, -0.01944977231323719, 0.09267558157444, 0.02457468956708908, 0.017830440774559975, 0.006984478794038296, -0.012750010937452316, -0.02110469341278076, -0.010089680552482605, -0.008955258876085281, 0.030393606051802635, 0.006312723271548748, -0.03644385561347008, 0.0143248550593853, 0.036728572100400925, 0.04028754308819771, -0.001104392926208675, -0.013719829730689526, -0.06231756880879402, -0.005098224617540836, 0.01243860088288784, 0.07936503738164902, 0.008692784234881401, 0.007487183436751366, -0.05683675408363342, 0.010454474948346615, 0.03560749813914299, -0.018560029566287994, -0.024183202534914017, 0.014129111543297768, -0.06758484244346619, -0.06808310002088547, -0.024539100006222725, -0.006237095221877098, 0.0005374600877985358, -0.05011029914021492, -0.019859053194522858, -0.026425354182720184, -0.03290268033742905, 0.029414888471364975, -0.01864900439977646, -0.013755420222878456, -0.009199937805533409, -0.07270976155996323, -0.027030378580093384, 0.08833363652229309, 0.0286497101187706, -0.03347211331129074, 0.01438713725656271, 0.03633708506822586, -0.030696118250489235, -0.006125877611339092, -0.0292547345161438, 0.039896056056022644, -0.008136695250868797, 0.07908032089471817, -0.04598189517855644, 0.030820682644844055, 0.0292547345161438, -0.05498608946800232, 0.05430988594889641, -0.006824325304478407, -0.029343709349632263, -0.001977452775463462, -0.034290678799152374, 0.03854364529252052, 0.0353405736386776, -0.015792930498719215, -0.006281582172960043, -0.05156947672367096, -0.04320589825510979, -0.007273645140230656, 0.03482452407479286, -0.020037002861499786, 0.014876495115458965, -0.047512251883745193, -0.017269901931285858, 0.01585521176457405, 0.07687375694513321, 0.013986753299832344, 0.01274111308157444, 0.028240429237484932, 0.10520315915346146, -0.0036234764847904444, 0.0051605068147182465, -0.02816924825310707, -0.05626731738448143, -0.022635050117969513, -0.034415241330862045, 0.03279590979218483, -0.012572062201797962, -0.08997076749801636, -0.027582019567489624, -0.006739799864590168, 0.009244425222277641, 0.03736918792128563, 0.01713644154369831, 0.036550622433423996, 0.009858347475528717, 0.014698547311127186, 0.0024112022947520018, -0.03512703627347946, 0.028667503967881203, 0.04811727628111839, -0.013550778850913048, 0.004893584176898003, 0.03786744177341461, 0.0792226791381836, -0.031069809570908546, 0.025215303525328636, -0.00045654913992621005, 0.006966684013605118, -0.04430918022990227, 0.0038548095617443323, 0.03882836550474167, 0.021371616050601006, -0.02268843539059162, 0.011201858520507812, -0.018257517367601395, -0.01329275406897068, 0.01426257286220789, 0.01575734093785286, 0.00963591132313013, -0.042102616280317307, -0.0023800614289939404, 0.0021064653992652893, -0.01663818582892418, -0.017403364181518555, 0.01728769764304161, -0.028703095391392708, -0.01585521176457405, 0.02158515341579914, -0.038258928805589676, -0.036550622433423996, 0.00830574706196785, 0.009920629672706127, 0.010801474563777447, 0.00521389115601778, -0.009751577861607075, 0.005939031485468149, -0.019823463633656502, -0.07036083936691284, -0.015792930498719215, -0.0175190307199955, 0.03452201187610626, -0.01237631868571043, -0.033525500446558, -0.020588641986250877, 0.0035367265809327364, -0.017198722809553146, -0.005049288738518953, -0.05694352462887764, -0.0652359202504158, 0.029432684183120728, 0.012625446543097496, 0.02000141330063343, 0.05722824111580849, 0.07189119607210159, 0.011095089837908745, 0.03183498978614807, -0.02206561528146267, -0.0009803851135075092, 0.042636461555957794, -0.002248824341222644, -0.05993305891752243, -0.010481167584657669, -0.02701258286833763, 0.05754854902625084, 0.03146129474043846, 0.006815427914261818, -0.045198921114206314, -0.0005833374452777207, 0.024592483416199684, -0.0006884383037686348, -0.023578178137540817, -0.035322777926921844, -0.019485361874103546, -0.016851723194122314, 0.013586368411779404, -0.004711186978965998, 0.030624939128756523, -0.06555622816085815, -0.04249410331249237, 0.027759967371821404, -0.022510485723614693, 0.04181789979338646, -0.04092815890908241, 0.0021809814497828484, 0.05438106507062912, -0.05171183869242668, -0.05551993474364281, -0.009075374342501163, 0.04067903012037277, -0.014146906323730946, 0.023079922422766685, 0.05256598815321922, -0.01811515912413597, 0.01179798599332571, 0.030624939128756523, -0.05907890573143959, 0.048935841768980026, -0.0003586774691939354, -0.0028938876930624247, -0.010196449235081673, 0.025695765390992165, 0.044949792325496674, 0.04110610485076904, 0.018862541764974594, 0.018382081761956215, -0.009769373573362827, -0.02183428220450878, 0.003607905935496092, -0.0003200292703695595, 0.02799130044877529, -0.005592031870037317, 0.00855932291597128, 0.02927253022789955, 0.033436525613069534, 0.029486067593097687, 0.014244778081774712, -0.05103563144803047, 0.000985389924608171, 0.08192749321460724, -0.018239721655845642, -0.013755420222878456, -0.013675343245267868, 0.03811657056212425, -0.04943409562110901, 0.008550425991415977, -0.036550622433423996, 0.020873360335826874, 0.001838430529460311, 0.022474896162748337, 0.02980637550354004, -0.005805570166558027, -0.030980834737420082, 0.03583883121609688, 0.02638976462185383, 0.007095696870237589, -0.019983617588877678, 0.044238001108169556, 0.005996864754706621, -0.03669298440217972, 0.019592130556702614, 0.05747736990451813, 0.014547290280461311, -0.007780798710882664, -0.004680045880377293, 0.0295572467148304, -0.0762331411242485, -0.04053667187690735, -0.01517900824546814, 0.006592992227524519, -0.05210332199931145, 0.001549264183267951, -0.05359809100627899, -0.0144761111587286, 0.0012445274041965604, 0.0012523126788437366, 0.01517900824546814, 0.011362012475728989, -0.022172383964061737, -0.016549210995435715, 0.009360091760754585, -0.015223494730889797, 0.01630898006260395, 0.029005607590079308, 0.0408569760620594, 0.0050048017874360085, 0.03975369781255722, -0.05224568396806717, -0.10285423696041107, 0.015454827807843685, -0.052815116941928864, -0.0178215429186821, -0.04413123056292534, 0.010178654454648495, -0.01625559665262699, -0.007633991073817015, 0.03975369781255722, 0.017172031104564667, 0.03276032209396362, -0.0035389510449022055, -0.014707444235682487, 0.009867244400084019, -0.006904402282088995, -0.034361857920885086, -0.08406287431716919, 0.017732568085193634, 0.052459221333265305, 0.016397954896092415, 0.03626590594649315, 0.014680751599371433, -0.013666445389389992, 0.03560749813914299, 0.0027181634213775396, 0.05925685539841652, -0.029183555394411087, 0.013248266652226448, -0.07530780881643295, 0.04726312309503555, -0.057833265513181686, -0.03028683550655842, 0.023079922422766685, 0.02914796583354473, 0.036426059901714325, -0.028738684952259064, 0.029788579791784286, -0.04651574045419693, 0.0030451437924057245, 0.0712861716747284, 0.006637479178607464, -0.004960314836353064, 0.0396113395690918, -0.06082279980182648, 0.0013368382351472974, -0.00665972288697958, 0.0052094426937401295, 0.044593896716833115, -0.0027092660311609507, -0.022225769236683846, 0.0049380711279809475, -0.035821035504341125, 0.0518186055123806, 0.006824325304478407, 0.05046619847416878, -0.05872300639748573, -0.0402519516646862, 0.025891508907079697, 0.02236812748014927, 0.0481528677046299, -0.04114169627428055, 0.050822094082832336, 0.05213891342282295, -0.06961345672607422, -0.010080782696604729, -0.039113081991672516, 0.015837417915463448, -0.049540866166353226, -0.03055376000702381, 0.01573064737021923, -0.0072380555793643, -0.03893513232469559, -0.02407643385231495, -0.012981344014406204, 0.019912438467144966, 0.04857994243502617, 0.017634697258472443, -0.005814467556774616, 0.0011577775003388524, 0.050750914961099625, -0.03761831670999527, 0.06114310771226883, -0.041355233639478683, -0.006321620661765337, -0.016264494508504868, -0.05011029914021492, -0.011584447696805, 0.010899346321821213, -0.014120214618742466, -0.002471260027959943, -0.05658762529492378, 0.02181648649275303, -0.05559111386537552, -0.025713559240102768, 0.06762043386697769, -0.027208326384425163, -0.028080275282263756, 0.0046933917328715324, -0.02078438550233841, -0.057406190782785416, -0.009062027558684349, -0.03085627220571041, -0.015241289511322975, 0.007202466018497944, 0.00014583436131943017, -0.028685299679636955, -0.032155293971300125, -0.0036902071442455053, -0.023079922422766685, 0.04149759188294411, -0.01969889923930168, 0.04854435473680496, 0.025873713195323944, -0.014333751983940601, 0.08085980266332626, 0.012483088299632072, 0.03450421616435051, -0.038258928805589676, -0.01541923824697733, 0.044665075838565826, 0.024788226932287216, 0.01511672604829073, 0.009609219618141651, 0.030215656384825706, 0.02304433286190033, 0.022172383964061737, -0.019414182752370834, -0.021140282973647118, 0.009555835276842117, 0.03815216198563576, -0.035518523305654526, 0.01841767132282257, -0.05320660397410393, -0.03126555308699608, -0.032351039350032806, 0.021015718579292297, -0.0045399111695587635, 0.030624939128756523, -0.0003964915231335908, 0.03882836550474167, 0.022581666707992554, 0.012723318301141262, -0.04968322440981865, -0.057406190782785416, -0.0033432075288146734, -0.024414535611867905, -0.04420240968465805, 0.037831854075193405, 0.059719521552324295, -0.00882179755717516, -0.029824169352650642, -0.011210756376385689, -0.0044820779003202915, -0.0396113395690918, 0.017874928191304207, -0.027172736823558807, 0.012990240938961506, -0.01231403648853302, -0.0012100498424842954, -0.03267134726047516, -0.004333046264946461, 0.02090894989669323, -0.08206985145807266, 0.03836569935083389, -0.011975934728980064, 0.03397037088871002, 0.014271470718085766, -0.0025669073220342398, -0.08392051607370377, -0.027475249022245407, -0.035393957048654556, 0.0518186055123806, -0.01420029066503048, 0.0029984323773533106, 0.08249692618846893, -0.005974621046334505, -0.022706229239702225, -0.03208411484956741, -0.03281370550394058, -0.048686712980270386, -0.0493629164993763, 0.002762650605291128, -0.0014714117860421538, -0.01709195412695408, -0.026745660230517387, 0.04171112924814224, -0.05996864661574364, -0.07452483475208282, -0.002982861828058958, -0.015552699565887451, 0.002667003311216831, 0.046658098697662354, -0.005560890771448612, -0.03516262397170067, -0.011201858520507812, -0.050501786172389984, 0.026425354182720184, 0.005827813874930143, 0.0024067535996437073, -0.02779555693268776, 0.02505514957010746, 0.05324219539761543, -0.05491491034626961, 0.031301144510507584, -0.016567006707191467, 0.06110752001404762, -0.02799130044877529, 0.021442795172333717, 0.028364991769194603, 0.006045800633728504, 0.06249551475048065, -0.0805039033293724, -0.0518186055123806, 0.04341943562030792, -0.03747595474123955, -0.048081688582897186, -0.011210756376385689, 0.024094227701425552, 0.00405945023521781, -0.00819452852010727, 0.003512258641421795, 0.02341802418231964, 0.034717753529548645, 0.0005800009239464998, -0.02462807297706604, 0.0755925253033638, 0.048188455402851105, -0.006321620661765337, 0.01605985313653946, -0.032956063747406006, 0.05438106507062912 ]
23,353
parutils.strg
truncate
null
def truncate(s, length=100): out = s[0:length - 3] + '...' if len(s) > length else s return out
(s, length=100)
[ -0.06181472912430763, 0.07187120616436005, -0.0007427592063322663, 0.02883085608482361, 0.010150863789021969, -0.03324129059910774, 0.019598117098212242, -0.008623515255749226, 0.07990265637636185, -0.011446536518633366, 0.007799776270985603, 0.016002841293811798, -0.009575963020324707, -0.004440466873347759, 0.023510877043008804, 0.037686046212911606, -0.002308184513822198, -0.023562360554933548, 0.05567101016640663, 0.030598461627960205, 0.08182471245527267, 0.012519112788140774, -0.0282302126288414, -0.0596524141728878, -0.0170668363571167, 0.03603857010602951, 0.0372055321931839, 0.011334988288581371, 0.0015187682583928108, -0.0009508390794508159, 0.031731102615594864, -0.002930278889834881, 0.011952792294323444, 0.029946336522698402, -0.003977113403379917, 0.03871572017669678, 0.026737187057733536, -0.048428975045681, 0.00583481602370739, 0.033636000007390976, -0.08093233406543732, 0.001442615408450365, -0.029791884124279022, -0.04657556116580963, 0.031885553151369095, -0.024952419102191925, 0.050076451152563095, 0.03974539414048195, -0.005873428657650948, -0.03286374360322952, 0.010768667794764042, 0.050110772252082825, 0.016002841293811798, -0.032451875507831573, 0.012785111553966999, -0.004037178121507168, -0.017083998769521713, 0.07585261017084122, 0.047536589205265045, -0.025398612022399902, 0.024042874574661255, 0.0003231136652175337, 0.039848361164331436, -0.00540149537846446, 0.019838374108076096, 0.005191270262002945, 0.0374457910656929, 0.007280649151653051, 0.020112954080104828, -0.010030735284090042, 0.032383229583501816, 0.035455089062452316, -0.035146187990903854, -0.006306749768555164, -0.011274924501776695, 0.009781897999346256, -0.03375612571835518, -0.03137071803212166, -0.004976755008101463, -0.009859123267233372, 0.03995132818818092, -0.016449032351374626, -0.005839106626808643, 0.00761529291048646, 0.05035103112459183, -0.04997348412871361, -0.059171900153160095, -0.054332435131073, 0.016697870567440987, 0.03713688999414444, -0.019203409552574158, 0.001457631471566856, 0.007319261785596609, -0.05580829828977585, -0.04592343419790268, 0.014329621568322182, 0.0012506241910159588, 0.00022631364117842168, -0.030220914632081985, -0.0567006841301918, -0.011592406779527664, 0.04729633405804634, 0.010682862251996994, 0.037686046212911606, -0.01149802003055811, -0.018328187987208366, -0.024042874574661255, -0.030117947608232498, 0.019340699538588524, 0.016697870567440987, 0.013977817259728909, -0.066379614174366, 0.0344940610229969, -0.057799000293016434, -0.01326562650501728, -0.029191242530941963, -0.016208775341510773, 0.009447253309190273, -0.001231317757628858, -0.07018940895795822, 0.038029272109270096, -0.0674436092376709, -0.04472215101122856, -0.032795097678899765, -0.021691786125302315, 0.040637776255607605, -0.03964242711663246, 0.02026740461587906, 0.06442323327064514, -0.07859840244054794, -0.06387407332658768, 0.03375612571835518, -0.0021483707241714, -0.01815657503902912, 0.03651908412575722, -0.0414615161716938, -0.04005429521203041, 0.09287654608488083, -0.023099007084965706, 0.004140145145356655, -0.06377110630273819, 0.033893417567014694, -0.0013900591293349862, 0.005684655625373125, -0.002267426811158657, -0.0005759735940955579, 0.02690879814326763, -0.058416806161403656, 0.039161913096904755, 0.03409935161471367, -0.015016070567071438, 0.0040007103234529495, 0.025758996605873108, -0.015942776575684547, 0.0016517677577212453, -0.046472594141960144, -0.007109037134796381, -0.08285439014434814, 0.09074854850769043, -0.050419677048921585, -0.01982121355831623, -0.024489065632224083, -0.03250335901975632, -0.01784767210483551, -0.057284165173769, -0.05831383913755417, 0.016268840059638023, -0.002020734129473567, 0.009841961786150932, 0.07097882032394409, 0.026702864095568657, 0.06459484994411469, 0.06703174114227295, 0.017830511555075645, -0.051517993211746216, 0.03710256516933441, -0.005114044528454542, -0.013892010785639286, 0.00564604252576828, -0.08003994822502136, -0.03360167518258095, -0.023562360554933548, -0.02641112357378006, 0.008143000304698944, -0.03669069707393646, -0.028298858553171158, -0.04029455408453941, 0.06452620029449463, -0.04080938920378685, -0.07962808012962341, -0.01769322156906128, -0.040946681052446365, 0.021503012627363205, -0.03399638459086418, -0.013102594763040543, 0.017367158085107803, 0.04067210108041763, -0.01436394453048706, 0.011626728810369968, -0.06157447025179863, -0.09191551804542542, 0.08457051217556, -0.01650051586329937, -0.06445755809545517, 0.02754376456141472, 0.035146187990903854, 0.021382885053753853, 0.011592406779527664, -0.14484073221683502, 0.0034858735743910074, 0.008726482279598713, -0.0007690373458899558, 0.029208403080701828, -0.04623233526945114, -0.009764736518263817, -0.08429592847824097, -0.016397548839449883, 0.01894599199295044, 0.029002469033002853, 0.024197325110435486, -0.03209148719906807, -0.06672284007072449, 0.03253768011927605, 0.027749698609113693, -0.0035673894453793764, 0.05666636303067207, -0.034047868102788925, 0.027217701077461243, 0.07447971403598785, -0.039196234196424484, 0.0025141192600131035, -0.023219136521220207, 0.00791990477591753, 0.03940216824412346, 0.07180256396532059, -0.04304035007953644, -0.0298262070864439, -0.06315330415964127, 0.036141537129879, -0.049355678260326385, 0.0017450819723308086, -0.01210724376142025, 0.005697526503354311, 0.050453998148441315, 0.00791990477591753, -0.029603110626339912, -0.036587730050086975, 0.02773253805935383, 0.013488722033798695, 0.01687806285917759, -0.026308156549930573, 0.03995132818818092, -0.028762212023139, 0.05889732018113136, 0.04410434514284134, 0.04602640122175217, -0.009721833281219006, -0.03197136148810387, -0.03137071803212166, 0.02963743358850479, 0.003494454314932227, -0.03274361416697502, -0.051552318036556244, 0.037754692137241364, 0.011721115559339523, -0.02327062003314495, -0.05038535222411156, -0.046472594141960144, 0.042388223111629486, -0.006439749151468277, 0.0744110643863678, 0.04540859907865524, 0.009361447766423225, -0.030907364562153816, 0.020593468099832535, 0.02754376456141472, -0.0333099365234375, -0.0010623870184645057, 0.06281007826328278, -0.027560925111174583, 0.017495866864919662, -0.0024926678743213415, 0.008177323266863823, 0.013977817259728909, 0.024540551006793976, 0.006924553774297237, -0.010923119261860847, -0.01734999753534794, 0.0005014294874854386, 0.03164529800415039, 0.02816156856715679, -0.006169459782540798, 0.012381822802126408, -0.026771510019898415, -0.029277047142386436, -0.008786546997725964, -0.005371463019400835, -0.003970677964389324, 0.030220914632081985, -0.06524696946144104, -0.02872788906097412, -0.00964460801333189, -0.02615370601415634, -0.008400418795645237, 0.02333926409482956, -0.027955634519457817, -0.018877346068620682, -0.040191587060689926, 0.04163312911987305, 0.03433961048722267, -0.057009585201740265, -0.06445755809545517, 0.017101159319281578, 0.013840527273714542, 0.07351868599653244, 0.08649256825447083, 0.0011616003466770053, -0.02538144960999489, -0.028487632051110268, 0.00022926322708372027, -0.01985553652048111, -0.019615279510617256, -0.018688572570681572, 0.013111175037920475, -0.013480141758918762, -0.018139414489269257, -0.018894506618380547, 0.05601423606276512, 0.024420421570539474, -0.014020719565451145, -0.03761740401387215, 0.00705755315721035, 0.03823520615696907, -0.023768294602632523, -0.05501888319849968, 0.013823365792632103, 0.05127773806452751, 0.005942073650658131, 0.03324129059910774, 0.022155139595270157, 0.05107180401682854, -0.0016281710704788566, 0.03679366409778595, -0.00012629588309209794, 0.051586639136075974, 0.01577974483370781, 0.002730779815465212, -0.023047523573040962, 0.0072377463802695274, -0.02955162711441517, 0.008198774419724941, -0.013643172569572926, 0.02179475501179695, -0.0463009811937809, 0.050488319247961044, 0.013462980277836323, 0.03289806470274925, 0.02443758212029934, -0.008035742677748203, 0.020473340526223183, 0.031353555619716644, -0.047502268105745316, 0.01982121355831623, -0.017006773501634598, -0.008958159014582634, 0.06329059600830078, -0.022824427112936974, -0.04269712418317795, -0.022687137126922607, 0.04805142804980278, -0.0165949035435915, -0.050488319247961044, 0.035180509090423584, -0.010837312787771225, 0.025673190131783485, 0.0227386225014925, -0.05495023727416992, -0.012527693063020706, -0.03509470447897911, -0.0033979222644120455, -0.011506600305438042, -0.035489410161972046, -0.035832636058330536, 0.017899155616760254, 0.003792630508542061, 0.002713618567213416, -0.07413648813962936, -0.013591689057648182, 0.029156919568777084, 0.05512185022234917, -0.007555228658020496, -0.025141192600131035, 0.02618802711367607, 0.05467566102743149, -0.0009637099574320018, 0.039539460092782974, -0.08065775036811829, 0.005440108012408018, 0.03723985701799393, 0.02948298305273056, 0.020507661625742912, 0.028058601543307304, 0.044310279190540314, 0.06092234328389168, -0.019958503544330597, 0.042388223111629486, 0.01377188228070736, -0.007851259782910347, 0.01320556178689003, 0.018551282584667206, 0.03083871863782406, 0.042765770107507706, -0.03751443699002266, -0.024042874574661255, 0.1107928603887558, 0.01580548658967018, 0.027406474575400352, -0.012441887520253658, 0.008623515255749226, -0.014329621568322182, 0.01375472079962492, -0.05900028720498085, 0.00023449203581549227, 0.025758996605873108, -0.02308184653520584, 0.00681300600990653, -0.007353584282100201, 0.020662114024162292, -0.007829808630049229, 0.00033330314909107983, -0.021468691527843475, -0.019495150074362755, -0.03312116116285324, 0.012888079509139061, 0.0165949035435915, 0.04873787611722946, 0.05199850723147392, 0.03593560308218002, -0.02079940401017666, 0.03157665207982063, 0.02550157904624939, 0.014887361787259579, -0.006298169028013945, 0.02550157904624939, 0.09706388413906097, -0.008838030509650707, -0.01803644560277462, -0.010476927272975445, -0.000777081644628197, 0.0038290980737656355, 0.04012294113636017, 0.0035502281971275806, -0.0012484790058806539, 0.01589987426996231, 0.020782241597771645, -0.05666636303067207, -0.019752569496631622, -0.024574872106313705, -0.06329059600830078, 0.02436893805861473, -0.0473649762570858, 0.059137579053640366, -0.04255983605980873, 0.01589987426996231, -0.007954226806759834, 0.031851232051849365, 0.019272053614258766, -0.03579831123352051, -0.04324628412723541, 0.01693812757730484, 0.03672501817345619, -0.03665637597441673, 0.0035116153303533792, 0.04036320000886917, 0.07303816825151443, -0.016552001237869263, 0.01362601201981306, 0.0465412400662899, 0.040637776255607605, 0.03998565301299095, -0.0014705023495480418, -0.04437892511487007, -0.02634247951209545, 0.02587912604212761, -0.04382976517081261, 0.021571658551692963, -0.03528347611427307, 0.036381796002388, 0.011781180277466774, 0.005727558396756649, 0.016697870567440987, 0.01856844499707222, -0.015822649002075195, 0.0045563047751784325, 0.03823520615696907, -0.016946708783507347, 0.016388969495892525, 0.0026792960707098246, -0.0025977801997214556, -0.014424008317291737, -0.03509470447897911, 0.005092593375593424, 0.033515870571136475, -0.040191587060689926, 0.020490501075983047, 0.021726109087467194, -0.04338357225060463, 0.0003156056336592883, -0.004496240522712469, -0.021657465025782585, 0.009867703542113304, 0.03167961910367012, 0.0056117200292646885, 0.021228434517979622, 0.009919187054038048, -0.011721115559339523, -0.009910606779158115, -0.014827297069132328, 0.07962808012962341, -0.03509470447897911, -0.01166963204741478, 0.03377328813076019, -0.0171869657933712, -0.030032141134142876, 0.008644966408610344, -0.05467566102743149, 0.05306250602006912, 0.018362509086728096, -0.021588819101452827, 0.023442231118679047, -0.027766861021518707, 0.07852976024150848, 0.017023934051394463, 0.010734345763921738, 0.00947299599647522, 0.022309590131044388, -0.09157229214906693, -0.060270220041275024, 0.004796562250703573, -0.02459203451871872, -0.019014636054635048, -0.03004930354654789, 0.027595248073339462, -0.04623233526945114, -0.04118693619966507, 0.01303394977003336, 0.023785457015037537, 0.023133330047130585, 0.03409935161471367, 0.030478334054350853, -0.0403975211083889, 0.030135110020637512, -0.009412931278347969, 0.009524479508399963, -0.00773113127797842, -0.017864834517240524, -0.053028181195259094, -0.03648476302623749, -0.010751506313681602, 0.004955303389579058, 0.011189118027687073, -0.028110085055232048, 0.09953510016202927, -0.010236670263111591, -0.0008382185478694737, 0.03542076423764229, -0.0252784825861454, -0.026308156549930573, -0.05900028720498085, 0.000131926906760782, 0.017367158085107803, 0.032795097678899765, -0.04231957718729973, 0.002808005316182971, -0.04503105208277702, -0.032417550683021545, -0.0034536963794380426, -0.02114262804389, 0.03669069707393646, 0.0896502360701561, 0.022841589525341988, 0.01303394977003336, 0.004826594144105911, -0.011952792294323444, 0.01574542373418808, -0.007782615255564451, -0.012424726039171219, -0.0252784825861454, -0.029774723574519157, 0.002477651694789529, 0.07018940895795822, 0.04729633405804634, 0.0017740415642037988, -0.03669069707393646, 0.054332435131073, -0.03300103172659874, 0.019220570102334023, -0.02057630755007267, -0.024574872106313705, 0.02637680061161518, 0.016818000003695488, 0.048943810164928436, -0.04228525608778, 0.11518613249063492, 0.014260976575314999, -0.005894880276173353, -0.0011648180661723018, 0.05872570723295212, -0.05313114821910858, -0.013111175037920475, 0.0036381795071065426, 0.025758996605873108, -0.023287780582904816, -0.02179475501179695, -0.06109395623207092, -0.003425809321925044, 0.027234861627221107, -0.09987832605838776, -0.001939218258485198, -0.052273087203502655, -0.028848016634583473, 0.04636962711811066, -0.012982466258108616, 0.018671412020921707, -0.002973182126879692, 0.006276717409491539, -0.0282302126288414, -0.024540551006793976, -0.016920967027544975, -0.10756655037403107, -0.043177638202905655, 0.01631174236536026, 0.0005287802196107805, -0.007096166256815195, -0.07029237598180771, 0.025484416633844376, -0.031851232051849365, 0.01970108412206173, -0.020662114024162292, 0.02625667303800583, 0.06517832726240158, -0.021554498001933098, -0.053645987063646317, -0.006542716640979052, 0.004509111400693655, -0.0018641379429027438, 0.03046117164194584, 0.07413648813962936, -0.10173173248767853, -0.0463009811937809, -0.030478334054350853, 0.021245595067739487, 0.02634247951209545, -0.005963525269180536, 0.022275269031524658, 0.01110331155359745, 0.06939999014139175, -0.02026740461587906, -0.016208775341510773, -0.029277047142386436, 0.05035103112459183, -0.09905458241701126, 0.022035012021660805, 0.02428313158452511, 0.032383229583501816, -0.027149057015776634, -0.02709757164120674, -0.014973168261349201, 0.008872352540493011, 0.002484087133780122, 0.005204141139984131, -0.01413226779550314, 0.01590845361351967, -0.009318544529378414, 0.045751821249723434, -0.04956161603331566, 0.02584480307996273, 0.049046777188777924, -0.028899500146508217, 0.013523044064640999, 0.04702175408601761, 0.009069707244634628, -0.005272786132991314, -0.10715468227863312, 0.024729324504733086, 0.05247902125120163, -0.022137979045510292, 0.023665327578783035, -0.04362383112311363, 0.022292429581284523, -0.006173750385642052, -0.024300292134284973, -0.05059128627181053, 0.03099317103624344, 0.02371681109070778, -0.017744705080986023, -0.025038225576281548, 0.0014629943761974573, 0.03485444560647011, -0.048257362097501755, 0.05035103112459183, 0.027372151613235474, -0.05316547304391861, -0.004616369027644396, 0.0009964235359802842, -0.017169805243611336, 0.00026640118448995054, -0.02318481355905533, -0.045236986130476, 0.023819778114557266, 0.03409935161471367, 0.08100097626447678, 0.06394272297620773, -0.009498737752437592, 0.02224094606935978, -0.007508035283535719, -0.0044619180262088776, -0.054092176258563995, -0.0054186563938856125, 0.06857625395059586, -0.006495523266494274, 0.004848045762628317, 0.008267419412732124, -0.03717121109366417, -0.07640177011489868, -0.04880652204155922, -0.007769743911921978, 0.04777684807777405, -0.01326562650501728, 0.012879498302936554, -0.010545572265982628, -0.03440825268626213, -0.006804425269365311, -0.019992826506495476, 0.010811571031808853, 0.019872697070240974, -0.01944366656243801, 0.039127591997385025, -0.0025698933750391006, -0.045305632054805756, -0.004672143142670393, 0.015402198769152164, 0.018705733120441437, -0.013136916793882847, 0.024574872106313705, -0.035523734986782074, 0.013171239756047726, 0.031130461022257805, -0.03433961048722267, -0.0085934828966856, 0.047124721109867096, 0.016552001237869263, -0.04362383112311363, -0.02531280554831028, 0.035901281982660294, -0.022464042529463768, -0.07018940895795822, 0.011240601539611816, -0.04801710322499275, -0.03485444560647011, 0.00977331679314375, -0.051517993211746216, 0.05141502618789673, 0.05282224714756012, 0.0334300622344017, 0.02599925361573696, -0.006495523266494274, 0.021005338057875633 ]
23,354
parutils.testing
ttry
null
def ttry(f, e_ref, *args, **kwargs): exception_occured = False try: f(*args, **kwargs) except Exception as e: exception_occured = True if like(str(e), e_ref): log(f"[ttry] Exception caught match expected ('{e_ref}')") else: s = f"[ttry] Exception caught ('{str(e)}') don't match expected ('{e_ref}')" log(s) raise Exception(s) if not exception_occured: s = "[ttry] No exception was caught" log(s) raise Exception(s)
(f, e_ref, *args, **kwargs)
[ 0.04518677294254303, -0.05662045255303383, 0.03649279475212097, 0.039013318717479706, -0.04142425209283829, -0.022903885692358017, 0.003244260558858514, 0.01333320327103138, 0.03132389485836029, -0.04241054505109787, 0.03820967301726341, 0.0467575341463089, -0.02599061280488968, -0.04515024274587631, 0.00008561560389352962, 0.025186968967318535, -0.07083036005496979, 0.044237010180950165, 0.034538473933935165, -0.03395400568842888, -0.050958406180143356, 0.035214267671108246, 0.03221886232495308, -0.024803411215543747, 0.0141916424036026, 0.012703072279691696, 0.012958777137100697, -0.013104895129799843, 0.0755426436662674, 0.006488521117717028, 0.02997230924665928, -0.0722915306687355, -0.07382576167583466, 0.012712204828858376, -0.03842884674668312, -0.02944263443350792, -0.0798531025648117, 0.044419657438993454, -0.03309556841850281, -0.03842884674668312, -0.035415180027484894, -0.004894929472357035, 0.010027299635112286, 0.01974410004913807, -0.025533996522426605, -0.023269178345799446, -0.016995267942547798, -0.009853784926235676, -0.05110452324151993, 0.0005687729571945965, 0.017753250896930695, -0.008739640936255455, 0.03550650179386139, 0.015187066048383713, -0.00056820223107934, 0.03992655128240585, -0.007725951727479696, 0.008251060731709003, 0.01593591645359993, -0.03689461573958397, 0.0447118915617466, 0.05724145099520683, 0.008091244846582413, 0.05906791612505913, -0.048547469079494476, -0.03512294590473175, 0.018593424931168556, -0.01178070716559887, -0.01974410004913807, -0.0023584244772791862, -0.003079878631979227, 0.020182451233267784, 0.0035730244126170874, -0.024511175230145454, 0.026958640664815903, -0.022538593038916588, -0.028949487954378128, 0.019689304754137993, 0.004840135108679533, 0.024456381797790527, -0.016858283430337906, -0.025387879461050034, -0.03426450490951538, -0.008876625448465347, 0.011972486041486263, -0.005196296144276857, -0.018118543550372124, -0.018593424931168556, -0.011963353492319584, -0.006890343502163887, -0.015890255570411682, -0.045771241188049316, -0.05632821470499039, -0.010401724837720394, -0.012821792624890804, 0.005620949435979128, 0.0747389942407608, -0.04620959237217903, -0.006241948343813419, -0.02045642025768757, 0.06746965646743774, 0.013260144740343094, 0.02129659615457058, -0.03691288083791733, 0.030246280133724213, -0.035780470818281174, 0.010264739394187927, -0.04270277917385101, 0.05037393793463707, 0.016228152438998222, -0.04445618763566017, -0.07714992761611938, 0.046976711601018906, 0.015844594687223434, 0.027762286365032196, -0.036602381616830826, 0.04657488688826561, -0.021844536066055298, -0.011570663191378117, -0.007127784192562103, 0.13019050657749176, -0.024803411215543747, -0.003675763262435794, 0.03168918937444687, 0.009150595404207706, 0.020127657800912857, -0.030775954946875572, -0.010100358165800571, 0.040218785405159, -0.015826329588890076, 0.0228673554956913, 0.028821635991334915, -0.01661171019077301, 0.025570526719093323, -0.032821595668792725, 0.11017243564128876, -0.07788051664829254, 0.08847402036190033, -0.038684554398059845, -0.07802663743495941, -0.008237362839281559, -0.01299530640244484, 0.015488432720303535, -0.008684846572577953, 0.012520425952970982, 0.04120507836341858, -0.04518677294254303, 0.048072587698698044, 0.008273892104625702, 0.020529478788375854, 0.07108606398105621, 0.011634589172899723, -0.019689304754137993, 0.010100358165800571, -0.04661141708493233, 0.01247476413846016, 0.028858166188001633, -0.008429141715168953, -0.01595418155193329, 0.02997230924665928, 0.029168665409088135, -0.009009044617414474, 0.04343336448073387, 0.014310362748801708, 0.031415216624736786, -0.00838804617524147, -0.018593424931168556, 0.024492911994457245, 0.000583613000344485, -0.006840115878731012, -0.0308307483792305, 0.06483954936265945, -0.013022704049944878, 0.007922297343611717, 0.013451923616230488, 0.034008800983428955, -0.001370991114526987, -0.018995247781276703, -0.012328647077083588, 0.02997230924665928, 0.0021369655150920153, -0.043360307812690735, -0.008077546954154968, -0.003362980904057622, 0.027488315477967262, 0.040584079921245575, 0.026958640664815903, -0.0017568321200087667, 0.0059725441969931126, -0.0017088874010369182, 0.01954318769276142, 0.01471218466758728, 0.026045408099889755, 0.05494010075926781, 0.027597904205322266, 0.0028081918135285378, -0.050629641860723495, -0.019945010542869568, 0.03864802420139313, 0.008502200245857239, -0.043506424874067307, 0.04087631404399872, -0.016209887340664864, 0.01888566091656685, -0.008022752590477467, -0.0036963107995688915, 0.0757618173956871, -0.01833772100508213, -0.058081623166799545, 0.011406281031668186, -0.028657253831624985, -0.06907694786787033, -0.04967987909913063, 0.03912290558218956, 0.07663851976394653, 0.0033059038687497377, 0.01575327105820179, 0.017753250896930695, 0.02131485939025879, 0.06367061287164688, 0.02045642025768757, 0.03285812586545944, 0.013789819553494453, -0.029314782470464706, 0.046136535704135895, -0.015497565269470215, 0.020730391144752502, -0.0007659742259420455, -0.004990818910300732, -0.050958406180143356, -0.011634589172899723, 0.010493048466742039, -0.014657391235232353, 0.008885757997632027, 0.05033740773797035, -0.022429004311561584, 0.05625515803694725, -0.06681213527917862, -0.00907753687351942, -0.03842884674668312, 0.017250973731279373, 0.007100387010723352, 0.00553875882178545, -0.015862857922911644, 0.048730116337537766, -0.017588868737220764, 0.03641973435878754, 0.05296751856803894, -0.07503122836351395, -0.0008133482187986374, 0.027616169303655624, 0.06527790427207947, -0.03391747549176216, -0.040437959134578705, -0.060638677328825, -0.053771164268255234, 0.04591735824942589, -0.021698417142033577, 0.05110452324151993, 0.03221886232495308, 0.009917710907757282, -0.03810008242726326, 0.05245610699057579, -0.00609583081677556, -0.04810911789536476, -0.08752425760030746, -0.06798107177019119, -0.009314977563917637, 0.05468439683318138, -0.018136808648705482, 0.038684554398059845, 0.002625545021146536, -0.009981637820601463, 0.027780549600720406, -0.07382576167583466, -0.019634511321783066, 0.04365254193544388, 0.016575179994106293, 0.0022899319883435965, 0.06564319133758545, -0.022629916667938232, 0.01642906293272972, 0.007725951727479696, 0.0030410662293434143, -0.07978004217147827, 0.02027377486228943, 0.0014588898047804832, 0.00679445406422019, 0.045442476868629456, 0.022940415889024734, 0.006652902811765671, -0.04463883489370346, 0.03481244668364525, -0.019506659358739853, -0.05106799304485321, 0.021899329498410225, -0.010173416696488857, -0.0855516716837883, 0.04763423651456833, 0.0020376513712108135, 0.040218785405159, -0.021588830277323723, 0.04566165432333946, -0.013433658517897129, -0.004472558852285147, -0.049972113221883774, 0.046282652765512466, -0.021917594596743584, -0.05128717049956322, -0.009205389767885208, 0.0016860566101968288, -0.0067670573480427265, -0.07262029498815536, -0.0522734634578228, 0.027269139885902405, 0.043396834284067154, -0.025040851905941963, -0.006570712197571993, -0.010301269590854645, 0.02650202438235283, -0.0061551909893751144, 0.028164107352495193, 0.016474725678563118, -0.007072990294545889, 0.02577143721282482, -0.025899291038513184, -0.016136828809976578, -0.022429004311561584, -0.01471218466758728, 0.041972193866968155, -0.01229211688041687, -0.03285812586545944, 0.028858166188001633, -0.004225986078381538, -0.039378609508275986, -0.009954240173101425, 0.016703033819794655, -0.03353391960263252, 0.01489483192563057, -0.017926765605807304, 0.0007260203128680587, 0.03413665294647217, 0.0021700700744986534, -0.004289912525564432, -0.005716838873922825, 0.07097647339105606, -0.024620763957500458, 0.03682155907154083, 0.050118230283260345, 0.0061003970913589, 0.02874857746064663, 0.003584439866244793, -0.02025550976395607, 0.016018107533454895, -0.0498259961605072, 0.05822774022817612, 0.003146087983623147, -0.025479203090071678, 0.00354562746360898, 0.014474743977189064, -0.018584292382001877, -0.0072191073559224606, -0.04255666211247444, -0.02511391043663025, -0.013780687004327774, 0.013415394350886345, 0.03751561418175697, -0.007187144365161657, -0.04949723184108734, 0.04262971878051758, 0.012858321890234947, 0.004458860494196415, 0.020894773304462433, -0.02005459927022457, 0.0007945128018036485, -0.0032556760124862194, 0.0577893890440464, -0.026520289480686188, 0.007945127785205841, 0.060638677328825, 0.04522330313920975, 0.028967753052711487, -0.01890392415225506, -0.06436466425657272, -0.006739660166203976, -0.02113221399486065, -0.018830865621566772, 0.01279439590871334, 0.04610000550746918, 0.021077418699860573, -0.04310460016131401, -0.04343336448073387, 0.06754271686077118, -0.019798893481492996, 0.003420057939365506, -0.009191690944135189, -0.026958640664815903, -0.01489483192563057, -0.03685808554291725, 0.0588122121989727, -0.03413665294647217, 0.045259833335876465, -0.03861149400472641, -0.003456587204709649, 0.0271595511585474, 0.12018147110939026, -0.006502219475805759, -0.030867278575897217, 0.02891295962035656, -0.0027648131363093853, -0.06429161131381989, -0.01091313548386097, -0.04690365120768547, -0.05486704409122467, -0.07243765145540237, 0.040620606392621994, -0.049058880656957626, 0.013040968216955662, -0.030173221603035927, -0.05351546034216881, -0.018456440418958664, -0.017753250896930695, -0.0008361790678463876, 0.046830590814352036, 0.05545151233673096, -0.06436466425657272, -0.020346833392977715, 0.012703072279691696, 0.046282652765512466, 0.03930555284023285, -0.023597942665219307, -0.003525079693645239, 0.01386287808418274, -0.019634511321783066, 0.04241054505109787, -0.02529655583202839, -0.05833733081817627, -0.034173183143138885, 0.031415216624736786, 0.03824620321393013, -0.01572587341070175, -0.00019534626335371286, 0.0014246435603126884, 0.016903944313526154, 0.010620900429785252, -0.01867561601102352, 0.000079836550867185, -0.003210014197975397, -0.013634569942951202, 0.0016289794584736228, 0.0249129980802536, 0.022593386471271515, -0.05015476047992706, 0.010940532200038433, -0.0010964504908770323, -0.01711398735642433, -0.028657253831624985, 0.017789781093597412, 0.02284909226000309, 0.002869834890589118, -0.02078518457710743, 0.03820967301726341, 0.05077575892210007, -0.04171648621559143, 0.01498615462332964, -0.04610000550746918, 0.04832829535007477, -0.031196042895317078, 0.016027240082621574, -0.025899291038513184, 0.07335088402032852, -0.032638952136039734, -0.027250874787569046, 0.022575121372938156, 0.0018675616011023521, 0.04105895757675171, 0.027049964293837547, -0.01697700284421444, 0.07291252911090851, 0.020511215552687645, 0.060675207525491714, -0.004458860494196415, 0.03704073280096054, 0.00610496336594224, 0.003173484932631254, -0.006680299993604422, 0.012776130810379982, -0.05483051389455795, 0.04091284051537514, 0.021497506648302078, -0.028255430981516838, -0.010173416696488857, 0.026209790259599686, 0.051360227167606354, 0.02080344967544079, -0.0698440670967102, -0.03254762664437294, 0.03820967301726341, -0.04069366678595543, 0.01488569937646389, 0.04160689935088158, -0.017908500507473946, 0.011479339562356472, -0.014739582315087318, 0.02252032794058323, -0.046282652765512466, 0.044419657438993454, -0.01849297061562538, 0.032456304877996445, -0.016301210969686508, 0.024310264736413956, 0.02200891636312008, 0.04672100394964218, 0.045625124126672745, -0.017095724120736122, -0.05263875424861908, -0.0030045367311686277, -0.07017283141613007, -0.015552359633147717, 0.04211831092834473, 0.06447425484657288, 0.013534114696085453, 0.01957971788942814, 0.014356023631989956, 0.030008839443325996, -0.051506344228982925, 0.09979811310768127, 0.040072668343782425, 0.04792647063732147, 0.015543227083981037, -0.05278487130999565, -0.032967712730169296, 0.009013610891997814, -0.09395342320203781, 0.01729663461446762, -0.007693988736718893, -0.025552261620759964, -0.019835421815514565, -0.022118505090475082, -0.027250874787569046, 0.02942436933517456, 0.027104757726192474, -0.017607133835554123, -0.04694018140435219, -0.012100338004529476, -0.0702458918094635, -0.00410726573318243, -0.01905004121363163, -0.05092187598347664, -0.001558203948661685, 0.0377713218331337, -0.0353238545358181, 0.0730951726436615, 0.012410837225615978, -0.0027876440435647964, 0.023232650011777878, 0.029533958062529564, 0.056547392159700394, -0.004522786941379309, -0.031269099563360214, 0.012922247871756554, 0.006447425577789545, 0.026209790259599686, -0.011488472111523151, -0.01590852066874504, -0.05950626730918884, 0.09643741697072983, 0.004602694883942604, -0.03992655128240585, -0.03128736466169357, -0.015680212527513504, 0.02542440965771675, 0.02146097831428051, -0.01004556380212307, -0.029826192185282707, -0.0036666307132691145, -0.014830905012786388, -0.04496759548783302, 0.033680036664009094, -0.04069366678595543, -0.029826192185282707, -0.08956990391016006, -0.04547900706529617, 0.018830865621566772, 0.028456343337893486, 0.04599041864275932, 0.018045485019683838, 0.005981676746159792, -0.10951491445302963, 0.03640146926045418, -0.07236459106206894, -0.07693075388669968, 0.02407282404601574, -0.03930555284023285, 0.05501316115260124, 0.02040162682533264, 0.06250166893005371, 0.016703033819794655, 0.015497565269470215, 0.00908210314810276, -0.006045603193342686, 0.0027328499127179384, 0.03391747549176216, -0.053588517010211945, -0.03322342038154602, -0.01798155903816223, 0.041095487773418427, -0.035908326506614685, -0.008150605484843254, 0.023232650011777878, 0.004550183657556772, 0.04091284051537514, 0.030757689848542213, 0.02147924154996872, -0.03444715216755867, -0.0012591200647875667, -0.05172552168369293, 0.05402686819434166, 0.017908500507473946, 0.017387958243489265, -0.0015136838192120194, 0.06443772464990616, -0.035944852977991104, 0.019981540739536285, 0.05888526886701584, -0.008305855095386505, -0.011753309518098831, -0.08328685909509659, -0.05545151233673096, -0.042483601719141006, -0.007566136308014393, 0.0030159521847963333, 0.008566126227378845, -0.055159278213977814, -0.05629168823361397, 0.0042853462509810925, 0.04449271410703659, 0.0453328900039196, -0.0394151397049427, 0.03240150958299637, -0.044054362922906876, 0.010292137041687965, -0.04434659704566002, 0.013442791067063808, 0.020292039960622787, 0.006027338560670614, 0.025862760841846466, -0.10564280301332474, 0.07170706242322922, 0.014383421279489994, 0.044383127242326736, 0.06772536784410477, 0.003931468352675438, -0.005876654759049416, -0.04153383895754814, 0.02944263443350792, 0.01505008153617382, -0.02200891636312008, -0.01090400293469429, 0.07291252911090851, -0.027579639106988907, 0.04617306590080261, -0.0377713218331337, 0.02058427408337593, 0.02252032794058323, -0.04277583584189415, 0.024675557389855385, 0.00018778354569803923, 0.0331868901848793, 0.019506659358739853, -0.01677609235048294, -0.030903806909918785, -0.01143367774784565, -0.013771554455161095, 0.03545170649886131, -0.006337837781757116, 0.01852036640048027, 0.04270277917385101, -0.05037393793463707, -0.054647866636514664, 0.009753329679369926, 0.05106799304485321, -0.0665564239025116, -0.02027377486228943, -0.027214346453547478, 0.018812602385878563, -0.03883067145943642, 0.04938764497637749, 0.04394477605819702, -0.040584079921245575, -0.008954250253736973, -0.03791743889451027, -0.06162496656179428, 0.006981667131185532, -0.05899485573172569, 0.026410700753331184, -0.010977061465382576, -0.02701343409717083, 0.01732403226196766, 0.007981657050549984, -0.01590852066874504, 0.01203641202300787, 0.0231778547167778, -0.011351487599313259, 0.058410387486219406, -0.0730951726436615, -0.004159776493906975, -0.016840018332004547, -0.009652873501181602, -0.06608154624700546, -0.05139675736427307, 0.0015935917617753148, 0.0432872474193573, 0.05143328756093979, -0.05052005499601364, -0.006844682153314352, -0.003143804846331477, 0.0004834427672903985, -0.04463883489370346, -0.030191484838724136, -0.02164362370967865, -0.028967753052711487, -0.007725951727479696, -0.020164186134934425, 0.00019220702233724296, -0.03514120727777481, -0.023853648453950882, -0.014392553828656673, 0.006205418612807989, -0.0032876390032470226, 0.05939668044447899, 0.0011558106634765863, -0.017972426488995552, -0.015497565269470215, -0.012648277916014194, -0.02942436933517456, -0.02927825227379799, 0.005292185582220554, -0.00945196207612753, 0.014757846482098103, 0.05059311166405678, 0.04686712101101875, -0.051323700696229935, -0.05212734267115593, 0.06736007332801819, 0.03894025832414627, -0.04087631404399872, 0.07181665301322937, -0.012693939730525017, -0.02803625538945198, -0.010794415138661861, -0.0048218704760074615, -0.011707647703588009, 0.009762461297214031, 0.061551909893751144, -0.03959778696298599, 0.03861149400472641, -0.01572587341070175, -0.001776238321326673, -0.01073962077498436, -0.006520484108477831, 0.025314820930361748, -0.0048127383925020695, 0.007388055790215731, -0.023159591481089592, 0.026520289480686188, -0.028511136770248413, 0.06407243013381958 ]
23,355
parutils.logging.core
update_logs
null
def update_logs(logs): from parutils.file import save_list logger = get_logger() logger.logs = logs save_list(logs + [''], logger.log_path)
(logs)
[ -0.00723994430154562, 0.01849132776260376, -0.04201455041766167, 0.03937544301152229, -0.012606124393641949, -0.015007710084319115, -0.039234694093465805, 0.02874865010380745, 0.007556636817753315, 0.12449537217617035, 0.002239940222352743, -0.05943264067173004, 0.052746910601854324, 0.05471744015812874, 0.01470861118286848, -0.04254237189888954, -0.04043108597397804, -0.008110849186778069, -0.031810011714696884, 0.04138116538524628, -0.011761610396206379, -0.006936447229236364, -0.0004398508172016591, 0.04627230390906334, 0.012773267924785614, -0.03740491345524788, 0.0387420579791069, -0.006866071373224258, 0.01072356291115284, -0.0014471091562882066, 0.007468666881322861, -0.0535210482776165, -0.03502972051501274, -0.008748632855713367, -0.011981535702943802, 0.020655393600463867, 0.006162310019135475, -0.00008061640983214602, -0.032478585839271545, 0.024068636819720268, 0.034589868038892746, 0.03409723564982414, 0.01262371800839901, -0.031053466722369194, 0.03761604055762291, 0.0551396980881691, -0.020461859181523323, 0.050213370472192764, 0.03005060739815235, -0.0403607115149498, -0.013978458940982819, 0.00835716538131237, 0.012518154457211494, -0.02359359711408615, 0.05281728506088257, 0.01857929863035679, 0.06150873750448227, -0.0017638017889112234, -0.0050978707149624825, -0.061825431883335114, 0.0017890931339934468, -0.04078296571969986, 0.019441405311226845, 0.0025753264781087637, 0.06917973607778549, -0.008678256534039974, 0.009940627962350845, 0.03047286346554756, 0.01009017787873745, -0.029346846044063568, -0.038566119968891144, -0.10246764868497849, -0.005528924521058798, -0.018227417021989822, -0.08670338988304138, 0.0638311505317688, -0.03481858968734741, 0.053169164806604385, -0.011022661812603474, 0.004015837796032429, -0.039445821195840836, -0.0031779222190380096, 0.010987473651766777, 0.04866509512066841, 0.010591607540845871, -0.022010134533047676, -0.023030588403344154, 0.02862549014389515, 0.00998461339622736, 0.003400046844035387, 0.0043941098265349865, 0.011216195300221443, -0.01752365566790104, -0.04820764809846878, -0.01755884476006031, -0.0363844595849514, -0.032900840044021606, -0.013169133104383945, -0.015896208584308624, 0.010688374750316143, -0.03128219023346901, 0.0002597868733573705, 0.007899720221757889, -0.009923034347593784, -0.041944172233343124, -0.08733677864074707, -0.048066895455121994, -0.028132857754826546, 0.02874865010380745, 0.0179459135979414, -0.04402026906609535, 0.022168481722474098, -0.0032856855541467667, -0.061227232217788696, 0.018895991146564484, 0.009122505784034729, 0.006421821657568216, -0.00367715279571712, -0.022449985146522522, 0.011049052700400352, 0.01582583226263523, 0.039445821195840836, -0.020866522565484047, 0.034044452011585236, 0.015157259069383144, -0.03140534833073616, 0.0024741608649492264, 0.04285906255245209, -0.014506279490888119, -0.01010777149349451, 0.0054937368258833885, -0.024965932592749596, -0.013969661667943, 0.01285244058817625, 0.0896591916680336, -0.10225651413202286, -0.02401585504412651, 0.01879042759537697, -0.01831538788974285, -0.02786894701421261, -0.03779198229312897, 0.019986821338534355, -0.001705521484836936, -0.0038662885781377554, 0.018632080405950546, 0.031088655814528465, -0.013125148601830006, 0.03673633933067322, -0.04229605570435524, 0.011911160312592983, 0.012263040989637375, -0.03291843459010124, -0.06347926706075668, -0.013371464796364307, -0.03705303370952606, -0.05682872608304024, -0.04226086661219597, -0.014638234861195087, 0.020831335335969925, -0.018033882603049278, 0.04416102170944214, -0.07269854098558426, 0.029857072979211807, 0.004246759694069624, -0.047855768352746964, 0.04648343473672867, -0.03891799971461296, 0.07853975892066956, -0.026954058557748795, 0.021499907597899437, 0.03119421936571598, 0.02111283876001835, -0.013345073908567429, 0.012562138959765434, -0.012914019636809826, 0.005907196551561356, -0.017611626535654068, -0.03444911539554596, 0.033323097974061966, 0.0007576430216431618, -0.09141859412193298, 0.0154915452003479, 0.03363978862762451, 0.0717836543917656, 0.015465154312551022, 0.033323097974061966, -0.06217731162905693, 0.03821424022316933, -0.06998906284570694, 0.027042027562856674, -0.011040255427360535, 0.005212232004851103, 0.007191560696810484, -0.07118545472621918, 0.004064221400767565, 0.04792614281177521, -0.06812409311532974, -0.05566751956939697, 0.019529376178979874, 0.006254678592085838, 0.006874868180602789, 0.049791112542152405, 0.05499894544482231, -0.043070193380117416, 0.06330332905054092, 0.0017747980309650302, 0.01979328691959381, -0.007583028171211481, -0.03325271978974342, 0.007222350221127272, 0.06105129420757294, 0.061860617250204086, -0.0572509802877903, -0.03327031433582306, -0.020250732079148293, -0.0061315204948186874, -0.03979770094156265, 0.014515076763927937, -0.016397638246417046, 0.0004211571649648249, 0.02431495301425457, -0.009562356397509575, -0.08930730819702148, 0.042471993714571, -0.0005959978443570435, 0.049791112542152405, 0.031810011714696884, 0.00723994430154562, -0.00899055041372776, -0.013239509426057339, 0.006430618930608034, 0.032408207654953, 0.003947661258280277, -0.01616011932492256, 0.04229605570435524, 0.025775257498025894, -0.04479440674185753, 0.009544762782752514, 0.033111970871686935, 0.019951632246375084, -0.060769788920879364, -0.01798110082745552, 0.004592042416334152, 0.03571588546037674, 0.012456575408577919, -0.044090647250413895, -0.006844078656286001, 0.006646145600825548, 0.001316253561526537, 0.007138778921216726, 0.06914454698562622, 0.026778116822242737, -0.004158789291977882, 0.013389058411121368, 0.049579985439777374, 0.0013668363681063056, 0.003593581262975931, 0.04145153984427452, 0.014726204797625542, -0.07188921421766281, 0.007266335655003786, 0.001958435634151101, 0.008159232325851917, -0.004539260175079107, -0.020866522565484047, 0.007798554841428995, 0.05088194087147713, -0.021218404173851013, 0.00032631432986818254, 0.0699186846613884, 0.06900379806756973, 0.022696301341056824, 0.006518588867038488, -0.008260398171842098, 0.017594031989574432, -0.01470861118286848, 0.017215760424733162, -0.06330332905054092, -0.015201244503259659, 0.03810867294669151, 0.03744010254740715, 0.019230278208851814, 0.02841436304152012, 0.01511327363550663, 0.07579509168863297, -0.019071931019425392, 0.011093037202954292, 0.01331868302077055, -0.04032552242279053, -0.010142959654331207, 0.03184519708156586, 0.04799652099609375, -0.029012558981776237, -0.009958222508430481, -0.032654523849487305, 0.03263692930340767, -0.02452608197927475, 0.0015152860432863235, 0.01224544644355774, 0.0017725988291203976, -0.029364440590143204, 0.018843209370970726, 0.02913571707904339, -0.03219708055257797, 0.042190488427877426, -0.019230278208851814, -0.06689251214265823, -0.012131085619330406, 0.0633385181427002, -0.02971632033586502, 0.021623065695166588, 0.025212248787283897, -0.05619534105062485, 0.032531365752220154, -0.01072356291115284, -0.015007710084319115, -0.01861448585987091, 0.022995401173830032, 0.012007927522063255, 0.028942182660102844, -0.0226611141115427, 0.07368380576372147, -0.006439415737986565, 0.017418092116713524, -0.016828691586852074, -0.04627230390906334, 0.01547395158559084, 0.05077637732028961, -0.02693646401166916, -0.005225427448749542, 0.013608983717858791, -0.018843209370970726, 0.035522352904081345, 0.006668138317763805, 0.009280852042138577, -0.002885421272367239, -0.04402026906609535, -0.03979770094156265, 0.0666813850402832, 0.0025731271598488092, -0.04145153984427452, -0.011550482362508774, -0.02929406426846981, 0.04310537874698639, -0.019740505144000053, 0.026954058557748795, 0.061192046850919724, 0.03399167209863663, -0.04229605570435524, 0.0019914244767278433, 0.024578863754868507, -0.025511346757411957, 0.000052266648708609864, 0.019230278208851814, 0.04549816995859146, -0.03161647543311119, 0.01331868302077055, -0.07495057582855225, 0.016731925308704376, -0.07220590859651566, -0.05580827221274376, -0.004763584118336439, 0.0006537282606586814, -0.012087100185453892, -0.02223885804414749, 0.05309879034757614, -0.006140317302197218, -0.054013680666685104, 0.07086876034736633, -0.03958657383918762, 0.021834194660186768, -0.013978458940982819, 0.06625912338495255, 0.04898178577423096, -0.03170444816350937, 0.0743875727057457, -0.024754803627729416, 0.0037739200051873922, -0.04884103313088417, 0.016696736216545105, 0.0177259873598814, -0.03765122964978218, 0.028220828622579575, 0.01069717202335596, 0.07164289802312851, 0.0224147979170084, 0.04613155499100685, -0.022608332335948944, 0.030877526849508286, 0.040290333330631256, 0.028080075979232788, 0.03517046943306923, -0.049826301634311676, -0.02697165124118328, -0.04627230390906334, -0.022573143243789673, 0.03325271978974342, 0.04349244758486748, -0.010609202086925507, -0.07009462267160416, -0.0268836822360754, 0.022256450727581978, 0.027798570692539215, 0.0018187831155955791, -0.02727075107395649, 0.0017703995108604431, -0.05601939931511879, -0.027042027562856674, -0.010591607540845871, -0.011321759782731533, 0.046800125390291214, -0.01942381262779236, 0.039234694093465805, -0.028291204944252968, 0.030930308625102043, 0.03810867294669151, 0.009518371894955635, -0.06052347272634506, 0.022977806627750397, 0.026566989719867706, -0.03810867294669151, -0.0055641126818954945, 0.02684849314391613, 0.09360025078058243, 0.047257572412490845, -0.02186938188970089, -0.029346846044063568, -0.007407087832689285, -0.021922163665294647, 0.009192882105708122, 0.011981535702943802, -0.0014669024385511875, -0.029733914881944656, 0.013600187376141548, 0.04250718280673027, -0.03538160026073456, 0.0387420579791069, 0.01013416238129139, -0.05665278434753418, 0.056969478726387024, 0.03052564710378647, -0.02190457098186016, 0.026074355468153954, -0.03694747015833855, -0.014567858539521694, 0.04275349900126457, -0.02259073778986931, -0.023839913308620453, -0.0013426445657387376, 0.019617347046732903, -0.07030575722455978, 0.00972949992865324, -0.02684849314391613, -0.01984606869518757, 0.08156593143939972, -0.0013107553822919726, 0.02389269694685936, -0.028220828622579575, 0.022819459438323975, 0.004723997786641121, 0.03930506855249405, -0.009694311767816544, 0.022256450727581978, -0.020162761211395264, 0.017910724505782127, -0.10155275464057922, 0.04546298086643219, -0.026109544560313225, 0.05218390002846718, -0.012861237861216068, 0.10781623423099518, 0.004583245608955622, 0.0174796711653471, -0.02528262510895729, -0.049157727509737015, -0.006786898244172335, 0.04972073435783386, -0.03293602913618088, -0.043703578412532806, 0.01506928913295269, -0.0828327015042305, -0.027763383463025093, 0.025546535849571228, -0.0009121406474150717, -0.0212359968572855, -0.05433037132024765, 0.010292508639395237, -0.020321108400821686, 0.03339347243309021, -0.027622630819678307, -0.005550917237997055, -0.08487361669540405, -0.04479440674185753, -0.017954710870981216, -0.047890957444906235, -0.06238843873143196, -0.015720268711447716, 0.007833742536604404, -0.007336711511015892, -0.022977806627750397, 0.021640660241246223, -0.03217948600649834, -0.012993193231523037, 0.006800093688070774, 0.030490458011627197, -0.0019254469079896808, 0.05070600286126137, 0.024684427306056023, -0.06084016337990761, -0.018561704084277153, -0.007552238646894693, 0.0073982905596494675, -0.023100964725017548, -0.01295800507068634, -0.02727075107395649, -0.04996705427765846, -0.06330332905054092, -0.0005627341452054679, 0.05243021622300148, 0.007085996679961681, -0.037088219076395035, 0.03779198229312897, 0.026690147817134857, -0.024561269208788872, -0.015773050487041473, -0.02667255327105522, -0.007319117430597544, -0.012087100185453892, -0.04437214881181717, 0.08346609026193619, -0.041557103395462036, -0.003375855041667819, -0.0014702012995257974, -0.021851789206266403, 0.02756984904408455, 0.08149556070566177, 0.03107106126844883, -0.08142518252134323, -0.026901274919509888, 0.0004032882279716432, -0.03499453142285347, -0.0307367742061615, 0.020321108400821686, -0.05003742873668671, -0.03684190288186073, 0.0349593423306942, -0.03786235675215721, -0.032742492854595184, 0.07048169523477554, 0.015095680020749569, 0.0018803622806444764, 0.009940627962350845, -0.020972086116671562, 0.007209154777228832, -0.031247001141309738, -0.035856638103723526, -0.03715859726071358, -0.016300871968269348, 0.008159232325851917, 0.007688592188060284, 0.010688374750316143, -0.030578428879380226, -0.0038750856183469296, 0.029821885749697685, 0.004246759694069624, -0.026074355468153954, -0.04475921764969826, 0.05024855583906174, 0.016107337549328804, 0.009588747285306454, 0.059925273060798645, 0.05605458840727806, 0.006778100971132517, -0.07234666496515274, 0.01570267416536808, -0.015271619893610477, 0.04229605570435524, 0.0018913585226982832, 0.0654498040676117, -0.010785141959786415, -0.0026457025669515133, 0.02026832476258278, -0.02047945372760296, -0.024420516565442085, 0.06826484948396683, -0.0026105146389454603, 0.008757430128753185, 0.04972073435783386, 0.013177930377423763, 0.09099633991718292, -0.032900840044021606, 0.06822966039180756, 0.002577525796368718, 0.022449985146522522, -0.04095890745520592, 0.005550917237997055, 0.04359801113605499, 0.006408626213669777, -0.021218404173851013, 0.03930506855249405, -0.0337805412709713, 0.0006850676145404577, -0.013406652957201004, -0.07516171038150787, -0.006426220294088125, -0.07305042445659637, 0.03466024249792099, 0.03272490203380585, 0.025212248787283897, 0.08086217194795609, 0.0134418411180377, 0.011497700586915016, 0.06745552271604538, -0.009782281704246998, 0.025511346757411957, 0.028396768495440483, 0.019687721505761147, -0.028168046846985817, 0.05024855583906174, 0.03517046943306923, -0.037510477006435394, -0.027464285492897034, -0.049404043704271317, -0.038354989141225815, -0.08290307968854904, -0.013732142746448517, -0.0214823130518198, -0.00011126851313747466, -0.025423377752304077, -0.02667255327105522, 0.001817683456465602, -0.019195089116692543, 0.03504731133580208, 0.000225286086788401, -0.007882126607000828, 0.013142742216587067, -0.021605471149086952, -0.11464271694421768, 0.04057183861732483, -0.0035429983399808407, 0.080228790640831, 0.01600177213549614, 0.008928971365094185, -0.08881467580795288, 0.0296811331063509, -0.024842774495482445, -0.040044017136096954, -0.035522352904081345, -0.003908074460923672, -0.016371246427297592, -0.0010517932241782546, -0.03184519708156586, -0.05830662325024605, 0.07305042445659637, 0.011040255427360535, 0.0490521639585495, -0.005616894923150539, -0.017717190086841583, 0.034255582839250565, 0.033534225076436996, -0.0340268574655056, -0.021183215081691742, -0.00610952777788043, -0.0009764687856659293, -0.004229165613651276, -0.01739170029759407, -0.004921930376440287, 0.04965035989880562, 0.02841436304152012, -0.012614921666681767, 0.05024855583906174, -0.0812140554189682, 0.025546535849571228, -0.0046580201014876366, 0.05440074950456619, -0.017972303554415703, 0.036278896033763885, 0.05098750814795494, 0.01348582562059164, -0.007402689196169376, -0.03803829848766327, 0.04824283719062805, 0.01612493023276329, -0.043668389320373535, -0.0007603921112604439, 0.09099633991718292, 0.0006163409561850131, 0.029857072979211807, 0.035645511001348495, 0.05693428963422775, -0.03934025764465332, 0.0018638678593561053, -0.04454809054732323, 0.018209824338555336, 0.006839680019766092, 0.011392136104404926, -0.013389058411121368, -0.011788002215325832, -0.02723556198179722, -0.011488903313875198, -0.018508922308683395, 0.03596220165491104, 0.0031361363362520933, 0.03905875235795975, 0.0074466741643846035, -0.07685073465108871, -0.032900840044021606, -0.0004189579049125314, -0.0692853033542633, -0.01169123500585556, 0.01798989810049534, 0.019687721505761147, -0.015632297843694687, -0.038812436163425446, 0.03318234533071518, 0.033833324909210205, 0.03529362753033638, -0.0619661808013916, 0.01046844944357872, -0.02287224307656288, 0.009914237074553967, -0.003982848953455687, 0.03128219023346901, -0.004886742681264877, 0.008097653277218342, -0.061227232217788696, -0.04711681976914406, 0.01310755405575037, 0.04380914196372032, -0.016019366681575775, -0.03997364267706871, 0.0038069088477641344, -0.01949418894946575, -0.01734771579504013, -0.018227417021989822, -0.0045128692872822285, -0.016362451016902924, -0.013582592830061913, -0.01873764395713806, -0.01921268366277218, -0.011277775280177593, -0.049192916601896286, 0.013353870250284672, 0.03562791645526886, -0.008497918024659157, -0.06242362782359123, 0.04884103313088417, -0.013125148601830006, -0.08325496315956116, -0.02651420794427395, 0.03680671751499176, -0.004435895476490259, -0.01963493973016739, 0.046201929450035095, 0.022362016141414642, -0.009412807412445545, 0.03863649442791939, -0.011075443588197231, 0.02139434404671192, 0.03418520465493202, 0.059327077120542526, -0.010160554200410843, -0.030543239787220955, 0.03339347243309021, 0.06548498570919037, 0.04025514796376228, -0.021130433306097984, 0.02005719766020775 ]
23,357
parutils.csvl
write_csv_line
Writes a line to a csv file - row: has to be a list
def write_csv_line(row, out_file: TextIOWrapper, quote=False): """Writes a line to a csv file - row: has to be a list """ if not isinstance(row, list): raise Exception(E_WRONG_TYPE_LIST) if quote: row = [f'"{e}"' for e in row] line_out = SEPARATOR.join(row) line_out += '\n' out_file.write(line_out)
(row, out_file: _io.TextIOWrapper, quote=False)
[ 0.0053684827871620655, 0.01844128593802452, -0.025383062660694122, 0.05970629304647446, -0.03143082186579704, -0.03674233332276344, -0.010666846297681332, 0.06675324589014053, -0.03260531648993492, 0.0038850284181535244, 0.03667221590876579, -0.010000715963542461, 0.002791611012071371, 0.027311334386467934, -0.0344809964299202, 0.02832805924117565, -0.0029121278785169125, -0.0014451078604906797, 0.007445756811648607, 0.07148627936840057, 0.007800734136253595, 0.004943386651575565, -0.006043377798050642, -0.018301047384738922, 0.03088740073144436, -0.030466686934232712, 0.02771451696753502, 0.03290332108736038, -0.004487613216042519, -0.04063393548130989, 0.01054413802921772, -0.0050617121160030365, -0.03404275327920914, -0.04238690808415413, -0.002703962381929159, 0.02890654094517231, -0.006757714319974184, -0.005841785576194525, 0.0037228784058243036, 0.018160810694098473, -0.01253376342356205, 0.005662105977535248, 0.041265007108449936, -0.010631786659359932, -0.03302602842450142, 0.01455844845622778, -0.03097504936158657, 0.021053217351436615, -0.0023906182032078505, -0.049013152718544006, 0.008423039689660072, -0.01991378329694271, 0.0038916021585464478, 0.0060127004981040955, -0.04238690808415413, -0.040809232741594315, 0.025698598474264145, 0.006823450792580843, -0.05893498286604881, 0.004654145799577236, 0.014190323650836945, -0.00770432036370039, 0.028503356501460075, 0.039056260138750076, 0.09395940601825714, 0.061529383063316345, -0.020316967740654945, 0.024155979976058006, 0.009430999867618084, 0.04932868480682373, 0.03379733860492706, 0.0012950095115229487, 0.008002325892448425, -0.004470083396881819, 0.0284682959318161, 0.022806189954280853, -0.0644393190741539, 0.024646813049912453, 0.008764869533479214, -0.026434846222400665, 0.004676057957112789, 0.0179855115711689, 0.07050461322069168, 0.019195064902305603, -0.011438154615461826, -0.03148341178894043, 0.028485827147960663, 0.002162731485441327, -0.04754065349698067, 0.06734925508499146, -0.03916143625974655, -0.002460737247020006, -0.0359710231423378, -0.04771595075726509, 0.021842055022716522, -0.021140865981578827, 0.04557732120156288, -0.008168858475983143, -0.04158054292201996, -0.006201145239174366, 0.05332546681165695, 0.02787228487432003, 0.03127305582165718, -0.03267543390393257, -0.03209695219993591, -0.12284841388463974, 0.012560058385133743, -0.008655308745801449, 0.059916649013757706, 0.009194348007440567, -0.04217655211687088, 0.0339200459420681, -0.005201950203627348, -0.020404616370797157, 0.020071551203727722, 0.0029055543709546328, -0.031518470495939255, -0.06882175803184509, 0.02727627381682396, 0.015198283828794956, 0.0999896302819252, -0.014514624141156673, 0.0049959756433963776, 0.0051055364310741425, 0.019703427329659462, -0.05648082122206688, -0.026294609531760216, -0.012340936809778214, 0.05662105605006218, -0.03384992480278015, 0.033657100051641464, -0.029029248282313347, 0.07741133123636246, -0.0604775995016098, -0.019878724589943886, 0.026645204052329063, -0.015329756774008274, 0.023402201011776924, 0.0015327566070482135, -0.0017573563382029533, 0.005960111506283283, -0.08856024593114853, -0.038740724325180054, -0.029379842802882195, 0.057462483644485474, -0.021947233006358147, -0.05034540966153145, 0.039652269333601, -0.025926483795046806, -0.045086488127708435, -0.05318522825837135, -0.0001687237381702289, -0.039652269333601, -0.021123336628079414, -0.01924765296280384, -0.013007066212594509, -0.04526178538799286, -0.00954494345933199, -0.012288346886634827, -0.03775905817747116, 0.015215814113616943, -0.020369557663798332, -0.007507110945880413, 0.06983847916126251, -0.03902120143175125, 0.07748144865036011, -0.032044362276792526, 0.03604114428162575, 0.0007959597278386354, -0.02771451696753502, 0.05602504685521126, -0.06384330987930298, 0.07127591967582703, 0.03209695219993591, -0.056445758789777756, 0.066718190908432, -0.010640551336109638, 0.025646008551120758, 0.03477900102734566, -0.003122484777122736, 0.04045863822102547, -0.003477462101727724, 0.051642611622810364, 0.04638369008898735, 0.03824989125132561, -0.022613363340497017, 0.007349343039095402, -0.0610385537147522, 0.0431932769715786, 0.03902120143175125, -0.004075664561241865, -0.01717914454638958, 0.029064306989312172, -0.04382434859871864, -0.0252077654004097, -0.05213344469666481, -0.009536177851259708, -0.010368840768933296, -0.0433335155248642, 0.04122994840145111, -0.046488869935274124, 0.002159444848075509, 0.03590090572834015, -0.017661212012171745, 0.01643413119018078, 0.044210001826286316, 0.040739115327596664, -0.023209374397993088, -0.027767106890678406, 0.026487436145544052, 0.01057919766753912, -0.0010474019218236208, -0.013077185489237309, -0.014426975511014462, 0.03709292784333229, 0.033727217465639114, -0.0631771832704544, 0.023332083597779274, -0.03824989125132561, 0.0015459038550034165, 0.014698686078190804, -0.008295949548482895, -0.006284411530941725, -0.0035453897435218096, 0.046453807502985, -0.0216667577624321, -0.00039222792838700116, -0.001252280781045556, 0.009851713664829731, -0.014058850705623627, -0.02646990679204464, 0.028257939964532852, 0.012165638618171215, 0.0046409983187913895, -0.03628655895590782, -0.05087130516767502, -0.009764065034687519, 0.058444149792194366, -0.029379842802882195, 0.007629819214344025, -0.02596154436469078, 0.013445310294628143, -0.007130221463739872, -0.022613363340497017, -0.009790359064936638, -0.0023292640689760447, -0.025470711290836334, 0.02270101197063923, -0.046488869935274124, -0.01591700315475464, 0.010605492629110813, 0.027591809630393982, -0.027994994074106216, -0.01837116666138172, 0.003560728393495083, -0.03849530592560768, 0.008721045218408108, -0.028520885854959488, -0.023191845044493675, 0.00328244362026453, 0.006963688880205154, -0.01161345187574625, 0.05332546681165695, -0.07839299738407135, -0.01079831924289465, -0.007936589419841766, -0.06776997447013855, 0.006731419824063778, 0.032044362276792526, 0.02971290796995163, 0.029169486835598946, 0.04477095231413841, -0.05897004157304764, -0.0179855115711689, -0.001428673742339015, 0.012481174431741238, -0.0050178878009319305, -0.00442406814545393, -0.0267679113894701, 0.03663715347647667, -0.01837116666138172, 0.013646901585161686, 0.0017036715289577842, 0.026084251701831818, -0.05031035095453262, -0.00795850157737732, -0.004601556342095137, 0.09592273086309433, -0.020825330168008804, 0.00153494777623564, -0.00025472903507761657, 0.0429128035902977, 0.02226276881992817, 0.03996780514717102, 0.03302602842450142, 0.00569716515019536, 0.02485717087984085, -0.055183619260787964, 0.05830391123890877, -0.03442840650677681, 0.03723316639661789, 0.08147823065519333, 0.05889992415904999, -0.01452338881790638, -0.06135408580303192, -0.020369557663798332, -0.0007619958487339318, -0.012691531330347061, -0.04179089888930321, 0.0355503112077713, 0.0267679113894701, 0.0012884358875453472, -0.09536178410053253, -0.021806996315717697, -0.01095608714967966, 0.043473754078149796, -0.06321223825216293, -0.031308114528656006, -0.01872176118195057, -0.050976481288671494, -0.012901888228952885, -0.02603166364133358, 0.08898095786571503, 0.0021112379617989063, 0.004112915135920048, -0.04396458715200424, -0.007809498813003302, 0.017950452864170074, -0.0305192768573761, 0.04449047893285751, 0.044210001826286316, 0.017880333587527275, -0.04284268245100975, 0.04459565505385399, 0.047014761716127396, 0.015399876050651073, 0.029239604249596596, 0.00840112753212452, -0.07050461322069168, 0.007099544629454613, 0.002719300799071789, 0.030764691531658173, -0.01644289493560791, 0.035357482731342316, -0.0786033496260643, 0.03656703606247902, -0.02145640179514885, 0.051362134516239166, 0.02264842391014099, 0.05669117718935013, 0.10601986199617386, 0.004299168474972248, 0.02515517547726631, 0.039932746440172195, 0.005793578922748566, 0.026136841624975204, -0.009168053977191448, -0.034323230385780334, -0.022806189954280853, 0.037794116884469986, 0.07551811635494232, -0.07376514375209808, 0.037127986550331116, -0.008602719753980637, -0.0026601378340274096, 0.04785618931055069, -0.00481191324070096, -0.002011537551879883, 0.034849122166633606, 0.0719420462846756, -0.03162365034222603, 0.04578767716884613, 0.0927673801779747, -0.03332403302192688, 0.04024828225374222, 0.05974135175347328, 0.029309723526239395, 0.02419104054570198, -0.029835617169737816, -0.042877741158008575, 0.004680440295487642, -0.03516465798020363, 0.040739115327596664, -0.011893928050994873, 0.0013213041238486767, 0.0008759391494095325, 0.0022569538559764624, 0.0009564664214849472, -0.05556927248835564, -0.013541723601520061, -0.037127986550331116, 0.06135408580303192, 0.0064334142953157425, -0.07411573827266693, -0.023244434967637062, -0.05073106661438942, -0.012323406524956226, 0.015233343467116356, -0.05967123433947563, -0.01636401191353798, -0.06847116351127625, 0.05469278618693352, 0.0000016947697076830082, 0.0032539579551666975, -0.09115464240312576, -0.008935784921050072, -0.06776997447013855, 0.028555944561958313, 0.01591700315475464, -0.03877578303217888, -0.03758376091718674, 0.01680225506424904, 0.010570432990789413, 0.00009162027708953246, -0.0012391334166750312, 0.04038852080702782, -0.008444951847195625, -0.02771451696753502, -0.005605134181678295, 0.02012414112687111, -0.0392315573990345, -0.0007877426687628031, -0.04669922590255737, 0.07642966508865356, -0.012910652905702591, -0.04484107345342636, 0.028345588594675064, 0.051221899688243866, 0.04974940046668053, -0.027854755520820618, 0.030957520008087158, -0.02559341862797737, -0.024243628606200218, -0.01791539415717125, 0.01128038763999939, 0.003799570957198739, 0.051958147436380386, -0.04904821142554283, -0.01615365408360958, -0.004785618744790554, 0.02373526617884636, 0.0035935966297984123, -0.026417316868901253, -0.02049226500093937, 0.012928182259202003, -0.008006708696484566, 0.006683213170617819, 0.0015207048272714019, 0.05588480830192566, 0.005543780047446489, 0.007730614859610796, 0.01991378329694271, 0.023700207471847534, -0.02168428711593151, -0.0042838300578296185, -0.042071375995874405, 0.03958215191960335, -0.085264652967453, 0.045472145080566406, -0.00436928728595376, 0.05907522141933441, 0.06110867112874985, 0.045542262494564056, -0.08084715902805328, 0.029747966676950455, 0.04217655211687088, -0.02021178975701332, -0.011157679371535778, 0.04091441258788109, -0.054762907326221466, 0.04431518167257309, 0.019002238288521767, -0.02994079515337944, -0.02101815678179264, 0.05034540966153145, 0.03286826238036156, 0.013410250656306744, 0.04042357951402664, -0.034989360719919205, 0.03348180279135704, -0.05293981358408928, -0.029923265799880028, 0.006043377798050642, -0.008488776162266731, 0.05886486545205116, 0.05073106661438942, 0.029818085953593254, -0.05683141574263573, -0.004636615980416536, 0.06955800205469131, 0.04158054292201996, -0.0039529562927782536, -0.00004361892206361517, -0.07713085412979126, 0.04196619614958763, 0.023489851504564285, -0.0032539579551666975, 0.009983186610043049, -0.0198261346668005, -0.014277972280979156, 0.008887577801942825, 0.02808264270424843, -0.07572847604751587, -0.04620839282870293, 0.05406171455979347, 0.01047401875257492, 0.046138275414705276, -0.001539330231025815, -0.051502373069524765, -0.01363813690841198, 0.010631786659359932, 0.010868438519537449, 0.01477757003158331, 0.01584688387811184, 0.007835793308913708, 0.01977354660630226, -0.05535891652107239, -0.019528130069375038, 0.0045533496886491776, 0.011297916993498802, 0.024892229586839676, 0.04165066033601761, -0.0232269037514925, -0.013322602026164532, -0.027223685756325722, -0.012595118023455143, 0.055849749594926834, 0.051502373069524765, 0.048347022384405136, 0.022280298173427582, 0.0002744499943219125, -0.013278777711093426, -0.07635954767465591, -0.010403900407254696, 0.010894732549786568, 0.07495716214179993, -0.003617699956521392, 0.03891602158546448, 0.033359095454216, 0.0003004706813953817, -0.04130006581544876, -0.009711475111544132, -0.01316483411937952, -0.03828494995832443, -0.033359095454216, -0.009281996637582779, 0.0027171096298843622, -0.04750559478998184, 0.004715499933809042, -0.007844557985663414, -0.014207853935658932, 0.01124532800167799, 0.0359710231423378, -0.007524640765041113, 0.006170468404889107, 0.0321495421230793, -0.022105000913143158, 0.00525453919544816, -0.034025222063064575, -0.010745730251073837, 0.04424506053328514, -0.004956533666700125, 0.01013218890875578, -0.02478705160319805, 0.06566639989614487, -0.016907433047890663, -0.01537358108907938, 0.010035775601863861, 0.012831768952310085, -0.014444504864513874, 0.025348002091050148, -0.030571864917874336, -0.03877578303217888, -0.00010264483717037365, -0.024646813049912453, -0.04028334096074104, 0.023069137707352638, 0.023034077137708664, 0.011639746837317944, -0.046558987349271774, -0.035865847021341324, 0.036987751722335815, -0.08764869719743729, -0.03588337451219559, 0.006696360185742378, -0.044946253299713135, 0.01880940981209278, 0.027977464720606804, 0.014435740187764168, 0.039056260138750076, -0.010351311415433884, 0.04172077775001526, -0.0014253868721425533, -0.0018417182145640254, 0.06370307505130768, -0.0286786537617445, -0.03635668009519577, 0.004500760696828365, -0.02522529475390911, 0.045542262494564056, -0.06629747152328491, -0.04704982042312622, 0.001743113505654037, -0.015689115971326828, -0.02212253026664257, -0.04063393548130989, -0.054587606340646744, -0.09578249603509903, -0.038390129804611206, 0.03302602842450142, -0.017801450565457344, 0.06535086780786514, -0.03944191336631775, -0.01821339875459671, -0.06230069324374199, -0.016556838527321815, -0.018932119011878967, 0.00021788918820675462, 0.014830159023404121, -0.0036133176181465387, 0.01800304278731346, -0.0037009662482887506, 0.05963617190718651, -0.050836242735385895, -0.03677739202976227, -0.020895449444651604, -0.030256329104304314, 0.0021397238597273827, 0.0015908238710835576, -0.01593453250825405, -0.04606815427541733, -0.03663715347647667, 0.02699579857289791, 0.01681102067232132, -0.03250013664364815, -0.05574456974864006, -0.06696360558271408, -0.03716304898262024, 0.02242053672671318, -0.024716932326555252, -0.0010884872172027826, 0.07320418953895569, -0.027837226167321205, 0.0032933996990323067, -0.00795850157737732, -0.014181558974087238, -0.046453807502985, -0.01500545721501112, -0.009308291599154472, -0.05672623589634895, 0.006994366180151701, 0.11001664400100708, -0.012104284949600697, -0.0018570567481219769, 0.006613094359636307, -0.018388696014881134, -0.014733745716512203, 0.07201217114925385, 0.02971290796995163, 0.028959129005670547, 0.07376514375209808, -0.010184778831899166, 0.020106611773371696, -0.041615601629018784, -0.013278777711093426, -0.07467669248580933, 0.028152761980891228, 0.01703890599310398, -0.019510600715875626, -0.045086488127708435, -0.03663715347647667, -0.0049039446748793125, -0.0011701100738719106, -0.020527325570583344, 0.020983098074793816, -0.06356283277273178, -0.021859584376215935, -0.008387980051338673, -0.0008184196776710451, 0.04322833567857742, 0.025646008551120758, -0.019440481439232826, 0.02617190033197403, 0.004754941910505295, -0.014260442927479744, 0.030168680474162102, -0.025944015011191368, 0.04564744234085083, -0.01601341739296913, -0.03488418087363243, 0.008282802067697048, 0.0010046731913462281, -0.059916649013757706, -0.026136841624975204, 0.05861944705247879, -0.04115982726216316, -0.013953672721982002, 0.021175924688577652, 0.01577676460146904, 0.10559915006160736, 0.0037228784058243036, 0.014111439697444439, 0.03451605513691902, 0.04224667325615883, -0.011639746837317944, -0.08729810267686844, -0.004073473159223795, -0.022543244063854218, 0.05101153999567032, -0.012358466163277626, -0.010824614204466343, -0.004719882272183895, 0.031080227345228195, -0.004754941910505295, 0.015768000856041908, 0.037864238023757935, 0.0012599499896168709, 0.005245774518698454, -0.016355246305465698, -0.046488869935274124, 0.0035716844722628593, -0.002583445282652974, -0.0038850284181535244, 0.001693811034783721, -0.06282658874988556, -0.017056437209248543, -0.059250518679618835, 0.0180556308478117, 0.03930167481303215, 0.020807800814509392, -0.052168503403663635, 0.02212253026664257, -0.0037710850592702627, 0.06289670616388321, 0.01821339875459671, 0.04571755975484848, -0.09059369564056396, -0.010693141259253025, 0.025102587416768074, 0.005000357981771231, -0.01725802756845951, 0.02308666706085205, 0.08105751127004623, -0.05897004157304764, 0.03574313968420029, 0.018318576738238335, 0.00015448083286173642, 0.01471621636301279, 0.004500760696828365, 0.029011718928813934, 0.021438870579004288, -0.013410250656306744, -0.051888030022382736, 0.06328235566616058, 0.08035632222890854, -0.01234970148652792, 0.00329120852984488, 0.019352832809090614, -0.026662733405828476, -0.007252929732203484, 0.0005428740987554193, 0.08393239229917526, -0.03253519535064697, 0.01142938993871212, 0.011622217483818531, -0.005438601598143578, -0.007678025867789984, -0.019072355702519417 ]
23,372
uvicorn.config
Config
null
class Config: def __init__( self, app: ASGIApplication | Callable[..., Any] | str, host: str = "127.0.0.1", port: int = 8000, uds: str | None = None, fd: int | None = None, loop: LoopSetupType = "auto", http: type[asyncio.Protocol] | HTTPProtocolType = "auto", ws: type[asyncio.Protocol] | WSProtocolType = "auto", ws_max_size: int = 16 * 1024 * 1024, ws_max_queue: int = 32, ws_ping_interval: float | None = 20.0, ws_ping_timeout: float | None = 20.0, ws_per_message_deflate: bool = True, lifespan: LifespanType = "auto", env_file: str | os.PathLike[str] | None = None, log_config: dict[str, Any] | str | None = LOGGING_CONFIG, log_level: str | int | None = None, access_log: bool = True, use_colors: bool | None = None, interface: InterfaceType = "auto", reload: bool = False, reload_dirs: list[str] | str | None = None, reload_delay: float = 0.25, reload_includes: list[str] | str | None = None, reload_excludes: list[str] | str | None = None, workers: int | None = None, proxy_headers: bool = True, server_header: bool = True, date_header: bool = True, forwarded_allow_ips: list[str] | str | None = None, root_path: str = "", limit_concurrency: int | None = None, limit_max_requests: int | None = None, backlog: int = 2048, timeout_keep_alive: int = 5, timeout_notify: int = 30, timeout_graceful_shutdown: int | None = None, callback_notify: Callable[..., Awaitable[None]] | None = None, ssl_keyfile: str | None = None, ssl_certfile: str | os.PathLike[str] | None = None, ssl_keyfile_password: str | None = None, ssl_version: int = SSL_PROTOCOL_VERSION, ssl_cert_reqs: int = ssl.CERT_NONE, ssl_ca_certs: str | None = None, ssl_ciphers: str = "TLSv1", headers: list[tuple[str, str]] | None = None, factory: bool = False, h11_max_incomplete_event_size: int | None = None, ): self.app = app self.host = host self.port = port self.uds = uds self.fd = fd self.loop = loop self.http = http self.ws = ws self.ws_max_size = ws_max_size self.ws_max_queue = ws_max_queue self.ws_ping_interval = ws_ping_interval self.ws_ping_timeout = ws_ping_timeout self.ws_per_message_deflate = ws_per_message_deflate self.lifespan = lifespan self.log_config = log_config self.log_level = log_level self.access_log = access_log self.use_colors = use_colors self.interface = interface self.reload = reload self.reload_delay = reload_delay self.workers = workers or 1 self.proxy_headers = proxy_headers self.server_header = server_header self.date_header = date_header self.root_path = root_path self.limit_concurrency = limit_concurrency self.limit_max_requests = limit_max_requests self.backlog = backlog self.timeout_keep_alive = timeout_keep_alive self.timeout_notify = timeout_notify self.timeout_graceful_shutdown = timeout_graceful_shutdown self.callback_notify = callback_notify self.ssl_keyfile = ssl_keyfile self.ssl_certfile = ssl_certfile self.ssl_keyfile_password = ssl_keyfile_password self.ssl_version = ssl_version self.ssl_cert_reqs = ssl_cert_reqs self.ssl_ca_certs = ssl_ca_certs self.ssl_ciphers = ssl_ciphers self.headers: list[tuple[str, str]] = headers or [] self.encoded_headers: list[tuple[bytes, bytes]] = [] self.factory = factory self.h11_max_incomplete_event_size = h11_max_incomplete_event_size self.loaded = False self.configure_logging() self.reload_dirs: list[Path] = [] self.reload_dirs_excludes: list[Path] = [] self.reload_includes: list[str] = [] self.reload_excludes: list[str] = [] if (reload_dirs or reload_includes or reload_excludes) and not self.should_reload: logger.warning( "Current configuration will not reload as not all conditions are met, " "please refer to documentation." ) if self.should_reload: reload_dirs = _normalize_dirs(reload_dirs) reload_includes = _normalize_dirs(reload_includes) reload_excludes = _normalize_dirs(reload_excludes) self.reload_includes, self.reload_dirs = resolve_reload_patterns(reload_includes, reload_dirs) self.reload_excludes, self.reload_dirs_excludes = resolve_reload_patterns(reload_excludes, []) reload_dirs_tmp = self.reload_dirs.copy() for directory in self.reload_dirs_excludes: for reload_directory in reload_dirs_tmp: if directory == reload_directory or directory in reload_directory.parents: try: self.reload_dirs.remove(reload_directory) except ValueError: pass for pattern in self.reload_excludes: if pattern in self.reload_includes: self.reload_includes.remove(pattern) if not self.reload_dirs: if reload_dirs: logger.warning( "Provided reload directories %s did not contain valid " + "directories, watching current working directory.", reload_dirs, ) self.reload_dirs = [Path(os.getcwd())] logger.info( "Will watch for changes in these directories: %s", sorted(list(map(str, self.reload_dirs))), ) if env_file is not None: from dotenv import load_dotenv logger.info("Loading environment from '%s'", env_file) load_dotenv(dotenv_path=env_file) if workers is None and "WEB_CONCURRENCY" in os.environ: self.workers = int(os.environ["WEB_CONCURRENCY"]) self.forwarded_allow_ips: list[str] | str if forwarded_allow_ips is None: self.forwarded_allow_ips = os.environ.get("FORWARDED_ALLOW_IPS", "127.0.0.1") else: self.forwarded_allow_ips = forwarded_allow_ips if self.reload and self.workers > 1: logger.warning('"workers" flag is ignored when reloading is enabled.') @property def asgi_version(self) -> Literal["2.0", "3.0"]: mapping: dict[str, Literal["2.0", "3.0"]] = { "asgi2": "2.0", "asgi3": "3.0", "wsgi": "3.0", } return mapping[self.interface] @property def is_ssl(self) -> bool: return bool(self.ssl_keyfile or self.ssl_certfile) @property def use_subprocess(self) -> bool: return bool(self.reload or self.workers > 1) def configure_logging(self) -> None: logging.addLevelName(TRACE_LOG_LEVEL, "TRACE") if self.log_config is not None: if isinstance(self.log_config, dict): if self.use_colors in (True, False): self.log_config["formatters"]["default"]["use_colors"] = self.use_colors self.log_config["formatters"]["access"]["use_colors"] = self.use_colors logging.config.dictConfig(self.log_config) elif self.log_config.endswith(".json"): with open(self.log_config) as file: loaded_config = json.load(file) logging.config.dictConfig(loaded_config) elif self.log_config.endswith((".yaml", ".yml")): # Install the PyYAML package or the uvicorn[standard] optional # dependencies to enable this functionality. import yaml with open(self.log_config) as file:
(app: 'ASGIApplication | Callable[..., Any] | str', host: 'str' = '127.0.0.1', port: 'int' = 8000, uds: 'str | None' = None, fd: 'int | None' = None, loop: 'LoopSetupType' = 'auto', http: 'type[asyncio.Protocol] | HTTPProtocolType' = 'auto', ws: 'type[asyncio.Protocol] | WSProtocolType' = 'auto', ws_max_size: 'int' = 16777216, ws_max_queue: 'int' = 32, ws_ping_interval: 'float | None' = 20.0, ws_ping_timeout: 'float | None' = 20.0, ws_per_message_deflate: 'bool' = True, lifespan: 'LifespanType' = 'auto', env_file: 'str | os.PathLike[str] | None' = None, log_config: 'dict[str, Any] | str | None' = {'version': 1, 'disable_existing_loggers': False, 'formatters': {'default': {'()': 'uvicorn.logging.DefaultFormatter', 'fmt': '%(levelprefix)s %(message)s', 'use_colors': None}, 'access': {'()': 'uvicorn.logging.AccessFormatter', 'fmt': '%(levelprefix)s %(client_addr)s - "%(request_line)s" %(status_code)s'}}, 'handlers': {'default': {'formatter': 'default', 'class': 'logging.StreamHandler', 'stream': 'ext://sys.stderr'}, 'access': {'formatter': 'access', 'class': 'logging.StreamHandler', 'stream': 'ext://sys.stdout'}}, 'loggers': {'uvicorn': {'handlers': ['default'], 'level': 'INFO', 'propagate': False}, 'uvicorn.error': {'level': 'INFO'}, 'uvicorn.access': {'handlers': ['access'], 'level': 'INFO', 'propagate': False}}}, log_level: 'str | int | None' = None, access_log: 'bool' = True, use_colors: 'bool | None' = None, interface: 'InterfaceType' = 'auto', reload: 'bool' = False, reload_dirs: 'list[str] | str | None' = None, reload_delay: 'float' = 0.25, reload_includes: 'list[str] | str | None' = None, reload_excludes: 'list[str] | str | None' = None, workers: 'int | None' = None, proxy_headers: 'bool' = True, server_header: 'bool' = True, date_header: 'bool' = True, forwarded_allow_ips: 'list[str] | str | None' = None, root_path: 'str' = '', limit_concurrency: 'int | None' = None, limit_max_requests: 'int | None' = None, backlog: 'int' = 2048, timeout_keep_alive: 'int' = 5, timeout_notify: 'int' = 30, timeout_graceful_shutdown: 'int | None' = None, callback_notify: 'Callable[..., Awaitable[None]] | None' = None, ssl_keyfile: 'str | None' = None, ssl_certfile: 'str | os.PathLike[str] | None' = None, ssl_keyfile_password: 'str | None' = None, ssl_version: 'int' = <_SSLMethod.PROTOCOL_TLS_SERVER: 17>, ssl_cert_reqs: 'int' = <VerifyMode.CERT_NONE: 0>, ssl_ca_certs: 'str | None' = None, ssl_ciphers: 'str' = 'TLSv1', headers: 'list[tuple[str, str]] | None' = None, factory: 'bool' = False, h11_max_incomplete_event_size: 'int | None' = None)
[ 0.03450886160135269, -0.052281029522418976, -0.0850781798362732, 0.00862193200737238, -0.013144220225512981, 0.008431742899119854, -0.051900651305913925, 0.029246946796774864, -0.09374237805604935, -0.06221315637230873, 0.026394100859761238, -0.016535935923457146, 0.025739002972841263, 0.011210625059902668, 0.010840811766684055, 0.008019665256142616, -0.006503430660814047, -0.0040151155553758144, 0.011168360710144043, -0.07155358046293259, -0.03636849299073219, -0.01630348153412342, 0.025464285165071487, 0.04615269601345062, -0.012816671282052994, -0.011178926564753056, -0.0212695449590683, 0.014380453154444695, 0.023520123213529587, -0.0044404007494449615, -0.024344278499484062, -0.025168433785438538, -0.008294383063912392, 0.025252962484955788, 0.048308178782463074, -0.03497377038002014, 0.00553663307800889, -0.015944235026836395, -0.09374237805604935, 0.004519646521657705, -0.023646917194128036, -0.03049374558031559, -0.0011008548317477107, -0.02973298728466034, 0.008658913895487785, 0.04729383438825607, -0.03917907550930977, 0.10422394424676895, -0.012806105427443981, -0.0012784972786903381, -0.01596536673605442, -0.007554756943136454, -0.03062053769826889, 0.05604255944490433, 0.016250651329755783, 0.08004872500896454, 0.0065985252149403095, 0.050041016191244125, 0.030303556472063065, -0.050379134714603424, -0.024661261588335037, -0.013757053762674332, 0.022378984838724136, 0.02032916434109211, 0.028697509318590164, -0.023203140124678612, -0.054521042853593826, 0.025464285165071487, 0.010317790322005749, -0.03879869356751442, 0.03007110208272934, -0.021914077922701836, 0.0021594453137367964, -0.037551894783973694, 0.020635580644011497, -0.010809113271534443, -0.052957259118556976, 0.0013445353833958507, -0.04496929422020912, 0.004049455281347036, 0.029923176392912865, 0.02256917580962181, -0.016884617507457733, -0.006524562835693359, 0.12214403599500656, -0.008759290911257267, 0.03078959509730339, -0.007829475216567516, -0.050505924969911575, -0.020403126254677773, -0.03332545980811119, 0.03573452681303024, 0.015299702994525433, 0.015003852546215057, 0.03419187664985657, -0.03888322412967682, -0.0076657007448375225, -0.04226437211036682, -0.00041736068669706583, -0.06779205799102783, -0.03562886640429497, -0.01071401871740818, -0.039960965514183044, -0.020381994545459747, 0.017212165519595146, -0.05650746822357178, -0.027028067037463188, -0.019969915971159935, 0.004884176421910524, -0.04437759146094322, -0.03091638907790184, -0.011802325956523418, 0.016863485798239708, -0.018374435603618622, -0.00703173503279686, 0.04492702707648277, -0.05845162644982338, -0.014528377912938595, 0.018955571576952934, -0.010735150426626205, -0.020994827151298523, 0.04053153470158577, 0.005457387305796146, 0.023604651913046837, 0.04712477698922157, 0.06563657522201538, -0.031867336481809616, 0.013271013274788857, 0.053718019276857376, -0.04480023682117462, 0.016314048320055008, 0.03488923981785774, 0.0003737755469046533, 0.014708002097904682, 0.052661407738924026, -0.013017427176237106, -0.06669317930936813, 0.03638962656259537, -0.016419708728790283, 0.031191106885671616, -0.0031803941819816828, 0.0016734050586819649, -0.00205906736664474, -0.031867336481809616, 0.04125002771615982, 0.02371031418442726, -0.02087859995663166, -0.012679312378168106, -0.07083509117364883, -0.0013161390088498592, 0.05587350204586983, -0.037213779985904694, -0.052196502685546875, 0.018237076699733734, -0.04429306462407112, 0.020138973370194435, -0.05891653522849083, 0.03624169901013374, -0.010640055872499943, -0.025358624756336212, -0.06884866207838058, -0.049068938940763474, 0.018839344382286072, -0.06867960840463638, -0.03679113835096359, -0.020551051944494247, -0.00993212778121233, 0.006107201799750328, 0.026753347367048264, 0.08807895332574844, -0.023942766711115837, 0.01914576068520546, -0.04361683502793312, 0.025548813864588737, 0.01174949575215578, 0.09298162162303925, 0.008447591215372086, 0.002022086177021265, -0.00781362596899271, 0.002578126732259989, -0.025654474273324013, -0.04234890267252922, -0.024999376386404037, -0.01723329909145832, 0.019758595153689384, 0.09365785121917725, -0.008923065848648548, 0.02909902110695839, 0.040637195110321045, 0.03776321932673454, -0.040214549750089645, -0.016028763726353645, 0.052788201719522476, -0.0035924718249589205, 0.02812694013118744, 0.01807858608663082, 0.00021396338706836104, -0.011009869165718555, 0.034234143793582916, 0.0008135891985148191, -0.011358550749719143, 0.021956341341137886, 0.019969915971159935, -0.06077617034316063, -0.03091638907790184, -0.026689952239394188, -0.0061389002948999405, 0.01037590391933918, 0.03311413526535034, 0.046406280249357224, -0.04027794674038887, -0.004812855273485184, -0.01183402445167303, 0.019895954057574272, 0.028148071840405464, -0.02914128452539444, 0.015975933521986008, 0.04344777390360832, -0.0026969953905791044, 0.011009869165718555, 0.06356561928987503, 0.027767693623900414, -0.06217089295387268, -0.03799566999077797, -0.026774480938911438, 0.015553289093077183, 0.017508016899228096, 0.013957809656858444, 0.025823531672358513, 0.017846131697297096, 0.06584789603948593, 0.00028710055630654097, 0.06589015573263168, 0.03782661259174347, 0.05912785977125168, 0.004472098778933287, -0.0009965146891772747, 0.07704795151948929, 0.03317753225564957, -0.005240782164037228, 0.0032913379836827517, -0.0038856808096170425, 0.021702755242586136, -0.028486186638474464, 0.013302711769938469, -0.03455112501978874, 0.007121546659618616, 0.04344777390360832, -0.01906123198568821, 0.007993249222636223, -0.005605312529951334, 0.0009463257156312466, -0.051478005945682526, -0.03905228152871132, -0.05600029602646828, -0.019209157675504684, 0.010455149225890636, -0.0077079650945961475, 0.036579813808202744, -0.015817441046237946, 0.02876090630888939, 0.017814433202147484, -0.03584018722176552, 0.051055364310741425, -0.021406905725598335, -0.006012107245624065, 0.03615717217326164, -0.048477236181497574, -0.03913680836558342, 0.019959351047873497, 0.04496929422020912, 0.015701213851571083, -0.019452176988124847, 0.03417074680328369, -0.03526961803436279, -0.022632570937275887, -0.005647576879709959, -0.03155035525560379, -0.0033203947823494673, 0.025992589071393013, 0.02278049662709236, -0.008521554060280323, 0.06381920725107193, 0.012510254047811031, -0.011707231402397156, -0.01155930571258068, -0.05502821505069733, 0.050294604152441025, -0.010344205424189568, -0.002290200674906373, 0.0014554793015122414, -0.004170965403318405, 0.004411343950778246, -0.0018543493933975697, 0.029711853712797165, 0.016884617507457733, -0.019367648288607597, 0.03687566518783569, 0.03036695159971714, -0.05380254611372948, 0.02138577215373516, 0.016324613243341446, 0.008072495460510254, -0.01753971539437771, 0.0017064240528270602, -0.008357780054211617, 0.0005269839311949909, -0.022505778819322586, 0.042116448283195496, 0.021206149831414223, 0.02256917580962181, -0.046575337648391724, 0.02829599753022194, 0.016039330512285233, 0.017645375803112984, 0.023224273696541786, -0.0005735407467000186, 0.004915874917060137, 0.024724658578634262, 0.04429306462407112, -0.04560326039791107, 0.08512044697999954, 0.019589537754654884, -0.0028819020371884108, 0.03594584763050079, -0.00845287460833788, 0.08883970975875854, 0.028570717200636864, -0.012309499084949493, 0.00280529772862792, -0.052450086921453476, -0.008188722655177116, -0.013461203314363956, -0.033473383635282516, 0.014887625351548195, -0.02939487248659134, -0.018490662798285484, -0.0025649191811680794, -0.004067945759743452, -0.05638067424297333, 0.02838052622973919, 0.01782499998807907, -0.03379036486148834, 0.049364786595106125, 0.0038434164598584175, -0.07425850629806519, 0.03146582469344139, 0.019927652552723885, 0.008083061315119267, -0.024640129879117012, 0.01669442653656006, -0.006487581413239241, -0.03934813290834427, 0.09002311527729034, 0.04171493649482727, -0.10194166749715805, 0.007253623101860285, -0.041524745523929596, 0.03649528697133064, -0.022886158898472786, -0.05667652562260628, 0.03569226339459419, -0.03522735461592674, 0.041144367307424545, 0.012531386688351631, -0.002101331716403365, 0.022421250119805336, -0.03328319266438484, 0.039538320153951645, -0.046406280249357224, -0.000805664632935077, -0.02176615223288536, 0.0018186888191848993, -0.04678666219115257, -0.0023932200856506824, -0.004049455281347036, -0.039834171533584595, -0.011432512663304806, -0.07159584760665894, 0.048815350979566574, 0.040087759494781494, 0.05824030563235283, 0.00010392743570264429, -0.0066936202347278595, -0.01816311478614807, -0.04632175341248512, 0.017856698483228683, -0.028739774599671364, 0.053041789680719376, 0.020297465845942497, 0.029035624116659164, 0.03799566999077797, -0.02125898003578186, 0.019409913569688797, -0.011622702702879906, -0.01467630360275507, 0.016535935923457146, 0.10523828864097595, 0.029669590294361115, -0.02096312865614891, 0.031486958265304565, -0.01588083803653717, 0.05316857993602753, 0.06580562889575958, 0.010560810565948486, 0.01931481808423996, 0.10971831530332565, 0.01741292141377926, 0.02134350873529911, 0.05840936303138733, -0.00825740210711956, -0.0005309461848810315, -0.09179821610450745, 0.026795612648129463, -0.07248339802026749, 0.001114062499254942, -0.005600029602646828, 0.0043558720499277115, 0.03545980900526047, 0.040299080312252045, -0.019589537754654884, 0.012753274291753769, 0.052661407738924026, 0.05566218122839928, 0.0077607957646250725, 0.03345225006341934, -0.03715038299560547, 0.02787335403263569, -0.08714913576841354, -0.020519353449344635, 0.01681065373122692, 0.07979513704776764, -0.022421250119805336, -0.028486186638474464, 0.04581458121538162, -0.01973746158182621, -0.024111824110150337, 0.015172909945249557, 0.008283817209303379, -0.016335180029273033, -0.0017500092508271337, -0.0010037788888439536, 0.025316359475255013, 0.010434017516672611, 0.03901001811027527, 0.030261291190981865, -0.07523058354854584, -0.004210588056594133, 0.026668818667531013, -0.026309572160243988, -0.07037018239498138, -0.04505382105708122, -0.02931034192442894, -0.0009859486017376184, -0.049533843994140625, -0.028993360698223114, 0.014961588196456432, 0.03603037819266319, -0.02206200361251831, -0.05570444464683533, -0.008389478549361229, -0.01707480661571026, 0.028908831998705864, -0.003526433603838086, -0.03252243623137474, 0.004104927182197571, 0.10075826942920685, 0.001738122315146029, -0.047970063984394073, 0.008267967961728573, 0.04501155763864517, 0.004625307396054268, -0.01787783019244671, -0.013926111161708832, 0.009604578837752342, -0.007184943649917841, -0.006307957693934441, 0.004939648788422346, -0.01790952868759632, -0.048392705619335175, 0.013683090917766094, -0.006920791231095791, 0.01893443986773491, 0.03846057876944542, -0.016155555844306946, -0.10101184993982315, 0.06090296059846878, -0.013049125671386719, 0.008384195156395435, -0.025231830775737762, -0.041778333485126495, -0.012573651038110256, -0.021237848326563835, 0.003993983380496502, 0.03913680836558342, 0.00002020352621912025, -0.03702359274029732, -0.0019401989411562681, 0.03782661259174347, -0.018437832593917847, 0.005301537457853556, -0.04027794674038887, -0.010640055872499943, 0.06339655816555023, 0.027302784845232964, -0.01554272323846817, -0.06639733165502548, 0.018458964303135872, -0.03138129785656929, -0.006498147267848253, -0.025950325652956963, 0.009731371887028217, -0.0010724584572017193, -0.003563415026292205, 0.010254393331706524, -0.019959351047873497, -0.025400888174772263, 0.007877022959291935, -0.015944235026836395, -0.02905675582587719, 0.02880316972732544, 0.031022049486637115, 0.05566218122839928, -0.009298162534832954, -0.0018966137431561947, 0.015732912346720695, 0.06813017278909683, -0.027175992727279663, 0.0020432183519005775, 0.07011659443378448, -0.026520894840359688, 0.00825740210711956, 0.01850122958421707, 0.009419672191143036, 0.037044722586870193, 0.0062234289944171906, 0.013049125671386719, -0.06635506451129913, -0.07835815101861954, -0.04057379812002182, 0.008040796965360641, 0.03476244583725929, 0.0026349194813519716, -0.05629614368081093, -0.07463888078927994, -0.05650746822357178, 0.03277602046728134, 0.04378589242696762, 0.016736691817641258, -0.04446212202310562, -0.02049822174012661, 0.014443849213421345, 0.03617830201983452, 0.04264475405216217, -0.06462222337722778, -0.08288043737411499, 0.03926360234618187, -0.021280111744999886, 0.01010118518024683, 0.025020508095622063, -0.028232600539922714, -0.021111054345965385, -0.08220420777797699, -0.029838647693395615, -0.03277602046728134, 0.03552320599555969, 0.01800462231040001, 0.053718019276857376, -0.018406134098768234, 0.008907216601073742, -0.008717026561498642, 0.01457064226269722, 0.017687641084194183, -0.04623722285032272, -0.04184173047542572, 0.015500458888709545, 0.007713248021900654, 0.06145239993929863, 0.03486810624599457, -0.02918354980647564, 0.03619943559169769, -0.004001908004283905, -0.04222210869193077, -0.05726822465658188, 0.0031302052084356546, 0.009446087293326855, 0.06039578840136528, 0.08613479137420654, 0.010925340466201305, -0.017011409625411034, -0.06690450012683868, 0.027028067037463188, 0.024640129879117012, -0.03653755038976669, -0.01927255466580391, 0.10878849774599075, 0.004725685343146324, 0.02307634800672531, 0.04665986821055412, 0.04458891227841377, -0.06014220416545868, 0.04611043259501457, 0.04560326039791107, -0.07763965427875519, -0.0007779286243021488, -0.007459661923348904, 0.03074733167886734, 0.032501302659511566, 0.017972923815250397, -0.011760061606764793, -0.005906446371227503, -0.013831015676259995, 0.03463565558195114, -0.014803096652030945, -0.0024671826977282763, -0.012806105427443981, -0.052069708704948425, 0.08233100175857544, 0.05566218122839928, -0.031444694846868515, 0.01927255466580391, -0.02842279151082039, -0.029162418097257614, -0.0010209487518295646, -0.08047136664390564, 0.008796272799372673, 0.010502696968615055, -0.019378215074539185, -0.07751286029815674, -0.00562116177752614, 0.03719265013933182, -0.023837106302380562, 0.005150970537215471, -0.01372535526752472, 0.02016010694205761, -0.01158043835312128, 0.023308802396059036, -0.007961551658809185, 0.0038037935737520456, 0.013397806324064732, 0.08317628502845764, -0.049364786595106125, 0.00008444619743386284, -0.03573452681303024, -0.0065562608651816845, 0.02104765735566616, 0.04530740901827812, -0.03321979567408562, 0.05477462708950043, -0.00898117944598198, 0.0063185240142047405, 0.03146582469344139, -0.07091961801052094, 0.020065011456608772, -0.07861173152923584, 0.04509608447551727, -0.04480023682117462, -0.02332993410527706, 0.010169864632189274, -0.018543493002653122, 0.007850606925785542, 0.009562314487993717, 0.020212937146425247, -0.03769982233643532, 0.008162306621670723, -0.02142803743481636, 0.020551051944494247, 0.006101918872445822, 0.08381025493144989, 0.022505778819322586, 0.048604030162096024, -0.053675755858421326, -0.02206200361251831, 0.02303408272564411, -0.0026917122304439545, 0.0038751147221773863, -0.010661188513040543, -0.020149540156126022, -0.0001938217756105587, -0.020170671865344048, -0.003817001124843955, 0.07134225964546204, -0.04780100658535957, 0.012541952542960644, 0.011252889409661293, -0.010703452862799168, 0.04340551048517227, -0.03349451720714569, 0.06124107539653778, 0.00047283267485909164, -0.04387041926383972, 0.050844039767980576, 0.001658876659348607, 0.010301941074430943, -0.014327622950077057, -0.08571214973926544, -0.048561763018369675, -0.06567883491516113, -0.01910349726676941, -0.03619943559169769, 0.03484697639942169, -0.05536632984876633, -0.016747258603572845, 0.011633268557488918, 0.04184173047542572, 0.028570717200636864, -0.037847746163606644, -0.02083633653819561, -0.02214653231203556, 0.012446857988834381, 0.0066407895646989346, 0.021787283942103386, 0.08740272372961044, -0.02240011841058731, -0.03133903443813324, -0.0007363246404565871, -0.01749745011329651, -0.03510056063532829, 0.00023344461806118488, 0.011464211158454418, -0.04361683502793312, 0.04349004104733467, 0.038946621119976044, -0.013344976119697094, 0.05481689050793648, -0.03723491355776787, 0.008468723855912685, -0.01948387548327446, 0.02235785312950611, 0.026309572160243988, 0.020434824749827385, -0.0003919360169675201, -0.04708251357078552, 0.050083283334970474, 0.01652536913752556, -0.03736170753836632, 0.04611043259501457, -0.011517041362822056, -0.07239887118339539, 0.03729831054806709, 0.0011543456930667162, -0.05878974497318268, -0.06770752370357513, 0.008146458305418491, -0.010671754367649555, -0.008120042271912098, 0.050252340734004974, 0.005264556035399437, -0.012140440754592419, -0.0014911398757249117, 0.005784936249256134, -0.008141174912452698, -0.04526514187455177, 0.02269596792757511, -0.04125002771615982, -0.025908060371875763, -0.04095417633652687, 0.015172909945249557, -0.015109513886272907, -0.029585061594843864, -0.00040448326035402715, -0.016282349824905396, -0.01859632506966591, 0.032754890620708466, 0.04344777390360832, 0.03499490022659302, -0.0009912316454574466, 0.015785742551088333 ]
23,373
uvicorn.config
__init__
null
def __init__( self, app: ASGIApplication | Callable[..., Any] | str, host: str = "127.0.0.1", port: int = 8000, uds: str | None = None, fd: int | None = None, loop: LoopSetupType = "auto", http: type[asyncio.Protocol] | HTTPProtocolType = "auto", ws: type[asyncio.Protocol] | WSProtocolType = "auto", ws_max_size: int = 16 * 1024 * 1024, ws_max_queue: int = 32, ws_ping_interval: float | None = 20.0, ws_ping_timeout: float | None = 20.0, ws_per_message_deflate: bool = True, lifespan: LifespanType = "auto", env_file: str | os.PathLike[str] | None = None, log_config: dict[str, Any] | str | None = LOGGING_CONFIG, log_level: str | int | None = None, access_log: bool = True, use_colors: bool | None = None, interface: InterfaceType = "auto", reload: bool = False, reload_dirs: list[str] | str | None = None, reload_delay: float = 0.25, reload_includes: list[str] | str | None = None, reload_excludes: list[str] | str | None = None, workers: int | None = None, proxy_headers: bool = True, server_header: bool = True, date_header: bool = True, forwarded_allow_ips: list[str] | str | None = None, root_path: str = "", limit_concurrency: int | None = None, limit_max_requests: int | None = None, backlog: int = 2048, timeout_keep_alive: int = 5, timeout_notify: int = 30, timeout_graceful_shutdown: int | None = None, callback_notify: Callable[..., Awaitable[None]] | None = None, ssl_keyfile: str | None = None, ssl_certfile: str | os.PathLike[str] | None = None, ssl_keyfile_password: str | None = None, ssl_version: int = SSL_PROTOCOL_VERSION, ssl_cert_reqs: int = ssl.CERT_NONE, ssl_ca_certs: str | None = None, ssl_ciphers: str = "TLSv1", headers: list[tuple[str, str]] | None = None, factory: bool = False, h11_max_incomplete_event_size: int | None = None, ): self.app = app self.host = host self.port = port self.uds = uds self.fd = fd self.loop = loop self.http = http self.ws = ws self.ws_max_size = ws_max_size self.ws_max_queue = ws_max_queue self.ws_ping_interval = ws_ping_interval self.ws_ping_timeout = ws_ping_timeout self.ws_per_message_deflate = ws_per_message_deflate self.lifespan = lifespan self.log_config = log_config self.log_level = log_level self.access_log = access_log self.use_colors = use_colors self.interface = interface self.reload = reload self.reload_delay = reload_delay self.workers = workers or 1 self.proxy_headers = proxy_headers self.server_header = server_header self.date_header = date_header self.root_path = root_path self.limit_concurrency = limit_concurrency self.limit_max_requests = limit_max_requests self.backlog = backlog self.timeout_keep_alive = timeout_keep_alive self.timeout_notify = timeout_notify self.timeout_graceful_shutdown = timeout_graceful_shutdown self.callback_notify = callback_notify self.ssl_keyfile = ssl_keyfile self.ssl_certfile = ssl_certfile self.ssl_keyfile_password = ssl_keyfile_password self.ssl_version = ssl_version self.ssl_cert_reqs = ssl_cert_reqs self.ssl_ca_certs = ssl_ca_certs self.ssl_ciphers = ssl_ciphers self.headers: list[tuple[str, str]] = headers or [] self.encoded_headers: list[tuple[bytes, bytes]] = [] self.factory = factory self.h11_max_incomplete_event_size = h11_max_incomplete_event_size self.loaded = False self.configure_logging() self.reload_dirs: list[Path] = [] self.reload_dirs_excludes: list[Path] = [] self.reload_includes: list[str] = [] self.reload_excludes: list[str] = [] if (reload_dirs or reload_includes or reload_excludes) and not self.should_reload: logger.warning( "Current configuration will not reload as not all conditions are met, " "please refer to documentation." ) if self.should_reload: reload_dirs = _normalize_dirs(reload_dirs) reload_includes = _normalize_dirs(reload_includes) reload_excludes = _normalize_dirs(reload_excludes) self.reload_includes, self.reload_dirs = resolve_reload_patterns(reload_includes, reload_dirs) self.reload_excludes, self.reload_dirs_excludes = resolve_reload_patterns(reload_excludes, []) reload_dirs_tmp = self.reload_dirs.copy() for directory in self.reload_dirs_excludes: for reload_directory in reload_dirs_tmp: if directory == reload_directory or directory in reload_directory.parents: try: self.reload_dirs.remove(reload_directory) except ValueError: pass for pattern in self.reload_excludes: if pattern in self.reload_includes: self.reload_includes.remove(pattern) if not self.reload_dirs: if reload_dirs: logger.warning( "Provided reload directories %s did not contain valid " + "directories, watching current working directory.", reload_dirs, ) self.reload_dirs = [Path(os.getcwd())] logger.info( "Will watch for changes in these directories: %s", sorted(list(map(str, self.reload_dirs))), ) if env_file is not None: from dotenv import load_dotenv logger.info("Loading environment from '%s'", env_file) load_dotenv(dotenv_path=env_file) if workers is None and "WEB_CONCURRENCY" in os.environ: self.workers = int(os.environ["WEB_CONCURRENCY"]) self.forwarded_allow_ips: list[str] | str if forwarded_allow_ips is None: self.forwarded_allow_ips = os.environ.get("FORWARDED_ALLOW_IPS", "127.0.0.1") else: self.forwarded_allow_ips = forwarded_allow_ips if self.reload and self.workers > 1: logger.warning('"workers" flag is ignored when reloading is enabled.')
(self, app: Union[Type[uvicorn._types.ASGI2Protocol], Callable[[Union[uvicorn._types.HTTPScope, uvicorn._types.WebSocketScope, uvicorn._types.LifespanScope], Callable[[], Awaitable[Union[uvicorn._types.HTTPRequestEvent, uvicorn._types.HTTPDisconnectEvent, uvicorn._types.WebSocketConnectEvent, uvicorn._types._WebSocketReceiveEventBytes, uvicorn._types._WebSocketReceiveEventText, uvicorn._types.WebSocketDisconnectEvent, uvicorn._types.LifespanStartupEvent, uvicorn._types.LifespanShutdownEvent]]], Callable[[Union[uvicorn._types.HTTPResponseStartEvent, uvicorn._types.HTTPResponseBodyEvent, uvicorn._types.HTTPResponseTrailersEvent, uvicorn._types.HTTPServerPushEvent, uvicorn._types.HTTPDisconnectEvent, uvicorn._types.WebSocketAcceptEvent, uvicorn._types._WebSocketSendEventBytes, uvicorn._types._WebSocketSendEventText, uvicorn._types.WebSocketResponseStartEvent, uvicorn._types.WebSocketResponseBodyEvent, uvicorn._types.WebSocketCloseEvent, uvicorn._types.LifespanStartupCompleteEvent, uvicorn._types.LifespanStartupFailedEvent, uvicorn._types.LifespanShutdownCompleteEvent, uvicorn._types.LifespanShutdownFailedEvent]], Awaitable[NoneType]]], Awaitable[NoneType]], Callable[..., Any], str], host: str = '127.0.0.1', port: int = 8000, uds: Optional[str] = None, fd: Optional[int] = None, loop: Literal['none', 'auto', 'asyncio', 'uvloop'] = 'auto', http: Union[type[asyncio.protocols.Protocol], Literal['auto', 'h11', 'httptools']] = 'auto', ws: Union[type[asyncio.protocols.Protocol], Literal['auto', 'none', 'websockets', 'wsproto']] = 'auto', ws_max_size: int = 16777216, ws_max_queue: int = 32, ws_ping_interval: float | None = 20.0, ws_ping_timeout: float | None = 20.0, ws_per_message_deflate: bool = True, lifespan: Literal['auto', 'on', 'off'] = 'auto', env_file: Union[str, os.PathLike[str], NoneType] = None, log_config: dict[str, typing.Any] | str | None = {'version': 1, 'disable_existing_loggers': False, 'formatters': {'default': {'()': 'uvicorn.logging.DefaultFormatter', 'fmt': '%(levelprefix)s %(message)s', 'use_colors': None}, 'access': {'()': 'uvicorn.logging.AccessFormatter', 'fmt': '%(levelprefix)s %(client_addr)s - "%(request_line)s" %(status_code)s'}}, 'handlers': {'default': {'formatter': 'default', 'class': 'logging.StreamHandler', 'stream': 'ext://sys.stderr'}, 'access': {'formatter': 'access', 'class': 'logging.StreamHandler', 'stream': 'ext://sys.stdout'}}, 'loggers': {'uvicorn': {'handlers': ['default'], 'level': 'INFO', 'propagate': False}, 'uvicorn.error': {'level': 'INFO'}, 'uvicorn.access': {'handlers': ['access'], 'level': 'INFO', 'propagate': False}}}, log_level: Union[str, int, NoneType] = None, access_log: bool = True, use_colors: Optional[bool] = None, interface: Literal['auto', 'asgi3', 'asgi2', 'wsgi'] = 'auto', reload: bool = False, reload_dirs: Union[list[str], str, NoneType] = None, reload_delay: float = 0.25, reload_includes: Union[list[str], str, NoneType] = None, reload_excludes: Union[list[str], str, NoneType] = None, workers: Optional[int] = None, proxy_headers: bool = True, server_header: bool = True, date_header: bool = True, forwarded_allow_ips: Union[list[str], str, NoneType] = None, root_path: str = '', limit_concurrency: Optional[int] = None, limit_max_requests: Optional[int] = None, backlog: int = 2048, timeout_keep_alive: int = 5, timeout_notify: int = 30, timeout_graceful_shutdown: Optional[int] = None, callback_notify: Optional[Callable[..., Awaitable[NoneType]]] = None, ssl_keyfile: Optional[str] = None, ssl_certfile: Union[str, os.PathLike[str], NoneType] = None, ssl_keyfile_password: Optional[str] = None, ssl_version: int = <_SSLMethod.PROTOCOL_TLS_SERVER: 17>, ssl_cert_reqs: int = <VerifyMode.CERT_NONE: 0>, ssl_ca_certs: Optional[str] = None, ssl_ciphers: str = 'TLSv1', headers: Optional[list[tuple[str, str]]] = None, factory: bool = False, h11_max_incomplete_event_size: Optional[int] = None)
[ 0.0344240739941597, -0.04201853647828102, -0.08084159344434738, 0.016361292451620102, -0.022907882928848267, 0.013342182151973248, -0.04988274723291397, 0.03604256734251976, -0.10831444710493088, -0.05556821823120117, 0.02942335046827793, -0.00653621694073081, 0.0292781013995409, 0.010208948515355587, 0.010457946918904781, 0.012615935876965523, -0.00886539276689291, -0.0006244421238079667, 0.001871381071396172, -0.07884959876537323, -0.038926802575588226, -0.009083266369998455, 0.03664431348443031, 0.04818125441670418, -0.025646869093179703, -0.002584658795967698, -0.03656131401658058, 0.016589540988206863, 0.017222411930561066, -0.0036312316078692675, -0.017461037263274193, -0.017824159935116768, -0.018508905544877052, 0.01987839862704277, 0.04739275947213173, -0.016506541520357132, -0.002299347659572959, -0.019193653017282486, -0.0930425301194191, 0.00043347827158868313, -0.015427546575665474, -0.038345806300640106, -0.009378951974213123, -0.01808353327214718, 0.01671404018998146, 0.04064904525876045, -0.030606094747781754, 0.06963664293289185, 0.007495899684727192, 0.0003209749411325902, -0.026518365368247032, -0.006531029473990202, -0.01976427435874939, 0.04544226825237274, 0.018508905544877052, 0.0903865396976471, -0.005280848126858473, 0.06038219481706619, 0.018291031941771507, -0.04971674829721451, -0.032432086765766144, -0.013923179358243942, 0.00833108276128769, 0.0264976155012846, 0.020625395700335503, -0.01892390474677086, -0.04668726399540901, 0.020615020766854286, 0.014825799502432346, -0.046064767986536026, 0.0401717945933342, 0.0010420337785035372, -0.0032499523367732763, -0.029610099270939827, 0.02620711736381054, -0.01128794252872467, -0.044155776500701904, -0.014597550965845585, -0.06494717299938202, -0.0033718578051775694, 0.04527626931667328, 0.021828889846801758, -0.017606286332011223, 0.01191043946892023, 0.13080734014511108, -0.015365296974778175, 0.04564976692199707, -0.011557691730558872, -0.0742846205830574, -0.027618110179901123, -0.02687111310660839, 0.03689331188797951, 0.010074073448777199, 0.013062058947980404, 0.03531632199883461, -0.04494427144527435, -0.010411259718239307, -0.02817835658788681, -0.0009233703021891415, -0.06689766049385071, -0.024132126942276955, -0.01532379724085331, -0.03728755936026573, -0.006411717273294926, 0.020646145567297935, -0.04490277171134949, -0.020874394103884697, -0.031560588628053665, -0.010566883720457554, -0.05511172115802765, -0.028406605124473572, -0.0058359079994261265, 0.020884769037365913, -0.004819163121283054, -0.017160162329673767, 0.04639676585793495, -0.05336872860789299, -0.014099553227424622, 0.018145782873034477, -0.01052019651979208, -0.01361193135380745, 0.03830430656671524, 0.0005780790816061199, 0.009477514773607254, 0.03903055191040039, 0.057477209717035294, -0.01622641831636429, 0.022264637053012848, 0.052248235791921616, -0.045027270913124084, 0.00526009825989604, 0.027431361377239227, -0.0032966395374387503, 0.03102109208703041, 0.04164503887295723, -0.004074760712683201, -0.043367281556129456, 0.0384703055024147, -0.01773078553378582, 0.011671815998852253, -0.0014096959494054317, 0.009819887578487396, 0.010758819989860058, -0.017253536731004715, 0.042910780757665634, 0.011443566530942917, -0.02272113412618637, -0.009446389973163605, -0.06627516448497772, 0.002181332791224122, 0.05104473978281021, -0.03477682173252106, -0.046562764793634415, 0.00016243277059402317, -0.04114704206585884, 0.03365632891654968, -0.06540367007255554, 0.032660335302352905, -0.013259182684123516, -0.028593355789780617, -0.06644116342067719, -0.0442802757024765, 0.001767631620168686, -0.07677461206912994, -0.03778555989265442, -0.02234763652086258, -0.010473509319126606, 0.0066399662755429745, 0.024007627740502357, 0.0988525003194809, -0.012076438404619694, 0.030668344348669052, -0.035067323595285416, 0.014545676298439503, 0.013041309081017971, 0.07967959344387054, 0.014950298704206944, 0.00018188579997513443, -0.023717129603028297, 0.011090818792581558, -0.02243063598871231, -0.030543845146894455, -0.028157606720924377, -0.025460120290517807, 0.01921440288424492, 0.09237853437662125, -0.0078797722235322, 0.03183033689856529, 0.04040004685521126, 0.04195628687739372, -0.04884525388479233, -0.006977152079343796, 0.058348704129457474, 0.004536445718258619, 0.0185400303453207, 0.00841408222913742, 0.0056284088641405106, -0.0020205210894346237, 0.026601364836096764, -0.014275927096605301, -0.021953389048576355, 0.03654056414961815, 0.041831787675619125, -0.05913719907402992, -0.038926802575588226, -0.025065872818231583, -0.014172177761793137, 0.0038776365108788013, 0.03467307239770889, 0.03332433104515076, -0.022845633327960968, -0.005400160327553749, -0.008548956364393234, 0.021953389048576355, 0.03817980736494064, -0.011951939202845097, 0.004510508384555578, 0.03160208836197853, 0.012408437207341194, 0.009679825976490974, 0.037619560956954956, 0.040151044726371765, -0.0815470889210701, -0.04872075095772743, -0.023468131199479103, 0.012470686808228493, 0.003618262941017747, 0.016257543116807938, 0.0206876453012228, 0.021310141310095787, 0.05714521184563637, -0.011848189868032932, 0.06361917406320572, 0.029029102995991707, 0.057352710515260696, -0.0003640958166215569, -0.013331807218492031, 0.07806110382080078, 0.04880375415086746, -0.019390776753425598, 0.011547316797077656, -0.004245947115123272, 0.040462296456098557, -0.04195628687739372, 0.01558317057788372, -0.025460120290517807, 0.022513635456562042, 0.03959079831838608, -0.019743524491786957, 0.009353014640510082, -0.00927001517266035, -0.012574436143040657, -0.046064767986536026, -0.04942625015974045, -0.04672876372933388, -0.026850363239645958, 0.021953389048576355, -0.0059085325337946415, 0.021953389048576355, -0.0011561581632122397, 0.022762633860111237, 0.029215851798653603, -0.04179028794169426, 0.0499657467007637, -0.030170347541570663, -0.008938017301261425, 0.029444100335240364, -0.04222603514790535, -0.050629742443561554, 0.008455581963062286, 0.03394682705402374, 0.00027299081557430327, -0.004323759116232395, 0.041541289538145065, -0.04498577117919922, -0.025750618427991867, -0.009337452240288258, -0.039134301245212555, -0.01608116924762726, 0.007288400549441576, 0.014296677894890308, -0.00582553306594491, 0.05324422940611839, 0.008689017966389656, -0.026373116299510002, -0.013373306952416897, -0.051003240048885345, 0.047807756811380386, -0.022658884525299072, -0.019888773560523987, 0.007163901347666979, -0.007148338947445154, 0.018757903948426247, -0.012180187739431858, 0.01529267244040966, 0.014400427229702473, -0.016651790589094162, 0.03253583610057831, 0.03676881268620491, -0.03504657372832298, 0.015303047373890877, 0.019774649292230606, 0.014390052296221256, -0.01605004444718361, -0.0029257351998239756, -0.020075522363185883, -0.0053690350614488125, -0.013165808282792568, 0.03245283663272858, 0.013912804424762726, 0.025729868561029434, -0.05017324537038803, 0.022472135722637177, 0.007672273553907871, 0.027784109115600586, 0.026331616565585136, 0.0020166304893791676, 0.016848914325237274, 0.028302855789661407, 0.04938475042581558, -0.03749505802989006, 0.08005309104919434, 0.026850363239645958, 0.002482206095010042, 0.022907882928848267, 0.001261204481124878, 0.09810550510883331, 0.01776191033422947, -0.010955944657325745, -0.00904176663607359, -0.0384703055024147, -0.02220238745212555, -0.01709791272878647, -0.03322058171033859, -0.002400503493845463, -0.02118564210832119, -0.00972132571041584, 0.0074440245516598225, -0.00042342752567492425, -0.042329784482717514, 0.02585436962544918, 0.02162139117717743, -0.022098638117313385, 0.053700726479291916, -0.001035549445077777, -0.0815470889210701, 0.031145591288805008, 0.02162139117717743, 0.008761643432080746, -0.039279550313949585, 0.023862378671765327, -0.006920089945197105, -0.03668581321835518, 0.10034649074077606, 0.05050524324178696, -0.08598756045103073, 0.010821070522069931, -0.026331616565585136, 0.040462296456098557, -0.029942097142338753, -0.059967197477817535, 0.03490132465958595, -0.035420071333646774, 0.03627081587910652, 0.01114269345998764, -0.011080443859100342, 0.037017811089754105, -0.03668581321835518, 0.024215126410126686, -0.05170873925089836, -0.007859022356569767, -0.022970132529735565, -0.008725331164896488, -0.04025479406118393, -0.012802684679627419, -0.01227356307208538, -0.04432177543640137, -0.012429187074303627, -0.06930464506149292, 0.06212518364191055, 0.03195483610033989, 0.06693916022777557, 0.005244535859674215, -0.014898424036800861, -0.020241523161530495, -0.047434259206056595, 0.010006636381149292, -0.01894465461373329, 0.05316122993826866, 0.028738604858517647, 0.046645764261484146, 0.03780630975961685, -0.020334897562861443, 0.007729335688054562, -0.006795590743422508, -0.013487431220710278, 0.018010908737778664, 0.10457947105169296, 0.02126864157617092, -0.02797085791826248, 0.050712741911411285, -0.012346187606453896, 0.053327228873968124, 0.06835015118122101, 0.012574436143040657, 0.030045848339796066, 0.10939344763755798, -0.0025768775958567858, 0.024858374148607254, 0.057477209717035294, -0.003382232738658786, -0.002987984800711274, -0.08548956364393234, 0.020189646631479263, -0.07648411393165588, 0.0063339052721858025, -0.01863340474665165, 0.005586909130215645, 0.05971819534897804, 0.03153983876109123, -0.007013464346528053, 0.013975054025650024, 0.05241423472762108, 0.05498722195625305, -0.00628203060477972, 0.020729145035147667, -0.02687111310660839, 0.01965015009045601, -0.0814225897192955, -0.016216043382883072, 0.02089514397084713, 0.07382812350988388, -0.021891139447689056, -0.027846358716487885, 0.05498722195625305, -0.002052942756563425, -0.029527099803090096, 0.026082618162035942, 0.011848189868032932, -0.017834534868597984, -0.004409352783113718, -0.010323072783648968, 0.026227867230772972, -0.010572071187198162, 0.040151044726371765, 0.016288667917251587, -0.07486561685800552, -0.0025470496620982885, 0.016475416719913483, -0.024920623749494553, -0.05859770253300667, -0.04349178075790405, -0.013850554823875427, -0.0030554221011698246, -0.05706220865249634, -0.015043674036860466, 0.0271616131067276, 0.05079574137926102, -0.028344355523586273, -0.06432467699050903, -0.009223327971994877, -0.020324522629380226, 0.044529274106025696, 0.0014369302662089467, -0.027576610445976257, 0.014514551497995853, 0.08026058971881866, -0.005955219734460115, -0.035938818007707596, 0.008523019030690193, 0.03270183503627777, -0.003314795671030879, -0.007459586951881647, -0.022368386387825012, 0.011931189335882664, 0.001848037471063435, -0.02309463359415531, 0.0035689817741513252, 0.003742762142792344, -0.04892825335264206, 0.012294312939047813, -0.006209406070411205, 0.035212572664022446, 0.03676881268620491, -0.020386772230267525, -0.09769050776958466, 0.04050379619002342, -0.013196933083236217, -0.0005472784978337586, -0.029734598472714424, -0.04652126505970955, 0.0017144600860774517, -0.016350917518138885, 0.011547316797077656, 0.04768325760960579, 0.0018376625375822186, -0.0372668094933033, 0.006131594069302082, 0.040877293795347214, -0.01610191911458969, 0.01191043946892023, -0.045110270380973816, -0.010120761580765247, 0.06129518896341324, 0.024526376277208328, -0.0028375480324029922, -0.06619216501712799, 0.005654346197843552, -0.024630125612020493, -0.008491894230246544, -0.01165106613188982, 0.005462409928441048, -0.007947209291160107, -0.0005106419557705522, 0.006401342339813709, -0.00782271008938551, -0.024713125079870224, 0.009819887578487396, -0.00824289582669735, -0.016527291387319565, 0.0428277812898159, 0.03606331720948219, 0.04245428368449211, 0.0015718045178800821, -0.003467826172709465, 0.0031695463694632053, 0.05270473286509514, -0.018872030079364777, 0.01146431639790535, 0.07511461526155472, -0.026269366964697838, 0.003615669207647443, 0.019266277551651, -0.0005268527893349528, 0.037391308695077896, -0.002006255555897951, -0.00023213944223243743, -0.0717531368136406, -0.08665156364440918, -0.0315813384950161, 0.008829080499708652, 0.06216668337583542, 0.011007819324731827, -0.07129663974046707, -0.07461661845445633, -0.05556821823120117, 0.03218308836221695, 0.04614776745438576, 0.01787603460252285, -0.03525407239794731, -0.031104091554880142, 0.0060278442688286304, 0.021496890112757683, 0.040358543395996094, -0.07673311233520508, -0.08208658546209335, 0.02809535712003708, -0.011723690666258335, 0.004746538586914539, 0.02759736031293869, -0.04378227889537811, -0.029962848871946335, -0.07602761685848236, -0.03363557904958725, -0.03817980736494064, 0.051293738186359406, 0.024111377075314522, 0.04112629219889641, -0.014307052828371525, 0.004855475388467312, -0.01596704311668873, 0.022036388516426086, 0.03305458277463913, -0.03328283131122589, -0.03703856095671654, 0.00809764675796032, 0.002531487261876464, 0.040669795125722885, 0.046272266656160355, -0.042703282088041306, 0.0442802757024765, -0.008969142101705074, -0.04826425388455391, -0.06237418204545975, -0.0034833885729312897, 0.0036052942741662264, 0.05619071424007416, 0.07752160727977753, 0.016143418848514557, -0.0387193039059639, -0.06088019162416458, 0.011692565865814686, 0.02481687441468239, -0.022596634924411774, -0.020583895966410637, 0.10557546466588974, -0.005918907467275858, 0.048679251223802567, 0.039507798850536346, 0.05270473286509514, -0.044155776500701904, 0.059303198009729385, 0.045691266655921936, -0.08208658546209335, 0.0038620741106569767, -0.010473509319126606, 0.017232786864042282, 0.03911355137825012, 0.020729145035147667, -0.011951939202845097, -0.005156348925083876, -0.016257543116807938, 0.04172803834080696, -0.022824883460998535, -0.007122401148080826, -0.009653888642787933, -0.053327228873968124, 0.07262463122606277, 0.05324422940611839, -0.034258075058460236, 0.008943204768002033, -0.039279550313949585, -0.02423587627708912, 0.0033796390052884817, -0.07959659397602081, 0.01619529351592064, 0.030398596078157425, -0.002329175593331456, -0.0730811282992363, -0.009384139440953732, 0.02367562986910343, -0.021600641310214996, 0.009928824380040169, -0.004671319853514433, 0.03479757159948349, -0.014421177096664906, 0.023260632529854774, -0.0010212839115411043, 0.01037494745105505, 0.002987984800711274, 0.0827505812048912, -0.041541289538145065, 0.012750810012221336, -0.04324278235435486, -0.013041309081017971, 0.025875119492411613, 0.05145973712205887, -0.037246059626340866, 0.05809970572590828, 0.005034442991018295, -0.00954495184123516, 0.03544082120060921, -0.07391112297773361, 0.019868023693561554, -0.0802190899848938, 0.059801194816827774, -0.05519472062587738, -0.03625006601214409, 0.01387130469083786, -0.02338513173162937, 0.010598008520901203, 0.0070912763476371765, 0.025439370423555374, -0.03741205856204033, 0.007833085022866726, -0.007807147689163685, 0.02330213226377964, -0.003841324243694544, 0.0773141086101532, 0.025812869891524315, 0.0356275700032711, -0.03465232253074646, -0.021579889580607414, 0.020729145035147667, -0.0015627264510840178, 0.012532936409115791, -0.017129037529230118, -0.03413357585668564, -0.014649425633251667, -0.011412441730499268, -0.00298539106734097, 0.05934469774365425, -0.04963374882936478, 0.008201396092772484, 0.009539764374494553, -0.00773452315479517, 0.026995612308382988, -0.033096082508563995, 0.06561116874217987, -0.004640195053070784, -0.035793568938970566, 0.05905419960618019, -0.0038542929105460644, 0.012169812805950642, -0.03035709634423256, -0.07519761472940445, -0.05859770253300667, -0.06830865144729614, -0.006084906402975321, -0.029236601665616035, 0.030419345945119858, -0.042475033551454544, -0.013923179358243942, 0.008548956364393234, 0.042910780757665634, 0.051501236855983734, -0.046562764793634415, -0.007236525882035494, -0.020615020766854286, 0.021683640778064728, 0.01088332012295723, 0.00444825878366828, 0.08495006710290909, -0.01150581706315279, -0.039362549781799316, -0.02350963093340397, -0.018218407407402992, -0.021175267174839973, 0.012512186542153358, 0.01747141219675541, -0.027701109647750854, 0.04614776745438576, 0.036955561488866806, -0.009959949180483818, 0.053617727011442184, -0.03645756468176842, 0.007195026148110628, -0.023634130135178566, 0.02263813465833664, 0.030834343284368515, 0.038636304438114166, -0.005597284063696861, -0.030025098472833633, 0.04942625015974045, 0.022845633327960968, -0.04083579406142235, 0.05706220865249634, -0.007537399418652058, -0.06984414905309677, 0.04332578182220459, -0.006043406669050455, -0.06988564878702164, -0.06864064931869507, 0.012491436675190926, -0.03467307239770889, 0.001967349322512746, 0.05357622727751732, -0.011453941464424133, 0.010987069457769394, -0.0021917077247053385, 0.003213639836758375, -0.015541670843958855, -0.048679251223802567, 0.02234763652086258, -0.056979209184646606, -0.012979059480130672, -0.04668726399540901, 0.0068993400782346725, -0.026456115767359734, -0.027991607785224915, -0.0001471135183237493, -0.016848914325237274, -0.029070602729916573, 0.019743524491786957, 0.034548573195934296, 0.022970132529735565, 0.019172903150320053, 0.0185400303453207 ]
23,374
uvicorn.config
bind_socket
null
def bind_socket(self) -> socket.socket: logger_args: list[str | int] if self.uds: # pragma: py-win32 path = self.uds sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) try: sock.bind(path) uds_perms = 0o666 os.chmod(self.uds, uds_perms) except OSError as exc: logger.error(exc) sys.exit(1) message = "Uvicorn running on unix socket %s (Press CTRL+C to quit)" sock_name_format = "%s" color_message = "Uvicorn running on " + click.style(sock_name_format, bold=True) + " (Press CTRL+C to quit)" logger_args = [self.uds] elif self.fd: # pragma: py-win32 sock = socket.fromfd(self.fd, socket.AF_UNIX, socket.SOCK_STREAM) message = "Uvicorn running on socket %s (Press CTRL+C to quit)" fd_name_format = "%s" color_message = "Uvicorn running on " + click.style(fd_name_format, bold=True) + " (Press CTRL+C to quit)" logger_args = [sock.getsockname()] else: family = socket.AF_INET addr_format = "%s://%s:%d" if self.host and ":" in self.host: # pragma: py-win32 # It's an IPv6 address. family = socket.AF_INET6 addr_format = "%s://[%s]:%d" sock = socket.socket(family=family) sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) try: sock.bind((self.host, self.port)) except OSError as exc: logger.error(exc) sys.exit(1) message = f"Uvicorn running on {addr_format} (Press CTRL+C to quit)" color_message = "Uvicorn running on " + click.style(addr_format, bold=True) + " (Press CTRL+C to quit)" protocol_name = "https" if self.is_ssl else "http" logger_args = [protocol_name, self.host, sock.getsockname()[1]] logger.info(message, *logger_args, extra={"color_message": color_message}) sock.set_inheritable(True) return sock
(self) -> socket.socket
[ -0.011998557485640049, -0.061204370111227036, -0.011969245038926601, 0.003605429781600833, 0.008119544945657253, 0.013913637027144432, -0.0063998824916779995, 0.01714777573943138, -0.00962425023317337, -0.06276769936084747, -0.005623102653771639, 0.0288043562322855, -0.005715925246477127, -0.032732222229242325, 0.014206761494278908, 0.04338240623474121, 0.0013960048090666533, 0.010122561827301979, -0.05979737266898155, -0.008178169839084148, 0.00646339263767004, 0.03474501147866249, 0.037422213703393936, -0.05076914280653, -0.016121840104460716, 0.05694429576396942, -0.03734404593706131, 0.024212073534727097, 0.05553729832172394, -0.044789403676986694, -0.0528014712035656, -0.024387948215007782, 0.011871537193655968, -0.008153743110597134, 0.05338772013783455, 0.003273222129791975, -0.011939932592213154, 0.04213174432516098, 0.03836021199822426, -0.037754420191049576, 0.0006522017647512257, -0.054833799600601196, -0.027260567992925644, 0.04295249283313751, 0.008310075849294662, 0.03947408124804497, 0.04017757996916771, 0.09098580479621887, -0.008344274014234543, -0.00580386258661747, -0.07109243422746658, 0.06612885743379593, -0.04220991209149361, 0.023489033803343773, -0.011011705733835697, 0.03290809690952301, -0.006448736414313316, 0.05499013513326645, -0.08629581332206726, -0.03845791891217232, -0.060735370963811874, 0.021437162533402443, -0.015936195850372314, 0.014529198408126831, -0.018740419298410416, -0.030348144471645355, -0.03417830169200897, -0.01144162192940712, 0.0057843211106956005, 0.01769494079053402, 0.04357782378792763, 0.024641988798975945, -0.026439819484949112, 0.020909538492560387, 0.057217877358198166, 0.05780412629246712, 0.010532936081290245, 0.034803636372089386, -0.027983607724308968, 0.014275156892836094, 0.0778147503733635, 0.027006525546312332, -0.010259353555738926, -0.0002732774009928107, 0.04416407272219658, -0.02016695775091648, -0.026107611134648323, 0.0296055618673563, -0.0308366846293211, -0.037988919764757156, -0.04572740197181702, 0.02993777021765709, -0.008217253722250462, 0.06753585487604141, 0.023371784016489983, -0.028061773627996445, -0.051511723548173904, 0.00296055618673563, -0.011138726025819778, -0.05319230258464813, -0.06335394829511642, 0.04166274517774582, -0.040021248161792755, -0.03267359733581543, 0.025912195444107056, -0.011627267114818096, 0.012653202749788761, 0.018857669085264206, -0.04177999496459961, 0.0031095610465854406, -0.0070349848829209805, 0.007758025079965591, 0.07476625591516495, 0.0207336638122797, -0.06698869168758392, -0.03189193084836006, 0.0001424401270924136, -0.027162859216332436, 0.021339455619454384, 0.013688908889889717, -0.07672042399644852, 0.05850762501358986, -0.0023743074852973223, -0.03744175285100937, 0.008319847285747528, 0.03998216614127159, -0.012174432165920734, -0.0020335502922534943, 0.03744175285100937, -0.03540942445397377, 0.02470061369240284, -0.01919964700937271, 0.0179294403642416, 0.0193168967962265, 0.008270992897450924, -0.015213155187666416, -0.09051680564880371, 0.06550353020429611, -0.008578773587942123, 0.05635804682970047, 0.016082758083939552, 0.011764058843255043, -0.02071412280201912, 0.03836021199822426, 0.007044755853712559, 0.06218145042657852, 0.020635956898331642, 0.03189193084836006, -0.006053018383681774, -0.02266828529536724, 0.0031950557604432106, -0.022140661254525185, -0.03572209179401398, 0.05917204171419144, -0.035253092646598816, 0.013386012986302376, -0.0207336638122797, -0.07226493209600449, -0.0026210204232484102, -0.017304109409451485, -0.07015443593263626, -0.08473248779773712, 0.0685129389166832, -0.047994229942560196, -0.029214730486273766, -0.019785895943641663, 0.001681801164522767, 0.0017416473710909486, 0.06761402636766434, 0.08137132972478867, -0.04224899411201477, 0.0528014712035656, -0.01927781291306019, 0.03890737518668175, 0.07503984123468399, 0.014832093380391598, -0.0007065518875606358, -0.05373946949839592, -0.02470061369240284, 0.0162977147847414, 0.019043313339352608, -0.05495104938745499, 0.02856985665857792, -0.080589659512043, 0.02651798538863659, 0.05807771161198616, 0.013073347508907318, 0.02733873389661312, 0.051159974187612534, -0.000884869194123894, -0.01639542356133461, 0.03267359733581543, 0.05315322056412697, -0.016121840104460716, 0.041271913796663284, 0.05909387394785881, -0.017958752810955048, 0.0012463892344385386, -0.02130037173628807, -0.05542004853487015, 0.011392767541110516, 0.06687144190073013, -0.03359205275774002, 0.01132437214255333, -0.018691563978791237, -0.0038985542487353086, -0.003358716843649745, 0.018642710521817207, 0.06339303404092789, -0.03292763978242874, 0.04463307186961174, -0.07902633398771286, -0.028530772775411606, 0.05131630599498749, 0.03439326211810112, -0.026381194591522217, -0.03470592573285103, 0.001333715976215899, -0.014099282212555408, 0.01809554547071457, 0.020206039771437645, -0.009135710075497627, 0.019727271050214767, -0.019991083070635796, -0.04928397759795189, 0.00908196996897459, -0.007064297329634428, -0.026107611134648323, 0.0523715540766716, 0.0653081089258194, 0.04842414706945419, -0.03882921114563942, -0.012399161234498024, 0.09669195860624313, -0.012252599000930786, 0.010171416215598583, -0.02184753678739071, 0.014617135748267174, 0.03572209179401398, -0.025384571403265, -0.06003187224268913, -0.007899701595306396, 0.0667932778596878, -0.0075772651471197605, 0.05178530514240265, -0.027592774480581284, 0.010161644779145718, 0.004697318188846111, -0.007118036970496178, 0.029566479846835136, -0.03710954636335373, 0.017470212653279305, -0.06464369595050812, -0.026615694165229797, -0.049244895577430725, -0.04975297674536705, -0.07253850996494293, 0.024856947362422943, -0.028159482404589653, 0.029527395963668823, -0.019854290410876274, 0.01616092398762703, -0.017382275313138962, 0.04092016443610191, -0.022746451199054718, -0.02597082033753395, -0.013688908889889717, -0.02309820055961609, -0.023274075239896774, -0.012760681100189686, 0.025677695870399475, -0.01194970402866602, -0.039454542100429535, 0.021241746842861176, -0.031051643192768097, 0.007074068300426006, 0.021241746842861176, -0.020968163385987282, -0.01960024982690811, -0.04463307186961174, 0.05456021800637245, 0.019502541050314903, 0.03619109094142914, 0.0020225581247359514, -0.009990655817091465, 0.022355619817972183, 0.00964867789298296, -0.010220269672572613, -0.03347480297088623, -0.05420846864581108, -0.013258992694318295, -0.038770586252212524, -0.021710745990276337, 0.0002949564077425748, -0.04342149198055267, 0.047759730368852615, -0.01503728050738573, 0.01816393993794918, -0.01331761758774519, -0.07746300101280212, -0.057882294058799744, 0.024915572255849838, -0.001097995089367032, 0.05229339003562927, 0.010855372995138168, -0.03697275370359421, 0.019268043339252472, -0.0631585344672203, -0.012311223894357681, -0.015359717421233654, -0.022609660401940346, -0.02446611411869526, 0.07589967548847198, -0.007108265999704599, 0.0306217260658741, 0.047173481434583664, 0.00021740057854913175, -0.021886620670557022, -0.012565265409648418, 0.04858047887682915, -0.03085622563958168, 0.0024903358425945044, 0.011070330627262592, -0.01526200957596302, 0.022355619817972183, 0.07312475889921188, 0.0596410408616066, 0.017567921429872513, 0.0015095905400812626, 0.04095924645662308, -0.03640604764223099, -0.0001702258741715923, -0.016942588612437248, -0.01776333712041378, 0.012594577856361866, -0.021671662107110023, 0.016923047602176666, 0.02753414958715439, -0.01172497496008873, -0.08051149547100067, -0.04201449453830719, 0.03118843398988247, -0.01649313233792782, -0.00214102934114635, 0.09583213180303574, -0.013640054501593113, -0.0471343994140625, 0.04432040452957153, 0.021124497056007385, 0.01662992313504219, 0.0080560352653265, 0.01681556925177574, -0.05432571843266487, -0.019590478390455246, 0.041037414222955704, 0.019893374294042587, -0.03028951957821846, -0.00022991943114902824, 0.10333611071109772, -0.003637185087427497, 0.002953228075057268, -0.011480704881250858, 0.02323499321937561, -0.04643090069293976, 0.00688842311501503, 0.005080822389572859, 0.02413390763103962, -0.03423692658543587, 0.07050618529319763, 0.05014381185173988, 0.0006863995804451406, -0.035135842859745026, 0.019268043339252472, -0.055498216301202774, -0.03138384968042374, -0.023860324174165726, 0.025599529966711998, -0.015476967208087444, -0.02106587216258049, -0.05737421289086342, 0.012662973254919052, 0.013395784422755241, 0.0628458634018898, -0.0071571203880012035, -0.0006015156395733356, -0.04572740197181702, 0.0013031820999458432, -0.008783960714936256, 0.014890718273818493, 0.035018593072891235, -0.01729433797299862, 0.024681072682142258, 0.05201980471611023, 0.03200918063521385, -0.029292896389961243, -0.03896600008010864, -0.0037129088304936886, 0.054013051092624664, 0.013513034209609032, 0.01769494079053402, -0.05178530514240265, 0.004868307616561651, -0.01441194862127304, 0.04009941592812538, -0.025892652571201324, 0.05616262927651405, 0.041271913796663284, 0.0002515984233468771, 0.020968163385987282, -0.03050447627902031, -0.04666540026664734, 0.0041403817012906075, -0.08082415908575058, 0.01013233233243227, 0.02049916423857212, 0.06675419211387634, -0.025794945657253265, 0.025345487520098686, 0.046040069311857224, 0.03357251361012459, -0.03290809690952301, -0.028745731338858604, 0.00962425023317337, 0.0705452635884285, 0.00031388734350912273, 0.05839037522673607, -0.03836021199822426, -0.01475392747670412, 0.03669917210936546, -0.0008983041043393314, 0.015105675905942917, 0.05577179789543152, -0.016366111114621162, -0.047759730368852615, 0.044554904103279114, -0.024759238585829735, 0.0029288011137396097, 0.019922686740756035, 0.037050921469926834, 0.006351028103381395, -0.030309060588479042, -0.028139939531683922, -0.023743074387311935, 0.021671662107110023, 0.03802800178527832, 0.005745237693190575, -0.039884455502033234, -0.009252959862351418, -0.047173481434583664, -0.01480278093367815, -0.013444637879729271, -0.05135539174079895, -0.004213662818074226, -0.041271913796663284, -0.015916652977466583, -0.07679858803749084, -0.04213174432516098, 0.031794223934412, 0.010679498314857483, -0.008906095288693905, 0.01919964700937271, -0.014333781786262989, 0.026244401931762695, 0.017841503024101257, -0.09090764075517654, -0.049596644937992096, 0.12342490255832672, -0.05264513939619064, 0.0010845601791515946, 0.009150366298854351, 0.015183842740952969, -0.010230041109025478, 0.029918227344751358, 0.003849700093269348, -0.0025062134955078363, -0.005305551458150148, 0.034549593925476074, -0.010161644779145718, -0.04572740197181702, 0.017607003450393677, -0.02059687301516533, -0.014030886813998222, 0.017626546323299408, 0.05729604512453079, -0.037168171256780624, -0.010210499167442322, 0.007293911650776863, -0.02198432758450508, 0.011685892008244991, 0.02255103550851345, 0.040138497948646545, 0.02778819017112255, -0.04154549539089203, -0.040021248161792755, 0.07679858803749084, 0.002489114413037896, -0.01941460557281971, -0.012565265409648418, -0.04858047887682915, -0.021691203117370605, -0.0378912128508091, -0.02802268974483013, -0.01020072866231203, 0.008920751512050629, 0.012496869079768658, 0.00852991919964552, 0.0014546297024935484, 0.023430408909916878, -0.02028420753777027, -0.01332738809287548, 0.008593429811298847, 0.015164300799369812, 0.0006558658205904067, 0.026947900652885437, -0.004006033297628164, -0.008500606752932072, -0.0059259976260364056, -0.0024256042670458555, -0.05592812970280647, -0.07488350570201874, 0.020968163385987282, 0.013894095085561275, 0.0017318765167146921, 0.014783239923417568, -0.004025574773550034, -0.0001903781812870875, 0.04850231483578682, 0.05780412629246712, 0.03015272691845894, 0.0330253466963768, -0.0015181399649009109, 0.016258632764220238, 0.012037641368806362, -0.033181678503751755, 0.08098049461841583, 0.02585357055068016, -0.015222925692796707, -0.05889846011996269, -0.16540031135082245, -0.009287157095968723, -0.014626906253397465, 0.04271799325942993, -0.05987554043531418, -0.07902633398771286, -0.045141153037548065, -0.013835471123456955, 0.016620151698589325, -0.0021398079115897417, 0.03691412881016731, -0.06866927444934845, 0.0030973476823419333, 0.04056841507554054, 0.014597593806684017, 0.06214236840605736, -0.03914187476038933, -0.022609660401940346, 0.01729433797299862, -0.018525460734963417, -0.050495561212301254, -0.00010984530672430992, -0.03064126893877983, -0.02286370098590851, 0.01667877659201622, 0.01896514743566513, -0.08207482844591141, 0.014490115456283092, -0.04111557826399803, -0.02972281165421009, -0.025677695870399475, -0.0007602913537994027, -0.043108824640512466, 0.05373946949839592, 0.014050428755581379, 0.007762910798192024, -0.01354234665632248, 0.02323499321937561, 0.028882522135972977, 0.04420315474271774, 0.05463838577270508, 0.04779881611466408, -0.03781304508447647, 0.018877210095524788, -0.046391818672418594, -0.02106587216258049, -0.017255255952477455, 0.05913295969367027, -0.02765139937400818, 0.015095905400812626, -0.007181547116488218, -0.0688256025314331, 0.0006137291784398258, -0.02243378572165966, -0.019961770623922348, -0.053700387477874756, -0.004587396513670683, -0.03218505531549454, -0.015985049307346344, -0.011461162939667702, 0.07476625591516495, 0.017382275313138962, -0.03794983774423599, 0.027123775333166122, 0.016688548028469086, -0.0366600900888443, 0.0024805651046335697, -0.046157319098711014, -0.04041207954287529, 0.022941868752241135, -0.020987706258893013, 0.009888062253594398, -0.03619109094142914, 0.026908818632364273, -0.020792288705706596, 0.005417915526777506, -0.001646381919272244, 0.044789403676986694, 0.019727271050214767, 0.0673404410481453, 0.039689041674137115, 0.02903885580599308, 0.024739697575569153, -0.003370930440723896, -0.004059772472828627, -0.005818518809974194, -0.04846322908997536, 0.013141742907464504, -0.00045403745025396347, 0.033064428716897964, -0.02632256969809532, -0.017040297389030457, 0.003791075199842453, -0.0035810028202831745, 0.03370930254459381, 0.0121842036023736, -0.022941868752241135, 0.010943310335278511, 0.022570576518774033, 0.0009514328557997942, -0.014001574367284775, 0.024622447788715363, 0.07789292186498642, -0.062455035746097565, 0.06139978766441345, -0.06171245127916336, 0.020987706258893013, 0.051277223974466324, 0.07206951081752777, -0.0162977147847414, -0.012526181526482105, -0.027377817779779434, 0.03650375455617905, 0.03449096903204918, -0.015242467634379864, 0.01649313233792782, 0.05155080556869507, 0.0121842036023736, -0.018554773181676865, 0.0013972262386232615, 0.009673104621469975, 0.008735106326639652, -0.024427032098174095, -0.006155611947178841, 0.05839037522673607, -0.013620512560009956, 0.023997114971280098, 0.029214730486273766, 0.01428492832928896, -0.04322607442736626, -0.006009049713611603, 0.004101298749446869, 0.027944523841142654, 0.004487245809286833, -0.05956287309527397, 0.03073897585272789, -0.018320273607969284, 0.011138726025819778, 0.0016048559918999672, 0.02311774343252182, -0.03724633902311325, -0.07105334848165512, 0.024172989651560783, -0.016307486221194267, -0.026674319058656693, -0.05940654128789902, 0.04131099581718445, 0.024172989651560783, 0.01769494079053402, -0.022355619817972183, 0.016112070530653, -0.024622447788715363, -0.037422213703393936, 0.013972261920571327, 0.008661825209856033, 0.05022197589278221, -0.04166274517774582, -0.05510738492012024, -0.017284568399190903, -0.04826781526207924, -0.05045647546648979, -0.004401750862598419, 0.06831752508878708, -0.017470212653279305, 0.011510017327964306, -0.004167251754552126, -0.004646021407097578, 0.0076505462639033794, -0.016121840104460716, -0.0032414670567959547, 0.07077976316213608, 0.05545913055539131, 0.019893374294042587, -0.03982583060860634, 0.022844159975647926, -0.006624611094594002, -0.0031828421633690596, -0.00453609973192215, -0.02151533029973507, 0.019873833283782005, -0.018974918872117996, 0.009888062253594398, -0.006707662716507912, 0.04166274517774582, 0.06030545383691788, -0.04064657911658287, 0.060969870537519455, -0.05936745926737785, 0.012516411021351814, 0.005422800779342651, 0.023879865184426308, 0.015701696276664734, -0.008319847285747528, -0.02653752639889717, -0.05784321203827858, 0.05968012288212776, -0.04177999496459961, -0.01915079355239868, 0.07496167719364166, 0.004851208534091711, -0.08082415908575058, 0.037852127104997635, 0.014705073088407516, -0.02608807012438774, -0.041389163583517075, 0.010904226452112198, 0.004045116249471903, -0.05428663641214371, -0.00005450281241792254, 0.0048976195976138115, 0.025775402784347534, 0.009546084329485893, 0.05502921715378761, 0.007420932408422232, -0.051511723548173904, -0.010073707439005375, 0.015623529441654682, -0.053231388330459595, -0.03247817978262901, 0.04904947802424431, 0.017138006165623665, 0.004726630635559559, 0.009580281563103199, 0.03109072521328926, -0.0032683368772268295, -0.010669727809727192, 0.021827995777130127, 0.03867287561297417, -0.021046331152319908, -0.005403259303420782 ]
23,375
uvicorn.config
configure_logging
null
def configure_logging(self) -> None: logging.addLevelName(TRACE_LOG_LEVEL, "TRACE") if self.log_config is not None: if isinstance(self.log_config, dict): if self.use_colors in (True, False): self.log_config["formatters"]["default"]["use_colors"] = self.use_colors self.log_config["formatters"]["access"]["use_colors"] = self.use_colors logging.config.dictConfig(self.log_config) elif self.log_config.endswith(".json"): with open(self.log_config) as file: loaded_config = json.load(file) logging.config.dictConfig(loaded_config) elif self.log_config.endswith((".yaml", ".yml")): # Install the PyYAML package or the uvicorn[standard] optional # dependencies to enable this functionality. import yaml with open(self.log_config) as file: loaded_config = yaml.safe_load(file) logging.config.dictConfig(loaded_config) else: # See the note about fileConfig() here: # https://docs.python.org/3/library/logging.config.html#configuration-file-format logging.config.fileConfig(self.log_config, disable_existing_loggers=False) if self.log_level is not None: if isinstance(self.log_level, str): log_level = LOG_LEVELS[self.log_level] else: log_level = self.log_level logging.getLogger("uvicorn.error").setLevel(log_level) logging.getLogger("uvicorn.access").setLevel(log_level) logging.getLogger("uvicorn.asgi").setLevel(log_level) if self.access_log is False: logging.getLogger("uvicorn.access").handlers = [] logging.getLogger("uvicorn.access").propagate = False
(self) -> NoneType
[ -0.06337539851665497, -0.04304598644375801, -0.0269903726875782, 0.005212299060076475, 0.008196256123483181, -0.0007610293687321246, -0.06141176074743271, 0.043084487318992615, -0.024295184761285782, -0.031918711960315704, -0.014091976918280125, 0.011367913335561752, 0.04219892621040344, -0.01585347391664982, 0.03576898202300072, -0.010501603595912457, 0.0011171790538355708, -0.010386095382273197, 0.00825401023030281, -0.007724598050117493, -0.008504277095198631, -0.013774330727756023, -0.040889836847782135, -0.019357217475771904, 0.0093417102470994, 0.016431014984846115, -0.051786091178655624, -0.0032991976477205753, 0.021022457629442215, -0.008210694417357445, -0.06283635646104813, -0.05455828458070755, -0.03471015766263008, 0.015680212527513504, 0.01237860880792141, -0.058177534490823746, -0.031071655452251434, -0.013899464160203934, -0.00476229889318347, 0.06595507264137268, -0.01619037240743637, -0.020444918423891068, -0.029512297362089157, -0.022389302030205727, -0.03742459416389465, 0.021773260086774826, 0.00958235189318657, 0.13191014528274536, -0.01831764541566372, -0.02906951680779457, -0.06445346772670746, 0.02722138725221157, -0.05432726815342903, 0.034036360681056976, 0.021619249135255814, -0.022254543378949165, 0.03788662701845169, -0.03226523846387863, -0.028973259031772614, -0.03505668044090271, -0.016180746257305145, -0.00020995987870264798, -0.0016243313439190388, 0.028722992166876793, -0.00424732593819499, -0.0257390346378088, -0.021368982270359993, 0.05844705179333687, 0.020040640607476234, -0.019241709262132645, -0.006593582220375538, -0.07781389355659485, 0.024795720353722572, -0.020560426637530327, -0.04054331034421921, 0.0014727271627634764, -0.039888765662908554, 0.04731978103518486, -0.011829945258796215, 0.03702031821012497, -0.0030705879908055067, 0.03480641543865204, 0.003619251074269414, -0.00913475826382637, 0.04843635857105255, -0.017942244186997414, -0.07931549847126007, -0.0024509355425834656, 0.016710158437490463, -0.04889839142560959, -0.06711015105247498, 0.01458288636058569, 0.005698395427316427, -0.010097324848175049, -0.01847165636718273, 0.00450481241568923, -0.01956898160278797, -0.03715507686138153, -0.011396790854632854, -0.028241708874702454, -0.0318417064845562, 0.04758930206298828, 0.058062028139829636, -0.033150799572467804, 0.012128341011703014, -0.051170047372579575, -0.03873368725180626, 0.05205560848116875, 0.04208341985940933, 0.03189946338534355, 0.0029647056944668293, -0.028742242604494095, 0.035133685916662216, -0.022889837622642517, -0.022273793816566467, 0.007599464617669582, 0.009991442784667015, -0.050207480788230896, -0.04069732129573822, 0.004921122454106808, -0.012840640731155872, 0.014313368126749992, 0.04631871357560158, -0.012936897575855255, -0.01893368735909462, 0.03209197521209717, -0.04011978209018707, 0.04000427573919296, 0.0416983924806118, -0.01948235183954239, 0.047242775559425354, 0.010520854964852333, -0.009745988063514233, -0.03141817823052406, 0.057677000761032104, 0.029743311926722527, -0.06422245502471924, 0.045548658818006516, 0.02404491789638996, 0.09664170444011688, -0.011185025796294212, -0.05059250816702843, -0.0019708555191755295, -0.040389299392700195, 0.02073368802666664, 0.03688555955886841, -0.029935825616121292, 0.0008241977775469422, -0.029242778196930885, -0.0021284758113324642, 0.02756791189312935, -0.00637700455263257, -0.02315935678780079, 0.048243846744298935, -0.03297753632068634, -0.021137965843081474, -0.004644384607672691, 0.06091122329235077, 0.035980746150016785, 0.03051336668431759, -0.01865454390645027, -0.040389299392700195, 0.0724235251545906, -0.044201064854860306, -0.014014972373843193, -0.043469514697790146, 0.00939946435391903, 0.022851334884762764, 0.016296254470944405, -0.00024560492602176964, -0.022986093536019325, -0.021137965843081474, -0.016575399786233902, 0.0661090835928917, 0.050708018243312836, 0.014833154156804085, -0.013783955946564674, 0.020618179813027382, -0.006959357764571905, 0.018895184621214867, -0.0027818179223686457, -0.026047056540846825, 0.01600748486816883, -0.009572726674377918, 0.021985024213790894, 0.005727272015064955, 0.012898394837975502, -0.014380747452378273, -0.016652405261993408, 0.03773261606693268, 0.05844705179333687, -0.006574330851435661, -0.0013199197128415108, -0.07269304245710373, 0.10965560376644135, 0.0637219175696373, -0.0015677806222811341, -0.028511228039860725, 0.0527486577630043, -0.03727058321237564, 0.0009354945505037904, 0.04262245446443558, -0.028376467525959015, 0.019395720213651657, 0.05036149173974991, -0.007657218724489212, 0.02034866064786911, 0.04131336510181427, 0.022350799292325974, 0.021407485008239746, -0.049591440707445145, -0.010087699629366398, 0.036462027579545975, 0.040504809468984604, -0.03089839220046997, -0.0070844911970198154, -0.024737965315580368, 0.03147593140602112, -0.020521923899650574, 0.04131336510181427, 0.08493688702583313, -0.0009601603378541768, -0.016094116494059563, -0.009014437906444073, -0.01275400910526514, 0.03921496868133545, 0.04450908675789833, -0.019963635131716728, 0.008383956737816334, 0.006266309414058924, 0.006054544821381569, 0.033035289496183395, -0.03503742814064026, 0.07692833244800568, -0.015545452944934368, 0.03039785847067833, 0.04300748184323311, 0.060256678611040115, -0.04512513056397438, 0.002627807203680277, -0.02966630831360817, 0.01763422228395939, -0.0026831547729671, 0.0024461227003484964, -0.03675079718232155, -0.061373256146907806, -0.033285558223724365, 0.050322990864515305, 0.020772190764546394, 0.04735828563570976, 0.0018457217374816537, 0.014438501559197903, -0.05648341774940491, -0.0013042779173702002, -0.05140106379985809, -0.034979674965143204, 0.022158287465572357, 0.029204275459051132, 0.0020370318088680506, -0.023217109963297844, -0.004723796155303717, -0.04239144176244736, 0.020560426637530327, -0.0065598925575613976, 0.023101601749658585, -0.0011665106285363436, 0.05340320244431496, -0.0661475881934166, -0.017855612561106682, 0.0374053455889225, 0.06468448787927628, 0.005948662757873535, -0.02379465103149414, 0.02377539873123169, -0.024680212140083313, -0.0015268714632838964, -0.024006415158510208, -0.007315507158637047, -0.018539035692811012, 0.0919443741440773, 0.06942031532526016, -0.019106950610876083, 0.033535826951265335, 0.029608553275465965, 0.034883420914411545, -0.015843849629163742, 0.0055155074223876, 0.006824598181992769, -0.026066306978464127, -0.0025676467921584845, -0.010116576217114925, 0.0008055480429902673, -0.05336470156908035, 0.03754010424017906, 0.033766843378543854, -0.015930479392409325, 0.004966844338923693, 0.03037860617041588, 0.0002582386077847332, -0.03886844590306282, -0.03492192178964615, -0.036096252501010895, 0.0453561469912529, -0.014842779375612736, 0.06653261184692383, 0.024930479004979134, 0.01275400910526514, -0.04146737605333328, 0.0362117625772953, 0.01648876816034317, -0.023736895993351936, 0.028626736253499985, 0.05232512950897217, 0.0036745986435562372, -0.0380406379699707, 0.013899464160203934, -0.006887165363878012, -0.0004927138797938824, 0.006968983449041843, 0.028414970263838768, -0.05586737394332886, 0.0269903726875782, -0.04912940785288811, -0.030628874897956848, 0.04631871357560158, -0.022658821195364, 0.039272721856832504, 0.04397004842758179, -0.04855186864733696, 0.014833154156804085, -0.08285774290561676, 0.02747165597975254, 0.013928340747952461, 0.004293047823011875, -0.017711227759718895, -0.04385454207658768, -0.04978395253419876, -0.01024171058088541, 0.007604277227073908, -0.011993581429123878, -0.08000855147838593, 0.025354009121656418, -0.016479142010211945, 0.024218179285526276, 0.01655614748597145, 0.022485559806227684, -0.0019407751969993114, 0.027875933796167374, -0.0022006682120263577, 0.040042776614427567, 0.007041175849735737, -0.03505668044090271, -0.04023529216647148, 0.03224598616361618, -0.022485559806227684, -0.0601026676595211, -0.02795293927192688, -0.0625283345580101, -0.0001388953678542748, 0.006314437836408615, -0.0015533420955762267, 0.019886629655957222, 0.012850265949964523, 0.014303741976618767, 0.023717645555734634, 0.03361283242702484, -0.029608553275465965, -0.005414437968283892, 0.056829940527677536, -0.02208128198981285, 0.01667165569961071, -0.05247914046049118, 0.05894758924841881, 0.02735614776611328, -0.019963635131716728, 0.02928128093481064, -0.0046155075542628765, -0.02612406201660633, -0.016527270898222923, 0.016392512246966362, 0.06479999423027039, 0.05505881831049919, -0.019405346363782883, -0.024352939799427986, -0.02208128198981285, -0.02389090694487095, 0.02000213786959648, -0.02354438230395317, 0.02858823351562023, 0.0032823525834828615, -0.011550800874829292, 0.017364704981446266, -0.008451336063444614, -0.04404705390334129, -0.015372191555798054, -0.04239144176244736, -0.03407486155629158, 0.06849624961614609, 0.01931871473789215, 0.0038045451510697603, -0.040158286690711975, -0.025026734918355942, 0.03124491684138775, 0.02367914281785488, 0.02722138725221157, 0.05321069061756134, 0.05894758924841881, 0.019645987078547478, 0.027914436534047127, -0.06795721501111984, 0.000028162598027847707, 0.0029863633681088686, -0.06649411469697952, 0.04397004842758179, 0.009688233956694603, 0.004976470023393631, 0.08370480686426163, -0.008566844277083874, -0.022947590798139572, 0.021157218143343925, -0.034344382584095, 0.006237432360649109, 0.010010694153606892, 0.01726844720542431, 0.07092192023992538, 0.03436363488435745, -0.0453946478664875, 0.04705026373267174, -0.03238074481487274, -0.03777112066745758, -0.034248124808073044, 0.08401282876729965, -0.013254544697701931, 0.013793581165373325, 0.04585668072104454, -0.02722138725221157, -0.022235292941331863, 0.04254544898867607, -0.004066844470798969, 0.0016820854507386684, 0.006145988591015339, -0.04620320349931717, -0.013437432236969471, -0.015285559929907322, 0.03765561059117317, 0.07019037008285522, -0.03411336615681648, -0.00349411740899086, 0.016893045976758003, -0.07538823038339615, -0.04574117064476013, -0.005270053166896105, -0.07069090008735657, -0.022119784727692604, -0.003698662854731083, -0.009726736694574356, -0.030243847519159317, 0.002545989118516445, 0.025045987218618393, -0.00726256612688303, 0.006348127964884043, -0.020521923899650574, -0.012522993609309196, -0.0027577537111938, -0.02978181466460228, -0.024660959839820862, 0.14908233284950256, -0.02539251185953617, -0.05652191862463951, -0.030840639024972916, 0.04474010318517685, -0.011964704841375351, -0.02866523712873459, 0.009962566196918488, -0.01667165569961071, 0.030744383111596107, 0.033651333302259445, -0.034767910838127136, -0.04023529216647148, 0.035711225122213364, -0.011714437045156956, -0.0294160395860672, -0.02843422256410122, 0.022832082584500313, 0.011059892363846302, -0.046549730002880096, 0.026566842570900917, 0.04547165334224701, 0.02587379515171051, -0.043585021048784256, 0.013139036484062672, -0.06591656804084778, -0.04708876460790634, 0.03178395330905914, 0.02489197626709938, 0.026624595746397972, 0.031687699258327484, -0.03147593140602112, -0.02916577272117138, 0.05282566323876381, 0.0033497323747724295, -0.037212830036878586, -0.007719785440713167, 0.03925347328186035, 0.02000213786959648, 0.008817111141979694, 0.019155077636241913, 0.01458288636058569, -0.055212829262018204, -0.010703742504119873, -0.00430508004501462, 0.08501389622688293, -0.04081283137202263, -0.003171657444909215, -0.008427271619439125, -0.019511228427290916, -0.046164702624082565, 0.005173796322196722, -0.0036938500124961138, -0.06214331090450287, -0.017133688554167747, -0.028530478477478027, 0.03823314979672432, -0.02575828693807125, 0.02317860722541809, 0.036462027579545975, 0.06888128072023392, 0.04708876460790634, -0.0465882308781147, 0.046395719051361084, -0.08285774290561676, 0.0027770050801336765, -0.028896253556013107, -0.011002138257026672, 0.004781550262123346, 0.05540534108877182, 0.01918395608663559, 0.0018830212065950036, -0.009548662230372429, -0.007392512634396553, 0.009851871058344841, -0.02612406201660633, 0.006232619751244783, -0.042891975492239, -0.055212829262018204, -0.05613689497113228, -0.040620315819978714, -0.006824598181992769, 0.04081283137202263, -0.010376469232141972, 0.07673582434654236, 0.05525133013725281, 0.03103315271437168, 0.05140106379985809, -0.011791442520916462, -0.04866737499833107, 0.008898929692804813, -0.00807112269103527, 0.01662352867424488, 0.02795293927192688, -0.00858609564602375, -0.017932618036866188, -0.074810691177845, 0.010049196891486645, -0.03773261606693268, -0.011762565933167934, -0.0349411740899086, 0.07415614277124405, -0.018327271565794945, -0.006319250911474228, 0.020425666123628616, 0.017124062404036522, -0.0478203147649765, 0.007291443180292845, -0.058177534490823746, 0.07219250500202179, 0.04115935415029526, 0.08909517526626587, 0.019925132393836975, 0.03137967735528946, -0.018962565809488297, -0.0023631013464182615, 0.027972189709544182, -0.027972189709544182, -0.012282351963222027, -0.007325132843106985, 0.026874864473938942, 0.038810692727565765, 0.04547165334224701, -0.024795720353722572, -0.052171118557453156, -0.005544384475797415, 0.04439358040690422, -0.06572405993938446, -0.03653903305530548, 0.07338608801364899, -0.011935827322304249, -0.021022457629442215, 0.07977753132581711, 0.03759785741567612, -0.05983315035700798, 0.0025652404874563217, 0.001461898209527135, -0.0379636324942112, -0.02735614776611328, -0.01961711049079895, 0.05525133013725281, 0.02011764608323574, 0.012782886624336243, 0.044316574931144714, -0.012166843749582767, 0.000026150983103434555, 0.03657753765583038, -0.03628876805305481, 0.024333687499165535, -0.02523850090801716, 0.041852403432130814, 0.042352937161922455, 0.061950795352458954, -0.0300128310918808, 0.009356148540973663, -0.027914436534047127, -0.03295828402042389, 0.009991442784667015, -0.05525133013725281, 0.010530480183660984, -0.02622031792998314, -0.10334116965532303, -0.04508662596344948, -0.013937966898083687, 0.01669090799987316, -0.02980106696486473, -0.042121920734643936, -0.0527486577630043, -0.004601069260388613, -0.01745133474469185, 0.02057967707514763, -0.005270053166896105, 0.041621387004852295, 0.010145453736186028, 0.08770908415317535, -0.07588876038789749, 0.013629944995045662, -0.042237430810928345, 0.032785024493932724, 0.018144384026527405, 0.01986737735569477, 0.0003940507594961673, 0.03245775029063225, -0.011425667442381382, 0.021388232707977295, 0.010944384150207043, -0.045317642390728, 0.06972833722829819, -0.048128336668014526, 0.027375398203730583, -0.018173260614275932, 0.013668447732925415, 0.031937964260578156, -0.0059823524206876755, 0.010020320303738117, 0.009197325445711613, 0.0065213898196816444, 0.03345882147550583, 0.07754437625408173, -0.04601069167256355, 0.01353368815034628, -0.0029454543255269527, 0.047242775559425354, 0.01090588141232729, 0.04119785875082016, -0.05382673442363739, -0.02489197626709938, 0.06314437836408615, 0.06707165390253067, 0.033401068300008774, 0.01299465075135231, 0.024102671071887016, 0.0386374294757843, -0.08732405304908752, -0.03886844590306282, 0.08693902939558029, -0.024295184761285782, -0.00024590571410954, 0.06968983262777328, 0.0018168448004871607, -0.01617112196981907, -0.018558287993073463, 0.04400855302810669, 0.016594650223851204, -0.030455611646175385, -0.013418180868029594, -0.08424384146928787, 0.056098390370607376, -0.01650802046060562, -0.011531549505889416, -0.022947590798139572, -0.08408983051776886, -0.02290908806025982, -0.027625665068626404, 0.019905880093574524, -0.07180748134851456, -0.0014823528472334146, -0.013331549242138863, -0.019626736640930176, -0.023197859525680542, -0.01208021305501461, -0.045895181596279144, 0.01698930375277996, -0.03189946338534355, -0.03836791217327118, 0.010578609071671963, 0.05282566323876381, -0.04631871357560158, -0.01614224538207054, 0.0490138977766037, -0.008913367986679077, -0.026682350784540176, -0.02229304611682892, -0.03186095878481865, -0.05201710760593414, 0.039195720106363297, 0.015093047171831131, 0.02121497131884098, 0.08177967369556427, -0.02391015738248825, -0.018875934183597565, 0.020560426637530327, 0.01494866143912077, -0.018481282517313957, 0.004345988854765892, -0.021041709929704666, -0.08047058433294296, 0.0013788768555969, -0.024352939799427986, 0.007671657018363476, -0.015372191555798054, 0.0007267378969117999, -0.025334756821393967, -0.022735826671123505, -0.01697005145251751, -0.05224812403321266, -0.07076790928840637, -0.006906416267156601, 0.015786094591021538, 0.013764704577624798, 0.0075705875642597675, 0.009471656754612923, -0.02706737630069256, -0.004942780360579491, -0.007219250779598951, -0.009447592310607433, -0.013880212791264057, 0.0042136358097195625, 0.01792299374938011, -0.02672085352241993, -0.009596790187060833, 0.0147080197930336, 0.011098395101726055, -0.03605775162577629, 0.01895293965935707, -0.005996790714561939, 0.004223261494189501, 0.020521923899650574, 0.08231870830059052, 0.07404063642024994, 0.01913582719862461, -0.01452513225376606 ]
23,376
uvicorn.config
load
null
def load(self) -> None: assert not self.loaded if self.is_ssl: assert self.ssl_certfile self.ssl: ssl.SSLContext | None = create_ssl_context( keyfile=self.ssl_keyfile, certfile=self.ssl_certfile, password=self.ssl_keyfile_password, ssl_version=self.ssl_version, cert_reqs=self.ssl_cert_reqs, ca_certs=self.ssl_ca_certs, ciphers=self.ssl_ciphers, ) else: self.ssl = None encoded_headers = [(key.lower().encode("latin1"), value.encode("latin1")) for key, value in self.headers] self.encoded_headers = ( [(b"server", b"uvicorn")] + encoded_headers if b"server" not in dict(encoded_headers) and self.server_header else encoded_headers ) if isinstance(self.http, str): http_protocol_class = import_from_string(HTTP_PROTOCOLS[self.http]) self.http_protocol_class: type[asyncio.Protocol] = http_protocol_class else: self.http_protocol_class = self.http if isinstance(self.ws, str): ws_protocol_class = import_from_string(WS_PROTOCOLS[self.ws]) self.ws_protocol_class: type[asyncio.Protocol] | None = ws_protocol_class else: self.ws_protocol_class = self.ws self.lifespan_class = import_from_string(LIFESPAN[self.lifespan]) try: self.loaded_app = import_from_string(self.app) except ImportFromStringError as exc: logger.error("Error loading ASGI app. %s" % exc) sys.exit(1) try: self.loaded_app = self.loaded_app() except TypeError as exc: if self.factory: logger.error("Error loading ASGI app factory: %s", exc) sys.exit(1) else: if not self.factory: logger.warning( "ASGI app factory detected. Using it, " "but please consider setting the --factory flag explicitly." ) if self.interface == "auto": if inspect.isclass(self.loaded_app): use_asgi_3 = hasattr(self.loaded_app, "__await__") elif inspect.isfunction(self.loaded_app): use_asgi_3 = asyncio.iscoroutinefunction(self.loaded_app) else: call = getattr(self.loaded_app, "__call__", None) use_asgi_3 = asyncio.iscoroutinefunction(call) self.interface = "asgi3" if use_asgi_3 else "asgi2" if self.interface == "wsgi": self.loaded_app = WSGIMiddleware(self.loaded_app) self.ws_protocol_class = None elif self.interface == "asgi2": self.loaded_app = ASGI2Middleware(self.loaded_app) if logger.getEffectiveLevel() <= TRACE_LOG_LEVEL: self.loaded_app = MessageLoggerMiddleware(self.loaded_app) if self.proxy_headers: self.loaded_app = ProxyHeadersMiddleware(self.loaded_app, trusted_hosts=self.forwarded_allow_ips) self.loaded = True
(self) -> NoneType
[ 0.014940942637622356, -0.04941845312714577, -0.08206183463335037, -0.003791908035054803, 0.010973864234983921, 0.0033204955980181694, 0.033117372542619705, 0.04686303809285164, -0.05069616436958313, -0.030664995312690735, 0.028851475566625595, 0.025986935943365097, -0.002861963352188468, 0.015909528359770775, -0.006527645979076624, 0.011416940949857235, -0.015837399289011955, -0.0013266525929793715, 0.007357126101851463, -0.12570999562740326, -0.017702439799904823, 0.03913496434688568, -0.0061876107938587666, -0.028233228251338005, 0.028109580278396606, -0.02435888722538948, -0.016002263873815536, 0.02238050103187561, 0.07596181333065033, 0.004621387924998999, 0.029469721019268036, -0.01127268373966217, 0.03787786513566971, 0.005286002531647682, 0.057455651462078094, -0.029799452051520348, -0.0006420740974135697, -0.06421513855457306, 0.009253080002963543, -0.015198544599115849, -0.0231223963201046, -0.044513702392578125, 0.030664995312690735, -0.016857504844665527, -0.017620008438825607, 0.016775071620941162, -0.022936921566724777, 0.10098016262054443, 0.004057238809764385, 0.011035689152777195, -0.036744412034749985, -0.005559060722589493, 0.014044485986232758, 0.05370495840907097, -0.015796182677149773, 0.11004776507616043, -0.0407630130648613, 0.03410656377673149, -0.02450314536690712, 0.004567291587591171, -0.01851646415889263, -0.042865049093961716, 0.022277459502220154, -0.018629809841513634, 0.010705958120524883, 0.009113974869251251, -0.02951093763113022, 0.016167130321264267, -0.015981655567884445, -0.018619505688548088, 0.035075150430202484, 0.020433027297258377, -0.0022720536217093468, 0.011736367829144001, 0.01871224120259285, 0.01622895523905754, -0.03177784010767937, -0.02343151904642582, -0.026563964784145355, 0.013240765780210495, 0.04327721148729324, 0.011324203573167324, -0.027120385318994522, -0.04154612496495247, 0.061865806579589844, -0.012303093448281288, 0.006738880183547735, -0.028439311310648918, -0.05972255393862724, -0.04356572777032852, -0.028109580278396606, 0.05860970914363861, 0.026893695816397667, 0.05341644585132599, 0.041319433599710464, -0.04628600925207138, 0.0021471164654940367, -0.009150039404630661, 0.010726566426455975, -0.0253892969340086, -0.016981152817606926, 0.014229959808290005, -0.04776979982852936, -0.011344811879098415, 0.027140993624925613, -0.012704952619969845, 0.036476507782936096, -0.022009553387761116, 0.018753457814455032, -0.02080397494137287, 0.005425107665359974, -0.045585330575704575, 0.010808998718857765, 0.037506915628910065, -0.0669766366481781, -0.002166436519473791, -0.010922344401478767, 0.00495111895725131, 0.045873843133449554, 0.018227949738502502, -0.12183565646409988, 0.030108574777841568, 0.017620008438825607, 0.015703445300459862, 0.040392063558101654, 0.03697110339999199, 0.0027099777944386005, -0.06524554640054703, 0.052138734608888626, -0.07501383125782013, 0.06145364046096802, -0.00026951657491736114, -0.001454165787436068, -0.007022242993116379, -0.017094498500227928, -0.02528625726699829, -0.037980906665325165, 0.0429062657058239, -0.009186103008687496, 0.08094899356365204, -0.026234233751893044, 0.014085701666772366, -0.01642473228275776, -0.028666000813245773, 0.018815282732248306, -0.00287226727232337, -0.013931140303611755, -0.019897213205695152, -0.04570898041129112, -0.010479267686605453, 0.07546721398830414, -0.04049510508775711, -0.010149536654353142, 0.038867056369781494, -0.04443126916885376, 0.00612578634172678, -0.03713596984744072, 0.006017593201249838, -0.024235239252448082, -0.018434030935168266, -0.07262328267097473, -0.0014979582047089934, 0.0015636468306183815, -0.07262328267097473, -0.015548883937299252, 0.003016524715349078, 0.0094746183604002, 0.019814779981970787, 0.033137980848550797, 0.05844484269618988, -0.0853179320693016, -0.002623680979013443, -0.028583567589521408, 0.00809386931359768, 0.029572760686278343, 0.0641327053308487, 0.006939810235053301, -0.03243730217218399, 0.024111589416861534, 0.04447248578071594, 0.015435539186000824, -0.0495833195745945, -0.05081981047987938, -0.029119381681084633, 0.010973864234983921, 0.09191255271434784, 0.007599272299557924, 0.03420960530638695, 0.06920232623815536, 0.007619880605489016, -0.03468359261751175, 0.0032612469512969255, 0.03991807624697685, -0.006774944718927145, 0.04059814661741257, 0.03379744291305542, -0.03229304403066635, 0.0014271176187321544, -0.035363662987947464, -0.021947728469967842, -0.007851722650229931, 0.02769741602241993, -0.005414803512394428, -0.019536569714546204, -0.045420464128255844, 0.008815156295895576, -0.02163860574364662, 0.014569994993507862, 0.005847575608640909, -0.007212868891656399, -0.04471978545188904, -0.03730083629488945, -0.031283240765333176, 0.01552827563136816, 0.02083488553762436, -0.00981980562210083, 0.0034106564708054066, 0.004322569351643324, 0.018763761967420578, 0.022195028141140938, 0.07138679176568985, 0.05057251453399658, -0.05296306312084198, -0.018052779138088226, -0.05209752172231674, 0.015136719681322575, -0.016692638397216797, 0.016033176332712173, -0.03760995715856552, 0.046492092311382294, 0.03715657815337181, 0.006929506082087755, 0.05572456121444702, 0.004969151224941015, 0.016981152817606926, 0.035714004188776016, 0.045131947845220566, 0.11532346904277802, -0.0019912668503820896, -0.0012152395211160183, 0.03627042472362518, 0.027202818542718887, -0.04197889566421509, -0.04488465189933777, -0.03284946456551552, 0.009551898576319218, -0.0321693941950798, -0.03200452774763107, -0.0018869380000978708, 0.033550143241882324, -0.022504150867462158, 0.008408144116401672, -0.018908020108938217, -0.0438542403280735, -0.0727057158946991, -0.024997742846608162, -0.021803472191095352, -0.04418397322297096, 0.025080174207687378, 0.026852479204535484, 0.04311234503984451, 0.0426589660346508, -0.0011656511342152953, 0.08993417024612427, -0.04797587916254997, 0.02163860574364662, 0.03989746794104576, -0.03624981641769409, -0.011138729751110077, 0.016939938068389893, 0.04904750734567642, 0.01416813489049673, 0.012189747765660286, 0.037218403071165085, 0.01804247498512268, -0.026605181396007538, -0.02163860574364662, 0.01102538499981165, -0.013178941793739796, 0.020154815167188644, 0.046656955033540726, 0.008943957276642323, 0.0743543729186058, -0.0032509430311620235, -0.020299073308706284, -0.03806333988904953, -0.020278465002775192, 0.011458156630396843, 0.015167632140219212, -0.0462447926402092, 0.007207716815173626, 0.001597135211341083, -0.014415433630347252, -0.002220533089712262, 0.002694521564990282, -0.0031092616263777018, -0.0374244824051857, 0.0722111165523529, 0.038887664675712585, -0.055765777826309204, 0.019773563370108604, 0.010705958120524883, 0.028542350977659225, 0.015548883937299252, 0.03960895165801048, -0.03732144460082054, -0.009041845798492432, 0.004739885218441486, -0.013570496812462807, 0.04257653281092644, 0.0016808559885248542, -0.052756983786821365, 0.05057251453399658, -0.004801709670573473, 0.016290778294205666, 0.046821821480989456, 0.01529128197580576, 0.009587963111698627, 0.010139232501387596, -0.011736367829144001, -0.026213625445961952, 0.03697110339999199, -0.003918133210390806, 0.021659214049577713, 0.0395677350461483, 0.03624981641769409, 0.09529229998588562, 0.001365293050184846, -0.01911410130560398, -0.0033977762795984745, -0.035693395882844925, 0.04888264089822769, -0.021803472191095352, -0.002831050893291831, 0.019134709611535072, -0.0014593178639188409, -0.009907389990985394, -0.00707376329228282, -0.004420457873493433, -0.06664690375328064, -0.004500315058976412, -0.0017607127083465457, -0.00966524425894022, 0.029593368992209435, -0.0008320559281855822, -0.07637397199869156, -0.041319433599710464, -0.016775071620941162, -0.03334406018257141, -0.06738880276679993, -0.07015030086040497, -0.04185524582862854, -0.001834129448980093, 0.048635341227054596, -0.0068419212475419044, -0.07542599737644196, -0.01689872145652771, -0.0017426805570721626, 0.013302590698003769, -0.00814023707062006, -0.03163358196616173, 0.029160598292946815, -0.0750962644815445, 0.020680325105786324, -0.054570503532886505, -0.025512946769595146, 0.051231976598501205, -0.0321693941950798, -0.03163358196616173, -0.01809399574995041, 0.02479165978729725, -0.037218403071165085, -0.015270673669874668, -0.02295752987265587, 0.017867306247353554, 0.0009132006671279669, -0.012004273943603039, -0.018145516514778137, -0.04962453618645668, 0.010654437355697155, 0.0018212493741884828, 0.07616789638996124, -0.022648407146334648, 0.0012261876836419106, 0.016568990424275398, -0.04570898041129112, 0.005000063683837652, -0.03740387782454491, 0.029717018827795982, 0.01599195972084999, 0.024132197722792625, 0.003353983862325549, 0.015188240446150303, -0.007908395491540432, 0.03072682023048401, -0.016599902883172035, -0.05419955775141716, 0.07241719961166382, 0.07138679176568985, 0.016362907364964485, 0.024111589416861534, -0.019608698785305023, 0.13296407461166382, 0.03167479857802391, -0.024853484705090523, 0.019866300746798515, 0.07732195407152176, -0.016321690753102303, 0.01820734143257141, 0.022483542561531067, -0.0355079211294651, 0.015961047261953354, -0.11540590226650238, -0.03138628229498863, -0.021185224875807762, 0.001964218681678176, 0.07620911300182343, 0.01661020703613758, 0.010778086259961128, 0.033715009689331055, -0.027759240940213203, 0.0614948570728302, 0.020299073308706284, -0.011375724337995052, -0.03319980576634407, 0.03927922248840332, -0.03208696097135544, 0.0017079042736440897, -0.024894701316952705, -0.04414275661110878, 0.01909349299967289, 0.08206183463335037, -0.022483542561531067, -0.014425737783312798, 0.00921186339110136, -0.01007225550711155, -0.04628600925207138, 0.004719276912510395, 0.014693643897771835, -0.008001131936907768, -0.03610555827617645, -0.036291033029556274, 0.01537371426820755, 0.06631717830896378, 0.024606186896562576, -0.0014928062446415424, -0.08284495025873184, 0.029325462877750397, 0.01537371426820755, -0.025615988299250603, -0.034147780388593674, -0.051685355603694916, -0.006594622973352671, -0.005662101786583662, -0.03960895165801048, 0.01225157268345356, 0.055188748985528946, 0.022895706817507744, -0.039938684552907944, -0.018052779138088226, -0.027800457552075386, -0.007743529509752989, 0.028583567589521408, -0.012735865078866482, -0.025760244578123093, -0.0015365986619144678, 0.054735369980335236, -0.0020633956883102655, -0.06949083507061005, 0.0039902618154883385, -0.02330786921083927, -0.0026610333006829023, 0.0688725933432579, -0.047563716769218445, 0.02798593044281006, 0.04702790454030037, 0.03134506568312645, -0.015466451644897461, 0.00031427497742697597, -0.04061875492334366, 0.021370699629187584, 0.045585330575704575, -0.03305554762482643, 0.06339081376791, -0.015569492243230343, -0.0450495183467865, 0.025224432349205017, -0.021885903552174568, 0.05741443485021591, -0.00533237075433135, 0.007774441968649626, 0.055353615432977676, -0.04274139925837517, 0.013137725181877613, 0.03946469724178314, 0.01196305826306343, 0.01737270876765251, -0.013354111462831497, 0.006677055731415749, 0.009685852564871311, 0.004309689160436392, -0.05007791519165039, 0.02159738913178444, 0.056837406009435654, 0.005316914524883032, -0.004412730224430561, -0.09562203288078308, -0.015930134803056717, 0.006635839119553566, -0.008062956854701042, -0.04962453618645668, -0.006532798055559397, -0.007022242993116379, -0.02221563458442688, 0.019845692440867424, 0.007187108509242535, -0.03505454212427139, 0.0030963814351707697, -0.021185224875807762, -0.028521742671728134, 0.040227197110652924, -0.0032792792189866304, 0.05984620004892349, 0.009567354805767536, -0.030252831056714058, -0.020876102149486542, 0.04537924751639366, 0.010195905342698097, 0.013055291958153248, 0.002676489530131221, -0.00990223791450262, 0.010973864234983921, 0.0241940226405859, -0.027614982798695564, 0.0388464480638504, 0.00008629682270111516, -0.008516336791217327, -0.03254033997654915, -0.029119381681084633, -0.07212868332862854, 0.02664639800786972, 0.039052531123161316, -0.021123401820659637, -0.0020157392136752605, -0.04164916276931763, -0.0827213004231453, -0.02905755676329136, 0.040412671864032745, -0.011921841651201248, -0.02283388189971447, -0.059145521372556686, 0.033261626958847046, 0.0264609232544899, 0.014085701666772366, -0.04352451115846634, -0.08424630761146545, 0.03243730217218399, 0.0284805279225111, -0.02540990523993969, 0.03214878588914871, 0.008758483454585075, -0.01232370175421238, -0.09059362858533859, -0.006574014667421579, -0.05419955775141716, 0.052756983786821365, 0.0031556300818920135, 0.04447248578071594, -0.023534560576081276, 0.009757980704307556, 0.0064606694504618645, -0.016311386600136757, 0.016558686271309853, -0.027594374492764473, 0.005012943875044584, 0.038764018565416336, -0.02054637111723423, 0.10435990244150162, 0.038887664675712585, 0.0038150923792272806, 0.029160598292946815, 0.017073890194296837, -0.0438542403280735, -0.013199550099670887, -0.0007579952361993492, -0.021123401820659637, 0.04016537591814995, 0.08910983800888062, 0.024564970284700394, -0.016599902883172035, -0.07789897918701172, -0.020299073308706284, 0.03740387782454491, -0.028542350977659225, 0.008810004219412804, 0.03989746794104576, -0.016218651086091995, 0.02069062925875187, 0.008299951441586018, -0.020340289920568466, -0.014621514827013016, 0.07542599737644196, 0.035549137741327286, -0.06306108087301254, 0.01780548132956028, 0.020577283576130867, -0.04698668792843819, 0.07798141241073608, -0.019031669944524765, -0.0441015399992466, -0.021885903552174568, -0.00597122497856617, 0.0013021803461015224, -0.043483294546604156, 0.008660594001412392, 0.013797187246382236, -0.042246803641319275, 0.05560091510415077, 0.023060571402311325, -0.03892888128757477, 0.016455644741654396, -0.06545162945985794, 0.004412730224430561, 0.018227949738502502, -0.005687862168997526, 0.01956748217344284, 0.02433827891945839, 0.005157201085239649, -0.06137120723724365, -0.03482785075902939, 0.05283941328525543, 0.009922846220433712, -0.02038150653243065, -0.03497210890054703, 0.06499825417995453, 0.02602815255522728, 0.04888264089822769, 0.04983061924576759, 0.025677813217043877, 0.04049510508775711, 0.038743410259485245, -0.07320031523704529, 0.004453946370631456, -0.039815034717321396, 0.028109580278396606, 0.0009589251130819321, 0.014848205260932446, -0.0036605307832360268, 0.03802212327718735, -0.03666198253631592, 0.03637346625328064, -0.017475750297307968, -0.030335264280438423, -0.015610708855092525, -0.054405637085437775, 0.00026951657491736114, 0.02433827891945839, -0.022792665287852287, -0.014652427285909653, 0.020134206861257553, 0.0054354118183255196, 0.03243730217218399, 0.03806333988904953, 0.0015739509835839272, 0.055353615432977676, 0.017918827012181282, 0.0066512953490018845, -0.029304854571819305, 0.08399900794029236, -0.004348329268395901, 0.011375724337995052, 0.04156673327088356, -0.033735617995262146, 0.03649711608886719, -0.024461928755044937, 0.014940942637622356, -0.021123401820659637, -0.07336518168449402, 0.03443629667162895, 0.01414752658456564, -0.009778589010238647, 0.024997742846608162, -0.033261626958847046, -0.02297813817858696, -0.02679065428674221, -0.05646645650267601, 0.055930644273757935, -0.0028465071227401495, 0.024626795202493668, -0.07625032216310501, -0.029572760686278343, 0.0369504950940609, 0.023658208549022675, 0.01896984502673149, 0.0340859554708004, -0.05201508849859238, -0.053210362792015076, -0.08210305124521255, -0.016867808997631073, 0.036002520471811295, 0.021514955908060074, -0.05902187526226044, -0.010829607024788857, -0.02223624289035797, 0.005615733563899994, 0.051067110151052475, -0.03758934885263443, 0.01794973947107792, -0.04000050947070122, 0.015363410115242004, -0.00792385172098875, -0.0194232240319252, 0.045131947845220566, 0.009861022233963013, 0.00552299665287137, -0.022627798840403557, -0.04945966973900795, 0.001376885105855763, -0.020391810685396194, 0.007377734407782555, -0.06833677738904953, 0.03668259084224701, 0.02588389441370964, -0.03105655126273632, 0.051973871886730194, -0.021824080497026443, 0.02038150653243065, -0.04274139925837517, 0.013086204417049885, 0.06260769814252853, 0.01209701132029295, -0.022153811529278755, -0.056878622621297836, 0.056548889726400375, 0.00268421764485538, -0.04080422967672348, 0.02376125007867813, -0.020062079653143883, -0.0393204391002655, -0.037692390382289886, 0.012880122289061546, -0.04776979982852936, -0.01325106993317604, 0.02497713454067707, -0.02388489991426468, 0.010829607024788857, 0.03150993213057518, -0.05749686807394028, -0.012467958964407444, 0.06512189656496048, -0.002666185377165675, 0.05325157940387726, -0.02238050103187561, 0.04521438106894493, -0.001163075095973909, -0.0011720911134034395, -0.03076803684234619, -0.018557680770754814, -0.00296758022159338, -0.04434883967041969, -0.018238253891468048, -0.002278493717312813, 0.013797187246382236, -0.015136719681322575, 0.041504908353090286, 0.00940248928964138, 0.020515458658337593, 0.010082559660077095 ]
23,377
uvicorn.config
setup_event_loop
null
def setup_event_loop(self) -> None: loop_setup: Callable | None = import_from_string(LOOP_SETUPS[self.loop]) if loop_setup is not None: loop_setup(use_subprocess=self.use_subprocess)
(self) -> NoneType
[ 0.005929135717451572, -0.0021857961546629667, -0.06519868224859238, 0.010086948052048683, -0.02081960067152977, 0.05026022344827652, 0.001407024567015469, 0.06362804770469666, -0.020976662635803223, -0.017242049798369408, -0.010017141699790955, -0.023576932027935982, 0.017835399135947227, -0.02003428339958191, 0.0388120636343956, 0.0005445402930490673, -0.011910625733435154, 0.0351996086537838, -0.015933189541101456, -0.029458075761795044, -0.003769516944885254, 0.025845622643828392, 0.0328960157930851, -0.029388269409537315, 0.01280937623232603, 0.002785690361633897, -0.030540067702531815, 0.05476270243525505, 0.0004578283114824444, 0.0000582851716899313, 0.01874287612736225, -0.026264457032084465, -0.013044971041381359, 0.017163516953587532, 0.01828913763165474, 0.008477049879729748, -0.018097171559929848, 0.014179317280650139, -0.009580855257809162, 0.004794790409505367, 0.07608839869499207, -0.02858550287783146, 0.07755431532859802, 0.06097542494535446, -0.03104615956544876, 0.004930039402097464, 0.0034183061216026545, -0.04813114553689957, 0.012547604739665985, 0.021290790289640427, -0.02249494008719921, 0.05881144478917122, -0.0006637010956183076, 0.05151673033833504, -0.022093556821346283, 0.0388120636343956, -0.011055503971874714, -0.0046159131452441216, -0.037939488887786865, -0.003649537917226553, -0.04010346904397011, 0.06279037892818451, -0.019161710515618324, 0.05605411157011986, 0.0008676651050336659, -0.0733659639954567, 0.004310512449592352, 0.03605473041534424, 0.0614989697933197, -0.012617410160601139, -0.058427512645721436, 0.052284594625234604, -0.014676683582365513, -0.041255269199609756, 0.0526336245238781, 0.017015179619193077, -0.05420425534248352, -0.008655927143990993, 0.0006342517444863915, 0.024152830243110657, -0.03923089802265167, 0.118390753865242, -0.035478830337524414, 0.05832280218601227, 0.08411607146263123, 0.026962516829371452, -0.013533612713217735, 0.09856588393449783, 0.055670179426670074, -0.0638025626540184, 0.0014222945319488645, 0.017442740499973297, 0.00625635078176856, 0.04628128930926323, -0.009607032872736454, 0.01050578337162733, -0.029231207445263863, -0.011884449049830437, -0.0450596883893013, -0.017372936010360718, -0.03209324926137924, -0.05319207161664963, 0.10617472231388092, -0.019248967990279198, 0.012713393196463585, -0.02575836516916752, 0.03944031521677971, 0.007464864756911993, 0.009031133726239204, -0.017512546852231026, 0.012861731462180614, -0.007495405152440071, 0.029527882114052773, -0.005597557872533798, -0.07448285818099976, -0.039056383073329926, 0.03338465467095375, 0.003512107767164707, 0.023925961926579475, -0.025077758356928825, -0.07636761665344238, 0.0335591696202755, 0.004471938591450453, 0.027259191498160362, 0.015505628660321236, -0.030173586681485176, 0.012922811321914196, 0.059090666472911835, 0.04509459063410759, -0.08334820717573166, 0.07036431133747101, 0.02732899785041809, 0.006099287886172533, -0.011605225503444672, 0.003603727789595723, 0.027416255325078964, -0.033175237476825714, 0.001207423396408558, 0.007953505963087082, -0.030051425099372864, -0.0254965927451849, -0.020418215543031693, -0.01256505586206913, -0.007124561350792646, -0.02190159074962139, 0.05636823922395706, -0.049352746456861496, -0.01572377234697342, -0.003976752981543541, 0.009990965016186237, 0.025845622643828392, -0.026404069736599922, 0.002894761972129345, 0.015366016887128353, -0.04959706962108612, 0.006243262439966202, -0.017381660640239716, 0.03237247094511986, 0.04101094603538513, 0.028096862137317657, -0.03361152485013008, 0.007735362742096186, 0.004825330805033445, -0.020051734521985054, -0.039056383073329926, -0.016369475051760674, -0.028533147647976875, -0.0035164705477654934, 0.06055659055709839, 0.05783415958285332, 0.04394279420375824, 0.022652003914117813, -0.011125310324132442, -0.003337593050673604, 0.049946099519729614, 0.026142297312617302, 0.03870735317468643, -0.005409954581409693, -0.01483374647796154, 0.06205741688609123, -0.0012488706270232797, 0.009109665639698505, -0.019563093781471252, -0.03828851878643036, 0.036229245364665985, 0.01881268061697483, -0.012948988005518913, 0.015671417117118835, 0.019545642659068108, -0.027346448972821236, -0.009877529926598072, 0.03361152485013008, 0.008599210530519485, 0.030243391171097755, 0.03654337301850319, 0.05141201987862587, 0.03413506969809532, 0.0038502297829836607, -0.013428904116153717, -0.031133417040109634, 0.017416564747691154, 0.0818822830915451, 0.04156939312815666, 0.037974391132593155, 0.0068671521730721, -0.003119449596852064, 0.03601982817053795, -0.006369785405695438, -0.005606283899396658, -0.0595444031059742, 0.0014222945319488645, -0.07134159654378891, -0.02141295000910759, 0.02624700590968132, 0.023542027920484543, 0.0328960157930851, 0.013271840289235115, -0.004825330805033445, -0.014825020916759968, 0.04509459063410759, -0.02602013759315014, -0.008551218546926975, -0.03003397397696972, -0.04048740491271019, -0.019423482939600945, 0.02519991807639599, -0.007870611734688282, 0.0047991531901061535, -0.015706319361925125, 0.013760481961071491, 0.009676838293671608, 0.031691864132881165, -0.007464864756911993, 0.016168784350156784, 0.04621148481965065, -0.015531805343925953, 0.0037586097605526447, 0.019214065745472908, -0.05779925733804703, -0.01732930727303028, 0.02420518361032009, 0.0014310203259810805, 0.038009293377399445, -0.01832403987646103, -0.02387360669672489, 0.063139408826828, 0.03148244693875313, 0.009266728535294533, -0.017146065831184387, 0.06966625899076462, 0.004347596783190966, 0.010401073843240738, 0.003656082320958376, 0.017215872183442116, -0.0674324706196785, -0.01355106383562088, 0.05123750492930412, 0.036194343119859695, 0.016273492947220802, 0.044815365225076675, 0.006382874213159084, 0.035513736307621, -0.015802303329110146, 0.0694219321012497, -0.030138682574033737, 0.036717887967824936, 0.0018978470470756292, -0.030662227421998978, -0.06418649852275848, -0.016683602705597878, 0.03699710965156555, -0.006417776923626661, 0.041359975934028625, -0.010872263461351395, 0.005929135717451572, 0.009066036902368069, -0.020051734521985054, -0.026491327211260796, -0.03588021546602249, 0.0078138941898942, 0.08334820717573166, -0.00377387972548604, 0.032878562808036804, 0.05067906156182289, -0.028131764382123947, -0.026089942082762718, 0.00454610725864768, 0.03643866255879402, -0.004168719053268433, -0.06603635102510452, -0.030417906120419502, 0.000028205251510371454, 0.040277983993291855, -0.016299670562148094, -0.050504546612501144, 0.008773724548518658, -0.08949112147092819, -0.013585967011749744, 0.06994547694921494, -0.02717193402349949, -0.029091594740748405, -0.0017091530608013272, -0.0460369698703289, 0.06258095800876617, -0.04059211164712906, -0.003396491752937436, 0.029859459027647972, -0.005335785914212465, -0.030976353213191032, -0.060207560658454895, -0.024815985932946205, 0.008721370249986649, 0.012573781423270702, -0.003878588555380702, -0.0005014570197090507, 0.022983582690358162, 0.02361183427274227, -0.0015248219715431333, -0.0001727422495605424, -0.011378356255590916, -0.049911193549633026, 0.0074037848971784115, 0.021761979907751083, -0.014781392179429531, 0.08767616748809814, 0.06736265867948532, 0.04907352477312088, 0.010514508932828903, 0.011535419151186943, 0.031133417040109634, -0.03549628332257271, -0.005998941604048014, -0.006452680099755526, 0.0022817791905254126, 0.025845622643828392, -0.053994838148355484, -0.03230266645550728, -0.013777933083474636, 0.013394000940024853, -0.08956092596054077, -0.02832373045384884, 0.016290944069623947, -0.055076830089092255, 0.011989157646894455, 0.08837422728538513, 0.026386618614196777, 0.02275671251118183, -0.021273337304592133, 0.050574351102113724, -0.06896819919347763, 0.02588052488863468, 0.013743029907345772, -0.05039983615279198, 0.008734459057450294, -0.018009914085268974, -0.03439684212207794, -0.010270188562572002, -0.020243702456355095, 0.02361183427274227, 0.0036299051716923714, -0.022913776338100433, 0.011142761446535587, 0.023925961926579475, -0.02394341304898262, -0.018411297351121902, -0.024484407156705856, -0.01806226745247841, 0.004742436110973358, -0.02769547700881958, 0.055111732333898544, -0.009694289416074753, -0.010418525896966457, 0.03647356480360031, -0.002565365517511964, -0.049317844212055206, -0.02134314365684986, -0.015845932066440582, -0.00879990216344595, 0.020016832277178764, 0.005296520423144102, 0.03238992393016815, 0.01116893906146288, -0.03305307775735855, -0.039091285318136215, -0.00951977539807558, -0.04917823523283005, -0.007307801861315966, 0.020679987967014313, 0.04055720940232277, -0.03999876230955124, -0.011326001957058907, 0.04547852277755737, 0.0036429937463253736, -0.024955596774816513, 0.05155163258314133, -0.05444857478141785, -0.015165324322879314, 0.06952664256095886, 0.056752171367406845, 0.04453614354133606, -0.008250180631875992, -0.003712799632921815, 0.04286080226302147, 0.0009156566229648888, 0.05026022344827652, 0.020627634599804878, 0.002262146444991231, -0.04352395981550217, 0.03499019145965576, 0.018114622682332993, -0.0010050954297184944, -0.011387081816792488, -0.11992648243904114, -0.001939294277690351, -0.03612453490495682, 0.006662097293883562, -0.037939488887786865, -0.035374123603105545, 0.03661317750811577, 0.014694134704768658, -0.01726822555065155, 0.02862040512263775, -0.0008556672255508602, 0.004458849783986807, 0.0536109060049057, 0.07448285818099976, 0.038497935980558395, 0.040173277258872986, 0.002576272701844573, -0.0077179111540317535, 0.0066490089520812035, 0.07657703757286072, -0.04216274246573448, 0.01963290013372898, 0.03416997194290161, 0.025007952004671097, 0.0031587155535817146, 0.014475991949439049, -0.014057156629860401, -0.04174390807747841, -0.006596654653549194, -0.005344511941075325, -0.05706629529595375, 0.00540122902020812, 0.016290944069623947, 0.006854063831269741, -0.005213625729084015, -0.000007511458989029052, 0.0022774164099246264, -0.009729192592203617, -0.06212722137570381, 0.039614830166101456, 0.010392348282039165, -0.02706722542643547, 0.03472841903567314, -0.050504546612501144, -0.014999535866081715, 0.04237216338515282, -0.05664746090769768, -0.07643742114305496, -0.07011999189853668, -0.05005080625414848, -0.009319083765149117, 0.01818442903459072, 0.04320983216166496, -0.024746179580688477, 0.053994838148355484, 0.0032546985894441605, -0.06498926132917404, 0.024449504911899567, 0.03640376031398773, -0.022425135597586632, 0.06153387203812599, 0.03668298199772835, 0.0039025843143463135, -0.0549372173845768, -0.07315655052661896, -0.03244227543473244, 0.030313197523355484, 0.005990216042846441, -0.0016218957025557756, 0.05828789994120598, 0.03654337301850319, 0.029126498848199844, -0.05832280218601227, -0.026596035808324814, 0.02832373045384884, -0.05423915758728981, 0.014676683582365513, -0.031953636556863785, -0.006679548881947994, -0.029981620609760284, 0.027311544865369797, 0.007848797366023064, 0.01959799788892269, -0.02848079428076744, 0.03441429138183594, -0.001702608773484826, 0.016194961965084076, 0.03755555674433708, 0.024187732487916946, 0.05095828324556351, 0.01802736520767212, 0.010270188562572002, 0.0057677095755934715, -0.036822594702243805, -0.10442958027124405, -0.010601766407489777, -0.050574351102113724, 0.03305307775735855, 0.057973772287368774, 0.025444239377975464, -0.007643742486834526, -0.06935212761163712, 0.09123627096414566, -0.009711741469800472, -0.02088940516114235, -0.008821716532111168, 0.017512546852231026, 0.01442363765090704, -0.002835863269865513, -0.018987195566296577, -0.00912711676210165, 0.008559944108128548, 0.01330674346536398, -0.032913465052843094, 0.034745872020721436, 0.023960864171385765, 0.02286142110824585, -0.01693664863705635, 0.012277106754481792, -0.034327033907175064, -0.03467606380581856, 0.014301477000117302, -0.015060615725815296, -0.028829822316765785, 0.011247470043599606, 0.00625635078176856, -0.04799153283238411, -0.023995766416192055, 0.009598306380212307, 0.029388269409537315, 0.03200599178671837, -0.0045504700392484665, -0.0026744373608380556, -0.03532176837325096, 0.00339212897233665, 0.04680483415722847, -0.010348719544708729, 0.003957120236009359, 0.006343608256429434, -0.01746891811490059, 0.0039680274203419685, 0.03923089802265167, -0.033698782324790955, -0.11573813110589981, 0.05497211962938309, 0.0443965308368206, 0.00182367826346308, 0.017512546852231026, -0.07420364022254944, 0.028376085683703423, -0.10743123292922974, -0.00253264419734478, 0.052179884165525436, -0.039579927921295166, -0.02348967455327511, 0.03500764071941376, 0.022355329245328903, 0.005532114766538143, -0.004820967558771372, -0.013350372202694416, 0.01170993410050869, -0.02226807177066803, -0.018236782401800156, 0.004746798891574144, 0.009825175628066063, -0.018969744443893433, 0.0018389483448117971, -0.01509551890194416, -0.0437333770096302, -0.03664807975292206, -0.009982239454984665, 0.023925961926579475, -0.02394341304898262, -0.07099256664514542, 0.07043412327766418, -0.02230297401547432, -0.059195376932621, -0.063174307346344, -0.031028708443045616, -0.014563249424099922, 0.03759045898914337, -0.026822904124855995, 0.003915672656148672, -0.006426502484828234, 0.026299361139535904, 0.006505034398287535, 0.06048678234219551, -0.005545203574001789, -0.028969435021281242, 0.041988227516412735, 0.02476363070309162, 0.014301477000117302, 0.02710212767124176, -0.03692730516195297, -0.006967497989535332, -0.03828851878643036, -0.04813114553689957, 0.020767245441675186, -0.022215716540813446, 0.014301477000117302, 0.03416997194290161, 0.0274686086922884, -0.01096824649721384, -0.009746644645929337, -0.010261462070047855, 0.0365084670484066, 0.027276642620563507, -0.01851600594818592, 0.03992895781993866, 0.005060925614088774, -0.044850271195173264, -0.04160429537296295, -0.019423482939600945, -0.03214560076594353, 0.018899938091635704, -0.06111503764986992, 0.01591573841869831, -0.015069341287016869, 0.0443965308368206, -0.014353831298649311, 0.03160460665822029, -0.0762978121638298, 0.07141140103340149, -0.025514043867588043, -0.031656961888074875, 0.012800650671124458, 0.03338465467095375, -0.021517658606171608, 0.025548947975039482, -0.002098538912832737, 0.01170993410050869, -0.01966780237853527, 0.04841036722064018, 0.00712019857019186, 0.012774473987519741, -0.0014168409397825599, 0.028236472979187965, -0.00558446953073144, -0.0007896788883954287, -0.008843530900776386, -0.02071489207446575, 0.07552994787693024, -0.04181371629238129, 0.0213780477643013, -0.04122036322951317, -0.04526910558342934, -0.011875723488628864, -0.039091285318136215, -0.0135685158893466, 0.041325073689222336, -0.04296551272273064, 0.02532207779586315, 0.06345353275537491, 0.008202189579606056, -0.00035421023494563997, -0.02045311965048313, 0.01154414564371109, 0.022390231490135193, 0.01631712168455124, -0.015427096746861935, -0.017224598675966263, -0.016692327335476875, -0.0025522769428789616, -0.010069495998322964, -0.019720157608389854, -0.01557543408125639, 0.0443965308368206, -0.00558446953073144, -0.13507434725761414, 0.02308829128742218, -0.06607125699520111, -0.000499002868309617, 0.01947583630681038, -0.013018794357776642, 0.006544299889355898, -0.04841036722064018, 0.07183023542165756, -0.017250774428248405, -0.011648854240775108, 0.09542462229728699, -0.034484099596738815, -0.024589117616415024, -0.04394279420375824, -0.08271995186805725, -0.014955907128751278, -0.09123627096414566, -0.024973049759864807, -0.052214790135622025, 0.0730169340968132, -0.043593764305114746, -0.015941914170980453, -0.008018949069082737, -0.013332921080291271, 0.030766936019062996, -0.06596654653549194, 0.01458942610770464, -0.018638167530298233, 0.03640376031398773, -0.029056692495942116, -0.025269724428653717, 0.017940107733011246, -0.023210451006889343, -0.04443143308162689, -0.039126187562942505, -0.001043815864250064, 0.04526910558342934, -0.027259191498160362, 0.007102746982127428, -0.04813114553689957, 0.05015551671385765, -0.005545203574001789, -0.037346139550209045, 0.07015489786863327, -0.012216026894748211, -0.028637856245040894, -0.024920694530010223, -0.0036713522858917713, 0.02624700590968132, -0.031220674514770508, -0.05989343300461769, 0.015741223469376564, 0.08425568044185638, -0.006230173632502556, -0.042511772364377975, 0.021953945979475975, 0.012765748426318169, -0.08055596798658371, -0.08614043891429901, 0.001834585447795689, -0.12041512131690979, -0.016072800382971764, 0.008040763437747955, 0.0536109060049057, -0.00433450797572732, 0.0024322981480509043, -0.006819160655140877, 0.026072490960359573, -0.0019382035825401545, -0.05465799570083618, 0.0221982654184103, 0.00493440218269825, 0.028271377086639404, -0.040173277258872986, -0.02345477230846882, -0.014894827269017696, 0.019091904163360596, -0.010593040846288204, -0.02345477230846882, -0.06638538092374802, -0.016762133687734604, 0.05015551671385765, 0.003064913908019662, 0.057380422949790955, 0.004391225520521402, 0.03078438714146614, 0.008093117736279964 ]
23,378
uvicorn.server
Server
null
class Server: def __init__(self, config: Config) -> None: self.config = config self.server_state = ServerState() self.started = False self.should_exit = False self.force_exit = False self.last_notified = 0.0 self._captured_signals: list[int] = [] def run(self, sockets: list[socket.socket] | None = None) -> None: self.config.setup_event_loop() return asyncio.run(self.serve(sockets=sockets)) async def serve(self, sockets: list[socket.socket] | None = None) -> None: with self.capture_signals(): await self._serve(sockets) async def _serve(self, sockets: list[socket.socket] | None = None) -> None: process_id = os.getpid() config = self.config if not config.loaded: config.load() self.lifespan = config.lifespan_class(config) message = "Started server process [%d]" color_message = "Started server process [" + click.style("%d", fg="cyan") + "]" logger.info(message, process_id, extra={"color_message": color_message}) await self.startup(sockets=sockets) if self.should_exit: return await self.main_loop() await self.shutdown(sockets=sockets) message = "Finished server process [%d]" color_message = "Finished server process [" + click.style("%d", fg="cyan") + "]" logger.info(message, process_id, extra={"color_message": color_message}) async def startup(self, sockets: list[socket.socket] | None = None) -> None: await self.lifespan.startup() if self.lifespan.should_exit: self.should_exit = True return config = self.config def create_protocol( _loop: asyncio.AbstractEventLoop | None = None, ) -> asyncio.Protocol: return config.http_protocol_class( # type: ignore[call-arg] config=config, server_state=self.server_state, app_state=self.lifespan.state, _loop=_loop, ) loop = asyncio.get_running_loop() listeners: Sequence[socket.SocketType] if sockets is not None: # Explicitly passed a list of open sockets. # We use this when the server is run from a Gunicorn worker. def _share_socket( sock: socket.SocketType, ) -> socket.SocketType: # pragma py-linux pragma: py-darwin # Windows requires the socket be explicitly shared across # multiple workers (processes). from socket import fromshare # type: ignore[attr-defined] sock_data = sock.share(os.getpid()) # type: ignore[attr-defined] return fromshare(sock_data) self.servers: list[asyncio.base_events.Server] = [] for sock in sockets: is_windows = platform.system() == "Windows" if config.workers > 1 and is_windows: # pragma: py-not-win32 sock = _share_socket(sock) # type: ignore[assignment] server = await loop.create_server(create_protocol, sock=sock, ssl=config.ssl, backlog=config.backlog) self.servers.append(server) listeners = sockets elif config.fd is not None: # pragma: py-win32 # Use an existing socket, from a file descriptor. sock = socket.fromfd(config.fd, socket.AF_UNIX, socket.SOCK_STREAM) server = await loop.create_server(create_protocol, sock=sock, ssl=config.ssl, backlog=config.backlog) assert server.sockets is not None # mypy listeners = server.sockets self.servers = [server] elif config.uds is not None: # pragma: py-win32 # Create a socket using UNIX domain socket. uds_perms = 0o666 if os.path.exists(config.uds): uds_perms = os.stat(config.uds).st_mode server = await loop.create_unix_server( create_protocol, path=config.uds, ssl=config.ssl, backlog=config.backlog ) os.chmod(config.uds, uds_perms) assert server.sockets is not None # mypy listeners = server.sockets self.servers = [server] else: # Standard case. Create a socket from a host/port pair. try: server = await loop.create_server( create_protocol, host=config.host, port=config.port, ssl=config.ssl, backlog=config.backlog, ) except OSError as exc: logger.error(exc) await self.lifespan.shutdown() sys.exit(1) assert server.sockets is not None listeners = server.sockets self.servers = [server] if sockets is None: self._log_started_message(listeners) else: # We're most likely running multiple workers, so a message has already been # logged by `config.bind_socket()`. pass self.started = True def _log_started_message(self, listeners: Sequence[socket.SocketType]) -> None: config = self.config if config.fd is not None: # pragma: py-win32 sock = listeners[0] logger.info( "Uvicorn running on socket %s (Press CTRL+C to quit)", sock.getsockname(), ) elif config.uds is not None: # pragma: py-win32 logger.info("Uvicorn running on unix socket %s (Press CTRL+C to quit)", config.uds) else: addr_format = "%s://%s:%d" host = "0.0.0.0" if config.host is None else config.host if ":" in host: # It's an IPv6 address. addr_format = "%s://[%s]:%d" port = config.port if port == 0: port = listeners[0].getsockname()[1] protocol_name = "https" if config.ssl else "http" message = f"Uvicorn running on {addr_format} (Press CTRL+C to quit)" color_message = "Uvicorn running on " + click.style(addr_format, bold=True) + " (Press CTRL+C to quit)" logger.info( message, protocol_name, host, port, extra={"color_message": color_message}, ) async def main_loop(self) -> None: counter = 0 should_exit = await self.on_tick(counter) while not should_exit: counter += 1 counter = counter % 864000 await asyncio.sleep(0.1) should_exit = await self.on_tick(counter) async def on_tick(self, counter: int) -> bool: # Update the default headers, once per second. if counter % 10 == 0: current_time = time.time() current_date = formatdate(current_time, usegmt=True).encode() if self.config.date_header: date_header = [(b"date", current_date)] else: date_header = [] self.server_state.default_headers = date_header + self.config.encoded_headers # Callback to `callback_notify` once every `timeout_notify` seconds. if self.config.callback_notify is not None: if current_time - self.last_notified > self.config.timeout_notify: self.last_notified = current_time await self.config.callback_notify() # Determine if we should exit. if self.should_exit: return True if self.config.limit_max_requests is not None: return self.server_state.total_requests >= self.config.limit_max_requests return False async def shutdown(self, sockets: list[socket.socket] | None = None) -> None: logger.info("Shutting down") # Stop accepting new connections. for server in self.servers: server.close() for sock in sockets or []: soc
(config: 'Config') -> 'None'
[ 0.015156577341258526, -0.01698228158056736, -0.08733127266168594, -0.00001096122468879912, 0.011818457394838333, 0.02162756212055683, -0.02493327297270298, 0.0071947830729186535, -0.06779948621988297, -0.05881141126155853, -0.008804426528513432, 0.025559844449162483, 0.019402148202061653, -0.01481088250875473, 0.02854146808385849, 0.023744944483041763, 0.027979712933301926, -0.042823005467653275, -0.04016547277569771, -0.0620955154299736, -0.0338781364262104, 0.059805285185575485, 0.0642993226647377, -0.04126737639307976, -0.009981951676309109, -0.021109018474817276, -0.06425610929727554, 0.0019134774338454008, 0.025516632944345474, -0.013795402832329273, -0.024717213585972786, 0.01370897889137268, 0.015210593119263649, -0.0031949805561453104, 0.04375205934047699, -0.04016547277569771, -0.015264607965946198, 0.017824912443757057, -0.02170318178832531, 0.00023969107132870704, 0.017533233389258385, -0.056910086423158646, -0.01245583314448595, 0.05107647925615311, -0.016366511583328247, 0.02957855351269245, 0.01408708281815052, 0.062009092420339584, -0.0009250049479305744, -0.004826230462640524, -0.06667597591876984, 0.05319386348128319, -0.01987747848033905, 0.03752954304218292, 0.015588697046041489, 0.09835030883550644, 0.03152308985590935, 0.05068757012486458, -0.022254133597016335, -0.05859535187482834, -0.05544088035821915, 0.01989908516407013, -0.008280482143163681, 0.022859100252389908, -0.006298135966062546, -0.048656612634658813, -0.02787168323993683, 0.019261708483099937, 0.017500823363661766, -0.02026638574898243, 0.04232606664299965, 0.027201898396015167, 0.04442184418439865, -0.0029033003374934196, 0.05267531797289848, 0.016701404005289078, -0.003154469421133399, -0.013957447372376919, -0.035973917692899704, 0.031285423785448074, 0.024652395397424698, 0.043903302401304245, 0.006989526562392712, -0.02527896873652935, 0.09973309189081192, -0.0006637079641222954, 0.039971016347408295, -0.006103682331740856, -0.08361504971981049, -0.05215677618980408, -0.013049997389316559, 0.058724988251924515, 0.04148343577980995, 0.02817416563630104, -0.00486404076218605, -0.02776365354657173, -0.044594693928956985, -0.03435346856713295, -0.015286213718354702, -0.06693524867296219, -0.017824912443757057, 0.008696396835148335, -0.02962176501750946, -0.02170318178832531, 0.023680126294493675, -0.01285554375499487, 0.019034847617149353, 0.014108688570559025, -0.07013293355703354, -0.015685923397541046, -0.005034187808632851, -0.005703972186893225, 0.04336315393447876, -0.010694948025047779, -0.062397997826337814, 0.007551281247287989, -0.030637245625257492, -0.0005421744426712394, 0.02424188144505024, -0.020320400595664978, -0.06602779775857925, 0.019953100010752678, -0.004286081530153751, -0.002006653230637312, -0.013644160702824593, 0.03353244438767433, 0.0006421019788831472, 0.018505500629544258, 0.016885053366422653, -0.06844766438007355, 0.00901508517563343, 0.045415718108415604, 0.020007114857435226, 0.05976207181811333, 0.012391015887260437, 0.020838944241404533, -0.0456317774951458, 0.02316158451139927, -0.012887952849268913, 0.014897306449711323, 0.010408668778836727, 0.015145774930715561, -0.005649957340210676, 0.017284763976931572, 0.009711877442896366, 0.02815256081521511, -0.05181108042597771, -0.007340623531490564, -0.029211251065135002, -0.03899874910712242, 0.02741795778274536, -0.04437863081693649, -0.013989856466650963, 0.06149055063724518, -0.0593731664121151, 0.024782031774520874, -0.037399910390377045, -0.011710427701473236, -0.0016244978178292513, -0.0009054245892912149, -0.08469534665346146, -0.029362494125962257, 0.04882945865392685, -0.046150319278240204, -0.054447006434202194, 0.019747843965888023, 0.006346749607473612, 0.0029627166222780943, 0.06412647664546967, 0.0826643854379654, -0.020752519369125366, 0.06028061732649803, -0.06205230578780174, -0.007367630954831839, 0.027634017169475555, 0.03400777280330658, 0.02860628440976143, -0.01087859831750393, -0.04040313512086868, -0.004669587127864361, -0.00041355149005539715, -0.0782567709684372, -0.032300904393196106, -0.08257795870304108, -0.0012166853994131088, 0.06680561602115631, 0.0095984460785985, 0.03113418258726597, 0.08288044482469559, -0.01064093317836523, -0.05993492156267166, -0.0016163955442607403, 0.06615743786096573, 0.019629010930657387, 0.05099005624651909, 0.015750741586089134, 0.020115144550800323, 0.02311837300658226, 0.033791713416576385, -0.0648178681731224, -0.010759766213595867, 0.0382857546210289, 0.030464397743344307, -0.04485396295785904, -0.031220605596899986, 0.0027871683705598116, -0.010959620587527752, -0.012358606792986393, 0.0263808723539114, 0.009873921982944012, -0.0005921382107771933, -0.019445359706878662, -0.0012322146212682128, 0.05414452403783798, 0.07553441822528839, -0.041418615728616714, -0.0056931693106889725, 0.019056452438235283, 0.029859431087970734, 0.01990988850593567, 0.04187234118580818, -0.002615670906379819, -0.030529215931892395, 0.03869626671075821, -0.03441828861832619, 0.010808379389345646, -0.00867479108273983, 0.0022024570498615503, 0.05669402703642845, 0.06408326327800751, 0.029837824404239655, 0.015059350989758968, 0.005201633553951979, 0.022988736629486084, 0.0131904361769557, 0.025495028123259544, 0.00959304440766573, 0.053971678018569946, 0.0112242940813303, 0.006411567330360413, -0.05755826458334923, -0.011343126185238361, 0.036362823098897934, -0.09575759619474411, 0.006535801570862532, 0.01316882949322462, 0.03459113463759422, -0.004672287963330746, 0.007810553070157766, 0.06555246561765671, -0.03102615289390087, -0.013104012235999107, -0.011980501934885979, -0.042174823582172394, -0.03154469653964043, -0.0606263093650341, -0.020007114857435226, 0.0025170939043164253, 0.011375535279512405, 0.06771306693553925, -0.01698228158056736, 0.04001422971487045, -0.10128872096538544, 0.0677562728524208, -0.017814110964536667, -0.04187234118580818, 0.013838614337146282, -0.009447203949093819, -0.027309928089380264, -0.02495487779378891, 0.16844002902507782, -0.011980501934885979, 0.011386338621377945, 0.00342724472284317, -0.04001422971487045, 0.007810553070157766, -0.0019418352749198675, -0.04947763681411743, -0.051119688898324966, -0.028498254716396332, 0.041353799402713776, 0.04226125031709671, 0.0324089340865612, -0.024025822058320045, -0.012585469521582127, -0.023248007521033287, 0.01408708281815052, 0.006989526562392712, -0.006098281126469374, -0.02886555716395378, -0.014454384334385395, -0.04446505755186081, 0.0008615374681539834, -0.03245214372873306, -0.0005843735998496413, 0.024846848100423813, -0.05591621249914169, 0.0324089340865612, -0.0006262350943870842, -0.06494750082492828, -0.014119491912424564, 0.008971872739493847, -0.006190106272697449, 0.0027412555646151304, 0.014540808275341988, -0.008750411681830883, 0.010165601968765259, -0.02851986140012741, 0.008539753966033459, -0.0015016138786450028, -0.005099005531519651, -0.061274491250514984, 0.05289137735962868, -0.017565641552209854, 0.01628008671104908, 0.049996182322502136, -0.029470523819327354, -0.02026638574898243, 0.02564626932144165, 0.021065806970000267, -0.03640603646636009, 0.04001422971487045, 0.037421513348817825, 0.022210922092199326, 0.015178184024989605, 0.05777432397007942, 0.05418773740530014, 0.01700388640165329, -0.03191199526190758, 0.020007114857435226, -0.036319609731435776, -0.019078059121966362, -0.06771306693553925, -0.046755287796258926, 0.0042482707649469376, -0.021400699391961098, 0.0007548580761067569, 0.03102615289390087, 0.020536459982395172, -0.0927327573299408, -0.00016634898202028126, 0.026618536561727524, -0.009717278182506561, 0.026316054165363312, 0.05868177488446236, -0.019963903352618217, -0.02821737714111805, 0.023204796016216278, 0.007443251553922892, 0.011461959220468998, 0.023399250581860542, 0.007459456101059914, -0.029060009866952896, 0.02929767593741417, 0.013298465870320797, -0.06667597591876984, 0.025235755369067192, -0.014573217369616032, 0.033813320100307465, -0.03297068923711777, -0.06607101112604141, 0.03649245947599411, 0.009322970174252987, -0.003421843284741044, -0.017878927290439606, -0.022664647549390793, 0.04262854903936386, -0.007540478371083736, 0.03318674862384796, -0.0028762929141521454, -0.02309676632285118, -0.028973586857318878, -0.026532113552093506, -0.022902313619852066, -0.026143206283450127, -0.018343456089496613, -0.02054726332426071, -0.020374415442347527, -0.049391213804483414, 0.01480007916688919, -0.008923259563744068, 0.014551610685884953, 0.014897306449711323, -0.018613530322909355, -0.024695606902241707, -0.012412621639668941, 0.023334432393312454, -0.03554179519414902, 0.01702549308538437, 0.0056769647635519505, 0.02495487779378891, 0.0017878927756100893, 0.013773797079920769, 0.0057849944569170475, 0.003494763281196356, -0.019067255780100822, 0.009117713198065758, 0.06460180878639221, 0.05245925858616829, -0.001259222044609487, 0.026099994778633118, 0.02316158451139927, 0.035628221929073334, 0.04336315393447876, 0.010970423929393291, 0.026964232325553894, 0.11356090009212494, -0.021109018474817276, 0.02566787600517273, 0.0591571070253849, -0.054058101028203964, -0.020147552713751793, -0.08400395512580872, 0.005703972186893225, -0.01370897889137268, -0.004939661361277103, 0.01012239046394825, 0.0015583295607939363, 0.06658955663442612, 0.04053277149796486, -0.006687043234705925, -0.008258876390755177, 0.03830735757946968, 0.06278690695762634, 0.013795402832329273, 0.011245899833738804, -0.015977604314684868, 0.010008959099650383, -0.04120255634188652, -0.006746459752321243, 0.03370529040694237, 0.038069695234298706, -0.015394243411719799, -0.032776232808828354, 0.05997813120484352, -0.003289506770670414, -0.00658441474661231, 0.030507609248161316, 0.003889071987941861, 0.00008979975245893002, -0.03940926119685173, 0.017911337316036224, -0.01501613948494196, 0.0173603855073452, 0.07190462201833725, 0.02964337170124054, -0.02489006146788597, -0.027590805664658546, 0.010198011063039303, -0.009366181679069996, -0.1040542796254158, -0.02242698147892952, -0.024825243279337883, -0.011191884987056255, -0.008696396835148335, -0.027223503217101097, -0.01694987155497074, 0.036686912178993225, -0.06896620988845825, -0.06179303303360939, -0.012358606792986393, -0.01808418519794941, 0.024371517822146416, 0.040489561855793, -0.025948751717805862, -0.05673724040389061, 0.09143640100955963, -0.0020876755006611347, -0.024371517822146416, 0.030442791059613228, 0.02605678141117096, 0.004588564857840538, 0.032689809799194336, 0.003529872978106141, 0.0071947830729186535, -0.031955208629369736, -0.007934787310659885, -0.04301745817065239, -0.039193201810121536, -0.04818128049373627, 0.011796851642429829, 0.02275107055902481, 0.013925038278102875, 0.04519965872168541, -0.023226402699947357, -0.05168144404888153, 0.054014887660741806, -0.04115934669971466, 0.02391779236495495, -0.024803636595606804, -0.006481786724179983, -0.008388511836528778, 0.012585469521582127, -0.020752519369125366, 0.049996182322502136, 0.006406165659427643, -0.037378303706645966, -0.00731361610814929, 0.0177276860922575, -0.03402937948703766, 0.009900929406285286, -0.03647085279226303, 0.0017905936110764742, 0.04182913154363632, 0.004783018492162228, 0.022146103903651237, -0.10431355237960815, 0.014756867662072182, -0.03031315468251705, 0.005730979610234499, 0.012228970415890217, -0.015729134902358055, 0.012639484368264675, -0.023961003869771957, 0.04723061993718147, 0.015102562494575977, -0.01338488981127739, 0.010511297732591629, -0.020795732736587524, -0.07402200251817703, 0.021238654851913452, -0.008280482143163681, 0.04057598486542702, 0.02633765898644924, -0.02021237090229988, -0.0024455240927636623, 0.05712614580988884, 0.010430275462567806, 0.02203807421028614, 0.032387327402830124, 0.005741782486438751, 0.016366511583328247, -0.013698175549507141, -0.023356037214398384, 0.028671102598309517, -0.03372689709067345, 0.017198340967297554, -0.06170661002397537, -0.09299203008413315, -0.030939728021621704, 0.003889071987941861, 0.0657685250043869, -0.015480667352676392, -0.07639865577220917, -0.06360793113708496, -0.010419472120702267, 0.039258021861314774, 0.04267176240682602, 0.03809129819273949, -0.07095395773649216, -0.019769448786973953, 0.04528608173131943, 0.04593425989151001, 0.004974771291017532, -0.05518161132931709, -0.07155892252922058, 0.047878798097372055, -0.02709386870265007, 0.0033462224528193474, 0.05155181139707565, -0.046020686626434326, -0.017511626705527306, -0.05060114711523056, -0.014638034626841545, -0.009722679853439331, 0.06036704033613205, -0.019326526671648026, 0.00651419535279274, 0.006470983847975731, -0.00723799504339695, -0.007081351708620787, 0.04308227449655533, 0.024717213585972786, -0.04481075331568718, -0.049693696200847626, 0.036341216415166855, 0.01553468219935894, 0.033035505563020706, 0.03724866732954979, 0.030097095295786858, 0.013514525257050991, 0.003859363729134202, -0.03841538727283478, -0.033078718930482864, -0.018181411549448967, 0.050039391964673996, 0.0441625714302063, 0.0490887314081192, 0.011840063147246838, -0.020320400595664978, -0.03141506016254425, 0.02208128571510315, 0.007848363369703293, -0.04952085018157959, 0.0001704000897007063, 0.017241552472114563, 0.013871023431420326, 0.04398972541093826, 0.07268243283033371, 0.01246663648635149, -0.02130347117781639, 0.04312548786401749, 0.01812739670276642, -0.060842372477054596, 0.02100098878145218, -0.02562466263771057, -0.010905605740845203, 0.028368620201945305, 0.0030815494246780872, -0.030896516516804695, -0.047878798097372055, 0.018267834559082985, -0.008545155636966228, -0.014486793428659439, 0.017047099769115448, 0.03407259285449982, -0.028973586857318878, 0.07008972018957138, 0.027309928089380264, -0.026272842660546303, 0.0478355847299099, -0.04437863081693649, -0.032322511076927185, -0.01699308305978775, -0.07008972018957138, -0.0165717676281929, 0.003024833742529154, -0.012337001040577888, -0.047922007739543915, -0.03111257590353489, 0.018916014581918716, -0.023636914789676666, -0.03638442978262901, -0.015232198871672153, 0.053625982254743576, 0.0015637309988960624, 0.005296160001307726, 0.02275107055902481, -0.003140965709462762, 0.0267481729388237, 0.05755826458334923, -0.0917821004986763, 0.022923918440937996, -0.07021935284137726, -0.016474541276693344, 0.008075226098299026, 0.05703972280025482, -0.02458757720887661, 0.03876108303666115, -0.006227916572242975, 0.00014010111044626683, 0.04662565141916275, -0.03932283818721771, 0.054230947047472, 0.0075566829182207584, 0.02597035840153694, -0.027720440179109573, -0.03411580249667168, 0.0026993940118700266, -0.01084078848361969, 0.010597720742225647, -0.002703445265069604, 0.012963573448359966, 0.012693499214947224, 0.004915354773402214, 0.006735656410455704, 0.003970094490796328, -0.030183520168066025, 0.02966497652232647, 0.03711903095245361, 0.0765715092420578, -0.004331993870437145, -0.034872010350227356, -0.0067896717227995396, -0.038480207324028015, 0.016182860359549522, -0.027245109900832176, -0.01174283679574728, -0.017425203695893288, -0.01694987155497074, 0.01765206642448902, 0.005995652638375759, -0.039971016347408295, -0.03372689709067345, 0.06174981966614723, -0.039193201810121536, 0.050039391964673996, -0.05898425728082657, 0.028087742626667023, -0.026294447481632233, -0.012563862837851048, 0.045674990862607956, 0.015707530081272125, 0.023658521473407745, -0.05315065011382103, -0.04584783688187599, -0.0448971763253212, -0.0657685250043869, -0.05578657612204552, -0.033057112246751785, 0.04010065272450447, -0.029405705630779266, -0.008577564731240273, 0.01480007916688919, 0.01884039305150509, 0.08037415146827698, -0.04593425989151001, 0.00886384304612875, 0.039971016347408295, 0.0267481729388237, 0.019607404246926308, -0.026467295363545418, 0.05850892886519432, 0.009085304103791714, -0.037054214626550674, -0.009376985020935535, -0.016074830666184425, -0.02748277597129345, 0.016895856708288193, 0.042477309703826904, -0.042174823582172394, 0.004207759629935026, 0.02817416563630104, -0.04301745817065239, 0.03698939457535744, -0.04774916172027588, 0.02599196508526802, -0.03152308985590935, 0.04096489027142525, 0.03588749095797539, 0.006082076579332352, -0.03493683040142059, -0.025019695982336998, 0.07492945343255997, -0.038069695234298706, -0.03469916433095932, 0.08205942064523697, -0.04952085018157959, -0.07523193955421448, 0.0011592945083975792, 0.02163836359977722, -0.08746090531349182, -0.01624767854809761, -0.012812331318855286, -0.034547921270132065, -0.03348923102021217, -0.018970029428601265, 0.015426652505993843, 0.0155238788574934, 0.020028721541166306, 0.031155787408351898, -0.009069100022315979, -0.07346025109291077, 0.002560305641964078, -0.050385087728500366, -0.00606047036126256, -0.020741717889904976, 0.022113695740699768, -0.005730979610234499, 0.007016533985733986, 0.012866346165537834, -0.013395692221820354, 0.032300904393196106, 0.004134839866310358, 0.022599829360842705, -0.01266109012067318, -0.011991305276751518, 0.019434556365013123 ]
23,379
uvicorn.server
__init__
null
def __init__(self, config: Config) -> None: self.config = config self.server_state = ServerState() self.started = False self.should_exit = False self.force_exit = False self.last_notified = 0.0 self._captured_signals: list[int] = []
(self, config: uvicorn.config.Config) -> NoneType
[ -0.010411739349365234, 0.006633129436522722, -0.01901400461792946, -0.03284149244427681, -0.002692440990358591, 0.005292956717312336, -0.03148680180311203, 0.04722052812576294, -0.03419617936015129, -0.016082072630524635, -0.03289954736828804, 0.09165427088737488, -0.03129327669739723, 0.006894390564411879, 0.013411404564976692, -0.008974803611636162, 0.03268666937947273, -0.043891869485378265, -0.018510833382606506, -0.08778373897075653, -0.014504830352962017, 0.04648512601852417, -0.006657320540398359, 0.0817456990480423, -0.0030649800319224596, 0.008084580302238464, -0.041066378355026245, -0.0330156646668911, 0.025429416447877884, -0.012646973133087158, -0.0029319303575903177, 0.023223210126161575, -0.002767432713881135, -0.02579711750149727, 0.005452616140246391, -0.06672802567481995, -0.010005333460867405, 0.012714708223938942, -0.10272400081157684, 0.029570888727903366, 0.029725709930062294, -0.025197183713316917, 0.008268430829048157, 0.03831829875707626, -0.009632794186472893, 0.06367029994726181, 0.02150082215666771, 0.046756062656641006, 0.004245493095368147, -0.02281680516898632, -0.06696026027202606, 0.038163475692272186, -0.01915914937853813, 0.04311776161193848, -0.009192520752549171, 0.05782579630613327, 0.0851517766714096, 0.04946544021368027, 0.0072524151764810085, -0.008669998496770859, -0.08066195249557495, 0.056122761219739914, 0.04095026105642319, -0.006855685263872147, 0.03065463900566101, -0.047491464763879776, -0.031196512281894684, 0.011379373259842396, -0.009400562383234501, 0.0010287156328558922, 0.048110753297805786, 0.002902901265770197, 0.003478643484413624, 0.010295623913407326, 0.035454101860523224, -0.03371236100792885, -0.031099749729037285, 0.02421019785106182, -0.008181343786418438, 0.025584237650036812, 0.02146211825311184, 0.023378031328320503, -0.029841825366020203, 0.0241714920848608, 0.05929659679532051, -0.01706906035542488, 0.02939671464264393, -0.040330976247787476, -0.03735066577792168, 0.03357689082622528, -0.04203401133418083, 0.03651849925518036, -0.012637297622859478, 0.00036256026942282915, -0.020165488123893738, -0.0065702334977686405, -0.0350089892745018, -0.025255242362618446, 0.004424505401402712, -0.02724856697022915, -0.05097494646906853, -0.006521851755678654, -0.06467664241790771, -0.045440081506967545, 0.005907404236495495, -0.030364347621798515, -0.0013147724093869328, -0.041724368929862976, -0.022023344412446022, 0.013014674186706543, 0.005859022494405508, 0.043195173144340515, 0.006734731141477823, 0.03371236100792885, -0.019604260101914406, 0.015569227747619152, -0.01579178310930729, -0.027538858354091644, -0.006681511178612709, -0.02926124632358551, -0.016556214541196823, 0.022487809881567955, -0.02359091117978096, 0.09080275148153305, -0.0028230715543031693, 0.0499299019575119, 0.02142341248691082, -0.05217481404542923, 0.0212879441678524, -0.04621418938040733, 0.04451115429401398, 0.020610598847270012, 0.004182597156614065, 0.045478787273168564, -0.02351350151002407, 0.006589585915207863, 0.010179507546126842, 0.008829657919704914, 0.0009785196743905544, -0.011350343935191631, 0.011350343935191631, 0.0459432527422905, 0.004414828959852457, -0.05221351981163025, 0.005636466667056084, 0.0427694134414196, -0.05066530406475067, -0.012056716717779636, -0.0017877033678814769, -0.0063912211917340755, 0.031235218048095703, -0.07528191059827805, -0.004293874837458134, 0.04582713544368744, -0.0485365092754364, 0.002088879467919469, 0.015927251428365707, -0.0009537240257486701, 0.03647979348897934, 0.01774640381336212, -0.02215881273150444, 0.021191179752349854, 0.03706037253141403, -0.035454101860523224, -0.07110173255205154, -0.012743736617267132, -0.0051816790364682674, -0.03438970446586609, 0.0034157473128288984, -0.005752583034336567, -0.053374677896499634, 0.0003864487516693771, -0.049736376851797104, 0.02215881273150444, -0.03127392381429672, 0.06293489784002304, 0.03077075444161892, 0.014882207848131657, -0.02860325388610363, -0.03644108772277832, -0.005921918898820877, -0.038260240107774734, -0.04652383178472519, 0.011853514239192009, -0.00012942102330271155, 0.05511641874909401, -0.0007039535557851195, 0.04342740401625633, 0.05949012562632561, 0.011621281504631042, 0.006681511178612709, -0.02568100020289421, -0.006894390564411879, 0.0015240232460200787, 0.006802465301007032, 0.04981378838419914, 0.014398390427231789, -0.02012678235769272, 0.010082744061946869, -0.016198189929127693, 0.020862184464931488, 0.016662653535604477, -0.012734060175716877, -0.043349992483854294, 0.008132961578667164, 0.04350481554865837, -0.001257923897355795, 0.023997317999601364, 0.02722921408712864, 0.01424356922507286, 0.0003791914787143469, -0.03340271860361099, 0.010073067620396614, 0.03558957204222679, 0.01688520982861519, -0.08213275671005249, 0.01255021058022976, 0.06076740100979805, 0.03812476992607117, 0.010924585163593292, 0.08685480803251266, 0.02072671614587307, -0.026706691831350327, -0.017756080254912376, -0.04187919199466705, 0.03692490607500076, 0.018452776595950127, -0.005172002594918013, 0.007228224538266659, -0.021094417199492455, -0.0016546538099646568, 0.016856180503964424, -0.025332652032375336, -0.0044438582845032215, 0.013130790553987026, 0.028719371184706688, 0.021171826869249344, 0.011998658999800682, -0.09691820293664932, -0.03624756261706352, 0.005191355478018522, -0.028061380609869957, 0.04923320561647415, -0.07686882466077805, 0.017456114292144775, 0.002929511247202754, -0.011147141456604004, 0.04064061865210533, -0.024694014340639114, 0.05263927951455116, 0.009071567095816135, -0.010460121557116508, -0.007707203272730112, -0.03870535269379616, -0.04269200190901756, -0.016778768971562386, 0.007537867408245802, -0.0015796622028574347, 0.02848713845014572, 0.02225557714700699, 0.020281603559851646, -0.02289421483874321, -0.038260240107774734, 0.05523253604769707, 0.02421019785106182, -0.008118447847664356, -0.005268766079097986, -0.00841357558965683, 0.02720986120402813, -0.030228879302740097, 0.16658782958984375, -0.01103102508932352, 0.00311819976195693, -0.000991824665106833, -0.04346610978245735, -0.07489485293626785, -0.03851182386279106, -0.023958612233400345, -0.038163475692272186, 0.018114104866981506, 0.06730860471725464, 0.004782530013471842, 0.07013409584760666, -0.0005579013377428055, -0.0017260167514905334, -0.026861513033509254, 0.0009718671790324152, 0.029783768579363823, -0.020223546773195267, -0.06370900571346283, -0.01822054386138916, 0.02490689419209957, 0.006096092984080315, 0.010702029801905155, 0.0799652561545372, -0.025158477947115898, -0.0658378005027771, 0.07052115350961685, 0.01067300047725439, 0.01706906035542488, 0.020223546773195267, -0.03990521654486656, -0.07772034406661987, 0.010663324035704136, -0.03272537514567375, 0.024152139201760292, 0.02999664656817913, 0.03491222858428955, 0.04412410035729408, -0.023397384211421013, 0.06866329163312912, 0.005380043759942055, 0.01650783233344555, -0.010344005189836025, -0.0002163568715332076, -0.007958787493407726, -0.0057090395130217075, -0.0716049000620842, -0.022990979254245758, 0.03806671127676964, -0.015627285465598106, 0.05147811770439148, 0.01534667145460844, 0.04660124331712723, 0.015520845539867878, 0.048923563212156296, 0.05844508111476898, 0.013121114112436771, -0.04849780350923538, 0.0036576557904481888, -0.07613342255353928, 0.02289421483874321, -0.03075140155851841, -0.0761721283197403, 0.006778274662792683, -0.06916646659374237, -0.017610935494303703, -0.0029706356581300497, -0.013227554038167, -0.11487748473882675, 0.018027016893029213, 0.0007958787609823048, -0.0213847067207098, 0.02777108922600746, 0.048962268978357315, -0.014233892783522606, -0.029822472482919693, -0.043195173144340515, 0.02852584421634674, -0.014553212560713291, -0.009748910553753376, 0.016159484162926674, -0.046175483614206314, 0.0441628061234951, 0.04625289514660835, -0.05356820672750473, -0.021055711433291435, -0.033809125423431396, 0.009666661731898785, -0.00824423972517252, -0.02364896982908249, 0.05213610827922821, -0.028235554695129395, -0.005404234863817692, 0.015627285465598106, -0.004378542769700289, 0.009565060026943684, -0.006657320540398359, 0.03005470521748066, 0.007450780365616083, -0.014088748022913933, -0.048884857445955276, -0.07752681523561478, 0.03831829875707626, 0.020436424762010574, -0.02432631328701973, -0.021984638646245003, -0.012908234260976315, -0.015462787821888924, 0.031873855739831924, -0.020204193890094757, 0.002267891773954034, 0.008282945491373539, -0.019836492836475372, -0.0425758883357048, 0.028777427971363068, 0.012695355340838432, -0.009095757268369198, 0.06595391780138016, -0.009724719449877739, -0.00104927783831954, -0.02995794266462326, -0.023319974541664124, 0.013595255091786385, 0.02068801037967205, 0.0027335654012858868, 0.024403724819421768, 0.05136200040578842, 0.052484456449747086, 0.05503901094198227, 0.01959458366036415, 0.02631963975727558, -0.007233062759041786, 0.019478468224406242, 0.03667331859469414, 0.005205869674682617, 0.10349810868501663, 0.019130120053887367, 0.02937736175954342, -0.0008630083757452667, 0.01790122501552105, -0.007634630426764488, -0.07392722368240356, -0.03005470521748066, -0.028351670131087303, -0.040292270481586456, 0.018094751983880997, -0.026687338948249817, 0.02918383479118347, 0.027577562257647514, 0.0003196215257048607, 0.05937400832772255, 0.0429629385471344, -0.02357155829668045, 0.04633030667901039, 0.04795593023300171, -0.0055832467041909695, 0.020881537348031998, -0.007015345152467489, -0.019478468224406242, -0.0270550400018692, 0.09970498830080032, -0.025371357798576355, -0.008926421403884888, 0.03415747359395027, -0.0009482810855843127, -0.01903335563838482, -0.025390710681676865, -0.017698021605610847, 0.02995794266462326, -0.08863525092601776, 0.026571223512291908, 0.03787318617105484, 0.04160825163125992, 0.052484456449747086, 0.018791448324918747, -0.0018820477416738868, -0.04942673444747925, 0.04845910146832466, -0.00858291145414114, -0.05085883289575577, -0.04516914486885071, -0.028719371184706688, -0.023842496797442436, 0.0034665479324758053, -0.041840486228466034, -0.0717984288930893, 0.06510239839553833, -0.04164695739746094, -0.04520785063505173, -0.06049646437168121, -0.026455108076334, -0.029241893440485, -0.018626950681209564, -0.02349414862692356, 0.008708704262971878, 0.03067399002611637, 0.02939671464264393, -0.04079544171690941, 0.032435085624456406, 0.01648847945034504, 0.04814945533871651, -0.006937934085726738, 0.05716780573129654, 0.00788621511310339, -0.047336645424366, -0.01925591193139553, -0.0745852142572403, -0.04009874537587166, -0.04482079669833183, 0.02291356772184372, 0.04195659980177879, 0.012095422483980656, 0.03589921444654465, -0.022661983966827393, -0.06250914186239243, 0.05380043759942055, -0.07462392002344131, 0.04710441082715988, -0.025235889479517937, -0.048962268978357315, 0.027035687118768692, -0.002554553095251322, -0.03920852020382881, 0.01358557865023613, 0.029628947377204895, -0.048884857445955276, 0.018365688621997833, 0.02134600095450878, 0.027035687118768692, 0.01003436278551817, -0.017794786021113396, -0.0196913480758667, 0.031912561506032944, 0.0010414158459752798, -0.005520350765436888, -0.10992319881916046, 0.006473470013588667, -0.04551749303936958, 0.01704970747232437, 0.025951938703656197, -0.009444105438888073, -0.011805132031440735, -0.01283082365989685, 0.018288278952240944, -0.018307631835341454, -0.0429629385471344, 0.0022037860471755266, -0.04346610978245735, -0.013817810453474522, 0.00515748793259263, 0.007010506931692362, 0.0745852142572403, -0.015501493588089943, -0.0004429948457982391, -0.018772095441818237, 0.07683011889457703, 0.005404234863817692, 0.046910885721445084, 0.051052358001470566, 0.002796461572870612, -0.023668322712183, -0.0471431165933609, 0.03632497042417526, 0.01648847945034504, 0.03148680180311203, -0.011156817898154259, -0.02293292060494423, -0.039014995098114014, -0.024539193138480186, 0.028119437396526337, -0.003081913571804762, 0.018849506974220276, -0.022990979254245758, -0.07652048021554947, -0.022449104115366936, 0.00984567403793335, 0.06243173032999039, -0.053219858556985855, -0.047336645424366, 0.0350089892745018, -0.059567537158727646, -0.004334999248385429, -0.05639369785785675, -0.006410573609173298, -0.03216414526104927, 0.09575703740119934, -0.01399198453873396, 0.042498476803302765, 0.04625289514660835, -0.05937400832772255, 0.022720040753483772, -0.05879342928528786, 0.030190173536539078, 0.007997493259608746, 0.034641288220882416, 0.041801780462265015, -0.018191514536738396, -0.013333993963897228, -0.012143803760409355, 0.03915046155452728, -0.01790122501552105, -0.026977630332112312, -0.00627510529011488, -0.06057387590408325, 0.01431130338460207, 0.02788720652461052, 0.08182311058044434, -0.0019255912629887462, 0.031815797090530396, 0.025545531883835793, -0.02351350151002407, -0.023397384211421013, -0.028912898153066635, -0.06711507588624954, 0.016401393339037895, -0.016740065068006516, 0.0036891037598252296, -0.008805467747151852, -0.011785779148340225, 0.010566560551524162, 0.018094751983880997, -0.013856516219675541, -0.010024686343967915, -0.024519840255379677, 0.0035391205456107855, 0.02225557714700699, -0.012347007170319557, 0.03949880972504616, 0.013537196442484856, -0.05650981143116951, 0.02631963975727558, 0.033944591879844666, -0.023707028478384018, 0.026145465672016144, -0.07013409584760666, -0.004758338909596205, 0.046678654849529266, -0.0065702334977686405, -0.018743066117167473, -0.018646303564310074, 0.015869194641709328, -0.008476471528410912, 0.013875868171453476, 0.027364684268832207, -0.0028133951127529144, 0.013730723410844803, 0.07671400904655457, 0.023416737094521523, -0.011040701530873775, 0.04269200190901756, 0.007257253397256136, -0.010847174562513828, 0.025352004915475845, -0.011524518020451069, -0.02926124632358551, 0.008524853736162186, -0.09312507510185242, -0.024868188425898552, 0.008476471528410912, 0.038860172033309937, -0.032493144273757935, -0.05089753866195679, -0.05863860622048378, 0.021694349125027657, 0.0020816221367567778, -0.023939259350299835, 0.03067399002611637, 0.014737062156200409, 0.029493477195501328, -0.009037699550390244, -0.07741070538759232, 0.015927251428365707, -0.03661526367068291, -0.025197183713316917, -0.009323151782155037, 0.022274930030107498, -0.03721519559621811, 0.03769901394844055, 0.007847510278224945, 0.012076069600880146, 0.0330156646668911, -0.044704679399728775, 0.08406802266836166, -0.05128458887338638, 0.009565060026943684, 0.020533189177513123, 0.0441628061234951, 0.028816133737564087, -0.014098424464464188, -0.041066378355026245, 0.009715043008327484, 0.03340271860361099, 0.015530521981418133, 0.04292423650622368, -0.0027892044745385647, 0.006115445401519537, -0.005055886693298817, 0.0005083100986666977, 0.03558957204222679, 0.0785718634724617, -0.015472464263439178, 0.007170166354626417, 0.023049036040902138, 0.012705031782388687, -0.03080946020781994, -0.012714708223938942, -0.010460121557116508, 0.04145343229174614, -0.01613045483827591, -0.027364684268832207, 0.0330156646668911, 0.01925591193139553, -0.09196391701698303, 0.05801932141184807, -0.02792591042816639, 0.011185846291482449, -0.005892889574170113, 0.0005188935901969671, -0.009724719449877739, -0.05441972240805626, 0.059025660157203674, 0.009850512258708477, 0.0016377201536670327, -0.03144809976220131, -0.011930924840271473, -0.036034680902957916, -0.1062074825167656, -0.030925575643777847, -0.05155552923679352, 0.02215881273150444, -0.004424505401402712, -0.016120778396725655, 0.020436424762010574, 0.023145800456404686, 0.006202532444149256, 0.004279360640794039, -0.03491222858428955, 0.01616916060447693, -0.02860325388610363, 0.03953751549124718, 0.03415747359395027, 0.0513232946395874, 0.012405064888298512, -0.004499496892094612, 0.07083079218864441, 0.009202197194099426, -0.04876874387264252, -0.04211142286658287, 0.02870001830160618, -0.05472936853766441, -0.05434231460094452, -0.01575307734310627, -0.025526179000735283, 0.07187584042549133, -0.041105084121227264, 0.014204864390194416, -0.004388219211250544, 0.04009874537587166, -0.016981972381472588, -0.05229093134403229, -0.02428760752081871, -0.034621935337781906, 0.044627271592617035, -0.01882047764956951, -0.046910885721445084, 0.05047177895903587, -0.014466125518083572, -0.014030690304934978, 0.07156619429588318, 0.04489820823073387, -0.06506369262933731, 0.043930575251579285, -0.007731393910944462, -0.027384035289287567, 0.011214875616133213, -0.011630957946181297, 0.002815814223140478, 0.01004403829574585, -0.0033939755521714687, -0.006265428848564625, -0.00021575209393631667, 0.02643575519323349, -0.042537182569503784, -0.038279592990875244, -0.02583582140505314, -0.019604260101914406, -0.007484647445380688, -0.030383700504899025, -0.017417408525943756, -0.02570035308599472, -0.043930575251579285, 0.08669998496770859, -0.01109875924885273, 0.03866664692759514, 0.01955587789416313, 0.0011266885558143258, 0.027519505470991135 ]
23,380
uvicorn.server
_log_started_message
null
def _log_started_message(self, listeners: Sequence[socket.SocketType]) -> None: config = self.config if config.fd is not None: # pragma: py-win32 sock = listeners[0] logger.info( "Uvicorn running on socket %s (Press CTRL+C to quit)", sock.getsockname(), ) elif config.uds is not None: # pragma: py-win32 logger.info("Uvicorn running on unix socket %s (Press CTRL+C to quit)", config.uds) else: addr_format = "%s://%s:%d" host = "0.0.0.0" if config.host is None else config.host if ":" in host: # It's an IPv6 address. addr_format = "%s://[%s]:%d" port = config.port if port == 0: port = listeners[0].getsockname()[1] protocol_name = "https" if config.ssl else "http" message = f"Uvicorn running on {addr_format} (Press CTRL+C to quit)" color_message = "Uvicorn running on " + click.style(addr_format, bold=True) + " (Press CTRL+C to quit)" logger.info( message, protocol_name, host, port, extra={"color_message": color_message}, )
(self, listeners: Sequence[_socket.socket]) -> NoneType
[ -0.031103093177080154, -0.007452834397554398, -0.037057287991046906, 0.004031695891171694, 0.05421343818306923, -0.003062877804040909, -0.0022946354001760483, 0.01403776928782463, -0.029892072081565857, 0.02294887602329254, -0.025411289185285568, 0.02886270172894001, 0.05986487865447998, -0.0396609865128994, 0.04456562548875809, 0.0035649475175887346, -0.0029922346584498882, -0.06297317147254944, -0.09236064553260803, -0.021152526140213013, 0.005747310817241669, 0.02587551437318325, 0.03522057086229324, -0.02248465083539486, -0.015369893983006477, -0.011605632491409779, -0.03689581900835037, -0.0059693315997719765, 0.006014745216816664, 0.0023867234122008085, -0.07241914421319962, -0.04420232027769089, -0.06842277199029922, -0.005444555077701807, 0.013704737648367882, 0.023231448605656624, 0.0188919510692358, -0.02426081709563732, 0.02278740704059601, 0.030033357441425323, -0.004142706282436848, -0.003663342911750078, -0.007331731729209423, 0.017489183694124222, -0.03645177558064461, 0.00866385642439127, 0.06616219133138657, 0.10923422873020172, 0.0012494976399466395, -0.002263098256662488, -0.059784144163131714, 0.042183950543403625, -0.010949661955237389, -0.004561517853289843, -0.02761131338775158, 0.03970135375857353, 0.07770727574825287, -0.020607566460967064, -0.03017464280128479, -0.03925731033086777, -0.010838651098310947, 0.020113065838813782, 0.015188240446150303, 0.05195286497473717, 0.005144322756677866, -0.014370799995958805, 0.058169446885585785, 0.01449190266430378, 0.017378171905875206, -0.021677302196621895, 0.059784144163131714, -0.02712690271437168, -0.03554350882768631, 0.003638113383203745, -0.005222534295171499, 0.0380866564810276, -0.039539884775877, 0.010041394270956516, -0.005585841368883848, 0.0517510287463665, 0.038914188742637634, -0.007922105491161346, 0.003007372608408332, -0.022585568949580193, 0.0654759481549263, -0.03828849270939827, -0.03463524207472801, -0.01586439460515976, -0.030134275555610657, -0.022706670686602592, -0.015450628474354744, 0.019628655165433884, -0.017549734562635422, 0.04339497163891792, -0.03398936614394188, 0.0005626208730973303, -0.03667379915714264, -0.0018329329323023558, -0.00797761045396328, -0.029609499499201775, -0.009657904505729675, 0.04513077065348625, -0.01763046905398369, -0.06164104491472244, -0.02456357330083847, -0.025370920076966286, -0.03263705596327782, 0.024886511266231537, -0.010606538504362106, 0.005139276850968599, 0.02456357330083847, -0.025249818339943886, 0.018589194864034653, -0.021091975271701813, -0.009269367903470993, -0.022585568949580193, 0.02785351686179638, 0.01772129535675049, -0.04496930167078972, 0.01541026122868061, -0.03840959817171097, -0.02278740704059601, -0.010455160401761532, -0.05276021361351013, -0.05861348658800125, -0.013704737648367882, -0.0030754925683140755, 0.022847957909107208, 0.06309427320957184, -0.06491080671548843, 0.03584626689553261, -0.030679237097501755, 0.00009279775258619338, -0.01121204998344183, 0.0518721304833889, -0.03376734256744385, -0.03370679169893265, 0.050055596977472305, 0.026985617354512215, 0.04860236868262291, -0.00988497119396925, 0.008113850839436054, -0.07120811939239502, 0.04557481408119202, 0.011282692663371563, 0.02944803051650524, 0.03308109566569328, 0.01398730929940939, -0.04054906964302063, -0.013684554025530815, 0.039156392216682434, -0.08622480183839798, -0.058936428278684616, 0.037238940596580505, -0.03340403735637665, -0.031688421964645386, 0.001555406954139471, -0.03035629726946354, 0.0006424096063710749, 0.008830372244119644, -0.009804235771298409, -0.07411457598209381, 0.04775465279817581, 0.0002472504274919629, -0.030517766252160072, 0.01873048022389412, -0.05348682776093483, 0.07213657349348068, 0.038793087005615234, 0.08000821620225906, -0.005838137585669756, 0.02187914028763771, -0.026581943035125732, 0.03203154355287552, 0.04557481408119202, 0.01272582821547985, 0.0062973168678581715, -0.04670510068535805, -0.029670050367712975, -0.017802029848098755, -0.010197818279266357, -0.03368660807609558, 0.006161076948046684, -0.06983563303947449, -0.009254230186343193, 0.07718250155448914, 0.02694525010883808, 0.013250604271888733, 0.02916545793414116, -0.046543631702661514, -0.009052393026649952, 0.0095519395545125, 0.018054326996207237, -0.0038878866471350193, 0.04561518132686615, 0.07516413182020187, -0.026339739561080933, -0.004975283984094858, -0.009617537260055542, -0.10955716669559479, 0.02742965891957283, 0.10172589123249054, -0.055908869951963425, -0.0264204740524292, 0.01657082512974739, 0.01827634684741497, -0.0013661847915500402, 0.038853637874126434, 0.04182064160704613, -0.03463524207472801, 0.05788687616586685, -0.017489183694124222, -0.013694645836949348, 0.049288615584373474, -0.004856704734265804, -0.075810007750988, -0.01900296099483967, 0.014512086287140846, -0.024825960397720337, -0.027772782370448112, 0.06466860324144363, -0.026036983355879784, 0.028943438082933426, 0.020587382838129997, -0.058048345148563385, 0.01541026122868061, 0.002830764977261424, -0.000471794162876904, 0.057644668966531754, 0.006569797173142433, 0.032475586980581284, -0.03774353489279747, -0.07455861568450928, 0.06265022605657578, -0.03746096044778824, 0.0380261056125164, -0.05098404735326767, 0.05070147290825844, 0.023998428136110306, -0.009052393026649952, -0.07132922112941742, -0.008547800593078136, 0.03667379915714264, 0.0005537904798984528, 0.06579888612031937, -0.05820981413125992, -0.005878504831343889, 0.01839745044708252, -0.042305052280426025, 0.06995673477649689, -0.016651559621095657, -0.004990421701222658, -0.026723230257630348, -0.05647401511669159, -0.011645999737083912, -0.0004203887947369367, -0.014794657938182354, 0.019790126010775566, 0.02593606524169445, 0.0005001774989068508, -0.0009454805986024439, -0.012998308055102825, -0.01213040854781866, 0.06527411192655563, 0.008845509961247444, -0.02016352489590645, -0.0196488406509161, -0.021132342517375946, 0.02956913225352764, -0.022625936195254326, 0.14968237280845642, 0.023473652079701424, -0.01644972153007984, -0.03176915645599365, -0.027873700484633446, -0.009940476156771183, -0.025330552831292152, -0.05950156971812248, -0.020274534821510315, 0.03483707830309868, 0.0394187830388546, 0.023170895874500275, 0.04169953987002373, -0.02880215086042881, 0.03493800014257431, 0.0028534717857837677, 0.04973265528678894, 0.006801909767091274, -0.0025141332298517227, -0.026158085092902184, -0.023635122925043106, 0.000257973006227985, -0.014653371647000313, -0.00016872318519745022, -0.03189025819301605, 0.045292239636182785, -0.005873458925634623, 0.06567778438329697, -0.035987552255392075, -0.05021706596016884, -0.019578196108341217, -0.042183950543403625, -0.04351607337594032, -0.05352719500660896, -0.03112327866256237, 0.0025305324234068394, 0.0005834352923557162, -0.046543631702661514, 0.03382789343595505, -0.03285907581448555, -0.010167542845010757, -0.000761304225306958, 0.07770727574825287, -0.003968621604144573, 0.0025368398055434227, 0.0632961094379425, 0.01201939769089222, 0.011191866360604763, 0.048440899699926376, 0.0400848425924778, 0.0264810249209404, 0.06418418884277344, -0.023998428136110306, 0.03059850074350834, -0.001260220305994153, 0.042305052280426025, 0.05506115406751633, 0.008456973358988762, -0.02044609561562538, 0.01803414337337017, -0.0518721304833889, -0.02391769364476204, -0.006453740410506725, -0.06176214665174484, -0.013331338763237, -0.00985469575971365, -0.000014339500012283679, 0.03919675946235657, 0.04456562548875809, -0.03570497781038284, -0.03402973338961601, -0.04751244932413101, -0.04222431778907776, 0.02987188845872879, 0.08687067776918411, 0.010808375664055347, -0.03707747161388397, 0.031042542308568954, 0.06107589974999428, -0.030961807817220688, -0.005732173100113869, -0.011070763692259789, -0.04525187239050865, -0.018205704167485237, -0.0008388853748328984, -0.050943680107593536, 0.01186802051961422, -0.05570703372359276, 0.0902615413069725, 0.024341551586985588, -0.0634172111749649, 0.023352550342679024, 0.03251595422625542, -0.012251511216163635, -0.029730601236224174, 0.009910200722515583, 0.04327386990189552, 0.00596428569406271, 0.12303988635540009, 0.02688469924032688, 0.0002978673728648573, -0.006342730019241571, 0.011787285096943378, 0.02474522590637207, -0.054657481610774994, 0.0196791160851717, 0.022080976516008377, -0.01201939769089222, -0.05675658583641052, -0.04989412799477577, -0.01631852798163891, 0.02910490706562996, -0.008608351461589336, -0.02086995355784893, -0.020910320803523064, 0.03154713660478592, 0.008366147056221962, 0.007165216375142336, 0.001706784823909402, -0.006398235447704792, -0.008779913187026978, 0.004500966984778643, 0.008855601772665977, -0.010152405127882957, -0.009546893648803234, -0.02522963471710682, 0.014895576052367687, 0.03263705596327782, 0.014572637155652046, -0.0023387870751321316, -0.039317864924669266, 0.004382387734949589, -0.033484771847724915, 0.031103093177080154, -0.030618684366345406, 0.012776287272572517, 0.034554507583379745, -0.036411408334970474, 0.04036741703748703, -0.0025860376190394163, 0.010566171258687973, -0.009814327582716942, -0.06591998785734177, 0.005025743506848812, -0.005696851760149002, 0.0257544107735157, -0.05389050021767616, -0.028358109295368195, 0.01931580901145935, 0.010778100229799747, -0.0756889060139656, -0.007604212034493685, 0.0405087023973465, 0.0515088215470314, -0.004823906347155571, 0.030578317120671272, -0.040226131677627563, 0.013200145214796066, 0.06793835759162903, -0.04807759076356888, -0.04932898283004761, 0.027288373559713364, -0.0011586709879338741, -0.004796153400093317, 0.02975078485906124, 0.006357868202030659, -0.028459027409553528, 0.06773652136325836, 0.004084677901118994, 0.005144322756677866, -0.038248125463724136, -0.020910320803523064, 0.009340010583400726, -0.005893642548471689, 0.04169953987002373, 0.055020786821842194, -0.05348682776093483, -0.058653853833675385, -0.04601885378360748, 0.029912255704402924, -0.060026347637176514, -0.029609499499201775, -0.05594923719763756, -0.04537297412753105, 0.024947063997387886, -0.03201135993003845, -0.02987188845872879, 0.0792008712887764, 0.0071702622808516026, -0.04811796173453331, 0.0029140228871256113, -0.006352822296321392, -0.026925066486001015, 0.0396609865128994, -0.031143462285399437, -0.06111626699566841, 0.09817355871200562, -0.040872007608413696, -0.041659172624349594, -0.01885158382356167, 0.07843388617038727, 0.03140585124492645, 0.05122625082731247, -0.006882644258439541, 0.00791705958545208, 0.023231448605656624, 0.021858956664800644, -0.01547081209719181, -0.0016525411047041416, 0.03100217506289482, -0.025592941790819168, 0.019689207896590233, 0.024664491415023804, -0.009733593091368675, -0.01803414337337017, -0.013018491677939892, 0.010535895824432373, -0.011767101474106312, 0.03800592198967934, -0.019931411370635033, 0.009395516477525234, -0.03386826068162918, -0.030336113646626472, -0.02468467503786087, 0.05800797790288925, 0.003645682241767645, -0.007553752511739731, -0.014118503779172897, -0.01657082512974739, -0.00476840091869235, -0.01380565669387579, -0.005838137585669756, 0.014633188024163246, 0.022706670686602592, 0.003014941466972232, -0.05522262677550316, 0.04626105725765228, 0.02916545793414116, -0.02767186425626278, -0.002528009470552206, -0.008351009339094162, 0.028660865500569344, -0.01699468307197094, -0.010424884967505932, -0.0019653886556625366, -0.06200435012578964, -0.010122129693627357, -0.007316594012081623, 0.0037491237744688988, -0.10188736021518707, -0.0014229514636099339, 0.0523565374314785, 0.041416969150304794, 0.01637907885015011, 0.00331012811511755, 0.008169355802237988, 0.006206490099430084, 0.024947063997387886, -0.03285907581448555, 0.09308726340532303, -0.023937877267599106, -0.010656997561454773, 0.02206079289317131, -0.022464467212557793, 0.018902042880654335, 0.041538070887327194, -0.011282692663371563, -0.0671713799238205, -0.0655970498919487, -0.0037314631044864655, 0.023291999474167824, -0.024886511266231537, -0.05401160195469856, -0.06248876079916954, -0.010455160401761532, -0.04287019744515419, 0.061802513897418976, 0.048925306648015976, 0.03402973338961601, -0.005318406969308853, 0.0397215373814106, 0.0403270497918129, -0.02019380033016205, 0.02288832515478134, -0.02105160802602768, -0.0015718062641099095, 0.008593213744461536, -0.0189827773720026, -0.0131496861577034, 0.03976190462708473, 0.0052830856293439865, -0.015228607691824436, -0.003128474811092019, 0.049934495240449905, -0.04807759076356888, -0.004157843999564648, -0.031748972833156586, 0.0017761662602424622, -0.006468878593295813, 0.004266331437975168, 0.005232626106590033, 0.02730855718255043, -0.017559826374053955, 0.00205999962054193, -0.05413270369172096, 0.006615210324525833, 0.029952622950077057, 0.06628330051898956, 0.03059850074350834, 0.020557107403874397, -0.08178438246250153, -0.013815748505294323, -0.022868141531944275, -0.05389050021767616, -0.01180746965110302, 0.05732173100113869, -0.007382191251963377, -0.006463832687586546, 0.017862580716609955, -0.013613911345601082, -0.019598379731178284, -0.011938663199543953, -0.016368987038731575, 0.004374818876385689, -0.016126783564686775, 0.0020183708984404802, 0.07266134768724442, 0.03645177558064461, 0.055303361266851425, 0.02587551437318325, -0.06208508461713791, 0.023655306547880173, -0.005550519563257694, -0.03505910187959671, 0.002299681305885315, -0.06349794566631317, -0.011161590926349163, 0.06539521366357803, -0.0034413221292197704, 0.01876075752079487, -0.028822334483265877, 0.0075789825059473515, -0.01631852798163891, 0.028237007558345795, 0.02349383570253849, 0.003744077868759632, 0.027712231501936913, 0.05707952752709389, 0.049530819058418274, 0.04710877314209938, 0.05263911187648773, 0.0000544408212590497, 0.010273507796227932, 0.01072764117270708, -0.03649214282631874, 0.01007167063653469, 0.0035220570862293243, -0.0672924816608429, -0.0030351250898092985, -0.05498041957616806, 0.022989243268966675, 0.051185883581638336, -0.04533260688185692, -0.010293691419064999, 0.002435921225696802, -0.011393703520298004, 0.02105160802602768, -0.012867113575339317, -0.023231448605656624, -0.03584626689553261, 0.03471597656607628, -0.04287019744515419, 0.004072063136845827, -0.07310538738965988, 0.03459487482905388, -0.014592820778489113, 0.031809523701667786, -0.0190736036747694, 0.047552816569805145, -0.008492294698953629, 0.04848126694560051, 0.020769035443663597, -0.01934608444571495, 0.09946531057357788, 0.02736910805106163, 0.003022510325536132, -0.024018611758947372, -0.014370799995958805, -0.027288373559713364, 0.03178934007883072, -0.012947848998010159, -0.03483707830309868, 0.01586439460515976, -0.013432257808744907, 0.031284745782613754, -0.01386620756238699, 0.04157843813300133, -0.015319433994591236, 0.01049552857875824, -0.039378415793180466, 0.05627217888832092, -0.04214358329772949, 0.015541454777121544, -0.0008269012905657291, 0.04682620242238045, 0.017781846225261688, 0.008658810518682003, 0.03733985871076584, -0.006645485758781433, -0.07815131545066833, 0.051912497729063034, -0.0031612731982022524, 0.01206985767930746, -0.07524486631155014, 0.05796761065721512, -0.008381284773349762, -0.01195884682238102, -0.07209620624780655, 0.00021949782967567444, 0.005109000951051712, -0.03762243315577507, 0.0198304932564497, 0.006221627816557884, 0.04054906964302063, -0.013624003157019615, -0.004157843999564648, -0.05276021361351013, -0.02450302243232727, -0.05711989477276802, -0.04500966891646385, 0.03267742320895195, -0.03267742320895195, 0.018508460372686386, 0.021152526140213013, -0.055666666477918625, 0.028237007558345795, 0.006988608743995428, -0.03786463662981987, 0.034493956714868546, 0.01866992935538292, 0.016066230833530426, -0.025209451094269753, 0.03142603486776352, -0.04311240091919899, -0.0032016406767070293, 0.016399262472987175, -0.03576553240418434, -0.03520038723945618, -0.014663463458418846, 0.031567320227622986, -0.04101329296827316, 0.008901014924049377, 0.0509033128619194, -0.03100217506289482, 0.05675658583641052, -0.038429781794548035, 0.0512666180729866, -0.020244259387254715, 0.0385105162858963, 0.014895576052367687, -0.032112278044223785, -0.0071853999979794025, -0.09486342966556549, 0.06099516525864601, -0.044161953032016754, -0.0008168094209395349, 0.04383901506662369, -0.01800386793911457, -0.02688469924032688, -0.013795564882457256, -0.03516001999378204, -0.06034928560256958, 0.03352513909339905, 0.011090947315096855, -0.015319433994591236, -0.010889110155403614, 0.012201051227748394, 0.006075296085327864, -0.018619470298290253, 0.02862049825489521, 0.027692047879099846, 0.01726716198027134, -0.07019893825054169, -0.04601885378360748, 0.011040488258004189, -0.043314237147569656, 0.004273900296539068, 0.03320220112800598, 0.031688421964645386, -0.01418914645910263, 0.03671416640281677, 0.01845800131559372, 0.028882885351777077, -0.0017118307296186686, 0.009279459714889526, 0.05812907963991165, -0.039095841348171234, 0.03065905161201954 ]
23,381
uvicorn.server
_serve
null
def run(self, sockets: list[socket.socket] | None = None) -> None: self.config.setup_event_loop() return asyncio.run(self.serve(sockets=sockets))
(self, sockets: Optional[list[socket.socket]] = None) -> NoneType
[ 0.009322943165898323, -0.03502137213945389, -0.11183957010507584, -0.011468203738331795, -0.02794201485812664, 0.03800686076283455, -0.03516438975930214, 0.015937495976686478, -0.05302368104457855, 0.05595553666353226, -0.0038905187975615263, 0.04623035714030266, -0.027477208524942398, -0.031088396906852722, 0.0676114484667778, -0.0006905056652612984, -0.007155336905270815, -0.03509288281202316, -0.021685006096959114, -0.03736328333616257, -0.03696998581290245, 0.08387967199087143, 0.04365604743361473, -0.049448247998952866, -0.007155336905270815, 0.0035150982439517975, -0.0364515483379364, 0.0019430248066782951, -0.005492759868502617, -0.008853667415678501, -0.008451431058347225, 0.014686093665659428, 0.0070123192854225636, -0.0021262657828629017, 0.026243682950735092, -0.0157229695469141, -0.04505046457052231, 0.019182201474905014, -0.009903951548039913, -0.011137476190924644, 0.008116234093904495, -0.05992427095770836, 0.058172307908535004, 0.04387057200074196, -0.013157595880329609, 0.0003740238898899406, 0.03865043818950653, 0.019807903096079826, 0.004245827440172434, -0.006127399392426014, -0.02996213547885418, 0.061640478670597076, -0.0026100666727870703, -0.0062436009757220745, 0.051951050758361816, 0.09703727066516876, -0.011164291761815548, 0.06403601914644241, 0.018359852954745293, -0.054453857243061066, -0.04901919513940811, -0.015293917618691921, 0.012657035142183304, 0.042082853615283966, 0.015115146525204182, -0.02107718214392662, 0.022042548283934593, 0.030677221715450287, 0.03761356323957443, 0.01297882478684187, 0.023329704999923706, 0.029836993664503098, 0.00795980915427208, -0.021649250760674477, 0.07132989913225174, 0.036415793001651764, -0.016473811119794846, 0.01758219487965107, -0.02797776833176613, 0.027030279859900475, 0.007986624725162983, 0.07061481475830078, -0.025904016569256783, 0.019611254334449768, 0.05373876914381981, -0.000826260366011411, -0.013899498619139194, -0.026905138045549393, -0.06003153324127197, -0.026726366952061653, -0.011235800571739674, 0.05266613885760307, -0.03196437656879425, 0.005229071713984013, 0.006400026381015778, 0.006757569964975119, -0.02007606066763401, -0.016268223524093628, -0.026529718190431595, -0.014623523689806461, 0.003899457398802042, 0.046587903052568436, 0.019539745524525642, -0.03048057295382023, 0.04651639237999916, -0.023812389001250267, -0.010458143427968025, 0.0175643190741539, -0.05223708599805832, 0.03462807461619377, 0.0005251418333500624, 0.038257140666246414, 0.06278461962938309, -0.004817896988242865, -0.11133900284767151, 0.0062346626073122025, 0.02223919704556465, 0.019325219094753265, 0.01305033266544342, 0.01675984635949135, -0.09274674952030182, 0.013452569022774696, 0.040223628282547, -0.003984373994171619, -0.03561132028698921, 0.07444053143262863, -0.017850352451205254, -0.006038013845682144, 0.021202322095632553, -0.05974549800157547, 0.06811201572418213, -0.005340804345905781, 0.0381498783826828, 0.053309716284275055, 0.03267946466803551, 0.040616925805807114, -0.009153109975159168, -0.006842486094683409, 0.016661521047353745, 0.021685006096959114, -0.008326291106641293, 0.037577807903289795, 0.012987762689590454, 0.0428694486618042, -0.03262583166360855, 0.020630253478884697, -0.04415660724043846, -0.0004986054264008999, 0.0072804768569767475, 0.010243617929518223, 0.012701728381216526, 0.018297282978892326, 0.011423510499298573, 0.049197968095541, -0.09389089047908783, 0.010815687477588654, 0.026172174140810966, 0.0010966525878757238, 0.014337489381432533, 0.0020916287321597338, -0.07730087637901306, 0.018699517473578453, 0.0063240486197173595, 0.0016446994850412011, -0.029908502474427223, -0.004844712559133768, -0.0733679011464119, 0.07293884456157684, 0.044263869524002075, 0.07472656667232513, 0.02023695409297943, 0.06482261419296265, -0.023544231429696083, 0.00863020308315754, 0.04737449809908867, -0.03225041180849075, -0.03646942228078842, -0.0005332424188964069, -0.023848142474889755, -0.01855650171637535, -0.034735336899757385, -0.057492975145578384, 0.0015944199403747916, -0.07501260191202164, -0.008312883786857128, 0.08802717924118042, -0.006757569964975119, 0.02560010552406311, 0.03932977095246315, -0.050592388957738876, -0.04830411076545715, 0.021828023716807365, 0.05323820933699608, -0.0013575474731624126, 0.03979457914829254, 0.013667095452547073, -0.005050300154834986, 0.006520697381347418, 0.018279405310750008, -0.07436902076005936, -0.007115113083273172, 0.036254897713661194, 0.04540800675749779, -0.024366579949855804, 0.0025810161605477333, 0.027584470808506012, -0.023687249049544334, -0.013756480999290943, 0.02645820938050747, -0.017010126262903214, 0.028817996382713318, -0.03427053242921829, 0.01591961830854416, 0.003727389732375741, 0.06593099981546402, 0.015865987166762352, -0.017019065096974373, -0.05824381485581398, 0.02810290828347206, -0.026833629235625267, 0.07011425495147705, -0.004871528595685959, -0.017492810264229774, 0.029014645144343376, -0.02726268209517002, 0.047124218195676804, -0.022006794810295105, -0.03326940909028053, -0.018610132858157158, 0.06425054371356964, 0.05209406837821007, -0.01431067381054163, -0.009367636404931545, -0.006829078309237957, -0.005707286298274994, 0.01071736216545105, 0.01171848364174366, 0.04469292238354683, -0.014668216928839684, -0.033734217286109924, -0.02644033171236515, -0.01296988595277071, 0.0025273847859352827, -0.05938795581459999, 0.037720825523138046, 0.028317434713244438, 0.002415652386844158, -0.03461019694805145, 0.006306171417236328, 0.06904162466526031, 0.039580050855875015, 0.002282690955325961, -0.005340804345905781, -0.008080480620265007, -0.024688370525836945, -0.03646942228078842, -0.022543109953403473, -0.004022363107651472, 0.04337001219391823, 0.057671744376420975, -0.018502868711948395, 0.03714875504374504, -0.05924493819475174, 0.10404512286186218, -0.03525377810001373, -0.016706213355064392, -0.037756580859422684, -0.0017609010683372617, -0.04165380448102951, 0.026476087048649788, 0.07079359143972397, 0.0012972120894119143, 0.056670624762773514, -0.039437033236026764, -0.03162471204996109, 0.0314459390938282, 0.0003234650066588074, -0.028335312381386757, -0.028728609904646873, -0.031249290332198143, 0.021291708573698997, 0.019843656569719315, -0.03162471204996109, -0.011217922903597355, 0.02057662047445774, -0.031374432146549225, 0.032232534140348434, 0.012183289974927902, -0.025546474382281303, -0.041939835995435715, 0.05238010361790657, 0.00031396778649650514, 0.022507354617118835, -0.08001820743083954, -0.026190051808953285, -0.0040826983749866486, -0.047946564853191376, 0.0696852058172226, 0.020487235859036446, -0.03296549990773201, -0.051450490951538086, -0.05016333609819412, 0.04251190647482872, 0.036558810621500015, 0.06753994524478912, -0.003604484023526311, -0.0014178829733282328, -0.03559344261884689, -0.03466382995247841, -0.002317328006029129, -0.031374432146549225, -0.03126716613769531, 0.004355325363576412, 0.008330760523676872, -0.008835790678858757, 0.06678910553455353, -0.01939672790467739, 0.04490744695067406, 0.0028447045478969812, 0.005045830737799406, -0.018824659287929535, 0.01839560642838478, 0.019611254334449768, -0.003264817874878645, 0.03477109223604202, 0.08581040799617767, 0.04140352085232735, -0.03246493637561798, -0.025367701426148415, 0.02023695409297943, 0.0018547562649473548, -0.031874991953372955, -0.0126302195712924, -0.014686093665659428, 0.027244804427027702, -0.035897355526685715, -0.0028402351308614016, 0.047624778002500534, 0.015705091878771782, -0.023830266669392586, -0.0027374413330107927, -0.004956445191055536, 0.027870506048202515, 0.02779899723827839, 0.04737449809908867, 0.013792235404253006, -0.01687604747712612, -0.016277162358164787, -0.0038435913156718016, -0.01205815002322197, 0.02676212228834629, 0.010565406642854214, 0.020004551857709885, 0.024044791236519814, 0.021720759570598602, -0.007776568178087473, 0.05109294876456261, 0.05373876914381981, 0.015186654403805733, -0.0865970030426979, -0.10619038343429565, 0.01448944490402937, 0.027387822046875954, -0.0077586909756064415, -0.021488357335329056, -0.004480465315282345, 0.029533082619309425, -0.029407942667603493, 0.0055553303100168705, 0.03427053242921829, -0.016867108643054962, 0.02561798319220543, -0.019790025427937508, 0.012040273286402225, -0.010279372334480286, -0.029550960287451744, -0.019682763144373894, -0.0144000593572855, 0.008420146070420742, 0.02025483176112175, -0.044085096567869186, 0.04000910371541977, 0.06889861077070236, -0.03836440294981003, 0.02461686171591282, -0.01072630099952221, -0.04565829038619995, -0.02595764957368374, 0.015195593237876892, -0.017662642523646355, 0.01773415133357048, -0.027316313236951828, -0.035557687282562256, -0.00887154508382082, -0.07104387134313583, -0.031874991953372955, 0.025510719045996666, 0.06603825837373734, -0.000907266279682517, -0.031821358948946, -0.019825780764222145, 0.02340121380984783, 0.034753214567899704, 0.08430872857570648, 0.0113073093816638, 0.021345339715480804, 0.0431554839015007, -0.05252312123775482, 0.043799061328172684, 0.016661521047353745, -0.03965156152844429, -0.013479385524988174, -0.06607401371002197, 0.02579675428569317, -0.026583349332213402, 0.012612342834472656, -0.008817913010716438, -0.003271521767601371, 0.05738571286201477, 0.0384359136223793, -0.02225707471370697, -0.0431554839015007, 0.05777901038527489, 0.06736116856336594, 0.039937593042850494, -0.01873527280986309, 0.041224751621484756, -0.012862622737884521, -0.02161349728703499, -0.0525946319103241, -0.002229059347882867, 0.014257041737437248, -0.037399034947156906, -0.026172174140810966, 0.06936341524124146, 0.012326307594776154, -0.024152055382728577, 0.02745933085680008, 0.03416327014565468, -0.01921795681118965, -0.046945445239543915, -0.030552081763744354, -0.01197770331054926, 0.0011988875921815634, 0.014560953713953495, -0.0018000074196606874, -0.012442509643733501, -0.0384359136223793, 0.0056894090957939625, -0.026690613478422165, -0.06196226552128792, -0.024152055382728577, -0.019825780764222145, -0.029836993664503098, 0.026243682950735092, -0.02091628685593605, -0.004051413387060165, 0.06492987275123596, -0.07197348028421402, -0.03591523319482803, 0.003564260434359312, -0.07916010171175003, 0.026583349332213402, -0.05724269524216652, -0.05473988875746727, -0.059530969709157944, 0.05595553666353226, -0.029032520949840546, 0.004569851327687502, -0.04279794171452522, 0.06374998390674591, -0.018359852954745293, 0.03430628776550293, -0.02057662047445774, 0.017367668449878693, 0.007700590416789055, -0.011700606904923916, -0.0489119328558445, -0.03158895671367645, -0.05223708599805832, -0.0444783940911293, 0.013041394762694836, 0.018029125407338142, 0.04619460552930832, -0.022060425952076912, -0.02593977190554142, 0.02277551218867302, -0.07018576562404633, 0.048590146005153656, -0.04033089056611061, 0.02962246909737587, -0.0035508526489138603, -0.0010798927396535873, -0.04698120057582855, 0.00896093063056469, 0.0012536364374682307, -0.037756580859422684, -0.044442642480134964, -0.033394552767276764, -0.025010159239172935, 0.012272676452994347, -0.016527442261576653, 0.03553980961441994, 0.03166046738624573, -0.004688287619501352, -0.032893989235162735, -0.02340121380984783, 0.01062797661870718, -0.02345484495162964, -0.01809169538319111, 0.001681571127846837, -0.01776096783578396, 0.010020152665674686, -0.02025483176112175, 0.08066178113222122, -0.037399034947156906, -0.006225723773241043, -0.004015658982098103, -0.05960248038172722, -0.026315191760659218, 0.03146381676197052, -0.019700638949871063, 0.03326940909028053, 0.08080480247735977, 0.010431327857077122, -0.04901919513940811, 0.022471601143479347, 0.019039183855056763, 0.003872641595080495, 0.005586615297943354, 0.01687604747712612, 0.05659911409020424, -0.01229949202388525, -0.012683850713074207, 0.02947945147752762, -0.052487365901470184, 0.044085096567869186, -0.032196782529354095, -0.07508410513401031, 0.02391965128481388, -0.0030368841253221035, 0.03410963714122772, 0.033412426710128784, -0.05123596638441086, -0.07744389772415161, -0.07565617561340332, -0.0037810211069881916, 0.01096764300018549, 0.08473777770996094, -0.036094002425670624, -0.011414572596549988, 0.03627277538180351, 0.04537225514650345, 0.06550194323062897, -0.06303489953279495, -0.03879345580935478, -0.02207830362021923, -0.04537225514650345, -0.056813642382621765, 0.031731974333524704, 0.012737482786178589, 0.022829145193099976, 0.004831304773688316, 0.03368058428168297, 0.010556467808783054, 0.032697342336177826, -0.005135216750204563, -0.002554200356826186, 0.009077132679522038, -0.00919780321419239, 0.012165413238108158, 0.020791146904230118, 0.045300744473934174, -0.018806781619787216, -0.024902895092964172, 0.06532317399978638, -0.001415648264810443, 0.0035016904585063457, 0.0031553201843053102, -0.002181014511734247, -0.05617006495594978, -0.011789992451667786, -0.031231412664055824, -0.029407942667603493, 0.0019262649584561586, 0.010824625380337238, 0.001675984589383006, -0.005510637070983648, 0.0030547610949724913, -0.04472867771983147, 0.027727488428354263, -0.007065950892865658, -0.04140352085232735, 0.002692748559638858, 0.021166566759347916, -0.008062602952122688, -0.031034763902425766, 0.0455152727663517, 0.01688498631119728, -0.012737482786178589, -0.009269312024116516, 0.04991305619478226, 0.04118899628520012, -0.06993548572063446, 0.048125337809324265, -0.015133023262023926, -0.03929401561617851, 0.01810063235461712, -0.004706164821982384, 0.008151988498866558, -0.013112903572618961, 0.020648129284381866, 0.028478330001235008, 0.031874991953372955, 0.025153176859021187, 0.05266613885760307, -0.04737449809908867, 0.08530984818935394, 0.014954251237213612, -0.020165445283055305, 0.05574101209640503, -0.05452536419034004, -0.05223708599805832, -0.01229055318981409, -0.04179682210087776, -0.005546391475945711, -0.01738554611802101, -0.022131934762001038, -0.03700573742389679, 0.04415660724043846, 0.080447256565094, 0.004158676136285067, 0.024330826476216316, -0.02661910466849804, 0.023669371381402016, -0.04801807552576065, 0.018154265359044075, 0.0025407925713807344, 0.006954218726605177, -0.014114025048911572, 0.07730087637901306, -0.023883897811174393, 0.028674978762865067, -0.05216557905077934, 0.01959337666630745, -0.011673791334033012, -0.013872683048248291, 0.015946434810757637, 0.03294762223958969, -0.0175643190741539, 0.005568738095462322, 0.009081602096557617, -0.047446005046367645, 0.06192651391029358, -0.018645886331796646, 0.01406039297580719, 0.017126327380537987, -0.10068421065807343, -0.018824659287929535, -0.0035553218331187963, 0.003725155023857951, 0.01624140702188015, -0.007468187250196934, -0.0034704054705798626, -0.021631374955177307, -0.004368733149021864, 0.007222376298159361, -0.019021308049559593, -0.00543912872672081, 0.03750630095601082, 0.06718239933252335, -0.032876111567020416, 0.0010899485787376761, 0.01071736216545105, -0.018717395141720772, 0.057171184569597244, -0.03754205256700516, -0.03126716613769531, -0.07018576562404633, -0.05338122695684433, -0.021506233140826225, -0.004337448161095381, -0.018842535093426704, -0.012004518881440163, -0.019289465621113777, -0.04572979733347893, 0.010610099881887436, -0.030516326427459717, 0.03482472524046898, -0.0214347243309021, -0.004777673166245222, 0.0340917594730854, -0.014766541309654713, 0.035414669662714005, -0.02157774195075035, -0.01288050040602684, -0.02930067852139473, -0.05638458952307701, -0.0079553397372365, 0.03800686076283455, 0.053309716284275055, -0.013756480999290943, -0.021363217383623123, 0.012683850713074207, 0.005792202427983284, 0.04630186781287193, -0.021685006096959114, 0.03530740737915039, -0.006636898964643478, -0.0017173255328088999, 0.004679348785430193, -0.04637337476015091, 0.031731974333524704, 0.047624778002500534, -0.048768915235996246, -0.012862622737884521, 0.024330826476216316, 0.0077586909756064415, 0.053452733904123306, 0.053488489240407944, -0.05960248038172722, -0.0019933043513447046, 0.001448050606995821, -0.08159139752388, 0.07179471105337143, -0.04572979733347893, 0.002730737440288067, -0.006972095929086208, 0.0452292375266552, 0.02996213547885418, 0.03879345580935478, -0.08194894343614578, 0.028371065855026245, 0.03191074728965759, -0.0833791121840477, -0.01893192157149315, 0.06904162466526031, -0.034234777092933655, -0.0689343586564064, -0.06346394866704941, 0.011736361309885979, -0.09682274609804153, 0.011852562427520752, -0.01754644140601158, -0.029676100239157677, -0.03986608609557152, -0.024527475237846375, 0.00010782167373690754, 0.02708391100168228, 0.05109294876456261, 0.03630853071808815, 0.02797776833176613, -0.025331947952508926, 0.026744244620203972, -0.01020786352455616, 0.014364304952323437, -0.0605320930480957, -0.0020703996997326612, -0.026368822902441025, -0.002898335922509432, 0.005465944297611713, 0.01859225519001484, 0.004598901607096195, -0.030248168855905533, 0.0008709533140063286, 0.00282235792838037, 0.004236889071762562, 0.015579952858388424 ]
23,384
uvicorn.server
handle_exit
null
def handle_exit(self, sig: int, frame: FrameType | None) -> None: self._captured_signals.append(sig) if self.should_exit and sig == signal.SIGINT: self.force_exit = True else: self.should_exit = True
(self, sig: int, frame: frame | None) -> NoneType
[ -0.028502508997917175, 0.001785874366760254, -0.019781991839408875, 0.034256622195243835, -0.018093286082148552, -0.04145819693803787, 0.016887066885828972, 0.07026449590921402, 0.03645462170243263, -0.039849903434515, -0.030450331047177315, -0.01770014874637127, -0.013259475119411945, -0.058720532804727554, -0.05228736251592636, -0.005057184956967831, 0.004150287248194218, 0.021944252774119377, 0.012267694808542728, -0.0026737856678664684, -0.005133132450282574, -0.006866513751447201, -0.01560936775058508, -0.03716941550374031, -0.024517519399523735, 0.003786187618970871, 0.0019690408371388912, 0.01770014874637127, 0.02298070676624775, 0.028413159772753716, -0.03659757971763611, -0.020836317911744118, 0.023516803979873657, -0.026250900700688362, -0.004029665142297745, -0.06461760401725769, -0.011329524219036102, 0.01000715047121048, 0.021461764350533485, 0.0637241080403328, -0.004532256629317999, -0.0016127595445141196, 0.007737671956419945, -0.007340066600590944, 0.00263134459964931, 0.06229451298713684, -0.03513224795460701, 0.04614011198282242, 0.04081488028168678, -0.0541100949048996, -0.03867049142718315, -0.02047891914844513, 0.02308792620897293, 0.003484632819890976, 0.04077913984656334, 0.01937098428606987, 0.056218743324279785, -0.004722124431282282, -0.027930673211812973, -0.015341319143772125, -0.021479634568095207, 0.04456755891442299, -0.06586849689483643, -0.030057191848754883, 0.06854898482561111, 0.007880630902945995, 0.0546819306910038, -0.018370268866419792, -0.005651359912008047, -0.015788067132234573, -0.05218014493584633, -0.05403861403465271, -0.017566123977303505, 0.06208007410168648, 0.02346319518983364, -0.05350251495838165, 0.0017456670757383108, 0.0018897431436926126, 0.00027572715771384537, 0.017646538093686104, 0.00940850842744112, -0.01954968459904194, 0.02197999134659767, 0.07891353219747543, 0.009122590534389019, 0.042959269136190414, 0.07476770877838135, -0.029914231970906258, -0.02399929240345955, 0.049177996814250946, -0.031182996928691864, 0.0024593465495854616, -0.001200634753331542, 0.023874202743172646, 0.019353114068508148, 0.017941391095519066, -0.005249286536127329, -0.00006512745312647894, 0.01946033351123333, -0.039063628762960434, 0.020050041377544403, -0.011954971589148045, 0.008747321553528309, -0.009417443536221981, 0.02290922775864601, 0.011606507934629917, 0.05957828834652901, -0.023195145651698112, -0.03709793835878372, -0.036740537732839584, 0.030897077172994614, -0.009667622856795788, 0.032112233340740204, -0.027734102681279182, -0.0378127321600914, -0.027591144666075706, -0.0008281587506644428, 0.025786282494664192, -0.02003217115998268, 0.011660117655992508, -0.026090072467923164, 0.00005594818139798008, -0.014626523479819298, 0.004201663192361593, 0.006602932699024677, 0.061937116086483, 0.01056111790239811, 0.04163689538836479, -0.03048606961965561, 0.1478199064731598, -0.04756970703601837, 0.008528415113687515, -0.010436028242111206, -0.0561472624540329, -0.02483917772769928, -0.011454613879323006, 0.04642603173851967, -0.0012095696292817593, 0.028288070112466812, -0.02909221686422825, -0.01879914663732052, -0.015993570908904076, 0.008130810223519802, -0.044996440410614014, 0.018334530293941498, 0.04617585241794586, 0.014144035056233406, 0.005137599539011717, -0.026483209803700447, -0.03540029749274254, 0.017289139330387115, 0.042030032724142075, -0.05421731248497963, 0.06672625243663788, -0.021479634568095207, 0.010337743908166885, -0.04031452164053917, 0.0450679175555706, -0.010945321060717106, 0.04746248573064804, -0.012482133693993092, -0.038884930312633514, 0.006124912295490503, -0.0506075918674469, -0.02594711259007454, 0.04135097563266754, 0.012598288245499134, 0.09042175859212875, 0.016199074685573578, 0.033506084233522415, -0.07512511312961578, 0.005669229663908482, -0.016940677538514137, 0.00027768168365582824, 0.0034265555441379547, 0.1122945249080658, 0.03320229798555374, -0.00875625666230917, -0.008832204155623913, -0.0009247679263353348, 0.061043620109558105, -0.12323091179132462, -0.012205149978399277, 0.009211939759552479, 0.0025486962404102087, -0.04478199779987335, -0.0450679175555706, -0.007710867095738649, 0.007438350934535265, 0.0015513317193835974, 0.020621879026293755, -0.00555754266679287, -0.0004626631853170693, -0.045925673097372055, 0.027841322124004364, 0.0318620540201664, 0.000354606076143682, 0.03484632819890976, 0.03307720646262169, -0.091922827064991, 0.022176560014486313, -0.03529307618737221, -0.0039157443679869175, -0.0704074501991272, 0.021622594445943832, 0.03834883123636246, 0.04260186851024628, 0.004882953595370054, -0.041386716067790985, -0.031111516058444977, 0.0392780676484108, -0.05636170133948326, -0.03021802194416523, -0.008296106941998005, 0.005709436722099781, -0.00295523670502007, -0.012303434312343597, -0.020443178713321686, -0.03706219792366028, -0.0005176690174266696, 0.007491960655897856, -0.012732312083244324, -0.040922097861766815, 0.01649392955005169, -0.009810581803321838, 0.03141530603170395, 0.013840246945619583, 0.021443894132971764, 0.030664769932627678, -0.01797713153064251, -0.04832024127244949, 0.026197291910648346, -0.03970694541931152, -0.04735526815056801, 0.0016317463014274836, 0.048999298363924026, 0.07133668661117554, 0.015037531033158302, 0.02909221686422825, 0.0418870747089386, 0.017628667876124382, -0.0433524064719677, 0.019781991839408875, -0.04678342863917351, -0.0038219273556023836, 0.0713009461760521, 0.05135812610387802, 0.008649037219583988, 0.013965336605906487, 0.026804868131875992, 0.03636527061462402, -0.007943175733089447, 0.004058703780174255, -0.011088280007243156, -0.0019355348777025938, -0.04170837625861168, 0.01697641611099243, -0.006218729540705681, 0.03945676609873772, 0.007451753132045269, 0.02215869165956974, 0.06536813825368881, 0.011740531772375107, -0.0012073359685018659, -0.038134392350912094, 0.00620979443192482, 0.05507506802678108, -0.02855611965060234, 0.04413868114352226, 0.03157613426446915, 0.0677984431385994, -0.08506078273057938, -0.08334527164697647, -0.02344532497227192, -0.0006059017032384872, 0.04631881043314934, -0.017718017101287842, 0.02532166615128517, -0.09278058260679245, -0.018674058839678764, 0.08305934816598892, 0.04513939842581749, 0.08634741604328156, 0.0003758265811484307, -0.0648677796125412, 0.05310937762260437, 0.05282346159219742, 0.05146534740924835, -0.04846320301294327, -0.04013582319021225, -0.01899571716785431, 0.04849893972277641, 0.024124382063746452, 0.029538964852690697, 0.017351685091853142, -0.004509918857365847, -0.062151554971933365, -0.039635464549064636, 0.012080060318112373, 0.03881344944238663, -0.013384563848376274, -0.005798786412924528, -0.021336674690246582, 0.00711669260635972, -0.03420301154255867, 0.023659763857722282, 0.06890638172626495, -0.01908506639301777, 0.037383854389190674, 0.0072105093859136105, 0.0196390338242054, 0.07455327361822128, -0.008582024835050106, -0.03302359580993652, -0.04013582319021225, 0.025160836055874825, -0.0015066569903865457, -0.01788778230547905, -0.015913156792521477, 0.014769482426345348, -0.018584707751870155, -0.013509653508663177, -0.012223020195960999, 0.01807541586458683, 0.062151554971933365, 0.022319519892334938, -0.028234461322426796, 0.00014030672900844365, -0.027948541566729546, -0.06979987770318985, 0.02030022069811821, -0.009100252762436867, 0.0007594712660647929, -0.0199249517172575, 0.04378128424286842, -0.025804152712225914, -0.018602577969431877, -0.02827020175755024, -0.02503574639558792, -0.020443178713321686, -0.052966419607400894, 0.019710512831807137, 0.02428521029651165, -0.036740537732839584, 0.0630807876586914, -0.03393496200442314, 0.005124197341501713, -0.014081491157412529, 0.02650108002126217, 0.06529665738344193, -0.02521444670855999, 0.017834171652793884, 0.011499288491904736, 0.0022638945374637842, -0.009810581803321838, -0.06865619868040085, -0.011329524219036102, 0.003518139012157917, 0.008479272946715355, -0.03336312621831894, 0.04217299073934555, -0.005195676814764738, 0.0035605800803750753, 0.007268586661666632, -0.020639749243855476, -0.010409223847091198, -0.06072195991873741, 0.03681201860308647, -0.048427462577819824, 0.028895648196339607, -0.009256614372134209, -0.009479988366365433, -0.016199074685573578, -0.0171551164239645, 0.042673349380493164, 0.010239459574222565, 0.06733383238315582, 0.0062053268775343895, -0.02030022069811821, -0.00161722709890455, 0.016261620447039604, 0.0032188179902732372, -0.037026457488536835, -0.039349544793367386, -0.019621163606643677, -0.044353120028972626, 0.012214085087180138, 0.011392069049179554, -0.001418424304574728, -0.05071480944752693, -0.006115977186709642, -0.0029060945380479097, 0.042137254029512405, -0.021157976239919662, 0.005794318858534098, -0.06043604388833046, -0.027233745902776718, 0.02065761759877205, 0.03506076708436012, 0.08148679882287979, -0.07841317355632782, 0.06647606939077377, -0.0517512671649456, -0.043602585792541504, 0.06118657812476158, 0.00034287894959561527, -0.017289139330387115, -0.09799859672784805, 0.04567549377679825, -0.056576140224933624, -0.007710867095738649, -0.0024504116736352444, 0.007916371338069439, -0.011338459327816963, 0.02058613859117031, -0.004210597835481167, 0.12130096554756165, 0.000460429466329515, -0.015117945149540901, 0.021443894132971764, -0.0018338997615501285, 0.05972124636173248, 0.019889211282134056, 0.017369555309414864, -0.0019154312321916223, -0.002597838407382369, -0.006080237682908773, 0.01561830285936594, -0.04567549377679825, -0.018021807074546814, -0.04821302369236946, 0.01547534391283989, -0.03581130504608154, 0.028413159772753716, -0.013036101125180721, 0.0023007511626929045, 0.014563978649675846, -0.037669774144887924, -0.02021087147295475, 0.051036469638347626, -0.02939600497484207, 0.0034801652655005455, -0.051858484745025635, 0.008934956043958664, 0.041386716067790985, -0.01191029604524374, 0.07205148786306381, -0.034792717546224594, 0.011097215116024017, 0.004784668795764446, -0.0706576332449913, -0.04017156362533569, -0.02539314515888691, -0.022730527445673943, 0.015645107254385948, -0.0196390338242054, -0.023248756304383278, -0.01983560249209404, -0.046390291303396225, -0.04921373724937439, -0.01506433542817831, 0.034524671733379364, -0.02902073785662651, -0.01307184062898159, 0.0033595433924347162, 0.018316660076379776, 0.017646538093686104, -0.029789144173264503, -0.04077913984656334, 0.04385276511311531, -0.04127949848771095, 0.03095068782567978, 0.014010011218488216, 0.008470338769257069, -0.03402431309223175, -0.055468205362558365, 0.0018528865184634924, -0.016440318897366524, -0.0860615000128746, 0.023230886086821556, 0.001951170968823135, 0.04735526815056801, -0.0008940540137700737, 0.018763408064842224, -0.015305579639971256, -0.009908866137266159, 0.042387429624795914, -0.06065048277378082, 0.01173159759491682, 0.026393860578536987, -0.004279843997210264, -0.046211592853069305, -0.005271623842418194, 0.018316660076379776, 0.07026449590921402, -0.03611509129405022, -0.02751966379582882, 0.001315672299824655, 0.05332381650805473, -0.0537884347140789, -0.00991780124604702, -0.022784138098359108, -0.05503932759165764, 0.014045750722289085, -0.013339889235794544, -0.05078629031777382, -0.024821307510137558, -0.0042172991670668125, 0.007442818488925695, -0.015073270536959171, -0.018406009301543236, 0.02659042924642563, 0.04646177217364311, -0.011016800999641418, 0.052966419607400894, -0.0018897431436926126, 0.020818447694182396, -0.05357399582862854, 0.03615083172917366, 0.04374554380774498, 0.0014195411931723356, -0.0837741494178772, 0.08055756241083145, 0.0037839538417756557, 0.048141542822122574, 0.02408864162862301, 0.02103288657963276, 0.0018082116730511189, 0.04932095855474472, -0.0016228114254772663, -0.016359904780983925, 0.0389564074575901, -0.034238751977682114, 0.00866690743714571, -0.023230886086821556, 0.014796286821365356, 0.03386348485946655, -0.0471050888299942, -0.05979272723197937, -0.06490352004766464, -0.05543246865272522, 0.030897077172994614, -0.02169407345354557, -0.003522606333717704, 0.019603293389081955, 0.0020360532216727734, -0.029503224417567253, 0.041565414518117905, 0.00875625666230917, -0.02299857698380947, -0.042315952479839325, 0.019978562369942665, 0.11143676936626434, -0.012902076356112957, -0.010123305022716522, 0.04181559383869171, 0.06182989478111267, 0.0924946665763855, 0.040922097861766815, 0.02131880447268486, -0.025428885594010353, 0.014563978649675846, 0.04846320301294327, -0.07376699894666672, -0.010132240131497383, -0.0023230884689837694, -0.03641888126730919, -0.004489815328270197, 0.021283065900206566, -0.005740709137171507, -0.02426734007894993, -0.03699071705341339, -0.0072105093859136105, -0.03171909227967262, -0.006294676568359137, 0.013393498957157135, 0.051679786294698715, 0.06736956536769867, -0.07426735758781433, 0.008988565765321255, 0.010945321060717106, -0.010954256169497967, -0.01872766762971878, -0.017959261313080788, -0.04353110492229462, 0.02233739010989666, 0.03727663680911064, 0.013599002733826637, -0.026000721380114555, 0.05243032053112984, -0.02557184360921383, 0.06061474233865738, -0.02503574639558792, -0.07047893106937408, -0.004713189322501421, 0.034238751977682114, -0.023213015869259834, 0.01051644328981638, 0.022784138098359108, -0.023963551968336105, 0.02919943630695343, -0.004181559197604656, 0.017360620200634003, -0.03640101104974747, 0.01650286465883255, -0.009113655425608158, -0.011302719824016094, -0.0063170138746500015, 0.014099360443651676, -0.032969988882541656, -0.05146534740924835, 0.022033601999282837, 0.06240173429250717, 0.02040744014084339, -0.028198720887303352, 0.01482309214770794, -0.009149394929409027, -0.01182094682008028, -0.0012028684141114354, 0.018942106515169144, -0.005776449106633663, -0.020050041377544403, -0.000460429466329515, -0.03550751507282257, 0.01173159759491682, 0.03057541884481907, -0.021336674690246582, 0.07498215138912201, -0.05300216004252434, 0.015037531033158302, 0.012598288245499134, -0.01595783233642578, -0.015868481248617172, -0.014599718153476715, 0.06476055830717087, 0.04631881043314934, -0.04263760894536972, 0.04113653674721718, -0.02621516026556492, 0.0159310270100832, 0.04353110492229462, -0.023570414632558823, -0.02242673933506012, 0.020782707259058952, -0.0013290747301653028, 0.02494639717042446, -0.014662262983620167, 0.0008862359682098031, 0.014617588371038437, -0.08827736228704453, 0.04924947768449783, 0.038884930312633514, -0.07541102916002274, -0.003692370606586337, 0.020550398156046867, -0.04006434231996536, 0.016154401004314423, 0.041100796312093735, -0.018370268866419792, 0.0357755646109581, 0.009801646694540977, 0.01928163506090641, 0.03566834330558777, -0.014590783044695854, 0.028127241879701614, 0.009578272700309753, -0.01310758013278246, -0.045568276196718216, -0.01116869505494833, -0.03095068782567978, 0.003980522975325584, -0.04256613180041313, -0.05053611099720001, 0.041493937373161316, -0.017494643107056618, -0.014706937596201897, 0.0012374913785606623, -0.0006366156158037484, 0.006692281924188137, -0.03550751507282257, 0.016994286328554153, -0.016252685338258743, 0.017119375988841057, -0.012080060318112373, 0.04263760894536972, 0.0031495720613747835, 0.013348824344575405, -0.010963191278278828, -0.004317817278206348, -0.009417443536221981, 0.006325948983430862, -0.0056915669701993465, -0.012169410474598408, -0.0032433890737593174, -0.08270195126533508, 0.024213731288909912, -0.0433524064719677, -0.03677627816796303, -0.018656188622117043, -0.03336312621831894, 0.044639039784669876, 0.03002145141363144, 0.04728378728032112, 0.010882776230573654, 0.00856862310320139, -0.0023275560233742, -0.00018609837570693344, -0.03636527061462402, 0.04974983632564545, 0.037383854389190674, -0.03988564386963844, -0.02151537500321865, -0.056397441774606705, 0.038777709007263184, -0.01713724620640278, 0.027769843116402626, -0.06172267720103264, -0.011401004157960415, 0.03145104646682739, -0.022176560014486313, -0.07605434209108353, -0.018039675429463387, -0.06090066209435463, 0.0038554335478693247, -0.0189063660800457, -0.07726950198411942, 0.03759829327464104, -0.005289494059979916, 0.02567906305193901, 0.039528246968984604, -0.050107233226299286, -0.025357404723763466, 0.014081491157412529, 0.04413868114352226, -0.0093102240934968, -0.02576841227710247, 0.026036461815238, 0.019978562369942665, 0.049535397440195084, 0.014295930042862892, 0.03506076708436012, -0.0959971696138382, 0.04803432524204254, -0.024821307510137558, 0.10686207562685013, 0.012142605148255825, -0.07012153416872025, 0.06493926048278809, -0.02260543964803219, 0.015332384966313839, -0.01173159759491682, 0.041744112968444824, 0.013438173569738865, -0.037955693900585175, -0.009810581803321838, 0.0348820686340332, -0.0506075918674469, 0.008309508673846722, 0.006138314958661795, 0.052037183195352554, 0.014796286821365356, 0.0016574343899264932, -0.041100796312093735, -0.021658333018422127, 0.09278058260679245, 0.009810581803321838, 0.010033955797553062, 0.035543255507946014 ]
23,397
uvicorn.main
run
null
def run( app: ASGIApplication | Callable[..., Any] | str, *, host: str = "127.0.0.1", port: int = 8000, uds: str | None = None, fd: int | None = None, loop: LoopSetupType = "auto", http: type[asyncio.Protocol] | HTTPProtocolType = "auto", ws: type[asyncio.Protocol] | WSProtocolType = "auto", ws_max_size: int = 16777216, ws_max_queue: int = 32, ws_ping_interval: float | None = 20.0, ws_ping_timeout: float | None = 20.0, ws_per_message_deflate: bool = True, lifespan: LifespanType = "auto", interface: InterfaceType = "auto", reload: bool = False, reload_dirs: list[str] | str | None = None, reload_includes: list[str] | str | None = None, reload_excludes: list[str] | str | None = None, reload_delay: float = 0.25, workers: int | None = None, env_file: str | os.PathLike[str] | None = None, log_config: dict[str, Any] | str | None = LOGGING_CONFIG, log_level: str | int | None = None, access_log: bool = True, proxy_headers: bool = True, server_header: bool = True, date_header: bool = True, forwarded_allow_ips: list[str] | str | None = None, root_path: str = "", limit_concurrency: int | None = None, backlog: int = 2048, limit_max_requests: int | None = None, timeout_keep_alive: int = 5, timeout_graceful_shutdown: int | None = None, ssl_keyfile: str | None = None, ssl_certfile: str | os.PathLike[str] | None = None, ssl_keyfile_password: str | None = None, ssl_version: int = SSL_PROTOCOL_VERSION, ssl_cert_reqs: int = ssl.CERT_NONE, ssl_ca_certs: str | None = None, ssl_ciphers: str = "TLSv1", headers: list[tuple[str, str]] | None = None, use_colors: bool | None = None, app_dir: str | None = None, factory: bool = False, h11_max_incomplete_event_size: int | None = None, ) -> None: if app_dir is not None: sys.path.insert(0, app_dir) config = Config( app, host=host, port=port, uds=uds, fd=fd, loop=loop, http=http, ws=ws, ws_max_size=ws_max_size, ws_max_queue=ws_max_queue, ws_ping_interval=ws_ping_interval, ws_ping_timeout=ws_ping_timeout, ws_per_message_deflate=ws_per_message_deflate, lifespan=lifespan, interface=interface, reload=reload, reload_dirs=reload_dirs, reload_includes=reload_includes, reload_excludes=reload_excludes, reload_delay=reload_delay, workers=workers, env_file=env_file, log_config=log_config, log_level=log_level, access_log=access_log, proxy_headers=proxy_headers, server_header=server_header, date_header=date_header, forwarded_allow_ips=forwarded_allow_ips, root_path=root_path, limit_concurrency=limit_concurrency, backlog=backlog, limit_max_requests=limit_max_requests, timeout_keep_alive=timeout_keep_alive, timeout_graceful_shutdown=timeout_graceful_shutdown, ssl_keyfile=ssl_keyfile, ssl_certfile=ssl_certfile, ssl_keyfile_password=ssl_keyfile_password, ssl_version=ssl_version, ssl_cert_reqs=ssl_cert_reqs, ssl_ca_certs=ssl_ca_certs, ssl_ciphers=ssl_ciphers, headers=headers, use_colors=use_colors, factory=factory, h11_max_incomplete_event_size=h11_max_incomplete_event_size, ) server = Server(config=config) if (config.reload or config.workers > 1) and not isinstance(app, str): logger = logging.getLogger("uvicorn.error") logger.warning("You must pass the application as an import string to enable 'reload' or " "'workers'.") sys.exit(1) if config.should_reload: sock = config.bind_socket() ChangeReload(config, target=server.run, sockets=[sock]).run() elif config.workers > 1: sock = config.bind_socket() Multiprocess(config, target=server.run, sockets=[sock]).run() else: server.run() if config.uds and os.path.exists(config.uds): os.remove(config.uds) # pragma: py-win32 if not server.started and not config.should_reload and config.workers == 1: sys.exit(STARTUP_FAILURE)
(app: Union[Type[uvicorn._types.ASGI2Protocol], Callable[[Union[uvicorn._types.HTTPScope, uvicorn._types.WebSocketScope, uvicorn._types.LifespanScope], Callable[[], Awaitable[Union[uvicorn._types.HTTPRequestEvent, uvicorn._types.HTTPDisconnectEvent, uvicorn._types.WebSocketConnectEvent, uvicorn._types._WebSocketReceiveEventBytes, uvicorn._types._WebSocketReceiveEventText, uvicorn._types.WebSocketDisconnectEvent, uvicorn._types.LifespanStartupEvent, uvicorn._types.LifespanShutdownEvent]]], Callable[[Union[uvicorn._types.HTTPResponseStartEvent, uvicorn._types.HTTPResponseBodyEvent, uvicorn._types.HTTPResponseTrailersEvent, uvicorn._types.HTTPServerPushEvent, uvicorn._types.HTTPDisconnectEvent, uvicorn._types.WebSocketAcceptEvent, uvicorn._types._WebSocketSendEventBytes, uvicorn._types._WebSocketSendEventText, uvicorn._types.WebSocketResponseStartEvent, uvicorn._types.WebSocketResponseBodyEvent, uvicorn._types.WebSocketCloseEvent, uvicorn._types.LifespanStartupCompleteEvent, uvicorn._types.LifespanStartupFailedEvent, uvicorn._types.LifespanShutdownCompleteEvent, uvicorn._types.LifespanShutdownFailedEvent]], Awaitable[NoneType]]], Awaitable[NoneType]], Callable[..., Any], str], *, host: str = '127.0.0.1', port: int = 8000, uds: Optional[str] = None, fd: Optional[int] = None, loop: Literal['none', 'auto', 'asyncio', 'uvloop'] = 'auto', http: Union[type[asyncio.protocols.Protocol], Literal['auto', 'h11', 'httptools']] = 'auto', ws: Union[type[asyncio.protocols.Protocol], Literal['auto', 'none', 'websockets', 'wsproto']] = 'auto', ws_max_size: int = 16777216, ws_max_queue: int = 32, ws_ping_interval: float | None = 20.0, ws_ping_timeout: float | None = 20.0, ws_per_message_deflate: bool = True, lifespan: Literal['auto', 'on', 'off'] = 'auto', interface: Literal['auto', 'asgi3', 'asgi2', 'wsgi'] = 'auto', reload: bool = False, reload_dirs: Union[list[str], str, NoneType] = None, reload_includes: Union[list[str], str, NoneType] = None, reload_excludes: Union[list[str], str, NoneType] = None, reload_delay: float = 0.25, workers: Optional[int] = None, env_file: Union[str, os.PathLike[str], NoneType] = None, log_config: dict[str, typing.Any] | str | None = {'version': 1, 'disable_existing_loggers': False, 'formatters': {'default': {'()': 'uvicorn.logging.DefaultFormatter', 'fmt': '%(levelprefix)s %(message)s', 'use_colors': None}, 'access': {'()': 'uvicorn.logging.AccessFormatter', 'fmt': '%(levelprefix)s %(client_addr)s - "%(request_line)s" %(status_code)s'}}, 'handlers': {'default': {'formatter': 'default', 'class': 'logging.StreamHandler', 'stream': 'ext://sys.stderr'}, 'access': {'formatter': 'access', 'class': 'logging.StreamHandler', 'stream': 'ext://sys.stdout'}}, 'loggers': {'uvicorn': {'handlers': ['default'], 'level': 'INFO', 'propagate': False}, 'uvicorn.error': {'level': 'INFO'}, 'uvicorn.access': {'handlers': ['access'], 'level': 'INFO', 'propagate': False}}}, log_level: Union[str, int, NoneType] = None, access_log: bool = True, proxy_headers: bool = True, server_header: bool = True, date_header: bool = True, forwarded_allow_ips: Union[list[str], str, NoneType] = None, root_path: str = '', limit_concurrency: Optional[int] = None, backlog: int = 2048, limit_max_requests: Optional[int] = None, timeout_keep_alive: int = 5, timeout_graceful_shutdown: Optional[int] = None, ssl_keyfile: Optional[str] = None, ssl_certfile: Union[str, os.PathLike[str], NoneType] = None, ssl_keyfile_password: Optional[str] = None, ssl_version: int = <_SSLMethod.PROTOCOL_TLS_SERVER: 17>, ssl_cert_reqs: int = <VerifyMode.CERT_NONE: 0>, ssl_ca_certs: Optional[str] = None, ssl_ciphers: str = 'TLSv1', headers: Optional[list[tuple[str, str]]] = None, use_colors: Optional[bool] = None, app_dir: Optional[str] = None, factory: bool = False, h11_max_incomplete_event_size: Optional[int] = None) -> NoneType
[ 0.02964835986495018, -0.04080049321055412, -0.08525360375642776, -0.006027787458151579, -0.023120280355215073, 0.03423355892300606, -0.03914904594421387, -0.0094666862860322, -0.09201482683420181, -0.07487861812114716, 0.0257820263504982, -0.0037910458631813526, 0.021973980590701103, 0.01734992489218712, 0.04643484950065613, 0.02681175246834755, 0.009058681316673756, 0.0015166612574830651, -0.0006733295740559697, -0.050009749829769135, -0.03431127220392227, 0.015212755650281906, 0.029959220439195633, 0.03100837580859661, -0.0201865304261446, -0.0017716643633320928, -0.02758890576660633, 0.0004678092373069376, 0.01769964210689068, -0.03197981417179108, 0.00838353019207716, -0.019525950774550438, -0.0057314978912472725, 0.0231397096067667, 0.03046436980366707, -0.00980668980628252, -0.008660390973091125, -0.014979610219597816, -0.06162817403674126, -0.008684677071869373, 0.0019708096515387297, -0.06761224567890167, 0.022304270416498184, 0.022692846134305, 0.016903061419725418, 0.021876836195588112, 0.01598990708589554, 0.02381971664726734, -0.010520698502659798, -0.000006801979907322675, -0.03969305381178856, -0.013668165542185307, -0.011919572949409485, 0.045346833765506744, -0.0005795249016955495, 0.09333598613739014, -0.02142997458577156, 0.05871385335922241, 0.008543817326426506, -0.05793670192360878, -0.03889647126197815, 0.006285218987613916, 0.030250651761889458, 0.02978436090052128, 0.0025281733833253384, -0.011249278672039509, -0.033475834876298904, 0.0231397096067667, -0.015105897560715675, -0.061861321330070496, 0.04495825991034508, 0.02418886497616768, 0.013483592309057713, -0.01732078194618225, 0.025043731555342674, -0.009908691048622131, -0.02566545456647873, 0.01564018987119198, -0.08097926527261734, 0.014863037504255772, 0.05999615415930748, 0.03238781914114952, -0.033126115798950195, 0.03343697637319565, 0.09504572302103043, 0.006513507571071386, 0.029337497428059578, -0.004594912752509117, -0.11758314073085785, -0.040450774133205414, 0.019933955743908882, 0.023994576185941696, 0.010870417580008507, 0.03576843440532684, 0.014979610219597816, -0.05766469985246658, -0.011424138210713863, -0.014192743226885796, -0.008956680074334145, -0.06811739504337311, -0.022692846134305, 0.005143776535987854, -0.025140875950455666, -0.017757929861545563, 0.017583070322871208, -0.037458740174770355, -0.00861667562276125, -0.00792695302516222, 0.004563340917229652, -0.03969305381178856, -0.03225181996822357, 0.01791336014866829, 0.005415780004113913, -0.022964850068092346, -0.05090347304940224, 0.053662363439798355, -0.029492927715182304, 0.012191575951874256, 0.0025063161738216877, -0.00256460253149271, -0.037594739347696304, 0.036098722368478775, 0.002841463079676032, -0.058908142149448395, 0.03776960074901581, 0.06100645288825035, -0.014969895593822002, 0.009384113363921642, 0.03798331692814827, -0.05956872180104256, 0.022440271452069283, 0.026617465540766716, 0.017388781532645226, 0.013299018144607544, 0.012677296064794064, 0.017728786915540695, -0.01815621927380562, 0.032329533249139786, -0.014396745711565018, 0.01859336718916893, -0.012502437457442284, 0.03843018040060997, -0.005478923674672842, 0.007353803142905235, 0.04048963263630867, 0.0057314978912472725, -0.040878210216760635, -0.023217424750328064, -0.026054030284285545, 0.04437539353966713, 0.03891589865088463, -0.005576067604124546, -0.03054208494722843, 0.026967184618115425, -0.057314980775117874, 0.02508259005844593, -0.012871584855020046, 0.011035562492907047, -0.0038857613690197468, -0.02453858219087124, -0.07052657008171082, -0.03452498838305473, 0.016349341720342636, -0.06345448642969131, -0.045813124626874924, -0.027899766340851784, -0.013328161090612411, 0.04662913456559181, 0.041694220155477524, 0.10639214515686035, -0.00151787546928972, 0.03238781914114952, -0.029143210500478745, -0.00033848625025711954, 0.029687216505408287, 0.054128654301166534, 0.000737687514629215, -0.005712069105356932, -0.022304270416498184, -0.015785904601216316, -0.034058697521686554, -0.0020728108938783407, -0.02545173652470112, -0.04946574196219444, 0.00612978870049119, 0.07845351845026016, -0.02541287988424301, 0.03681758791208267, 0.05339036136865616, -0.0006071501993574202, -0.03411698341369629, -0.005197205580770969, 0.05533324182033539, -0.003740045242011547, 0.02440258115530014, 0.0014705178327858448, -0.0113464230671525, 0.011103563010692596, 0.018544796854257584, -0.04713428393006325, -0.0003114680584985763, 0.05739269405603409, 0.034058697521686554, -0.04530797898769379, -0.039751339703798294, -0.018952801823616028, -0.024888301268219948, -0.005478923674672842, 0.030794657766819, 0.006003501359373331, 0.012677296064794064, -0.019351091235876083, 0.009651259519159794, 0.04631827399134636, 0.05848070979118347, 0.009024680592119694, -0.0007990096928551793, 0.021915694698691368, 0.015144755132496357, 0.01700020581483841, 0.028657490387558937, 0.027550047263503075, -0.027336331084370613, -0.022071124985814095, -0.016621343791484833, -0.007373231928795576, 0.0010412626434117556, 0.013784738257527351, 0.02372257225215435, 0.03526328504085541, 0.04639599099755287, -0.00993297714740038, 0.07184772938489914, 0.029123781248927116, 0.023547714576125145, 0.04219936951994896, -0.014911608770489693, 0.05766469985246658, 0.03532157093286514, -0.027433475479483604, 0.01778707280755043, 0.0028657489456236362, 0.019302519038319588, -0.052069202065467834, 0.03468041867017746, -0.008660390973091125, 0.01823393441736698, 0.03784731402993202, -0.0421605110168457, 0.03260153904557228, -0.030153507366776466, -0.018991658464074135, -0.025956885889172554, -0.027433475479483604, -0.04573541134595871, -0.02407229132950306, 0.013017300516366959, -0.022537415847182274, 0.007042942568659782, 0.02257627435028553, 0.01367788016796112, 0.024888301268219948, -0.04981546103954315, 0.07184772938489914, -0.028307771310210228, -0.007684092968702316, -0.005522638093680143, -0.042393654584884644, -0.04690114036202431, -0.014017883688211441, 0.061589315533638, 0.014212172478437424, 0.010996704921126366, 0.00952982995659113, -0.04398681968450546, -0.01088984590023756, -0.013959597796201706, -0.0197396669536829, 0.0005418815417215228, 0.008801249787211418, 0.007484947796911001, -0.01972023956477642, 0.03501071035861969, -0.014853322878479958, -0.03868275508284569, -0.01744706928730011, -0.02393629029393196, 0.04802801087498665, 0.00404847739264369, -0.02920149639248848, 0.014523033052682877, -0.03203810378909111, -0.004296194761991501, -0.03539928421378136, -0.019933955743908882, 0.0362541526556015, -0.018282506614923477, 0.03932390362024307, 0.021468831226229668, -0.06761224567890167, 0.0189333725720644, 0.012123575434088707, 0.008577818050980568, 0.0094666862860322, 0.006416363641619682, 0.0010157623328268528, -0.008296100422739983, -0.038022175431251526, -0.0113464230671525, -0.0038299034349620342, -0.022770561277866364, -0.05762584134936333, 0.030755801126360893, -0.0048693446442484856, -0.007295516785234213, 0.05475037917494774, 0.004296194761991501, 0.01088013220578432, 0.03844960778951645, 0.005391493905335665, -0.030658656731247902, 0.039867911487817764, 0.023528285324573517, -0.019797954708337784, 0.013396162539720535, 0.024324866011738777, 0.08867307752370834, 0.009821262210607529, 0.0017898788210004568, 0.004536626394838095, -0.02712261490523815, -0.006377505604177713, 0.0014061598340049386, -0.027511190623044968, -0.020011670887470245, -0.03339811787009239, -0.002958035795018077, 0.026423176750540733, 0.0011147278128191829, -0.0606955923140049, 0.0200505293905735, 0.009058681316673756, -0.017505355179309845, 0.05976301059126854, 0.04274337366223335, -0.04060620442032814, 0.0001865469093900174, 0.013775023631751537, 0.023411711677908897, -0.035302143543958664, 0.03264039382338524, 0.02040024660527706, -0.0512920506298542, 0.07476204633712769, 0.04472511261701584, -0.046823423355817795, 0.007795808836817741, -0.03260153904557228, 0.039634764194488525, -0.03775017336010933, -0.08175642043352127, 0.0038857613690197468, -0.022051695734262466, 0.03532157093286514, -0.00675636762753129, -0.013872168026864529, 0.03545757383108139, -0.0197396669536829, 0.035982150584459305, -0.006474649999290705, 0.0017959503456950188, -0.03843018040060997, -0.026151174679398537, -0.004539054818451405, -0.033806122839450836, -0.006450363900512457, -0.06582479923963547, -0.03578786179423332, -0.09263654798269272, 0.07647178322076797, 0.0008894750499166548, 0.04674571007490158, 0.010763558559119701, -0.036098722368478775, 0.005250635091215372, -0.04962117224931717, -0.020128244534134865, -0.016223054379224777, 0.016456199809908867, 0.014416174963116646, 0.02784148044884205, 0.05004860460758209, -0.0002877892111428082, 0.00707208551466465, -0.015815049409866333, 0.0019343806197866797, -0.006877797655761242, 0.08921708166599274, 0.025568310171365738, 0.0003746116708498448, 0.04313195124268532, -0.01710706390440464, 0.08206728100776672, 0.061589315533638, 0.014503603801131248, 0.04021763056516647, 0.08463188260793686, -0.034388989210128784, 0.02838548645377159, 0.04666799306869507, 0.005823784973472357, -0.01859336718916893, -0.130872443318367, 0.03159124031662941, -0.07981353998184204, 0.015416758134961128, -0.0020934538915753365, 0.002518458990380168, 0.05700412020087242, 0.01700020581483841, 0.020808251574635506, 0.009063538163900375, 0.06757339090108871, 0.09030509740114212, -0.0017328066751360893, 0.018797369673848152, -0.003985334187746048, 0.002613174496218562, -0.04666799306869507, -0.02063339203596115, 0.013231017626821995, 0.05408979952335358, -0.027433475479483604, -0.02440258115530014, 0.03672044351696968, -0.01305615808814764, -0.031047232449054718, 0.01746649667620659, 0.04433653876185417, -0.013483592309057713, -0.019584236666560173, -0.018408793956041336, 0.025743169710040092, -0.014901895076036453, 0.056965261697769165, 0.02428600750863552, -0.05440066009759903, -0.028929492458701134, 0.05653782933950424, -0.03217410296201706, -0.030017506331205368, -0.06034587323665619, -0.04406453296542168, 0.009325827471911907, -0.012900727801024914, -0.0415387898683548, -0.0009671903098933399, 0.045230261981487274, -0.05883042514324188, -0.035982150584459305, -0.014056741259992123, -0.02758890576660633, 0.029240354895591736, 0.005750926677137613, -0.017991075292229652, -0.006455221213400364, 0.10577042400836945, -0.034272413700819016, -0.04915488138794899, -0.006960370112210512, 0.03011465072631836, 0.003174181329086423, 0.047056570649147034, 0.003684187540784478, 0.03477756306529045, 0.008004668168723583, -0.02100254036486149, -0.020672250539064407, 0.0031887528020888567, -0.039071328938007355, 0.04406453296542168, -0.003985334187746048, 0.023061994463205338, 0.0777929425239563, -0.04491940140724182, -0.059141289442777634, 0.03281525522470474, -0.0006593651487492025, 0.014445317909121513, -0.03178552910685539, -0.03365069255232811, -0.009350113570690155, -0.00014488122542388737, -0.024441439658403397, 0.059141289442777634, -0.01757335662841797, -0.00607150187715888, -0.0035627575125545263, 0.005794641561806202, -0.009228683076798916, 0.011443567462265491, -0.041461072862148285, 0.00567321153357625, 0.035515859723091125, 0.005386636592447758, -0.0016951634315773845, -0.06205561012029648, -0.013017300516366959, -0.028929492458701134, 0.0007091514416970313, -0.04690114036202431, 0.015436187386512756, 0.00040952282142825425, -0.007178944069892168, 0.03207695856690407, 0.00024210114497691393, -0.018078504130244255, -0.010404125787317753, -0.01327958982437849, -0.057081833481788635, 0.037458740174770355, 0.008645818568766117, 0.04651256278157234, 0.03879932686686516, 0.002516030566766858, -0.014445317909121513, 0.07938610762357712, -0.004726057406514883, -0.004004762973636389, 0.08129012584686279, -0.021915694698691368, 0.025024302303791046, 0.035166140645742416, -0.000547649513464421, 0.026073459535837173, -0.04418110474944115, -0.022984277456998825, -0.04721200093626976, -0.07884209603071213, -0.02168254740536213, -0.0022027408704161644, 0.059491004794836044, 0.024014005437493324, -0.0707208588719368, -0.08711876720190048, -0.055721819400787354, 0.04025648906826973, 0.054556090384721756, 0.04095592349767685, -0.04736743122339249, -0.06531964987516403, 0.016281340271234512, 0.0444919690489769, 0.047056570649147034, -0.07507290691137314, -0.0775209367275238, 0.02819119766354561, -0.008082383312284946, -0.01857393980026245, 0.013085301034152508, -0.05210806056857109, -0.02749176137149334, -0.07996896654367447, -0.0340198390185833, -0.01564018987119198, 0.07293573766946793, 0.009413257241249084, 0.012473293580114841, -0.0277054775506258, -0.03409755602478981, -0.02966778725385666, 0.0207693949341774, 0.04888287931680679, -0.041111353784799576, -0.0512920506298542, 0.00877696368843317, 0.010462412610650063, 0.04251023009419441, 0.04118907079100609, -0.034466702491045, 0.0057314978912472725, 0.00326403952203691, -0.05463380366563797, -0.032232388854026794, -0.005916071590036154, 0.02819119766354561, 0.0595298632979393, 0.039421048015356064, -0.002428600797429681, -0.04585198312997818, -0.0282883420586586, -0.012648153118789196, 0.03938218951225281, -0.0196036659181118, -0.0021347401197999716, 0.08641932904720306, -0.014979610219597816, 0.043831389397382736, 0.06376534700393677, 0.049543458968400955, -0.04491940140724182, 0.07767637073993683, 0.059257861226797104, -0.12310092151165009, -0.0018675940809771419, 0.0038930471055209637, 0.0044540539383888245, 0.02896835096180439, 0.020905395969748497, -0.0189333725720644, -0.022692846134305, -0.013522449880838394, -0.011686427518725395, -0.013367018662393093, 0.017165351659059525, -0.0011608712375164032, -0.024227721616625786, 0.0830775797367096, 0.08144555985927582, -0.03219353407621384, 0.032659824937582016, -0.03775017336010933, -0.02521859109401703, -0.019069373607635498, -0.05063147097826004, 0.03170781210064888, 0.0007152229663915932, -0.012133290059864521, -0.0854867473244667, -0.03582672029733658, 0.011764142662286758, -0.00310860900208354, 0.017845358699560165, -0.006188075058162212, 0.05968529358506203, -0.037691883742809296, 0.022148840129375458, 0.015824763104319572, 0.005143776535987854, -0.000322396750561893, 0.060734450817108154, -0.02644260600209236, -0.0016903062351047993, -0.04985431954264641, 0.021701976656913757, 0.009398684836924076, 0.05191377177834511, -0.024674585089087486, 0.049543458968400955, 0.0029361783526837826, 0.016611630097031593, 0.017029348760843277, -0.07231401652097702, 0.0444919690489769, -0.02978436090052128, 0.06947741657495499, -0.043870244175195694, -0.03891589865088463, -0.011278422549366951, -0.013396162539720535, 0.015679046511650085, -0.005376922432333231, 0.0061589316464960575, -0.01802021823823452, -0.01294929999858141, -0.00004037548933411017, 0.02430543676018715, -0.033475834876298904, 0.07829809188842773, 0.026598036289215088, 0.03207695856690407, -0.013036729767918587, -0.016621343791484833, 0.01397902611643076, -0.004842630121856928, 0.02850206010043621, -0.01871965453028679, -0.012075003236532211, -0.024927159771323204, -0.02418886497616768, -0.004407910630106926, 0.04301537945866585, -0.02896835096180439, -0.002149311825633049, 0.03489413857460022, -0.0392073318362236, 0.02840491570532322, -0.03452498838305473, 0.07017684727907181, -0.004101906903088093, -0.038605038076639175, 0.05727612227201462, -0.020225387066602707, 0.002480815863236785, -0.012900727801024914, -0.059918440878391266, -0.06081216409802437, -0.05257435142993927, -0.022945420816540718, -0.010297267697751522, 0.0287352055311203, -0.01574704796075821, 0.002661746460944414, 0.014853322878479958, 0.04083935171365738, 0.06819511204957962, -0.03761417046189308, -0.0003138966567348689, -0.011696141213178635, 0.012075003236532211, -0.012687010690569878, -0.017087634652853012, 0.07553920149803162, 0.0371478796005249, -0.04437539353966713, -0.034466702491045, -0.014192743226885796, 0.005979215260595083, -0.0017862359527498484, 0.038274750113487244, -0.062094464898109436, 0.05976301059126854, 0.05506123974919319, -0.027977481484413147, 0.04927145317196846, -0.07002142071723938, -0.00844667386263609, -0.03225181996822357, 0.026209460571408272, 0.05094233155250549, 0.044647399336099625, -0.03547700121998787, -0.023314567282795906, 0.07833694666624069, -0.004218479618430138, -0.016796203330159187, 0.058092132210731506, -0.03225181996822357, -0.08983880281448364, -0.013697308488190174, -0.012784155085682869, -0.06088988110423088, -0.056071534752845764, -0.015105897560715675, -0.022148840129375458, -0.016048194840550423, 0.03821646422147751, -0.019069373607635498, 0.004930059891194105, 0.010287553071975708, 0.014377317391335964, 0.014542462304234505, -0.06112302467226982, 0.05851956456899643, -0.03994562849402428, -0.007348946295678616, -0.03034779615700245, -0.0004787379293702543, -0.030930660665035248, -0.03201867267489433, 0.0013041587080806494, 0.01391102559864521, -0.0008232956752181053, 0.0017558784456923604, 0.03343697637319565, -0.007499519269913435, 0.013794452883303165, 0.004777058027684689 ]
23,400
conexions.proxy
Proxy
null
class Proxy: # Atributos da clase ------------------------------------------------------- __ligazon: str = 'https://sslproxies.org' __sesion: Session = None __verbose: bool = False __verbosalo: bool = False __max_cons: int = 0 # ó ser 0 implica que non ten un máximo predefinido # xFCR: xuntar as cant_cons nunha soa variable __cant_cons_totais: int = 0 __cant_cons: int = 0 __cant_cons_espido: int = 0 __reintentos: int = 5 __timeout: int = 30 __cabeceira: dict[str, str] __lst_proxys: List[ProxyDTO] # Ordeados de máis velho[0] a máis novo[len()] __proxy: ProxyDTO __spinner: Halo = Halo(text='Conectando', spinner='dots') __ligazons_ip: List[str] = [ 'https://ip.me', 'https://icanhazip.com' ] # -------------------------------------------------------------------------- def __init__(self, max_cons= 0, reintentos= 5, timeout= 30, verbose=False, verbosalo= False) -> None: self.__verbose = verbose self.__verbosalo = verbosalo self.__max_cons = max_cons self.__reintentos = reintentos self.__timeout = timeout self.__lst_proxys = [] self.set_cabeceira() # Dalle valor a __cabeceira self.set_proxys() # Enche a __lst_proxys self.set_proxy() # Saca un proxy da lista e meteo como atributo # -------------------------------------------------------------------------- # Getters def get_ligazon(self) -> str: return self.__ligazon def get_sesion(self) -> Session: """ """ return self.__sesion def get_verbose(self) -> bool: return self.__verbose def get_verbosalo(self) -> bool: return self.__verbosalo def get_max_cons(self) -> int: return self.__max_cons def get_cant_cons_totais(self) -> int: return self.__cant_cons_totais def get_cant_cons(self) -> int: return self.__cant_cons def get_cant_cons_espido(self) -> int: return self.__cant_cons_espido def get_reintentos(self) -> int: return self.__reintentos def get_timeout(self) -> int: return self.__timeout def get_cabeceira(self, set_nova: Union[bool, int] = False) -> dict[str, str]: try: return self.__cabeceira finally: if set_nova: self.set_cabeceira() def get_proxys(self) -> List[ProxyDTO]: return self.__lst_proxys def get_proxy(self) -> ProxyDTO: # se se alcanzou o máximo sacar novo proxy if (self.get_max_cons() != 0) and (self.get_cant_cons() >= self.get_max_cons()): self.set_proxy() return self.__proxy def __get_proxy(self) -> dict[str, str]: try: return self.get_proxy().format() finally: self.__set_cant_cons(self.get_cant_cons()+1) self.__set_cant_cons_totais(self.get_cant_cons_totais()+1) def get_ligazons_ip(self) -> List[str]: return self.__ligazons_ip def get_spinner(self) -> Halo: return self.__spinner # Getters # # Setters def __set_ligazon(self, nova_ligazon: str) -> None: self.__ligazon = nova_ligazon def set_sesion(self, reset: Union[bool, int] = False) -> None: """ """ if reset: self.__sesion = None else: self.__sesion = requests.Session() def set_verbose(self, novo_verbose: bool) -> None: self.__verbose = novo_verbose def set_verbosalo(self, novo_verbosalo: bool) -> None: self.__verbosalo = novo_verbosalo def set_reintentos(self, novo_reintentos: int) -> None: self.__reintentos = novo_reintentos def set_max_cons(self, novo_max_cons: int) -> None: self.__max_cons = novo_max_cons def __set_cant_cons_totais(self, novo_cant_cons_totais: int) -> None: self.__cant_cons_totais = novo_cant_cons_totais def __set_cant_cons(self, novo_cant_cons: int) -> None: self.__cant_cons = novo_cant_cons def __set_cant_cons_espido(self, novo_cant_cons_espido: int) -> None: self.__cant_cons_espido = novo_cant_cons_espido def set_timeout(self, novo_timeout: int) -> None: self.__timeout = novo_timeout def set_cabeceira(self) -> None: self.__cabeceira = {'User-Agent': UserAgent().random} def set_proxys(self) -> None: """ Colle a páxina e saca toda a info sobre os proxys que contén. @entradas: Ningunha. @saidas: Ningunha. """ while True: try: pax_web = requests.get(url= self.get_ligazon(), headers= self.get_cabeceira()) except ConnectionError: pass except Exception: raise else: # se saiu todo ben sáese do bucle if pax_web.ok: pax_web.encoding = 'utf-8' break if self.get_verbose() and self.get_cant_cons_totais()>0: print(f'{__name__}: Enchendo a lista de proxys.') taboa_proxys = bs(pax_web.text, 'html.parser').find(class_='table') lst_nomes_cols_esperados = [ 'IP Address', 'Port', 'Code', 'Country', 'Anonymity', 'Google', 'Https', 'Last Checked' ] lst_nomes_cols_obtidos = taboa_proxys.thead.find_all('th') if len(lst_nomes_cols_esperados) != len(lst_nomes_cols_obtidos): raise CambioNaPaxinaErro('Modificado o número de columnas') for esperado, obtido in zip(lst_nomes_cols_esperados, lst_nomes_cols_obtidos): if esperado != obtido.text: raise CambioNaPaxinaErro('Modificado o orde ou nome das columnas') for fila in taboa_proxys.tbody: novo_proxy = ProxyDTO([atributo.text for atributo in fila.find_all('td')]) if (novo_proxy.tipo == 'elite proxy') and (novo_proxy.google == 'no') and (novo_proxy.https == 'yes'): # métoos desta forma na lista porque así vou sacando e eliminando dende atrás self.__lst_proxys.insert(0, novo_proxy) def set_proxy(self) -> None: """ Devolve un proxy e automáticamente eliminao da lista. De non ter ningún proxy que devolver, escraperá a páxina por máis. @entradas: Ningunha. @saídas: ProxyDTO - Sempre └ O proxy a usar nas conexións. """ try: self.__proxy = self.get_proxys().pop() # se a lista de proxys está baleira except IndexError: self.set_proxys() self.get_proxy() # recursion finally: self.__set_cant_cons(0) # Setters # def get_ip(self, reintentos: int = None) -> str: """ """ if reintentos == None: reintentos = self.get_reintentos() try: return requests.get(self.get_ligazons_ip()[0]).text.rstrip() except ConnectionError: return self.get_ip(reintentos-1) def get_espido (self, ligazon: str, params: dict = None, bolachas: dict = None, stream: dict = False, timeout: int = None, reintentos: int = None) -> Response: """ """ # lazy_check_types #self. if timeout == None: timeout = self.get_timeout() if reintentos == None: if self.get_verbose(): print(f'*{__name__}* Chegouse á cantidade máxima de conexións.') reintentos = self.get_reintentos() if self.get_cant_cons() >= self.get_max_cons(): self.__set_cant_cons_espido(0) reintentos = self.get_reintentos() try: if self.get_verbosalo(): self.get_spinner().start() if self.get_sesion() != None: return self.get_sesion().get(url= ligazon, params= params,
(max_cons=0, reintentos=5, timeout=30, verbose=False, verbosalo=False) -> None
[ 0.014728653244674206, -0.027826184406876564, -0.044351015239953995, -0.005713785532861948, -0.03646725416183472, -0.02134052850306034, -0.08815832436084747, -0.008029397577047348, -0.013922801241278648, -0.030991340056061745, -0.004247716628015041, 0.0420985110104084, 0.01687435805797577, -0.002781647490337491, -0.007548799272626638, 0.0013847555965185165, 0.017214175313711166, -0.01027219183743, -0.008980886079370975, -0.044273342937231064, -0.012447022832930088, 0.03569052740931511, 0.0422150194644928, 0.01228196918964386, -0.022622125223279, 0.012602368369698524, -0.00844203308224678, 0.05588538572192192, 0.03031170554459095, -0.0050924052484333515, -0.029651489108800888, -0.005539022386074066, -0.03182632103562355, -0.010602300055325031, 0.03800128400325775, -0.003174864687025547, 0.02054438367486, -0.007602198980748653, -0.08582814782857895, 0.0105246277526021, -0.04605980962514877, -0.04609864577651024, -0.04101109504699707, -0.004342379979789257, -0.009150794707238674, 0.018010318279266357, -0.06508958339691162, 0.0947604849934578, -0.0008034252095967531, -0.02176772616803646, -0.01853460818529129, 0.010311027988791466, 0.02376779355108738, 0.009354685433208942, 0.0451277419924736, 0.01238876860588789, -0.015786942094564438, 0.11402327567338943, 0.03279722481966019, 0.0038205175660550594, -0.016709303483366966, -0.013689783401787281, -0.010534336790442467, 0.023728957399725914, 0.03534100204706192, 0.02363186702132225, -0.02664167806506157, -0.007136163767427206, 0.04128294810652733, -0.018845297396183014, 0.08070176094770432, 0.02836989238858223, -0.03936055302619934, -0.008878940716385841, 0.05421542748808861, -0.017709337174892426, 0.016058795154094696, -0.048739511519670486, -0.033360350877046585, -0.02283572405576706, 0.0018265180988237262, -0.0034782730508595705, 0.008092506788671017, -0.018777335062623024, 0.05087550729513168, -0.009704211726784706, 0.07114803791046143, 0.00495890574529767, -0.031573884189128876, 0.017466610297560692, -0.08435236662626266, 0.02038903906941414, -0.02980683371424675, -0.012864513322710991, -0.0385061576962471, -0.011660588905215263, -0.004412770736962557, -0.038311976939439774, -0.0004089944122824818, -0.019291914999485016, -0.014214073307812214, 0.049244385212659836, -0.08085710555315018, 0.012048951350152493, 0.03460311144590378, -0.043496616184711456, -0.031127266585826874, 0.02664167806506157, 0.021806562319397926, -0.05266197398304939, -0.03578761965036392, 0.015165561810135841, 0.021146345883607864, -0.01615588553249836, 0.030719485133886337, 0.008791559375822544, -0.011010081507265568, -0.019291914999485016, -0.02930196188390255, 0.03470020368695259, 0.019709404557943344, -0.0010491859866306186, -0.04077807813882828, 0.010097429156303406, 0.010039174929261208, 0.03419532999396324, 0.007762398570775986, 0.03202050179243088, 0.05701163783669472, -0.0432247631251812, 0.025767862796783447, -0.024874627590179443, 0.01947638764977455, 0.07103152573108673, 0.03763234242796898, -0.013631529174745083, -0.06932273507118225, 0.005286586470901966, -0.041477132588624954, -0.027690257877111435, -0.052894994616508484, 0.019845331087708473, -0.026330986991524696, -0.029767997562885284, 0.006238074973225594, -0.02011718600988388, -0.016146177425980568, -0.02456393837928772, -0.02600087970495224, -0.06827415525913239, 0.022855142131447792, -0.037108052521944046, -0.04404032602906227, -0.0225638709962368, -0.07798322290182114, 0.017573410645127296, -0.06959458440542221, 0.005194350611418486, -0.001873849774710834, -0.0009957861620932817, -0.02586495317518711, -0.04431217908859253, 0.04268105700612068, -0.05654560402035713, -0.013942219316959381, -0.02549600787460804, 0.005364259239286184, -0.023301759734749794, 0.04182665795087814, 0.10742110759019852, -0.01522381603717804, -0.021748308092355728, -0.020058931782841682, -0.014262618497014046, 0.005228332243859768, 0.0432247631251812, 0.033573951572179794, -0.032214682549238205, -0.038816846907138824, 0.005383677314966917, -0.025476589798927307, -0.02543775364756584, -0.01433058176189661, -0.018554026260972023, 0.015845196321606636, 0.003927317447960377, 0.0814008116722107, -0.004941914696246386, 0.03840906545519829, 0.04372963309288025, -0.052894994616508484, -0.0056409677490592, 0.06240987777709961, -0.02821454592049122, 0.021631799638271332, 0.013010148890316486, 0.03266130015254021, -0.01802973635494709, 0.04695304483175278, -0.008233288303017616, -0.07961434125900269, 0.06439052522182465, 0.017155921086668968, -0.03790419548749924, -0.016767557710409164, -0.0038326538633555174, -0.0369332879781723, 0.0018083136528730392, 0.022292016074061394, -0.007670162245631218, 0.016932612285017967, 0.008058524690568447, -0.03891393914818764, -0.022214343771338463, 0.03291373327374458, -0.006068166345357895, -0.0031530193518847227, 0.025321245193481445, 0.0389527752995491, 0.0073012178763747215, 0.048506494611501694, -0.06085642799735069, -0.09406143426895142, -0.0874592661857605, 0.012155750766396523, 0.007179854437708855, -0.021204600110650063, 0.019340459257364273, 0.05732232704758644, -0.05033180117607117, 0.04035088047385216, 0.027263058349490166, 0.003835081122815609, 0.03813721239566803, 0.09577023237943649, -0.046797700226306915, -0.02491346374154091, 0.032641880214214325, -0.018350135535001755, -0.014893707819283009, -0.022583289071917534, 0.002873883582651615, 0.031204938888549805, -0.011408152990043163, -0.03103017620742321, 0.058137889951467514, 0.003349627833813429, 0.01902006007730961, -0.034020569175481796, 0.011942151933908463, -0.02075798436999321, -0.02493288181722164, -0.004490443039685488, -0.059069957584142685, -0.016495702788233757, -0.03238944336771965, 0.008252706378698349, 0.030505886301398277, 0.024952299892902374, -0.027709675952792168, -0.00470646983012557, -0.062099188566207886, -0.05837090685963631, 0.0037209996953606606, -0.013184912502765656, 0.028971854597330093, 0.011078044772148132, -0.010184810496866703, -0.031554464250802994, -0.01881617121398449, 0.060002028942108154, 0.008281833492219448, -0.05604073032736778, 0.0103013189509511, -0.018437517806887627, 0.006796346511691809, 0.012573241256177425, -0.026330986991524696, -0.05604073032736778, -0.04699188098311424, 0.01875791698694229, 0.00484725134447217, 0.029496142640709877, -0.04489472135901451, -0.0761190801858902, -0.028602909296751022, 0.002372652990743518, 0.054060082882642746, -0.016563666984438896, 0.0015364597784355283, -0.026874694973230362, 0.01830158941447735, 0.02506880834698677, -0.01902977004647255, 0.059574831277132034, 0.011155717074871063, -0.0062089478597044945, 0.049089040607213974, -0.020796820521354675, -0.04932205751538277, -0.019767658784985542, -0.02326292358338833, 0.028117455542087555, -0.04889485612511635, -0.007966289296746254, -0.014184946194291115, 0.06081759184598923, -0.02586495317518711, 0.052972666919231415, 0.0027476658578962088, 0.024369755759835243, -0.01471894420683384, 0.02536008134484291, 0.01932104118168354, 0.016049087047576904, 0.011971279047429562, 0.0007627684972248971, 0.012223714031279087, 0.026020297780632973, 0.08769229054450989, -0.020738566294312477, 0.06831298768520355, 0.02068031206727028, -0.012126623652875423, 0.0811677947640419, -0.0034952638670802116, 0.05464262515306473, 0.009898393414914608, 0.022311434149742126, -0.036797359585762024, -0.025340663269162178, -0.01602966897189617, -0.03578761965036392, 0.003995280712842941, 0.029826251789927483, 0.02203958109021187, 0.01213633269071579, 0.009747902862727642, -0.0037379905115813017, -0.051030851900577545, 0.02887476235628128, -0.021146345883607864, -0.0359235443174839, 0.02916603535413742, 0.08349797129631042, -0.056273747235536575, 0.015767524018883705, 0.018796753138303757, 0.010757645592093468, 0.037962447851896286, -0.01702970266342163, -0.007199272513389587, 0.07984735816717148, 0.07538118958473206, 0.061167117208242416, -0.03225351870059967, 0.0011499174870550632, -0.01787439174950123, 0.016350068151950836, 0.002781647490337491, -0.04633166268467903, 0.020641474053263664, -0.03169039264321327, 0.05615723878145218, -0.018214209005236626, -0.021806562319397926, 0.036234237253665924, -0.05207943171262741, 0.04505006596446037, 0.0023787212558090687, -0.02054438367486, -0.021010419353842735, -0.008427469991147518, -0.03038937784731388, 0.02283572405576706, -0.01767050102353096, 0.03755467012524605, 0.03297198936343193, -0.03691387176513672, 0.01961231417953968, 0.05883694067597389, -0.01188389677554369, 0.03697212412953377, 0.0267776045948267, 0.05351637303829193, -0.05732232704758644, 0.033302098512649536, -0.004898224025964737, 0.04819580540060997, 0.004937060177326202, -0.0004821158363483846, -0.0037695448845624924, 0.012320805341005325, 0.013631529174745083, -0.015019925311207771, -0.031787484884262085, 0.016903484240174294, 0.0313214473426342, -0.046797700226306915, -0.03819546848535538, 0.042564548552036285, -0.016252977773547173, 0.06341961771249771, 0.04101109504699707, -0.0225638709962368, -0.03778768703341484, 0.06505074352025986, -0.04357428848743439, 0.03574878349900246, 0.04559377580881119, -0.06283707916736603, -0.014262618497014046, -0.00588854867964983, -0.007679871283471584, -0.06761393696069717, 0.047574423253536224, -0.056196074932813644, 0.04877834767103195, 0.023379432037472725, 0.025010554119944572, 0.018845297396183014, 0.010942117311060429, -0.013155784457921982, 0.029903924092650414, -0.05017645284533501, 0.042409200221300125, -0.01177709735929966, -0.019592896103858948, -0.023942558094859123, -0.0026165933813899755, 0.04804046079516411, 0.009636248461902142, 0.026486333459615707, -0.10625602304935455, 0.051108524203300476, 0.013010148890316486, -0.02320466935634613, -0.021379364654421806, 0.011786806397140026, -0.005354550201445818, 0.01932104118168354, -0.021670635789632797, 0.0020923037081956863, 0.03778768703341484, 0.06054573878645897, -0.02334059588611126, -0.029496142640709877, -0.048584166914224625, 0.00894690491259098, -0.017787009477615356, -0.04357428848743439, -0.0018859861884266138, 0.03347685933113098, 0.008893504738807678, 0.0014150964561849833, -0.00019387791689950973, -0.02629215084016323, 0.025729026645421982, -0.029865087941288948, 0.023903721943497658, 0.04229269176721573, -0.015175270847976208, 0.08147848397493362, 0.02836989238858223, -0.03087483160197735, 0.03914695605635643, 0.009354685433208942, 0.025748444721102715, 0.007713853381574154, -0.029146617278456688, -0.06532260030508041, -0.041477132588624954, -0.051962923258543015, -0.04897253215312958, 0.02091332897543907, -0.014738362282514572, 0.006888582371175289, 0.025029972195625305, 0.03341860696673393, -0.02075798436999321, 0.005946802906692028, -0.04396265372633934, 0.07421610504388809, -0.050681326538324356, -0.007063345517963171, -0.054487280547618866, 0.017185047268867493, -0.04559377580881119, -0.014097563922405243, 0.02341826818883419, -0.012709167785942554, 0.019068606197834015, -0.01852489821612835, 0.006742946337908506, 0.003065637778490782, 0.04846765846014023, -0.006257493048906326, -0.00711189117282629, 0.020719148218631744, -0.0947604849934578, -0.02699120342731476, -0.005417658947408199, -0.02089391089975834, -0.00013205847062636167, 0.03137970343232155, -0.011573206633329391, -0.03470020368695259, 0.041049931198358536, -0.03038937784731388, 0.00919448584318161, -0.016699593514204025, -0.03858382999897003, 0.016932612285017967, -0.0015109734376892447, -0.03081657737493515, -0.02203958109021187, -0.019223950803279877, 0.02743782103061676, -0.021359946578741074, -0.047729771584272385, 0.0655556172132492, 0.10050825774669647, 0.03922462835907936, 0.016320940107107162, -0.024447428062558174, 0.09157591313123703, 0.018185080960392952, -0.015505379065871239, 0.0359235443174839, 0.037826523184776306, 0.011689716018736362, -0.022175507619976997, -0.004060816951096058, -0.021301692351698875, 0.07367239147424698, 0.02363186702132225, -0.024078484624624252, -0.10866387188434601, -0.008310960605740547, -0.011019790545105934, 0.005670094862580299, 0.03714688867330551, -0.08481840044260025, -0.08652719855308533, -0.0513027049601078, -0.03833139315247536, 0.01787439174950123, 0.08256589621305466, -0.05988552048802376, -0.028117455542087555, 0.024583356454968452, 0.001850790809839964, 0.0596136674284935, -0.03353511542081833, -0.02068031206727028, 0.01896180585026741, -0.0009144726791419089, -0.024602774530649185, 0.03972949832677841, 0.011010081507265568, 0.008354651741683483, -0.07266265153884888, -0.07002178579568863, -0.012320805341005325, -0.04664235562086105, 0.02182598039507866, 0.018486062064766884, 0.018932679668068886, 0.00040869100484997034, -0.0019745812751352787, 0.037379905581474304, -0.00458025187253952, 0.013126657344400883, 0.06404100358486176, -0.026758186519145966, -0.03017577901482582, -0.018282171338796616, -0.0006101541221141815, 0.04419567063450813, -0.004019553307443857, 0.03720514103770256, 0.057361163198947906, -0.06512841582298279, -0.061167117208242416, 0.06916739046573639, 0.04462286829948425, -0.010349865071475506, 0.046215154230594635, 0.05938065052032471, -0.04085575044155121, -0.0635361298918724, 0.04458403214812279, -0.06446819752454758, -0.005980785004794598, -0.015709269791841507, 0.08279892057180405, 0.015175270847976208, 0.03813721239566803, -0.006708964705467224, 0.04590446501970291, -0.03320500627160072, 0.04846765846014023, -0.004429761320352554, -0.08893504738807678, 0.0017367092659696937, -0.01744719222187996, -0.046370502561330795, 0.012514986097812653, 0.052894994616508484, -0.028971854597330093, 0.04986576363444328, 0.006048748269677162, 0.01760253682732582, -0.03363220393657684, -0.09786739200353622, -0.018185080960392952, -0.05840974301099777, 0.04023437201976776, -0.006878873333334923, -0.005791457835584879, 0.010311027988791466, -0.025243572890758514, 0.00612642103806138, 0.016340358182787895, -0.05837090685963631, -0.0075779263861477375, 0.022622125223279, -0.0057283490896224976, -0.022389106452465057, 0.051535725593566895, 0.031554464250802994, -0.001231231028214097, 0.04901136830449104, 0.015243234112858772, -0.023903721943497658, 0.028544655069708824, 0.04404032602906227, 0.01450534537434578, -0.03976833447813988, -0.00883525051176548, -0.0012998012825846672, 0.05079783499240875, 0.026525169610977173, 0.004772006068378687, -0.024952299892902374, -0.009898393414914608, 0.019923003390431404, -0.009568285197019577, 0.046448174864053726, -0.019088024273514748, -0.022097835317254066, 0.06427402049303055, 0.012243133038282394, 0.0038714902475476265, -0.04598213732242584, -0.03392347693443298, -0.041554804891347885, 0.02701062336564064, 0.031418539583683014, 0.0006207734113559127, 0.017990900203585625, -0.010136265307664871, 0.033942896872758865, -0.0782550722360611, 0.033573951572179794, 0.022855142131447792, 0.01200040616095066, -0.00540309539064765, 0.004189461935311556, 0.019923003390431404, 0.0385061576962471, 0.0038884810637682676, -0.018262753263115883, 0.0014114555669948459, 0.06520608812570572, -0.013913092203438282, -0.0059759304858744144, -0.05149688944220543, -0.017942354083061218, 0.034719619899988174, 0.029612652957439423, 0.03238944336771965, -0.005238041281700134, -0.012738294899463654, -0.023360013961791992, 0.06283707916736603, 0.022078417241573334, 0.02363186702132225, -0.02091332897543907, -0.006990527734160423, -0.03116610273718834, 0.011621752753853798, 0.017330683767795563, 0.05895344913005829, 0.006840037181973457, -0.03038937784731388, -0.04602097347378731, -0.06897320598363876, -0.005471058655530214, -0.00038957627839408815, 0.02413673885166645, -0.03899161145091057, 0.00044388638343662024, 0.03347685933113098, 0.003012237837538123, -0.0011116880923509598, -0.011893605813384056, -0.056933965533971786, 0.008961468003690243, 0.025010554119944572, 0.06641001254320145, 0.044700540602207184, 0.07580839097499847, -0.0225638709962368, -0.022156089544296265, 0.03877801075577736, -0.0018253044690936804, 0.020097767934203148, -0.035884708166122437, 0.021204600110650063, 0.0030923376325517893, 0.004856960382312536, 0.029340798035264015, 0.010709100402891636, 0.02017544023692608, 0.025107646360993385, 0.009679938666522503, -0.05774952471256256, -0.013029566965997219, 0.01673842966556549, -0.013097530230879784, 0.03949648141860962, -0.04116643965244293, 0.0015740824164822698, -0.0636526420712471, -0.0985664427280426, 0.0389527752995491, 0.0472637340426445, -0.07060433179140091, 0.028913600370287895, -0.02823396399617195, -0.07060433179140091, -0.010476082563400269, 0.03376813232898712, -0.03139911964535713, -0.005009878426790237, 0.016466576606035233, 0.016039377078413963, -0.0007494185701943934, 0.028699999675154686, 0.03922462835907936, 0.00797599833458662, 0.005446786060929298, -0.007956580258905888, 0.02972916141152382, -0.021437618881464005, -0.040467388927936554, 0.032428283244371414, -0.01555392425507307, -0.004990459885448217, -0.022719215601682663, 0.04520541429519653, -0.024525102227926254, 0.0029806834645569324, 0.04574912041425705, -0.013340257108211517, -0.012155750766396523, 0.018437517806887627 ]
23,401
conexions.proxy
__get_proxy
null
def __get_proxy(self) -> dict[str, str]: try: return self.get_proxy().format() finally: self.__set_cant_cons(self.get_cant_cons()+1) self.__set_cant_cons_totais(self.get_cant_cons_totais()+1)
(self) -> dict[str, str]
[ 0.005170177202671766, -0.01738455332815647, 0.029576780274510384, 0.03154383972287178, -0.0073188794776797295, 0.008262536488473415, -0.013317525386810303, 0.010012511163949966, 0.08180132508277893, -0.0842823013663292, 0.026475559920072556, 0.05564475059509277, -0.00024006766034290195, -0.030427400022745132, -0.033546339720487595, 0.012404880486428738, 0.001508522080257535, -0.025500889867544174, -0.027698326855897903, -0.04114875942468643, 0.010003650560975075, 0.012192225083708763, 0.059295330196619034, -0.02199208177626133, -0.038171589374542236, 0.00930366013199091, 0.015895968303084373, 0.021690819412469864, 0.06999897211790085, -0.00664990209043026, -0.06184719130396843, -0.019174400717020035, -0.022275621071457863, 0.027538834139704704, 0.05351819843053818, 0.014070678502321243, -0.022824980318546295, -0.01306056696921587, -0.07343689352273941, -0.0034755817614495754, -0.013228919357061386, -0.04231836274266243, -0.018031379207968712, -0.010499845258891582, -0.005653081461787224, -0.0024986974895000458, -0.037250082939863205, 0.06939644366502762, 0.01742885820567608, -0.07591786980628967, 0.032376740127801895, -0.03267800062894821, 0.005626499652862549, -0.00027107985806651413, 0.019085794687271118, -0.026262903586030006, 0.02601480670273304, 0.09512771666049957, 0.02993120439350605, 0.02961222268640995, -0.01652507297694683, -0.011084646917879581, -0.017411135137081146, -0.018536435440182686, 0.017101014032959938, -0.026351511478424072, -0.008940374478697777, -0.004370505455881357, 0.03228813037276268, 0.012227668426930904, 0.11639322340488434, -0.027024919167160988, -0.060216836631298065, -0.03602731600403786, 0.04720943048596382, -0.05156886205077171, 0.01860732026398182, -0.03429063409566879, 0.05210049822926521, -0.00965808518230915, -0.01812884770333767, -0.019085794687271118, -0.026032527908682823, -0.013423852622509003, 0.014947880990803242, -0.027343900874257088, 0.030640054494142532, -0.00020351757120806724, -0.0382070317864418, 0.004381581209599972, -0.05638904124498367, 0.03423747047781944, -0.03090587444603443, 0.016985826194286346, -0.03700198605656624, -0.03469822183251381, -0.001322448835708201, -0.025341399013996124, 0.05241947993636131, 0.008661264553666115, 0.008550507016479969, 0.056885238736867905, -0.07364954799413681, 0.009480873122811317, 0.01995413564145565, -0.06269781291484833, 0.04784739762544632, -0.013149173930287361, -0.011713751591742039, -0.0593307726085186, -0.03997915983200073, -0.024207238107919693, -0.024526221677660942, 0.0036062761209905148, 0.06439904868602753, 0.0396956168115139, -0.038596898317337036, -0.016720006242394447, -0.008515064604580402, 0.03496404364705086, -0.015063069760799408, 0.008882780559360981, -0.030126139521598816, -0.009675807319581509, -0.030498284846544266, 0.06638383120298386, -0.010269468650221825, 0.027060361579060555, 0.11703118681907654, -0.03241218253970146, 0.06982176005840302, -0.028442619368433952, 0.0007780739688314497, 0.02799958735704422, 0.03608047962188721, 0.000672300229780376, -0.010588451288640499, 0.0316324457526207, -0.021602213382720947, 0.026156576350331306, 0.00576383899897337, 0.03941207751631737, -0.026050249114632607, -0.005533462855964899, 0.03336912766098976, 0.01701240800321102, 0.011704890988767147, 0.0819430947303772, -0.044232260435819626, -0.07499636709690094, 0.07258627563714981, -0.005205619614571333, -0.0013623216655105352, 0.009064423851668835, -0.07056605070829391, 0.023161685094237328, -0.06929011642932892, 0.011102368123829365, -0.02289586514234543, -0.01558584626764059, -0.025766709819436073, -0.045720845460891724, 0.015860525891184807, -0.07414574176073074, 0.0036439336836338043, 0.04082977771759033, 0.06585219502449036, -0.07035339623689651, 0.04876890033483505, 0.0589054599404335, -0.041219647973775864, -0.035903267562389374, -0.01378713920712471, 0.007137236651033163, 0.04823726415634155, 0.06237882748246193, 0.005856875795871019, -0.009711249731481075, -0.03689565882086754, 0.0382070317864418, 0.022062966600060463, -0.05142709240317345, -0.02736162208020687, -0.0195819903165102, 0.015293445438146591, -0.04710310325026512, 0.08697593212127686, -0.0097909951582551, 0.05713333562016487, 0.0598624087870121, -0.012103619053959846, 0.044657569378614426, 0.028229964897036552, -0.011563120409846306, 0.02799958735704422, -0.03278432786464691, 0.013308664783835411, -0.011660587973892689, -0.025075580924749374, 0.04681956395506859, -0.07889503985643387, 0.03250078856945038, -0.04837903380393982, 0.014504849910736084, 0.007305588573217392, -0.03528302535414696, -0.015187118202447891, 0.032855212688446045, -0.02918691188097, 0.004036016296595335, 0.0007885959930717945, -0.0059410519897937775, -0.0393766351044178, 0.0007808429072611034, 0.020733872428536415, -0.03742729872465134, 0.030693218111991882, 0.03384760394692421, 0.026741378009319305, -0.0015029842033982277, 0.05057647079229355, -0.05872824788093567, 0.004115762189030647, -0.06656104326248169, 0.011199834756553173, -0.049796734005212784, -0.014150424860417843, -0.010109977796673775, 0.004642969463020563, -0.03951840475201607, 0.07177109271287918, -0.012980821542441845, -0.027078082785010338, 0.05451058968901634, 0.07205463200807571, -0.05277390778064728, -0.021868033334612846, 0.00427968380972743, 0.024313565343618393, 0.04061712324619293, -0.013778277672827244, 0.02831857092678547, 0.05536121129989624, 0.016835195943713188, -0.02333889715373516, 0.004775878973305225, 0.026050249114632607, 0.0407588928937912, -0.006446107756346464, 0.029310960322618484, 0.0096049215644598, 0.03072866052389145, -0.04543730616569519, -0.023959141224622726, -0.036293137818574905, -0.04579173028469086, -0.007208121940493584, -0.007903681136667728, 0.0392703078687191, -0.015390913002192974, -0.03522986173629761, 0.02488064579665661, -0.0388449989259243, -0.014664340764284134, -0.02842489816248417, 0.005679663270711899, -0.00782836601138115, 0.007008757442235947, -0.0605003759264946, 0.03742729872465134, -0.001824181992560625, 0.013742835260927677, -0.0390576533973217, -0.01818201132118702, -0.03189826384186745, -0.013574483804404736, 0.0781153067946434, 0.0008916007936932147, -0.016968104988336563, -0.04082977771759033, 0.0012892215745523572, 0.0304628424346447, 0.010801106691360474, -0.07761911302804947, -0.05787762999534607, 0.0033626086078584194, 0.06450537592172623, 0.023799650371074677, -0.003085714066401124, -0.015452937223017216, -0.020893363282084465, -0.00489549757912755, -0.0030236896127462387, 0.016985826194286346, 0.04763474315404892, -0.03675388917326927, -0.01284791249781847, -0.003043625969439745, -0.008284687995910645, 0.024384450167417526, -0.06046493351459503, -0.0036461488343775272, -0.03117169253528118, -0.002139841904863715, -0.003914183005690575, -0.03402481600642204, 0.058976348489522934, -0.045295536518096924, 0.007947984151542187, -0.015213700011372566, -0.025022415444254875, 0.027698326855897903, 0.05904723331332207, 0.04724487289786339, 0.03170333057641983, -0.004348353482782841, -0.036062758415937424, 0.0582674965262413, 0.03443240374326706, 0.11674764752388, -0.04008548706769943, 0.03919942304491997, -0.00785937812179327, 0.019493384286761284, 0.04440947249531746, 0.02548316866159439, -0.024207238107919693, 0.05277390778064728, 0.056885238736867905, -0.007894820533692837, -0.0964745283126831, -0.03443240374326706, -0.03278432786464691, -0.007673304527997971, 0.025359120219945908, 0.044657569378614426, 0.05015116184949875, -0.014726364985108376, -0.026351511478424072, -0.026209739968180656, 0.038596898317337036, -0.03117169253528118, -0.047067660838365555, 0.0025363550521433353, 0.02516418695449829, -0.02612113393843174, 0.020308561623096466, 0.019670596346259117, 0.017207341268658638, -0.03260711580514908, -0.1195121631026268, 0.022559162229299545, 0.043913278728723526, 0.06057126075029373, 0.03287293389439583, -0.03664756193757057, -0.014212449081242085, -0.042779117822647095, -0.005267643835395575, 0.022541441023349762, 0.011173252947628498, -0.01894402503967285, -0.01126185990869999, 0.05497134104371071, -0.052384037524461746, 0.014274473302066326, 0.012670699506998062, 0.006929012015461922, 0.04274367541074753, -0.024437615647912025, -0.047563858330249786, 0.017189620062708855, -0.02638695389032364, 0.0007974565960466862, -0.0073188794776797295, 0.03143751248717308, 0.04575628787279129, 0.015258003026247025, -0.028354013338685036, -0.014407382346689701, 0.04366517812013626, -0.026085691526532173, 0.01073022186756134, 0.061988960951566696, 0.013158034533262253, -0.027007197961211205, 0.03742729872465134, -0.038277916610240936, 0.023303454741835594, 0.02826540730893612, -0.010615034028887749, -0.01883769780397415, -0.0015218129847198725, 0.007602419704198837, -0.023019913583993912, -0.039660174399614334, 0.022328784689307213, -0.038809556514024734, -0.03898676857352257, -0.0007797353318892419, 0.007341030985116959, -0.017898470163345337, 0.04784739762544632, -0.006716356612741947, -0.029523616656661034, -0.05925988778471947, 0.039341192692518234, -0.0001939647045219317, 0.03528302535414696, -0.0034800120629370213, -0.11830712109804153, -0.04887523129582405, 0.00909100566059351, -0.03802981972694397, 0.006641041487455368, -0.008408737368881702, -0.044125933200120926, 0.010854270309209824, -0.003517669625580311, 0.028566667810082436, 0.014806111343204975, 0.0019482307834550738, -0.008741010911762714, 0.02456166408956051, -0.03331596404314041, 0.009268217720091343, -0.03455645218491554, -0.014770668931305408, 0.02130095288157463, 0.04405504837632179, 0.016392163932323456, -0.01394663006067276, 0.049903061240911484, -0.075563445687294, 0.016941523179411888, -0.020999690517783165, 0.02349838800728321, -0.014106121845543385, 0.040581680834293365, 0.028548946604132652, 0.007376473862677813, 0.02307307720184326, 0.003386975498870015, 0.061173781752586365, 0.0008738795295357704, -0.0321640819311142, -0.026457838714122772, -0.0751381367444992, -0.013671950437128544, -0.008116336539387703, -0.02913374826312065, -0.0208579208701849, 0.028336292132735252, -0.023480666801333427, 0.026564165949821472, 0.015966853126883507, -0.02945272997021675, -0.04249557852745056, -0.010056814178824425, 0.024207238107919693, 0.016117483377456665, 0.026829984039068222, 0.016170648857951164, 0.06751799583435059, -0.057416874915361404, -0.02831857092678547, -0.008785313926637173, 0.020202234387397766, -0.054156165570020676, 0.011563120409846306, -0.018270617350935936, -0.004545502830296755, -0.06762432307004929, -0.05171063169836998, -0.02874387986958027, -0.005267643835395575, 0.032429903745651245, 0.04355885088443756, 0.040369026362895966, -0.05054102838039398, -0.0096846679225564, -0.016994686797261238, 0.058551035821437836, -0.026298347860574722, -0.013069427572190762, 0.011465653777122498, -0.006206870544701815, -0.00013062504876870662, -0.019351614639163017, 0.060642145574092865, -0.011004901491105556, 0.06971543282270432, -0.025412283837795258, 0.005808142479509115, -0.008408737368881702, 0.03643490746617317, 0.018589599058032036, -0.03189826384186745, 0.016720006242394447, -0.046748679131269455, -0.01785416714847088, -0.02934640273451805, 0.02167309820652008, 0.012316274456679821, 0.016188370063900948, -0.023852813988924026, -0.05032837390899658, 0.039022210985422134, 0.007341030985116959, 0.018855419009923935, -0.010003650560975075, -0.01032263319939375, 0.006539144087582827, 0.049158770591020584, -0.0783279612660408, -0.033546339720487595, -0.017295947298407555, 0.02053893730044365, -0.05298656225204468, -0.034946322441101074, 0.02858438901603222, 0.09137080609798431, -0.007008757442235947, -0.032589394599199295, -0.029364123940467834, 0.028354013338685036, 0.033670391887426376, -0.032961539924144745, -0.007301158271729946, 0.03352861851453781, 0.020503494888544083, -0.014859274961054325, 0.018102265894412994, 0.01042896043509245, 0.02993120439350605, 0.025731267407536507, -0.03760451078414917, -0.06851038336753845, -0.06670281291007996, -0.015895968303084373, 0.044125933200120926, -0.017676955088973045, -0.08775567263364792, -0.08499115705490112, 0.030427400022745132, -0.034733664244413376, 0.058444708585739136, 0.019333893433213234, -0.036824773997068405, -0.03721464052796364, -0.012918797321617603, -0.05288023501634598, 0.027875538915395737, -0.03540707379579544, -0.023728763684630394, 0.047280315309762955, 0.0029793865978717804, -0.012351716868579388, 0.048839788883924484, 0.04263734817504883, 0.026829984039068222, -0.06308767944574356, -0.014947880990803242, 0.023852813988924026, -0.07471282035112381, 0.011890964582562447, -0.005963203497231007, 0.05947254225611687, -0.02516418695449829, 0.0016934877494350076, 0.004474617540836334, -0.015895968303084373, 0.03997915983200073, 0.040262699127197266, -0.028708437457680702, -0.01636558212339878, 0.008696706965565681, 0.0027024918235838413, 0.05153341963887215, 0.018802255392074585, 0.033989373594522476, 0.07613052427768707, -0.02638695389032364, -0.022133851423859596, 0.054262492805719376, 0.07591786980628967, -0.04657146707177162, 0.037746280431747437, 0.05057647079229355, -0.04448035731911659, -0.10533516108989716, -0.013211198151111603, -0.05277390778064728, -0.026794541627168655, 0.06429272145032883, 0.05032837390899658, -0.030374236404895782, 0.011970710009336472, -0.02482748217880726, -0.0018075683619827032, -0.029169190675020218, 0.05504222586750984, -0.009312520734965801, -0.003717033891007304, -0.017038989812135696, -0.005719535984098911, -0.004335062578320503, 0.017393413931131363, -0.011625145561993122, -0.03331596404314041, -0.015293445438146591, -0.011199834756553173, 0.019192121922969818, -0.05330554395914078, -0.05989785119891167, -0.03228813037276268, -0.05440426245331764, -0.0193693358451128, -0.061669979244470596, 0.011926406994462013, 0.007784062530845404, -0.00879860483109951, -0.043098099529743195, 0.021336395293474197, -0.0196883175522089, 0.022984471172094345, 0.034999486058950424, 0.014194727875292301, -0.0014021944953128695, -0.011332744732499123, -0.0018817761447280645, 0.04859168827533722, 0.062095288187265396, -0.010313772596418858, 0.003690452082082629, 0.054687801748514175, 0.07223184406757355, 0.04876890033483505, -0.015258003026247025, -0.022435111925005913, -0.012963100336492062, 0.05245492234826088, -0.009401127696037292, -0.0024411033373326063, -0.0596497543156147, 0.012183364480733871, 0.024738876149058342, -0.03250078856945038, 0.033883046358823776, -0.031189413741230965, 0.01083654910326004, 0.0021896830294281244, 0.023516109213232994, 0.0150719303637743, 0.015940271317958832, -0.022346505895256996, -0.020131349563598633, 0.013255501165986061, -0.004013864789158106, -0.009613782167434692, -0.05015116184949875, 0.015763059258461, -0.04596894234418869, -0.05957886949181557, 0.029257796704769135, -0.007730898912996054, -0.0635838732123375, -0.0004557686042971909, 0.026245182380080223, -0.026635050773620605, 0.08506204187870026, -0.013804860413074493, -0.02543000504374504, -0.005245492327958345, 0.017517464235424995, -0.03375899791717529, 0.01942249946296215, -0.006291046738624573, 0.010579590685665607, 0.024260401725769043, 0.05514855682849884, 0.004611957352608442, -0.014123843051493168, 0.02098196931183338, 0.002642682520672679, 0.06429272145032883, 0.0066011687740683556, 0.02310851961374283, 0.0019493383588269353, 0.02151360735297203, -0.004242026247084141, -0.011642866767942905, 0.0064904107712209225, 0.0383133590221405, -0.015683313831686974, -0.029098305851221085, -0.04564996063709259, -0.06344210356473923, 0.00022483845532406121, -0.01883769780397415, 0.014921299181878567, -0.0059942156076431274, 0.04859168827533722, -0.03074638359248638, 0.00033642700873315334, -0.044763896614313126, 0.006871417630463839, -0.0298780407756567, 0.023852813988924026, 0.018873140215873718, 0.05117899179458618, 0.04699677601456642, 0.046855006366968155, -0.004124622792005539, -0.024916088208556175, 0.01389346644282341, -0.021637655794620514, 0.056672584265470505, -0.031933706253767014, 0.023693321272730827, -0.015275724232196808, 0.03407797962427139, 0.04345252364873886, 0.006308767944574356, 0.008297978900372982, 0.07471282035112381, 0.0416095145046711, -0.07350777834653854, -0.027698326855897903, 0.0196883175522089, -0.0147795295342803, 0.022860422730445862, -0.05192328616976738, 0.003681591246277094, 0.01096945907920599, -0.029169190675020218, 0.020999690517783165, 0.035637449473142624, -0.028602110221982002, 0.022807259112596512, -0.014637758955359459, -0.0015616858145222068, 0.03228813037276268, 0.06656104326248169, 0.0016569376457482576, -0.0022240178659558296, -0.008315700106322765, 0.039022210985422134, -0.01062389463186264, -0.004665120970457792, 0.05086001008749008, 0.0772646814584732, 0.010553008876740932, -0.04274367541074753, 0.03310330957174301, -0.06386741250753403, -0.03549567982554436, 0.028141357004642487, 0.021584492176771164, 0.01812884770333767, -0.04834359139204025, 0.02080475725233555, -0.01905035227537155, 0.03379444032907486, -0.008430888876318932, -0.011678309179842472, 0.0016469694674015045, 0.03657667711377144 ]
23,402
conexions.proxy
__set_cant_cons
null
def __set_cant_cons(self, novo_cant_cons: int) -> None: self.__cant_cons = novo_cant_cons
(self, novo_cant_cons: int) -> NoneType
[ -0.018961604684591293, 0.07081236690282822, 0.05607936531305313, 0.037184879183769226, -0.019162965938448906, -0.018709901720285416, 0.006846313830465078, -0.006162521429359913, 0.025103149935603142, -0.0719534158706665, -0.019800612702965736, 0.015051822178065777, 0.052857570350170135, -0.07450400292873383, -0.005482924170792103, 0.01490080077201128, 0.027939001098275185, -0.03923206403851509, 0.048595402389764786, 0.009044517762959003, 0.018626000732183456, 0.06584542989730835, -0.0334428995847702, -0.05634784698486328, -0.040708716958761215, 0.0423867367208004, -0.01567268930375576, 0.05262264609336853, 0.03325831890106201, -0.024952128529548645, 0.0029617019463330507, 0.04084296151995659, -0.012476064264774323, -0.02454940415918827, 0.0535958968102932, -0.0011043456615880132, 0.01571463979780674, 0.0469173863530159, -0.003288915380835533, 0.026109961792826653, -0.05497187376022339, -0.017082223668694496, -0.0269154105335474, 0.003586763748899102, -0.0054116081446409225, -0.034198008477687836, 0.01694798283278942, 0.07363143563270569, -0.011217551305890083, -0.03126147761940956, 0.026881849393248558, 0.05715329572558403, 0.03186556324362755, -0.02862698771059513, 0.019901294261217117, 0.04866252467036247, 0.024968909099698067, 0.09987563639879227, 0.026781167834997177, 0.005826917942613363, -0.00020516393124125898, 0.08658573031425476, -0.027116771787405014, -0.08114895224571228, 0.010923897847533226, 0.053394533693790436, -0.02164643257856369, 0.03404698520898819, 0.07061100006103516, 0.0349363349378109, 0.04312506318092346, -0.008641793392598629, -0.0687987431883812, 0.03387918695807457, 0.044064756482839584, -0.06530846655368805, -0.007211282849311829, -0.019397888332605362, -0.009002567268908024, 0.016327116638422012, 0.006733047775924206, -0.02327411063015461, 0.016922812908887863, 0.01721646636724472, -0.003077065572142601, 0.02228407934308052, -0.02407955937087536, -0.026042841374874115, -0.018256837502121925, 0.01991807483136654, -0.05373013764619827, 0.054837632924318314, -0.046044815331697464, 0.0007351816748268902, 0.024582965299487114, 0.06728852540254593, 0.03637943044304848, -0.051582276821136475, 0.002221276517957449, 0.007198697421699762, 0.031664200127124786, -0.0029365315567702055, -0.03443293273448944, -0.021847795695066452, 0.002181423595175147, -0.06067713350057602, 0.010135229676961899, 0.005927599035203457, -0.010722535662353039, -0.030388908460736275, -0.051582276821136475, 0.03480209410190582, -0.0453064888715744, -0.032385747879743576, -0.018357517197728157, 0.05081038922071457, -0.002493954496458173, -0.042252495884895325, 0.02173033356666565, 0.02743559516966343, 0.03470141440629959, -0.017887672409415245, -0.013130491599440575, -0.011964268982410431, 0.013105321675539017, 0.053126052021980286, -0.005516484379768372, 0.07826276123523712, 0.05161583796143532, 0.0011032968759536743, 0.018256837502121925, -0.09128418564796448, 0.0060995956882834435, 0.06755700707435608, -0.00368954217992723, -0.011679005809128284, -0.05487119033932686, 0.023441912606358528, -0.013147272169589996, -0.02290494740009308, -0.019582470878958702, 0.03262067213654518, -0.01200621947646141, -0.011511203832924366, 0.06483861804008484, 0.03530550003051758, -0.07806140184402466, 0.008851545862853527, -0.08920343965291977, 0.04067515954375267, -0.008792814798653126, 0.016570428386330605, -0.03741980344057083, -0.010571514256298542, -0.03594314679503441, 0.09678808599710464, -0.008532721549272537, -0.031295038759708405, 0.03775540739297867, 0.0031861369498074055, -0.05188431963324547, -0.017635969445109367, 0.07645050436258316, 0.00007439650653395802, -0.008591452613472939, 0.047320108860731125, -0.00228839716874063, -0.013558385893702507, 0.009178758598864079, 0.04997137933969498, -0.018626000732183456, -0.03210048750042915, 0.03684927895665169, -0.018441418185830116, 0.06238871067762375, -0.013717797584831715, 0.004308311268687248, -0.06500642001628876, -0.03210048750042915, -0.026965750381350517, 0.026143521070480347, -0.01476655900478363, 0.022602902725338936, -0.026781167834997177, 0.045340050011873245, -0.021495411172509193, -0.009044517762959003, -0.005050834268331528, 0.02246866188943386, -0.025841478258371353, 0.03163064271211624, 0.022216958925127983, -0.003276330418884754, 0.008876715786755085, 0.05191788077354431, -0.04466884210705757, 0.0525219663977623, -0.04003751277923584, 0.02065640315413475, -0.054032184183597565, -0.01472460851073265, 0.033644262701272964, 0.02047182060778141, -0.019062286242842674, 0.056482087820768356, 0.021159807220101357, -0.03163064271211624, 0.010932288132607937, 0.008549502119421959, -0.04601125419139862, 0.012836838141083717, -0.0015175576554611325, 0.05023986101150513, -0.04312506318092346, 0.027284573763608932, -0.06863094121217728, 0.04627973958849907, -0.008960616774857044, -0.007467180490493774, 0.023609714582562447, 0.05698549374938011, -0.044534601271152496, -0.018609220162034035, -0.06084493547677994, 0.019767053425312042, 0.031110456213355064, -0.07618202269077301, 0.011158820241689682, 0.030909093096852303, 0.05799230560660362, -0.03554042428731918, 0.050843946635723114, -0.07235614210367203, -0.021528972312808037, 0.00607023062184453, -0.006259007379412651, 0.030674170702695847, -0.009262659586966038, -0.05950251966714859, -0.026294544339179993, -0.057925183326005936, 0.03933274373412132, 0.02726779319345951, 0.03923206403851509, 0.019599251449108124, 0.03882933780550957, 0.03604383021593094, 0.028475966304540634, -0.009489192627370358, 0.07155068963766098, -0.014556806534528732, -0.06745632737874985, -0.07443688064813614, -0.037453364580869675, 0.036547232419252396, -0.03043924830853939, -0.01480850949883461, 0.005403218325227499, -0.006670122034847736, 0.01688925176858902, -0.05507255345582962, -0.037352681159973145, 0.001211319351568818, -0.026193862780928612, -0.0015301427338272333, 0.03869509696960449, 0.001976915169507265, -0.012937519699335098, -0.05450202897191048, -0.012761327438056469, 0.033291880041360855, 0.009690554812550545, 0.032922714948654175, -0.009757675230503082, -0.031932685524225235, -0.017182905226945877, -0.0025652700569480658, 0.00915358867496252, 0.0056633111089468, 0.003628714010119438, 0.03181522339582443, -0.017317146062850952, 0.013642286881804466, -0.009858355857431889, -0.08249136805534363, -0.026328103616833687, 0.017140954732894897, -0.015471327118575573, -0.05023986101150513, -0.00914519838988781, -0.019800612702965736, 0.055307477712631226, 0.0450715646147728, 0.025858258828520775, 0.07772579789161682, -0.04671602323651314, 0.017367487773299217, 0.04966933652758598, -0.016285166144371033, 0.03876221925020218, -0.00782795436680317, -0.04278946295380592, -0.11027935147285461, -0.03554042428731918, 0.03684927895665169, -0.025287732481956482, 0.07014115899801254, -0.016998322680592537, 0.044534601271152496, 0.04617905616760254, 0.036815717816352844, 0.03035534732043743, 0.00665753660723567, 0.06349620223045349, 0.06960418820381165, 0.0615832656621933, 0.036446552723646164, -0.009346560575067997, 0.01403662096709013, 0.08390090614557266, 0.002290494740009308, -0.03381206467747688, -0.05711973458528519, -0.02887869067490101, -0.010655415244400501, 0.01625160500407219, 0.046145498752593994, 0.01830717734992504, -0.004904008004814386, 0.030506368726491928, -0.0322515070438385, -0.04839404299855232, -0.03142927959561348, -0.015907611697912216, -0.0073958649300038815, 0.04755503311753273, 0.02211627922952175, -0.0666508749127388, 0.0023156648967415094, 0.009849966503679752, 0.0257240179926157, 0.006489735096693039, 0.0020230605732649565, -0.012081730179488659, 0.07020827382802963, -0.04349422827363014, 0.015093772672116756, -0.014472905546426773, 0.002619805745780468, 0.06285855919122696, -0.05916691944003105, 0.04829335957765579, -0.013508046045899391, 0.007311963941901922, 0.017006713896989822, 0.008583062328398228, 0.04527292773127556, -0.018626000732183456, 0.009338170289993286, -0.04674958437681198, 0.012358603067696095, 0.020673183724284172, 0.061985988169908524, -0.028643768280744553, -0.020304018631577492, 0.024851446971297264, -0.03829237446188927, -0.040540918707847595, -0.005537459626793861, 0.014061791822314262, -0.046413980424404144, -0.03513769805431366, -0.009648604318499565, 0.0069553847424685955, 0.028945811092853546, 0.030036523938179016, -0.05618004500865936, 0.03146284073591232, -0.04215181618928909, -0.011544764041900635, -0.03986971080303192, -0.02374395541846752, 0.01114203967154026, 0.03554042428731918, -0.03651367500424385, 0.002980579622089863, 0.0423867367208004, -0.02543875388801098, 0.028056463226675987, 0.07470536231994629, 0.04987069591879845, -0.033929526805877686, 0.02156253159046173, -0.016427796334028244, 0.03648011386394501, -0.005730431992560625, 0.03577534481883049, -0.016922812908887863, 0.048696085810661316, 0.012786497361958027, 0.0034021816682070494, -0.025925379246473312, 0.01620965451002121, 0.04970289394259453, -0.01422120351344347, 0.03795677050948143, -0.03035534732043743, -0.03587602823972702, 0.006946994923055172, -0.003056090557947755, -0.09356629103422165, -0.0023429328575730324, 0.1045069694519043, -0.02347547374665737, 0.00996742770075798, -0.0503741018474102, -0.018525319173932076, -0.05060902610421181, 0.05295825004577637, -0.030657390132546425, 0.0239956583827734, -0.03939986601471901, 0.04413187503814697, 0.033845625817775726, 0.008121607825160027, -0.025338072329759598, 0.05218636244535446, 0.0010319810826331377, -0.0032574525102972984, 0.010865166783332825, 0.00982479564845562, 0.04594413563609123, 0.04735367000102997, -0.05201856046915054, -0.016243215650320053, -0.0186595618724823, 0.002261129440739751, -0.03141249716281891, 0.010042938403785229, 0.061180539429187775, 0.02887869067490101, 0.03262067213654518, 0.0479913167655468, 0.0063932486809790134, 0.007295183837413788, -0.018424639478325844, -0.008834765292704105, 0.015035041607916355, 0.01884414255619049, -0.031227916479110718, -0.021612873300909996, 0.022418322041630745, 0.004027243237942457, -0.014598757028579712, -0.009262659586966038, -0.004727815743535757, -0.05618004500865936, -0.053495217114686966, -0.02745237573981285, -0.02527095191180706, -0.00302462768740952, 0.051951438188552856, -0.06712072342634201, 0.003685347270220518, -0.004337676800787449, 0.020673183724284172, 0.0251870509237051, 0.009531143121421337, -0.031295038759708405, -0.017283586785197258, -0.0413128063082695, -0.04265521839261055, 0.016545258462429047, -0.02181423455476761, -0.029231075197458267, -0.023676835000514984, -0.003976902924478054, -0.032738134264945984, 0.034634292125701904, -0.0034462297335267067, 0.05064258724451065, 0.01571463979780674, 0.03594314679503441, 0.007576251868158579, 0.0019863538909703493, -0.030556708574295044, -0.10423848032951355, -0.029919061809778214, -0.0394669845700264, 0.01678857021033764, -0.04654822126030922, -0.0362451896071434, -0.010756095871329308, 0.030187545344233513, -0.011251111514866352, 0.08215576410293579, 0.004664890468120575, -0.04772283509373665, 0.0141289122402668, -0.027217453345656395, -0.03983614966273308, 0.027955781668424606, -0.027049651369452477, -0.05567663908004761, -0.04450104013085365, -0.02498568966984749, -0.05550883710384369, 0.02001875638961792, -0.04013819247484207, -0.029684139415621758, 0.05379725992679596, -0.022216958925127983, 0.03621163219213486, 0.05124667286872864, 0.017333926633000374, -0.01991807483136654, -0.030120424926280975, -0.02772085927426815, 0.04148060828447342, -0.030036523938179016, 0.006095400545746088, -0.006007304880768061, 0.021445071324706078, 0.010286251083016396, 0.02753627672791481, -0.01956569030880928, 0.0042621660977602005, -0.09591551125049591, 0.019817393273115158, 0.006078620441257954, 0.011779687367379665, -0.045843455940485, 0.030103644356131554, 0.03023788519203663, 0.0148588502779603, 0.0008390090661123395, 0.028022902086377144, -0.02743559516966343, 0.004132119473069906, -0.01200621947646141, -0.030556708574295044, -0.0223847609013319, 0.07725594937801361, -0.010789656080305576, -0.002900873776525259, -0.00279599754139781, -0.02924785576760769, 0.023945318534970284, -0.05903267487883568, 0.0148001192137599, -0.031664200127124786, 0.0018699413631111383, -0.008230678737163544, -0.028861911967396736, 0.015236403793096542, -0.0007739858701825142, 0.01662076823413372, 0.023022407665848732, 0.09839898347854614, 0.09235811233520508, 0.010655415244400501, -0.05245484411716461, 0.06262363493442535, -0.079403817653656, -0.04564209282398224, -0.010798046365380287, -0.02590859867632389, -0.04362846910953522, 0.04567565396428108, -0.029650580137968063, 0.017166124656796455, -0.018223276361823082, 0.007530106231570244, 0.07134933024644852, -0.04195045307278633, -0.006846313830465078, -0.015848880633711815, 0.04218537360429764, -0.0418497696518898, -0.027301354333758354, -0.04456815868616104, 0.055945124477148056, -0.06356332451105118, -0.023693615570664406, 0.04366203024983406, 0.01136018242686987, -0.02454940415918827, -0.0004840033361688256, -0.016285166144371033, -0.01785411313176155, -0.03983614966273308, -0.0038279788568615913, -0.043964073061943054, -0.017099004238843918, 0.0052354163490235806, 0.04883032664656639, -0.017501728609204292, -0.04285658150911331, 0.011251111514866352, 0.05373013764619827, 0.010949067771434784, 0.0017094808863475919, -0.029482778161764145, 0.009698944166302681, 0.028475966304540634, 0.02164643257856369, 0.0005752455908805132, -0.014414175413548946, 0.005474533885717392, -0.002456198912113905, 0.010714145377278328, 0.05245484411716461, -0.0008531673229299486, -0.010118449106812477, -0.09161978960037231, -0.0239956583827734, -0.057656701654195786, 0.0023240549489855766, -0.05175007879734039, 0.02273714542388916, -0.053663019090890884, 0.003056090557947755, 0.014430955983698368, -0.04231961444020271, -0.05346165597438812, 0.025304513052105904, -0.014430955983698368, -0.015546837821602821, -0.05695193260908127, -0.03198302537202835, 0.0011630762601271272, 0.010277860797941685, 0.005415803287178278, 0.027972562238574028, -0.025220612064003944, -0.03408054634928703, 0.02147863060235977, 0.03470141440629959, 0.03194946423172951, 0.04527292773127556, -0.04627973958849907, 0.009531143121421337, -0.002452004002407193, 0.039735469967126846, -0.037654727697372437, -0.0354733020067215, -0.04349422827363014, 0.004446747712790966, -0.05859639123082161, -0.03554042428731918, -0.012232751585543156, 0.032016586512327194, -0.00702250562608242, -0.046783145517110825, -0.00837330985814333, 0.003551105735823512, -0.013021420687437057, -0.02453262358903885, -0.019616032019257545, -0.005285757128149271, -0.02564011700451374, -0.00840267539024353, 0.017099004238843918, -0.054132863879203796, 0.10685618966817856, 0.019548911601305008, -0.01577337086200714, -0.06332840025424957, -0.033929526805877686, -0.011578325182199478, 0.015253184363245964, 0.027200672775506973, -0.03142927959561348, 0.005461948923766613, 0.03960122540593147, -0.04966933652758598, -0.011259501799941063, 0.03812457248568535, 0.005323512479662895, 0.018005134537816048, 0.029465997591614723, 0.03087553195655346, 0.04591057449579239, -0.06047577038407326, 0.000912422314286232, 0.039903271943330765, -0.04607837647199631, 0.012165631167590618, 0.032570332288742065, 0.0025170270819216967, 0.01222436223179102, 0.014254763722419739, -0.022317640483379364, 0.03778896853327751, -0.05480407178401947, -0.01857566088438034, -0.05903267487883568, 0.005751406773924828, -0.0017724066274240613, 0.05171651765704155, 0.026663707569241524, -0.00122285564430058, -0.023307671770453453, -0.0007047675899229944, -0.040708716958761215, -0.02345869317650795, 0.020320799201726913, -0.058193668723106384, 0.00032931106397882104, -0.0028673133347183466, 0.012576745823025703, 0.05715329572558403, 0.01901194453239441, -0.05581087991595268, -0.07336295396089554, 0.017317146062850952, 0.02047182060778141, -0.021260488778352737, -0.038627974689006805, -0.0012784400023519993, 0.010537954047322273, -0.0021793260239064693, -0.002162545919418335, -0.01785411313176155, -0.02047182060778141, -0.007488155737519264, 0.04772283509373665, -0.03431547060608864, 0.014204422943294048, -0.05487119033932686, 0.02815714292228222, 0.0047655715607106686, 0.012207581661641598, -0.014523246325552464, 0.005034054163843393, -0.018592439591884613, -0.01485045999288559, 0.03226828947663307, -0.03560754284262657, 0.04258809983730316, -0.013852039352059364, -0.025036029517650604, -0.021847795695066452, -0.019079064950346947, -0.08812951296567917, 0.04567565396428108, -0.023928537964820862, 0.048494722694158554, 0.03226828947663307, -0.010714145377278328, 0.007261623162776232, 0.0299861840903759, 0.03314085677266121, -0.012434113770723343, 0.035808905959129333, 0.043057944625616074, 0.006745632737874985, 0.05433422699570656, -0.008146777749061584, 0.03725200146436691, -0.0028316555544734, 0.02862698771059513, -0.02609318122267723, 0.026563026010990143, 0.04580989480018616, 0.03832593187689781, 0.0037021273747086525, 0.04137992486357689 ]
23,403
conexions.proxy
__set_cant_cons_espido
null
def __set_cant_cons_espido(self, novo_cant_cons_espido: int) -> None: self.__cant_cons_espido = novo_cant_cons_espido
(self, novo_cant_cons_espido: int) -> NoneType
[ -0.014621393755078316, 0.0616433285176754, 0.023918282240629196, 0.009683209471404552, -0.008263900876045227, -0.017166070640087128, 0.02492607571184635, -0.0235319621860981, 0.04934825375676155, -0.04256245121359825, -0.007495459169149399, -0.03266928344964981, 0.04447725787758827, -0.09426221996545792, 0.024304604157805443, 0.028234995901584625, 0.041386689990758896, -0.06302064657211304, 0.05861994996666908, -0.006748012732714415, 0.022507373243570328, 0.03134235739707947, -0.03129196539521217, -0.08008593320846558, -0.016603386029601097, 0.0420585535466671, 0.0145206144079566, 0.060904279351234436, 0.04504833742976189, -0.05851916968822479, 0.012840960174798965, 0.035743050277233124, -0.04545145481824875, -0.014310657978057861, 0.04921388253569603, 0.028369367122650146, -0.007848186418414116, 0.03658287972211838, 0.024237416684627533, 0.02202027291059494, -0.06550653278827667, 0.0010875763837248087, -0.04441006854176521, 0.006903380621224642, 0.0034936817828565836, -0.04068123549222946, 0.043032754212617874, 0.07679381221532822, 0.01369758415967226, 0.00805814377963543, 0.018946504220366478, 0.018140271306037903, 0.026958458125591278, -0.01753559522330761, 0.014990918338298798, 0.06339016556739807, 0.027999844402074814, 0.09775590151548386, 0.006185328587889671, -0.01200113259255886, -0.007902774959802628, 0.07820472121238708, -0.021936289966106415, -0.0423944853246212, 0.00596697349101305, 0.04921388253569603, -0.006076151039451361, 0.022339407354593277, 0.05072557181119919, 0.03051932528614998, 0.036011796444654465, -0.01614988036453724, -0.07215796411037445, 0.015074900351464748, 0.05149821192026138, -0.03520556166768074, -0.009406066499650478, -0.003117858897894621, -0.04346946254372597, 0.019887112081050873, 0.027865471318364143, -0.023431183770298958, 0.014201479963958263, 0.02000468783080578, 0.01750200241804123, 0.04971778020262718, 0.024203823879361153, 0.005257319193333387, -0.01829143986105919, 0.0038443095982074738, -0.03880002349615097, 0.04209214821457863, -0.060769908130168915, -0.026924865320324898, 0.0452834889292717, 0.037590671330690384, 0.05593249946832657, -0.037657856941223145, -0.013613601215183735, -0.009733598679304123, 0.022205034270882607, 0.018207456916570663, -0.005593250039964914, -0.034264955669641495, 0.024942871183156967, -0.04605613276362419, 0.001362619805149734, 0.02297767624258995, 0.027680709958076477, -0.04558582976460457, 0.0018675660248845816, 0.08102653920650482, -0.01648581027984619, -0.022725727409124374, -0.01465498749166727, 0.021801916882395744, 0.03216538578271866, -0.015973515808582306, 0.02212105132639408, -0.001309080864302814, 0.034432921558618546, 0.004627448506653309, -0.026706509292125702, -0.013865549117326736, 0.0038800023030489683, 0.027042441070079803, -0.017871525138616562, 0.07907814532518387, 0.0659768357872963, -0.035944610834121704, 0.011505634523928165, -0.09453096240758896, 0.004159244708716869, 0.05300990119576454, -0.016166675835847855, -0.024220621213316917, -0.06174410507082939, 0.04256245121359825, -0.034332141280174255, -0.030939240008592606, -0.03920314088463783, 0.03728833422064781, -0.03473525866866112, -0.020794125273823738, 0.05472315102815628, 0.046727992594242096, -0.03836331143975258, 0.02564832754433155, -0.05989648774266243, 0.04346946254372597, 0.024707719683647156, 0.03480244427919388, -0.05935899540781975, -0.013067713007330894, -0.02442217990756035, 0.06506982445716858, 0.02274252474308014, -0.056805919855833054, 0.04340227693319321, -0.0018213755683973432, -0.03530634194612503, -0.009960352443158627, 0.1009136512875557, 0.008986152708530426, 0.010262690484523773, 0.04760141298174858, -0.021701138466596603, 0.01783793233335018, 0.03065369836986065, 0.06584246456623077, -0.024170231074094772, -0.036280542612075806, 0.024506160989403725, -0.028167808428406715, 0.057007480412721634, -0.011228491552174091, 0.011925548315048218, -0.06295345723628998, 0.0019379016011953354, -0.03665006533265114, -0.017384426668286324, -0.011312474496662617, 0.03910236060619354, -0.01934962160885334, 0.042999159544706345, 0.012899748049676418, 0.002710542641580105, 0.007726411335170269, 0.00207332381978631, -0.05287552997469902, 0.027815081179142, 0.034096989780664444, 0.006571649108082056, 0.017753949388861656, 0.008083337917923927, -0.018610574305057526, 0.027243999764323235, -0.08216870576143265, 0.00276513141579926, -0.037053182721138, -0.029881056398153305, 0.04975137114524841, 0.015645982697606087, -0.009221304208040237, 0.02996503934264183, 0.0308216642588377, -0.033273957669734955, 0.012286674231290817, 0.014982519671320915, -0.039539072662591934, 0.024019062519073486, -0.018140271306037903, 0.025211617350578308, -0.028100622817873955, 0.039707038551568985, -0.025883479043841362, 0.017283646389842033, -0.004556063562631607, 0.0208613108843565, 0.04430929198861122, 0.04222651943564415, -0.04068123549222946, -0.03476885333657265, -0.08613269031047821, 0.042999159544706345, 0.0010697300313040614, -0.0724267065525055, -0.004665241111069918, 0.023280013352632523, 0.039236731827259064, -0.022507373243570328, 0.052069295197725296, -0.08882013708353043, -0.007772602140903473, 0.022557761520147324, -0.010565027594566345, 0.028722094371914864, -0.007369484752416611, -0.07625631988048553, -0.03708677366375923, -0.04353664815425873, 0.0024753911420702934, 0.004887795075774193, 0.018442608416080475, 0.033542703837156296, 0.05055760592222214, 0.042831193655729294, 0.013227280229330063, -0.00796156283468008, 0.05055760592222214, 0.0034222963731735945, -0.07686100155115128, -0.060803499072790146, -0.04763500764966011, -0.0039702835492789745, -0.020911701023578644, -0.027277592569589615, 0.02722720243036747, -0.006722817663103342, 0.002553075086325407, -0.06611120700836182, -0.06496904045343399, -0.020055076107382774, -0.022137848660349846, 0.02257455885410309, 0.05479033663868904, 0.006957969628274441, -0.0015526307979598641, -0.020558973774313927, -0.04958340525627136, 0.00654225517064333, -0.0024333996698260307, 0.003384504234418273, 0.019299231469631195, -0.02432139962911606, -0.024170231074094772, -0.059023067355155945, 0.013437237590551376, 0.0010644812136888504, 0.009053338319063187, 0.04054686427116394, 0.0061391377821564674, 0.02479170262813568, 0.0006713370094075799, -0.08102653920650482, -0.007709614932537079, 0.021734731271862984, -0.01958477310836315, -0.04461162909865379, -0.022440185770392418, -0.028789281845092773, 0.08277337998151779, 0.03846409171819687, 0.008969356305897236, 0.06211363151669502, -0.025077244266867638, 0.0204749908298254, 0.0456194207072258, -0.02492607571184635, 0.020878108218312263, 0.0050683580338954926, -0.053614579141139984, -0.0947997123003006, -0.06463310867547989, 0.03312278911471367, -0.000801510235760361, 0.09211226552724838, -0.006974766030907631, 0.04558582976460457, 0.024069450795650482, 0.015864338725805283, 0.025950664654374123, 0.013445635326206684, 0.033475518226623535, 0.05979570746421814, 0.06980644911527634, 0.05233804136514664, -0.02109646238386631, 0.009464854374527931, 0.06530497223138809, 0.011346067301928997, -0.022557761520147324, -0.02897404320538044, -0.0548575222492218, 0.005845198407769203, 0.030384954065084457, 0.028302181512117386, -0.01371438056230545, 0.009061736986041069, 0.02195308730006218, -0.007348489016294479, -0.0591910295188427, -0.0052741155959665775, -0.003898898372426629, -0.01743481494486332, 0.017720356583595276, 0.03072088398039341, -0.02907482348382473, -0.011278880760073662, 0.023649537935853004, 0.01020390260964632, -0.00619792565703392, -0.0012943838955834508, 0.0060173626989126205, 0.06782445311546326, -0.07450947910547256, -0.008368879556655884, -0.0061475359834730625, 0.006143337115645409, 0.05492470785975456, -0.0673205628991127, 0.034432921558618546, 0.01374797336757183, 0.02023983933031559, 0.014940528199076653, 0.030939240008592606, 0.0477357879281044, 0.004383898805826902, 0.048172496259212494, -0.03829612582921982, -0.0211972426623106, 0.024170231074094772, 0.046627212315797806, -0.02479170262813568, -0.05220366641879082, 0.0331059955060482, -0.0228097103536129, -0.0662119910120964, 0.029645904898643494, -0.002431300235912204, -0.024842092767357826, -0.03533993288874626, 0.0072687058709561825, -0.005626843310892582, 0.04699673876166344, 0.029545126482844353, -0.06093787029385567, 0.03890080377459526, -0.05092712864279747, -0.03577664494514465, -0.006554852239787579, -0.032450929284095764, 0.02034061774611473, 0.018409015610814095, -0.01651940308511257, 0.021566765382885933, 0.0677572712302208, -0.03896798938512802, 0.03648209944367409, 0.04975137114524841, -0.0018444708548486233, -0.019131267443299294, 0.051766958087682724, -0.010245893150568008, 0.04400695115327835, -0.021146852523088455, 0.02270893193781376, -0.008217711001634598, 0.04948262870311737, 0.00909532979130745, 0.021314818412065506, -0.013689185492694378, 0.03641491383314133, 0.041353099048137665, -0.02181871421635151, 0.010741392150521278, -0.03853127732872963, -0.07592038810253143, 0.0015767758013680577, 0.020122263580560684, -0.06718618422746658, -0.005715025123208761, 0.1129399836063385, -0.026891270652413368, -0.027647115290164948, -0.018039491027593613, -0.04891154542565346, -0.016628582030534744, 0.06003085896372795, -0.04068123549222946, -0.02349836938083172, -0.0274287611246109, 0.013840354979038239, 0.026387374848127365, 0.0034474912099540234, -0.01450381800532341, 0.0015484316973015666, -0.015545204281806946, 0.02993144653737545, -0.007449268363416195, -0.024438975378870964, 0.04810531064867973, 0.0566379576921463, -0.04397336021065712, -0.017065292224287987, -0.02030702494084835, -0.008801390416920185, -0.04437647759914398, 0.00274833501316607, 0.0626511201262474, 0.015906330198049545, 0.0070755453780293465, 0.03846409171819687, 0.013160094618797302, 0.019097674638032913, -0.043133530765771866, -0.01504970621317625, 0.05344661325216293, -0.010674205608665943, -0.04575379192829132, 0.0096244215965271, 0.021717935800552368, -0.010279486887156963, -0.004329309798777103, 0.029259584844112396, -0.007197320461273193, -0.027831878513097763, -0.024153433740139008, -0.02558114007115364, -0.012211089953780174, 0.0074198744259774685, 0.0616433285176754, -0.07370324432849884, -0.017653170973062515, 0.006269311066716909, -0.02544676885008812, 0.041386689990758896, -0.019030487164855003, 0.013907540589571, -0.004850002937018871, -0.04928106814622879, -0.05462237074971199, -0.004396496340632439, -0.0313255600631237, -0.015696372836828232, 0.0003120483597740531, 0.02716001681983471, -0.02198668010532856, 0.0181906595826149, 0.0300994124263525, 0.06826116889715195, -0.008331087417900562, 0.056805919855833054, 0.015360441990196705, 0.009389270097017288, -0.02139880135655403, -0.08331087231636047, -0.039740629494190216, -0.041285913437604904, 0.031224779784679413, 0.001970444805920124, -0.04810531064867973, -0.02432139962911606, 0.050322454422712326, 0.013789964839816093, 0.057343412190675735, 0.01921525038778782, -0.04538426920771599, 0.0008980903658084571, -0.024875685572624207, -0.03372746706008911, 0.01541083212941885, -0.007932169362902641, -0.05861994996666908, -0.018106676638126373, -0.05405128747224808, -0.014688580296933651, 0.03480244427919388, -0.036179762333631516, -0.03913595527410507, 0.03846409171819687, -0.025127634406089783, 0.05126306042075157, 0.04447725787758827, 0.01951758749783039, -0.028604518622159958, -0.031627897173166275, -0.026320189237594604, 0.05475674197077751, -0.004774418659508228, 0.011077322997152805, 0.007155328989028931, 0.05814964696764946, 0.04192418232560158, -0.009464854374527931, 0.010640612803399563, -0.01876174286007881, -0.06691744178533554, 0.02966270223259926, 0.044880371540784836, 0.023229625076055527, -0.06302064657211304, 0.029545126482844353, 0.018896115943789482, 0.04195777326822281, 0.006365891080349684, 0.02027343213558197, -0.04783656448125839, 0.04441006854176521, -0.04373820871114731, -0.04340227693319321, -0.013260873965919018, 0.03130876272916794, 0.00017124605074059218, 0.00217095366679132, 0.00587459234520793, -0.003987080417573452, 0.011740786023437977, -0.05821683257818222, -0.022591356188058853, -0.01921525038778782, 0.0041634440422058105, -0.001198853482492268, -0.014033515006303787, 0.017065292224287987, -0.001263940124772489, -0.0015242865774780512, 0.017216460779309273, 0.05972852185368538, 0.060769908130168915, -0.013361653313040733, -0.0409499816596508, 0.06607761234045029, -0.07867502421140671, -0.05848557502031326, -0.029360363259911537, -0.039774224162101746, -0.07988438010215759, 0.03641491383314133, -0.035843830555677414, 0.004715630318969488, -0.028302181512117386, -0.0004007551178801805, 0.04360383376479149, -0.033273957669734955, -0.012479834258556366, -0.046727992594242096, 0.037590671330690384, -0.027277592569589615, 0.0017499902751296759, -0.07645788043737411, 0.02825179137289524, -0.060299601405858994, -0.03846409171819687, 0.04783656448125839, 0.039471883326768875, -0.019433604553341866, -0.005395890679210424, 0.0018759643426164985, -0.004430089145898819, -0.02452295832335949, 0.002301126951351762, -0.017753949388861656, -0.0019515487365424633, 0.0009049139334820211, 0.017518797889351845, -0.00600056629627943, -0.02168434113264084, 0.0015820247353985906, 0.027210405096411705, -0.003117858897894621, 0.02277611754834652, -0.005202730186283588, 0.0020817220211029053, 0.06735415011644363, -0.00807494018226862, -0.022037070244550705, 0.018946504220366478, 0.017031699419021606, -0.0010119919897988439, 0.029326770454645157, 0.03581023961305618, 0.010439054109156132, 0.004371301271021366, -0.0876779779791832, 0.03631413355469704, -0.05334583297371864, 0.0025425772182643414, -0.05673873424530029, -0.008809789083898067, -0.050356049090623856, 0.017065292224287987, 0.013722779229283333, -0.055630162358284, -0.04192418232560158, 0.016670573502779007, -0.010875764302909374, -0.025060448795557022, -0.09204507619142532, -0.004959180485457182, 0.0005046837613917887, 0.005219527054578066, 0.03466807305812836, 0.012614206410944462, -0.03287084400653839, -0.03910236060619354, 0.028890060260891914, 0.04961699992418289, 0.00657584797590971, 0.039707038551568985, -0.05112868919968605, -0.0019389513181522489, -0.03191344067454338, 0.025732310488820076, -0.029259584844112396, -0.04699673876166344, -0.050322454422712326, -0.008364680223166943, -0.0541856586933136, -0.00967481080442667, 0.006680826656520367, 0.02257455885410309, -0.025161227211356163, -0.0708814263343811, -0.022305814549326897, -0.011169703677296638, -0.0017258451553061604, -0.008541043847799301, -0.030049022287130356, -0.019366418942809105, -0.00077474070712924, -0.0036490499041974545, 0.023951875045895576, -0.01750200241804123, 0.07773441821336746, 0.030317766591906548, -0.003514677518978715, -0.04266322776675224, -0.008776195347309113, 0.003115759463980794, 0.001280736643821001, 0.029881056398153305, -0.0406140498816967, 0.018879318609833717, 0.022524168714880943, -0.025161227211356163, -0.011656803078949451, 0.017921915277838707, -0.012513427063822746, 0.012295071966946125, 0.01825784705579281, 0.04612331837415695, 0.06154254823923111, -0.07094861567020416, -0.020088670775294304, 0.018912911415100098, -0.02930997498333454, 0.03226616606116295, 0.028755689039826393, -0.03752348572015762, 0.012261479161679745, 0.010161911137402058, -0.005639440380036831, 0.04615690931677818, -0.05435362458229065, -0.022624948993325233, -0.06191207095980644, 0.011472041718661785, -0.011992734856903553, 0.05321146175265312, -0.009951953776180744, 0.0007038802723400295, -0.011908751912415028, -0.026353782042860985, -0.04572020098567009, -0.025010058656334877, 0.0015200874768197536, -0.06154254823923111, -0.03211499750614166, -0.002275932114571333, 0.008415070362389088, 0.042999159544706345, 0.015738364309072495, -0.04874357953667641, -0.06752211600542068, 0.045182712376117706, 0.022624948993325233, -0.019769536331295967, -0.04054686427116394, 0.011346067301928997, 0.007197320461273193, 0.020357415080070496, 0.030049022287130356, -0.031594306230545044, -0.0211972426623106, -0.0331563837826252, 0.04746704176068306, -0.03745630010962486, 0.03812815994024277, -0.0627518966794014, 0.0406140498816967, 0.0007889128173701465, -0.0076130349189043045, -0.034600887447595596, -0.019299231469631195, -0.02643776498734951, 0.03517197072505951, 0.06550653278827667, -0.055462196469306946, 0.03890080377459526, -0.012614206410944462, -0.012051522731781006, -0.033307552337646484, -0.012547020800411701, -0.06863068789243698, 0.06117302179336548, -0.024959668517112732, 0.028033437207341194, -0.0020008885767310858, 0.002429200569167733, -0.012966934591531754, 0.04232729971408844, 0.053782541304826736, -0.010934552177786827, 0.04165543615818024, 0.011883556842803955, -0.013756372034549713, 0.06967207789421082, -0.004383898805826902, 0.0388336144387722, -0.031594306230545044, 0.02410304546356201, -0.06674947589635849, 0.021449189633131027, 0.07148610055446625, 0.03075447678565979, -0.0040248725563287735, 0.03065369836986065 ]
23,404
conexions.proxy
__set_cant_cons_totais
null
def __set_cant_cons_totais(self, novo_cant_cons_totais: int) -> None: self.__cant_cons_totais = novo_cant_cons_totais
(self, novo_cant_cons_totais: int) -> NoneType
[ -0.030458422377705574, 0.05282844230532646, 0.060612261295318604, 0.02067788504064083, -0.03186289593577385, -0.0005457134102471173, -0.010601223446428776, -0.009949751198291779, 0.019374940544366837, -0.029460063204169273, -0.017107481136918068, -0.009298279881477356, 0.04419855773448944, -0.08474209904670715, -0.006392038427293301, 0.02081325650215149, 0.026008108630776405, -0.05543433129787445, 0.0522531159222126, -0.0033504264429211617, 0.013477852568030357, 0.05404677987098694, -0.06386116147041321, -0.06051073223352432, -0.027852535247802734, 0.030779927968978882, 0.0035725191701203585, 0.04335248842835426, 0.05404677987098694, -0.017513593658804893, 0.007809201255440712, 0.057024937123060226, -0.036347050219774246, -0.024637479335069656, 0.0371592752635479, -0.013435549102723598, 0.028174040839076042, 0.02323300763964653, -0.011557279154658318, 0.05201621726155281, -0.02546662651002407, -0.026295771822333336, -0.012386425398290157, 0.012157986871898174, -0.0011495939688757062, -0.06365810334682465, 0.018410423770546913, 0.0766875371336937, -0.011599582619965076, -0.008067252114415169, 0.02622808702290058, 0.015584560111165047, 0.034011904150247574, -0.006628937553614378, -0.009086762554943562, 0.06690700352191925, 0.024789772927761078, 0.09672241657972336, -0.0035619433037936687, 0.030306130647659302, 0.0010475370800122619, 0.07946263998746872, -0.024248288944363594, -0.06907293200492859, -0.02944314293563366, 0.0008926010341383517, -0.031118355691432953, 0.050662510097026825, 0.0735740140080452, 0.028427861630916595, 0.02654959261417389, 0.013283256441354752, -0.03225208446383476, 0.024637479335069656, 0.05688956752419472, -0.040238961577415466, 0.0036571258679032326, -0.027141839265823364, -0.04822583496570587, 0.028580153360962868, 0.011768796481192112, -0.04138961434364319, 0.04707518592476845, 0.025754289701581, 0.0427771620452404, 0.017885863780975342, 0.011709571816027164, -0.004661831073462963, 0.018359661102294922, 0.022014671936631203, -0.05814174562692642, 0.03583941236138344, -0.03370732069015503, -0.018461188301444054, -0.007140808273106813, 0.042269524186849594, 0.017014414072036743, -0.029696961864829063, -0.00936596468091011, -0.01981489546597004, 0.05330223962664604, 0.0031135277822613716, -0.0023182244040071964, -0.01786894164979458, 0.005579813849180937, -0.045450735837221146, 0.004061122890561819, -0.013537077233195305, 0.03414727747440338, -0.008079943247139454, -0.04017127677798271, 0.057871002703905106, -0.004278985317796469, -0.010034358128905296, -0.012657166458666325, 0.04054354503750801, 0.00849874597042799, -0.03243822231888771, 0.024688243865966797, 0.024095997214317322, 0.011134245432913303, 0.026481905952095985, 0.027294130995869637, 0.019188806414604187, 0.02072864957153797, 0.05252385884523392, 0.019696446135640144, 0.07161113619804382, 0.05780331790447235, -0.009078302420675755, 0.06873451173305511, -0.1077551320195198, 0.03590709716081619, 0.05939392372965813, -0.006502027157694101, -0.0183935035020113, -0.05157626420259476, 0.035771727561950684, -0.00834222324192524, -0.025331255048513412, -0.015804536640644073, 0.04683828726410866, -0.04182956740260124, -0.002519165398553014, 0.019476469606161118, 0.04775203764438629, -0.045349206775426865, 0.008033408783376217, -0.10254335403442383, 0.005076403729617596, -0.009272897616028786, -0.009019077755510807, -0.05760026350617409, -0.012496414594352245, -0.03275972604751587, 0.0649779662489891, 0.006637398153543472, -0.036719322204589844, 0.002519165398553014, 0.007250797003507614, -0.024112917482852936, 0.020373301580548286, 0.09530102461576462, -0.0018042385345324874, -0.01180263888090849, 0.043149434030056, -0.0002353124727960676, -0.017581278458237648, -0.01095657143741846, 0.02423136681318283, -0.00474220747128129, -0.0371592752635479, 0.041423454880714417, -0.005545970983803272, 0.08047792315483093, -0.0404081754386425, 0.011633425019681454, -0.08765257149934769, -0.02370680682361126, -0.016989031806588173, 0.012784076854586601, -0.019425705075263977, 0.04213415086269379, -0.026481905952095985, 0.022488469257950783, -0.04122040048241615, -0.002622808562591672, -0.008033408783376217, 0.0019216303480789065, -0.0546221062541008, 0.013004054315388203, 0.02338530123233795, -0.0072042630054056644, 0.019307255744934082, 0.03763307258486748, -0.03257359191775322, 0.04291253536939621, -0.06755001097917557, 0.0104743130505085, -0.043927814811468124, -0.046296801418066025, 0.030593793839216232, 0.024349818006157875, -0.023249929770827293, 0.06998668611049652, -0.0011569970520213246, -0.03157523274421692, 0.025483546778559685, 0.0024155222345143557, -0.044401612132787704, 0.02431597374379635, 0.010448930785059929, 0.02773408591747284, -0.0316767618060112, 0.012234133668243885, -0.04267563670873642, 0.034688759595155716, -0.014645424671471119, -0.006755847483873367, 0.02338530123233795, 0.06453801691532135, -0.03140601888298988, -0.002220926573500037, -0.07316789776086807, 0.033216603100299835, 0.0023309155367314816, -0.037057746201753616, 0.023977547883987427, 0.03262435644865036, 0.03763307258486748, -0.02773408591747284, 0.056551139801740646, -0.09442111104726791, -0.004253603518009186, 0.0017333803698420525, -0.021033233031630516, 0.028952423483133316, -0.024569794535636902, -0.06250745058059692, -0.04423239827156067, -0.08264385163784027, 0.0036486652679741383, 0.020745569840073586, 0.0569910928606987, 0.005753257777541876, 0.0549943745136261, 0.016032975167036057, 0.011988773941993713, -0.020559435710310936, 0.07851504534482956, -0.009687470272183418, -0.06629783660173416, -0.05404677987098694, -0.03407959267497063, 0.007923420518636703, 0.012682548724114895, -0.024739008396863937, 0.04941033199429512, -0.01991642452776432, -0.00001963140493899118, -0.034164197742938995, -0.061898283660411835, -0.028004826977849007, -0.0022801514714956284, 0.014374683611094952, 0.052083902060985565, 0.02289458177983761, 0.00020318834867794067, -0.06457185745239258, -0.024671323597431183, 0.03590709716081619, 0.011599582619965076, 0.030830692499876022, -0.012555639259517193, -0.025212805718183517, -0.03062763623893261, -0.011506515555083752, -0.014789256267249584, -0.0162106491625309, -0.0010454219300299883, 0.029476985335350037, -0.008926009759306908, 0.020610200241208076, -0.03247206285595894, -0.0704604834318161, -0.017852019518613815, 0.02384217642247677, -0.0314229391515255, -0.07127270847558975, -0.0019364365143701434, -0.018528873100876808, 0.027666401118040085, 0.03010307438671589, 0.039663635194301605, 0.06088300421833992, -0.049376487731933594, -0.004168996587395668, 0.03499334305524826, -0.030306130647659302, 0.05831095948815346, -0.016464469954371452, -0.06589172035455704, -0.06088300421833992, -0.037666916847229004, 0.03489181399345398, -0.006971594411879778, 0.09760232269763947, -0.010042819194495678, 0.07188187539577484, 0.044164713472127914, 0.033165838569402695, 0.03039073757827282, 0.050662510097026825, 0.03851298242807388, 0.048665791749954224, 0.0720849335193634, 0.029460063204169273, -0.02896934375166893, 0.007991105318069458, 0.07330327481031418, 0.016955189406871796, -0.02123628929257393, -0.0522531159222126, -0.04649985954165459, -0.00972131360322237, 0.018985750153660774, 0.05309918522834778, 0.02020408771932125, -0.012513335794210434, -0.0073227123357355595, -0.038140714168548584, -0.03160907328128815, -0.010102043859660625, 0.005994386970996857, -0.03523024171590805, 0.05259154364466667, 0.021033233031630516, -0.05330223962664604, -0.016794435679912567, 0.00255512329749763, 0.02262384071946144, 0.016176806762814522, 0.0026058873627334833, -0.0016752132214605808, 0.06122143194079399, -0.05577275529503822, 0.012817919254302979, -0.011582661420106888, 0.01132884155958891, 0.055738914757966995, -0.0677192285656929, 0.05039176717400551, 0.009179830551147461, 0.007339634001255035, 0.014087020419538021, 0.03502718731760979, 0.07391244173049927, -0.02044098637998104, 0.024535952135920525, -0.04839504882693291, -0.023199165239930153, 0.05878475680947304, 0.05983388051390648, -0.018528873100876808, -0.00042329804273322225, 0.023588355630636215, -0.019797975197434425, -0.036583948880434036, -0.0011178664863109589, 0.0009222133667208254, -0.015906065702438354, -0.02233617752790451, 0.012115683406591415, 0.00615090923383832, 0.05915702506899834, 0.02764947898685932, -0.061526015400886536, 0.024688243865966797, -0.0522531159222126, 0.009374425746500492, -0.008164549246430397, -0.0455184206366539, 0.004424931947141886, 0.019848739728331566, -0.02912163734436035, 0.019121121615171432, 0.022911502048373222, -0.035061027854681015, 0.033876534551382065, 0.059292398393154144, 0.02788637764751911, -0.031236805021762848, 0.029409298673272133, -0.021591637283563614, 0.042506422847509384, -0.010728133842349052, 0.02512819878757, -0.028512468561530113, 0.04111887142062187, 0.006404729560017586, 0.021608559414744377, -0.047345925122499466, 0.03736233338713646, 0.0384114570915699, -0.02957851253449917, 0.0061424486339092255, -0.022589996457099915, -0.0766875371336937, 0.013723211362957954, 0.009052920155227184, -0.09448879957199097, 0.007809201255440712, 0.11919396370649338, -0.016092199832201004, -0.011075020767748356, -0.02736181579530239, -0.049850285053253174, -0.05922470986843109, 0.06886988133192062, -0.0542498342692852, -0.008308380842208862, -0.031118355691432953, 0.011244234628975391, 0.024095997214317322, 0.04673675820231438, -0.015669167041778564, 0.009577482007443905, -0.0229453444480896, 0.00021891991491429508, 0.015584560111165047, 0.015093840658664703, 0.02423136681318283, 0.0241298396140337, -0.03372424468398094, -0.0106942905113101, -0.010110503993928432, -0.02583889476954937, -0.045213837176561356, 0.013943188823759556, 0.05800637602806091, 0.011692650616168976, 0.011100403033196926, 0.06264282017946243, 0.01736130192875862, -0.0021997750736773014, -0.038242243230342865, 0.007487695664167404, 0.0003003538877237588, -0.034688759595155716, -0.027514109387993813, -0.03607631102204323, 0.027226446196436882, -0.0053344545885920525, -0.006392038427293301, 0.01176033541560173, -0.019764132797718048, -0.052083902060985565, -0.049376487731933594, -0.03385961428284645, 0.014543897472321987, 0.04006974771618843, 0.058615542948246, -0.047955095767974854, 0.010372784920036793, -0.008447982370853424, -0.029764648526906967, 0.02565276063978672, -0.010389706119894981, 0.00256569916382432, -0.009848223067820072, -0.04646601527929306, -0.03243822231888771, -0.033453501760959625, -0.02626192942261696, -0.02323300763964653, -0.012386425398290157, 0.028563233092427254, -0.04968107119202614, -0.007800740655511618, 0.0020125824958086014, 0.08860016614198685, 0.02186237834393978, 0.04998565837740898, -0.0017185742035508156, 0.007936111651360989, 0.008689111098647118, -0.09699315577745438, -0.03333505243062973, -0.022454626858234406, 0.0034625304397195578, -0.025111278519034386, -0.031169120222330093, -0.02352067083120346, 0.057634104043245316, -0.012987133115530014, 0.04778588190674782, 0.03550098463892937, -0.03888525441288948, 0.002800482790917158, -0.008849863894283772, -0.033775005489587784, 0.04897037521004677, 0.003428687807172537, -0.03983284905552864, -0.03301354497671127, -0.02455287240445614, -0.02431597374379635, 0.003183328313753009, -0.03550098463892937, -0.052557699382305145, 0.027378737926483154, -0.029375456273555756, 0.016718290746212006, 0.05106862261891365, 0.02199774980545044, -0.04646601527929306, -0.037903815507888794, -0.028427861630916595, 0.05110246688127518, -0.00940826814621687, -0.0054529039189219475, 0.015931447967886925, 0.029883097857236862, 0.007724594324827194, 0.004852196201682091, 0.019984109327197075, -0.004213415086269379, -0.083794504404068, 0.03162599727511406, 0.03939289227128029, 0.03135525435209274, -0.07276178896427155, 0.01944262720644474, 0.022911502048373222, 0.02555123344063759, -0.01642216555774212, 0.029747726395726204, -0.06826070696115494, 0.025855816900730133, -0.0076146055944263935, -0.039900533854961395, -0.012208751402795315, 0.07276178896427155, -0.006658549886196852, 0.006214364431798458, 0.024823615327477455, -0.010389706119894981, 0.014510054141283035, -0.025212805718183517, 0.0096959313377738, -0.005592504981905222, 0.007542690262198448, -0.02981541119515896, -0.0013494773302227259, -0.006485105957835913, 0.013511694967746735, -0.01335094217211008, -0.008816021494567394, 0.10274641215801239, 0.05316687002778053, 0.003022575518116355, -0.05919086933135986, 0.046533700078725815, -0.05848017334938049, -0.03154138848185539, -0.025855816900730133, -0.02025485225021839, -0.060341522097587585, 0.018748851493000984, 0.01043200958520174, 0.0010581129463389516, -0.026008108630776405, -0.016456009820103645, 0.043454017490148544, -0.036008626222610474, -0.02091478370130062, -0.053031500428915024, 0.0283094123005867, -0.04260794818401337, -0.024163682013750076, -0.05712646618485451, 0.04223567992448807, -0.061052218079566956, -0.017242852598428726, 0.07614605873823166, 0.038614511489868164, -0.040848128497600555, -0.012234133668243885, 0.023588355630636215, 0.007170420605689287, -0.06325199455022812, 0.008046099916100502, -0.03495950251817703, -0.00641319015994668, -0.022302335128188133, 0.03328428789973259, -0.04182956740260124, -0.028715524822473526, -0.024485187605023384, 0.03475644439458847, -0.006015538703650236, 0.005812482442706823, -0.05892012640833855, 0.030830692499876022, 0.04220183566212654, 0.018275054171681404, 0.00282798008993268, 0.01093118917196989, 0.02915547974407673, 0.01807199791073799, 0.02678649127483368, 0.0451461523771286, 0.01773357018828392, -0.006709313951432705, -0.0917813777923584, -0.013613223098218441, -0.03688853606581688, -0.03959595039486885, -0.036719322204589844, 0.01045739185065031, -0.08054560422897339, 0.006125527434051037, 0.010000515729188919, -0.033267367631196976, -0.05475747585296631, 0.031135277822613716, -0.021608559414744377, -0.01612604223191738, -0.07912421226501465, -0.03830992802977562, 0.004797201603651047, 0.006083223968744278, 0.019374940544366837, 0.019713368266820908, -0.024789772927761078, -0.05181316286325455, 0.012487953528761864, 0.02915547974407673, 0.02370680682361126, 0.012098762206733227, -0.03199826553463936, 0.016752133145928383, -0.008739875629544258, 0.05458826199173927, -0.035771727561950684, -0.056348081678152084, -0.047955095767974854, 0.009839762933552265, -0.025280490517616272, -0.007580763194710016, -0.012707930989563465, 0.03091529943048954, 0.002210350940003991, -0.05025639757514, -0.016582919284701347, -0.008942931890487671, -0.0047083646059036255, -0.010465852916240692, -0.0054909768514335155, -0.02081325650215149, -0.02228541299700737, -0.024062154814600945, -0.0023943705018609762, -0.019662603735923767, 0.08535127341747284, -0.0012193945003673434, -0.003635974368080497, -0.04839504882693291, -0.01336786337196827, -0.014992312528192997, 0.0036042467691004276, 0.04660138860344887, -0.03336889296770096, 0.004450314212590456, 0.04284484684467316, -0.0037459630984812975, -0.010855043306946754, 0.027581794187426567, 0.016608301550149918, 0.01704825647175312, 0.026143480092287064, 0.04206646606326103, 0.035061027854681015, -0.05628039687871933, -0.0013061163481324911, 0.0522531159222126, -0.06264282017946243, 0.04775203764438629, 0.023029951378703117, 0.0032954320777207613, 0.01498385239392519, 0.017462829127907753, -0.005592504981905222, 0.03807302936911583, -0.04524768143892288, 0.013596301898360252, -0.04575531929731369, 0.025398939847946167, -0.0003297018411103636, 0.04609374701976776, 0.010068200528621674, -0.029240086674690247, -0.034536466002464294, -0.01607527956366539, -0.05600965395569801, -0.034214962273836136, 0.01986565999686718, -0.061762914061546326, -0.023876018822193146, 0.028935501351952553, 0.019950266927480698, 0.05915702506899834, 0.011616503819823265, -0.049714915454387665, -0.07946263998746872, 0.09387962520122528, 0.022742290049791336, -0.008570661768317223, -0.042506422847509384, -0.016650604084134102, 0.015085380524396896, 0.00023901401436887681, 0.024958984926342964, 0.008481824770569801, -0.011032717302441597, -0.0029083562549203634, 0.060950689017772675, -0.04430008307099342, 0.012267976067960262, -0.05902165547013283, 0.0455184206366539, 0.011015796102583408, 0.0031706371810287237, -0.05140705034136772, -0.01778433471918106, 0.005194853059947491, 0.004266294185072184, 0.02741258032619953, -0.032979704439640045, 0.044401612132787704, -0.016819817945361137, -0.027158761397004128, -0.019831817597150803, 0.006810841616243124, -0.05722799152135849, 0.014408526010811329, -0.023114558309316635, 0.04673675820231438, 0.030982984229922295, -0.01849503070116043, -0.022200806066393852, 0.03199826553463936, 0.014763874933123589, 0.00026241305749863386, 0.03583941236138344, 0.034451860934495926, 0.02123628929257393, 0.0178350992500782, 0.014577739872038364, 0.03793765977025032, 0.00013946890248917043, 0.01649831235408783, -0.03081377223134041, 0.023960625752806664, 0.05330223962664604, 0.027801772579550743, -0.0007154556806199253, 0.008088403381407261 ]
23,405
conexions.proxy
__set_ligazon
null
def __set_ligazon(self, nova_ligazon: str) -> None: self.__ligazon = nova_ligazon
(self, nova_ligazon: str) -> NoneType
[ 0.0007311093504540622, 0.030198322609066963, 0.040609750896692276, 0.040886007249355316, 0.0017093389760702848, -0.008317919448018074, -0.002723719459027052, 0.05007154494524002, 0.011801345273852348, 0.0065567828714847565, -0.06826996058225632, -0.001485959510318935, 0.015401316806674004, -0.029922066256403923, -0.013873271644115448, -0.023861682042479515, -0.047654300928115845, -0.029248690232634544, 0.02380988374352455, -0.02349909394979477, 0.012224364094436169, -0.011628684587776661, 0.014494849368929863, -0.04136945679783821, 0.008650291711091995, 0.01730058342218399, -0.030543643981218338, 0.0736224353313446, 0.08294610679149628, -0.029680341482162476, 0.022014213725924492, -0.041542116552591324, -0.03943565860390663, 0.0006598868640139699, 0.060085855424404144, -0.03701841086149216, -0.008210007101297379, 0.009876180440187454, -0.020719259977340698, 0.02073652669787407, -0.0056287324987351894, -0.0370529443025589, -0.019424306228756905, 0.021634360775351524, -0.03249470517039299, -0.02156529761850834, 0.02339549921452999, 0.019320709630846977, -0.004010040313005447, 0.029628543183207512, -0.009245970286428928, 0.02543289214372635, -0.0026481805834919214, -0.0439593642950058, -0.05321396887302399, 0.02047753520309925, 0.06713040173053741, 0.07479652762413025, 0.015116427093744278, -0.041300393640995026, -0.04247448220849037, -0.00650066789239645, -0.05431899428367615, -0.03791624680161476, 0.03460116684436798, 0.003979824483394623, 0.013312124647200108, 0.041542116552591324, 0.06485128402709961, 0.016014261171221733, 0.013053134083747864, 0.029904799535870552, -0.01763726957142353, 0.00116545835044235, -0.013346657156944275, 0.05407727137207985, -0.06084556132555008, 0.008451731875538826, -0.021634360775351524, -0.0239307451993227, -0.014978298917412758, -0.02462138794362545, 0.033271677792072296, 0.005378374829888344, -0.05559668317437172, -0.013191262260079384, 0.014710674993693829, 0.015323619358241558, 0.058980830013751984, -0.056218259036540985, -0.03791624680161476, 0.05687436833977699, -0.024414194747805595, -0.009504960849881172, -0.046514738351106644, 0.020166747272014618, 0.01493513397872448, -0.031217020004987717, 0.0052747782319784164, 0.0300256609916687, 0.03663855791091919, -0.0032740747556090355, 0.0014978299150243402, -0.006366855930536985, -0.009125107899308205, -0.04409749433398247, -0.025277497246861458, 0.02546742372214794, 0.02864437736570835, -0.007269007153809071, -0.07894038408994675, -0.03221844881772995, -0.005818658974021673, -0.012845941819250584, -0.01396823488175869, 0.03929753229022026, 0.036016982048749924, -0.03884861245751381, 0.01826748065650463, 0.00886611733585596, 0.03391052410006523, 0.014762473292648792, -0.024051608517766, -0.0062718926928937435, -0.01949337124824524, 0.02752208523452282, 0.009893447160720825, 0.057599544525146484, 0.0782497376203537, -0.016014261171221733, 0.018871793523430824, 0.01230206061154604, -0.02919689193367958, 0.044028427451848984, -0.011611418798565865, -0.013320758007466793, -0.04316512495279312, 0.04423562064766884, -0.04872479289770126, 0.02229047194123268, -0.05266145244240761, -0.0031294715590775013, 0.011835877783596516, -0.020529333502054214, -0.015720738098025322, 0.04686006158590317, -0.052903179079294205, 0.012043070048093796, 0.004441691562533379, -0.018699131906032562, 0.060120388865470886, 0.0034078867174685, 0.020822856575250626, -0.008076194673776627, -0.07728283852338791, 0.016704903915524483, -0.05307583883404732, -0.06585271656513214, 0.07389869540929794, 0.013087666593492031, -0.04275074228644371, 0.03746733069419861, 0.017015691846609116, 0.016368215903639793, -0.028696175664663315, 0.008723671548068523, 0.02973213791847229, -0.006586998235434294, 0.02185882069170475, 0.01293227169662714, -0.002281276974827051, -0.052488792687654495, -0.02322283759713173, 0.03057817555963993, 0.033029954880476, 0.0439593642950058, -0.002089192159473896, -0.0007737348787486553, -0.017870362848043442, -0.01797395758330822, -0.008667557500302792, 0.02626166306436062, 0.016799867153167725, -0.017904894426465034, 0.0192171148955822, 0.004158959724009037, 0.02696957066655159, -0.009470428340137005, 0.0012550260871648788, 0.00030485368915833533, 0.046238481998443604, 0.02766021341085434, -0.017956692725419998, -0.06295201927423477, 0.0464802086353302, 0.011412858963012695, 0.019717829301953316, -0.04361404478549957, -0.07258647680282593, -0.00967762153595686, 0.007104979828000069, 0.07465840131044388, -0.05273051932454109, -0.02503577247262001, 0.016247352585196495, 0.0247422493994236, -0.030146524310112, 0.023447295650839806, 0.0476197674870491, -0.00041006869287230074, 0.05100391432642937, 0.021668892353773117, -0.0308371651917696, 0.03261556848883629, 0.03472202643752098, -0.0702037587761879, -0.06826996058225632, 0.05974053591489792, 0.018077554181218147, 0.005598516669124365, 0.00798986479640007, -0.03494648635387421, -0.020149480551481247, -0.07541810721158981, -0.003537381999194622, -0.0032719166483730078, 0.016437280923128128, -0.020840123295783997, 0.04734351113438606, 0.008352451957762241, -0.06751025468111038, -0.005840241443365812, -0.07928570359945297, -0.00925460271537304, -0.0031618454959243536, -0.06661242246627808, 0.06530020385980606, 0.015202756971120834, -0.07624687999486923, -0.006863255053758621, -0.007079080678522587, -0.013156730681657791, -0.02239406667649746, 0.005620099604129791, 0.0011039481032639742, 0.018906325101852417, -0.04043709114193916, 0.04140399023890495, -0.0015981887700036168, 0.047654300928115845, -0.012103501707315445, -0.06851168721914291, -0.000020587742255884223, 0.039884574711322784, 0.015306353569030762, -0.027142230421304703, 0.00636253971606493, 0.03016378916800022, 0.001760057988576591, -0.040989603847265244, -0.04551330953836441, -0.08992159366607666, -0.04465000703930855, -0.05804846063256264, 0.024949442595243454, 0.05079672113060951, 0.04803415387868881, -0.01947610452771187, 0.0370529443025589, -0.06374625861644745, 0.10145531594753265, 0.05279958248138428, -0.033806927502155304, 0.005654631648212671, 0.033945053815841675, -0.01604016125202179, -0.009979777038097382, 0.007480516564100981, -0.0019359559519216418, -0.012966804206371307, 0.05397367477416992, -0.016575409099459648, 0.006008585449308157, -0.0017438711365684867, -0.06391891837120056, -0.02146170102059841, 0.0038050059229135513, 0.008831584826111794, -0.02588181011378765, -0.036327771842479706, 0.028799772262573242, 0.07327711582183838, -0.00483881076797843, 0.015435849316418171, 0.053179435431957245, -0.016843032091856003, 0.020149480551481247, 0.11664943397045135, -0.04164571315050125, -0.03183859586715698, 0.015832968056201935, -0.07583249360322952, -0.03180406615138054, -0.033375274389982224, 0.0046402509324252605, 0.016143757849931717, 0.07300086319446564, -0.01092077698558569, 0.025087570771574974, 0.011456024833023548, -0.019890490919351578, 0.023999810218811035, -0.0017827197443693876, -0.015971096232533455, 0.03798530995845795, 0.040022704750299454, 0.033150818198919296, 0.016212821006774902, 0.02460412122309208, 0.007847419939935207, 0.039642851799726486, -0.013346657156944275, -0.058290187269449234, -0.003015083959326148, 0.00792080070823431, -0.015712106600403786, 0.045029859989881516, 0.03239111229777336, -0.0345320999622345, 0.06284842640161514, 0.011050271801650524, -0.046238481998443604, -0.0312860831618309, 0.011766813695430756, -0.0007796700811013579, 0.06322827935218811, 0.013398455455899239, 0.017093390226364136, -0.03622417524456978, -0.042819805443286896, -0.0190962515771389, 0.040609750896692276, -0.0616743303835392, -0.024034341797232628, -0.003988457843661308, 0.014917867258191109, -0.01611785776913166, -0.009487695060670376, 0.004022989887744188, 0.058566443622112274, -0.09026691317558289, 0.02791920304298401, 0.012172565795481205, 0.0046877325512468815, -0.002583432709798217, 0.00390644371509552, 0.014745207503437996, 0.008352451957762241, 0.005520819686353207, 0.008192741312086582, -0.10000496357679367, -0.04178384318947792, 0.050278738141059875, -0.026935039088129997, 0.009504960849881172, -0.01961423270404339, 0.011991271749138832, -0.028592579066753387, 0.03510187938809395, 0.015789803117513657, 0.012509253807365894, -0.04136945679783821, -0.0071654110215604305, -0.006979800760746002, 0.05873910337686539, -0.004700682125985622, -0.0039841411635279655, -0.017766766250133514, -0.06226137652993202, 0.01347615197300911, 0.026347992941737175, -0.01424449123442173, 0.1210695430636406, 0.04292340204119682, 0.01266464777290821, 0.016402747482061386, 0.08978345990180969, 0.0058143422938883305, -0.008818634785711765, -0.02643432281911373, -0.016463179141283035, -0.030232854187488556, 0.05873910337686539, 0.030785368755459785, 0.04454641044139862, -0.03510187938809395, -0.06568005681037903, -0.043510448187589645, 0.03953925520181656, 0.0050762188620865345, -0.0035654394887387753, -0.02712496556341648, -0.05514776334166527, 0.0074330344796180725, -0.037847183644771576, -0.016618574038147926, -0.007929434068500996, 0.035205475986003876, -0.01072221715003252, -0.047101784497499466, -0.04789602383971214, 0.01168911624699831, 0.027470286935567856, -0.04596222564578056, 0.04578956589102745, 0.03482562303543091, 0.04851760342717171, 0.06478222459554672, 0.016230087727308273, 0.016420014202594757, -0.020771058276295662, -0.017050225287675858, 0.024932175874710083, 0.030509110540151596, 0.04202556610107422, -0.031009826809167862, 0.004670466762036085, -0.056218259036540985, 0.03953925520181656, -0.038779549300670624, 0.012750978581607342, 0.032701898366212845, 0.04824134334921837, -0.038365162909030914, 0.017585473135113716, -0.043061528354883194, -0.016843032091856003, -0.05507870018482208, -0.03432490676641464, 0.03387599065899849, 0.059809599071741104, -0.044615473598241806, 0.012966804206371307, 0.021168177947402, -0.010126538574695587, 0.02724582701921463, -0.018440142273902893, 0.021530764177441597, 0.061467140913009644, -0.06789010763168335, -0.02945588156580925, 0.009591290727257729, -0.028109129518270493, 0.024448728188872337, 0.0239307451993227, 0.007122245617210865, -0.09841648489236832, -0.03000839613378048, 0.013450252823531628, 0.0520053431391716, -0.045167986303567886, 0.03199399262666702, -0.027263093739748, 0.023689020425081253, 0.002624439774081111, 0.01585886813700199, 0.0052747782319784164, 0.012750978581607342, -0.05618372932076454, -0.045858629047870636, -0.03223571553826332, -0.10504665225744247, 0.01866460032761097, -0.03891767933964729, 0.04340685158967972, 0.012466087937355042, 0.028696175664663315, -0.02159982919692993, -0.012466087937355042, -0.011974005959928036, -0.04389030113816261, 0.01737827993929386, 0.035050082951784134, 0.008762520737946033, 0.006384122185409069, 0.010903511196374893, -0.031476009637117386, 0.023343700915575027, -0.0002488739264663309, 0.006043117493391037, -0.01897539012134075, 0.061087287962436676, -0.022601259872317314, 0.02298111282289028, 0.02280845306813717, 0.08391300588846207, -0.008106410503387451, -0.033686064183712006, 0.003010767512023449, -0.0203566737473011, -0.041265860199928284, 0.007471883203834295, -0.018215682357549667, -0.009703520685434341, 0.03192492574453354, -0.0317695327103138, -0.019959554076194763, 0.027349423617124557, -0.057910334318876266, -0.029801202937960625, 0.008054612204432487, 0.008421516045928001, 0.057634077966213226, 0.038814082741737366, -0.051107510924339294, 0.01098984107375145, -0.017110655084252357, 0.020028619095683098, 0.009237336926162243, 0.011611418798565865, 0.0056287324987351894, -0.03833063319325447, 0.044339217245578766, -0.05518229678273201, -0.016713537275791168, 0.003250333946198225, 0.03605151176452637, -0.001747108530253172, 0.017015691846609116, -0.0021571770776063204, 0.00988481380045414, -0.02752208523452282, -0.005330893211066723, -0.0004847983072977513, 0.026900505647063255, 0.07244835048913956, -0.019890490919351578, -0.02336096577346325, 0.07693751901388168, 0.007994181476533413, -0.03853782266378403, -0.08287703990936279, -0.04768883064389229, 0.02225593850016594, 0.00574527820572257, -0.020028619095683098, -0.022912049666047096, -0.018422875553369522, 0.0025035773869603872, -0.0016748069319874048, 0.04409749433398247, -0.005283411592245102, 0.026175333186984062, -0.023999810218811035, -0.05466431379318237, 0.026796910911798477, -0.02489764429628849, -0.02892063371837139, 0.044615473598241806, 0.04689459130167961, -0.011844510212540627, -0.011706382036209106, 0.039746448397636414, 0.032166652381420135, 0.010540924035012722, 0.018733665347099304, -0.02213507704436779, 0.011542354710400105, 0.05065859109163284, 0.0041352189145982265, 0.05625279247760773, -0.04772336408495903, -0.01383873913437128, 0.026865974068641663, -0.05311037227511406, 0.05818659067153931, -0.003010767512023449, 0.03166593611240387, -0.027418488636612892, -0.019735096022486687, -0.04440828040242195, 0.048897456377744675, -0.03361700102686882, 0.007014332804828882, -0.02296384796500206, 0.05739235132932663, -0.013976868242025375, 0.09551578760147095, -0.017749499529600143, -0.01574663817882538, -0.03323714807629585, -0.012474721297621727, 0.0057323286309838295, -0.03232204541563988, -0.04202556610107422, 0.008451731875538826, 0.02477678284049034, -0.07693751901388168, 0.04824134334921837, 0.02643432281911373, -0.0190962515771389, 0.008840218186378479, -0.0727246031165123, -0.008516479283571243, 0.010489125736057758, 0.0073639703914523125, -0.004081262741237879, 0.00007574130722787231, -0.0076833926141262054, -0.01812935248017311, 0.0056977965869009495, 0.047757893800735474, -0.045996759086847305, -0.03922846540808678, -0.03953925520181656, 0.009496327489614487, -0.0031359463464468718, 0.02766021341085434, 0.005391324404627085, -0.04399389773607254, -0.01763726957142353, 0.0001376562868244946, 0.005620099604129791, -0.05642545223236084, -0.0464802086353302, -0.07755909860134125, 0.038503292948007584, -0.05397367477416992, 0.015306353569030762, -0.01306176744401455, -0.013640180230140686, -0.0066733285784721375, -0.01880272850394249, -0.03085443191230297, -0.0015485489275306463, -0.032132118940353394, -0.007126562297344208, 0.003071198705583811, -0.035326339304447174, 0.01976962760090828, -0.041162263602018356, -0.04067881405353546, 0.05659811198711395, 0.02791920304298401, -0.0038589623291045427, -0.003776948433369398, 0.016860298812389374, 0.037122007459402084, -0.021358104422688484, -0.0314069464802742, 0.007376919966191053, 0.054560720920562744, -0.05721969157457352, -0.020581131801009178, -0.023343700915575027, -0.004670466762036085, -0.030733570456504822, 0.02767747826874256, -0.008822951465845108, -0.023982543498277664, -0.006263259798288345, -0.029559478163719177, 0.00375104951672256, 0.03947019204497337, 0.087435282766819, 0.025933608412742615, 0.024794047698378563, -0.009384098462760448, -0.005870457272976637, 0.022014213725924492, 0.01376967504620552, 0.0016726485919207335, 0.007994181476533413, 0.01596246287226677, 0.11243651807308197, -0.06084556132555008, -0.0015960305463522673, 0.054975103586912155, 0.03663855791091919, 0.012699180282652378, -0.0464802086353302, 0.0671994686126709, 0.04951903223991394, -0.04506439343094826, 0.0006609659758396447, 0.02736669033765793, -0.008486263453960419, 0.01963149942457676, 0.07258647680282593, 0.07790441811084747, -0.038814082741737366, -0.02684870921075344, -0.016765335574746132, 0.1072567030787468, -0.010057474486529827, -0.024431461468338966, -0.01811208762228489, -0.06094915792346001, -0.08066698908805847, 0.06523113697767258, 0.030060194432735443, -0.013165363110601902, -0.04451187700033188, 0.033150818198919296, -0.030958028510212898, -0.032581038773059845, 0.02974940463900566, -0.03929753229022026, -0.04803415387868881, 0.0023524994030594826, 0.046238481998443604, 0.019976820796728134, 0.03517094627022743, -0.03539540246129036, 0.03330621123313904, 0.042819805443286896, 0.014408519491553307, -0.021081848070025444, -0.05804846063256264, -0.013415721245110035, -0.0005382151575759053, -0.028005532920360565, 0.007109296042472124, 0.008753887377679348, 0.028696175664663315, -0.0308371651917696, 0.00925460271537304, 0.006897787097841501, -0.07465840131044388, -0.004519388545304537, 0.004890608601272106, 0.020529333502054214, -0.0051582325249910355, -0.04927730932831764, 0.0039042856078594923, -0.011792712844908237, 0.008115043863654137, 0.06122541427612305, -0.04658380523324013, 0.005387007724493742, 0.03178679943084717, -0.012923638336360455, -0.02712496556341648, -0.03805437684059143, -0.05335209518671036, 0.07396776229143143, -0.05618372932076454, -0.01674806885421276, -0.007411452010273933, 0.08501803129911423, 0.02809186466038227, 0.018094820901751518, 0.009237336926162243, -0.03138967975974083, 0.034791093319654465, -0.0020600557327270508, 0.041265860199928284, 0.058152057230472565, 0.010186969302594662, 0.010886244475841522, -0.008883383125066757, 0.038779549300670624, -0.05942974612116814, 0.005253195762634277, 0.06429877132177353, -0.018457407131791115, -0.02298111282289028, -0.052212536334991455 ]
23,406
conexions.proxy
__init__
null
def __init__(self, max_cons= 0, reintentos= 5, timeout= 30, verbose=False, verbosalo= False) -> None: self.__verbose = verbose self.__verbosalo = verbosalo self.__max_cons = max_cons self.__reintentos = reintentos self.__timeout = timeout self.__lst_proxys = [] self.set_cabeceira() # Dalle valor a __cabeceira self.set_proxys() # Enche a __lst_proxys self.set_proxy() # Saca un proxy da lista e meteo como atributo
(self, max_cons=0, reintentos=5, timeout=30, verbose=False, verbosalo=False) -> NoneType
[ 0.014124669134616852, 0.009121987968683243, -0.016951462253928185, -0.01911805011332035, -0.03399591147899628, -0.02155430056154728, -0.039686694741249084, -0.03544650226831436, -0.00932655856013298, -0.00437502097338438, -0.04671648144721985, 0.11098884046077728, -0.0011164207244291902, 0.0026873135939240456, -0.010265723802149296, 0.014961548149585724, 0.021889053285121918, -0.006913555786013603, 0.0025362102314829826, 0.007229710463434458, 0.027579834684729576, 0.06910765916109085, -0.038050130009651184, 0.0349629707634449, -0.011567536741495132, 0.04604697972536087, -0.038756825029850006, 0.057986460626125336, 0.013724826276302338, 0.0002610890078358352, -0.020364072173833847, 0.009977465495467186, -0.04087692126631737, 0.004347125068306923, 0.0627845749258995, -0.01630055531859398, 0.001174537348560989, 0.04939449578523636, -0.09960727393627167, 0.007006542291492224, 0.02040126547217369, -0.06259860098361969, -0.05091947689652443, 0.0074528781697154045, 0.01177210733294487, 0.02168448269367218, 0.01746288873255253, 0.12251918017864227, 0.009507882408797741, -0.053671881556510925, -0.02227959595620632, 0.005732625722885132, 0.034907180815935135, -0.0033079993445426226, -0.014440823346376419, 0.07379418611526489, 0.0017574472585693002, 0.14468719065189362, 0.046307340264320374, 0.00530488695949316, -0.056461479514837265, 0.000813633028883487, 0.022316791117191315, -0.03314043581485748, 0.03745501488447189, 0.009015053510665894, -0.045526254922151566, -0.0025943268556147814, 0.0491713285446167, 0.015389286912977695, 0.06583452969789505, 0.022223804146051407, -0.04418724775314331, 0.008578016422688961, 0.044819556176662445, -0.0009130124817602336, -0.010061153210699558, -0.036171797662973404, -0.03767818212509155, -0.004351774230599403, -0.013036725111305714, 0.019155245274305344, -0.016588814556598663, -0.021833259612321854, 0.003654374508187175, -0.03544650226831436, 0.02901182882487774, -0.04240190237760544, 0.01479417271912098, 0.010581878013908863, -0.12065944820642471, 0.009238221682608128, -0.03217337280511856, 0.010340113192796707, -0.0641607716679573, 0.008884872309863567, -0.018448546528816223, -0.028695672750473022, 0.03459102660417557, 0.0045052021741867065, -0.02073601819574833, 0.02670576050877571, -0.04136045277118683, -0.0053932243026793, 0.003675296436995268, -0.02423231489956379, -0.04046778008341789, -0.011186291463673115, 0.0023769706021994352, -0.02095918543636799, -0.03883121535181999, 0.08405990898609161, 0.017323408275842667, 0.028063364326953888, -0.016412140801548958, 0.046902455389499664, 0.006364934612065554, -0.02086620032787323, 0.023637201637029648, -0.005239796359091997, 0.022000636905431747, 0.00274078082293272, -0.037231847643852234, 0.020308280363678932, -0.003129000077024102, 0.05151459202170372, 0.016756189987063408, 0.021368326619267464, 0.013287789188325405, 0.0002329024428036064, 0.022632945328950882, -0.05385785549879074, 0.01971316523849964, 0.05129142478108406, 0.036897093057632446, -0.03440505266189575, -0.02274452894926071, 0.023488422855734825, -0.05002680793404579, -0.041248869150877, -0.0461585633456707, 0.02038266882300377, 0.008782587014138699, -0.037231847643852234, -0.025106389075517654, -0.019638776779174805, -0.0063695842400193214, -0.019192440435290337, -0.0335867702960968, -0.015482273884117603, -0.011121200397610664, -0.020345473662018776, -0.016523724421858788, -0.003407960059121251, -0.04091411828994751, 0.019508594647049904, -0.046084173023700714, -0.03645075857639313, -0.007657448761165142, 0.005021277815103531, -0.02761702798306942, 0.017639564350247383, 0.0204942524433136, -0.0644211396574974, -0.027895988896489143, -0.011679120361804962, 0.008512926287949085, -0.03819890692830086, 0.015482273884117603, 0.12006433308124542, -0.019192440435290337, -0.07398016005754471, -0.015463676303625107, -0.010563281364738941, 0.001199527527205646, 0.05095667392015457, 0.011539640836417675, -0.028416713699698448, 0.0014459420926868916, -0.005602444522082806, -0.030797172337770462, -0.01369693037122488, 0.009094092063605785, -0.06509064137935638, 0.01607738807797432, 0.006402129307389259, 0.0557175874710083, 0.026742953807115555, 0.01124208327382803, 0.02728227712213993, -0.009744998998939991, 0.001177443191409111, 0.02670576050877571, -0.030927352607250214, -0.008140979334712029, 0.010553982108831406, 0.044112857431173325, -0.015547364018857479, 0.03994705528020859, 0.03553948923945427, -0.05802365764975548, 0.07316187769174576, -0.0010722520528361201, -0.0554572269320488, 0.022428374737501144, 0.01533349510282278, -0.0270405113697052, 0.03767818212509155, 0.017658160999417305, -0.042699459940195084, 0.03663673251867294, 0.010182036086916924, -0.011260680854320526, -0.0349629707634449, 0.015705442056059837, -0.010386606678366661, -0.006020884029567242, 0.016821281984448433, 0.06654123216867447, 0.02949535846710205, 0.03905438259243965, -0.027895988896489143, -0.06263579428195953, -0.04243909567594528, 0.0038194258231669664, 0.030815768986940384, -0.01795571856200695, 0.00013635617506224662, 0.04292262718081474, -0.05921388417482376, -0.026538383215665817, -0.00985658261924982, -0.03500016778707504, 0.0052909390069544315, 0.05173775926232338, -0.026501189917325974, 0.016644606366753578, 0.05582917109131813, -0.09566464275121689, -0.02144271694123745, 0.004307605791836977, 0.0008717496530152857, 0.004182073753327131, -0.007271554321050644, -0.01597510278224945, 0.04054217040538788, 0.012255637906491756, -0.009735699743032455, -0.018132392317056656, 0.014784874394536018, -0.003552089212462306, -0.036766912788152695, -0.030481016263365746, -0.03682270646095276, 0.008261862210929394, 0.009521830826997757, -0.009614817798137665, 0.0005497834645211697, -0.011390862055122852, -0.0508078932762146, 0.011214187368750572, -0.07833193242549896, -0.031094728037714958, 0.05813524127006531, -0.03202459588646889, 0.03883121535181999, 0.025831686332821846, -0.017323408275842667, -0.011056110262870789, -0.028825854882597923, 0.11954361200332642, -0.0031336494721472263, -0.022930502891540527, -0.0034312065690755844, -0.05549442023038864, 0.007531916722655296, -0.024846026673913002, -0.047162819653749466, -0.05876754969358444, -0.029551150277256966, 0.009652012027800083, 0.012460208497941494, 0.051477398723363876, -0.05043594911694527, -0.05582917109131813, -0.029923096299171448, 0.004323878325521946, 0.07401735335588455, -0.06735951453447342, -0.001881816890090704, -0.01784413494169712, 0.04385249316692352, 0.02947676181793213, 0.010154140181839466, 0.09968166798353195, -0.01711883768439293, -0.0030662340577691793, 0.04708842933177948, 0.00141339679248631, -0.042476292699575424, -0.020252488553524017, -0.08048922568559647, 0.006908906623721123, -0.04273665323853493, -0.0409885048866272, -0.025143584236502647, 0.07126495242118835, -0.016058791428804398, 0.06468150019645691, 0.029327983036637306, 0.05103106051683426, 0.040504977107048035, 0.012516000308096409, 0.04370371624827385, -0.007006542291492224, 0.02784019708633423, 0.009912374429404736, -0.06289615482091904, 0.002204945543780923, 0.07007472217082977, -0.028714271262288094, 0.023804577067494392, -0.03950072079896927, -0.06773146241903305, 0.046456120908260345, 0.005100316368043423, 0.005295588634908199, 0.00040507299127057195, -0.0021538028959184885, -0.03901718929409981, -0.01934121921658516, -0.01584492065012455, -0.010061153210699558, -0.008522224612534046, -0.004693500231951475, 0.0316898413002491, 0.023804577067494392, 0.017620965838432312, -0.011111902073025703, -0.04638173058629036, 0.02834232524037361, 0.0020026995334774256, -0.047497570514678955, 0.034330662339925766, 0.052370067685842514, -0.03777116909623146, 0.019378412514925003, -0.0138643067330122, 0.03278708457946777, -0.04396407678723335, 0.0002908738097175956, -0.013417970389127731, 0.01160473097115755, 0.06695037335157394, 0.05582917109131813, -0.011046811938285828, 0.0075877089984714985, -0.020568642765283585, 0.01982474885880947, -0.016598112881183624, -0.023488422855734825, 0.01866241730749607, 0.002501340350136161, 0.026036256924271584, 0.007234359625726938, -0.010619073174893856, 0.012497402727603912, -0.03341939300298691, 0.03464681655168533, -0.012618285603821278, -0.0004489510611165315, -0.021070770919322968, -0.009228923358023167, -0.005672184284776449, 0.030592601746320724, -0.008061940781772137, -0.007996849715709686, 0.007541215512901545, -0.009247520007193089, 0.024622859433293343, 0.019266828894615173, -0.004328527487814426, 0.06557416915893555, -0.005611742846667767, -0.010758552700281143, -0.03182002529501915, 0.0398726649582386, 0.029811512678861618, 0.05166337266564369, 0.03658093884587288, -0.0015261430526152253, -0.042141541838645935, -0.03369835391640663, -0.018457846716046333, -0.013613242655992508, -0.018727507442235947, 0.0625242069363594, 0.030685586854815483, -0.05969741567969322, -0.013613242655992508, 0.03546509891748428, -0.001433156430721283, 0.02179606631398201, 0.03005327843129635, -0.02644539810717106, -0.025608517229557037, 0.05954863876104355, 0.010925929062068462, 0.01854153349995613, 0.0508078932762146, -0.02239117957651615, -0.0013517930638045073, 0.02564571239054203, -0.014952249825000763, -0.04210434481501579, -0.014915055595338345, -0.025831686332821846, 0.0066903880797326565, 0.02668716199696064, 0.0035427906550467014, 0.024325301870703697, 0.023339644074440002, -0.009303311817348003, 0.009568324312567711, 0.025943269953131676, 0.032470930367708206, 0.015277703292667866, -0.037101663649082184, -0.00010206735169049352, -0.05266762524843216, -0.007211112882941961, 0.03587424010038376, 0.006946101319044828, -0.08591964840888977, 0.03879402205348015, 0.010377307422459126, -0.04500553011894226, -0.028360921889543533, 0.0049468884244561195, -0.0036497251130640507, 0.007392437197268009, -0.052035316824913025, 0.036283381283283234, 0.02668716199696064, 0.027300873771309853, -0.026129242032766342, 0.01124208327382803, -0.022465569898486137, 0.035595282912254333, -0.035148944705724716, -0.026612773537635803, 0.0008601263398304582, 0.06531380861997604, -0.0035427906550467014, 0.04604697972536087, -0.013259893283247948, -0.05861876904964447, 0.037715375423431396, -0.01573333702981472, -0.028825854882597923, 0.0340145081281662, -0.030611198395490646, 0.0770673155784607, -0.050398752093315125, -0.06695037335157394, 0.07915021479129791, 0.03273129463195801, 0.029662733897566795, -0.01497084740549326, -0.05475052818655968, -0.03879402205348015, -0.0054257698357105255, -0.013669034466147423, -0.05177495628595352, 0.029755720868706703, -0.010377307422459126, 0.02250276505947113, -0.01561245508491993, 0.022911906242370605, -0.019434206187725067, 0.04731159657239914, -0.03066699020564556, 0.09313540905714035, -0.03399591147899628, -0.038979995995759964, -0.01934121921658516, -0.011362966150045395, -0.0475347638130188, -0.0046260845847427845, 0.021238146349787712, -0.014143265783786774, 0.03193160891532898, -0.012925141490995884, 0.049022551625967026, 0.04229031875729561, 0.06256140023469925, 0.0384964644908905, 0.016281958669424057, 0.029513955116271973, -0.03950072079896927, -0.03831049054861069, -0.0271706935018301, -0.031206313520669937, -0.042141541838645935, -0.015686843544244766, -0.040393389761447906, -0.07528197765350342, -0.022316791117191315, -0.06728512793779373, -0.002822144189849496, 0.0002916002704296261, -0.047497570514678955, -0.004256463143974543, 0.006127818953245878, -0.027672821655869484, -0.04545186460018158, -0.02705910988152027, 0.002956974785774946, 0.0047539412043988705, -0.04827865585684776, 0.05266762524843216, 0.0701863095164299, 0.01433853805065155, 0.01748148538172245, -0.017416395246982574, 0.022800320759415627, -0.011539640836417675, 0.0014006111305207014, 0.07334785163402557, 0.04850182682275772, 0.0603669211268425, -0.06118520349264145, -0.03018346056342125, 0.03509315475821495, 0.03390292450785637, 0.030276445671916008, -0.0051282127387821674, -0.06334248930215836, 0.03007187508046627, -0.0017051423201337457, 0.019378412514925003, 0.03410749509930611, -0.04801829531788826, -0.052258484065532684, -0.053783465176820755, -0.015472974628210068, 0.021963441744446754, 0.054155413061380386, -0.022521361708641052, -0.01177210733294487, 0.057614516466856, -0.010935227386653423, -0.028714271262288094, 0.008726795203983784, -0.008884872309863567, -0.014822068624198437, 0.013631840236485004, -0.05422980338335037, 0.05783768370747566, 0.03853365778923035, 0.02259575016796589, -0.03483279049396515, -0.02668716199696064, 0.021889053285121918, -0.021610092371702194, 0.026780148968100548, 0.018708908930420876, 0.007852721028029919, 0.017909225076436996, 0.014877860434353352, 0.03901718929409981, -0.017323408275842667, -0.025217974558472633, 0.06899607926607132, -0.030313640832901, 0.003996100276708603, -0.024325301870703697, 0.011214187368750572, 0.002332802163437009, -0.019973527640104294, 0.014989444985985756, 0.033735547214746475, -0.08428308367729187, -0.08175384253263474, 0.05166337266564369, 0.034907180815935135, -0.011232784949243069, 0.046232953667640686, 0.022428374737501144, -0.05222129076719284, -0.02505059726536274, 0.08532453328371048, -0.09172201156616211, -0.003745036432519555, -0.044001273810863495, 0.025199376046657562, 0.006239402573555708, -0.027542639523744583, -0.009559025056660175, 0.0720832347869873, -0.05095667392015457, 0.022707335650920868, -0.023172268643975258, -0.018271872773766518, -0.013483061455190182, -0.03751080483198166, -0.05620111897587776, 0.0033335706684738398, 0.04374090954661369, 0.021535703912377357, 0.016737593337893486, 0.01316690631210804, 0.03345659002661705, -0.013297087512910366, -0.09893777221441269, -0.024436885491013527, -0.061259590089321136, 0.04102570191025734, 0.020345473662018776, -0.01042380090802908, -0.032340750098228455, -0.022000636905431747, 0.037957143038511276, 0.014310642145574093, -0.09008544683456421, -0.053076766431331635, -0.023860368877649307, -0.06810341030359268, -0.0271706935018301, 0.021070770919322968, 0.06512783467769623, -0.023339644074440002, 0.008954612538218498, -0.014180460944771767, -0.022763127461075783, -0.0034962971694767475, 0.04381529986858368, 0.03942633047699928, 0.0021107965148985386, 0.010684163309633732, -0.029885903000831604, 0.017527978867292404, 0.04530308395624161, -0.010386606678366661, -0.028509700670838356, -0.030722782015800476, -0.002568755531683564, 0.013947994448244572, 0.015426482073962688, 0.003507920540869236, -0.015872817486524582, 0.04500553011894226, -0.03254532068967819, 0.01947139948606491, -0.05010119453072548, -0.0330660454928875, -0.005416471045464277, 0.029402371495962143, 0.028360921889543533, 0.006290545221418142, -0.042959824204444885, -0.014822068624198437, 0.07781121134757996, -0.0775880441069603, 0.05166337266564369, -0.019304024055600166, 0.007141373120248318, -0.019768957048654556, -0.012376519851386547, 0.029551150277256966, 0.027449652552604675, 0.012274234555661678, -0.004942239262163639, 0.040021445602178574, 0.05631270259618759, 0.006364934612065554, -0.030592601746320724, -0.0023723214399069548, 0.02843531034886837, 0.015110326930880547, 0.04991522058844566, 0.031038936227560043, 0.013213399797677994, -0.07517039030790329, 0.021889053285121918, 0.05932546779513359, -0.015194015577435493, 0.06018094718456268, 0.005983689334243536, -0.005495509598404169, -0.014645393937826157, 0.03064839355647564, 0.006685738451778889, 0.03341939300298691, -0.013157607987523079, 0.025813087821006775, -0.06557416915893555, -0.0704466700553894, 0.01398518867790699, 0.00821536872535944, 0.056238312274217606, 0.01630055531859398, -0.024157926440238953, 0.04682806506752968, -0.015026639215648174, -0.009456739760935307, -0.007899214513599873, -0.026594175025820732, 0.010739956051111221, -0.006973997224122286, 0.06248701363801956, 0.09916093945503235, 0.05843279883265495, -0.06323090940713882, -0.014366433955729008, 0.035130348056554794, 0.04872499406337738, 0.046307340264320374, -0.0620034858584404, 0.015584559179842472, 0.011641926132142544, -0.026036256924271584, 0.03477700054645538, 0.01159543264657259, 0.029551150277256966, -0.010739956051111221, 0.009884478524327278, -0.024064939469099045, 0.01575193554162979, -0.051588982343673706, -0.008020096458494663, 0.007964304648339748, -0.015640350058674812, -0.050882283598184586, -0.04381529986858368, -0.06282176822423935, 0.047014039009809494, 0.0023874316830188036, -0.026259424164891243, 0.05103106051683426, -0.0415092296898365, -0.03323342278599739, 0.02097778394818306, 0.056833427399396896, -0.04768354445695877, -0.008912768214941025, -0.016123881563544273, 0.00833160150796175, 0.021591495722532272, 0.000555595092009753, 0.0028546894900500774, -0.0029221049044281244, 0.04191837087273598, 0.007345943711698055, 0.022428374737501144, -0.036320578306913376, -0.022298194468021393, 0.01334358099848032, -0.02040126547217369, -0.04571222513914108, -0.023730186745524406, 0.00548156164586544, 0.007215762510895729, 0.006862413138151169, 0.04976644366979599, 0.019527191296219826, 0.031150519847869873, -0.017276914790272713 ]
23,407
conexions.proxy
get
def get(self, ligazon: str, params: dict = None, bolachas: dict = None, stream: dict = False, timeout: int = None, reintentos: int = None) -> Response: """ """ # lazy_check_types if timeout == None: timeout = self.get_timeout() if reintentos == None: reintentos = self.get_reintentos() if (self.get_max_cons() != 0) and (self.get_cant_cons() >= self.get_max_cons()): if self.get_verbose(): print(f'{__name__}: Chegouse á cantidade máxima de conexións. Collendo novo proxy ({len(self.get_proxys())} restantes)') self.set_proxy() self.__set_cant_cons(0) reintentos = self.get_reintentos() try: if self.get_verbosalo(): self.get_spinner().start() if self.get_sesion() != None: return self.get_sesion().get(url= ligazon, params= params, proxies= self.__get_proxy(), headers= self.get_cabeceira(), cookies= bolachas, stream= stream, timeout= timeout) else: return requests.get(url= ligazon, params= params, proxies= self.__get_proxy(), headers= self.get_cabeceira(set_nova=True), cookies= bolachas, stream= stream, timeout= timeout) except: if reintentos <= 0: if self.get_verbose(): print(f'{__name__}: Chegouse á cantidade máxima de reintentos. Collendo novo proxy ({len(self.get_proxys())} restantes)') self.set_proxy() reintentos = self.get_reintentos() if self.get_verbose(): print(f'{__name__}: Reintento nº {self.get_reintentos()+1-reintentos}.') return self.get(ligazon= ligazon, params= params, bolachas= bolachas, stream=stream, timeout= timeout, reintentos= reintentos-1) finally: if self.get_verbosalo(): self.get_spinner().stop()
(self, ligazon: str, params: Optional[dict] = None, bolachas: Optional[dict] = None, stream: dict = False, timeout: Optional[int] = None, reintentos: Optional[int] = None) -> requests.models.Response
[ -0.01969745010137558, -0.03964952751994133, -0.03304733708500862, -0.01041254773736, -0.024862799793481827, -0.010057885199785233, -0.05940154194831848, -0.01716933771967888, 0.022007307037711143, -0.015896186232566833, 0.009921476244926453, 0.057255372405052185, 0.007989016361534595, 0.010176106356084347, 0.0007479756022803485, -0.003232891671359539, 0.0022189186420291662, -0.05467269942164421, 0.030355533584952354, -0.02695440500974655, 0.023716965690255165, 0.017951415851712227, 0.004328710027039051, 0.026827089488506317, -0.02440810389816761, 0.02053409069776535, -0.014932231046259403, 0.030682915821671486, 0.03213794529438019, 0.025590315461158752, 0.039831407368183136, -0.027245409786701202, -0.0389220155775547, 0.01095818355679512, 0.02331683225929737, 0.04932546988129616, 0.008521011099219322, -0.008020845241844654, -0.05350867658853531, 0.03863100707530975, -0.0609293207526207, -0.017969602718949318, 0.011258283630013466, -0.032301634550094604, -0.02306220307946205, -0.026172326877713203, -0.05678249150514603, 0.0827183723449707, -0.01525051798671484, 0.015186861157417297, 0.036739472299814224, -0.008330038748681545, 0.0024712751619517803, -0.03526625409722328, 0.005424528382718563, 0.0064385016448795795, -0.057510003447532654, 0.13582691550254822, 0.04732480272650719, -0.02469911053776741, -0.005388152785599232, 0.0034966154489666224, 0.0235532745718956, 0.034829746931791306, 0.015141391195356846, 0.006415766663849354, -0.006124760955572128, -0.014504816383123398, 0.06256622821092606, -0.008639232255518436, 0.06042006239295006, 0.07424283027648926, -0.05405431240797043, -0.01944281905889511, -0.00872107781469822, -0.03381122648715973, -0.015714308246970177, -0.017542188987135887, -0.06784071028232574, 0.018206045031547546, 0.02940976433455944, -0.0008377781487070024, 0.003628477454185486, -0.05110787972807884, 0.020297648385167122, -0.010803586803376675, 0.0560549758374691, -0.05292666330933571, -0.026699773967266083, 0.016751015558838844, -0.08453716337680817, 0.0018960840534418821, -0.0052153682336211205, -0.02602682262659073, 0.014241091907024384, -0.001130489050410688, -0.035630013793706894, -0.009548624977469444, 0.028500372543931007, -0.06292998790740967, -0.027627354487776756, 0.06212972104549408, -0.008493728935718536, -0.011867577210068703, 0.04292334243655205, -0.04466937854886055, -0.006661302875727415, -0.02075234428048134, 0.05529108643531799, -0.06660393625497818, -0.06107482314109802, 0.024298977106809616, -0.0019676988013088703, -0.011158250272274017, -0.02022489719092846, 0.0383400022983551, 0.0012413212098181248, 0.006834087427705526, -0.061984218657016754, -0.0007587746367789805, -0.016841955482959747, 0.007361534982919693, 0.019770201295614243, -0.045869775116443634, 0.02082509547472, 0.09283082187175751, -0.01759675145149231, 0.0399041585624218, 0.06816808879375458, 0.013513578101992607, 0.03603014349937439, -0.018424298614263535, 0.017660409212112427, 0.03903114050626755, 0.005356323905289173, 0.0437963604927063, -0.0344478003680706, 0.05125338211655617, -0.0185879897326231, 0.024262601509690285, -0.03462968021631241, 0.014386595226824284, -0.02635420486330986, -0.0007690053316764534, -0.02331683225929737, -0.014359313063323498, 0.03903114050626755, -0.050052981823682785, -0.010976371355354786, -0.0214071087539196, 0.08242736756801605, 0.002489462960511446, -0.03848550468683243, -0.002364421496167779, -0.05841939523816109, -0.03570276498794556, -0.04808869585394859, 0.02442629262804985, -0.009321277029812336, 0.02304401434957981, -0.0027099906001240015, 0.014422970823943615, 0.039504025131464005, -0.05565484240651131, -0.015086827799677849, -0.01913362555205822, -0.003905842313542962, 0.04747030884027481, 0.08897499740123749, 0.052890289574861526, -0.02440810389816761, 0.026736149564385414, -0.06875009834766388, -0.04579702392220497, 0.020679593086242676, 0.03693953901529312, 0.02049771510064602, -0.03051922470331192, -0.01856980286538601, -0.05234465375542641, -0.04383273422718048, -0.07111451774835587, -0.015741590410470963, -0.05492732673883438, 0.018251514062285423, 0.005629141815006733, 0.07871704548597336, -0.03417498245835304, -0.0004623694403562695, 0.022953076288104057, -0.02720903418958187, 0.032847270369529724, 0.03055560030043125, 0.0034306845627725124, 0.01609625294804573, -0.02413528598845005, 0.025935884565114975, -0.035357195883989334, 0.013022505678236485, 0.012867908924818039, -0.07442471385002136, 0.09763241559267044, 0.010621708817780018, -0.04488763213157654, 0.02417166158556938, -0.01023976318538189, -0.0021075180266052485, 0.003855825634673238, 0.017915038391947746, -0.024189850315451622, -0.02828211709856987, 0.014859478920698166, -0.02138892002403736, -0.0576191321015358, 0.023735154420137405, 0.027572792023420334, -0.04070442542433739, -0.009253072552382946, 0.04052254557609558, -0.019806576892733574, 0.02189818024635315, -0.05125338211655617, -0.05416343733668327, -0.005647329613566399, -0.01993389055132866, -0.002487189369276166, 0.008157254196703434, 0.03668490797281265, 0.016714639961719513, -0.04237770661711693, -0.025972260162234306, 0.040340665727853775, 0.028463996946811676, -0.011722073890268803, 0.03801262006163597, -0.019806576892733574, -0.038085371255874634, 0.07449746131896973, -0.03801262006163597, 0.005761003587394953, 0.015141391195356846, -0.009866912849247456, 0.003239711979404092, 0.007948093116283417, -0.05714624747633934, 0.010712647810578346, 0.007748027332127094, 0.03433867543935776, -0.0399041585624218, -0.009221243672072887, 0.013386262580752373, -0.05409068614244461, 0.005865584127604961, -0.0704597607254982, -0.01511410903185606, -0.034556929022073746, -0.05161713808774948, 0.015950750559568405, 0.01708749122917652, -0.0688956007361412, -0.01485038548707962, -0.007920811884105206, -0.0609293207526207, 0.034265924245119095, -0.031719621270895004, 0.012158582918345928, 0.011576571501791477, 0.002204140881076455, -0.010221575386822224, -0.02297126315534115, 0.011421973817050457, 0.02604501135647297, -0.043177973479032516, 0.013777301646769047, -0.04030429199337959, 0.01973382569849491, 0.04081355035305023, -0.04539689049124718, -0.05841939523816109, -0.004180933814495802, -0.0404861681163311, 0.027645543217658997, 0.06012905389070511, -0.05299941450357437, -0.052526529878377914, -0.024553606286644936, 0.053690552711486816, 0.07689826190471649, 0.010485299862921238, 0.009193961508572102, 0.03404766693711281, 0.030919356271624565, -0.003505709348246455, -0.04103180393576622, 0.05045311525464058, 0.0015016349498182535, 0.0012947480427101254, 0.018442487344145775, 0.001006584265269339, -0.013931898400187492, 0.02333502098917961, -0.05852852389216423, 0.04834332317113876, -0.06998687237501144, -0.008375507779419422, -0.040922679007053375, 0.07631624490022659, -0.03986778110265732, 0.0465245395898819, 0.010494393296539783, -0.00861195009201765, -0.010221575386822224, 0.04623353108763695, -0.026117762550711632, -0.04514226317405701, 0.025917695835232735, 0.03688497468829155, 0.05681886523962021, 0.02555393986403942, 0.0730060562491417, 0.005988352000713348, 0.05543658882379532, 0.02077053301036358, 0.002375788753852248, 0.04485125467181206, -0.005488185677677393, -0.0015243698144331574, 0.03626658767461777, 0.0350298136472702, -0.04157743975520134, -0.023134954273700714, -0.0042286766692996025, -0.06536715477705002, -0.008830204606056213, -0.05128975585103035, 0.024626359343528748, 0.035429947078228, 0.007507037837058306, -0.013640892691910267, -0.04375998303294182, 0.04485125467181206, -0.02824574150145054, -0.00602472759783268, 0.02633601799607277, 0.04732480272650719, 0.011631134897470474, 0.023153143003582954, 0.016732828691601753, 0.01137650478631258, -0.005419981200248003, -0.03550269827246666, -0.032883644104003906, 0.08460991084575653, 0.08533742278814316, 0.047834064811468124, 0.03108304738998413, 0.017969602718949318, -0.014195622876286507, 0.019824763759970665, -0.0037944416981190443, -0.02417166158556938, -0.0009048458887264132, -0.045069508254528046, 0.050634995102882385, -0.044232867658138275, -0.016805579885840416, 0.013358981348574162, -0.03492068499326706, 0.026263264939188957, -0.0015471045626327395, -0.025317497551441193, 0.02049771510064602, -0.011867577210068703, 0.01443206425756216, 0.05329042300581932, 0.02000664360821247, -0.004517409019172192, -0.014932231046259403, -0.022825760766863823, 0.041795697063207626, 0.05630960687994957, -0.012795157730579376, -0.009484967216849327, 0.0007064845995046198, 0.03273814171552658, -0.052017271518707275, 0.008248193189501762, 0.009657751768827438, 0.024244412779808044, -0.000823000562377274, 0.03359297290444374, -0.037012290209531784, 0.04928909242153168, -0.0064385016448795795, -0.04270508885383606, -0.02415347471833229, 0.045360516756772995, 0.045906152576208115, -0.01917000114917755, -0.022934887558221817, 0.00878928229212761, -0.014477534219622612, 0.01344082597643137, 0.02911875955760479, -0.029446139931678772, 0.0035125298891216516, 0.0352298803627491, -0.05918328836560249, 0.013422638177871704, 0.014877666719257832, -0.09857818484306335, -0.042013950645923615, 0.010276139713823795, 0.013795489445328712, -0.05518195778131485, 0.037321481853723526, -0.035630013793706894, 0.058892279863357544, 0.009939664043486118, 0.043978240340948105, 0.012540527619421482, -0.007702557370066643, 0.029009632766246796, 0.03024640679359436, 0.016068972647190094, 0.05278116092085838, -0.02057046629488468, -0.020152145996689796, -0.002303037326782942, -0.004819781985133886, 0.02271663397550583, -0.039285771548748016, -0.0012470049550756812, -0.1152382642030716, 0.01456847321242094, 0.0352298803627491, -0.052308276295661926, -0.021243417635560036, 0.04219582676887512, -0.007238767109811306, 0.043396227061748505, -0.013940992765128613, 0.0009423583396710455, 0.006715866271406412, 0.032883644104003906, -0.03855825588107109, 0.013731831684708595, -0.013768208213150501, 0.03668490797281265, -0.05816476792097092, -0.033174652606248856, 0.019570134580135345, -0.021006975322961807, 0.02411709912121296, 0.03610289469361305, -0.031755998730659485, -0.07959005981683731, 0.02137073129415512, -0.050343990325927734, 0.03975865617394447, 0.06020180881023407, -0.005251743830740452, 0.022680258378386497, -0.007634352892637253, -0.011949421837925911, 0.025699442252516747, 0.01971563696861267, 0.02688165195286274, -0.028172990307211876, -0.03713960573077202, -0.06864096969366074, -0.056200478225946426, -0.02215280942618847, -0.03228344768285751, 0.043723609298467636, -0.02331683225929737, -0.002716811140999198, 0.014677600935101509, 0.043396227061748505, 0.015050452202558517, 0.018406111747026443, -0.035666387528181076, 0.05463632196187973, -0.03190150111913681, -0.025444811210036278, -0.07111451774835587, -0.024899177253246307, -0.01290428452193737, -0.0271544698625803, -0.001519822864793241, 0.017296651378273964, 0.07126002758741379, -0.02080690860748291, 0.06300273537635803, 0.01973382569849491, 0.055909473448991776, -0.010003321804106236, -0.03884926438331604, -0.01971563696861267, -0.046160779893398285, -0.016941988840699196, -0.042523209005594254, -0.015859810635447502, 0.03073747828602791, 0.007798043545335531, -0.0383400022983551, -0.02549937553703785, 0.00308056827634573, 0.003551179077476263, -0.008657420054078102, -0.04015878960490227, -0.04019516333937645, 0.04790681600570679, -0.008334585465490818, -0.06507615000009537, -0.0476885624229908, -0.015677932649850845, 0.011385598219931126, -0.0053517771884799, -0.010912714526057243, 0.09399484843015671, 0.08402790129184723, 0.05103512853384018, 0.04579702392220497, -0.023789716884493828, 0.005469997879117727, 0.0476885624229908, -0.0498347282409668, 0.013486295938491821, 0.03019184246659279, -0.007225126028060913, -0.05245377868413925, -0.023698776960372925, 0.00996694527566433, 0.06609467417001724, 0.004260505549609661, -0.04084992781281471, -0.07227854430675507, 0.04750668257474899, -0.008093596436083317, 0.0034875215496867895, 0.004765218589454889, -0.04805231839418411, -0.038158122450113297, -0.02555393986403942, -0.03404766693711281, 0.08293662965297699, 0.08148159831762314, 0.009785067290067673, -0.03213794529438019, -0.025390248745679855, -0.018069636076688766, 0.06165683642029762, 0.022261936217546463, -0.05056224390864372, 0.022898511961102486, -0.022334689274430275, -0.031010296195745468, 0.04084992781281471, 0.0000012388701406962355, 0.028209365904331207, -0.04692467302083969, -0.04292334243655205, 0.0012992949923500419, -0.04208670184016228, 0.020188521593809128, 0.07697100937366486, 0.030391909182071686, 0.025335684418678284, -0.007316065486520529, 0.0004552647878881544, 0.016887424513697624, -0.03266539052128792, 0.04226858168840408, -0.02357146330177784, -0.006679490674287081, -0.006265716627240181, -0.05052586644887924, 0.015341457910835743, 0.016405446454882622, 0.021225228905677795, -0.004003602080047131, -0.09283082187175751, -0.040668047964572906, 0.08468266576528549, 0.0554729625582695, 0.014950418844819069, 0.03713960573077202, 0.04110455885529518, -0.018697116523981094, -0.011558382771909237, 0.023753341287374496, -0.03375666216015816, -0.032319821417331696, 0.024517230689525604, 0.06136583164334297, 0.023371396586298943, -0.03246532380580902, -0.057801008224487305, 0.07093264162540436, -0.03319283947348595, 0.026517895981669426, -0.008566481061279774, -0.06613104790449142, -0.01082177460193634, 0.042559586465358734, -0.02162536233663559, 0.018187856301665306, 0.04412374272942543, -0.007206938229501247, 0.04765218496322632, 0.0025985899847000837, -0.01332260575145483, 0.006834087427705526, -0.10541681945323944, 0.009184868074953556, -0.0605291873216629, 0.028991444036364555, -0.015023170039057732, -0.019642885774374008, 0.018115105107426643, -0.010394359938800335, -0.015377833507955074, 0.019497383385896683, -0.10716285556554794, 0.022934887558221817, 0.05052586644887924, -0.033956728875637054, -0.030864793807268143, 0.006329374387860298, 0.045651521533727646, 0.021006975322961807, 0.05518195778131485, 0.03939490020275116, -0.016223568469285965, -0.012094925157725811, 0.06311186403036118, 0.02828211709856987, -0.0527447871863842, 0.01208583079278469, -0.0005714965518563986, 0.05849215015769005, 0.008043579757213593, 0.0011685697827488184, -0.023353207856416702, -0.00824364647269249, 0.03273814171552658, -0.03375666216015816, 0.028136614710092545, -0.038085371255874634, -0.016532761976122856, 0.06678581237792969, 0.028136614710092545, -0.013240760192275047, -0.02771829441189766, -0.04328709840774536, 0.028664063662290573, 0.035357195883989334, 0.00875745341181755, 0.00892569124698639, 0.02246200293302536, -0.027590978890657425, 0.04521501436829567, -0.08060858398675919, -0.016532761976122856, -0.006406672764569521, 0.002180269453674555, -0.04932546988129616, 0.024189850315451622, 0.013149820268154144, 0.006133854854851961, 0.005565484054386616, -0.009066646918654442, -0.01357723493129015, 0.05954704433679581, 0.036212023347616196, -0.03026459366083145, -0.011603852733969688, 0.013640892691910267, 0.011594759300351143, -0.0004061007348354906, 0.0628572329878807, -0.015814341604709625, 0.004521956201642752, -0.0006291861645877361, 0.010939995758235455, -0.004115002695471048, -0.01623266190290451, -0.023189518600702286, -0.02828211709856987, -0.014786727726459503, -0.025026490911841393, -0.013122539035975933, 0.030319157987833023, 0.04474212974309921, -0.02138892002403736, -0.06591279059648514, -0.03472061827778816, -0.009821442887187004, 0.050634995102882385, 0.057255372405052185, -0.04325072467327118, 0.017896851524710655, 0.029628019779920578, -0.031010296195745468, -0.008034486323595047, 0.023153143003582954, -0.07718926668167114, -0.002762280870229006, 0.040340665727853775, 0.015095921233296394, 0.07682550698518753, 0.060856569558382034, -0.00030578335281461477, -0.045069508254528046, 0.027281785383820534, 0.009312182664871216, 0.03768524155020714, -0.03712141513824463, 0.019588321447372437, -0.016632795333862305, -0.01677829772233963, 0.05409068614244461, 0.018506145104765892, 0.025062866508960724, -0.009766879491508007, 0.018287889659404755, -0.024298977106809616, 0.0012538253795355558, -0.008934784680604935, -0.011485631577670574, -0.018506145104765892, -0.05329042300581932, -0.009921476244926453, -0.01164022833108902, -0.07267867773771286, 0.04150468856096268, 0.005297213327139616, 0.00035778924939222634, -0.021461671218276024, -0.029718957841396332, -0.04306884482502937, -0.027954736724495888, 0.001062284572981298, -0.02964620664715767, -0.015759777277708054, 0.016632795333862305, 0.00301463739015162, 0.011740261688828468, 0.015541523694992065, 0.03168324753642082, -0.02582675777375698, 0.03486612066626549, 0.016987457871437073, 0.05441806837916374, -0.01426837407052517, -0.04375998303294182, 0.05718262121081352, 0.0026963497512042522, 0.013895522803068161, -0.004724295809864998, 0.06693131476640701, -0.018715305253863335, 0.025917695835232735, 0.023371396586298943, -0.0124586820602417, 0.025099242106080055, 0.0009434950770810246 ]
23,408
conexions.proxy
get_cabeceira
null
def get_cabeceira(self, set_nova: Union[bool, int] = False) -> dict[str, str]: try: return self.__cabeceira finally: if set_nova: self.set_cabeceira()
(self, set_nova: Union[bool, int] = False) -> dict[str, str]
[ 0.009519529528915882, -0.03743695467710495, 0.027053631842136383, -0.025058893486857414, -0.02021452970802784, -0.02828253246843815, 0.020926937460899353, 0.024097144603729248, 0.04331430792808533, -0.05702812969684601, -0.03004573844373226, -0.023117586970329285, -0.013856303878128529, 0.0038870670832693577, 0.008397489786148071, -0.03964541479945183, -0.020855696871876717, -0.04352802783250809, 0.0337858721613884, -0.02534385584294796, 0.035210683941841125, -0.03697388991713524, 0.0017899209633469582, -0.04434729740023613, -0.003025500802323222, 0.0403221994638443, 0.004345678724348545, 0.046092692762613297, 0.06956648081541061, 0.04534466564655304, 0.03255696967244148, 0.011443027295172215, -0.045273423194885254, -0.0010452336864545941, 0.03237886726856232, 0.04092774540185928, 0.004839910659939051, 0.0306334737688303, 0.002024792367592454, 0.04420481249690056, -0.06347540766000748, -0.02461363933980465, 0.015227685682475567, -0.016180530190467834, -0.039039868861436844, -0.04655575379729271, 0.02869216538965702, 0.03576279804110527, 0.052646830677986145, -0.026875529438257217, 0.0376862958073616, 0.009060918353497982, 0.021069418638944626, -0.032022666186094284, -0.03907549008727074, -0.05624448135495186, -0.0027494432870298624, 0.06995830684900284, 0.0031190039590001106, 0.014096740633249283, -0.06760736554861069, -0.015379072166979313, -0.015111919492483139, -0.05624448135495186, -0.026163123548030853, -0.0006589758559130132, 0.013731632381677628, 0.02140781097114086, 0.056529443711042404, 0.03578060865402222, 0.027035821229219437, 0.014577615074813366, -0.02838939242064953, -0.006536328233778477, -0.013099371455609798, -0.06194373220205307, -0.002181744435802102, -0.04178263247013092, -0.016020238399505615, -0.005022464785724878, -0.007248734589666128, -0.0026759763713926077, -0.0183266531676054, 0.007627200335264206, 0.04171139374375343, 0.0306334737688303, 0.06151628866791725, 0.03417769446969032, -0.003902651136741042, 0.013428859412670135, -0.013651486486196518, 0.010329891927540302, 0.024952031672000885, 0.03754381462931633, -0.010258651338517666, 0.021657153964042664, -0.00682129105553031, 0.05991337448358536, 0.05058085173368454, -0.002972070360556245, 0.01468447595834732, 0.005245091859251261, 0.05243310704827309, -0.03513944521546364, -0.04402671381831169, -0.002724954392760992, -0.01694636605679989, 0.015940092504024506, 0.05606637895107269, -0.04381299018859863, -0.078578419983387, -0.0021283139940351248, -0.0024511232040822506, -0.025201374664902687, -0.0017376035684719682, 0.003769074799492955, -0.052076905965805054, -0.0023464884143322706, 0.0032525802962481976, -0.028620924800634384, -0.040607161819934845, 0.04822991043329239, 0.02838939242064953, -0.032236386090517044, 0.004862173460423946, 0.06301233917474747, -0.03417769446969032, 0.021229708567261696, 0.10871320962905884, 0.04466787725687027, 0.028104430064558983, -0.03786439821124077, 0.038149360567331314, -0.008682452142238617, -0.02115846797823906, -0.02634122408926487, -0.0071418737061321735, 0.045059703290462494, -0.03389273211359978, 0.04687633737921715, -0.030775954946875572, 0.029564863070845604, -0.024364298209547997, 0.014452943578362465, -0.031595222651958466, -0.04983282461762428, 0.042174454778432846, -0.003359441179782152, -0.06262052059173584, 0.0011192571837455034, 0.08071564137935638, 0.006954866927117109, -0.030348511412739754, 0.018878769129514694, -0.047410644590854645, 0.002903055865317583, -0.027552315965294838, -0.0037668487057089806, 0.007854280062019825, 0.007391215767711401, -0.026786478236317635, 0.10329892486333847, -0.004675166681408882, 0.0138741135597229, 0.02215583808720112, 0.05157821998000145, 0.0638672262430191, 0.0006433919770643115, 0.07113377749919891, 0.04570086672902107, -0.05125763639807701, -0.00005718730608350597, -0.07444646209478378, 0.021069418638944626, 0.004675166681408882, 0.05884476378560066, 0.033536527305841446, -0.05560331419110298, 0.04064278304576874, 0.029208660125732422, -0.040607161819934845, -0.010801861062645912, -0.017480671405792236, 0.04370613023638725, 0.048087429255247116, -0.03846994414925575, 0.08541752398014069, -0.03843432292342186, 0.02623436413705349, -0.010561424307525158, -0.00021483504679054022, 0.050865814089775085, -0.0324501097202301, 0.028051000088453293, -0.011914996430277824, -0.02817567065358162, 0.02235174924135208, -0.036154624074697495, -0.10857073217630386, -0.01878971792757511, -0.03551345691084862, 0.034106455743312836, -0.03538878634572029, -0.005779396742582321, 0.04424043372273445, 0.003642177442088723, -0.017560817301273346, 0.0006038757273927331, 0.01762315258383751, 0.03946731239557266, -0.0022496457677334547, 0.006024286150932312, -0.05460594594478607, -0.039930377155542374, 0.05407164245843887, -0.022440800443291664, 0.04334992542862892, 0.010775146074593067, -0.011496457271277905, 0.04552276432514191, -0.03433798626065254, -0.024275247007608414, 0.08292409777641296, -0.0006127808010205626, 0.0009478343999944627, -0.059236589819192886, -0.031648650765419006, 0.014159075915813446, 0.026537137106060982, -0.046092692762613297, -0.08235417306423187, 0.032022666186094284, -0.05905848741531372, 0.013856303878128529, -0.00768508343026042, -0.09752842783927917, 0.053430475294589996, 0.038719285279512405, -0.07572879642248154, 0.027766037732362747, 0.047196920961141586, 0.008361869491636753, 0.02534385584294796, 0.059343449771404266, -0.05859542265534401, -0.018985629081726074, 0.06839101016521454, 0.016153814271092415, -0.011211494915187359, 0.031132157891988754, 0.03565593808889389, -0.08142804354429245, 0.004822100512683392, -0.00682129105553031, -0.0387549065053463, -0.04901355877518654, -0.03608338162302971, 0.05717061087489128, 0.014141266234219074, -0.04979720339179039, -0.0027494432870298624, -0.028620924800634384, 0.008517708629369736, 0.010036024264991283, -0.0023598461411893368, 0.010979962535202503, 0.05054523050785065, -0.002228496130555868, -0.05179194360971451, 0.011950616724789143, 0.0034240030217915773, 0.025272615253925323, -0.012191053479909897, -0.0002543513255659491, -0.02062416449189186, -0.03200485557317734, -0.015583888627588749, -0.0046439990401268005, -0.055638935416936874, -0.03790001943707466, -0.04000161588191986, 0.03234324976801872, 0.019181540235877037, -0.01617162488400936, -0.036314912140369415, -0.040607161819934845, 0.019804896786808968, 0.04224569723010063, -0.0023108681198209524, -0.0021661606151610613, -0.019466504454612732, -0.0023576198145747185, -0.06536328047513962, -0.05214814469218254, 0.05581703782081604, 0.027676986530423164, 0.029938876628875732, -0.02863873541355133, -0.04210321605205536, 0.000753035768866539, 0.0037891112733632326, -0.05090143531560898, -0.006928151939064264, 0.015664035454392433, -0.029832016676664352, 0.008116980083286762, 0.07815098017454147, -0.013473385013639927, 0.03797125816345215, 0.03266382962465286, -0.01586885191500187, -0.004294474609196186, 0.027552315965294838, 0.0513288788497448, -0.0481586679816246, -0.027302972972393036, -0.012796599417924881, 0.037721917033195496, -0.0033638938330113888, 0.028157861903309822, -0.004160898271948099, -0.046733856201171875, -0.01018741074949503, 0.005035822279751301, 0.024631449952721596, 0.015753084793686867, -0.024097144603729248, 0.013936449773609638, 0.025468526408076286, 0.05538959428668022, -0.0544634647667408, 0.014631045050919056, -0.04391985014081001, 0.07558631151914597, 0.022494230419397354, 0.05567455664277077, 0.010623759590089321, -0.03490791097283363, -0.018682856112718582, -0.03786439821124077, -0.021817443892359734, 0.019751466810703278, -0.014479659497737885, -0.05346609652042389, -0.05546083301305771, -0.01159441377967596, -0.011291640810668468, 0.003134588012471795, -0.01873628795146942, -0.02345597930252552, -0.018807528540492058, 0.0037534909788519144, 0.03200485557317734, 0.059200968593358994, -0.043171826750040054, 0.020962556824088097, -0.002279700245708227, -0.0022529850248247385, 0.025735680013895035, 0.01510301511734724, -0.0007619408424943686, 0.0010969944996759295, 0.04245941713452339, 0.019965188577771187, -0.037258852273225784, 0.014025500044226646, -0.03868366405367851, -0.013517910614609718, 0.04602145031094551, -0.07772353291511536, 0.04530904442071915, 0.08726977556943893, 0.03896862640976906, -0.08413518965244293, 0.0439910925924778, 0.02261890098452568, 0.00498684449121356, 0.011567697860300541, -0.05556769669055939, 0.0539291612803936, 0.03590527921915054, -0.012386965565383434, -0.051293257623910904, 0.037935636937618256, -0.02833596244454384, -0.02299291454255581, 0.05068771168589592, -0.0037534909788519144, -0.02580692060291767, 0.00276947976090014, -0.04074964299798012, -0.06974457949399948, 0.01529002096503973, 0.007800849620252848, 0.0022173647303134203, -0.06433029472827911, 0.016073668375611305, -0.02204897627234459, 0.043741751462221146, -0.011558793485164642, 0.028442824259400368, -0.003047763369977474, 0.044525396078825, -0.013277473859488964, -0.026430275291204453, -0.04153329133987427, 0.02744545415043831, -0.05927220731973648, 0.020196720957756042, -0.03729447349905968, -0.039502933621406555, -0.016456587240099907, 0.04969034343957901, -0.06465087831020355, -0.04855049401521683, 0.004839910659939051, -0.01211981289088726, 0.00506699038669467, 0.017988260835409164, -0.010873101651668549, -0.015753084793686867, -0.04224569723010063, -0.025005463510751724, -0.00714632635936141, 0.0387549065053463, 0.003277069190517068, 0.028193481266498566, -0.010650474578142166, 0.05253996700048447, -0.008063549175858498, 0.013428859412670135, -0.032966602593660355, 0.001413681311532855, -0.05613762140274048, -0.033750250935554504, -0.022814814001321793, -0.012983606196939945, -0.058880385011434555, 0.034320175647735596, 0.08192673325538635, -0.005988665856420994, -0.04523780196905136, -0.022601092234253883, 0.004559400491416454, -0.059770893305540085, 0.013339809142053127, -0.02083788625895977, 0.0507945716381073, 0.0348188616335392, -0.0387549065053463, 0.0329844132065773, 0.0037668487057089806, -0.01984051614999771, -0.028834646567702293, 0.06500708311796188, 0.06062578037381172, -0.0832803025841713, -0.011585508473217487, -0.018718477338552475, 0.0659688264131546, 0.033643390983343124, 0.02837158367037773, -0.0034729810431599617, 0.019074680283665657, -0.04078526422381401, -0.005895162466913462, 0.019911756739020348, 0.006874721497297287, -0.023064155131578445, -0.022422989830374718, -0.03624367341399193, -0.06518518179655075, -0.029974497854709625, -0.06397408992052078, -0.037258852273225784, 0.010303176939487457, 0.015067394822835922, -0.011745799332857132, -0.017685487866401672, -0.004875530954450369, -0.0026692976243793964, 0.05962841212749481, 0.010329891927540302, -0.062014974653720856, 0.00734223797917366, -0.02057073265314102, 0.034124262630939484, 0.016456587240099907, -0.05225500464439392, 0.032859742641448975, 0.004031774587929249, 0.02042825147509575, -0.027516694739460945, 0.035940900444984436, 0.010214125737547874, 0.014622140675783157, 0.0816417708992958, -0.002099372446537018, 0.010267556644976139, -0.022316129878163338, -0.016857314854860306, -0.011015582829713821, -0.008709168061614037, 0.008210483007133007, -0.030277270823717117, -0.0978846326470375, -0.04481035843491554, -0.01838008314371109, 0.0017765633529052138, -0.06678809225559235, 0.03651082515716553, -0.014452943578362465, 0.009190041571855545, 0.0014938270905986428, -0.06286986172199249, -0.035264115780591965, -0.011229305528104305, -0.05268244817852974, -0.01773001253604889, 0.01732928492128849, 0.03465856984257698, -0.005423193331807852, 0.04979720339179039, 0.028086621314287186, -0.036154624074697495, 0.06607569009065628, 0.07102691382169724, -0.01775672845542431, -0.040963366627693176, -0.002724954392760992, -0.021639343351125717, -0.06582634896039963, -0.031167777255177498, 0.03246792033314705, -0.0010168487206101418, -0.026537137106060982, -0.005018012132495642, 0.022173648700118065, 0.023117586970329285, 0.014835862442851067, 0.05449908599257469, -0.03004573844373226, -0.013286378234624863, 0.03617243096232414, 0.057206232100725174, -0.020357010886073112, 0.02037482149899006, -0.0011292754206806421, 0.024809550493955612, -0.024043714627623558, 0.02089131623506546, 0.003911556210368872, 0.05257558822631836, -0.012956890277564526, -0.03549564629793167, 0.013802872970700264, -0.00219287583604455, -0.000024349827072001062, 0.01044565811753273, 0.005151588469743729, -0.001253389986231923, -0.05959279090166092, 0.004372394178062677, -0.004249949008226395, -0.04142643138766289, 0.02229831926524639, -0.0016930782003328204, 0.06657437235116959, 0.044382914900779724, -0.0507945716381073, -0.03177332505583763, -0.018397893756628036, 0.014791336841881275, 0.015343451872467995, -0.012297914363443851, 0.05143573880195618, -0.06799918413162231, -0.007368953432887793, -0.00821938831359148, 0.011140254326164722, -0.020659783855080605, -0.02146124094724655, 0.026376845315098763, 0.004697429481893778, -0.005454360973089933, 0.043848611414432526, -0.002482290845364332, 0.050189029425382614, 0.010356607846915722, 0.01214652881026268, -0.010499089024960995, -0.022850433364510536, 0.027498885989189148, -0.01895000971853733, 0.004229912534356117, 0.01568184420466423, 0.013330903835594654, -0.004325642250478268, -0.04783808812499046, 0.00553895952180028, -0.044276054948568344, -0.013624771498143673, -0.02293948456645012, 0.011407407000660896, 0.0017064358107745647, 0.012289009988307953, 0.007872090674936771, -0.005432098638266325, 0.014274842105805874, -0.03757943585515022, -0.027783848345279694, -0.027944140136241913, -0.009528434835374355, 0.004034000914543867, -0.03376806154847145, 0.005690345540642738, 0.025147944688796997, -0.03633272275328636, -0.06269175559282303, -0.04498846083879471, -0.024987652897834778, -0.0264480859041214, -0.015833230689167976, -0.03733009472489357, -0.02995668724179268, -0.006750050000846386, 0.0371876135468483, 0.03396397456526756, -0.0439910925924778, -0.003751264652237296, 0.029814206063747406, 0.046733856201171875, 0.003831410314887762, 0.04445415735244751, 0.00044441912905313075, 0.0591653473675251, 0.07615623623132706, 0.06397408992052078, -0.038363080471754074, 0.04310058429837227, 0.03246792033314705, 0.011220400221645832, 0.055211491882801056, 0.05104391649365425, -0.023153206333518028, 0.016323011368513107, 0.03293098509311676, -0.00594414072111249, 0.02496984228491783, -0.05556769669055939, -0.047196920961141586, -0.016020238399505615, -0.04623517394065857, -0.07113377749919891, -0.04470349848270416, -0.009190041571855545, 0.0025535314343869686, 0.017578626051545143, -0.04680509865283966, -0.02874559722840786, -0.015699654817581177, 0.01711556315422058, -0.052183765918016434, -0.06888969242572784, 0.02801538072526455, 0.002635903423652053, -0.030027927830815315, -0.005498886574059725, 0.02958267368376255, 0.033429667353630066, 0.0660044476389885, 0.032806310802698135, -0.04644889384508133, -0.008522161282598972, 0.0020047558937221766, 0.07316413521766663, -0.03209390491247177, 0.0775098130106926, 0.05524711310863495, 0.006251365877687931, 0.05189880356192589, 0.06379599124193192, 0.02828253246843815, 0.04413357377052307, 0.024595828726887703, -0.029814206063747406, -0.027890708297491074, -0.03643958643078804, 0.023901233449578285, 0.0087047154083848, 0.013330903835594654, -0.02482736110687256, -0.01044565811753273, 0.06935276091098785, 0.04288686439394951, 0.04131956771016121, -0.014622140675783157, 0.01113134901970625, -0.06226431578397751, 0.09980812668800354, -0.03576279804110527, 0.007204209454357624, 0.0137405376881361, 0.01667921431362629, -0.02744545415043831, -0.03807811811566353, 0.017008701339364052, -0.024114955216646194, -0.027605745941400528, 0.0274810753762722, 0.013909733854234219, 0.09361019730567932, 0.010338797233998775, 0.0032993319910019636, -0.029832016676664352, 0.014185791835188866, -0.017213517799973488, -0.010356607846915722, -0.013945354148745537, 0.038256220519542694, -0.021639343351125717, 0.010632664896547794, 0.003294879337772727, 0.030704714357852936, 0.03257478028535843, 0.005610200110822916, -0.015405787155032158, -0.015120824798941612, -0.060554541647434235, 0.0075292447581887245, 0.04758874326944351, -0.01756972260773182, -0.04783808812499046, -0.020535113289952278, 0.027766037732362747, -0.038149360567331314, 0.0397878959774971, 0.010499089024960995, -0.03079376555979252, -0.029547054320573807, 0.026091882959008217, 0.009519529528915882, -0.031114347279071808, 0.03602994978427887, -0.06379599124193192, 0.045736487954854965, -0.009946973994374275, -0.017997166141867638, 0.018469134345650673, 0.023117586970329285, -0.02995668724179268, 0.03690264746546745, 0.042601898312568665, 0.015753084793686867, 0.01023193635046482, -0.0492272786796093, -0.0633685439825058, 0.0738052949309349, 0.05193442478775978, 0.07416149973869324, 0.01735599897801876, 0.04363488778471947, -0.07708236575126648, 0.05816797912120819, 0.05959279090166092, -0.010668285191059113, 0.028496254235506058, -0.007751871831715107 ]
23,409
conexions.proxy
get_cant_cons
null
def get_cant_cons(self) -> int: return self.__cant_cons
(self) -> int
[ -0.0023925774730741978, 0.03841100633144379, 0.06734903156757355, 0.040681928396224976, 0.019854336977005005, -0.021671075373888016, 0.04366656765341759, -0.037178222090005875, 0.03493973985314369, -0.09219939261674881, 0.0012226476101204753, 0.009602751582860947, 0.0306249912828207, -0.0711122676730156, -0.002840678906068206, 0.0007476804894395173, 0.016772374510765076, -0.04188227280974388, 0.03213353082537651, 0.029765285551548004, 0.022903859615325928, 0.0723450556397438, -0.007068241480737925, -0.06929553300142288, -0.051063280552625656, 0.06676507741212845, 0.012238642200827599, 0.021833283826708794, 0.062028586864471436, -0.016520950943231583, -0.0693604126572609, 0.0618014931678772, 0.011427599005401134, -0.031744230538606644, 0.017940275371074677, 0.020454509183764458, 0.020097650587558746, 0.0014091875636950135, -0.010657107457518578, 0.002514234045520425, -0.05709744244813919, -0.01661016419529915, -0.02561274543404579, -0.006099044810980558, -0.00013597645738627762, -0.0728641226887703, 0.016691269353032112, 0.020324742421507835, -0.054145246744155884, -0.05456698685884476, 0.049376312643289566, 0.050187353044748306, 0.031809113919734955, -0.011938556097447872, 0.020162533968687057, 0.04480202868580818, 0.015499035827815533, 0.03678892180323601, -0.020048988983035088, -0.00836996641010046, 0.0038930075243115425, 0.07091762125492096, 0.0198381170630455, -0.05456698685884476, 0.029830168932676315, 0.03588055074214935, -0.008759266696870327, 0.01761585846543312, 0.03278236836194992, 0.04801375791430473, 0.0571623258292675, -0.03184155747294426, -0.06663531064987183, 0.04379633441567421, 0.03393404930830002, -0.07649759948253632, 0.04564551264047623, -0.040325067937374115, 0.058524876832962036, -0.01649661920964718, -0.00566919194534421, -0.02017875574529171, 0.03370695561170578, -0.0058435662649571896, 0.06322892755270004, -0.003063715761527419, -0.032749924808740616, -0.02199549227952957, -0.0781196802854538, 0.05009002983570099, -0.05995231494307518, 0.07273435592651367, -0.016399294137954712, -0.00029653767705895007, 0.039222050458192825, 0.04739736393094063, 0.013471427373588085, -0.03691868856549263, 0.034907300025224686, -0.019108178094029427, 0.028126979246735573, 0.08648964762687683, -0.023520253598690033, -0.02267676778137684, 0.01639118418097496, -0.01761585846543312, 0.0026703597977757454, 0.002210092730820179, -0.013406543992459774, -0.030803421512246132, -0.04262842983007431, 0.0061963703483343124, -0.038573216646909714, -0.026034487411379814, 0.005393437575548887, 0.016869699582457542, -0.030949408188462257, -0.009935279376804829, -0.0024229916743934155, 0.040844134986400604, 0.037178222090005875, -0.021541308611631393, -0.016756152734160423, -0.05369105935096741, 0.029554415494203568, 0.07370761036872864, -0.016399294137954712, 0.0239095538854599, 0.024298854172229767, 0.0239095538854599, 0.050187353044748306, -0.053042225539684296, 0.012287304736673832, 0.03195510432124138, -0.002948142122477293, -0.013447096571326256, 0.04000065103173256, 0.033674515783786774, -0.010178592056035995, 0.01930282823741436, 0.030657432973384857, 0.028824476525187492, 0.018929747864603996, -0.0066627198830246925, 0.04613213986158371, 0.04538597911596298, -0.052458275109529495, 0.03294457495212555, -0.05651349201798439, 0.008580837398767471, 0.021622411906719208, -0.0008313193102367222, -0.009497315622866154, -0.017453650012612343, 0.01180878933519125, 0.06426706165075302, -0.019173061475157738, -0.039286933839321136, 0.01802138052880764, -0.08506221324205399, -0.061314865946769714, -0.018978411331772804, 0.04220668971538544, -0.011703353375196457, 0.016285747289657593, 0.04678097367286682, 0.012335967272520065, -0.005024412646889687, -0.01148437149822712, 0.04350435733795166, -0.024104204028844833, 0.010105598717927933, 0.02215770073235035, -0.00828480627387762, 0.02910022996366024, 0.014323023147881031, 0.008670051582157612, -0.007445376832038164, -0.010340801440179348, -0.006346412934362888, 0.02442862093448639, -0.019156841561198235, 0.013309218920767307, -0.027543026953935623, 0.05709744244813919, -0.010081266984343529, 0.03370695561170578, -0.0038707037456333637, 0.036951128393411636, 0.004566173069179058, -0.00710068317130208, 0.01480964943766594, 0.024396179243922234, 0.02910022996366024, 0.03287969157099724, -0.041557855904102325, 0.043471917510032654, 0.02343914844095707, 0.022709209471940994, -0.05849243700504303, -0.032457947731018066, 0.017859172075986862, -0.015620692633092403, 0.0007588323205709457, 0.03184155747294426, 0.015588250942528248, -0.06426706165075302, -0.0350046269595623, -0.03203620761632919, -0.022498339414596558, -0.03604276105761528, -0.013382213190197945, 0.03575078397989273, -0.00177517079282552, 0.025758732110261917, -0.08648964762687683, 0.05901150405406952, -0.028354071080684662, -0.013236225582659245, 0.032084871083498, 0.07299388945102692, -0.06741391122341156, 0.03639961779117584, -0.027948549017310143, 0.002579117426648736, 0.0015815342776477337, -0.057648953050374985, 0.045223768800497055, 0.0192541666328907, 0.023925775662064552, -0.001997194020077586, 0.0169183611869812, -0.013666078448295593, -0.01158169750124216, 0.00643157260492444, 0.024250192567706108, -0.009343218058347702, -0.006593781523406506, -0.03471264988183975, -0.01772940531373024, -0.04927898570895195, 0.024363737553358078, 0.03347986564040184, 0.06095800921320915, 0.018508005887269974, 0.01644795574247837, 0.04191471263766289, 0.0163344107568264, -0.0028751480858772993, 0.03779461234807968, -0.040681928396224976, -0.07026878744363785, -0.05748674273490906, -0.05352885276079178, 0.010048825293779373, -0.059108830988407135, -0.024250192567706108, 0.009878505952656269, 0.002260782988741994, 0.029294880107045174, -0.00895391684025526, -0.01568557508289814, -0.00363752874545753, 0.0026338628958910704, -0.06001719832420349, 0.04973316937685013, -0.003933559637516737, -0.007031744811683893, -0.06235300377011299, 0.051355257630348206, 0.023633798584342003, -0.003345553297549486, 0.0023864947725087404, -0.04694318026304245, -0.06163928285241127, -0.06400752812623978, 0.013609305024147034, 0.048662591725587845, -0.017421208322048187, -0.014160814695060253, -0.019805675372481346, -0.007810346316546202, -0.033025678247213364, -0.03753507882356644, -0.10245098173618317, -0.029359763488173485, 0.012344078160822392, -0.05369105935096741, -0.04013041779398918, 0.022238804027438164, -0.012887476943433285, 0.003775406163185835, 0.02600204572081566, 0.002723077544942498, 0.11990462988615036, -0.052458275109529495, 0.03867053985595703, -0.008832260966300964, 0.0027575469575822353, 0.046034812927246094, -0.012936139479279518, -0.02356891520321369, -0.09583286941051483, -0.03255527466535568, -0.000532753998413682, 0.009294555522501469, 0.060795798897743225, -0.020211197435855865, 0.03487485647201538, 0.0198381170630455, -0.015263833105564117, 0.027023959904909134, 0.07442132383584976, 0.0594656877219677, 0.03506951034069061, 0.032084871083498, 0.016821036115288734, 0.014679881744086742, -0.0028852862305939198, 0.08201269060373306, 0.005389382131397724, 0.03523171693086624, 0.004622946493327618, -0.004032912198454142, -0.0018724959809333086, 0.00866194162517786, 0.022060375660657883, -0.005547535605728626, 0.03318788856267929, 0.022482117637991905, -0.043536800891160965, -0.05388570949435234, -0.020146314054727554, -0.030916966497898102, 0.00730344420298934, 0.04914921894669533, 0.054372336715459824, -0.052101414650678635, -0.0077535733580589294, -0.04103878512978554, 0.06546740978956223, -0.008053659461438656, 0.011500592343509197, 0.009935279376804829, 0.058395110070705414, -0.04545086249709129, 0.05096595734357834, 0.008321302942931652, 0.027510585263371468, 0.029116451740264893, -0.05388570949435234, 0.03278236836194992, -0.02489902637898922, 0.04444516822695732, -0.01189800351858139, 0.007895505987107754, 0.002745381323620677, -0.012879366055130959, 0.050057586282491684, 0.038800306618213654, 0.011679022572934628, -0.01222242135554552, 0.023779787123203278, 0.022498339414596558, -0.04824085161089897, -0.0030109980143606663, -0.03218219429254532, -0.031225163489580154, -0.018280914053320885, -0.004987915977835655, -0.046456556767225266, 0.003716605482622981, -0.012181868776679039, -0.025158559903502464, 0.0306249912828207, 0.038573216646909714, 0.0016312106745317578, 0.030706096440553665, -0.019757011905312538, -0.005069020204246044, -0.05936836451292038, -0.013325439766049385, -0.05768139287829399, 0.02671576291322708, -0.03523171693086624, -0.005859787110239267, -0.02343914844095707, -0.0466512069106102, -0.009716297499835491, 0.058297786861658096, 0.04204447939991951, -0.05184188112616539, -0.022725431248545647, -0.03357718884944916, -0.026229137554764748, 0.007680579088628292, 0.057584069669246674, -0.038865189999341965, 0.032101090997457504, 0.028727151453495026, -0.0009732518810778856, 0.0002395111951045692, 0.05236094817519188, 0.016188422217965126, -0.02478548139333725, 0.011784457601606846, -0.016756152734160423, -0.012400850653648376, -0.023763565346598625, -0.007773849181830883, -0.1114048957824707, 0.015328716486692429, 0.03841100633144379, 0.0005839511286467314, -0.018524227663874626, -0.0752648115158081, -0.03815147280693054, -0.012473844923079014, 0.024882806465029716, -0.03565346077084541, 0.009464873932301998, -0.03918960690498352, 0.046391673386096954, 0.020373405888676643, -0.03883275017142296, -0.00475271325558424, 0.005713799502700567, 0.043536800891160965, -0.008645720779895782, 0.011322163045406342, -0.005734075326472521, 0.035783227533102036, 0.030235690996050835, -0.09122613817453384, -0.02858116291463375, -0.011614139191806316, 0.0032482279930263758, -0.026440009474754333, 0.037989262491464615, 0.05579977482557297, 0.046391673386096954, 0.07571899145841599, 0.03899495676159859, 0.05009002983570099, 0.02296874299645424, -0.056837908923625946, -0.006155818235129118, -0.013041574507951736, 0.033901605755090714, -0.039449140429496765, -0.0074940393678843975, 0.002049911767244339, 0.043699007481336594, -0.015758570283651352, -0.045807719230651855, 0.007291278336197138, -0.08441337943077087, -0.05521582067012787, -0.037470195442438126, -0.019156841561198235, 0.0022141479421406984, 0.0845431461930275, -0.051355257630348206, 0.0011030187597498298, -0.030251912772655487, -0.03406381607055664, 0.009043131954967976, 0.00784278754144907, -0.025515420362353325, 0.011597918346524239, 0.008361855521798134, -0.015012409538030624, -0.01475287601351738, -0.055605124682188034, -0.020795147866010666, 0.014485231600701809, -0.002919755643233657, -0.01849178597331047, 0.06760856509208679, -0.016310079023241997, 0.0314846970140934, -0.0010249558836221695, 0.014339243993163109, -0.0031265716534107924, -0.010316469706594944, -0.015791011974215508, -0.1422245353460312, -0.013406543992459774, -0.010997746139764786, -0.007534591481089592, -0.0454833023250103, -0.02694285474717617, 0.008791708387434483, 0.005888173822313547, -0.01813492551445961, 0.057876043021678925, 0.038573216646909714, -0.03406381607055664, 0.013609305024147034, 0.007907670922577381, -0.007206119131296873, 0.030706096440553665, 0.0026196695398539305, -0.030998071655631065, -0.060503825545310974, -0.032279521226882935, -0.026796868070960045, 0.004570228513330221, 0.013917502015829086, -0.010397573933005333, 0.03049522452056408, 0.0018937858985736966, 0.05476163700222969, 0.059108830988407135, -0.0007973568863235414, -0.02595338225364685, 0.000009282643077312969, -0.023017406463623047, 0.06235300377011299, 0.005442100111395121, 0.017064349725842476, 0.009878505952656269, -0.021735958755016327, 0.006208535749465227, -0.013025353662669659, 0.02233613096177578, 0.002287141978740692, -0.09434054791927338, -0.029246218502521515, 0.05433989688754082, 0.008033382706344128, -0.024396179243922234, 0.03565346077084541, 0.015336827374994755, -0.027315935119986534, -0.01597755216062069, -0.023536473512649536, -0.030284354463219643, -0.04648899659514427, -0.000007290676421689568, 0.010129929520189762, -0.069944366812706, 0.09979075938463211, -0.023828450590372086, 0.017518533393740654, 0.0018572889966890216, -0.02343914844095707, 0.02543431520462036, -0.0571623258292675, 0.00022823263134341687, -0.008114486932754517, 0.02460705116391182, 0.0033840779215097427, -0.06222323700785637, 0.09103149175643921, 0.03523171693086624, 0.022190142422914505, 0.016050545498728752, 0.07338318973779678, 0.06303428113460541, 0.013511979952454567, -0.08058525621891022, 0.029635518789291382, -0.08597058057785034, -0.06961994618177414, -0.005539425183087587, -0.01738876663148403, 0.015474704094231129, 0.00517445569857955, -0.02910022996366024, -0.04415319114923477, 0.00244935043156147, 0.0195461418479681, 0.04123343527317047, -0.011533034965395927, -0.00559619814157486, -0.05476163700222969, 0.03737287223339081, -0.03409625589847565, -0.034972183406353, -0.0012834758963435888, 0.024866584688425064, -0.026813087984919548, -0.0036983571480959654, 0.03565346077084541, 0.02746192365884781, -0.04100634530186653, -0.01860533095896244, -0.007112849038094282, -0.024736817926168442, -0.042076922953128815, -0.027835004031658173, -0.042563546448946, -0.015271943993866444, 0.03685380518436432, 0.04966828599572182, -0.011695243418216705, -0.010235365480184555, -0.013730961829423904, 0.046099696308374405, 0.019319050014019012, -0.00938376970589161, 0.005908449646085501, 0.025564081966876984, 0.03214975446462631, 0.010932862758636475, 0.013511979952454567, -0.026083149015903473, 0.00475271325558424, -0.02251455932855606, 0.013017243705689907, -0.008775487542152405, -0.01912439987063408, -0.06258009374141693, -0.06371555477380753, -0.042725756764411926, -0.04914921894669533, 0.020503172650933266, -0.017826730385422707, 0.04927898570895195, -0.04175250604748726, 0.013349771499633789, 0.01709679141640663, -0.013114568777382374, -0.0038281239103525877, 0.05453454703092575, -0.0104948990046978, -0.01531249564141035, -0.03795682266354561, -0.0070074135437607765, 0.03176045045256615, 0.033382538706064224, 0.03772972896695137, -0.037178222090005875, -0.032749924808740616, 0.010730101726949215, 0.03503706678748131, 0.012765820138156414, 0.012490065768361092, 0.05265292525291443, -0.05476163700222969, 0.055086053907871246, -0.05229606479406357, 0.03691868856549263, -0.03691868856549263, -0.05813557654619217, -0.04554818570613861, -0.011265390552580357, -0.01708056963980198, -0.05745430290699005, -0.020048988983035088, 0.02571007050573826, 0.02874337136745453, -0.06134730949997902, -0.015004299581050873, -0.030057260766625404, -0.009659525007009506, -0.001448725932277739, -0.05784360319375992, -0.015588250942528248, -0.016642605885863304, -0.019692128524184227, -0.032328180968761444, -0.0489870086312294, 0.06339113414287567, -0.002151292050257325, -0.01860533095896244, -0.06391020864248276, -0.01215753797441721, -0.04220668971538544, 0.007680579088628292, 0.0448993518948555, 0.008378076367080212, 0.0011760126799345016, -0.026910413056612015, 0.0022648382000625134, -0.017940275371074677, 0.04519132897257805, 0.032328180968761444, 0.016131648793816566, 0.07623805850744247, 0.03240928798913956, 0.0046391673386096954, -0.03691868856549263, 0.04671609029173851, -0.01743742823600769, -0.026050707325339317, 0.027607910335063934, 0.03067365474998951, 0.004602670203894377, -0.023471590131521225, -0.010803095996379852, 0.0006463000900112092, 0.06462392210960388, -0.020973578095436096, 0.004091713111847639, -0.038638100028038025, 0.060146965086460114, 0.01446090079843998, 0.02193060889840126, 0.015036741271615028, -0.006735713686794043, -0.0027697125915437937, 0.00039056799141690135, -0.020373405888676643, 0.0010421904735267162, 0.01411215215921402, -0.04905189201235771, -0.019854336977005005, -0.019432594999670982, 0.0012429237831383944, 0.07623805850744247, 0.0104948990046978, -0.07020390033721924, -0.0734480768442154, 0.0038524551782757044, 0.03854077309370041, 0.03704845532774925, -0.03925449028611183, 0.01930282823741436, -0.020616717636585236, 0.027786340564489365, 0.016066765412688255, 0.0019880696199834347, -0.03772972896695137, 0.044347841292619705, 0.04418563470244408, -0.0600496381521225, -0.019432594999670982, -0.020422067493200302, -0.003976139239966869, -0.027478143572807312, -0.010827426798641682, 0.025109898298978806, 0.03568590059876442, 0.01982189528644085, 0.00740482471883297, 0.04103878512978554, -0.006326137110590935, 0.0061963703483343124, 0.03189022094011307, 0.018118705600500107, -0.016164090484380722, -0.01802138052880764, -0.038930073380470276, 0.04253110662102699, -0.025564081966876984, 0.05236094817519188, 0.016902141273021698, -0.049473635852336884, 0.03341498225927353, 0.030706096440553665, 0.04736492410302162, -0.04684585705399513, 0.02788366563618183, 0.026277801021933556, -0.00321578630246222, 0.00022785244800616056, -0.02327693998813629, 0.04175250604748726, 0.004028857219964266, -0.003584810998290777, -0.039286933839321136, 0.06627845019102097, 0.0100569361820817, 0.05359373614192009, -0.020730264484882355, 0.06929553300142288 ]
23,410
conexions.proxy
get_cant_cons_espido
null
def get_cant_cons_espido(self) -> int: return self.__cant_cons_espido
(self) -> int
[ -0.006002187728881836, 0.021745631471276283, 0.04723032936453819, 0.017826169729232788, 0.04500000923871994, -0.0106514235958457, 0.05392129346728325, -0.04326166957616806, 0.045262400060892105, -0.07720846682786942, 0.012012574821710587, -0.02719023823738098, 0.024812322109937668, -0.10187319666147232, 0.028207002207636833, 0.011381197720766068, 0.040572166442871094, -0.08016036450862885, 0.05880831927061081, -0.0008666068315505981, 0.036701902747154236, 0.05966109037399292, -0.010979412123560905, -0.09406707435846329, -0.030109334737062454, 0.06333456188440323, 0.02861698903143406, 0.02983054518699646, 0.0644497200846672, -0.036898694932460785, -0.04972304031252861, 0.0674344152212143, -0.012865344993770123, -0.011758384294807911, 0.014759478159248829, 0.05565963312983513, -0.004882927518337965, -0.005178116727620363, -0.0009501414024271071, -0.00041203544242307544, -0.09459185600280762, 0.009372268803417683, -0.0349307656288147, 0.001162308850325644, -0.016153428703546524, -0.08055394887924194, 0.018252555280923843, 0.034274786710739136, -0.008863886818289757, -0.020154887810349464, 0.05638120695948601, 0.02410714700818062, 0.009364068508148193, -0.005948889534920454, 0.019941695034503937, 0.052051760256290436, 0.012324164621531963, 0.043491262942552567, -0.024008750915527344, -0.026239072903990746, 0.002457863185554743, 0.07123908400535583, 0.017727773636579514, -0.030634116381406784, 0.0401785783469677, 0.04932945594191551, 0.009839652106165886, 0.024123547598719597, 0.015513851307332516, 0.04427843540906906, 0.05008383095264435, -0.03817785158753395, -0.06920555233955383, 0.032208461314439774, 0.03125729411840439, -0.05073980614542961, 0.03765306994318962, -0.029797745868563652, 0.01849854551255703, -0.012274965643882751, 0.012504558078944683, -0.013316329568624496, 0.040900152176618576, 0.0011233602417632937, 0.06900876015424728, 0.017022598534822464, 0.019974494352936745, 0.005272413603961468, -0.07405978441238403, 0.041064146906137466, -0.04500000923871994, 0.06651604920625687, -0.03538994863629341, -0.03151968494057655, 0.04217930883169174, 0.024139946326613426, 0.021663634106516838, -0.02286079153418541, 0.02112245373427868, -0.03958820179104805, 0.0064982702024281025, 0.11630468815565109, 0.01455448567867279, -0.037915460765361786, 0.0289777759462595, -0.02371356077492237, -0.014972670935094357, 0.014357692562043667, 0.017334187403321266, -0.04427843540906906, 0.000976277980953455, 0.04395044595003128, -0.025501098483800888, -0.02108965441584587, 0.015973035246133804, -0.015653247013688087, -0.005387209355831146, 0.00120023253839463, -0.0003323444980196655, 0.012857145629823208, 0.01917092129588127, 0.007482235319912434, -0.022745996713638306, -0.05877552181482315, 0.028223402798175812, 0.06221939995884895, -0.023631565272808075, 0.028125004842877388, 0.030109334737062454, 0.0054241083562374115, 0.047000739723443985, -0.0682871863245964, 0.03051932156085968, 0.02043367736041546, -0.005465106572955847, -0.027141040191054344, 0.042277704924345016, 0.0480831004679203, -0.014857874251902103, 0.01799016445875168, -0.009273871779441833, 0.039325810968875885, -0.019466111436486244, -0.01572704315185547, 0.05198616161942482, 0.06441692262887955, -0.019958093762397766, 0.043163273483514786, -0.04821429401636124, 0.0052519142627716064, 0.052937328815460205, 0.0033557312563061714, -0.030420923605561256, -0.014685681089758873, -0.0028329999186098576, 0.045098405331373215, 0.014866074547171593, -0.05726677551865578, 0.026042278856039047, -0.06959913671016693, -0.04467201977968216, -0.010020045563578606, 0.0654664859175682, -0.015628647059202194, 0.029879743233323097, 0.037784263491630554, -0.0064613716676831245, 0.014866074547171593, 0.02181122824549675, 0.06428572535514832, -0.030830910429358482, 0.004468841943889856, 0.013021139428019524, -0.019777700304985046, 0.03522595390677452, 0.0213028471916914, 0.018252555280923843, -0.015472852624952793, 0.01307853776961565, -0.015538450330495834, -0.012791547924280167, -0.017301388084888458, 0.018268954008817673, -0.03104410320520401, 0.053134121000766754, 0.015054667368531227, 0.04358965903520584, 0.00026469689328223467, 0.016227226704359055, -0.024631928652524948, 0.00833500549197197, 0.015792641788721085, 0.03502916172146797, 0.03853863850235939, -0.0012391811469569802, -0.0052437144331634045, 0.026386667042970657, -0.03001093864440918, 0.015472852624952793, -0.05251094326376915, -0.03853863850235939, 0.026583459228277206, -0.016629012301564217, 0.003388530109077692, 0.0022323711309581995, 0.014972670935094357, -0.05726677551865578, -0.020794464275240898, -0.02530430443584919, -0.030945705249905586, -0.026649057865142822, -0.024156345054507256, 0.0023000186774879694, 0.009560861624777317, 0.03450438007712364, -0.047886308282613754, 0.03771866485476494, -0.009798653423786163, 0.003074891399592161, 0.04237610101699829, 0.05841473489999771, -0.05359330400824547, 0.01264395285397768, -0.06353135406970978, 0.028026608750224113, -0.01987609639763832, -0.06674563884735107, 0.03538994863629341, 0.018039362505078316, -0.0017178392736241221, 0.006227680016309023, 0.024139946326613426, -0.04539359360933304, 0.013447524979710579, 0.027436230331659317, 0.011020410805940628, -0.009224673733115196, -0.008002917282283306, -0.06697522848844528, -0.02635386772453785, -0.03680029883980751, -0.0010772369569167495, 0.0256486926227808, 0.04903426766395569, 0.014546285383403301, 0.008089014329016209, 0.042835284024477005, 0.010323435068130493, 0.0043253470212221146, 0.024517133831977844, -0.007055850699543953, -0.09236153215169907, -0.03561954200267792, -0.06326895952224731, -0.013554120436310768, -0.026796652004122734, -0.037423476576805115, 0.050149425864219666, -0.005563503131270409, 0.014866074547171593, -0.024369537830352783, -0.04132653772830963, -0.03801385685801506, -0.0017998364055529237, -0.03486516699194908, 0.059595491737127304, -0.017875367775559425, 0.01053662784397602, -0.026550661772489548, 0.012684951536357403, 0.00862609501928091, -0.027797017246484756, -0.026271870359778404, -0.03578353300690651, -0.05123179033398628, -0.0783892273902893, -0.026435865089297295, 0.044016044586896896, -0.017924565821886063, 0.0017004149267449975, -0.01360331941395998, 0.006736062001436949, -0.011922378093004227, -0.043196070939302444, -0.08383383601903915, -0.0060718851163983345, 0.01665361039340496, -0.05352770909667015, -0.03466837480664253, 0.00890488550066948, -0.03857143595814705, 0.03955540060997009, 0.013365527614951134, -0.010766219347715378, 0.1082361713051796, -0.0289777759462595, 0.0305029209703207, -0.001999704400077462, -0.0003677057393360883, 0.032208461314439774, -0.004052706528455019, -0.03053572028875351, -0.09852771461009979, -0.055922023952007294, -0.005928390193730593, 0.035685136914253235, 0.09642858803272247, -0.01812135986983776, 0.03519315645098686, 0.0077610258013010025, -0.03489796444773674, 0.029092570766806602, 0.0823906883597374, 0.038145050406455994, 0.014710280112922192, 0.048739075660705566, 0.026895049959421158, 0.004911626223474741, -0.009478865191340446, 0.06162901967763901, 0.01743258349597454, 0.056610796600580215, 0.02635386772453785, -0.0143904909491539, 0.026140674948692322, 0.013127735815942287, 0.006010387558490038, -0.019072525203227997, 0.05723397806286812, 0.009429666213691235, -0.03627551719546318, -0.07773324847221375, -0.007605230901390314, -0.03055211901664734, 0.008367803879082203, 0.02231961116194725, 0.06477770954370499, -0.027141040191054344, -0.016809405758976936, -0.014890673570334911, 0.03434038534760475, -0.023844756186008453, 0.009790454059839249, 0.02563229389488697, 0.059595491737127304, -0.07025511562824249, 0.03365160897374153, 0.008240709081292152, 0.043688055127859116, 0.019974494352936745, -0.04932945594191551, 0.029371362179517746, 0.0012904293835163116, 0.04936225339770317, -0.0108072180300951, 0.020696068182587624, 0.008658893406391144, 0.01728498935699463, 0.08350584656000137, 0.04903426766395569, -0.024123547598719597, -0.019449712708592415, 0.011922378093004227, 0.03486516699194908, -0.0783892273902893, 0.005571702960878611, -0.02932216413319111, -0.06021866947412491, 0.016374820843338966, -0.004739432595670223, -0.038473039865493774, 0.006227680016309023, 0.0009378418326377869, -0.024008750915527344, 0.058021146804094315, 0.05431487783789635, -0.012160169892013073, 0.029174568131566048, -0.032208461314439774, -0.028830179944634438, -0.02266399934887886, -0.024484334513545036, -0.05064141005277634, 0.021188050508499146, -0.0041839019395411015, 0.004862428177148104, -0.00035463745007291436, -0.06176021695137024, -0.011823982000350952, 0.02840379625558853, -0.0036980691365897655, -0.036177121102809906, -0.0023082182742655277, -0.010913814418017864, -0.005702898371964693, -0.013849310576915741, 0.03975219279527664, -0.026058679446578026, 0.040900152176618576, 0.03699709102511406, 0.020122088491916656, 0.009347669780254364, 0.05631560832262039, 0.007773325312882662, -0.03581633418798447, 0.0018029112834483385, -0.02561589516699314, -0.06143222749233246, -0.025041915476322174, 0.026058679446578026, -0.0868513286113739, 0.0028965475503355265, 0.04749272018671036, 0.00535851065069437, -0.045426394790410995, -0.03486516699194908, -0.06913995742797852, 0.015538450330495834, 0.0213028471916914, -0.043884847313165665, -0.02005649171769619, -0.02090926095843315, 0.014521686360239983, 0.029043372720479965, -0.026993446052074432, 0.023418372496962547, -0.010077443905174732, 0.03607872501015663, 0.017055397853255272, 0.00776512548327446, -0.03971939533948898, 0.03903061896562576, 0.042638491839170456, -0.08173470944166183, -0.01439869124442339, -0.018022961914539337, -0.008585096336901188, -0.040736161172389984, 0.008134112693369389, 0.05077260360121727, 0.026649057865142822, 0.05198616161942482, 0.03752187266945839, 0.05287173017859459, 0.03627551719546318, -0.06953354179859161, -0.02719023823738098, 0.0137837128713727, 0.03135569021105766, -0.043196070939302444, 0.0163092240691185, 0.004677934572100639, 0.035324349999427795, -0.0021339745726436377, 0.0031712378840893507, -0.002443513600155711, -0.05621721222996712, -0.030256930738687515, -0.03732508048415184, -0.03086370788514614, 0.0034746271558105946, 0.08731051534414291, -0.07137027382850647, -0.01779337041079998, -0.0067237624898552895, -0.049099862575531006, 0.023828357458114624, -0.01430849451571703, -0.0025972581934183836, 0.013431125320494175, -0.0015784441493451595, -0.025009116157889366, -0.013217932544648647, -0.05864432826638222, -0.0023000186774879694, 0.01761297695338726, 0.014497087337076664, -0.0032224860042333603, 0.050674207508563995, 0.013431125320494175, 0.05516764894127846, -0.017908167093992233, 0.02336917445063591, 0.0037759665865451097, -0.006883656606078148, -0.021138852462172508, -0.12260206788778305, -0.020696068182587624, -0.016678210347890854, -0.00528061343356967, 0.017711373046040535, -0.02946975827217102, -0.002466062782332301, -0.0013734514359384775, 0.004019907675683498, 0.03834184259176254, 0.045065607875585556, -0.032356057316064835, -0.015751643106341362, 0.012561955489218235, -0.014021504670381546, 0.029797745868563652, 0.0038723130710422993, -0.03327442333102226, -0.04680394381284714, -0.06953354179859161, 0.003948160447180271, 0.019105324521660805, 0.010512027889490128, -0.015177663415670395, 0.018924931064248085, -0.0062891775742173195, 0.05602042004466057, 0.051034994423389435, 0.0062973774038255215, -0.037095487117767334, 0.0014021503739058971, -0.02548469975590706, 0.07182946056127548, 0.009355869144201279, 0.01491527259349823, -0.0005760296480730176, 0.002884248038753867, 0.037226684391498566, -0.03906342014670372, 0.05579082667827606, -0.013767313212156296, -0.060645055025815964, -0.014964470639824867, 0.08658894151449203, 0.013193333521485329, -0.03922741487622261, 0.024549931287765503, 0.012233967892825603, -0.007879921235144138, -0.008273507468402386, -0.035849131643772125, -0.06084184721112251, -0.006133383139967918, -0.02217201516032219, 0.00222007161937654, -0.06750001013278961, 0.04768951237201691, -0.00762983039021492, 0.025599494576454163, 0.0002520129783079028, 0.009101678617298603, 0.03437318652868271, -0.051887765526771545, -0.029043372720479965, -0.02143404260277748, 0.02043367736041546, 0.011840381659567356, -0.06713922321796417, 0.08494899421930313, 0.057660359889268875, 0.019597306847572327, 0.00575209641829133, 0.038145050406455994, 0.03647230938076973, -0.004235150292515755, -0.08337464928627014, 0.038997821509838104, -0.08219389617443085, -0.07884841412305832, -0.008203810080885887, -0.02407434955239296, -0.022991986945271492, 0.0030420925468206406, -0.03975219279527664, -0.0494934506714344, -0.008150511421263218, 0.01525966078042984, 0.037390679121017456, -0.02391035482287407, -0.009979046881198883, -0.06333456188440323, 0.03163447976112366, -0.025845486670732498, -0.008162811398506165, -0.03135569021105766, -0.007310041692107916, -0.02195882424712181, -0.026419466361403465, 0.027501827105879784, 0.03158528357744217, -0.019826898351311684, -0.01813775859773159, 0.010348034091293812, -0.015415455214679241, -0.026780253276228905, -0.014497087337076664, -0.030027339234948158, 0.0023574165534228086, 0.018957730382680893, 0.018974129110574722, 0.0019802299793809652, -0.002876048209145665, -0.0029805945232510567, 0.027255836874246597, 0.004374545533210039, 0.01917092129588127, 0.015120265074074268, 0.011069608852267265, 0.06490890681743622, -0.014046103693544865, -0.0004794267879333347, 0.006403973791748285, 0.01607143133878708, -0.042999278753995895, 0.03335642069578171, -0.02217201516032219, -0.015546650625765324, -0.04637756198644638, -0.0498870350420475, 0.005379009991884232, -0.03748907521367073, -0.0007487360271625221, -0.024697527289390564, 0.012955541722476482, -0.0387682281434536, 0.03361881151795387, 0.011807582341134548, -0.031814876943826675, 0.006223579868674278, 0.04749272018671036, -0.015956636518239975, -0.031486887484788895, -0.06297377496957779, -0.004522140137851238, 0.024845121428370476, 0.022106418386101723, 0.06372814625501633, -0.026796652004122734, -0.043327268213033676, -0.0023697162978351116, 0.025960281491279602, 0.04014578089118004, -0.009544462896883488, 0.03483236953616142, -0.04112974554300308, 0.05290452763438225, -0.06520409137010574, 0.03552114591002464, -0.028731783851981163, -0.0610058419406414, -0.05749636888504028, -0.012701351195573807, -0.017301388084888458, -0.044901613146066666, -0.011668187566101551, 0.022450806573033333, 0.021319245919585228, -0.08009476959705353, -0.03529155254364014, -0.05218295380473137, -0.00035284378100186586, 0.0062809777446091175, -0.06051386147737503, -0.027961011976003647, -0.023106783628463745, -0.022040821611881256, -0.036373913288116455, -0.029256565496325493, 0.061858613044023514, 0.005604501813650131, -0.018170557916164398, -0.052412547171115875, 0.016104230657219887, -0.03748907521367073, 0.019269319251179695, 0.06530249118804932, -0.004956724587827921, 0.012291365303099155, -0.02809220738708973, 0.022254012525081635, -0.0143904909491539, 0.0383746437728405, 0.03647230938076973, 0.01812135986983776, 0.0646137148141861, 0.05267493799328804, 0.01813775859773159, -0.04575438052415848, 0.019826898351311684, -0.03440598398447037, -0.01437409222126007, 0.028567789122462273, 0.02007289044559002, -0.01867893896996975, -0.03466837480664253, -0.014357692562043667, 0.004534439649432898, 0.054150886833667755, 0.0011684587225317955, -0.012102772481739521, -0.03466837480664253, 0.06750001013278961, -0.0007702602888457477, 0.026796652004122734, -0.014587284065783024, -0.005153517704457045, 0.0075806318782269955, -0.012611154466867447, -0.03598032891750336, -0.004509840626269579, 0.0071624466218054295, -0.061661820858716965, -0.038997821509838104, -0.02599308080971241, 0.002773551968857646, 0.07084549218416214, 0.004608237184584141, -0.052412547171115875, -0.06326895952224731, 0.04572158306837082, 0.03320882469415665, 0.030929306522011757, -0.030453722923994064, 0.031486887484788895, -0.022991986945271492, 0.04047377035021782, 0.03784986212849617, -0.006522869225591421, -0.04444243013858795, 0.013217932544648647, 0.051395781338214874, -0.04519680142402649, 0.007773325312882662, -0.028321798890829086, 0.014242896810173988, -0.03552114591002464, -0.018957730382680893, -0.009396867826581001, 0.0058340937830507755, 0.009716656059026718, 0.03575073555111885, 0.060809049755334854, -0.03571793809533119, -0.001489272341132164, 0.03981779143214226, 0.024320339784026146, -0.01672740839421749, -0.016973400488495827, -0.026058679446578026, 0.05752916634082794, -0.016210826113820076, 0.029420560225844383, 0.004694334231317043, -0.024894319474697113, 0.03102770261466503, 0.03663630411028862, 0.06513849645853043, -0.058709923177957535, 0.03209366649389267, 0.021237248554825783, -0.029256565496325493, 0.023270776495337486, -0.01620262674987316, 0.0630393698811531, -0.014292094856500626, -0.009749455377459526, -0.06494170427322388, 0.062383394688367844, 0.030929306522011757, 0.04536079615354538, -0.041949715465307236, 0.06156342476606369 ]
23,411
conexions.proxy
get_cant_cons_totais
null
def get_cant_cons_totais(self) -> int: return self.__cant_cons_totais
(self) -> int
[ -0.04048518091440201, 0.0034633155446499586, 0.07417284697294235, 0.03382095322012901, 0.020375873893499374, 0.009413220919668674, 0.026956798508763313, -0.031954970210790634, 0.03295460343360901, -0.051481153815984726, -0.003915233537554741, -0.0075638978742063046, 0.032904621213674545, -0.0801706537604332, -0.0082178246229887, 0.01693546772003174, 0.024724282324314117, -0.07417284697294235, 0.031155262142419815, -0.003003067336976528, 0.024141162633895874, 0.06564263254404068, -0.029255956411361694, -0.0748392716050148, -0.04588320478796959, 0.05717906728386879, 0.020892351865768433, 0.009663129225373268, 0.07557233422994614, -0.004127655643969774, -0.05421348661184311, 0.07643868029117584, -0.012745333835482597, -0.022375142201781273, 0.011895645409822464, 0.0058603547513484955, 0.03515379875898361, -0.01487788651138544, -0.026140430942177773, 0.031155262142419815, -0.04005200415849686, -0.010471167042851448, -0.012870288453996181, 0.007072411011904478, -0.007755494210869074, -0.085035540163517, 0.015227758325636387, 0.028489571064710617, -0.036120109260082245, -0.053613707423210144, 0.05101465806365013, 0.021175581961870193, 0.011304195038974285, 0.014819574542343616, 0.016893815249204636, 0.0449502095580101, 0.020225929096341133, 0.04221787676215172, -0.040451858192682266, 0.013028563931584358, 0.008521880023181438, 0.061277568340301514, 0.028189679607748985, -0.05154779553413391, 0.008646834641695023, 0.012362141162157059, -0.018209999427199364, 0.04535006359219551, 0.04181802272796631, 0.03865251690149307, 0.047715865075588226, -0.01869315654039383, -0.026540284976363182, 0.033720988780260086, 0.04241780564188957, -0.049315281212329865, 0.053480420261621475, -0.041518133133649826, 0.023208171129226685, -0.019442882388830185, 0.004885711241513491, -0.02285829931497574, 0.058445271104574203, 0.00846773386001587, 0.08530210703611374, -0.016860494390130043, -0.002014887286350131, -0.0080012371763587, -0.03911901265382767, 0.07210693508386612, -0.059145014733076096, 0.06404322385787964, -0.0014984097797423601, -0.012212196364998817, 0.0053230514749884605, 0.029822416603565216, -0.021442150697112083, -0.03337111696600914, 0.029572507366538048, -0.0363200381398201, 0.03618675097823143, 0.10236252844333649, 0.01599414460361004, -0.02044251561164856, 0.01420313399285078, -0.027789827436208725, -0.0036382514517754316, -0.013270142488181591, 0.01224551722407341, -0.003896490205079317, -0.04175138100981712, 0.02920597419142723, -0.01142914965748787, -0.012753664515912533, 0.005643767304718494, -0.0027010946068912745, -0.015785887837409973, -0.012353810481727123, -0.00743477838113904, 0.03661992773413658, 0.00787211861461401, 0.018793120980262756, 0.014094839803874493, -0.01912633143365383, 0.041651420295238495, 0.08216992020606995, -0.0008627049974165857, 0.022508427500724792, 0.015619281679391861, 0.029405901208519936, 0.09863056242465973, -0.06807507574558258, 0.0560128279030323, 0.015769226476550102, 0.0169437974691391, -0.01680218242108822, 0.0578121691942215, 0.031954970210790634, 0.007988742552697659, 0.02810637839138508, 0.02154211327433586, 0.04734933376312256, -0.0204758383333683, -0.0029864066746085882, 0.019009707495570183, 0.0522475391626358, -0.020242590457201004, 0.04171806201338768, -0.07197365164756775, -0.01975943334400654, 0.022158555686473846, -0.023774629458785057, -0.02407452091574669, -0.01653561368584633, 0.007855457253754139, 0.044617000967264175, -0.0015535979764536023, -0.026956798508763313, -0.005098133813589811, -0.07490590959787369, -0.05637935921549797, 0.014303097501397133, 0.05311388894915581, -0.013703316450119019, 0.010321221314370632, 0.042451124638319016, 0.013503390364348888, -0.018543211743235588, -0.025257419794797897, 0.01358669251203537, -0.015036161988973618, -0.005235583521425724, 0.025773897767066956, 0.0019680296536535025, 0.06014464795589447, -0.0038652517832815647, 0.018110036849975586, -0.029022708535194397, -0.006131088826805353, -0.007322319317609072, 0.017393631860613823, -0.02973911352455616, 0.022691693156957626, -0.03158843517303467, 0.04108496010303497, -0.025607291609048843, 0.04478360712528229, -0.011179240420460701, 0.008151182904839516, -0.011995608918368816, -0.004127655643969774, 0.006485125981271267, 0.013561702333390713, 0.034920550882816315, 0.023707987740635872, -0.03618675097823143, 0.03668656945228577, -0.006022795103490353, 0.0011589507339522243, -0.05957818776369095, -0.05731235072016716, 0.002811470767483115, -0.014036527834832668, -0.0007856498705223203, 0.049181994050741196, 0.005410519428551197, -0.06390994042158127, -0.021742040291428566, -0.03515379875898361, -0.0287894606590271, -0.02315818890929222, -0.002401204314082861, 0.01641065813601017, -0.011320855468511581, 0.019542844966053963, -0.06984110176563263, 0.05178104341030121, -0.029305938631296158, -0.023608023300766945, 0.024957530200481415, 0.0695078894495964, -0.043117549270391464, 0.03418748453259468, -0.03675321117043495, 0.027273349463939667, -0.020259249955415726, -0.036519963294267654, 0.05701246112585068, 0.014144822023808956, -0.009938028641045094, -0.004689949564635754, 0.02045917697250843, -0.041518133133649826, 0.00914665125310421, 0.009254945442080498, 0.01298691239207983, -0.022641710937023163, -0.01142914965748787, -0.05118126422166824, -0.03495386987924576, -0.07770488411188126, 0.0030176453292369843, 0.02517411671578884, 0.06917467713356018, -0.012545407749712467, 0.010013001039624214, 0.008755127899348736, 0.011612415313720703, -0.004029774572700262, 0.046616267412900925, -0.021442150697112083, -0.0788378044962883, -0.03335445746779442, -0.050114985555410385, -0.002426195191219449, -0.016085777431726456, -0.02962248958647251, 0.07763824611902237, -0.012203865684568882, 0.009838065132498741, 0.016885485500097275, -0.04078507050871849, -0.03165507689118385, 0.01110426802188158, -0.041384849697351456, 0.06830832362174988, 0.005910336505621672, 0.00009612366557121277, -0.07597218453884125, 0.037352994084358215, 0.061977311968803406, -0.018493229523301125, 0.009729771874845028, -0.06147749349474907, -0.05507983639836311, -0.0810369998216629, 0.013819940388202667, 0.029039369896054268, -0.030055664479732513, -0.012220526114106178, -0.027956431731581688, -0.019542844966053963, -0.02757323905825615, -0.0511479414999485, -0.07990407943725586, -0.024441052228212357, 0.017710182815790176, -0.06380997598171234, -0.05141451209783554, 0.03495386987924576, -0.01884310133755207, -0.012412122450768948, 0.0022533417213708162, 0.028056396171450615, 0.11309193074703217, -0.04355072230100632, 0.009055018424987793, -0.01601080596446991, -0.009096669964492321, 0.07583890110254288, -0.02540736459195614, -0.04241780564188957, -0.06797511875629425, -0.024657640606164932, -0.0021971124224364758, 0.038552552461624146, 0.08583524078130722, -0.0256905946880579, 0.058578554540872574, 0.019009707495570183, -0.02152545377612114, 0.033437758684158325, 0.09349910169839859, 0.05178104341030121, 0.012495425529778004, 0.03542036563158035, -0.005198096856474876, -0.0003337319940328598, -0.0018264147220179439, 0.05727903172373772, 0.029239296913146973, 0.04834896698594093, 0.006497621536254883, 0.00848022848367691, 0.013761628419160843, 0.015077813528478146, 0.02933925949037075, 0.008988375775516033, 0.05784549191594124, -0.015585960820317268, -0.05904505029320717, -0.044716961681842804, -0.014777923002839088, -0.007992907427251339, -0.014819574542343616, 0.04691615700721741, 0.04601648822426796, -0.050514839589595795, -0.029572507366538048, -0.04215123504400253, 0.04691615700721741, -0.0036028476897627115, 0.007867952808737755, 0.025873862206935883, 0.03428744897246361, -0.047382652759552, 0.04278433695435524, 0.0067267040722072124, 0.03592018410563469, 0.03548700734972954, -0.05368034914135933, 0.038152698427438736, 0.007659696042537689, 0.05104798078536987, -0.009304926730692387, 0.02729000896215439, 0.03298792243003845, -0.007359805516898632, 0.05477994680404663, 0.034104183316230774, -0.011853993870317936, 0.00702659459784627, 0.0376528836786747, 0.02437441051006317, -0.023491399362683296, 0.0026927641592919827, -0.025657273828983307, -0.04038521647453308, -0.021225562319159508, -0.0032259023282676935, -0.03955218568444252, 0.01709374226629734, -0.001848281710408628, -0.017976751551032066, 0.05411352217197418, 0.04571659862995148, -0.001294317888095975, 0.019676130264997482, -0.016893815249204636, 0.0074722645804286, -0.03795277327299118, -0.034620657563209534, -0.05637935921549797, 0.024291107431054115, -0.019676130264997482, 0.0052813999354839325, -0.03125522658228874, -0.05168107897043228, -0.005864519625902176, 0.03548700734972954, 0.03175504133105278, -0.04485024884343147, -0.02032589167356491, -0.04268437251448631, -0.027523256838321686, -0.009346578270196915, 0.0498150959610939, -0.043684009462594986, 0.037486277520656586, 0.04208459332585335, 0.019426221027970314, -0.027156725525856018, 0.0680084377527237, 0.0001015904126688838, -0.043783970177173615, -0.004188050050288439, -0.023707987740635872, -0.03227151930332184, -0.01840992644429207, 0.012403792701661587, -0.1067609190940857, 0.015719246119260788, 0.042051274329423904, 0.015294400975108147, -0.030855370685458183, -0.05614611133933067, -0.05594618618488312, -0.023374775424599648, 0.02219187654554844, -0.052280861884355545, -0.008292797952890396, -0.027623221278190613, 0.020775727927684784, 0.02249176613986492, 0.010446175932884216, 0.013445078395307064, 0.0008866545977070928, 0.03228817880153656, -0.0015952493995428085, 0.017018768936395645, -0.0038173524662852287, 0.026806853711605072, -0.005193931981921196, -0.08137021213769913, -0.012270508334040642, -0.002209607744589448, -0.013011903502047062, -0.036020148545503616, 0.029122672975063324, 0.04048518091440201, 0.029422562569379807, 0.06617577373981476, 0.058345306664705276, 0.04395057633519173, 0.010187936946749687, -0.0704408809542656, -0.01707708090543747, -0.031121939420700073, 0.01724368706345558, -0.040285252034664154, -0.015319392085075378, 0.005235583521425724, 0.04401721805334091, -0.005889510735869408, -0.03202161192893982, 0.001675428356975317, -0.0713072270154953, -0.06171074137091637, -0.046216413378715515, -0.005364702548831701, 0.03825266286730766, 0.09096670150756836, -0.04281765967607498, 0.006818337365984917, -0.029672469943761826, -0.0646430030465126, 0.009579826146364212, -0.01076272688806057, -0.013378435745835304, 0.012295498512685299, 0.015461007133126259, -0.006401822902262211, -0.03885244205594063, -0.048648856580257416, -0.007109897211194038, 0.012695352546870708, 0.005402189213782549, -0.03582021966576576, 0.02584053948521614, -0.003846508450806141, 0.05434677004814148, 0.009196633473038673, 0.008705146610736847, -0.010987644083797932, -0.012362141162157059, 0.004167224280536175, -0.13168512284755707, -0.021358847618103027, -0.0007518081110902131, -0.037619560956954956, -0.02139216847717762, -0.01707708090543747, -0.002028424059972167, -0.002776067005470395, -0.0385192334651947, 0.03738631308078766, 0.07983744144439697, -0.026023807004094124, -0.013420087285339832, 0.02555731125175953, -0.012203865684568882, 0.05251410976052284, 0.01097931433469057, -0.005747895687818527, -0.05924497917294502, -0.028572874143719673, -0.008359439671039581, -0.010879350826144218, 0.0034674806520342827, -0.01629403419792652, 0.014144822023808956, -0.0005362619995139539, 0.03728634864091873, 0.052813999354839325, 0.008446907624602318, -0.05211425572633743, -0.007526411209255457, -0.015369373373687267, 0.05894508957862854, 0.0015983731718733907, 0.0011849828297272325, 0.00511062890291214, -0.017993412911891937, 0.012945260852575302, -0.02342475764453411, 0.06427647173404694, -0.0051272897981107235, -0.07297328859567642, -0.023241491988301277, 0.07983744144439697, 0.025090815499424934, -0.037619560956954956, 0.010804378427565098, 0.009929697960615158, -0.016493961215019226, -0.018793120980262756, -0.023058226332068443, -0.07510583847761154, -0.024707620963454247, 0.026207072660326958, 0.0004821151669602841, -0.07057416439056396, 0.07863787561655045, -0.010496157221496105, 0.0338875949382782, 0.019442882388830185, -0.001657726475968957, 0.018893083557486534, -0.023874593898653984, -0.0009673542226664722, -0.0005758308689109981, 0.021842004731297493, -0.013211830519139767, -0.049315281212329865, 0.07990407943725586, 0.057512279599905014, 0.0011641571763902903, -0.021325526759028435, 0.07144051045179367, 0.03308788686990738, 0.007817971520125866, -0.09243282675743103, 0.016985448077321053, -0.05894508957862854, -0.047582581639289856, -0.005448005627840757, -0.0033820951357483864, 0.009113330394029617, -0.015311061404645443, -0.0023179014679044485, -0.0524807870388031, -0.0006950580282136798, 0.017943430691957474, 0.03995203971862793, -0.01724368706345558, -0.02207525260746479, -0.059544868767261505, 0.012112232856452465, -0.031271886080503464, -0.03400421887636185, -0.022391803562641144, 0.010229588486254215, -0.018909744918346405, 0.007338980212807655, 0.03835262730717659, 0.04295094311237335, -0.05231418088078499, -0.02289162017405033, 0.025074154138565063, -0.013761628419160843, -0.06341011822223663, -0.025374043732881546, -0.048915427178144455, -0.001464047352783382, -0.000741915893740952, 0.02584053948521614, -0.02877279929816723, -0.004719105549156666, -0.018643174320459366, 0.028589533641934395, 0.00008447428263025358, 0.003967297729104757, -0.01446970272809267, 0.04048518091440201, 0.03755291923880577, 0.005827033426612616, 0.024957530200481415, -0.006097767502069473, 0.018759798258543015, -0.012137223035097122, 0.02810637839138508, -0.011354176327586174, 0.0023179014679044485, -0.05098133534193039, -0.046649590134620667, -0.04088503122329712, -0.028972726315259933, -0.016110768541693687, -0.012995243072509766, 0.04968181252479553, -0.056979142129421234, 0.006680887658149004, 0.011554103344678879, -0.0014265611534938216, -0.014569666236639023, 0.05974479392170906, -0.017993412911891937, -0.024274446070194244, -0.04188466817140579, -0.019976019859313965, 0.03771952539682388, 0.024024538695812225, 0.04048518091440201, -0.03360436484217644, -0.024124501273036003, -0.01022125780582428, 0.024707620963454247, 0.012045590206980705, 0.0036382514517754316, 0.010829368606209755, -0.025390705093741417, 0.07357306778430939, -0.03791945055127144, 0.0551464781165123, -0.03422080725431442, -0.07257343083620071, -0.052947282791137695, -0.0026698559522628784, 0.003273801412433386, -0.03448737412691116, -0.03242146596312523, 0.027639880776405334, 0.04961517080664635, -0.05164775997400284, -0.019692791625857353, -0.03528708219528198, -0.010562799870967865, 0.008838430978357792, -0.0422845222055912, -0.0363200381398201, -0.040685106068849564, -0.03135518729686737, -0.055379725992679596, -0.02367466688156128, 0.06857489794492722, -0.019276276230812073, -0.011787351220846176, -0.046749550849199295, -0.0037298845127224922, -0.04598316550254822, 0.0187098179012537, 0.08603516966104507, 0.004221371375024319, 0.0004284889728296548, -0.028322964906692505, 0.03728634864091873, -0.015802549198269844, 0.04195130988955498, 0.05168107897043228, 0.011370837688446045, 0.05957818776369095, 0.04834896698594093, -0.009263275191187859, -0.03293794021010399, 0.043117549270391464, -0.009529844857752323, -0.0449502095580101, 0.034387409687042236, 0.0328712984919548, 0.015244419686496258, -0.039618831127882004, -0.008363604545593262, 0.00032331913826055825, 0.04341743886470795, 0.014702950604259968, 0.01693546772003174, -0.03230484202504158, 0.06820836663246155, 0.013420087285339832, 0.02410784177482128, -0.0004394224670249969, -0.010387863963842392, -0.010779387317597866, -0.006664227228611708, -0.041218243539333344, -0.01844324916601181, 0.02384127303957939, -0.05907837301492691, -0.03173838183283806, -0.003507049521431327, 0.014194803312420845, 0.07770488411188126, -0.0033071227371692657, -0.055746257305145264, -0.08356940746307373, 0.06694216281175613, 0.054846588522195816, 0.035187117755413055, -0.03595350310206413, 0.008796779438853264, -0.012903609313070774, 0.018193339928984642, 0.04155145585536957, 0.025807218626141548, -0.037352994084358215, 0.03661992773413658, 0.06057782471179962, -0.05527976155281067, -0.019442882388830185, -0.030505498871207237, 0.004869050811976194, -0.026406999677419662, -0.02045917697250843, -0.027956431731581688, 0.008130356669425964, 0.027789827436208725, 0.0062310523353517056, 0.03377097100019455, -0.016652237623929977, -0.007763824425637722, 0.02933925949037075, 0.0028302138671278954, -0.010296231135725975, -0.013228490948677063, -0.00807204470038414, 0.013095205649733543, -0.007922099903225899, 0.04941524192690849, 0.02867283672094345, -0.050114985555410385, 0.008155347779393196, 0.035586971789598465, 0.02622373402118683, -0.058078739792108536, 0.022791655734181404, 0.03260473161935806, 0.00007380110764643177, -0.033437758684158325, -0.012370471842586994, 0.04801575466990471, 0.016310695558786392, -0.011154250241816044, -0.02624039351940155, 0.05318053066730499, 0.03205493092536926, 0.0411849245429039, -0.03202161192893982, 0.04201795160770416 ]
23,412
conexions.proxy
get_espido
def get_espido (self, ligazon: str, params: dict = None, bolachas: dict = None, stream: dict = False, timeout: int = None, reintentos: int = None) -> Response: """ """ # lazy_check_types #self. if timeout == None: timeout = self.get_timeout() if reintentos == None: if self.get_verbose(): print(f'*{__name__}* Chegouse á cantidade máxima de conexións.') reintentos = self.get_reintentos() if self.get_cant_cons() >= self.get_max_cons(): self.__set_cant_cons_espido(0) reintentos = self.get_reintentos() try: if self.get_verbosalo(): self.get_spinner().start() if self.get_sesion() != None: return self.get_sesion().get(url= ligazon, params= params, headers= self.get_cabeceira(), cookies= bolachas, stream= stream, timeout= timeout) else: return requests.get(url= ligazon, params= params, headers= self.get_cabeceira(set_nova=True), cookies= bolachas, stream= stream, timeout= timeout) #except ConnectionError: except: if reintentos <= 0: if self.get_verbose(): print(f'*{__name__}* Chegouse á cantidade máxima de reintentos.') reintentos = self.get_reintentos() if self.get_verbose(): print(f'*{__name__}* Reintento nº {self.get_reintentos()+1-reintentos}.') return self.get(ligazon= ligazon, params= params, bolachas= bolachas, stream=stream, timeout= timeout, reintentos= reintentos-1) finally: self.__set_cant_cons_espido(self.get_cant_cons_espido()+1) self.__set_cant_cons_totais(self.get_cant_cons_totais()+1) if self.get_verbosalo(): self.get_spinner().stop()
(self, ligazon: str, params: Optional[dict] = None, bolachas: Optional[dict] = None, stream: dict = False, timeout: Optional[int] = None, reintentos: Optional[int] = None) -> requests.models.Response
[ -0.011477131396532059, -0.036401279270648956, -0.042024243623018265, -0.013437769375741482, -0.008919978514313698, -0.02319471910595894, -0.030667340382933617, -0.014279364608228207, 0.023361187428236008, -0.02099362574517727, 0.0211785901337862, 0.02639462798833847, 0.0038819708861410618, -0.01890351064503193, 0.021955447271466255, 0.021548522636294365, 0.014871255494654179, -0.06348028033971786, 0.02151152864098549, -0.03521750122308731, 0.034662600606679916, 0.017266562208533287, -0.0035490323789417744, 0.01699836179614067, -0.012734899297356606, 0.02837376296520233, 0.0007387074292637408, 0.0076390900649130344, 0.035457953810691833, 0.004050752148032188, 0.06074278801679611, -0.01758100464940071, -0.04513166844844818, 0.013095582835376263, 0.003685444826260209, 0.06137167289853096, -0.014362598769366741, -0.0017583316657692194, -0.014001915231347084, 0.028632715344429016, -0.09780994802713394, 0.0032045335974544287, -0.009516493417322636, -0.03432966396212578, -0.035531941801309586, -0.022306881844997406, -0.03847289830446243, 0.0792393758893013, -0.00031039584428071976, 0.038768842816352844, 0.044761739671230316, -0.01377070788294077, -0.001478570862673223, -0.04313403740525246, 0.004691196605563164, 0.01895900070667267, -0.0590411014854908, 0.12081970274448395, 0.0285402312874794, -0.041432350873947144, 0.008429818786680698, 0.019162463024258614, 0.01908847689628601, 0.06995408982038498, 0.0015352165792137384, 0.051827434450387955, 0.005798679776489735, -0.024433990940451622, 0.0490899384021759, 0.014371847733855247, 0.0666247010231018, 0.044058866798877716, -0.06862233579158783, 0.005928155966103077, 0.008707268163561821, -0.029446564614772797, -0.012762644328176975, -0.021659502759575844, -0.06303636729717255, 0.022084923461079597, 0.042024243623018265, -0.009941915050148964, 0.009840183891355991, -0.04298606514930725, 0.04261613264679909, 0.01878328248858452, 0.07272857427597046, -0.030204925686120987, -0.05822725221514702, 0.01698911376297474, -0.07554005831480026, -0.004966333508491516, -0.026524104177951813, -0.014741779305040836, 0.02656109817326069, -0.02006879635155201, -0.017155583947896957, -0.02367562986910343, 0.011171937920153141, -0.07849951088428497, -0.027485927566885948, 0.08042315393686295, 0.004469237755984068, -0.03980465233325958, 0.043060053139925, -0.054084017872810364, -0.02191845513880253, -0.0059512765146791935, 0.07443026453256607, -0.07812958210706711, -0.026764560490846634, 0.049496863037347794, -0.020864149555563927, -0.002145603997632861, -0.03098178096115589, -0.0022438671439886093, 0.015435401350259781, 0.01982834003865719, -0.041913263499736786, -0.024212030693888664, -0.003999886568635702, -0.008462187834084034, -0.01342852134257555, -0.0443178191781044, 0.02522934414446354, 0.07472620904445648, -0.022251393646001816, 0.035642921924591064, 0.07224766165018082, 0.0044807977974414825, 0.003132859244942665, -0.02865121141076088, 0.04576055333018303, 0.033552806824445724, -0.022029433399438858, 0.03357130289077759, -0.03780702129006386, 0.055193811655044556, -0.02256583422422409, 0.02023526467382908, -0.046315450221300125, 0.021086107939481735, -0.049274906516075134, -0.01971735991537571, -0.0011126851895824075, 0.004152483772486448, 0.03264647349715233, -0.04483572393655777, -0.028040824458003044, -0.0050726886838674545, 0.07380137592554092, 0.013974171131849289, -0.03678970783948898, 0.01011763233691454, -0.02058669924736023, -0.03305339813232422, -0.010977723635733128, 0.003983702044934034, -0.008591664023697376, -0.004753622692078352, -0.006913098972290754, 0.0014577622059732676, 0.07032401859760284, -0.04187627136707306, 0.025839731097221375, 0.011847062967717648, -0.020142782479524612, 0.06851135194301605, 0.08286470174789429, 0.05578570440411568, -0.03595736250281334, 0.030297407880425453, -0.08153294771909714, -0.05933704599738121, -0.0049247159622609615, 0.02824428677558899, 0.03399672359228134, -0.027485927566885948, -0.008235604502260685, -0.05615563318133354, -0.048646021634340286, -0.06540393084287643, -0.0014993795193731785, -0.019402919337153435, 0.02865121141076088, 0.0204757209867239, 0.07709377259016037, -0.031240733340382576, 0.0019895390141755342, -0.014122143387794495, -0.02042023092508316, 0.04087745398283005, 0.03103727102279663, 0.03627180680632591, -0.008392825722694397, 0.009673714637756348, 0.026172669604420662, -0.056118641048669815, -0.0029941347893327475, 0.0009040206205099821, -0.04594551771879196, 0.09603427350521088, -0.0072044203989207745, -0.03701166808605194, 0.003849601838737726, 0.004970957525074482, -0.020142782479524612, 0.004772119224071503, 0.015176448971033096, -0.010006653144955635, -0.036401279270648956, -0.0049940780736505985, -0.015814581885933876, -0.03873185068368912, 0.06181558966636658, 0.027652395889163017, -0.03910178318619728, -0.008573167957365513, 0.05179044231772423, -0.001735211000777781, 0.01762724667787552, -0.03880583867430687, -0.06973212957382202, -0.027763376012444496, -0.008517677895724773, -0.010968475602567196, -0.021215584129095078, 0.029039639979600906, 0.011967291124165058, -0.03736310452222824, -0.041210394352674484, 0.04709230735898018, 0.002769863698631525, -0.014991482719779015, 0.035809390246868134, -0.011819318868219852, -0.027411939576268196, 0.044058866798877716, -0.04047052934765816, -0.025858227163553238, 0.02963153086602688, -0.019421415403485298, -0.011458635330200195, 0.006113121751695871, -0.035698410123586655, 0.022935766726732254, 0.03473658859729767, 0.03051936626434326, -0.04113640636205673, -0.022362371906638145, 0.01809890940785408, -0.07187773287296295, 0.007722324691712856, -0.08412247151136398, -0.006709636654704809, -0.04731426760554314, -0.06137167289853096, 0.048054128885269165, 0.02911362610757351, -0.057635363191366196, -0.012734899297356606, -0.039767660200595856, -0.059780966490507126, 0.018487337976694107, -0.0211785901337862, 0.017682736739516258, 0.0009502621251158416, -0.0005430481978692114, 0.00767145911231637, -0.04269012063741684, 0.02935408242046833, 0.024027064442634583, -0.04668538272380829, 0.016896631568670273, -0.04945987090468407, 0.0054379962384700775, 0.00019262460409663618, -0.019106972962617874, -0.062148530036211014, 0.004607961978763342, -0.030537864193320274, 0.030704332515597343, 0.06936220079660416, -0.03623481094837189, -0.04675937071442604, -0.002234618877992034, 0.0416543111205101, 0.0429120808839798, 0.023509161546826363, 0.005243781954050064, 0.00939164124429226, 0.04975581541657448, -0.0033710028510540724, -0.03403371945023537, 0.05375107750296593, 0.048572033643722534, 0.003914339933544397, 0.024378500878810883, -0.0024346131831407547, -0.028392259031534195, 0.03405221551656723, -0.041099414229393005, 0.040692489594221115, -0.06680966913700104, -0.01287362352013588, -0.028577225282788277, 0.08730388432741165, -0.02012428641319275, 0.036974675953388214, -0.008869113400578499, -0.015426152385771275, -0.010968475602567196, 0.05389904975891113, -0.023749615997076035, -0.029539046809077263, 0.04084046185016632, 0.03357130289077759, 0.03519900143146515, 0.006598656997084618, 0.07465221732854843, 0.017386790364980698, 0.03810296580195427, 0.03752957284450531, -0.00699170958250761, 0.06692064553499222, -0.010894489474594593, -0.0033409458119422197, 0.002746742917224765, 0.0636652484536171, -0.009886424988508224, -0.01287362352013588, -0.0214560404419899, -0.05334415286779404, -0.008434442803263664, -0.04383691027760506, -0.00092598533956334, 0.03449613228440285, -0.011273669078946114, -0.012078270316123962, -0.02935408242046833, 0.04246816039085388, -0.042727112770080566, -0.011430890299379826, 0.04032255709171295, 0.051420509815216064, -0.012050525285303593, -0.0019086165120825171, 0.007555855438113213, 0.016378726810216904, 0.027800368145108223, -0.033145882189273834, -0.025451302528381348, 0.07687181234359741, 0.09026333689689636, 0.035698410123586655, 0.041506338864564896, 0.018607566133141518, 0.011551117524504662, 0.042320188134908676, -0.009470252320170403, -0.018357861787080765, 0.002460045972838998, -0.030593352392315865, 0.037104152143001556, -0.048757001757621765, -0.02210341952741146, -0.0026727565564215183, -0.042135223746299744, 0.050199735909700394, 0.008808999322354794, -0.013197313994169235, 0.022177405655384064, -0.004096993710845709, 0.010358087718486786, 0.047943152487277985, 0.02911362610757351, -0.019217953085899353, 0.0035629048943519592, -0.03318287432193756, 0.0022889524698257446, 0.05578570440411568, -0.02134506031870842, -0.014103646390140057, -0.0024138044100254774, 0.043355997651815414, -0.0382879339158535, 0.0389908030629158, -0.008013646118342876, 0.025081370025873184, 0.005701572634279728, 0.011477131396532059, -0.02628364786505699, 0.06484903395175934, -0.0028577225748449564, -0.027226975187659264, -0.025395812466740608, 0.02963153086602688, 0.035809390246868134, -0.0031860368326306343, -0.005659955088049173, 0.00916505791246891, -0.031462691724300385, 0.02221439965069294, 0.0295205507427454, -0.02609868347644806, 0.004515478853136301, 0.018237633630633354, -0.07872147113084793, 0.010755764320492744, 0.023916086181998253, -0.07664985209703445, -0.0483870692551136, 0.034662600606679916, -0.011440138332545757, -0.06769750267267227, 0.029724013060331345, -0.05352912098169327, 0.07443026453256607, 0.009345400147140026, 0.02598770335316658, -0.006520046386867762, 0.005044943653047085, 0.02400856837630272, 0.03510652109980583, -0.006520046386867762, 0.035476453602313995, -0.04180228337645531, 0.0012138384627178311, 0.018256129696965218, -0.009012461639940739, 0.0006861077272333205, -0.008346584625542164, 0.002656572265550494, -0.11712038516998291, 0.005206788890063763, 0.027245471253991127, -0.04546460881829262, -0.03799198567867279, 0.04720328748226166, 0.006547791417688131, 0.044058866798877716, -0.0008404386462643743, -0.002047340851277113, 0.011754580773413181, 0.0597439743578434, -0.06758652627468109, -0.019069980829954147, 0.031055767089128494, 0.04228319600224495, -0.06333231180906296, 0.014677041210234165, 0.019273443147540092, -0.009914170019328594, 0.030648842453956604, 0.03630879893898964, -0.03525449335575104, -0.03575390204787254, 0.025784241035580635, -0.04831308126449585, 0.03155517578125, 0.027689389884471893, 0.025784241035580635, 0.0016808772925287485, -0.008716516196727753, 0.0029941347893327475, 0.013132575899362564, 0.008818247355520725, 0.0039212764240801334, -0.007315399590879679, -0.041210394352674484, -0.06777149438858032, -0.044280827045440674, -0.029391074553132057, -0.044465791434049606, 0.039767660200595856, -0.01531517319381237, 0.02754141576588154, 0.000396809569792822, 0.020087292417883873, 0.042727112770080566, 0.051309529691934586, -0.05874515697360039, 0.03521750122308731, -0.02702351287007332, -0.02905813604593277, -0.0678824707865715, -0.017377542331814766, -0.02378660999238491, -0.03432966396212578, -0.0025340323336422443, 0.01716483198106289, 0.026875538751482964, -0.020956631749868393, 0.05597066879272461, 0.03333084657788277, 0.046833354979753494, -0.01977284997701645, -0.024156540632247925, -0.035587430000305176, -0.06196356192231178, -0.020494217053055763, -0.03980465233325958, -0.016489706933498383, 0.023361187428236008, 0.011837814934551716, -0.0645160898566246, -0.015490890480577946, 0.024341506883502007, 0.010136129334568977, -0.008258725516498089, -0.03033440001308918, -0.05027372017502785, 0.04668538272380829, -0.021012121811509132, -0.057228438556194305, -0.03725212439894676, -0.027467429637908936, -0.020087292417883873, -0.0023883716203272343, -0.004214909393340349, 0.08464037626981735, 0.07590998709201813, 0.07032401859760284, 0.06769750267267227, -0.03961968794465065, 0.025099867954850197, 0.023583147674798965, -0.049496863037347794, 0.012744147330522537, 0.03347881883382797, -0.009812438860535622, -0.04790615662932396, 0.006889978423714638, -0.012013532221317291, 0.06606980413198471, 0.012235491536557674, -0.03658624738454819, -0.07842552661895752, 0.047425247728824615, -0.034255675971508026, -0.013659728690981865, 0.006094625219702721, -0.05297422036528587, -0.032221052795648575, -0.019569387659430504, -0.02842925302684307, 0.0696951374411583, 0.062259506434202194, -0.010385832749307156, -0.03079681470990181, -0.022140413522720337, 0.00039767660200595856, 0.07428228855133057, 0.01255918201059103, -0.025673260912299156, 0.02245485596358776, -0.025488294661045074, -0.022806290537118912, 0.027393443509936333, -0.02175198495388031, 0.015518635511398315, -0.03074132651090622, -0.038361918181180954, -0.017830708995461464, -0.0524563193321228, 0.020901141688227654, 0.05741340294480324, 0.003188349073752761, 0.021714990958571434, -0.02541430853307247, -0.029742510989308357, 0.01857057213783264, -0.00867027509957552, 0.02389758825302124, -0.011606607586145401, -0.012688658200204372, -0.027245471253991127, -0.052752263844013214, 0.01589781604707241, 0.028207292780280113, 0.005165171809494495, -0.007324648089706898, -0.07272857427597046, -0.04394788667559624, 0.05963299423456192, 0.06288839131593704, 0.019883830100297928, 0.033848751336336136, 0.040692489594221115, 0.011005468666553497, 0.009562734514474869, -0.0008485309081152081, -0.00643681176006794, -0.017257314175367355, 0.01383544597774744, 0.05486087501049042, 0.04820210114121437, -0.025506792590022087, -0.0610017403960228, 0.0402485728263855, -0.04054451733827591, 0.043651942163705826, -0.0005953588406555355, -0.04960784316062927, 0.033959731459617615, 0.03333084657788277, -0.028355266898870468, 0.03728911653161049, 0.039878640323877335, -0.004873850382864475, 0.048646021634340286, -0.00713505782186985, 0.005146674811840057, 0.014371847733855247, -0.09048529714345932, 0.02807781659066677, -0.05249331146478653, 0.028910163789987564, -0.021622508764266968, -0.032572489231824875, 0.0030149435624480247, 0.012623920105397701, -0.013659728690981865, 0.011005468666553497, -0.0834565982222557, 0.026302145794034004, 0.036623239517211914, -0.04772119224071503, -0.05737641081213951, -0.017562508583068848, 0.03033440001308918, 0.04172829911112785, 0.0503477081656456, 0.026376131922006607, -0.02273230440914631, 0.003625330748036504, 0.052049390971660614, 0.03307189419865608, -0.07280255854129791, 0.033848751336336136, 0.004083121195435524, 0.04217221587896347, -0.030537864193320274, -0.005155923310667276, -0.008462187834084034, -0.014695537276566029, 0.011070206761360168, -0.06015089899301529, 0.017553260549902916, -0.02273230440914631, -0.022084923461079597, 0.06388720870018005, 0.0002484033757355064, -0.0673275738954544, -0.03869485855102539, -0.05045868828892708, 0.029613034799695015, 0.02180747501552105, -0.017192576080560684, 0.034311167895793915, 0.034200187772512436, -0.022084923461079597, 0.02837376296520233, -0.06917723268270493, -0.010829751379787922, 0.013974171131849289, 0.009932667016983032, -0.038028981536626816, 0.04084046185016632, 0.012633168138563633, -0.0012855126988142729, 0.019587883725762367, -0.0009040206205099821, -0.0029802625067532063, 0.03142569959163666, 0.05508283153176308, -0.014436584897339344, -0.007870296947658062, 0.02226988971233368, 0.0258767232298851, 0.004661139566451311, 0.06459008157253265, -0.0012681721709668636, -0.011014716699719429, -0.029391074553132057, 0.0026519480161368847, 0.019384421408176422, -0.012568430043756962, -0.020901141688227654, -0.0819028839468956, -0.010783509351313114, -0.03858387842774391, -0.02563626877963543, 0.031814128160476685, 0.037844013422727585, -0.01971735991537571, -0.06422014534473419, -0.0172850601375103, -0.012605423107743263, 0.06510797888040543, 0.02946506068110466, -0.05227135121822357, 0.0366787314414978, 0.005054192151874304, -0.02894715778529644, -0.006709636654704809, 0.0008439067169092596, -0.0834565982222557, -0.024433990940451622, 0.036863695830106735, 0.013419273309409618, 0.05985495075583458, 0.05116155743598938, 0.005266902968287468, -0.04483572393655777, 0.039693672209978104, 0.02221439965069294, 0.028817681595683098, -0.028780687600374222, 0.019809843972325325, -0.017137086018919945, -0.014741779305040836, 0.07017605006694794, -0.0008248321246355772, 0.0019294251687824726, -0.01420537754893303, 0.01982834003865719, -0.012041277252137661, 0.020198272541165352, -0.011902553029358387, -0.012549933977425098, -0.011301414109766483, -0.06015089899301529, -0.027948342263698578, -0.02239936590194702, -0.09055928140878677, 0.05863417685031891, 0.022750800475478172, -0.02976100705564022, -0.029261598363518715, -0.016193760558962822, -0.024563465267419815, -0.0359758585691452, 0.011856311932206154, -0.03521750122308731, 0.012392712756991386, 0.01872779242694378, -0.010487563908100128, -0.012623920105397701, 0.026709070429205894, 0.04195025563240051, -0.011319910176098347, 0.05016274005174637, 0.023934582248330116, 0.03196210041642189, -0.025432806462049484, -0.029280096292495728, 0.06869632005691528, 0.0010970787843689322, 0.03397822752594948, -0.02761540189385414, 0.04705531522631645, -0.020253760740160942, 0.03462560847401619, 0.051420509815216064, 0.007061071693897247, 0.0172850601375103, 0.008365080691874027 ]
23,413
conexions.proxy
get_ip
def get_ip(self, reintentos: int = None) -> str: """ """ if reintentos == None: reintentos = self.get_reintentos() try: return requests.get(self.get_ligazons_ip()[0]).text.rstrip() except ConnectionError: return self.get_ip(reintentos-1)
(self, reintentos: Optional[int] = None) -> str
[ 0.0029514175839722157, -0.027399256825447083, 0.019661085680127144, 0.045563213527202606, -0.03180045261979103, -0.029203025624155998, 0.013221628963947296, -0.0570712611079216, 0.0787886455655098, -0.050325166434049606, -0.005772062111645937, 0.014836003072559834, -0.018407465890049934, -0.027002427726984024, 0.029058724641799927, 0.03708549588918686, -0.029996683821082115, -0.028283102437853813, 0.014385060407221317, -0.04538283497095108, 0.02141074277460575, 0.03167419135570526, 0.05339157208800316, -0.04152277112007141, -0.017000526189804077, 0.08896190673112869, 0.05793707072734833, -0.020869610831141472, 0.0322694331407547, 0.020544933155179024, 0.013528269715607166, -0.04798026382923126, -0.05822567269206047, -0.03852851316332817, -0.004349338822066784, 0.030411550775170326, 0.009632128290832043, 0.012815780937671661, -0.03369441255927086, 0.0073007564060389996, -0.07362986356019974, -0.048882149159908295, -0.02391798235476017, -0.0727279782295227, -0.014736795797944069, -0.03686904534697533, -0.0050821201875805855, -0.020003801211714745, -0.031493812799453735, -0.006407890468835831, 0.03050174005329609, 0.039105720818042755, 0.02608250454068184, -0.05259791389107704, 0.003783406224101782, 0.013699628412723541, 0.005451892968267202, 0.08484931290149689, 0.030068835243582726, -0.0010692969663068652, -0.04231642931699753, -0.028697969391942024, -0.0502890907227993, 0.028048614040017128, 0.07987090945243835, 0.04343476518988609, -0.025992317125201225, -0.025775864720344543, 0.005145252216607332, -0.0047799888998270035, 0.04697015509009361, 0.01599041558802128, -0.08412779867649078, -0.012806762009859085, 0.013356911949813366, 0.04235250502824783, 0.012455027550458908, -0.020707271993160248, -0.0053030820563435555, 0.004173471126705408, 0.014348984695971012, 0.01025442872196436, 0.06901221722364426, 0.0006347013404592872, 0.028752082958817482, -0.08246833086013794, 0.016423320397734642, -0.022060099989175797, -0.006317702122032642, -0.004193763714283705, -0.07077991217374802, -0.012157405726611614, -0.04271325841546059, -0.0020732074044644833, -0.0032152188941836357, 0.019408557564020157, 0.02458537556231022, -0.03484882414340973, 0.014836003072559834, -0.043795518577098846, 0.004504913929849863, 0.07453174889087677, -0.06489962339401245, -0.03506527468562126, 0.03932217136025429, -0.003005530685186386, 0.006750606931746006, 0.047330908477306366, 0.012500121258199215, -0.045960042625665665, -0.042424656450748444, -0.03143969923257828, -0.03979115188121796, -0.02371956594288349, 0.0420999750494957, 0.03198083117604256, -0.011634312570095062, 0.03391086310148239, -0.010353635996580124, 0.058333899825811386, -0.00922177080065012, 0.021915797144174576, -0.04458917677402496, -0.027760010212659836, 0.010344617068767548, 0.03567855805158615, -0.032034944742918015, 0.013726684264838696, 0.030664078891277313, -0.02215028740465641, 0.04639294743537903, -0.020833535119891167, -0.04585181549191475, 0.05212893337011337, -0.0018139155581593513, 0.022330664098262787, -0.016964450478553772, 0.08513791114091873, -0.02399013191461563, -0.0010974808828905225, -0.037193723022937775, 0.0003438435378484428, 0.024134432896971703, -0.016242943704128265, 0.018055731430649757, 0.008612998761236668, 0.05768454447388649, 0.012896950356662273, 0.008685149252414703, -0.08369489759206772, 0.07799498736858368, 0.012527178041636944, -0.031908679753541946, -0.009316468611359596, -0.0380234569311142, 0.011670387350022793, -0.0023854849860072136, -0.015295963734388351, -0.011895858682692051, -0.06313192844390869, -0.05205678194761276, 0.011895858682692051, 0.0285356305539608, -0.1277068704366684, 0.021374667063355446, -0.01984146237373352, 0.002263730624690652, 0.015070492401719093, 0.07987090945243835, 0.06922866404056549, -0.0285356305539608, -0.019534822553396225, -0.03064604103565216, -0.05544786900281906, 0.03609342500567436, 0.03281056508421898, -0.02730906754732132, 0.0035579351242631674, -0.02431481145322323, 0.03185456618666649, 0.00635377736762166, -0.02426069788634777, 0.011372765526175499, -0.013934117741882801, 0.04660939797759056, 0.03208905830979347, 0.0707077607512474, -0.037734854966402054, -0.02269141748547554, 0.049964409321546555, 0.039719000458717346, 0.03892534226179123, 0.015900226309895515, -0.04051265865564346, 0.005226421635597944, -0.009587033651769161, 0.00735486950725317, -0.012455027550458908, -0.0055375718511641026, -0.02813880145549774, -0.00801775511354208, 0.0855708196759224, -0.07164572179317474, 0.0400797538459301, -0.05386055260896683, 0.03423554077744484, -0.047042302787303925, 0.03309916704893112, 0.0005493041244335473, 0.027056539431214333, 0.027868235483765602, -0.02200598642230034, -0.04852139577269554, -0.03391086310148239, -0.02052689529955387, 0.028589744120836258, -0.04913467541337013, 0.044264499098062515, 0.026515409350395203, 0.028247028589248657, 0.033730488270521164, -0.0672445222735405, -0.025360997766256332, -0.04505815729498863, 0.02730906754732132, 0.009451751597225666, -0.03827598690986633, 0.015918264165520668, 0.0299064964056015, -0.01501637976616621, 0.07009447365999222, -0.032377660274505615, 0.01100299321115017, -0.01790241152048111, 0.07597476243972778, -0.044733479619026184, -0.024495188146829605, -0.019065842032432556, 0.021176252514123917, -0.010416767559945583, -0.058406051248311996, 0.04040443152189255, 0.00011935879592783749, -0.007034700363874435, -0.0024937111884355545, -0.003715764731168747, -0.050253015011548996, 0.0062094759196043015, -0.00808088667690754, -0.018777238205075264, 0.03151185065507889, -0.028842272236943245, -0.016540564596652985, -0.05360802635550499, 0.009794467128813267, -0.01583709567785263, -0.027363181114196777, 0.026948314160108566, 0.05169602856040001, 0.00988465640693903, 0.028373291715979576, -0.07031092792749405, -0.039719000458717346, -0.09668203443288803, -0.08751888573169708, 0.028553668409585953, -0.016630753874778748, 0.005257987417280674, 0.03315328061580658, -0.0061012497171759605, 0.048809997737407684, 0.060498423874378204, -0.012274649925529957, -0.010705371387302876, 0.010939860716462135, -0.024206584319472313, 0.02092372439801693, 0.031006794422864914, -0.004241112619638443, -0.047042302787303925, 0.023016097024083138, 0.054798513650894165, 0.00913609191775322, -0.028842272236943245, -0.056963033974170685, -0.041414543986320496, 0.04978403449058533, -0.00004111325688427314, -0.013735703192651272, 0.004322282504290342, 0.061724986881017685, 0.011264539323747158, -0.022186363115906715, -0.009271373972296715, 0.0632401555776596, -0.0022231456823647022, 0.046501174569129944, 0.03769877925515175, -0.005902835167944431, 0.005357195157557726, -0.06547682732343674, -0.037734854966402054, -0.01175155770033598, -0.061797138303518295, 0.020202215760946274, 0.010597145184874535, 0.05804529786109924, -0.01949874684214592, 0.0023155889939516783, 0.026533447206020355, -0.016937393695116043, -0.026876162737607956, 0.022709455341100693, -0.05046946555376053, 0.04491385817527771, 0.030591927468776703, 0.07236722856760025, 0.09004416316747665, 0.00213070260360837, 0.0312773622572422, 0.008617508225142956, 0.07698487490415573, -0.006191438063979149, 0.01922818087041378, 0.009271373972296715, -0.00570893008261919, 0.0027710406575351954, 0.0023629378993064165, 0.008910620585083961, 0.033856749534606934, 0.045960042625665665, -0.046898003667593, -0.06800210475921631, -0.010488918982446194, 0.04062088578939438, 0.027760010212659836, 0.03697727248072624, -0.005938910413533449, -0.05671050772070885, -0.029798269271850586, 0.024134432896971703, -0.03762662783265114, -0.014330947771668434, 0.026533447206020355, 0.061328157782554626, 0.005032516550272703, 0.04855747148394585, 0.007900509983301163, -0.03479471057653427, -0.005203874781727791, -0.05862250179052353, 0.0329548642039299, -0.012590309605002403, 0.01802867464721203, 0.013970193453133106, 0.03486686199903488, -0.010858691297471523, -0.0008866653661243618, 0.085642971098423, 0.044733479619026184, -0.0029694552067667246, -0.043723367154598236, 0.012491102330386639, 0.016757017001509666, -0.029726117849349976, -0.004403451923280954, 0.030591927468776703, 0.0036684158258140087, 0.07712917774915695, -0.006597286555916071, -0.04592396691441536, -0.0012806762242689729, -0.021284477785229683, -0.03605734929442406, 0.015431246720254421, -0.0063943625427782536, 0.07247545570135117, -0.015304982662200928, -0.06147246062755585, 0.0009435968240723014, -0.012436989694833755, -0.006425928324460983, 0.0516238771378994, -0.0005419763037934899, 0.03809560835361481, -0.03266626223921776, 0.027345143258571625, -0.011183369904756546, 0.0023606831673532724, -0.0033595203422009945, -0.02996060810983181, -0.01538615208119154, 0.037734854966402054, 0.026479333639144897, -0.02887834794819355, -0.005253478419035673, -0.019787348806858063, -0.01726207323372364, -0.027164766564965248, -0.020779423415660858, 0.008603979833424091, 0.0015726614510640502, -0.014087438583374023, 0.005893816240131855, -0.02031044289469719, 0.015295963734388351, 0.000892302137799561, -0.06273509562015533, -0.001154412399046123, -0.029311250895261765, -0.07139319181442261, -0.0020765895023941994, 0.044192347675561905, -0.07777853310108185, 0.0076028876937925816, 0.022781606763601303, 0.02234870195388794, 0.09927946329116821, -0.007359378971159458, -0.012391895055770874, -0.013402006588876247, -0.041486695408821106, 0.00785992480814457, 0.03852851316332817, 0.011462953872978687, 0.022871796041727066, 0.01613471657037735, -0.05620545148849487, 0.006389853078871965, 0.02234870195388794, -0.009118054062128067, 0.0068047200329601765, 0.02610054239630699, -0.05083021894097328, 0.04982011020183563, -0.002852210309356451, 0.02676793746650219, 0.005257987417280674, 0.0329548642039299, 0.006940002553164959, 0.0420999750494957, -0.016125697642564774, 0.0022118722554296255, 0.017613807693123817, 0.007530737202614546, -0.004608630668371916, -0.028102725744247437, -0.0016594678163528442, -0.014213702641427517, -0.06349267810583115, -0.04509423300623894, -0.046501174569129944, 0.04224427789449692, 0.03178241476416588, 0.015277925878763199, -0.005614232271909714, -0.0645027905702591, 0.044877782464027405, -0.03382067382335663, 0.01868705078959465, 0.007774245925247669, 0.05129919946193695, 0.05267006531357765, -0.021915797144174576, 0.02765178494155407, -0.01633313111960888, 0.01286989450454712, -0.0008697550510987639, -0.028174877166748047, -0.05147957801818848, -0.029383402317762375, -0.06562113016843796, -0.014330947771668434, -0.030267249792814255, -0.004365121945738792, 0.0053436667658388615, 0.02092372439801693, 0.009523902088403702, 0.02025632932782173, -0.006065174471586943, -0.047655586153268814, -0.011075143702328205, 0.028355253860354424, -0.013032233342528343, 0.0025140035431832075, -0.031836528331041336, -0.08989986032247543, 0.002698889933526516, -0.05137135088443756, 0.00018277256458532065, -0.021374667063355446, 0.08116962015628815, -0.022168325260281563, 0.03263018652796745, 0.009280392900109291, 0.03989937901496887, 0.008022264577448368, -0.022511040791869164, 0.031493812799453735, -0.024639489129185677, -0.010957898572087288, 0.01573788747191429, 0.014899134635925293, 0.01942659541964531, 0.021031949669122696, -0.03715764731168747, 0.023250587284564972, 0.05043338984251022, 0.018632937222719193, 0.0142678152769804, 0.0030709172133356333, -0.015205775387585163, 0.07005839794874191, 0.021843647584319115, -0.08614802360534668, -0.020617082715034485, 0.004982912912964821, 0.020707271993160248, 0.004396687727421522, 0.005451892968267202, 0.025920165702700615, 0.04697015509009361, 0.018993690609931946, 0.034145355224609375, -0.008373999036848545, 0.05836997553706169, 0.031421661376953125, -0.014475248754024506, -0.040043678134679794, 0.05000048503279686, -0.00462215906009078, 0.008455168455839157, 0.03409124165773392, -0.012346801348030567, 0.05692696198821068, 0.044336650520563126, -0.032972902059555054, -0.067966029047966, -0.04513030871748924, -0.002829663222655654, 0.0018105334602296352, -0.04361514374613762, -0.04668154940009117, -0.0475473590195179, -0.0590914823114872, -0.018461579456925392, -0.008180093951523304, 0.09559977799654007, -0.021176252514123917, -0.012446008622646332, 0.015097549185156822, -0.01603551022708416, 0.07175394147634506, -0.0008246608194895089, 0.027958424761891365, 0.051587801426649094, -0.037951305508613586, 0.03816775977611542, 0.027345143258571625, 0.0003390522615518421, 0.03133147209882736, -0.0468619279563427, 0.01937248185276985, -0.0007440548506565392, -0.10721605271100998, 0.026713823899626732, -0.04787203669548035, -0.004608630668371916, 0.006705512758344412, -0.014790908433496952, 0.006782172713428736, -0.027074577286839485, 0.009190204553306103, -0.0015794255305081606, -0.034145355224609375, 0.002324607688933611, -0.023755641654133797, -0.02141074277460575, 0.007972660474479198, 0.030321363359689713, -0.003871339838951826, -0.004752932116389275, 0.0010771885281428695, -0.03708549588918686, 0.04498600587248802, 0.06089525297284126, -0.016152754426002502, -0.023629378527402878, 0.031205208972096443, 0.025920165702700615, -0.024080321192741394, -0.005857740994542837, 0.000005368151505535934, 0.03921394422650337, -0.029942570254206657, 0.05328334495425224, 0.006809229496866465, -0.005817156285047531, -0.017379317432641983, 0.048268865793943405, -0.006114778108894825, -0.002807116135954857, -0.004716856870800257, -0.05375232547521591, 0.04329046607017517, 0.04574359208345413, -0.06121993064880371, -0.002980728866532445, 0.018109844997525215, -0.021591119468212128, 0.04444487765431404, -0.0012276904890313745, 0.005429345648735762, -0.02011202834546566, -0.08506575971841812, -0.008270282298326492, -0.03064604103565216, 0.06774957478046417, -0.02996060810983181, -0.044336650520563126, 0.0037721325643360615, 0.023936018347740173, -0.005167799070477486, -0.018209051340818405, -0.012409932911396027, 0.04199175164103508, 0.0007711114012636244, -0.019192105159163475, 0.00838752742856741, 0.08607587218284607, 0.03421750292181969, 0.0013742467854171991, 0.046104345470666885, -0.006191438063979149, -0.037807006388902664, -0.026533447206020355, 0.042965784668922424, 0.00496036559343338, -0.09552762657403946, 0.03533584251999855, -0.04491385817527771, 0.019823424518108368, -0.020743347704410553, -0.0258119385689497, 0.03820383548736572, -0.008112452924251556, -0.029798269271850586, 0.003990839701145887, 0.018578823655843735, -0.06699199229478836, -0.014763851650059223, 0.029653968289494514, 0.04707837849855423, 0.02256515435874462, -0.03567855805158615, -0.08578726649284363, -0.013762759976089, 0.03154792636632919, -0.021753458306193352, -0.048268865793943405, -0.019408557564020157, -0.02902264893054962, 0.007296246942132711, -0.049351129680871964, -0.022601230069994926, -0.0021239384077489376, -0.007742679677903652, -0.08210758119821548, 0.03629183769226074, -0.01625196263194084, 0.018777238205075264, -0.009596052579581738, 0.00540228933095932, 0.02983434498310089, 0.07077991217374802, 0.008572413586080074, 0.0042275842279195786, -0.010831634514033794, -0.04816064238548279, -0.004453055560588837, 0.067966029047966, 0.007210568059235811, 0.027002427726984024, -0.046898003667593, -0.027868235483765602, 0.012067216448485851, 0.023088248446583748, 0.05454598367214203, 0.031692225486040115, 0.051804255694150925, -0.015205775387585163, -0.0038172269705682993, 0.033261507749557495, 0.08759103715419769, 0.06749705225229263, 0.04069303721189499, -0.05584469810128212, -0.017307166010141373, -0.018777238205075264, 0.05483458936214447, 0.023358812555670738, -0.02629895694553852, -0.014529362320899963, -0.01301419548690319, -0.028752082958817482, -0.031006794422864914, -0.011120238341391087, -0.02812076359987259, -0.05992121621966362, 0.022042062133550644, 0.014240758493542671, -0.02141074277460575, 0.03831206262111664, -0.05443776026368141, -0.03243177384138107, 0.04697015509009361, 0.003909670282155275, 0.02431481145322323, -0.05245361104607582, 0.015097549185156822, -0.018209051340818405, -0.008283810690045357, 0.04531068727374077, -0.0034993125591427088, 0.0013438081368803978, 0.016044529154896736, -0.005591684952378273, -0.067966029047966, -0.012563253752887249, 0.06922866404056549, -0.019282294437289238, 0.018091807141900063, 0.04220820218324661, -0.05930793657898903, -0.039574697613716125, -0.042424656450748444, -0.0071339076384902, 0.017424412071704865, -0.039719000458717346, 0.0010140566155314445, 0.02458537556231022, -0.047258757054805756, 0.012851856648921967, 0.036039311438798904, 0.012319744564592838, -0.01301419548690319, -0.024783790111541748, 0.02377367950975895, -0.024549299851059914, 0.030249211937189102, 0.023881906643509865, 0.026930276304483414, 0.058730728924274445, -0.03437984362244606, 0.025180619210004807, -0.01284283772110939, -0.025902127847075462, 0.0529947429895401, 0.029996683821082115, 0.05371624976396561, -0.028968535363674164, 0.021212328225374222, -0.0679299533367157, 0.01141786016523838, 0.028373291715979576, -0.030267249792814255, -0.067966029047966, -0.00618241960182786 ]
23,414
conexions.proxy
get_ligazon
null
def get_ligazon(self) -> str: return self.__ligazon
(self) -> str
[ 0.02333711087703705, 0.02201361395418644, 0.09281234443187714, 0.07713141292333603, 0.032752372324466705, -0.018260912969708443, 0.0053986962884664536, 0.017875591292977333, 0.03776155784726143, -0.04251944646239281, -0.04091114550828934, -0.027475133538246155, -0.02201361395418644, -0.022030366584658623, -0.0023684739135205746, -0.015546904876828194, -0.042452432215213776, -0.053710538893938065, -0.0007790206000208855, 0.0005607063649222255, 0.02273399755358696, 0.0008360859355889261, 0.022935036569833755, -0.06915692239999771, -0.01980219967663288, 0.03320470452308655, -0.022114133462309837, 0.014432822354137897, 0.05682661756873131, -0.0314791314303875, -0.04891914129257202, -0.06021075323224068, -0.024694114923477173, -0.037124939262866974, 0.0075556617230176926, -0.010604731738567352, -0.014081005938351154, -0.01386321522295475, -0.02801123447716236, -0.014374186284840107, -0.019148828461766243, -0.01292503997683525, 0.0035830759443342686, -0.0024522393941879272, -0.02923421375453472, -0.044663846492767334, 0.0030804818961769342, -0.028363050892949104, -0.02462710253894329, -0.0010261292336508632, 0.06597382575273514, 0.017775071784853935, -0.024359051138162613, -0.049321215599775314, -0.027307603508234024, -0.016426444053649902, 0.05850193277001381, -0.0013214031932875514, 0.007203846238553524, 0.0006879254360683262, -0.020120510831475258, -0.0063075534999370575, -0.0014282043557614088, -0.015521775931119919, 0.03558364883065224, 0.028547335416078568, 0.033958595246076584, 0.04968978464603424, 0.024040741845965385, 0.0313786156475544, 0.02052258513867855, 0.005059445276856422, -0.026771502569317818, 0.0028229025192558765, -0.005164152476936579, 0.004431203007698059, -0.025883587077260017, -0.02141050063073635, 0.03245081380009651, -0.017825331538915634, -0.05247080698609352, 0.019165581092238426, 0.04087764024734497, -0.00023100996622815728, -0.0017119605327025056, -0.07297663390636444, 0.016568847000598907, -0.01651858724653721, -0.006630051415413618, -0.022214651107788086, -0.07438389956951141, 0.021041931584477425, -0.004703441634774208, 0.01183608639985323, -0.05615649372339249, -0.007111703976988792, -0.013519776053726673, -0.007618486415594816, 0.03692390024662018, 0.014625483192503452, 0.02450983040034771, 0.04757888987660408, -0.006504402961581945, 0.014357432723045349, -0.011886346153914928, -0.006257294211536646, -0.0356171540915966, 0.008209033869206905, 0.012079006992280483, -0.016057875007390976, -0.0839666947722435, -0.03869973123073578, 0.00007859574543545023, 0.006826900877058506, 0.04268697649240494, 0.020388560369610786, -0.021226216107606888, 0.0027977728750556707, 0.0028982916846871376, 0.03930284455418587, 0.021326735615730286, 0.01831117272377014, -0.027743184939026833, -0.035851698368787766, -0.039403364062309265, 0.059976208955049515, -0.010814146138727665, 0.03010537661612034, 0.03883375599980354, -0.04335710406303406, 0.062087103724479675, 0.006906478200107813, -0.0314791314303875, 0.001405168790370226, 0.019098568707704544, 0.01901480369269848, 0.03392508998513222, 0.06915692239999771, -0.007275046780705452, 0.11077170073986053, -0.01968492940068245, 0.009700062684714794, 0.03735947981476784, -0.03672286123037338, -0.029049929231405258, 0.07177041471004486, -0.011417258530855179, 0.04784694314002991, 0.008296987973153591, -0.06520318239927292, 0.059641145169734955, -0.023035554215312004, 0.06989406049251556, -0.00892941839993, -0.037024419754743576, -0.0019014803692698479, -0.06734758615493774, -0.0037841133307665586, 0.0737137719988823, -0.017657799646258354, -0.030708488076925278, -0.008644615299999714, 0.0026009236462414265, -0.027491888031363487, 0.008087573572993279, 0.01400561723858118, 0.04332359507679939, -0.006470896769315004, 0.01812688820064068, 0.011140831746160984, -0.01253134198486805, -0.024375805631279945, -0.03638780117034912, 0.04573604837059975, -0.0020679645240306854, 0.06188606470823288, -0.01183608639985323, 0.10581277310848236, -0.010043501853942871, 0.031177576631307602, 0.0018219029298052192, 0.0032773311249911785, -0.01913207583129406, -0.010629861615598202, 0.03372405096888542, -0.02618514373898506, 0.0716363862156868, -0.024493077769875526, 0.012640236876904964, -0.008418448269367218, 0.020438820123672485, 0.04111218452453613, 0.002829184988513589, -0.03166341781616211, 0.010303175076842308, -0.0069441725499928, 0.043893203139305115, -0.025464758276939392, -0.04674123600125313, -0.023822952061891556, 0.01618352346122265, 0.06674446910619736, -0.048114992678165436, 0.022114133462309837, -0.017339490354061127, 0.021393748000264168, -0.019266100600361824, 0.0017915379721671343, -0.0015067346394062042, 0.007760887965559959, 0.03106030449271202, 0.00208052946254611, -0.030741995200514793, 0.015320737846195698, 0.02972005307674408, -0.07344572246074677, -0.06895588338375092, 0.06687849760055542, 0.0014093570644035935, 0.04918719083070755, 0.04506592079997063, -0.06118243187665939, 0.02899966947734356, -0.04205035790801048, -0.024426065385341644, -0.008912665769457817, 0.037594024091959, 0.000403122219722718, 0.01109057292342186, -0.019165581092238426, -0.005792394746094942, -0.04985731840133667, -0.03658883646130562, -0.007806959096342325, -0.031127316877245903, -0.0376945436000824, -0.010520965792238712, 0.014675742946565151, -0.011140831746160984, -0.014625483192503452, 0.004058445803821087, 0.009842464700341225, 0.01929960586130619, 0.06228813901543617, 0.00992622971534729, 0.006567227188497782, -0.0134443873539567, 0.026101376861333847, 0.00203864648938179, 0.014675742946565151, -0.030691735446453094, -0.026654230430722237, 0.004896102473139763, 0.02578306756913662, 0.02822902612388134, -0.040174007415771484, -0.023722432553768158, 0.02256646752357483, 0.010579601861536503, -0.01696254499256611, -0.041514258831739426, -0.07525506615638733, -0.028547335416078568, -0.02977031283080578, -0.0025150638539344072, 0.050929516553878784, -0.0016323832096531987, -0.0161332655698061, 0.04158126935362816, -0.04037504643201828, 0.0768633633852005, 0.0268385149538517, -0.10896236449480057, -0.007358812727034092, -0.00008284946670755744, -0.03876674547791481, 0.01968492940068245, 0.03359002619981766, -0.04111218452453613, -0.021259723231196404, 0.0012114607961848378, -0.021142451092600822, -0.02172880992293358, -0.009783828631043434, -0.07384780049324036, -0.011517777107656002, 0.016669364646077156, -0.036454811692237854, -0.000640807265881449, -0.0020658704452216625, 0.04014050215482712, 0.011827710084617138, -0.05076198652386665, 0.0024794633500277996, 0.11794204264879227, -0.06021075323224068, 0.07197144627571106, 0.04563552886247635, 0.010412070900201797, -0.028312791138887405, 0.0005185617483220994, -0.06081386283040047, 0.0009502166067250073, -0.01836143061518669, -0.047444865107536316, 0.028547335416078568, 0.05840141326189041, -0.04174880310893059, 0.0047160061076283455, 0.022214651107788086, -0.05923907086253166, 0.02993784472346306, 0.013745944015681744, -0.05461520701646805, 0.0007036314927972853, 0.03953738883137703, 0.01150940079241991, 0.0376945436000824, 0.018445197492837906, 0.0555533803999424, 0.012288421392440796, 0.015764696523547173, -0.011827710084617138, -0.0016114417230710387, 0.017289230599999428, -0.01908181607723236, -0.01824415847659111, 0.03521507978439331, 0.020891154184937477, 0.044060733169317245, -0.024493077769875526, -0.06258969753980637, -0.038063112646341324, -0.019651422277092934, 0.010487459599971771, 0.05645805224776268, 0.05153262987732887, 0.030021609738469124, -0.03672286123037338, -0.05977516993880272, 0.020036743953824043, -0.03251782804727554, -0.03359002619981766, 0.04587007313966751, -0.00010909167758654803, 0.06895588338375092, -0.002299367217347026, 0.030842512845993042, 0.033908337354660034, 0.05689363181591034, -0.05086250603199005, 0.008694875054061413, -0.013469517230987549, 0.011995241977274418, -0.020422065630555153, -0.014382562600076199, -0.010554471984505653, 0.012171149253845215, 0.023655420169234276, 0.12142669409513474, -0.03789558261632919, -0.11894723027944565, 0.03377431258559227, 0.02816201187670231, 0.001397839398123324, -0.02191309444606304, 0.02079063467681408, -0.003325496334582567, 0.05665908753871918, 0.021444007754325867, -0.008129457011818886, -0.017222218215465546, -0.018880778923630714, -0.0019412690307945013, -0.005310742650181055, 0.051432110369205475, 0.06520318239927292, -0.00175698462408036, -0.04530046507716179, -0.035851698368787766, 0.014298796653747559, 0.000748132006265223, 0.06161801517009735, 0.0627572312951088, -0.0082886116579175, -0.0004986674175597727, 0.03866622596979141, -0.04174880310893059, -0.027910714969038963, -0.009381753392517567, -0.005314930807799101, -0.055486369878053665, 0.03628728166222572, 0.01244757603853941, -0.03166341781616211, -0.033908337354660034, -0.05602246895432472, -0.061919569969177246, 0.044228266924619675, 0.016979297623038292, -0.00020718910673167557, -0.039068300276994705, -0.03353976830840111, -0.0179593563079834, -0.04020751267671585, -0.0010078054619953036, 0.013653801754117012, 0.05615649372339249, -0.025716055184602737, -0.05806634947657585, -0.0804150253534317, 0.02657046541571617, -0.014039123430848122, -0.054983776062726974, 0.06510266661643982, 0.0020501643884927034, -0.0027035365346819162, 0.05763076990842819, -0.01862948201596737, 0.009381753392517567, -0.04412774741649628, -0.013670554384589195, 0.02744162827730179, 0.029301226139068604, 0.011760697700083256, 0.008384942077100277, -0.029150446876883507, 0.006919043138623238, 0.010881158523261547, 0.030959784984588623, 0.00862786266952753, 0.010185903869569302, 0.052537817507982254, -0.07250755280256271, 0.033187951892614365, -0.008087573572993279, -0.011467518284916878, -0.004138023126870394, -0.010227786377072334, -0.016284042969346046, 0.07056418806314468, 0.0077860173769295216, -0.007069821003824472, 0.030423685908317566, 0.027106566354632378, -0.02729084901511669, -0.04925420507788658, 0.006663557607680559, 0.050929516553878784, -0.049220699816942215, -0.020824141800403595, 0.02923421375453472, 0.005612298846244812, 0.005402884446084499, 0.027592405676841736, 0.015370997600257397, -0.08845653384923935, -0.04724382981657982, 0.008246728219091892, 0.02784370258450508, -0.056257013231515884, 0.06523668766021729, 0.004912855569273233, 0.03337223455309868, -0.004154776223003864, -0.015421256422996521, 0.001017752685584128, -0.0011276950826868415, -0.08745133876800537, -0.034025609493255615, 0.02618514373898506, -0.05153262987732887, -0.013553283177316189, -0.024308793246746063, 0.008937795646488667, 0.027692925184965134, -0.015932226553559303, 0.00854409672319889, 0.01980219967663288, -0.04402722790837288, -0.06121594086289406, -0.02162829227745533, -0.007442578207701445, 0.006508591119199991, 0.00859435647726059, 0.02378944493830204, -0.08738432824611664, 0.03799610212445259, -0.021092191338539124, -0.031914714723825455, -0.017842084169387817, 0.11619971692562103, 0.0011015183990821242, -0.001188425230793655, 0.027089811861515045, 0.11231298744678497, 0.030423685908317566, -0.07592518627643585, -0.039838943630456924, 0.04486488550901413, -0.017012804746627808, -0.004091951996088028, -0.006479273084551096, -0.01841169036924839, 0.015773072838783264, -0.04077712073922157, -0.0017004427500069141, 0.013988863676786423, -0.0038825380615890026, -0.013812956400215626, 0.01630917191505432, -0.009641426615417004, 0.0643320232629776, 0.027491888031363487, -0.08269345015287399, -0.017104946076869965, -0.010185903869569302, 0.04188282787799835, 0.018780259415507317, 0.030323166400194168, 0.009875970892608166, -0.024995671585202217, -0.030473945662379265, -0.06841978430747986, -0.015111323446035385, 0.05153262987732887, 0.0428210012614727, 0.003576793475076556, -0.04375917837023735, 0.036454811692237854, 0.008770263753831387, -0.021862834692001343, -0.0075556617230176926, 0.029921092092990875, -0.020539337769150734, 0.07491999864578247, -0.07753349095582962, -0.022817764431238174, 0.02069011703133583, -0.0033862264826893806, -0.01000999566167593, -0.10031774640083313, -0.047612398862838745, 0.006508591119199991, 0.03359002619981766, -0.035751182585954666, -0.023806199431419373, 0.019165581092238426, 0.0034071679692715406, 0.017322737723588943, 0.042720481753349304, -0.01094817090779543, -0.013285232707858086, -0.07981191575527191, 0.014407692477107048, 0.05484975129365921, -0.03333872929215431, 0.042955026030540466, 0.04007348790764809, 0.02189634181559086, 0.0007449907716363668, -0.01829441823065281, 0.019500644877552986, 0.023856457322835922, -0.019818954169750214, 0.016660988330841064, -0.013251726515591145, 0.054380662739276886, 0.0010360764572396874, -0.012238161638379097, 0.033523015677928925, -0.005536909680813551, 0.027960974723100662, 0.01089791115373373, -0.053878068923950195, 0.07083223760128021, -0.011434012092649937, 0.0187970120459795, -0.01392185129225254, -0.0041861883364617825, 0.00948227196931839, 0.05582142993807793, -0.014181525446474552, 0.015672553330659866, -0.006198658142238855, 0.0644325390458107, -0.031244589015841484, 0.05944010615348816, 0.00029003858799114823, -0.046439677476882935, -0.032249774783849716, -0.03283613547682762, 0.005453144200146198, -0.01620027795433998, 0.020991673693060875, -0.009783828631043434, 0.018009616062045097, -0.0484500527381897, 0.007702251896262169, 0.02184608206152916, 0.03132835403084755, 0.010286422446370125, -0.055921949446201324, 0.028647853061556816, -0.0011852839961647987, 0.022499455139040947, 0.030708488076925278, -0.03250107541680336, -0.03880025073885918, -0.02889914996922016, -0.024526583030819893, -0.014692495577037334, -0.05059445649385452, -0.1015239730477333, -0.04379268363118172, -0.008514778688549995, 0.022767504677176476, 0.018612727522850037, -0.007300176657736301, -0.0321660116314888, 0.0161332655698061, 0.0250124242156744, -0.023822952061891556, 0.0004544286639429629, 0.01836143061518669, -0.03060797043144703, 0.0188472718000412, -0.04580305889248848, 0.054983776062726974, -0.019215840846300125, -0.0008235210552811623, 0.010412070900201797, 0.0032647664193063974, -0.0927453339099884, -0.029301226139068604, 0.016325926408171654, -0.0004125458362977952, -0.013402504846453667, -0.03953738883137703, 0.012598354369401932, -0.06841978430747986, 0.03903479501605034, 0.0002096758980769664, 0.014298796653747559, -0.01092304103076458, -0.02762591280043125, -0.007723193150013685, 0.024828139692544937, -0.006093951407819986, -0.06406397372484207, -0.028128506615757942, 0.046272147446870804, 0.022382183000445366, 0.0004091428709216416, -0.028915904462337494, -0.050326403230428696, -0.041179195046424866, 0.05484975129365921, -0.03658883646130562, -0.0376945436000824, -0.040844131261110306, -0.035851698368787766, -0.02179582230746746, 0.012405693531036377, 0.054313648492097855, -0.004278330598026514, 0.00361239374615252, -0.03166341781616211, 0.052537817507982254, -0.06279073655605316, -0.006496026646345854, 0.03615325689315796, 0.03699091076850891, -0.0412462092936039, 0.01586521416902542, -0.005206035450100899, 0.05119756609201431, 0.04546799510717392, 0.07404883950948715, 0.010219410061836243, 0.0007099139038473368, 0.050426922738552094, -0.0013109324499964714, -0.008937795646488667, 0.02779344469308853, 0.03255133330821991, -0.004695064853876829, 0.03588520735502243, 0.042720481753349304, 0.050929516553878784, -0.06081386283040047, -0.03176393732428551, 0.0013036029413342476, 0.08483785390853882, 0.08952873200178146, -0.006747323554009199, -0.01496892236173153, -0.016903908923268318, -0.017758319154381752, 0.007446766830980778, 0.05866946280002594, -0.007379753980785608, -0.024911904707551003, 0.02623540349304676, 0.01403074711561203, -0.02938499115407467, 0.05944010615348816, -0.04138023406267166, -0.062187619507312775, 0.012053877115249634, 0.03987245261669159, 0.033573273569345474, 0.01444957498461008, -0.03283613547682762, 0.04416125267744064, -0.010638237930834293, -0.003315025707706809, 0.03692390024662018, -0.06258969753980637, 0.006387131288647652, -0.013084194622933865, -0.011015183292329311, 0.011769074015319347, 0.021879589185118675, 0.014524964615702629, 0.04781343415379524, 0.03903479501605034, 0.00801637303084135, -0.11418934166431427, -0.010470706969499588, -0.04308905079960823, 0.024476323276758194, 0.004401884973049164, -0.0013350150547921658, 0.0036982535384595394, 0.009473895654082298, 0.005541097838431597, 0.04680824652314186, -0.02801123447716236, -0.00668031070381403, 0.04818200320005417, 0.016552092507481575, -0.018160393461585045, -0.02323659136891365, 0.0017025369452312589, 0.06044529378414154, -0.05350949987769127, 0.0120622543618083, -0.015521775931119919, 0.019333112984895706, 0.06299176812171936, 0.027089811861515045, 0.02229841612279415, -0.07458493858575821, 0.009825711138546467, -0.009641426615417004, 0.018780259415507317, 0.013838086277246475, 0.02157803252339363, 0.009524154476821423, -0.0359187126159668, -0.02112569846212864, -0.03993946313858032, 0.012816145084798336, 0.015253725461661816, 0.009130456484854221, -0.06111542135477066, 0.007258293684571981 ]
23,415
conexions.proxy
get_ligazons_ip
null
def get_ligazons_ip(self) -> List[str]: return self.__ligazons_ip
(self) -> List[str]
[ 0.026929091662168503, -0.0031309942714869976, 0.030555792152881622, 0.024963216856122017, -0.014574587345123291, 0.04704541340470314, 0.02884412556886673, -0.04301197826862335, 0.06934791803359985, -0.025081848725676537, -0.04585910961031914, -0.056840889155864716, -0.00029180949786677957, -0.031911566853523254, 0.015133844688534737, 0.010320841334760189, -0.06304356455802917, -0.042266301810741425, -0.0063128299079835415, -0.03241998329758644, -0.018286023288965225, -0.01134614646434784, 0.047011516988277435, -0.06443323194980621, 0.004825713578611612, 0.06480607390403748, 0.019285907968878746, -0.010973308235406876, 0.06304356455802917, 0.03891075775027275, -0.060704849660396576, -0.03143704682588577, -0.040164850652217865, -0.046367526054382324, 0.012888341210782528, -0.012998498044908047, 0.025590263307094574, 0.006181489210575819, -0.013718754053115845, 0.028878020122647285, -0.017709817737340927, -0.04945191368460655, -0.035894159227609634, -0.01760813593864441, -0.011261411011219025, -0.029911799356341362, 0.007702500093728304, -0.018930016085505486, 0.0011227516224607825, -0.027522243559360504, 0.011693564243614674, 0.027573086321353912, -0.0057832300662994385, -0.047248777002096176, 0.03387744352221489, -0.023675231263041496, 0.0631791427731514, 0.022980395704507828, 0.018997805193066597, -0.009397219866514206, -0.04470669850707054, -0.03955475240945816, 0.01777760684490204, -0.03579247370362282, 0.08046527951955795, 0.01970958709716797, -0.03175904229283333, 0.0004909390700049698, -0.013701806776225567, 0.02762392722070217, 0.03833455592393875, -0.05287524685263634, -0.033555444329977036, 0.010202211327850819, 0.0190147515386343, 0.030115164816379547, 0.040978316217660904, 0.03438585624098778, -0.03623310104012489, -0.04091052711009979, -0.03575858101248741, 0.043554291129112244, 0.03755498304963112, 0.04084273800253868, 0.04453722760081291, -0.08277010172605515, -0.007405924145132303, -0.007638948038220406, -0.002004005713388324, 0.01257481798529625, -0.04026653617620468, -0.005062974523752928, -0.03438585624098778, 0.0114054623991251, -0.051688943058252335, 0.0038597234524786472, -0.023539653047919273, -0.016489621251821518, 0.010032739490270615, 0.00564765278249979, 0.019048646092414856, 0.0228109247982502, -0.03125062584877014, 0.00787197146564722, 0.014786426909267902, -0.0027390902396291494, -0.06036590784788132, 0.035419635474681854, -0.01243076752871275, -0.007316951174288988, -0.047723300755023956, -0.002969995839521289, 0.0181334987282753, -0.0024446328170597553, 0.0391819141805172, 0.04179178178310394, -0.0008605997427366674, -0.009287063032388687, 0.011913877911865711, 0.038470130413770676, -0.0004925278481096029, 0.029403382912278175, -0.02070947177708149, 0.00326233496889472, -0.024302277714014053, 0.06592458486557007, -0.02942032925784588, 0.02398028038442135, -0.005935755092650652, -0.038470130413770676, 0.04243577644228935, -0.027013828977942467, -0.08466818183660507, 0.025725841522216797, 0.020082425326108932, -0.055959638208150864, 0.017133614048361778, 0.022268613800406456, 0.019268959760665894, 0.036300890147686005, -0.02638678252696991, 0.055485114455223083, 0.06080653518438339, 0.005732388701289892, -0.009227747097611427, 0.02931864745914936, 0.03370796889066696, 0.05314640328288078, 0.016709933057427406, -0.09354851394891739, 0.021387359127402306, 0.010668259114027023, -0.0015188923571258783, -0.00546970684081316, -0.04867234453558922, 0.04792666807770729, -0.035317953675985336, -0.01415938138961792, 0.05101105570793152, -0.04409660026431084, -0.09605669975280762, -0.022031353786587715, -0.04657088965177536, -0.05575627088546753, 0.003677541157230735, -0.017625082284212112, 0.02791202999651432, -0.015337211079895496, 0.042503565549850464, 0.05484112352132797, -0.04345260560512543, -0.025420792400836945, 0.010430998168885708, 0.033318184316158295, 0.013320495374500751, 0.0010147133143618703, -0.039351385086774826, 0.05453607067465782, 0.007113584782928228, 0.02557331696152687, -0.0025166585110127926, 0.003851250046864152, 0.03070831671357155, -0.013922120444476604, 0.02035357989370823, 0.02569194696843624, 0.04528290405869484, -0.024149753153324127, -0.031115049496293068, 0.042740825563669205, 0.03435196354985237, 0.017006509006023407, 0.01354928221553564, -0.026929091662168503, -0.026420677080750465, 0.006346724461764097, -0.002919154241681099, 0.0008129357593134046, -0.09815815091133118, -0.05067211017012596, 0.040571585297584534, 0.02106536366045475, -0.06955128908157349, 0.015421947464346886, -0.03213188052177429, 0.06904286891222, -0.067890465259552, -0.026657937094569206, 0.021387359127402306, 0.028335709124803543, 0.08887109160423279, -0.003222085302695632, -0.03304702788591385, 0.0015125371282920241, 0.006702615413814783, -0.013057813048362732, -0.04707930609583855, 0.04463890939950943, 0.012735816650092602, 0.020268844440579414, 0.08087201416492462, -0.0661279559135437, -0.0374533012509346, -0.027640873566269875, -0.040808845311403275, 0.04816392809152603, -0.01626930758357048, 0.005634942092001438, 0.014150907285511494, -0.025132689625024796, 0.06253514438867569, -0.02440395951271057, -0.037419404834508896, -0.007147479336708784, 0.0058594923466444016, 0.02264145202934742, 0.01603204570710659, -0.015879521146416664, 0.011710511520504951, 0.006744983606040478, -0.054095443338155746, 0.0254546869546175, 0.030284637585282326, 0.0015919770812615752, 0.039825908839702606, -0.004804529715329409, -0.06328082829713821, 0.017421716824173927, 0.031030314043164253, -0.002169240964576602, -0.013286600820720196, -0.024065015837550163, 0.0013208219315856695, -0.01425259094685316, 0.002588683972135186, -0.041690099984407425, -0.02960674837231636, 0.017014984041452408, 0.037995610386133194, -0.007325424812734127, -0.016769248992204666, -0.03914801776409149, -0.035961948335170746, -0.06643300503492355, -0.01650656759738922, 0.0637892410159111, -0.0025208950974047184, -0.012913762591779232, -0.008477834053337574, 0.01660825125873089, 0.0660940557718277, 0.0155066829174757, -0.07653353363275528, 0.005279051139950752, 0.00991410855203867, -0.037893928587436676, 0.01796402595937252, 0.04165620356798172, -0.0438932329416275, -0.030149059370160103, 0.02614952065050602, 0.025132689625024796, -0.042096830904483795, -0.018404653295874596, -0.044028811156749725, -0.0585017167031765, 0.011058044619858265, 0.003344952594488859, -0.02936948835849762, -0.013506914488971233, 0.037182144820690155, -0.002991179935634136, -0.028420444577932358, -0.039520855993032455, 0.099446140229702, 0.013922120444476604, 0.04179178178310394, 0.07382197678089142, 0.008592227473855019, -0.031674306839704514, -0.02450564317405224, -0.03813118860125542, -0.0016089242417365313, -0.003186072688549757, 0.01820128783583641, 0.02960674837231636, 0.03480953723192215, -0.0020093016792088747, 0.00015609954425599426, 0.014922005124390125, -0.006232331041246653, -0.025708893314003944, 0.004986711777746677, -0.08941339701414108, 0.035656899213790894, -0.005223972722887993, 0.023065131157636642, 0.0755167007446289, -0.022675346583127975, 0.034606169909238815, -0.0006985421641729772, 0.03833455592393875, -0.0012382044224068522, 0.027776451781392097, 0.0315895713865757, 0.03748719394207001, 0.04646920785307884, 0.009922582656145096, -0.009261641651391983, 0.02516658417880535, 0.019912954419851303, -0.06873781979084015, -0.05318029597401619, 0.00033920869464054704, 0.05599353089928627, 0.05470554530620575, 0.008600701577961445, 0.02808150090277195, -0.039520855993032455, -0.06599237769842148, -0.032792821526527405, 0.0008076397352851927, -0.03752109035849571, 0.04897739365696907, -0.009854793548583984, 0.03223356232047081, 0.005181604530662298, 0.05053653568029404, -0.052570197731256485, 0.07063590735197067, -0.01690482720732689, 0.035487424582242966, -0.017557293176651, 0.03060663305222988, 0.01948927342891693, -0.019201170653104782, -0.03404691442847252, 0.034267228096723557, 0.0684666633605957, 0.10222547501325607, 0.0038215923123061657, -0.10208989679813385, 0.06487385928630829, -0.01638793759047985, 0.023793861269950867, -0.008143126964569092, 0.06595848500728607, -0.023658283054828644, 0.0883287787437439, 0.005834071896970272, -0.0444694384932518, -0.008503254503011703, -0.05406155064702034, -0.06155221164226532, -0.008037206716835499, -0.013337441720068455, 0.08378692716360092, 0.007134769111871719, -0.08161769062280655, 0.023675231263041496, -0.034013018012046814, -0.02387859672307968, 0.09212494641542435, 0.03819897770881653, 0.020031584426760674, 0.035961948335170746, 0.03897854685783386, -0.03609752282500267, 0.0010449005058035254, -0.0012350267497822642, 0.008965065702795982, -0.041927359998226166, -0.019692640751600266, 0.026064785197377205, -0.034131649881601334, -0.023183763027191162, -0.007829603739082813, -0.018743596971035004, 0.06229788810014725, -0.02994569204747677, 0.0024870007764548063, -0.0051688943058252335, -0.020726418122649193, -0.008931171149015427, -0.03572468459606171, -0.0074652391485869884, 0.0006529965903609991, 0.017260717228055, -0.024539537727832794, -0.053281981498003006, 0.0035483187530189753, 0.02247197926044464, 0.05612910911440849, -0.07111042737960815, 0.05284135416150093, 0.04253745824098587, -0.026166468858718872, 0.09802257269620895, -0.003819474019110203, -0.0008192909299395978, -0.0013949659187346697, -0.05972191318869591, 0.001974348211660981, 0.03575858101248741, 0.01748950406908989, 0.005846782121807337, -0.009668374434113503, -0.014676270075142384, -0.0014532218920066953, 0.001888553029857576, 0.01913338340818882, 0.03765666484832764, 0.04406270757317543, -0.040978316217660904, 0.036368679255247116, -0.02259061112999916, 0.014413588680326939, -0.007130532059818506, 0.005961175542324781, 0.0047240303829312325, 0.020912837237119675, -0.0009903516620397568, 0.02099757455289364, 0.01708277128636837, 0.03060663305222988, 0.014693217352032661, -0.07653353363275528, 0.017099719494581223, 0.03292839974164963, -0.03765666484832764, -0.05016369745135307, -0.0667380541563034, 0.0468081496655941, 0.02187882736325264, 0.0026289336383342743, 0.0620267316699028, -0.04931633546948433, -0.019116435199975967, -0.017658976837992668, 0.011659669689834118, 0.009956477209925652, 0.03387744352221489, 0.002959403907880187, -0.018624966964125633, -0.0004006422823294997, -0.03416554257273674, -0.016226937994360924, -0.0310133658349514, -0.024302277714014053, -0.011159727349877357, -0.0014712283154949546, -0.043859340250492096, -0.0029954167548567057, -0.05914570763707161, 0.004575742408633232, 0.06419597566127777, 0.014786426909267902, 0.01264260709285736, 0.002472172025591135, -0.038232870399951935, -0.07924508303403854, -0.05189231038093567, 0.00409274734556675, -0.008168547414243221, -0.0038406578823924065, -0.04013095796108246, -0.06131495162844658, 0.02903054468333721, -0.07653353363275528, -0.027657821774482727, -0.015582945197820663, 0.0520617812871933, -0.041622310876846313, -0.03060663305222988, 0.017879290506243706, 0.05701036378741264, 0.04101221263408661, -0.0456218495965004, 0.019387589767575264, 0.04989254102110863, -0.0072025577537715435, 0.02106536366045475, 0.011041097342967987, 0.00770673668012023, 0.03353849798440933, -0.023624388501048088, 0.05236683040857315, 0.01598120480775833, -0.022336402907967567, 0.018150445073843002, 0.028352657333016396, -0.006236567627638578, 0.05355313420295715, 0.028284868225455284, -0.08256673067808151, -0.023471863940358162, -0.034318070858716965, 0.02960674837231636, -0.0022349113132804632, 0.04663867875933647, 0.008388861082494259, 0.028183184564113617, 0.008359204046428204, -0.01737087406218052, 0.0033407157752662897, 0.05487501621246338, 0.015760891139507294, -0.02579363062977791, -0.07558448612689972, 0.04860455542802811, 0.025302162393927574, 0.002419212134554982, 0.011329199187457561, -0.007757578510791063, -0.007109348196536303, 0.08066864311695099, -0.023336287587881088, -0.0316065177321434, -0.03438585624098778, -0.017743712291121483, -0.01614220254123211, -0.039283595979213715, -0.05995917320251465, -0.004787582438439131, -0.010905520059168339, -0.025302162393927574, -0.055959638208150864, 0.030928630381822586, -0.01204945519566536, 0.015235528349876404, 0.07043254375457764, -0.00489773927256465, 0.028183184564113617, -0.06470438838005066, 0.04843508079648018, 0.007113584782928228, -0.005020606331527233, 0.026251204311847687, -0.01129530556499958, 0.011871510185301304, 0.005906097125262022, -0.03657204657793045, -0.015667680650949478, 0.002429804066196084, -0.08853214234113693, 0.015523630194365978, -0.037588879466056824, 0.013515387661755085, -0.004571505822241306, -0.021912721917033195, 0.014176328666508198, -0.04216462001204491, -0.01427801139652729, -0.012354505248367786, -0.03299618884921074, 0.02006547898054123, 0.0086303586140275, 0.008244810625910759, 0.02311597391963005, -0.033962178975343704, 0.016176097095012665, 0.04179178178310394, 0.013413704931735992, -0.004486769903451204, 0.014244116842746735, 0.10812310129404068, -0.03470785543322563, 0.017811501398682594, 0.02503100596368313, -0.008541385643184185, 0.010769941844046116, 0.012456187978386879, 0.01234603114426136, 0.019167277961969376, -0.03663983568549156, -0.009143011644482613, -0.003357662819325924, 0.01620151847600937, -0.012193506583571434, 0.01615067571401596, 0.03880907595157623, 0.009320956654846668, -0.010651311837136745, -0.04640141874551773, 0.033385973423719406, -0.01143935602158308, -0.013634017668664455, -0.03206409141421318, -0.028166238218545914, -0.00011201036249985918, -0.015337211079895496, -0.014625429175794125, 0.01954011619091034, -0.09761583805084229, -0.04243577644228935, -0.007816893048584461, 0.03418249264359474, 0.05978970229625702, 0.01767592318356037, -0.03365712985396385, 0.016811616718769073, -0.012040982022881508, 0.012803605757653713, 0.005122289527207613, 0.0251496359705925, -0.04148673266172409, -0.020506106317043304, 0.007266109809279442, 0.05680699646472931, 0.062230098992586136, 0.03816508129239082, -0.004652004688978195, 0.019285907968878746, -0.030759157612919807, -0.030589686706662178, -0.01837075874209404, 0.01825212873518467, -0.054908908903598785, -0.03340291976928711, 0.014439010061323643, -0.07992296665906906, 0.013625544495880604, -0.0022349113132804632, -0.013667912222445011, 0.030284637585282326, -0.04575742408633232, -0.010693679563701153, 0.014413588680326939, 0.007393213454633951, -0.06602627038955688, -0.008596464060246944, 0.036131419241428375, -0.0015909179346635938, 0.008821015246212482, -0.0749066025018692, -0.038876865059137344, -0.07056812196969986, 0.07470323145389557, -0.02697993442416191, -0.08148211240768433, -0.04216462001204491, 0.0027623926289379597, 0.002203135285526514, -0.007566922344267368, 0.00959211215376854, 0.030877787619829178, -0.005537495948374271, -0.003406386123970151, 0.02528521418571472, 0.022793976590037346, 0.015244001522660255, -0.004969764966517687, -0.005173131357878447, 0.035656899213790894, 0.026369834318757057, 0.01465932372957468, 0.008990487083792686, -0.0048087663017213345, -0.018743596971035004, 0.006986481137573719, 0.019099488854408264, -0.03633478656411171, 0.017930131405591965, -0.019862111657857895, -0.005033317022025585, 0.026420677080750465, 0.03264029696583748, 0.05358703061938286, 0.040876634418964386, 0.07877056300640106, -0.027369718998670578, -0.005372260697185993, 0.035012904554605484, 0.08798983693122864, 0.10181874781847, 0.037995610386133194, -0.011557986959815025, -0.043079767376184464, -0.010405577719211578, 0.029149174690246582, -0.00792704988270998, -0.00936332531273365, -0.060467589646577835, 0.029742326587438583, 0.01584562659263611, -0.04267303645610809, 0.026708777993917465, -0.013091707602143288, -0.04989254102110863, 0.03365712985396385, 0.037588879466056824, -0.027420561760663986, 0.0195909570902586, -0.06707699596881866, 0.021811040118336678, 0.0012964603956788778, 0.032504718750715256, -0.019811270758509636, -0.010337788611650467, 0.043554291129112244, 0.04616415873169899, 0.04053768888115883, 0.024370064958930016, 0.02030273899435997, -0.004202904179692268, 0.03965643420815468, -0.012295189313590527, -0.002472172025591135, -0.09354851394891739, 0.05067211017012596, -0.004160536453127861, 0.044842276722192764, -0.016701459884643555, -0.015108424238860607, -0.003719909116625786, -0.02387859672307968, -0.020811155438423157, 0.0462319478392601, -0.07761815190315247, 0.009456534869968891, 0.05928128585219383, -0.06131495162844658, 0.029047491028904915, 0.005757809150964022, -0.01843854784965515, 0.0020050648599863052, -0.008346493355929852, 0.015574472025036812, -0.016667565330863, 0.019336748868227005, 0.014794901013374329, 0.06138273701071739, 0.023963334038853645, -0.10073412209749222, 0.006783114746212959, -0.02826792001724243, 0.0008780765347182751, -0.01018526405096054, -0.00632130354642868, 0.027183299884200096, -0.046198051422834396, -0.008155837655067444, -0.05470554530620575, -0.008643069304525852, 0.044672805815935135, -0.01232061069458723, -0.05406155064702034, 0.02321765571832657 ]
23,416
conexions.proxy
get_max_cons
null
def get_max_cons(self) -> int: return self.__max_cons
(self) -> int
[ 0.006990928668528795, 0.024259472265839577, 0.026591161265969276, 0.030543453991413116, -0.009930343367159367, 0.003439652733504772, 0.0149327227845788, -0.010244542732834816, 0.008057551458477974, -0.06859461218118668, -0.031667955219745636, -0.0024598478339612484, 0.013659389689564705, -0.053612276911735535, 0.018885016441345215, 0.04746059328317642, 0.014626791700720787, -0.07639997452497482, 0.04445089399814606, 0.07183582335710526, 0.0185046698898077, 0.0709759071469307, -0.01284908689558506, -0.0753416195511818, -0.04117660969495773, 0.0401182547211647, 0.00435744458809495, 0.03677782416343689, 0.04636916518211365, -0.005746535025537014, -0.10510784387588501, 0.01991029642522335, 0.013717268593609333, -0.05811028555035591, 0.025466658174991608, 0.0027781808748841286, 0.022275058552622795, 0.04597228020429611, -0.04636916518211365, -0.04425245523452759, -0.013212895952165127, -0.05433989688754082, -0.004142466466873884, 0.024689430370926857, 0.03714163228869438, -0.00700333109125495, 0.022060079500079155, 0.029600856825709343, -0.03684397041797638, -0.04269799590110779, 0.05169400945305824, -0.004373981151729822, 0.013254238292574883, -0.0031047826632857323, -0.025582415983080864, 0.03945678472518921, 0.02237427979707718, 0.0053124441765248775, -0.025516269728541374, -0.034131936728954315, -0.0001793208357412368, 0.03704241290688515, 0.06300517916679382, -0.0560266487300396, 0.011782463639974594, 0.03578561544418335, -0.008532984182238579, 0.031800251454114914, 0.03939063847064972, 0.040713582187891006, 0.047890547662973404, -0.031320683658123016, -0.049312710762023926, 0.009971685707569122, 0.0157843679189682, -0.03429730609059334, 0.024656355381011963, -0.009128308854997158, 0.01379995234310627, -0.03839842975139618, -0.010228005237877369, 0.004927963949739933, 0.040482066571712494, -0.019116530194878578, 0.058771755546331406, -0.011203676462173462, -0.0006687064887955785, 0.039489857852458954, -0.04425245523452759, 0.052553921937942505, -0.02358146384358406, 0.10299113392829895, 0.012129736132919788, 0.03790232539176941, -0.004919695667922497, -0.013824758119881153, -0.00041884591337293386, -0.008888525888323784, 0.08499910682439804, -0.025168996304273605, 0.01848813332617283, 0.08096413314342499, -0.03267670050263405, -0.017479388043284416, -0.023316875100135803, -0.00011272148549323902, 0.022605793550610542, 0.024259472265839577, -0.029071679338812828, -0.009508655406534672, -0.03763773664832115, 0.01934804581105709, -0.004543483257293701, 0.014403545297682285, -0.02293653041124344, 0.047692105174064636, -0.0037745225708931684, 0.010674498975276947, 0.03720778226852417, 0.019529949873685837, 0.009731901809573174, -0.008264261297881603, -0.04120968282222748, -0.07540776580572128, 0.00027905835304409266, 0.053116172552108765, 0.015230384655296803, 0.01549497339874506, -0.002166319638490677, 0.03318934142589569, 0.06168223172426224, -0.05589435622096062, 0.012477009557187557, 0.029832372441887856, 0.009558265097439289, -0.03396657109260559, 0.01714865304529667, 0.004808072000741959, -0.040052108466625214, -0.002540464513003826, 0.025747783482074738, 0.04772518202662468, 0.03416500985622406, 0.021431682631373405, -0.01956302486360073, 0.00794592872262001, -0.0038241329602897167, 0.014726012945175171, -0.016528522595763206, 0.016578134149312973, -0.019083457067608833, -0.006474154070019722, -0.02019142173230648, -0.00822705402970314, 0.027136875316500664, 0.06310439854860306, -0.013345190323889256, -0.03962215408682823, 0.031370293349027634, -0.08268395811319351, -0.049941111356019974, 0.03648016229271889, -0.017330557107925415, -0.010335494764149189, -0.01997644454240799, 0.02606198377907276, 0.00672220578417182, 0.008483374491333961, -0.03270977362990379, 0.046203795820474625, -0.0228703822940588, -0.01621432416141033, -0.023035749793052673, -0.019893759861588478, -0.0012712657917290926, 0.010674498975276947, 0.013394800946116447, -0.00984765961766243, 0.003950226120650768, 0.022076616063714027, 0.008483374491333961, -0.01387436781078577, 0.06551876664161682, -0.05867253616452217, 0.06651097536087036, 0.008491642773151398, 0.031452976167201996, 0.020026054233312607, 0.018951162695884705, -0.013295580632984638, -0.06072309985756874, -0.037373147904872894, 0.012758134864270687, -0.00269136275164783, 0.006527898367494345, -0.023383023217320442, 0.06330283731222153, 0.06952067464590073, 0.017843198031187057, -0.08817417174577713, -0.05146249383687973, 0.017198262736201286, -0.011807269416749477, -0.02569817379117012, 0.04607149958610535, 0.015900125727057457, -0.035752542316913605, -0.04206959903240204, -0.020290642976760864, -0.024127177894115448, -0.035620249807834625, 0.0015958003932610154, 0.021282849833369255, -0.042400334030389786, 0.052917733788490295, -0.0684623196721077, 0.04703063517808914, -0.01976146548986435, 0.005659716669470072, 0.02252311073243618, 0.04858509451150894, -0.05318232253193855, 0.04187115654349327, -0.010492593981325626, 0.018438521772623062, -0.03426423296332359, -0.041275832802057266, 0.02578085847198963, 0.045641545206308365, -0.0010252810316160321, 0.014246446080505848, 0.003714576829224825, -0.006647790316492319, -0.01210493128746748, 0.03112224116921425, 0.02660769782960415, -0.008615667931735516, -0.00974017009139061, -0.05232241004705429, -0.003751784563064575, -0.030824579298496246, 0.05562976747751236, 0.032147523015737534, 0.04468240961432457, -0.018438521772623062, 0.030692284926772118, 0.03654630854725838, 0.00869008433073759, 0.02973315119743347, 0.03198215365409851, -0.01662774384021759, -0.09743477404117584, -0.06637868285179138, -0.049676522612571716, 0.03472726047039032, -0.008772768080234528, -0.01647891290485859, 0.05371150001883507, -0.01398185733705759, 0.02280423603951931, 0.029055142775177956, 0.005593569949269295, -0.0012526619248092175, 0.03227981552481651, -0.048452798277139664, 0.06214526295661926, 0.008524715900421143, -0.03932448849081993, -0.07990577816963196, 0.061384569853544235, 0.07309261709451675, 0.011600559577345848, -0.007061209995299578, -0.0684623196721077, -0.059201713651418686, -0.09029088169336319, 0.01779358834028244, 0.016338350251317024, -0.00018125874339602888, -0.02477211318910122, -0.025218607857823372, -0.0501064769923687, -0.03710855916142464, -0.01649544946849346, -0.019778002053499222, -0.012427398934960365, 0.00008307153620989993, -0.09862542152404785, -0.02746761031448841, 0.0005007547442801297, 0.02822830341756344, -0.019182678312063217, 0.0000056845219660317525, 0.03740622103214264, 0.1076214388012886, -0.07501088827848434, 0.06819772720336914, -0.003013830166310072, 0.015544584020972252, 0.025896616280078888, -0.030890727415680885, -0.06022699549794197, -0.0441863052546978, -0.014312593266367912, -0.010343763045966625, 0.008541252464056015, 0.016594670712947845, -0.043458689004182816, 0.05281851068139076, 0.02528475411236286, -0.034628041088581085, 0.06651097536087036, 0.06912378966808319, 0.02887323871254921, 0.00448560481891036, 0.03710855916142464, 0.04193730279803276, -0.003555410075932741, 0.0031068497337400913, 0.050304919481277466, -0.0045186784118413925, 0.018339302390813828, -0.0306426752358675, -0.04312795400619507, 0.001956509193405509, 0.04120968282222748, -0.016164714470505714, -0.02210969105362892, 0.055034443736076355, -0.04445089399814606, -0.035620249807834625, -0.04878353327512741, -0.008322140201926231, 0.03489262983202934, 0.04200344905257225, 0.05996240675449371, 0.04550924897193909, -0.008640473708510399, -0.012187615036964417, -0.09115079790353775, 0.04504622146487236, 0.013427875004708767, -0.005548093467950821, 0.007875647395849228, 0.02844328060746193, -0.020274106413125992, 0.061384569853544235, 0.003489262890070677, -0.024259472265839577, 0.01122848130762577, -0.018967699259519577, 0.0012350915931165218, -0.021514365449547768, 0.03538873419165611, -0.02660769782960415, -0.00005607005732599646, 0.008156772702932358, -0.02111748233437538, 0.06207911670207977, 0.0485520213842392, -0.013394800946116447, -0.026640770956873894, 0.024061031639575958, 0.0280133243650198, -0.0535130575299263, 0.01956302486360073, -0.06280673295259476, 0.007565582171082497, 0.008590863086283207, -0.023134971037507057, -0.031188389286398888, 0.0019864821806550026, 0.04567461833357811, 0.004617899190634489, 0.02244042605161667, 0.037736959755420685, -0.05880482867360115, 0.014039736241102219, -0.0014407680137082934, -0.02090250514447689, -0.057151149958372116, -0.02809600904583931, -0.011881684884428978, -0.018868479877710342, -0.023895664140582085, 0.0014800428180024028, -0.025532806292176247, -0.056291237473487854, -0.0014872776810079813, 0.04550924897193909, 0.03777003288269043, -0.017247874289751053, -0.06674248725175858, -0.0622444823384285, -0.01621432416141033, 0.02005912736058235, 0.06310439854860306, -0.012981381267309189, 0.05407530814409256, 0.01411415170878172, -0.02328380197286606, 0.020505622029304504, 0.07309261709451675, 0.007387811783701181, -0.0073630064725875854, -0.028757480904459953, 0.04031669721007347, 0.03750544413924217, -0.023068824782967567, -0.008371750824153423, -0.08116257190704346, 0.010426446795463562, -0.005738266743719578, -0.024871334433555603, 0.0007276188116520643, -0.0902247354388237, -0.010856403969228268, 0.01341960672289133, 0.05331461504101753, -0.06651097536087036, 0.013733805157244205, -0.006164088845252991, 0.022060079500079155, -0.007842573337256908, -0.01800856553018093, -0.011418654583394527, -0.011129260994493961, 0.03309011831879616, -0.03361929580569267, -0.013882636092603207, -0.03433037921786308, 0.01087294053286314, 0.03219713270664215, -0.06462578475475311, -0.051793232560157776, -0.0060400632210075855, 0.008210516534745693, -0.03368544578552246, 0.0535130575299263, -0.0039564273320138454, 0.06932222843170166, 0.01738016866147518, 0.006817292422056198, 0.04597228020429611, 0.010542204603552818, -0.060260068625211716, -0.01146826520562172, -0.04405401274561882, 0.028625186532735825, -0.034628041088581085, -0.027914103120565414, -0.037935398519039154, 0.03318934142589569, 0.00336110289208591, -0.025235144421458244, -0.03439652547240257, -0.0441863052546978, -0.048452798277139664, -0.006337725557386875, -0.03433037921786308, 0.020026054233312607, 0.043458689004182816, 0.044649336487054825, -0.015941467136144638, -0.0637989416718483, -0.03242864832282066, 0.010335494764149189, -0.022208910435438156, -0.029336268082261086, -0.033933497965335846, 0.06154993921518326, 0.003216405864804983, -0.06323669105768204, -0.06879305094480515, 0.023316875100135803, -0.010426446795463562, 0.028426744043827057, -0.04372327774763107, 0.03558717668056488, -0.011071382090449333, 0.018041638657450676, -0.005266968160867691, -0.0051429420709609985, -0.024672893807291985, -0.023449169471859932, -0.02189471200108528, -0.1250181496143341, -0.046633750200271606, -0.023465707898139954, -0.01179073192179203, -0.009541728533804417, -0.005973916035145521, -0.003726979484781623, 0.03790232539176941, -0.005895365960896015, 0.02548319660127163, 0.10570316761732101, -0.05331461504101753, 0.030460769310593605, -0.01591666229069233, -0.01556938886642456, 0.03819998726248741, -0.0016237061936408281, -0.054670631885528564, -0.0650557354092598, -0.0022717416286468506, -0.04742751643061638, -0.011865148320794106, -0.018967699259519577, 0.015751294791698456, 0.02837713435292244, -0.019678782671689987, 0.009988222271203995, 0.03171756491065025, -0.015437094494700432, -0.029485099017620087, 0.037935398519039154, 0.002213862957432866, 0.06756933033466339, 0.014271250925958157, -0.0009498319705016911, 0.016503717750310898, -0.030163107439875603, 0.015122896060347557, 0.003218472935259342, 0.003241211175918579, -0.006854500155895948, -0.08202248811721802, -0.004832877311855555, 0.08592516928911209, 0.014866575598716736, 0.0038613409269601107, 0.043657127767801285, 0.041474271565675735, -0.011377312242984772, -0.013667657971382141, -0.011426922865211964, -0.007929391227662563, -0.03426423296332359, 0.030824579298496246, -0.007722681853920221, -0.07540776580572128, 0.061880674213171005, -0.0012071857927367091, -0.019596097990870476, -0.011534412391483784, -0.003237077035009861, 0.03141990303993225, -0.01031068991869688, -0.009219260886311531, 0.04001903533935547, 0.050304919481277466, 0.016553327441215515, -0.04259877651929855, 0.061946820467710495, -0.005411664955317974, 0.000749323342461139, -0.0078921839594841, 0.05033799260854721, 0.04908119887113571, -0.0219443216919899, -0.030741894617676735, -0.008408958092331886, -0.06214526295661926, -0.01900077424943447, 0.018157396465539932, -0.018339302390813828, 0.01587531901896, 0.018438521772623062, 0.018521206453442574, -0.022291595116257668, 0.028079472482204437, 0.027649516239762306, 0.014436619356274605, 0.02654154971241951, 0.015304800122976303, -0.020588304847478867, 0.024606745690107346, -0.021563977003097534, -0.013717268593609333, -0.004245821386575699, 0.058904051780700684, 0.0021332460455596447, -0.0009022887097671628, 0.022903455421328545, 0.07335720956325531, -0.038497649133205414, -0.009905538521707058, -0.0600285530090332, -0.02513592317700386, -0.031519126147031784, -0.02081982046365738, -0.05387686565518379, -0.001084193354472518, -0.001711557968519628, 0.06429504603147507, -0.04524466022849083, -0.0018045774195343256, 0.006093807518482208, 0.034561894834041595, -0.02561548911035061, 0.006408006884157658, -0.024904407560825348, 0.0429295115172863, 0.05123097822070122, -0.02900553308427334, 0.009492117911577225, -0.0765322744846344, -0.012311641126871109, 0.007974867708981037, 0.019033847376704216, -0.0011100320843979716, -0.027798347175121307, -0.07355564832687378, -0.08241936564445496, -0.04226803779602051, -0.037307001650333405, 0.02252311073243618, 0.007152162492275238, 0.009674022905528545, 0.019678782671689987, 0.008805841207504272, 0.036678604781627655, -0.029881982132792473, -0.0001970203738892451, 0.06541954725980759, -0.025532806292176247, -0.0021332460455596447, -0.03426423296332359, 0.039919815957546234, 0.03657938167452812, 0.020935578271746635, 0.035190291702747345, -0.048320505768060684, 0.013899173587560654, -0.00022105038806330413, 0.0771275982260704, -0.024325620383024216, 0.02055523172020912, 0.004932098090648651, -0.07130664587020874, 0.06472500413656235, -0.003319760784506798, -0.0005746535025537014, -0.016098566353321075, -0.021348997950553894, 0.004051513969898224, 0.056853488087654114, -0.04438474774360657, -0.03466111421585083, -0.006879305467009544, -0.021977396681904793, -0.0037951937410980463, -0.03889453411102295, 0.01848813332617283, -0.03810076788067818, 0.004522812552750111, 0.03304050862789154, -0.04947808012366295, -0.037307001650333405, -0.027765272185206413, -0.014329129830002785, -0.03112224116921425, -0.05414145439863205, 0.03290821611881256, -0.01969531923532486, -0.009169651195406914, -0.0018469529459252954, -0.011732853949069977, -0.036182500422000885, 0.04101124405860901, 0.00925233494490385, 0.00882237870246172, -0.0030799773521721363, -0.021233240142464638, -0.0234987810254097, -0.03368544578552246, 0.05645660683512688, 0.03810076788067818, -0.020158348605036736, 0.08579287678003311, 0.04375635087490082, -0.008313871920108795, -0.024590209126472473, 0.10973814874887466, -0.005585301201790571, -0.007772292010486126, 0.05599357560276985, 0.04144119843840599, 0.04927963763475418, -0.013229433447122574, -0.026806138455867767, -0.00868181511759758, 0.033933497965335846, -0.01383302640169859, 0.02612813003361225, -0.027434537187218666, 0.018388912081718445, 0.00925233494490385, 0.008359348401427269, 0.0018366173608228564, 0.0364140160381794, -0.035818688571453094, -0.005072660744190216, -0.01723133586347103, 0.008723157458007336, 0.0022965469397604465, -0.018157396465539932, -0.0370093397796154, -0.009988222271203995, 0.0038117305375635624, 0.04200344905257225, 0.013403069227933884, -0.0653534010052681, -0.07706145197153091, 0.033635832369327545, 0.03552102670073509, 0.0485520213842392, -0.049676522612571716, 0.05020570009946823, -0.02187817543745041, 0.036248646676540375, 0.031882934272289276, -0.023052288219332695, -0.04355790838599205, 0.035686396062374115, 0.060888465493917465, -0.01652025431394577, -0.04058128595352173, -0.03171756491065025, -0.018025102093815804, -0.05090024322271347, -0.018173933029174805, 0.04187115654349327, 0.04785747453570366, 0.009417702443897724, 0.03939063847064972, -0.006118612829595804, -0.020174885168671608, -0.04524466022849083, -0.008524715900421143, -0.005432336125522852, -0.023035749793052673, 0.02506977505981922, -0.03183332458138466, 0.012278567999601364, -0.02738492749631405, 0.05837487429380417, 0.021696269512176514, -0.056787341833114624, 0.005692790262401104, 0.02632657252252102, 0.07673071324825287, -0.03426423296332359, -0.04392171651124954, 0.012741598300635815, 0.02032371610403061, -0.016917137429118156, -0.02245696261525154, 0.025086313486099243, 0.008954672142863274, 0.033288560807704926, -0.005775474477559328, 0.047692105174064636, 0.0148583073168993, 0.032147523015737534, -0.025102850049734116, 0.02852596528828144 ]
23,417
conexions.proxy
get_proxy
null
def get_proxy(self) -> ProxyDTO: # se se alcanzou o máximo sacar novo proxy if (self.get_max_cons() != 0) and (self.get_cant_cons() >= self.get_max_cons()): self.set_proxy() return self.__proxy
(self) -> conexions.dto_proxy.ProxyDTO
[ 0.020903993397951126, 0.014472651295363903, 0.019592169672250748, 0.013058607466518879, -0.038809534162282944, 0.012700837105512619, -0.001950698671862483, -0.014787829481065273, 0.02758236788213253, -0.008522594347596169, 0.029950466006994247, 0.02555500529706478, -0.029490474611520767, -0.030563784763216972, 0.009157209657132626, 0.032659295946359634, -0.012556025758385658, -0.030751189216971397, 0.020307710394263268, 0.02223285473883152, 0.025844627991318703, -0.003334928071126342, 0.042557600885629654, -0.025248344987630844, -0.023306164890527725, 0.041671693325042725, -0.027480147778987885, 0.06501193344593048, 0.032028939574956894, 0.0012500656303018332, -0.062388285994529724, 0.0006000102148391306, -0.021704716607928276, 0.009659791365265846, 0.054381050169467926, 0.04504495486617088, -0.02063140645623207, 0.022454330697655678, -0.10031191259622574, 0.010349776595830917, -0.04620344936847687, -0.050803348422050476, 0.000004658464149542851, 0.02724163420498371, -0.0053878468461334705, -0.04569234699010849, -0.04000210016965866, 0.0565958172082901, 0.0026917937211692333, -0.03533405438065529, 0.026883864775300026, 0.020495112985372543, 0.013995624147355556, -0.0023936519864946604, 0.018842557445168495, -0.06020759046077728, 0.016985559836030006, 0.09104396402835846, 0.005992648657411337, 0.0326252207159996, -0.059900932013988495, -0.02632165513932705, 0.015469295904040337, -0.061468303203582764, 0.04368202015757561, -0.011772338300943375, -0.007219288963824511, -0.003285947721451521, 0.0437842421233654, 0.04610122740268707, 0.05431290343403816, 0.014395985752344131, -0.019847720861434937, 0.0045019397512078285, 0.040615420788526535, -0.052234429866075516, 0.06606820225715637, -0.05209813639521599, 0.0318756103515625, -0.06105942279100418, -0.008901660330593586, -0.0009684282122179866, -0.019472913816571236, 0.033715568482875824, -0.0022339331917464733, -0.011218646541237831, 0.020120305940508842, -0.009276466444134712, -0.006167274434119463, -0.024447621777653694, -0.037208087742328644, 0.034805916249752045, -0.04841821640729904, -0.020580297335982323, -0.0589468777179718, -0.013416376896202564, -0.01848478615283966, 0.031568948179483414, 0.011005688458681107, 0.03385186195373535, -0.03850287199020386, 0.13029645383358002, -0.07073625177145004, 0.04392053559422493, 0.05785652995109558, 0.007560022175312042, 0.044159047305583954, -0.0066911522299051285, -0.0350273922085762, -0.04627159610390663, -0.01759888045489788, 0.053801801055669785, 0.00751743046566844, 0.0307000782340765, 0.037242159247398376, 0.05921946465969086, -0.028434202075004578, -0.021585460752248764, -0.03150080144405365, 0.02260765992105007, 0.009838677011430264, 0.027769772335886955, -0.02918381430208683, -0.06913480907678604, -0.028485311195254326, 0.07727833092212677, 0.03942285478115082, -0.00015652440197300166, 0.06634078919887543, 0.0019549578428268433, 0.04841821640729904, -0.03499332070350647, -0.008884623646736145, 0.028025321662425995, 0.03870731219649315, -0.00464249262586236, 0.01387636736035347, 0.019302546977996826, -0.04688491299748421, -0.01828034594655037, -0.041160594671964645, 0.04392053559422493, 0.03475480526685715, 0.017632953822612762, -0.0007906079408712685, 0.0009072026587091386, -0.013646372593939304, 0.06913480907678604, 0.011337903328239918, -0.05175740271806717, -0.003232707967981696, -0.013450450263917446, -0.018433677032589912, -0.008701479062438011, -0.07012293487787247, 0.018416639417409897, -0.07939088344573975, -0.020784737542271614, 0.020052161067724228, -0.009489424526691437, -0.0470893532037735, -0.015784474089741707, -0.017232591286301613, -0.06559117883443832, 0.011465678922832012, -0.02231803722679615, 0.034005191177129745, -0.04616937413811684, 0.051144082099199295, 0.13404451310634613, 0.00018993225239682943, -0.009165728464722633, 0.020358819514513016, 0.0026790162082761526, -0.007662242278456688, 0.0565958172082901, 0.02817865088582039, -0.0030942850280553102, -0.02598092146217823, 0.03339187428355217, 0.007053181063383818, -0.007747425697743893, 0.012734910473227501, -0.05857206881046295, 0.03368149697780609, -0.03969544172286987, 0.07141771912574768, 0.008650369010865688, 0.008773884736001492, 0.04627159610390663, -0.035606641322374344, 0.02492464706301689, 0.05342699587345123, -0.07353026419878006, -0.03313632309436798, -0.01161900907754898, 0.058810584247112274, 0.00862907338887453, 0.019336620345711708, 0.057379502803087234, -0.06841926276683807, 0.04582864046096802, 0.0006516526336781681, -0.02657720446586609, -0.03942285478115082, 0.01602298766374588, -0.04075171425938606, 0.007142623886466026, -0.0030836372170597315, -0.0095575712621212, 0.022897284477949142, -0.004966189153492451, -0.04569234699010849, -0.01877441070973873, 0.00610764604061842, 0.0027982729952782393, -0.01679815538227558, -0.005592286586761475, 0.06347863376140594, 0.03795769810676575, 0.040274687111377716, -0.05070113018155098, -0.04940634220838547, -0.03049563802778721, 0.03591329976916313, -0.011772338300943375, -0.033579275012016296, -0.03679920732975006, 0.010349776595830917, -0.08341153711080551, 0.0447382926940918, -0.0250950139015913, -0.030035648494958878, 0.0326252207159996, 0.09315650910139084, -0.02506094053387642, -0.003334928071126342, -0.0036288106348365545, -0.014515242539346218, 0.02867271564900875, -0.024226143956184387, 0.01419154554605484, 0.061706818640232086, 0.04296648129820824, -0.022215817123651505, 0.03402223065495491, -0.025844627991318703, 0.023851336911320686, 0.039525073021650314, 0.035470347851514816, -0.010596808977425098, -0.0019134309841319919, -0.06852148473262787, -0.006955220364034176, -0.00629504956305027, -0.03557256609201431, -0.0012681670486927032, -0.04695305973291397, 0.001282009412534535, -0.006435601972043514, -0.0589468777179718, -0.005000262521207333, -0.030393417924642563, -0.014472651295363903, -0.039559148252010345, -0.0033966859336942434, -0.025282418355345726, -0.016840748488903046, -0.0038098252844065428, 0.02703719399869442, 0.04494273290038109, 0.004578604828566313, -0.032199304550886154, -0.020580297335982323, -0.011951223947107792, -0.03768511489033699, 0.02337431162595749, -0.029064558446407318, -0.03584515303373337, -0.03052971139550209, -0.06456898152828217, 0.021125471219420433, -0.008748330175876617, -0.06180903688073158, -0.12511730194091797, -0.01406377088278532, 0.0636489987373352, 0.007747425697743893, -0.031568948179483414, -0.01587817631661892, -0.02328912727534771, 0.03216523304581642, -0.010290148667991161, -0.04211464896798134, 0.022590624168515205, -0.06593190878629684, 0.005421920213848352, -0.0171133354306221, -0.0038055661134421825, 0.018263310194015503, -0.062388285994529724, -0.019762536510825157, -0.051144082099199295, 0.001072245417162776, -0.0218921210616827, 0.010068671777844429, 0.034175559878349304, -0.04460200294852257, 0.04691898822784424, 0.023868374526500702, -0.01522226445376873, 0.006418565288186073, 0.022760991007089615, 0.03397111967206001, 0.006635782774537802, 0.0026598500553518534, -0.01839960366487503, 0.026934973895549774, 0.05680025741457939, 0.10147040337324142, -0.045419760048389435, 0.07257620990276337, -0.02391948364675045, -0.016832228749990463, 0.008177601732313633, 0.03204597532749176, 0.003130488097667694, 0.04088800773024559, 0.021653607487678528, 0.0012500656303018332, -0.058980949223041534, -0.02231803722679615, -0.011440123431384563, 0.007832609117031097, 0.0549943707883358, -0.002287172945216298, 0.08034493029117584, 0.015954840928316116, 0.004736194387078285, -0.007372618652880192, 0.01810997910797596, -0.018161090090870857, -0.011721228249371052, -0.0050172992050647736, 0.04344350844621658, -0.003439277643337846, 0.03717401251196861, 0.0255209319293499, 0.012564543634653091, -0.01696852222084999, -0.050258174538612366, -0.008501297794282436, 0.056663963943719864, 0.007538726087659597, -0.0021200005430728197, -0.05111001059412956, -0.010954578407108784, 0.03339187428355217, -0.008573704399168491, 0.03397111967206001, -0.01633816584944725, -0.015120044350624084, -0.015494851395487785, 0.04528346657752991, -0.05513066425919533, 0.0014566353056579828, -0.005085445940494537, -0.03717401251196861, 0.008731293492019176, -0.006891333032399416, -0.03330668807029724, 0.02758236788213253, -0.008824994787573814, -0.03087044507265091, 0.008833513595163822, 0.025537967681884766, -0.011031243950128555, 0.0039056565146893263, 0.0032752996776252985, 0.0437842421233654, 0.034345924854278564, -0.02892826497554779, -0.008901660330593586, 0.04984929412603378, 0.030035648494958878, -0.01645742356777191, 0.028570495545864105, -0.03330668807029724, 0.016065578907728195, -0.015009306371212006, -0.017215555533766747, -0.04817970097064972, -0.05911724269390106, 0.01608261652290821, -0.0167385283857584, -0.04535161331295967, 0.001970929792150855, 0.03044452890753746, -0.024856500327587128, 0.009702383540570736, 0.014685609377920628, 0.055437322705984116, 0.08647813647985458, 0.0029558620881289244, -0.04872487485408783, -0.049338195472955704, 0.05642544850707054, -0.007645205594599247, 0.023783190175890923, 0.01831441931426525, -0.06514822691679001, -0.01988179422914982, 0.02391948364675045, 0.050053734332323074, 0.0043102772906422615, 0.0342266708612442, -0.0009593774448148906, 0.014029697515070438, -0.012973424047231674, 0.013808220624923706, 0.024788353592157364, -0.014830420725047588, -0.04013839364051819, -0.018757373094558716, -0.023868374526500702, 0.017377402633428574, -0.001126549788750708, 0.0013959420612081885, -0.020529186353087425, 0.027514221146702766, 0.05519881099462509, -0.03591329976916313, 0.03466962277889252, -0.06426231563091278, 0.06317196786403656, 0.024907611310482025, -0.005221739411354065, 0.00924239307641983, -0.012751947157084942, 0.03591329976916313, 0.03127932548522949, -0.03250596672296524, 0.0029388254042714834, 0.037753261625766754, -0.005272849462926388, -0.031943757086992264, 0.0011159018613398075, -0.04787304252386093, 0.013058607466518879, -0.037412527948617935, 0.019149215891957283, -0.007985939271748066, 0.045419760048389435, -0.02867271564900875, 0.03006972186267376, -0.01124420203268528, -0.0630016028881073, -0.050973717123270035, 0.0014789958950132132, 0.02715645171701908, 0.059900932013988495, -0.012709355913102627, 0.0462375208735466, 0.005766912829130888, -0.0628993809223175, 0.03150080144405365, -0.0191662535071373, 0.026594242081046104, -0.015750400722026825, -0.007006330415606499, 0.006891333032399416, -0.043818313628435135, -0.04674862325191498, -0.08218489587306976, 0.015827065333724022, -0.007530207745730877, 0.02105732448399067, 0.06208162382245064, 0.07141771912574768, -0.020938066765666008, -0.04320499300956726, -0.003748067421838641, 0.053324777632951736, -0.04262574762105942, -0.03405630216002464, 0.0017238979926332831, -0.053290702402591705, 0.024243181571364403, -0.03642439842224121, 0.0557439848780632, 0.020307710394263268, 0.08450188487768173, -0.04160354658961296, -0.006226902827620506, 0.000799126282799989, 0.03679920732975006, 0.04248945415019989, -0.03376667946577072, 0.04637381434440613, -0.020018087700009346, -0.0012617782922461629, -0.026304617524147034, -0.010494588874280453, 0.005732839461416006, -0.0018250532448291779, -0.048827096819877625, -0.0772101879119873, 0.004421015735715628, -0.021636569872498512, 0.01882551982998848, 0.019404767081141472, 0.0015609848778694868, -0.06456898152828217, 0.06644301116466522, -0.009182765148580074, -0.014225618913769722, -0.012428250163793564, 0.005703025031834841, -0.02354467660188675, -0.06661337614059448, 0.02821272425353527, 0.0660000592470169, -0.03581107780337334, -0.024941684678196907, -0.0199158675968647, 0.04589678719639778, -0.0065293037332594395, -0.017011115327477455, 0.027684587985277176, 0.025572041049599648, 0.03904804587364197, -0.04725972190499306, -0.01368896383792162, 0.050258174538612366, 0.031483765691518784, -0.019046995788812637, -0.06593190878629684, -0.05860614404082298, -0.0661022812128067, -0.00041580121614970267, 0.025316491723060608, -0.031654130667448044, -0.033579275012016296, -0.06249050423502922, -0.043477579951286316, -0.044193122535943985, 0.02855345793068409, 0.05056483671069145, -0.021295836195349693, -0.011653082445263863, 0.020563259720802307, -0.00030666004749946296, 0.023493567481637, -0.046680476516485214, 0.008407596498727798, 0.058265410363674164, -0.01642335020005703, 0.007632427848875523, 0.03656069189310074, 0.02480539120733738, 0.016372239217162132, -0.07809609174728394, 0.0020305579528212547, 0.04688491299748421, -0.08279821276664734, 0.022624697536230087, 0.008884623646736145, 0.039354708045721054, 0.0175136961042881, -0.017581842839717865, 0.011789374984800816, -0.01764998957514763, -0.03717401251196861, 0.06896443665027618, 0.014472651295363903, 0.01734332926571369, 0.03196079283952713, 0.0013842293992638588, 0.017317773774266243, 0.02715645171701908, 0.02148324064910412, 0.03666291385889053, -0.02523130737245083, -0.05407438799738884, 0.019472913816571236, -0.0017313516000285745, -0.038979899138212204, 0.008833513595163822, 0.052404794842004776, -0.10658140480518341, -0.022045450285077095, 0.0406835675239563, -0.0836159735918045, -0.021125471219420433, 0.01240269560366869, 0.06180903688073158, -0.03238670900464058, 0.0218921210616827, 0.02972898818552494, 0.03087044507265091, -0.012837130576372147, 0.05697062239050865, -0.01540966797620058, -0.012607135809957981, -0.004659529309719801, -0.0231187604367733, -0.0542447566986084, -0.02586166374385357, 0.01902996003627777, -0.04017246514558792, -0.004357128404080868, -0.0059500569477677345, -0.0022509698756039143, -0.04892931506037712, -0.05911724269390106, -0.0462375208735466, -0.05840170383453369, -0.018416639417409897, -0.03840065374970436, 0.012130108661949635, 0.01741999387741089, -0.006056535989046097, -0.020409930497407913, -0.001473671873100102, -0.03679920732975006, -0.026594242081046104, 0.06668152660131454, -0.018433677032589912, 0.021159544587135315, 0.07284879684448242, 0.008428892120718956, 0.009685346856713295, 0.0358792245388031, 0.02420910820364952, -0.03713994100689888, 0.02403874136507511, 0.012411213479936123, 0.026628315448760986, 0.007325768005102873, -0.03334076330065727, -0.024328364059329033, 0.0606505423784256, 0.015954840928316116, 0.032829660922288895, -0.0710088387131691, -0.02109139785170555, 0.032574113458395004, 0.022471366450190544, -0.008096677251160145, -0.05070113018155098, -0.03717401251196861, 0.016125207766890526, 0.027854954823851585, 0.02926899865269661, 0.014668572694063187, -0.07530207931995392, 0.006307826843112707, 0.05714099109172821, 0.05090557038784027, -0.009438315406441689, -0.016270019114017487, -0.02046103961765766, 0.006669856142252684, -0.0838204175233841, 0.03557256609201431, 0.019762536510825157, -0.038639165461063385, -0.0069296653382480145, -0.023391347378492355, -0.021534349769353867, 0.049167826771736145, -0.004369905684143305, -0.045590128749608994, -0.009293503127992153, 0.05386994779109955, -0.027446074411273003, 0.014762273989617825, -0.051689255982637405, 0.01885959319770336, 0.012470842339098454, 0.01902996003627777, 0.02998453937470913, -0.002476705936715007, 0.04344350844621658, -0.004171854350715876, 0.039899881929159164, 0.006661337800323963, 0.002199860056862235, 0.01696852222084999, 0.037071794271469116, -0.019132180139422417, -0.008692960254848003, 0.010136818513274193, 0.04265981912612915, 0.006686892826110125, -0.026969047263264656, -0.05128037557005882, -0.047021206468343735, -0.017581842839717865, 0.03139858320355415, 0.003707605181261897, -0.013586743734776974, 0.000614384887740016, 0.03969544172286987, 0.0054176608100533485, -0.022982466965913773, 0.01564818061888218, -0.038468800485134125, 0.045590128749608994, -0.01836553029716015, 0.06967997550964355, 0.07489319890737534, 0.06896443665027618, -0.0250950139015913, -0.028860118240118027, 0.01776924729347229, -0.01894477754831314, 0.0766650140285492, -0.024617986753582954, 0.025827590376138687, -0.014949677512049675, -0.015333002433180809, 0.009191283024847507, 0.02257358655333519, 0.028826044872403145, 0.07243991643190384, -0.01814405247569084, -0.07046366482973099, -0.07870941609144211, 0.00039690115954726934, 0.0021157413721084595, 0.014787829481065273, 0.007215029560029507, -0.0010525467805564404, -0.010971615090966225, -0.03679920732975006, 0.008020012639462948, 0.04967892915010452, -0.05945797637104988, 0.016244463622570038, -0.0015897342236712575, -0.026338690891861916, 0.050939641892910004, 0.04528346657752991, -0.027071267366409302, -0.009233875200152397, 0.004902301821857691, 0.028826044872403145, -0.0014949677279219031, -0.022420257329940796, 0.041330959647893906, 0.0008928279858082533, 0.03242078050971031, -0.02420910820364952, 0.002051853807643056, -0.024600951001048088, -0.09363353997468948, 0.011976778507232666, -0.008049826137721539, 0.009370168671011925, -0.027565332129597664, 0.052949968725442886, -0.03604959324002266, 0.01517967227846384, -0.019677354022860527, -0.004582864232361317, 0.02194323018193245, 0.0255209319293499 ]
23,418
conexions.proxy
get_proxys
null
def get_proxys(self) -> List[ProxyDTO]: return self.__lst_proxys
(self) -> List[conexions.dto_proxy.ProxyDTO]
[ 0.0026764804497361183, -0.02099842019379139, -0.018414529040455818, -0.031161725521087646, -0.03312548249959946, 0.050988782197237015, -0.024891482666134834, -0.03582995384931564, 0.07296907901763916, 0.0599118210375309, 0.003249242901802063, -0.04089438170194626, -0.007958384230732918, -0.014030528254806995, 0.019138019531965256, -0.029266871511936188, -0.03669125214219093, -0.02900848351418972, 0.02051609382033348, 0.0034904060885310173, 0.0011261458275839686, -0.0008295367006212473, 0.026304010301828384, -0.02223868854343891, -0.01120547391474247, -0.018138915300369263, -0.0025451325345784426, 0.010447532869875431, 0.02351340837776661, 0.010826502926647663, -0.06983396410942078, -0.02666575461626053, -0.02516709826886654, -0.0170967448502779, 0.039033979177474976, 0.03813822939991951, 0.02444360964000225, 0.012402676977217197, -0.035967763513326645, 0.03307380527257919, 0.014133883640170097, -0.06349481642246246, -0.024167994037270546, 0.030524365603923798, 0.015081310644745827, -0.00443998584523797, -0.057603541761636734, 0.052401307970285416, 0.004500276874750853, -0.0500241294503212, 0.008341661654412746, 0.0059989336878061295, -0.02247985079884529, 0.0067568751983344555, 0.06383933126926422, -0.05346931889653206, 0.009431201964616776, 0.09756772220134735, 0.030300429090857506, 0.04947289824485779, -0.03514091670513153, -0.050196390599012375, 0.00750620337203145, -0.09391582757234573, 0.08399368077516556, -0.04247916862368584, -0.019689248874783516, -0.02123958431184292, -0.006476953625679016, 0.006774100940674543, 0.012574936263263226, -0.009155587293207645, -0.015296634286642075, -0.012669678777456284, 0.03992972895503044, -0.008091885596513748, 0.10556056350469589, -0.01886240392923355, 0.01702784188091755, -0.0750361979007721, -0.0611865371465683, 0.013815203681588173, -0.034865301102399826, 0.0447874441742897, 0.006873149890452623, 0.002598963677883148, 0.018104463815689087, 0.004306484945118427, -0.022359270602464676, 0.024960387498140335, -0.03669125214219093, 0.01775994338095188, -0.056880053132772446, -0.023306697607040405, -0.08668092638254166, -0.011549992486834526, -0.051540013402700424, -0.005482155364006758, -0.0053658802062273026, 0.07765454053878784, -0.030868884176015854, 0.036829058080911636, -0.09488047659397125, 0.0945359617471695, 0.051850080490112305, 0.007303798571228981, -0.004646697547286749, -0.010395854711532593, -0.010120240040123463, 0.011498315259814262, -0.04161787033081055, 0.08199547231197357, 0.06900711357593536, -0.01958589442074299, 0.0666988417506218, -0.0030726769473403692, -0.0014275998109951615, 0.0033569049555808306, -0.011989254504442215, 0.01155860535800457, -0.002428857609629631, 0.02768208645284176, 0.008376113139092922, 0.01128299068659544, -0.04520086571574211, 0.06769794225692749, 0.02955971285700798, 0.021015645936131477, -0.0007644011056981981, -0.02247985079884529, 0.024254122748970985, -0.003511938499286771, -0.01202370598912239, 0.026751885190606117, 0.054123904556035995, -0.007441605906933546, 0.009620687924325466, -0.032918769866228104, 0.011808381415903568, -0.040205344557762146, -0.038655009120702744, 0.016373256221413612, 0.028818998485803604, 0.014909051358699799, -0.049576256424188614, -0.0022113800514489412, 0.0060807568952441216, 0.0628746822476387, -0.02682078815996647, -0.03727693483233452, -0.021997526288032532, -0.005042893812060356, 0.013909946195781231, -0.016536902636289597, -0.09956593066453934, 0.016605805605649948, -0.08275341242551804, -0.005344348028302193, 0.016132092103362083, 0.0005932183121331036, -0.056880053132772446, -0.009758494794368744, -0.013711848296225071, -0.05818922445178032, 0.000867218419443816, -0.027699312195181847, 0.0034387281630188227, -0.07038518786430359, 0.013289812952280045, 0.06573418527841568, 0.011024601757526398, -0.0163904819637537, 0.031196177005767822, -0.010163304395973682, 0.008169402368366718, 0.01817336678504944, -0.00850530806928873, 0.009818785823881626, 0.005344348028302193, 0.04082547873258591, -0.02499483898282051, -0.040618766099214554, 0.004879247397184372, -0.014340595342218876, 0.024271350353956223, -0.004194516222923994, 0.028129959478974342, -0.0007401771144941449, -0.012187352403998375, 0.05374493449926376, 0.0010319415014237165, 0.015184666030108929, 0.025959491729736328, -0.054055001586675644, -0.04978296533226967, 0.018448982387781143, 0.001428676419891417, 0.03484807536005974, -0.05433061346411705, 0.037690356373786926, -0.07338250428438187, -0.016399094834923744, 0.012704131193459034, -0.04096328467130661, -0.0028078281320631504, 0.025580521672964096, -0.04213465005159378, -0.04392614588141441, 0.022772692143917084, -0.018104463815689087, 0.06687109917402267, 0.021480746567249298, -0.052401307970285416, -0.05539862439036369, 0.000998566159978509, 0.03548543527722359, -0.02695859596133232, -0.014848760329186916, 0.040136441588401794, -0.022514304146170616, 0.04172122851014137, -0.10053058713674545, -0.07999726384878159, -0.012437128461897373, 0.008307209238409996, 0.05140220373868942, -0.021256810054183006, -0.015916768461465836, 0.007820576429367065, -0.13174398243427277, 0.05677669867873192, -0.027148080989718437, -0.002038043923676014, -0.0002063075517071411, 0.06680219620466232, -0.045958809554576874, -0.0004360316088423133, 0.01793220266699791, 0.034865301102399826, 0.04919728636741638, -0.04103218764066696, 0.013367329724133015, 0.05281473323702812, -0.017234552651643753, -0.04495970159769058, 0.048404891043901443, -0.023375600576400757, -0.011653348803520203, 0.04936954379081726, 0.02547716535627842, 0.027957700192928314, 0.003132967744022608, -0.0036196005530655384, 0.005654414650052786, 0.013927172869443893, -0.04396059736609459, -0.02823331579566002, -0.01824226975440979, 0.01194618921726942, -0.03610556945204735, 0.0032190976198762655, 0.01049059722572565, -0.02735479362308979, 0.02651072107255459, 0.0009145897347480059, -0.00036739700590260327, -0.007790431380271912, 0.0029564020223915577, -0.05343486741185188, 0.05856819450855255, 0.11114176362752914, 0.0035313176922500134, -0.04726798087358475, -0.011377733200788498, -0.009775720536708832, 0.022979404777288437, 0.019396407529711723, -0.024874256923794746, -0.05557088181376457, -0.02146352082490921, -0.01917247101664543, -0.00011943766730837524, 0.015873704105615616, -0.04916283115744591, -0.05867155268788338, -0.029904231429100037, 0.03257425129413605, 0.05832703411579132, -0.055536430329084396, 0.00650709867477417, 0.033297743648290634, 0.0501619391143322, 0.004625164903700352, -0.06035969406366348, 0.027010273188352585, -0.02210088074207306, -0.04172122851014137, 0.0052840569987893105, -0.0032277104910463095, 0.02413354255259037, -0.0315062440931797, -0.0009092066320590675, -0.019930412992835045, 0.012566323392093182, 0.011920350603759289, 0.023857926949858665, 0.035657696425914764, -0.022927725687623024, 0.038241587579250336, 0.006631986703723669, 0.0038090860471129417, -0.017897751182317734, -0.047440238296985626, 0.009258942678570747, -0.01632157899439335, -0.04192793741822243, -0.06204783543944359, 0.011446637101471424, 0.034951433539390564, 0.061289895325899124, -0.08123753219842911, 0.09143529087305069, 0.022049203515052795, 0.006395130418241024, 0.056880053132772446, 0.03610556945204735, -0.001924998825415969, 0.0681113675236702, -0.00880245491862297, -0.03300490230321884, -0.017639363184571266, -0.04354717582464218, -0.028681190684437752, 0.04974851384758949, 0.07724111527204514, -0.006567389704287052, 0.0810997262597084, 0.04189348593354225, 0.005809448193758726, -0.006321920081973076, -0.011756704188883305, -0.020860614255070686, -0.023065533488988876, 0.002179081318899989, -0.007592333015054464, 0.028887901455163956, 0.023306697607040405, 0.0558120459318161, 0.00016539593343622983, -0.00554244639351964, -0.015029632486402988, -0.027716537937521935, 0.05777580291032791, 0.031971342861652374, 0.03686351329088211, -0.03882727026939392, -0.028508931398391724, 0.024581415578722954, -0.014357821084558964, 0.02768208645284176, -0.004082547966390848, 0.00790670607239008, 0.0024913016241043806, 0.0043258643709123135, 0.008845520205795765, -0.014099432155489922, 0.029129063710570335, -0.04850824549794197, 0.01862124167382717, -0.01583925262093544, -0.05040309950709343, 0.032522574067115784, -0.06452836841344833, -0.04637223109602928, 0.01671777479350567, -0.012609387747943401, 0.03875836357474327, -0.015537797473371029, -0.00185717165004462, 0.0835113599896431, 0.011911737732589245, -0.04220355302095413, 0.04661339521408081, 0.01108489278703928, 0.05495074763894081, -0.004265573341399431, 0.006791326683014631, 0.0008790612337179482, 0.007006651256233454, -0.012359611690044403, -0.013720461167395115, -0.04085993021726608, -0.09040173143148422, 0.034176263958215714, -0.023237792775034904, -0.06377042829990387, 0.038482751697301865, 0.009775720536708832, -0.03648453950881958, -0.03696686774492264, 0.02995591051876545, 0.03669125214219093, 0.04254807159304619, 0.0026269557420164347, -0.028870675712823868, -0.05984291434288025, 0.013367329724133015, -0.01309171412140131, 0.016881421208381653, 0.013195070438086987, -0.01817336678504944, 0.011687800288200378, 0.05756909027695656, 0.01894853450357914, 0.01934473030269146, 0.03720803186297417, -0.013996075838804245, 0.0613243468105793, 0.03965411335229874, 0.04778475686907768, 0.03460691496729851, -0.048473794013261795, -0.022703789174556732, 0.030403783544898033, -0.0044270665384829044, 0.01856956258416176, 0.013229521922767162, 0.003281541634351015, -0.01089540682733059, -0.015890929847955704, 0.07600084692239761, 0.0008828294230625033, -0.006511405110359192, -0.05925723537802696, 0.05839593708515167, -0.00924171693623066, 0.02091229148209095, -0.023633990436792374, -0.0257183276116848, 0.026545174419879913, 0.006270242389291525, -0.0009452734375372529, 0.020464416593313217, -0.0014652814716100693, 0.03162682428956032, 0.006963586434721947, -0.018276723101735115, -0.0433749184012413, 0.03930959478020668, -0.01870737038552761, -0.02831944450736046, -0.03253979980945587, 0.11079724878072739, -0.022273140028119087, 0.017725491896271706, 0.009103909134864807, -0.06201338395476341, -0.04251362010836601, -0.049093928188085556, 0.02626955881714821, 0.0625990629196167, -0.035657696425914764, 0.0678357481956482, -0.012635227292776108, -0.04795701801776886, 0.01281609944999218, -0.03233309090137482, 0.02713085524737835, 0.0020165115129202604, 0.008057433180510998, 0.017656588926911354, -0.012058158405125141, -0.061358798295259476, -0.06914491951465607, 0.02783711813390255, 0.031075594946742058, 0.008182321675121784, 0.030920561403036118, 0.05867155268788338, -0.0671122595667839, -0.05529526621103287, -0.04916283115744591, 0.03693241626024246, -0.04905947670340538, -0.021515199914574623, 0.01151554100215435, -0.009069457650184631, -0.015598088502883911, -0.05584649741649628, 0.0163904819637537, 0.05715566873550415, 0.038551654666662216, -0.05060981214046478, -0.03514091670513153, 0.01021498255431652, 0.03185076266527176, 0.059084974229335785, -0.004166524391621351, 0.04530422389507294, 0.008203853853046894, 0.01958589442074299, -0.021170679479837418, 0.018896855413913727, 0.04644113406538963, 0.003987804986536503, -0.01982705667614937, -0.0010550888255238533, -0.0035679228603839874, -0.057293474674224854, -0.014754017814993858, -0.00020078985835425556, 0.009603461250662804, -0.027079178020358086, 0.028887901455163956, -0.014125270769000053, -0.04551093280315399, -0.026614077389240265, 0.013548201881349087, -0.04306485131382942, -0.01691587269306183, 0.023547859862446785, 0.07283127307891846, -0.02272101491689682, -0.004338783677667379, -0.0012499572476372123, 0.055226363241672516, -0.045166414231061935, 0.018414529040455818, 0.02184249274432659, 0.019361956045031548, 0.08103082329034805, -0.04213465005159378, -0.034934207797050476, -0.0013177844230085611, 0.010654243640601635, -0.0101030133664608, -0.03582995384931564, -0.06986841559410095, -0.020395513623952866, 0.030610496178269386, 0.044649638235569, 0.0023018161300569773, -0.04371943697333336, -0.029818102717399597, -0.03806932643055916, -0.009896302595734596, -0.008324435912072659, 0.025132646784186363, -0.018345626071095467, 0.009465654380619526, 0.05953284725546837, -0.054847393184900284, 0.011687800288200378, -0.027699312195181847, -0.010197756811976433, 0.032660383731126785, 0.0010857725283131003, -0.023720119148492813, -0.029129063710570335, 0.0061324345879256725, 0.027613181620836258, -0.02907738648355007, -0.0230310820043087, 0.03198857232928276, -0.06383933126926422, 0.0502997450530529, 0.005439090542495251, 0.0600496269762516, -0.022342044860124588, -0.018190592527389526, 0.04282368719577789, -0.02988700568675995, -0.00970681756734848, 0.032040249556303024, 0.050265293568372726, 0.014495628885924816, 0.027716537937521935, -0.04285813868045807, 0.015064084902405739, -0.04530422389507294, 0.0339178740978241, 0.022858822718262672, -0.007204749621450901, -0.029284097254276276, 0.02940467931330204, -0.010680083185434341, -0.06721562147140503, 0.011248539201915264, 0.05936058983206749, -0.07558742165565491, -0.020481642335653305, 0.08840352296829224, -0.048473794013261795, -0.009224491193890572, -0.027613181620836258, 0.002431010827422142, -0.0754496157169342, 0.05253911763429642, -0.028577834367752075, 0.01760490983724594, 0.03662234917283058, 0.06232345104217529, 0.026786336675286293, -0.037862617522478104, -0.009336459450423717, -0.08041068911552429, -0.017880525439977646, -0.021601328626275063, 0.0230310820043087, 0.021653005853295326, -0.0032212508376687765, 0.0028788852505385876, 0.05371047928929329, -0.07052300125360489, -0.06976505368947983, -0.034469105303287506, -0.011257152073085308, 0.03422794118523598, -0.00047559745144098997, 0.0045175026170909405, 0.0377248078584671, -0.034469105303287506, 0.024581415578722954, 0.03820713609457016, -0.023237792775034904, -0.04750914126634598, 0.0008747547399252653, -0.026682980358600616, 0.03586440533399582, 0.06931718438863754, 0.03765590488910675, -0.03910288214683533, 0.03147179260849953, 0.0030662172939628363, -0.019689248874783516, -0.011808381415903568, -0.01917247101664543, -0.031075594946742058, 0.011119344271719456, -0.051781173795461655, -0.0022565980907529593, 0.06149660423398018, 0.02122235856950283, 0.008066046051681042, -0.040377601981163025, -0.030713850632309914, -0.008264144882559776, 0.013255360536277294, 0.05901607125997543, -0.0029262565076351166, -0.020343834534287453, 0.006670745089650154, 0.008488082326948643, 0.05364157631993294, -0.040067534893751144, -0.014840147458016872, -0.05488184466958046, 0.025339357554912567, 0.04330601170659065, -0.02695859596133232, -0.01320368330925703, -0.003408582881093025, 0.004039483144879341, -0.06266797333955765, 0.01769104041159153, 0.011644735001027584, -0.031075594946742058, 0.021963072940707207, -0.026235107332468033, 0.023720119148492813, 0.06614761054515839, 0.03128230571746826, -0.038172684609889984, 0.020154349505901337, 0.015064084902405739, -0.01347929798066616, -0.0034947125241160393, -0.014822921715676785, -0.005869739223271608, -0.00012751233589369804, -0.0017387432744726539, -0.008358887396752834, -0.0257872324436903, 0.05763799697160721, -0.004500276874750853, 0.0136343315243721, 0.015959832817316055, 0.015434442088007927, -0.0014652814716100693, 0.045717645436525345, -0.03205747529864311, -0.0030576044227927923, 0.014676501043140888, 0.02633846178650856, 0.027974925935268402, 0.024891482666134834, 0.002080032369121909, -0.0976366251707077, 0.017458491027355194, 0.001773195224814117, 0.018380077555775642, 0.003516244934871793, -0.007510509807616472, 0.06728452444076538, 0.03955075889825821, -0.00010799856681842357, 0.02168745920062065, -0.024788128212094307, -0.014151109382510185, 0.011842833831906319, 0.05481294170022011, 0.06315029412508011, 0.027027500793337822, -0.061358798295259476, -0.0053185089491307735, -0.0020466570276767015, 0.020085446536540985, 0.021963072940707207, -0.006425275467336178, 0.034245166927576065, 0.014340595342218876, -0.0060419985093176365, 0.01671777479350567, 0.027061952278017998, 0.03293599560856819, 0.057741351425647736, -0.0068903760984539986, -0.02106732502579689, -0.04482189565896988, 0.01092985924333334, 0.009543171152472496, 0.002865965710952878, 0.002355647273361683, -0.025408262386918068, -0.009379524737596512, -0.05433061346411705, -0.00038677616976201534, 0.012876390479505062, -0.04668229818344116, 0.028405575081706047, -0.011463862843811512, -0.05260802060365677, 0.060807567089796066, 0.03972301632165909, -0.01446978934109211, -0.04654448851943016, 0.038482751697301865, -0.0015535644488409162, -0.025959491729736328, -0.02547716535627842, 0.024202445521950722, 0.030093716457486153, 0.01508992351591587, -0.06818027049303055, 0.02272101491689682, 0.005930029787123203, -0.03937849774956703, -0.021515199914574623, -0.033211611211299896, -0.03720803186297417, -0.02664852887392044, 0.0272686630487442, -0.06328810006380081, 0.001861478085629642, 0.004039483144879341, 0.009043618105351925, 0.01886240392923355, 0.009207264520227909 ]
23,419
conexions.proxy
get_reintentos
null
def get_reintentos(self) -> int: return self.__reintentos
(self) -> int
[ 0.005984284449368715, -0.003528548637405038, -0.0049449969083070755, 0.0091105280444026, 0.06155264005064964, -0.006151911802589893, 0.014139339327812195, -0.049047667533159256, 0.07751073688268661, 0.02001466602087021, -0.03295547142624855, -0.007756940089166164, 0.014918805100023746, 0.010686222463846207, -0.010518595576286316, -0.002499738009646535, 0.04016343504190445, -0.023668935522437096, 0.0219423770904541, 0.02303195185959339, 0.03614038601517677, 0.06966578960418701, -0.01837192103266716, -0.052500780671834946, -0.04918176680803299, 0.057361964136362076, 0.023015189915895462, -0.006177055649459362, 0.022663172334432602, -0.015413304790854454, -0.057931896299123764, -0.004500785376876593, 0.022579358890652657, -0.03909062221646309, -0.01999790407717228, 0.003742273198440671, -0.0037967520765960217, 0.06477107852697372, 0.020836038514971733, 0.04049868881702423, -0.03835306316614151, -0.00043530642869882286, 0.007853325456380844, -0.03183237090706825, -0.025982188060879707, -0.04197380691766739, -0.0014531167689710855, -0.049617595970630646, 0.04190675541758537, -0.03875536844134331, 0.057864848524332047, 0.02056783437728882, 0.022663172334432602, -0.012387637048959732, 0.014700889587402344, 0.060245148837566376, -0.01907595433294773, 0.07254897058010101, 0.0029209007043391466, -0.033944472670555115, -0.005875327158719301, 0.017014142125844955, -0.004140387289226055, -0.03835306316614151, 0.08428286761045456, -0.022244105115532875, 0.009370350278913975, 0.05347301810979843, 0.006277631968259811, 0.033056046813726425, -0.009320062585175037, -0.01197695080190897, -0.01785227842628956, -0.007434258237481117, -0.02142273262143135, -0.00855735968798399, 0.058602407574653625, -0.010962806642055511, 0.010174959897994995, -0.01358617004007101, 0.05146149545907974, 0.048544783145189285, 0.058803558349609375, 0.01288213673979044, 0.036844417452812195, -0.04586275294423103, 0.018992140889167786, -0.018640125170350075, -0.03424619883298874, -0.0010298584820702672, -0.06651440262794495, 0.06634677201509476, -0.00026257202262058854, -0.021925613284111023, -0.012463068589568138, -0.005716081243008375, -0.05675850808620453, -0.04308014363050461, 0.04274488985538483, -0.09259716421365738, -0.05742901563644409, 0.11271240562200546, -0.005845992360264063, 0.01708957366645336, 0.002824515337124467, 0.029317965731024742, -0.03842011094093323, -0.017969615757465363, -0.004660031292587519, 0.019880564883351326, -0.06292718648910522, 0.08803770691156387, -0.017751701176166534, -0.005204819142818451, 0.024892611429095268, -0.02288108877837658, -0.006692508701235056, 0.02123834379017353, 0.028932424262166023, 0.050891563296318054, -0.00512938667088747, 0.05799894779920578, 0.01927710697054863, -0.006407542619854212, 0.019394446164369583, 0.06027867645025253, -0.007166055031120777, 0.049952853471040726, -0.02051754668354988, -0.021908851340413094, 0.013988474383950233, -0.07174436748027802, 0.002123624784871936, 0.06121738627552986, 0.012085908092558384, 0.006357254460453987, 0.09152435511350632, 0.03691146895289421, 0.010040858760476112, 0.03300575911998749, -0.0057454160414636135, 0.056289151310920715, 0.003675222396850586, 0.000525929790455848, -0.030726032331585884, 0.013502356596291065, 0.04991932585835457, 0.10392875224351883, -0.026619169861078262, -0.043147195130586624, 0.05186380073428154, -0.01999790407717228, 0.01624305732548237, 0.005175484344363213, 0.008129910565912724, 0.0027930852957069874, 0.00039025666774250567, -0.055216338485479355, -0.037380825728178024, -0.03654269129037857, -0.01746673509478569, -0.0010990046430379152, 0.024892611429095268, -0.04425353184342384, 0.01025877334177494, 0.017718175426125526, 0.02717234008014202, -0.040264010429382324, 0.010887375101447105, 0.038990043103694916, 0.016268203034996986, -0.02807752601802349, -0.002306966809555888, -0.05025457963347435, 0.01942797191441059, 0.06507281213998795, -0.02338396944105625, 0.024808797985315323, 0.017751701176166534, 0.0529366135597229, 0.004848611541092396, -0.06483813375234604, -0.019930852577090263, -0.06477107852697372, 0.05219905450940132, 0.006604504771530628, 0.03728025034070015, -0.04411943256855011, 0.008155054412782192, 0.006998428143560886, 0.027306441217660904, 0.002874803263694048, -0.007061288226395845, 0.008523833937942982, -0.017232056707143784, -0.027272915467619896, -0.04029753431677818, -0.036475639790296555, -0.005217391066253185, -0.06835829466581345, -0.056859083473682404, 0.028965948149561882, -0.03533577546477318, 0.05048925802111626, 0.011247772723436356, 0.011784179136157036, -0.02953588031232357, 0.001644840114749968, 0.01387951709330082, -0.06574331969022751, -0.0028601360972970724, -0.019880564883351326, 0.03134625405073166, -0.06356416642665863, 0.02056783437728882, -0.014700889587402344, 0.007823990657925606, -0.007048716302961111, 0.029804084450006485, 0.011381874792277813, 0.02702147513628006, -0.0071702455170452595, -0.02666945941746235, -0.05058983340859413, 0.003212152747437358, -0.024456782266497612, -0.035570453852415085, 0.016016760841012, -0.00802095327526331, 0.021556833758950233, -0.01270612794905901, 0.01160817127674818, -0.04183970391750336, -0.011750654317438602, -0.0018470402574166656, 0.021188056096434593, -0.016963854432106018, 0.055182814598083496, -0.04465583711862564, 0.007471974473446608, -0.057160813361406326, 0.022042952477931976, 0.05404295027256012, 0.03422943875193596, -0.05625562742352486, 0.006738606374710798, 0.05246725678443909, 0.004018857609480619, -0.023115765303373337, -0.04371712729334831, 0.03868831694126129, -0.09407228231430054, -0.008339444175362587, -0.04049868881702423, 0.02125510573387146, -0.007878470234572887, -0.08414876461029053, 0.054311152547597885, -0.03335777670145035, -0.0393252968788147, 0.05498166382312775, -0.042208481580019, -0.043683599680662155, -0.04214143380522728, -0.04951702058315277, 0.05746254324913025, 0.012572026811540127, 0.04069983959197998, -0.017517022788524628, -0.020970139652490616, 0.030826609581708908, -0.009605027735233307, -0.09199370443820953, -0.0259486623108387, -0.03510109707713127, -0.001439496991224587, 0.001409114571288228, 0.022562596946954727, -0.05937349051237106, -0.01404714398086071, -0.02123834379017353, 0.030860133469104767, 0.047807224094867706, -0.02536196820437908, -0.008440020494163036, -0.015807228162884712, 0.029217388480901718, 0.0012896803673356771, -0.03825248405337334, -0.000769512786064297, 0.05930643901228905, 0.04847773537039757, 0.018472498282790184, 0.004083813168108463, 0.12478155642747879, -0.022931376472115517, 0.012806704267859459, -0.022981664165854454, 0.006101623643189669, 0.07026924937963486, -0.02105395309627056, -0.017550548538565636, -0.024406494572758675, -0.034330014139413834, -0.03496699780225754, 0.017349395900964737, 0.117405965924263, -0.024440018460154533, 0.03674384206533432, 0.004266107454895973, 0.012421161867678165, 0.06624619662761688, 0.01070298533886671, 0.017382921651005745, -0.01658669300377369, -0.04361655190587044, 0.029636457562446594, 0.04016343504190445, -0.024423256516456604, 0.06232372671365738, -0.00955474004149437, 0.036643266677856445, 0.028429541736841202, -0.01981351338326931, 0.05343949422240257, 0.01117234118282795, -0.03671031817793846, -0.010024095885455608, 0.03258669376373291, -0.010233629494905472, -0.023149291053414345, -0.055015187710523605, -0.024272391572594643, 0.026535356417298317, 0.025278154760599136, -0.020953377708792686, 0.05421057716012001, 0.01820429414510727, -0.03513462468981743, -0.01872393861413002, 0.010661078616976738, -0.035034045577049255, 0.004685175139456987, 0.025864848867058754, 0.05152854695916176, 0.012697746977210045, 0.05615505203604698, 0.006390780210494995, 0.03600628301501274, -0.03929177299141884, -0.013602932915091515, 0.03838658705353737, -0.00854478683322668, 0.060245148837566376, 0.017567312344908714, 0.02990465983748436, -0.028580406680703163, 0.009789417497813702, 0.046566784381866455, 0.0490141399204731, -0.02360188402235508, -0.009403876028954983, 0.0035767415538430214, 0.017734939232468605, -0.04971817508339882, 0.005359874106943607, -0.05384179949760437, -0.00801257137209177, 0.03868831694126129, -0.03587218374013901, -0.024976426735520363, 0.02051754668354988, -0.013385017402470112, 0.012161340564489365, 0.042074382305145264, 0.04489051550626755, 0.02682032249867916, -0.020132005214691162, 0.010099527426064014, -0.009831324219703674, -0.015941329300403595, 0.0023258249275386333, 0.0033294917084276676, 0.006336301099509001, -0.0378837063908577, 0.02970350719988346, -0.010191722773015499, -0.03768255561590195, -0.043147195130586624, 0.022746985778212547, -0.041537974029779434, -0.01744997315108776, -0.0331566259264946, -0.02162388525903225, -0.033592455089092255, -0.012722890824079514, -0.01334311068058014, -0.003803038038313389, -0.0000967784144449979, -0.015991616994142532, 0.03986170515418053, -0.001603981014341116, 0.01817076839506626, -0.00918596051633358, -0.04576217755675316, 0.02881508506834507, -0.012722890824079514, 0.0048737553879618645, -0.01043478213250637, -0.03208381310105324, -0.08750130236148834, 0.008691460825502872, 0.056088000535964966, -0.036676790565252304, -0.004701938014477491, -0.06299423426389694, 0.02774227224290371, 0.019327394664287567, 0.07684022188186646, 0.013074907474219799, -0.0018313252367079258, 0.026032475754618645, -0.002097432967275381, 0.09856468439102173, 0.025127289816737175, 0.03694499656558037, 0.010920899920165539, 0.04210790619254112, -0.015237296000123024, 0.02559664659202099, -0.026568882167339325, 0.018120480701327324, 0.03479937091469765, -0.10278888791799545, -0.004127815365791321, -0.043147195130586624, 0.004798323381692171, -0.024188578128814697, -0.03334101289510727, 0.025160815566778183, 0.057563118636608124, 0.012731271795928478, 0.02200942672789097, -0.0012016762048006058, 0.049818750470876694, -0.07201256603002548, 0.004400209058076143, 0.008083812892436981, 0.015924567356705666, -0.05615505203604698, -0.04934939369559288, 0.0019926661625504494, 0.02646830677986145, -0.031061286106705666, 0.026250390335917473, 0.00926139298826456, -0.09816238284111023, -0.0027867991011589766, -0.06084860861301422, -0.062021996825933456, 0.05058983340859413, 0.030139338225126266, -0.07798008620738983, -0.011088527739048004, 0.019377684220671654, -0.03060869313776493, -0.005066526588052511, -0.061720266938209534, -0.02631744183599949, 0.02019905485212803, 0.03553692623972893, -0.031446829438209534, -0.019226819276809692, -0.0741581916809082, -0.033072810620069504, 0.02792666107416153, 0.020282870158553123, -0.011390255764126778, 0.007597694639116526, 0.00810895673930645, 0.020484020933508873, -0.020836038514971733, -0.021523309871554375, 0.003943425603210926, -0.024909375235438347, -0.03620743751525879, -0.10473336279392242, -0.03583865612745285, -0.03080984577536583, -0.03134625405073166, 0.04774017632007599, 0.007434258237481117, 0.0056825559586286545, 0.023870088160037994, -0.000822420057374984, 0.05669145658612251, 0.07972341030836105, -0.020768987014889717, 0.0029188054613769054, 0.027792559936642647, 0.002036668360233307, -0.01894185319542885, -0.017517022788524628, 0.007878470234572887, -0.025713983923196793, -0.009638553485274315, -0.00009612362191546708, -0.055015187710523605, -0.03184913471341133, -0.04586275294423103, -0.008301728405058384, -0.04888003692030907, 0.0601445734500885, 0.01584075391292572, -0.029418541118502617, -0.04391827806830406, 0.0021173388231545687, 0.03496699780225754, 0.018640125170350075, 0.060077521950006485, 0.007756940089166164, -0.03795075789093971, -0.014265059493482113, 0.025630170479416847, -0.031212151050567627, 0.03546987846493721, -0.049114715307950974, -0.034279726445674896, 0.02249554544687271, 0.05444525554776192, 0.040096383541822433, -0.047304343432188034, -0.019210055470466614, 0.014524880796670914, 0.02936825342476368, 0.014776322059333324, 0.0035914089530706406, -0.08810476213693619, 0.06574331969022751, 0.06906232982873917, 0.005519119556993246, -0.026870612055063248, -0.01820429414510727, -0.005678365472704172, 0.00827658362686634, 0.006558407098054886, 0.03942587599158287, -0.008104766719043255, 0.0071953898295760155, -0.026770034804940224, -0.01640230417251587, -0.028882134705781937, 0.002826610580086708, -0.0374814011156559, 0.04391827806830406, 0.020802512764930725, 0.028178101405501366, -0.03697852045297623, 0.04418648034334183, -0.005586170591413975, 0.028345728293061256, -0.07777893543243408, 0.0019140910590067506, -0.01620953343808651, -0.04056574031710625, 0.04304661974310875, -0.02034991979598999, 0.03168150782585144, -0.031782083213329315, 0.002960712183266878, -0.015304346568882465, -0.04589627683162689, 0.016142481938004494, -0.0028685173019766808, 0.020031427964568138, -0.023015189915895462, -0.013845991343259811, -0.04304661974310875, -0.03657621517777443, -0.0010759559227153659, 0.018137242645025253, -0.0016647458542138338, -0.024356205016374588, -0.05488108471035957, -0.0002476427180226892, 0.021489784121513367, 0.0013693032087758183, 0.06064745411276817, 0.007823990657925606, -0.007874279282987118, -0.04894708842039108, 0.00418019900098443, -0.02968674525618553, -0.033760081976652145, -0.00027763223624788225, -0.03456469252705574, -0.004220010247081518, -0.021858563646674156, -0.05434468016028404, 0.06319538503885269, 0.05488108471035957, -0.014818228781223297, -0.01641068607568741, 0.0009675222099758685, 0.008301728405058384, -0.027440542355179787, 0.0008339444175362587, 0.004940806422382593, 0.03801780939102173, 0.026367729529738426, -0.011784179136157036, -0.022948138415813446, 0.01640230417251587, -0.06456992775201797, -0.05722786486148834, 0.008657935075461864, -0.017022524029016495, 0.04147092625498772, 0.008347825147211552, 0.010811942629516125, -0.026149814948439598, 0.007287584710866213, 0.018455734476447105, -0.016511261463165283, -0.0403645858168602, 0.057730745524168015, -0.04183970391750336, -0.02142273262143135, 0.01043478213250637, -0.028680982068181038, 0.05240020528435707, -0.02611628919839859, 0.09366998076438904, -0.03674384206533432, -0.010133053176105022, 0.004643268417567015, -0.01798637956380844, -0.004071241244673729, -0.006684127263724804, 0.008192770183086395, 0.006281822454184294, 0.05615505203604698, -0.0211042407900095, -0.002231534803286195, -0.017567312344908714, -0.011759035289287567, -0.039191197603940964, -0.007451021112501621, 0.0029795703012496233, -0.03330748900771141, -0.027842847630381584, 0.031061286106705666, 0.03360921889543533, -0.00697328383103013, -0.047471970319747925, -0.022663172334432602, -0.003939235117286444, 0.0033294917084276676, -0.037716079503297806, -0.0352352000772953, -0.023635409772396088, -0.010158197022974491, 0.026971187442541122, -0.06661497801542282, 0.024222103878855705, -0.009663697332143784, -0.0050874799489974976, -0.01351073756814003, 0.07093975692987442, -0.01584075391292572, 0.04123624786734581, 0.07979045808315277, 0.04391827806830406, 0.042610786855220795, 0.008423257619142532, 0.06232372671365738, -0.01251335721462965, 0.04039810970425606, 0.05169617384672165, -0.019545311108231544, -0.03241906687617302, 0.06192142143845558, -0.01798637956380844, -0.07844944298267365, 0.04106862097978592, -0.007157673593610525, -0.05451230704784393, 0.06986694037914276, 0.018321633338928223, 0.011398637667298317, -0.033408064395189285, -0.013820847496390343, 0.019243581220507622, 0.013368254527449608, 0.04103509336709976, 0.06560921669006348, -0.04713671654462814, 0.0428454652428627, 0.007363016717135906, 0.009051859378814697, 0.034832894802093506, 0.015304346568882465, 0.023652171716094017, -0.02127186954021454, -0.05531691759824753, -0.005301204510033131, -0.008335253223776817, -0.01618438959121704, -0.07201256603002548, 0.010711366310715675, -0.02631744183599949, 0.0762367695569992, -0.0017925613792613149, -0.049282342195510864, -0.024088002741336823, 0.0286306943744421, 0.037716079503297806, 0.06517338752746582, -0.050187528133392334, 0.01838868483901024, -0.01692194677889347, 0.02073546312749386, 0.04844420775771141, 0.04576217755675316, -0.023518070578575134, 0.009605027735233307, 0.035402826964855194, -0.007216343190521002, -0.0002957045508082956, -0.053238339722156525, -0.04147092625498772, -0.07764483243227005, -0.00811733864247799, -0.050522781908512115, 0.007006809581071138, 0.01748349890112877, 0.07523100823163986, -0.034128859639167786, -0.008326872251927853, -0.004655840341001749, 0.03134625405073166, -0.006935568060725927, -0.04535987228155136, 0.012328967452049255, 0.024724984541535378, 0.006256678607314825, -0.00263174413703382, 0.012211628258228302, -0.0009324253187514842, -0.0378837063908577, 0.04794132709503174, 0.009764273650944233, 0.07328653335571289, -0.0679895207285881, -0.017014142125844955, 0.04542692378163338, 0.006952330470085144, 0.006378208287060261, 0.014407542534172535, 0.01708957366645336, 0.003974855877459049, -0.029502354562282562, -0.07979045808315277, 0.0428454652428627, 0.0364421121776104, 0.033592455089092255, -0.04197380691766739, -0.02415505424141884 ]
23,420
conexions.proxy
get_sesion
def get_sesion(self) -> Session: """ """ return self.__sesion
(self) -> requests.sessions.Session
[ 0.004505402874201536, -0.03929445520043373, -0.004262871574610472, -0.0020669791847467422, 0.019629748538136482, 0.004710789769887924, -0.021028127521276474, 0.04300015792250633, 0.05855712667107582, 0.01782933436334133, -0.03174320608377457, -0.037581440061330795, 0.012856348417699337, 0.017549658194184303, 0.01840616576373577, -0.007905212230980396, 0.09362148493528366, -0.0373716838657856, -0.012296997010707855, -0.04366438835859299, 0.0020210950169712305, 0.024384237825870514, 0.03030986897647381, -0.06789130717515945, -0.06484983116388321, 0.025555379688739777, 0.00783529318869114, 0.009255521930754185, 0.046950582414865494, -0.04506276920437813, -0.03511679545044899, -0.023387892171740532, 0.04471317306160927, 0.025555379688739777, 0.05726362764835358, 0.055061180144548416, -0.05271889641880989, 0.01752343960106373, -0.07362466305494308, -0.007039965130388737, -0.06016526371240616, 0.01683298870921135, 0.0430351197719574, 0.018126489594578743, -0.018074050545692444, 0.03106149658560753, 0.006996265612542629, 0.03946925327181816, 0.05212458223104477, 0.018790720030665398, 0.01556570827960968, 0.033246465027332306, -0.017086446285247803, -0.004675830248743296, -0.04055299609899521, 0.006773399189114571, 0.013476879335939884, 0.00998093094676733, -0.002377244643867016, 0.044643256813287735, 0.03287938982248306, -0.023929763585329056, 0.04520260542631149, 0.013170983642339706, 0.01800413243472576, -0.008726759813725948, -0.0204862542450428, -0.0024755680933594704, 0.03322898596525192, -0.002469013212248683, 0.03183060511946678, -0.04576195776462555, -0.004109923727810383, 0.033298905938863754, 0.00838590506464243, -0.06086445227265358, -0.058766886591911316, -0.011956142261624336, 0.000707383209373802, -0.02927856333553791, -0.011798824183642864, 0.034452568739652634, -0.005230811890214682, 0.042440809309482574, 0.048348959535360336, 0.009377880021929741, 0.05160019174218178, 0.0019992452580481768, -0.1045987606048584, 0.035903386771678925, -0.03207532316446304, 0.06684252619743347, -0.017951693385839462, 0.04702049866318703, -0.005567296873778105, -0.009683775715529919, -0.033001746982336044, -0.02574765682220459, -0.035623710602521896, -0.04925790801644325, -0.05555061250925064, 0.13494358956813812, -0.02765294909477234, 0.013372001238167286, -0.0027923884335905313, -0.0010471456917002797, -0.015320992097258568, -0.001229044166393578, 0.027163514867424965, -0.02018909901380539, 0.008123708888888359, 0.06390593200922012, -0.012034800834953785, 0.03600826486945152, 0.05565549060702324, -0.08928651362657547, -0.004459518473595381, -0.007022485602647066, -0.03887494280934334, -0.03177816793322563, -0.06425552070140839, 0.03198792412877083, -0.015749245882034302, 0.02163991704583168, 0.038909900933504105, 0.04230096936225891, 0.014097410254180431, 0.017610838636755943, 0.06250754743814468, -0.04230096936225891, -0.0042825364507734776, -0.06533926725387573, 0.0521945022046566, 0.010400445200502872, 0.004304385744035244, 0.012340696528553963, 0.03030986897647381, -0.0030960990116000175, -0.05257905647158623, 0.048279039561748505, -0.02677896060049534, 0.0540473535656929, -0.05167011171579361, -0.0410773865878582, -0.016850469633936882, 0.0023597648832947016, -0.059570953249931335, 0.0033539249561727047, 0.04009852185845375, -0.04628635197877884, 0.0411822684109211, -0.035553790628910065, 0.034749723970890045, 0.002733394270762801, -0.06698236614465714, 0.03614810109138489, -0.006467503495514393, 0.013555537909269333, 0.022076910361647606, -0.0037209996953606606, -0.0016354481922462583, -0.03586842492222786, -0.018441125750541687, -0.06873033940792084, 0.003729739459231496, 0.005833863280713558, -0.006978786084800959, -0.018074050545692444, 0.006135388743132353, 0.006445654202252626, -0.04300015792250633, 0.004763229284435511, -0.015696806833148003, -0.01584538444876671, 0.002930041402578354, 0.013057366013526917, 0.021202923730015755, 0.078658826649189, 0.008246066980063915, 0.011851263232529163, -0.0016922573558986187, -0.04373430833220482, -0.07579214870929718, 0.04149690270423889, 0.031148895621299744, 0.06838074326515198, 0.042965199798345566, 0.021569998934864998, 0.053662799298763275, 0.008844748139381409, 0.0008947441820055246, 0.025537900626659393, 0.017453519627451897, 0.01753217913210392, 0.0013131654122844338, -0.01990942284464836, -0.000634733063634485, 0.02857937477529049, -0.05160019174218178, 0.04327983409166336, -0.008560702204704285, 0.03649769723415375, -0.03709200769662857, -0.004367750138044357, 0.008433974348008633, 0.02406960166990757, 0.023370411247015, -0.0037821787409484386, -0.053837597370147705, -0.011877482756972313, -0.07075798511505127, -0.02372000738978386, -0.0016070435522124171, 0.008626251481473446, 0.08271412551403046, -0.0466359443962574, 0.018074050545692444, -0.002147823106497526, 0.03251231461763382, 0.02655172534286976, 0.08886699378490448, -0.04345463216304779, -0.020696012303233147, -0.08152550458908081, -0.03992372378706932, -0.03195296600461006, -0.002899451879784465, -0.06845065951347351, 0.008639361709356308, -0.05691403150558472, 0.028894009068608284, 0.005353170447051525, 0.027180995792150497, 0.03256475552916527, 0.026237089186906815, 0.005742094479501247, -0.0521945022046566, 0.0010842900956049562, -0.05072620511054993, -0.00649372348561883, -0.04471317306160927, -0.016334816813468933, 0.04719529673457146, 0.07100269943475723, -0.02672652155160904, 0.07677101343870163, 0.033071666955947876, 0.04883839190006256, -0.0004867014940828085, 0.008499523624777794, 0.04810424521565437, -0.04785952717065811, -0.006262116599828005, -0.0020003376994282007, -0.027915144339203835, -0.013555537909269333, -0.07635150104761124, 0.07355474680662155, 0.009229302406311035, -0.04184649512171745, -0.032547276467084885, -0.001137275598011911, -0.05191482603549957, -0.011816304177045822, 0.006616081576794386, 0.03305418789386749, -0.012856348417699337, 0.07677101343870163, -0.05062132701277733, -0.009622597135603428, 0.13144764304161072, 0.022828539833426476, -0.06250754743814468, -0.02592245489358902, -0.00882726814597845, -0.08173526078462601, -0.05478150397539139, -0.010601461865007877, -0.10173208266496658, -0.029820436611771584, 0.06324169784784317, 0.02922612428665161, 0.026359448209404945, 0.01690290868282318, -0.01823136769235134, -0.017672017216682434, 0.01990942284464836, -0.0022057245951145887, 0.015635626390576363, -0.029523279517889023, -0.058696966618299484, -0.007594946771860123, -0.013415699824690819, 0.013424440287053585, 0.04373430833220482, 0.023807406425476074, -0.07949785888195038, 0.045517243444919586, 0.023055776953697205, -0.008919036947190762, 0.04656602814793587, -0.018755760043859482, -0.07271571457386017, 0.03656761720776558, 0.009561417624354362, 0.007354600355029106, -0.0005558010889217257, 0.04317495599389076, 0.005191482603549957, -0.024034641683101654, -0.000870709540322423, 0.002602296182885766, 0.0049074371345341206, 0.05652947723865509, -0.06540918350219727, 0.00045529258204624057, -0.057018909603357315, -0.03548387065529823, 0.05369776114821434, 0.1279516965150833, -0.021797236055135727, 0.004619021434336901, 0.06404576450586319, -0.03513427823781967, 0.028596853837370872, -0.01764579676091671, -0.032145243138074875, -0.0006795249064452946, -0.008219847455620766, 0.05509613826870918, -0.0948101058602333, -0.027163514867424965, 0.01630859635770321, -0.01717384345829487, -0.06554902344942093, -0.0003121772315353155, -0.006541792768985033, 0.02359764836728573, 0.024034641683101654, -0.08432226628065109, 0.012917527928948402, -0.09117431938648224, -0.0017556214006617665, -0.0062140473164618015, -0.006865167990326881, -0.004942396190017462, -0.05097091943025589, -0.02024153806269169, 0.06198315694928169, -0.08124583214521408, 0.005095344036817551, 0.018720801919698715, 0.0522993803024292, 0.05680915340781212, 0.004210432525724173, -0.006790878716856241, -0.0008860043017193675, 0.007577467244118452, -0.008844748139381409, -0.05855712667107582, 0.006244637072086334, 0.02078341133892536, -0.010146988555788994, -0.00620530778542161, -0.02018909901380539, 0.028771651908755302, -0.020119180902838707, -0.027705388143658638, 0.0897759422659874, -0.04142698273062706, -0.04114730656147003, -0.033753376454114914, -0.0021991697140038013, 0.03487208113074303, -0.02655172534286976, 0.03401557356119156, 0.0017294017598032951, -0.0015393096255138516, -0.015163674019277096, -0.03198792412877083, 0.05520101636648178, -0.002661290345713496, 0.0011602176818996668, 0.015268553048372269, 0.019070396199822426, -0.0033036707900464535, -0.0466359443962574, -0.012611632235348225, -0.006415064446628094, 0.014481964521110058, -0.020923247560858727, -0.027845226228237152, -0.033001746982336044, 0.00540997926145792, -0.047824569046497345, -0.02522326447069645, -0.004155808128416538, 0.013057366013526917, -0.005501748062670231, 0.017628317698836327, 0.05520101636648178, -0.023178134113550186, 0.0636262521147728, 0.0014912403421476483, -0.027233434841036797, -0.0335610993206501, 0.036427777260541916, -0.016850469633936882, 0.022461464628577232, -0.013634197413921356, -0.053033530712127686, -0.06051485985517502, -0.0654791072010994, -0.023475291207432747, 0.03628794103860855, 0.016999047249555588, 0.007878992706537247, 0.05317336693406105, 0.04240584746003151, 0.02134276181459427, 0.0003195515018887818, 0.008853488601744175, -0.02875417098402977, 0.045796919614076614, -0.03293183073401451, 0.018318766728043556, -0.0371619276702404, 0.002958446042612195, -0.0020309272222220898, -0.00620530778542161, -0.03037978708744049, 0.002326990244910121, -0.00023502056137658656, -0.00018462975276634097, 0.03373589739203453, 0.0011733275605365634, -0.028159860521554947, -0.035903386771678925, -0.030886700376868248, 0.05062132701277733, 0.014132369309663773, 0.03287938982248306, -0.0261496901512146, 0.06068965792655945, 0.09690767526626587, -0.050306692719459534, -0.04771969094872475, 0.04195137694478035, 0.03429524973034859, -0.01713014580309391, -0.01990942284464836, 0.011169553734362125, 0.025852534919977188, 0.007817813195288181, 0.00435682525858283, -0.052858732640743256, -0.0011700501199811697, -0.020049260929226875, 0.03270459175109863, -0.036252979189157486, 0.000491617654915899, 0.020958207547664642, 0.009377880021929741, 0.006554902531206608, 0.0011897147633135319, 0.017252502962946892, -0.009753694757819176, 0.019874464720487595, -0.008779198862612247, -0.011737645603716373, 0.00766486581414938, 0.003133243415504694, -0.07719053328037262, -0.08292388170957565, -0.0076080565340816975, -0.02546798065304756, -0.006991895847022533, -0.005331320688128471, 0.025415541604161263, 0.040063563734292984, -0.052963610738515854, -0.0031682029366493225, -0.02527570351958275, 0.017505958676338196, -0.023160655051469803, -0.01938503049314022, 0.029348483309149742, -0.08844748139381409, -0.00025359279243275523, -0.013922613114118576, 0.03043222613632679, 0.027530590072274208, -0.02574765682220459, 0.002118326025083661, 0.030816780403256416, 0.024157000705599785, 0.0023925392888486385, 0.0011580327991396189, -0.01955982856452465, -0.033875737339258194, -0.026918798685073853, 0.014359606429934502, -0.0035265374463051558, 0.001966470619663596, 0.018668362870812416, -0.05167011171579361, -0.0854409709572792, -0.023108216002583504, -0.010042110458016396, -0.007734784856438637, 0.06324169784784317, 0.0391196571290493, -0.05978070944547653, -0.008748609572649002, 0.02319561503827572, -0.03831559047102928, -0.0373716838657856, -0.004627760965377092, 0.03193548321723938, 0.017549658194184303, 0.04572699964046478, -0.013092325069010258, 0.020975688472390175, 0.01472668070346117, -0.03333386406302452, 0.016562053933739662, -0.01990942284464836, 0.04345463216304779, 0.014455744996666908, 0.03835054859519005, 0.008656840771436691, -0.018353726714849472, -0.07516288012266159, 0.04009852185845375, 0.011160814203321934, 0.024506594985723495, -0.027233434841036797, -0.019472429528832436, 0.03831559047102928, 0.002868862356990576, -0.012061020359396935, -0.01636977680027485, -0.03957413136959076, 0.04432861879467964, -0.03852534666657448, -0.003380144713446498, -0.017313681542873383, -0.002326990244910121, -0.061773400753736496, 0.005291991401463747, -0.03130621463060379, 0.007983870804309845, 0.04390910640358925, -0.07327506691217422, 0.029523279517889023, -0.007210392504930496, 0.03015255182981491, -0.015574447810649872, -0.0233179721981287, 0.0185809638351202, -0.0011940847616642714, -0.0241919606924057, -0.009727475233376026, 0.0025782615412026644, 0.011213253252208233, 0.004422374069690704, 0.05915144085884094, -0.010671380907297134, -0.03146352991461754, 0.014849038794636726, 0.0046714604832232, -0.008285396732389927, 0.05254409834742546, 0.0841125100851059, -0.014079930260777473, 0.014385825954377651, 0.023073256015777588, 0.05345304310321808, -0.004337160382419825, -0.013852694071829319, 0.029872875660657883, 0.010015890933573246, 0.02389480359852314, -0.0031878675799816847, -0.024751311168074608, 0.004920546896755695, -0.05855712667107582, 0.03155092895030975, -0.018266327679157257, -0.027355792000889778, -0.005501748062670231, 0.022636262699961662, -0.0006106984219513834, -0.010916097089648247, 0.02211187034845352, -0.03709200769662857, 0.017619578167796135, -0.013450659811496735, -0.00995471142232418, 0.016693150624632835, -0.018318766728043556, 0.08907674998044968, 0.041042428463697433, -0.005632846150547266, 0.06128396838903427, -0.007245352026075125, -0.04065787419676781, 0.014875258319079876, 0.008726759813725948, -0.02366756834089756, -0.04744001477956772, 0.014254727400839329, -0.03163832798600197, -0.0185809638351202, -0.02511838637292385, 0.05369776114821434, -0.004702049773186445, 0.044818051159381866, 0.015294772572815418, -0.01643969491124153, 0.05292865261435509, 0.03394565358757973, -0.026918798685073853, 0.015714285895228386, -0.011169553734362125, 0.009395360015332699, 0.03090417943894863, -0.022723661735653877, -0.016413476318120956, -0.004085889086127281, -0.012594152241945267, -0.018965518102049828, 0.08621007949113846, -0.07285555452108383, 0.033019229769706726, 0.006677260622382164, -0.02487367019057274, 0.003397624474018812, -0.030939139425754547, 0.027530590072274208, -0.0026285159401595592, 0.02384236454963684, 0.05086604133248329, 0.016815509647130966, -0.05855712667107582, -0.006996265612542629, 0.009570157155394554, 0.014141109772026539, 0.039084699004888535, -0.012366916052997112, -0.0008685245411470532, 0.04327983409166336, 0.024349277839064598, 0.014044971205294132, 0.03163832798600197, -0.08970602601766586, -0.03499443829059601, -0.0018878119299188256, 0.013957572169601917, -0.04317495599389076, -0.009832353331148624, -0.028089942410588264, -0.03020499087870121, 0.02910376712679863, 0.037581440061330795, 0.008844748139381409, -0.04740505293011665, 0.020573653280735016, 0.008604401722550392, 0.003952606115490198, 0.04044811800122261, 0.04079771414399147, -0.037057049572467804, 0.002960630925372243, -0.005777054000645876, -0.029470840469002724, 0.03565866872668266, -0.07614174485206604, 0.04016844183206558, 0.007009375840425491, -0.05645956099033356, 0.010313046164810658, 0.013232163153588772, -0.05341808497905731, -0.04373430833220482, 0.000983235309831798, 0.02690131962299347, -0.01816144958138466, -0.01567058637738228, -0.13606229424476624, -0.0334562212228775, -0.04576195776462555, -0.010479103773832321, 0.04286032170057297, 0.005309470929205418, -0.017208803445100784, 0.012052280828356743, 0.000025314897357020527, -0.0003367581230122596, 0.014237248338758945, -0.003480653278529644, 0.01331082172691822, 0.03518671542406082, -0.03378833830356598, 0.04555220156908035, -0.0030764341354370117, 0.03506435826420784, -0.05132051557302475, 0.03434768691658974, -0.007695455569773912, 0.01851104386150837, -0.011466708965599537, 0.05174002796411514, 0.005825123284012079, 0.04079771414399147, 0.021202923730015755, -0.0261496901512146, 0.028719212859869003, -0.039434291422367096, 0.04929286614060402, -0.04390910640358925, -0.020119180902838707, 0.04202129319310188, -0.013109805062413216, 0.044293660670518875, 0.030100110918283463, -0.010575242340564728, 0.01137057039886713, 0.03887494280934334, 0.03460988402366638, -0.05292865261435509, -0.020433815196156502, -0.0895661860704422, 0.05572541058063507, -0.05628476291894913, -0.03807087242603302, 0.002305140718817711, -0.004509772639721632, -0.06013030558824539, 0.00853011291474104, 0.010653900913894176, 0.005370649974793196, 0.002700619865208864, 0.02193707413971424, 0.022006992250680923, 0.010234387591481209, -0.0060960594564676285, -0.04436358064413071, 0.04537740349769592, 0.015469569712877274, 0.05583028867840767, 0.023073256015777588, 0.037581440061330795, 0.002989035565406084, -0.03478468209505081, -0.034225329756736755, 0.006318925879895687, 0.04334975406527519, 0.028771651908755302, 0.01903543621301651, -0.048978231847286224, 0.05212458223104477, 0.0007166693103499711, 0.012130939401686192, -0.003401994239538908, 0.016806770116090775, 0.00033129568328149617, -0.007538137957453728 ]
23,421
conexions.proxy
get_spinner
null
def get_spinner(self) -> Halo: return self.__spinner
(self) -> halo.halo.Halo
[ 0.04925155267119408, -0.028636984527111053, -0.03743794932961464, 0.014868552796542645, 0.020394543185830116, 0.007095777429640293, 0.051756441593170166, 0.015511699952185154, -0.03258049488067627, -0.019971419125795364, 0.028823157772421837, 0.023441029712557793, -0.02462577633559704, -0.024575000628829002, -0.027655338868498802, -0.008445540443062782, 0.006266456097364426, -0.02318715676665306, -0.021342338994145393, -0.029703255742788315, 0.014216942712664604, 0.04285392537713051, 0.036828652024269104, 0.012177488766610622, -0.03760719671845436, 0.04562961682677269, -0.011813602410256863, -0.002650867449119687, 0.028332335874438286, -0.043463222682476044, 0.018600499257445335, 0.005162104032933712, -0.03307131677865982, -0.0007034424925222993, -0.012338275089859962, 0.05686777085065842, 0.03264819458127022, 0.0350007601082325, 0.0003353251959197223, -0.008750190027058125, 0.0025535491295158863, -0.034729961305856705, 0.010451145470142365, -0.02917858213186264, 0.02430420182645321, -0.006427242886275053, 0.03720099851489067, -0.03420528769493103, 0.030109453946352005, -0.03987513855099678, 0.06197910010814667, 0.027824588119983673, -0.03393448889255524, 0.007853168062865734, -0.05202724039554596, 0.04481722041964531, -0.020800741389393806, 0.02295020781457424, 0.004700899589806795, 0.0283492598682642, -0.02049609273672104, -0.022899432107806206, 0.023847227916121483, 0.03479766100645065, 0.05893261358141899, -0.009858773089945316, -0.013023735024034977, 0.039435092359781265, -0.0077473875135183334, 0.04183842986822128, 0.034002188593149185, 0.024828875437378883, -0.0504024475812912, 0.002187547506764531, -0.018363550305366516, -0.035948555916547775, -0.036422453820705414, -0.03361291438341141, -0.014809315092861652, -0.01839740015566349, 0.027012191712856293, 0.012592148967087269, 0.010197271592915058, -0.014538516290485859, -0.031480371952056885, -0.04887920245528221, -0.0003366474702488631, -0.024371901527047157, -0.07656838744878769, 0.00024382479023188353, -0.07900558412075043, 0.01946367137134075, -0.01985294558107853, 0.03825034573674202, 0.004840530455112457, -0.045595765113830566, -0.03571160510182381, 0.005094404332339764, -0.05663082003593445, -0.015054726973176003, -0.03872424364089966, 0.029770955443382263, 0.0157486479729414, 0.009224087931215763, 0.0420076809823513, -0.020140668377280235, 0.018617425113916397, -0.010840418748557568, 0.04366632550954819, 0.008851739577949047, 0.031801946461200714, -0.006854597479104996, -0.057172417640686035, 0.04779600724577904, -0.04244772717356682, 0.025895144790410995, -0.04251542687416077, 0.013421471230685711, 0.03693019971251488, -0.0025852832477539778, -0.031328048557043076, 0.03203889727592468, -0.03841959312558174, -0.015156276524066925, 0.024845799431204796, 0.06275764852762222, -0.0494208000600338, 0.01783887855708599, -0.00437932601198554, 0.023644128814339638, 0.06800437718629837, 0.02438882738351822, -0.0065922606736421585, -0.029855579137802124, -0.014377729035913944, -0.005729089491069317, 0.048100654035806656, 0.0607605054974556, -0.024084176868200302, 0.10446067899465561, -0.014860089868307114, -0.006613417062908411, -0.028416959568858147, -0.03540695831179619, 0.08658795058727264, 0.026859866455197334, 0.03459456190466881, 0.0006087686633691192, 0.030194077640771866, 0.004637431353330612, 0.029060106724500656, -0.039333540946245193, 0.06793667376041412, 0.020868441089987755, 0.014656990766525269, -0.03689635172486305, -0.038081094622612, -0.03161577135324478, 0.019429821521043777, -0.09491501748561859, 0.0019082860089838505, 0.0033130552619695663, -0.0157486479729414, -0.05981270968914032, -0.024050327017903328, 0.062452998012304306, -0.0308033749461174, 0.06590568274259567, 0.019074397161602974, 0.0016565276309847832, -0.019159022718667984, -0.009004063904285431, -0.09538891166448593, 0.01572326198220253, -0.03896119445562363, 0.028180010616779327, -0.009181775152683258, 0.031480371952056885, 0.04840530455112457, -0.002691064029932022, -0.054329030215740204, 0.022070111706852913, 0.003334211418405175, -0.009926472790539265, 0.03547465801239014, -0.011669740080833435, 0.10418988019227982, -0.04034903645515442, 0.011119680479168892, -0.037979546934366226, -0.023068681359291077, 0.019429821521043777, 0.02399955317378044, 0.005682545714080334, -0.020292993634939194, 0.008356684818863869, 0.010239583440124989, -0.023356406018137932, -0.0073623452335596085, -0.004066214896738529, -0.029280131682753563, 0.014521591365337372, -0.0013688039034605026, 0.007159246131777763, 0.015647098422050476, -0.009147925302386284, -0.004848992917686701, -0.013556870631873608, 0.003795415861532092, 0.0030316782649606466, -0.07744848728179932, 0.01446235366165638, -0.054092083126306534, 0.04058598726987839, 0.03557620570063591, -0.029381681233644485, 0.011161992326378822, -0.00006822863360866904, 0.0401797890663147, 0.007802393287420273, 0.014039230532944202, -0.006782666314393282, 0.009173313155770302, -0.03970589116215706, -0.04759290814399719, -0.01642564684152603, -0.009376412257552147, -0.0009409204358235002, -0.021376188844442368, -0.015469387173652649, 0.021697761490941048, -0.043801724910736084, 0.020225293934345245, -0.00805626716464758, -0.08909284323453903, 0.030024828389286995, -0.030041754245758057, -0.00711270235478878, -0.04204152897000313, -0.03330826386809349, 0.051011744886636734, 0.032377395778894424, -0.017018018290400505, 0.0105357700958848, -0.009037913754582405, -0.001190034206956625, -0.031886570155620575, 0.04166918247938156, -0.018752824515104294, -0.04248157888650894, 0.013573795557022095, -0.0016025794902816415, 0.03129419684410095, -0.04603581503033638, 0.010264971293509007, -0.0432601235806942, -0.003911774605512619, -0.00907176360487938, 0.006025275681167841, 0.030041754245758057, -0.020766891539096832, -0.06529638916254044, -0.022984057664871216, 0.039672039449214935, -0.03628705441951752, 0.02875545807182789, 0.01636640913784504, -0.006359543185681105, -0.04075523465871811, 0.00793779268860817, 0.10148189216852188, 0.002284865826368332, -0.04386942461133003, -0.02560742199420929, 0.024676550179719925, -0.019514447078108788, 0.005885644815862179, 0.029720179736614227, -0.031564999371767044, -0.015376300550997257, 0.010391907766461372, 0.01596021093428135, 0.022476309910416603, 0.0012767745647579432, -0.06864752620458603, -0.025725895538926125, 0.035779304802417755, -0.005102866794914007, -0.03865654394030571, -0.009444111958146095, -0.019040547311306, 0.0027333765756338835, -0.021494662389159203, -0.029313981533050537, 0.10818416625261307, -0.0432601235806942, -0.026707543060183525, -0.004912461619824171, -0.006558410823345184, -0.01612946018576622, 0.03916429355740547, -0.073928102850914, -0.07135551422834396, 0.008513241074979305, -0.0450880192220211, -0.013759969733655453, 0.044546421617269516, 0.022882508113980293, -0.029855579137802124, -0.0017453836044296622, -0.02780766226351261, 0.017449604347348213, 0.09823230654001236, -0.04481722041964531, -0.028620058670639992, -0.016865694895386696, 0.00453588180243969, 0.04921770095825195, -0.003793300362303853, 0.025015048682689667, -0.047762155532836914, 0.02010681852698326, 0.0038779249880462885, -0.0071761710569262505, 0.01130585465580225, -0.018922073766589165, 0.022425534203648567, 0.05761246755719185, -0.04238002747297287, 0.021020764485001564, -0.05260268598794937, -0.02146081253886223, 0.0017834646860137582, -0.007861630991101265, 0.004992854781448841, 0.04742365702986717, 0.08117197453975677, 0.018346626311540604, -0.03628705441951752, -0.052162639796733856, 0.0695953220129013, -0.04045058786869049, 0.0002698733296710998, 0.06008350849151611, -0.048913054168224335, -0.009461036883294582, 0.05487062782049179, -0.01954829692840576, 0.048506852239370346, -0.03110802359879017, -0.015689412131905556, -0.004447025712579489, 0.018532799556851387, 0.02723221480846405, 0.03450993448495865, -0.05321198329329491, -0.0026487517170608044, 0.000336911907652393, 0.012287500314414501, 0.03520385921001434, -0.005915263667702675, -0.03929969295859337, -0.04078908637166023, 0.04265082627534866, -0.04532496631145477, -0.0302448533475399, -0.013683807104825974, -0.018109677359461784, 0.05179028958082199, -0.0047601368278265, -0.0068969097919762135, -0.0334605909883976, -0.00895328912883997, 0.027604563161730766, 0.01751730404794216, 0.06116670370101929, 0.013302995823323727, -0.00793779268860817, 0.008250904269516468, -0.03445916250348091, 0.04400482401251793, 0.02494734898209572, 0.024033403024077415, 0.004370863549411297, 0.014123855158686638, -0.03811494633555412, -0.024168802425265312, -0.055547624826431274, 0.011661278083920479, -0.006211449857801199, 0.029940204694867134, -0.04667896032333374, -0.027943061664700508, 0.01713649369776249, -0.006951915565878153, -0.03183579817414284, 0.025675121694803238, -0.02179931104183197, 0.0379456952214241, 0.032140444964170456, 0.042109228670597076, -0.019632920622825623, 0.055649176239967346, 0.006164906546473503, -0.0308033749461174, -0.06783512234687805, 0.06197910010814667, -0.02430420182645321, 0.016400258988142014, -0.09484731405973434, -0.0660749301314354, -0.022070111706852913, -0.008733265101909637, 0.0028497353196144104, -0.0006278092041611671, -0.009147925302386284, -0.04149993136525154, 0.029110882431268692, -0.03791184723377228, 0.03202196955680847, -0.011974388733506203, 0.06979841738939285, -0.01668798178434372, 0.0076712253503501415, 0.019666770473122597, 0.03940124064683914, 0.0017570194322615862, 0.011508953757584095, 0.013421471230685711, -0.057409368455410004, 0.009173313155770302, 0.053618185222148895, -0.012050551362335682, -0.04742365702986717, -0.0064187804237008095, 0.03591470420360565, -0.023694904521107674, -0.02714759111404419, 0.009444111958146095, -0.031412672251462936, 0.06275764852762222, 0.003332095919176936, 0.012981422245502472, 0.0017898115329444408, 0.06648112833499908, -0.06323154270648956, -0.07372500002384186, 0.07778698951005936, 0.09444111585617065, -0.08002107590436935, 0.0077643124386668205, 0.023627204820513725, 0.0471867099404335, 0.010383445769548416, -0.0009504407062195241, -0.011965926736593246, 0.00988416001200676, -0.04532496631145477, -0.033189792186021805, -0.03801339492201805, -0.013565332628786564, 0.03176809847354889, 0.017018018290400505, -0.018752824515104294, 0.04068753495812416, -0.0035246170591562986, 0.03980743885040283, 0.021274639293551445, -0.04261697828769684, 0.01499548926949501, 0.0016046951059252024, -0.008373609744012356, -0.009029450826346874, -0.027164515107870102, 0.033189792186021805, 0.007666993886232376, 0.049319252371788025, 0.03361291438341141, 0.01993756927549839, -0.03222506865859032, 0.008635946549475193, -0.0236610546708107, -0.007997030392289162, 0.04529111832380295, -0.019649846479296684, 0.040552135556936264, -0.02699526585638523, 0.01674721948802471, 0.04058598726987839, -0.042109228670597076, -0.051756441593170166, 0.08042727410793304, -0.023762604221701622, 0.057172417640686035, 0.012397512793540955, 0.038047246634960175, 0.026555217802524567, 0.0050605544820427895, 0.022916357964277267, 0.06157290190458298, 0.016696445643901825, -0.0348653607070446, 0.04640816152095795, -0.01783887855708599, 0.010747331194579601, -0.06590568274259567, -0.024270351976156235, 0.00567408325150609, -0.012989885173738003, 0.01593482308089733, 0.03567775711417198, -0.00115406874101609, -0.013057584874331951, 0.03649015352129936, -0.025675121694803238, -0.0040090931579470634, -0.03454378619790077, 0.014513128437101841, 0.0334605909883976, 0.011551265604794025, 0.01822815090417862, 0.08536935597658157, 0.028230786323547363, -0.07704228907823563, -0.054024383425712585, 0.00841592252254486, -0.022391684353351593, -0.04471566900610924, -0.05050399526953697, 0.04156763106584549, 0.03195426985621452, -0.06458553671836853, -0.01628178358078003, -0.008648640476167202, -0.00793779268860817, 0.039435092359781265, -0.11129835247993469, -0.05598767474293709, -0.001214363845065236, -0.08469235897064209, 0.015300137922167778, -0.05202724039554596, 0.06143750250339508, 0.009858773089945316, 0.02535354718565941, 0.01287987269461155, -0.04451256990432739, 0.06167444959282875, -0.03533925861120224, 0.026199793443083763, 0.03161577135324478, -0.028620058670639992, 0.007599294185638428, -0.13154056668281555, -0.0411614328622818, -0.050131648778915405, -0.03564390540122986, -0.048269905149936676, 0.013032197020947933, 0.026538291946053505, 0.050605546683073044, 0.024202652275562286, -0.034002188593149185, 0.004510494414716959, 0.022340910509228706, -0.011009668000042439, 0.03144652396440506, 0.05537837743759155, 0.02699526585638523, -0.05023319646716118, 0.0195313710719347, -0.018278926610946655, -0.004463950637727976, 0.017238043248653412, 0.0021113851107656956, 0.0462050624191761, 0.0012767745647579432, 0.009824923239648342, -0.04451256990432739, -0.012262113392353058, 0.06059125438332558, 0.02983865514397621, -0.03916429355740547, -0.04959005117416382, -0.010882730595767498, -0.001732689910568297, -0.05226418748497963, 0.025658195838332176, -0.026876792311668396, 0.019142096862196922, -0.001151953125372529, 0.03219122067093849, 0.0054329028353095055, 0.010264971293509007, 0.03469610959291458, 0.00004132063259021379, 0.02714759111404419, -0.026047470048069954, -0.03814879432320595, 0.02293328195810318, 0.023204080760478973, 0.04779600724577904, -0.04156763106584549, 0.07284490764141083, 0.04965775087475777, 0.04393712431192398, -0.038690391927957535, -0.03506845980882645, -0.08151046931743622, -0.03835189342498779, 0.008479390293359756, -0.04806680604815483, 0.00538635952398181, -0.007370807696133852, -0.04041673615574837, 0.015841735526919365, -0.008627483621239662, -0.05030089616775513, 0.014284642413258553, 0.026876792311668396, -0.022730182856321335, 0.058221764862537384, 0.008868664503097534, 0.03791184723377228, -0.011246616952121258, -0.04481722041964531, 0.0361178033053875, -0.024084176868200302, 0.03733639791607857, -0.001273601083084941, 0.006067587994039059, -0.016078684478998184, 0.06329924613237381, 0.003776375437155366, -0.002320831175893545, 0.04238002747297287, -0.0006352138589136302, 0.022171661257743835, 0.006249531172215939, -0.023762604221701622, -0.015080113895237446, -0.006647266913205385, -0.02950015664100647, 0.012515987269580364, 0.037234850227832794, -0.07853168249130249, -0.08123967051506042, 0.04166918247938156, -0.003516154596582055, -0.005458290688693523, -0.04481722041964531, 0.021731611341238022, -0.019582146778702736, -0.0012947572395205498, -0.06644728034734726, -0.08225516974925995, 0.0533473826944828, -0.0026974109932780266, -0.03176809847354889, 0.025065824389457703, -0.07088161259889603, 0.0074723572470247746, -0.03686250001192093, 0.02455807663500309, 0.03283436596393585, 0.011483565904200077, -0.08381225913763046, 0.009655673056840897, 0.018194301053881645, -0.031480371952056885, 0.023610278964042664, -0.01572326198220253, 0.01418309286236763, -0.026436742395162582, -0.03523770719766617, 0.004051405470818281, -0.0084709282964468, -0.03530540689826012, 0.0886189416050911, 0.050774794071912766, -0.01936212182044983, -0.002335640601813793, -0.02691064216196537, 0.02000526897609234, 0.0033490208443254232, 0.03557620570063591, -0.0009779436513781548, -0.013133746571838856, 0.008627483621239662, -0.03946894034743309, -0.023864153772592545, -0.033342115581035614, -0.044783368706703186, 0.07020461559295654, 0.038047246634960175, -0.001307450933381915, 0.022967131808400154, -0.08611404895782471, 0.044140223413705826, 0.04028133675456047, 0.0701369196176529, -0.10378368198871613, -0.020936140790581703, -0.005746014416217804, -0.0037086757365614176, 0.03129419684410095, 0.02584437094628811, -0.019429821521043777, -0.03144652396440506, -0.008648640476167202, 0.06035430729389191, 0.0483037531375885, 0.010324208065867424, 0.047525208443403244, 0.0293309073895216, -0.008377840742468834, -0.039672039449214935, -0.0014449660666286945, -0.023457955569028854, 0.024422677233815193, -0.03137882426381111, -0.026402892544865608, 0.05415978282690048, 0.0070069218054413795, 0.04336167499423027, 0.09078533202409744, -0.0075654443353414536, 0.008250904269516468, -0.010527307167649269, 0.06824132800102234, -0.03669325262308121, -0.024439601227641106, -0.10046639293432236, -0.0006473786197602749, 0.08421845734119415, -0.01927749626338482, 0.032529719173908234, 0.06624418497085571, -0.0046755122020840645, -0.03588085621595383, 0.025590496137738228, -0.03831804543733597, -0.019971419125795364, 0.003543657483533025, -0.0017982739955186844, 0.02295020781457424, 0.02504889853298664, -0.03435761108994484, -0.00006611301068915054, -0.0054329028353095055, 0.0033659457694739103, 0.014893939718604088, 0.00964721105992794, 0.07006921619176865, 0.033189792186021805, -0.03730254992842674, 0.006283381022512913, 0.03361291438341141, -0.006469555199146271, 0.015824811533093452, -0.018109677359461784, -0.01765270344913006, -0.0009694812470115721, 0.01171205285936594, 0.04041673615574837, 0.04119528457522392, -0.01499548926949501, -0.013963068835437298 ]
23,422
conexions.proxy
get_timeout
null
def get_timeout(self) -> int: return self.__timeout
(self) -> int
[ 0.023474236950278282, 0.02584066055715084, 0.015994954854249954, 0.028880737721920013, 0.04912489280104637, 0.0050783115439116955, 0.002733479021117091, 0.011149830184876919, -0.017704997211694717, -0.053166814148426056, -0.018326831981539726, -0.019242309033870697, -0.03318175673484802, -0.004892624914646149, 0.04629209265112877, 0.01721271313726902, -0.005963561590760946, -0.01868956908583641, 0.003888622159138322, -0.03411450609564781, 0.03803551569581032, 0.026842504739761353, 0.004879670217633247, -0.08152935653924942, -0.01286851055920124, 0.047259390354156494, 0.005225133616477251, 0.012298496440052986, 0.03779369220137596, -0.01281669083982706, -0.09410422295331955, 0.02369878813624382, -0.028967102989554405, 0.03789733350276947, -0.016893159598112106, 0.03934827819466591, -0.07731470465660095, -0.029899854212999344, -0.03634274750947952, -0.025080639868974686, -0.057657837867736816, -0.029882581904530525, -0.010847549885511398, -0.0009370694169774652, 0.010234352201223373, -0.061665210872888565, -0.0009073811233974993, -0.011944396421313286, -0.02685977704823017, -0.032732654362916946, 0.039901018142700195, 0.01619359478354454, -0.033250849694013596, 0.012911693193018436, -0.06308161467313766, 0.021211450919508934, -0.03772459924221039, 0.0025996118783950806, -0.024251528084278107, -0.010458903387188911, -0.04218107834458351, 0.018655022606253624, -0.03375177085399628, 0.005933333188295364, 0.0021094856783747673, 0.012505774386227131, 0.005967879667878151, 0.011244832538068295, 0.030815333127975464, 0.03779369220137596, 0.09451878070831299, 0.02829344943165779, -0.008602038025856018, -0.015994954854249954, 0.030521688982844353, -0.024372441694140434, -0.06926540285348892, -0.01760999485850334, -0.01451809797435999, 0.029571665450930595, -0.03720640391111374, 0.037033673375844955, 0.04055739939212799, 0.005812421441078186, 0.06511984765529633, -0.015131295658648014, 0.0034719067625701427, -0.024096069857478142, -0.09790431708097458, -0.011201649904251099, -0.03299175202846527, 0.028690733015537262, 0.0009278930374421179, 0.0162972342222929, -0.03497816622257233, -0.03793187811970711, -0.017860455438494682, 0.0016916909953579307, 0.022092383354902267, -0.06663988530635834, -0.0011745754163712263, 0.06781446188688278, 0.06297796964645386, -0.02502882108092308, 0.08567491918802261, 0.007656332105398178, -0.023819699883461, -0.02248966507613659, 0.03312993794679642, -0.02666977234184742, 0.033164482563734055, 0.005112858023494482, -0.01470810268074274, 0.04549752548336983, 0.05672508478164673, 0.03845007345080376, -0.04504842311143875, 0.01174575462937355, 0.012134401127696037, 0.013853081502020359, -0.027740709483623505, 0.030780786648392677, 0.018326831981539726, -0.08940592408180237, -0.012687142007052898, 0.04546298086643219, -0.048192139714956284, 0.01451809797435999, 0.026013391092419624, 0.020313246175646782, 0.025685202330350876, 0.02421698160469532, 0.04307928308844566, 0.05454866588115692, 0.020451432093977928, 0.022662397474050522, 0.04017738997936249, 0.11497020721435547, -0.006866084411740303, 0.0036446384619921446, -0.051646772772073746, 0.03675730153918266, 0.01552857831120491, -0.06183794513344765, 0.038657352328300476, 0.033458128571510315, 0.011866666376590729, -0.00391885032877326, -0.03955555707216263, -0.02708432823419571, 0.025495197623968124, -0.08657312393188477, -0.0017014071345329285, -0.004465113859623671, 0.024182435125112534, 0.021332362666726112, -0.029139835387468338, -0.004728530067950487, -0.026531586423516273, -0.0942424088716507, -0.06601805239915848, -0.028120718896389008, -0.0026600679848343134, -0.06736535578966141, 0.02552974224090576, 0.0015891315415501595, 0.00990616250783205, 0.02442426048219204, 0.018447743728756905, 0.03361358493566513, -0.012117127887904644, 0.027222514152526855, 0.00017313651915173978, -0.0024614264257252216, -0.012238039635121822, 0.05161222815513611, 0.014846288599073887, 0.03793187811970711, 0.01492401771247387, 0.02217874862253666, -0.012583503499627113, -0.027913440018892288, -0.03872644528746605, -0.01671179011464119, 0.017264531925320625, 0.010692091658711433, 0.03952100872993469, 0.035720910876989365, -0.02238602563738823, 0.029986221343278885, -0.0008728348184376955, -0.007703833281993866, 0.02022688090801239, -0.004292382393032312, 0.013844444416463375, 0.01276487112045288, 0.02768888883292675, 0.006425618659704924, 0.10909733176231384, 0.0978352278470993, -0.013680349104106426, 0.046222999691963196, -0.02627248875796795, -0.01656496897339821, 0.008299757726490498, -0.08076933771371841, -0.011305288411676884, -0.04339019954204559, -0.036100924015045166, -0.02236875332891941, -0.0753801092505455, -0.03831188753247261, 0.009353420697152615, 0.03342358022928238, -0.009629791602492332, -0.05099039524793625, -0.031523533165454865, 0.00041833455907180905, 0.02167782559990883, 0.03300902619957924, 0.06964541226625443, -0.06353071331977844, -0.0035928189754486084, -0.08111479878425598, 0.02257603220641613, -0.0183959249407053, -0.01721271313726902, -0.013671712949872017, 0.02808617241680622, -0.03751732036471367, 0.0006175157614052296, 0.027464337646961212, 0.01026026252657175, 0.045601166784763336, 0.0367918498814106, 0.010251625441014767, -0.020451432093977928, -0.011417564004659653, -0.06494711339473724, -0.04007375240325928, 0.00296450755558908, -0.006183794233947992, 0.013378068804740906, 0.054997768253088, 0.002169941784814, -0.02565065585076809, 0.017247259616851807, 0.0392446406185627, 0.05140494927763939, 0.00436579342931509, 0.031108977273106575, -0.03952100872993469, -0.013006695546209812, 0.0032581514678895473, -0.002429039217531681, 0.04079922288656235, -0.02421698160469532, -0.00860635656863451, -0.024700630456209183, 0.025892479345202446, 0.039382822811603546, -0.05444502830505371, -0.06328888982534409, 0.018257739022374153, 0.0003932344843633473, 0.016841338947415352, -0.013058515265583992, -0.01970868557691574, -0.024078797549009323, 0.011270742863416672, 0.12837418913841248, -0.033872682601213455, -0.07607103139162064, -0.0511285774409771, -0.06570713222026825, -0.07102727144956589, 0.002284376649186015, -0.009577971883118153, -0.09203144162893295, -0.0416974276304245, 0.004210334736853838, -0.0004480228235479444, 0.019069578498601913, -0.053166814148426056, -0.11731936037540436, 0.039901018142700195, 0.0027896168176084757, 0.0815984457731247, -0.04988491162657738, 0.02685977704823017, -0.05786511301994324, -0.04425385966897011, 0.01837865076959133, -0.025011548772454262, 0.06346162408590317, -0.03800097107887268, -0.05834876373410225, -0.007768607698380947, 0.017558176070451736, 0.023042406886816025, -0.011046191677451134, -0.04380475729703903, -0.1012207642197609, 0.030262591317296028, -0.03371722623705864, 0.06729626655578613, -0.006192430853843689, -0.002958030207082629, 0.04401203244924545, 0.018551383167505264, -0.029450751841068268, -0.014673557132482529, 0.02055506967008114, -0.013118971139192581, 0.03800097107887268, 0.042250171303749084, -0.018430471420288086, -0.01767045073211193, -0.022334206849336624, 0.042353808879852295, -0.018240466713905334, 0.037344589829444885, 0.01787772960960865, -0.021401455625891685, 0.031834449619054794, -0.030936244875192642, 0.02542610466480255, 0.06570713222026825, 0.042250171303749084, -0.03349267318844795, -0.05855604261159897, -0.04584299027919769, 0.010286171920597553, -0.06446346640586853, -0.008027705363929272, 0.002420402830466628, 0.044495683163404465, 0.02461426518857479, 0.036515478044748306, 0.012238039635121822, 0.018119553104043007, -0.03159262612462044, -0.001932435785420239, 0.01032935455441475, 0.03810460865497589, -0.019985055550932884, 0.005238088313490152, -0.011892576701939106, 0.08539854735136032, -0.0322144590318203, 0.00880499742925167, -0.01972595788538456, -0.02903619594871998, 0.04535933956503868, -0.036722756922245026, -0.0329226590692997, 0.022938767448067665, 0.02637612819671631, 0.028379816561937332, 0.014552644453942776, -0.0823584645986557, 0.025391558185219765, 0.048883065581321716, 0.03665366396307945, 0.017825910821557045, 0.04045376181602478, 0.00017327147361356765, -0.005678554065525532, 0.04463386908173561, -0.0011303129140287638, -0.07282368093729019, -0.06632896512746811, 0.040108297020196915, 0.0021030083298683167, 0.04328656196594238, 0.009482969529926777, -0.04504842311143875, 0.017411353066563606, -0.03914099931716919, -0.00368998060002923, 0.01308442559093237, -0.027550702914595604, -0.02062416262924671, -0.03231809660792351, 0.0007610989850945771, -0.0006126576918177307, -0.06263250857591629, -0.039901018142700195, 0.0025737020187079906, 0.008519990369677544, -0.03568636626005173, 0.012782144360244274, -0.06771082431077957, 0.01303260587155819, -0.02565065585076809, 0.022126929834485054, -0.012903057038784027, -0.011149830184876919, 0.030728965997695923, 0.011892576701939106, 0.030694421380758286, 0.01789500191807747, 0.02483881637454033, 0.03941737115383148, 0.021522367373108864, 0.005000582430511713, 0.047259390354156494, 0.00873158685863018, -0.033976323902606964, -0.04325201362371445, -0.047639399766922, -0.018465017899870872, -0.027775254100561142, 0.017039980739355087, -0.023957883939146996, 0.0030983746983110905, -0.05506686121225357, 0.010562542825937271, 0.050748568028211594, -0.03268083557486534, -0.01573585718870163, -0.030072586610913277, 0.0010882095666602254, 0.017100436612963676, -0.016970887780189514, 0.031938087195158005, 0.013041242025792599, 0.05506686121225357, -0.04218107834458351, 0.016124503687024117, -0.008278165943920612, 0.05427229404449463, 0.01415536180138588, 0.03762096166610718, 0.01879320666193962, 0.0382082499563694, -0.007440417539328337, -0.043182920664548874, -0.010061620734632015, 0.010821640491485596, 0.045739348977804184, 0.020710529759526253, 0.039071906358003616, 0.023819699883461, 0.07054361701011658, -0.07586375623941422, 0.014967200346291065, -0.009292964823544025, 0.02124599739909172, 0.0010833515552803874, -0.007941339164972305, -0.004421931225806475, 0.069438137114048, -0.03463270142674446, -0.008558855392038822, -0.011236196383833885, -0.07807472348213196, 0.01818864606320858, -0.0014379912754520774, -0.05589597299695015, -0.012859874404966831, 0.04615390673279762, 0.05199223756790161, -0.038968268781900406, -0.04466841369867325, 0.03972828760743141, 0.04708665609359741, -0.027740709483623505, -0.06657078862190247, 0.04180106893181801, 0.003223604988306761, 0.03271538019180298, -0.06505075097084045, -0.033561766147613525, 0.004693983588367701, -0.02421698160469532, 0.008118389174342155, 0.06705444306135178, 0.01646132953464985, -0.025218825787305832, 0.020796895027160645, -0.007349733263254166, 0.06936904788017273, -0.0011778142070397735, -0.009405240416526794, -0.000448562583187595, -0.051335856318473816, -0.005112858023494482, 0.011469383724033833, -0.06221795454621315, -0.052372246980667114, 0.01970868557691574, 0.02860436774790287, 0.004637845791876316, 0.014250364154577255, -0.036411840468645096, 0.00416283356025815, 0.006278796587139368, -0.006866084411740303, 0.04808850213885307, -0.02114235796034336, 0.01575312949717045, 0.05375409871339798, 0.008787724189460278, 0.03420087322592735, -0.05599961057305336, -0.032352644950151443, 0.0022012493573129177, 0.012747598811984062, -0.01026889868080616, 0.029347114264965057, 0.0367918498814106, -0.0008334303856827319, 0.021107811480760574, -0.0003287299768999219, -0.03497816622257233, 0.0034827026538550854, 0.004195220768451691, 0.03972828760743141, -0.013196701183915138, -0.002480858936905861, 0.039382822811603546, 0.019466860219836235, -0.035824552178382874, -0.04124832525849342, 0.0213669091463089, 0.01179757434874773, 0.02247239276766777, -0.008558855392038822, 0.05199223756790161, 0.040626492351293564, -0.053685009479522705, -0.016383599489927292, 0.0007853893912397325, 0.015468122437596321, 0.03024531900882721, -0.08035477995872498, -0.01912139728665352, -0.11296652257442474, -0.005225133616477251, 0.010122076608240604, -0.06491256505250931, 0.0378282405436039, 0.003063828218728304, -0.01486356183886528, -0.007695196662098169, -0.05078311637043953, 0.09479515254497528, 0.019587773829698563, 0.015848131850361824, 0.04321746900677681, 0.0016841338947415352, 0.011927123181521893, -0.03872644528746605, 0.011883939616382122, 0.04252653941512108, 0.05271771177649498, -0.029588937759399414, 0.0543413870036602, -0.0008032023324631155, 0.02299058809876442, -0.04187016189098358, 0.01575312949717045, -0.009742067195475101, -0.018862299621105194, -0.028759825974702835, 0.024596992880105972, 0.010458903387188911, -0.06712353229522705, 0.00980252306908369, -0.028949830681085587, 0.02727433294057846, 0.02421698160469532, -0.024389714002609253, -0.01746317371726036, 0.02627248875796795, -0.047846678644418716, 0.06525803357362747, -0.003577705007046461, -0.023128772154450417, 0.04774303734302521, 0.025115186348557472, 0.03658457100391388, -0.02635885588824749, -0.03200718015432358, -0.02879437245428562, -0.018361378461122513, -0.03452906385064125, 0.013809897936880589, -0.0144576421007514, -0.03585909679532051, 0.016469966620206833, -0.02850072830915451, 0.017299078404903412, 0.021695099771022797, 0.026842504739761353, 0.008049296215176582, -0.019535953179001808, 0.016141775995492935, 0.05095584690570831, 0.047984860837459564, 0.01073527429252863, -0.004918534774333239, 0.07690014690160751, 0.011262105777859688, -0.005432411562651396, -0.019276855513453484, 0.0329744778573513, 0.018205920234322548, -0.03456360846757889, 0.0027226831298321486, -0.07234002649784088, -0.0010444868821650743, -0.029260747134685516, -0.017739543691277504, 0.006019699387252331, -0.029191654175519943, 0.024873362854123116, 0.009672974236309528, -0.0031113293953239918, -0.019484134390950203, 0.057485103607177734, 0.045601166784763336, -0.021487820893526077, 0.024890635162591934, 0.011262105777859688, -0.0325944684445858, -0.036930035799741745, -0.05751965194940567, -0.03824279457330704, -0.035928189754486084, -0.002480858936905861, 0.059937894344329834, -0.047259390354156494, -0.07261639833450317, 0.027118874713778496, -0.005346045829355717, 0.012738961726427078, -0.026738865301012993, -0.027844347059726715, -0.0020198810379952192, 0.01900048553943634, -0.03084987960755825, 0.0058901505544781685, -0.001608563819900155, -0.020313246175646782, -0.04781213030219078, 0.05758874490857124, -0.003353153821080923, 0.00034411391243338585, -0.03312993794679642, -0.005700145848095417, 0.030694421380758286, -0.026497039943933487, -0.05285589396953583, -0.11199922114610672, -0.0034848616924136877, 0.044081125408411026, -0.014716739766299725, -0.038968268781900406, -0.04394293949007988, -0.022748762741684914, -0.06705444306135178, -0.050714023411273956, 0.016616787761449814, -0.049504902213811874, -0.044495683163404465, 0.002727001439779997, 0.013948083855211735, 0.0008404476102441549, 0.06346162408590317, -0.01577903889119625, 0.04708665609359741, 0.05116312578320503, 0.02330150455236435, -0.0056612808257341385, -0.01547675859183073, -0.017592722550034523, 0.006550848949700594, 0.0385882593691349, 0.045013878494501114, 0.03758641332387924, -0.04553207382559776, -0.009267054498195648, 0.04356293007731438, 0.009837069548666477, 0.03665366396307945, -0.001086050528101623, 0.006071518640965223, -0.0027010918129235506, -0.026635225862264633, -0.050023097544908524, -0.04884852096438408, 0.07786744087934494, -0.014621737413108349, -0.053892284631729126, 0.01777409017086029, -0.007401552516967058, 0.04732848331332207, -0.02228238806128502, -0.005959243047982454, -0.01027753483504057, 0.003851916640996933, -0.042457446455955505, 0.04791576787829399, 0.005950606428086758, 0.03045259602367878, -0.006827219855040312, -0.01900048553943634, -0.007081998977810144, 0.0037115721497684717, 0.0001846069935709238, 0.05230315402150154, 0.012669868767261505, -0.02053779736161232, 0.019069578498601913, 0.0017478287918493152, 0.041421059519052505, -0.03789733350276947, 0.05755419656634331, -0.014319457113742828, 0.037655506283044815, 0.015744492411613464, 0.01951868087053299, -0.03883008286356926, 0.042353808879852295, -0.04180106893181801, -0.009681611321866512, 0.03015895187854767, 0.05403047055006027, -0.032128091901540756, 0.00789815653115511, 0.021695099771022797, -0.05050674453377724, -0.02126326970756054, 0.02350878156721592, 0.03375177085399628, -0.005354682449251413, 0.03554818034172058, 0.03390723094344139, 0.026324309408664703, 0.04504842311143875, -0.005829694215208292, 0.0023340368643403053, -0.00039107532938942313, -0.02779252827167511, -0.05872877314686775, 0.030487142503261566, 0.046948473900556564, -0.02616885118186474, 0.026790684089064598, -0.0241997092962265, 0.02818981185555458, -0.030780786648392677, 0.02257603220641613, 0.024372441694140434, -0.03900281339883804, 0.01405172236263752, -0.007069044280797243, 0.08912955224514008, 0.012842601165175438, 0.009716156870126724, 0.015070839785039425, 0.040626492351293564, -0.02432062104344368, 0.025374284014105797, -0.017247259616851807, 0.024096069857478142 ]
23,423
conexions.proxy
get_verbosalo
null
def get_verbosalo(self) -> bool: return self.__verbosalo
(self) -> bool
[ 0.03974613919854164, -0.02096668630838394, 0.028143547475337982, -0.005805567838251591, 0.058371804654598236, -0.0375589057803154, 0.0037358123809099197, -0.009415358304977417, -0.0004643065913114697, 0.007023070938885212, -0.04367632418870926, -0.015378988347947598, -0.011363362893462181, -0.009979254566133022, -0.022590024396777153, -0.0006034116959199309, -0.004874284844845533, -0.006591605022549629, 0.04511169716715813, 0.030364956706762314, 0.005002443213015795, 0.06390824168920517, 0.019565491005778313, -0.04623949155211449, -0.01660076342523098, 0.03463689982891083, -0.025187363848090172, -0.004310388583689928, 0.005327110644429922, 0.021223003044724464, -0.02978397347033024, -0.08113270252943039, 0.07969733327627182, -0.009150497615337372, 0.04938364028930664, 0.04340292140841484, 0.03463689982891083, 0.05286954343318939, -0.044154781848192215, -0.03017699159681797, -0.030518747866153717, -0.03506409376859665, 0.019668016582727432, 0.03735385462641716, -0.030826326459646225, -0.03386794775724411, -0.007416089531034231, 0.06004640460014343, 0.00036605194327421486, -0.02476016990840435, 0.05878191068768501, -0.012089593335986137, 0.025101926177740097, 0.005254487507045269, -0.023974133655428886, 0.0051946802996098995, 0.01990724541246891, 0.06401076167821884, -0.005660322029143572, 0.04340292140841484, -0.005946542136371136, 0.017805449664592743, 0.04193337261676788, -0.0917271226644516, 0.06677898019552231, 0.018437698483467102, -0.011952891014516354, 0.06031980738043785, 0.005818383768200874, 0.06763336807489395, -0.041557442396879196, 0.002710546599701047, -0.039267681539058685, 0.054749198257923126, -0.054885897785425186, -0.04596608504652977, -0.04367632418870926, -0.023974133655428886, 0.006241305731236935, -0.016754552721977234, -0.006638596300035715, 0.01447333674877882, 0.03294520825147629, -0.02884414605796337, -0.015806181356310844, -0.04275358468294144, 0.02792140655219555, 0.00847553089261055, 0.041625794023275375, 0.0004130433080717921, -0.06284879893064499, 0.027972670271992683, 0.04203590005636215, 0.030416220426559448, -0.04193337261676788, 0.0036097902338951826, -0.014780916273593903, -0.008672039955854416, 0.034346405416727066, -0.06653975695371628, -0.05536435544490814, 0.093709297478199, 0.06773589551448822, 0.04610278829932213, 0.007343466859310865, 0.06633470207452774, -0.030159903690218925, 0.017395343631505966, 0.01489198673516512, -0.031168082728981972, -0.038003187626600266, -0.0029924947302788496, 0.022641288116574287, 0.016874168068170547, -0.027630915865302086, -0.054988425225019455, -0.01565239205956459, -0.01018430758267641, -0.023051394149661064, 0.05222020670771599, -0.0095520606264472, 0.010833642445504665, 0.0020793674048036337, -0.10642259567975998, 0.03964361175894737, 0.04791409149765968, 0.018796540796756744, 0.00617295503616333, 0.019428787752985954, 0.01461003813892603, 0.015259373933076859, 0.03260345384478569, -0.025870874524116516, 0.03506409376859665, 0.0008298245375044644, -0.042924463748931885, 0.027442948892712593, 0.03180032968521118, 0.015737831592559814, 0.05707313120365143, -0.05389481037855148, 0.002943367464467883, 0.04008789360523224, -0.05874773487448692, -0.03410717844963074, 0.02961309626698494, 0.013900896534323692, 0.0006690927548334002, -0.015703655779361725, -0.015165390446782112, 0.03947273641824722, -0.040566351264715195, 0.006151595152914524, -0.019992684945464134, -0.03426096588373184, 0.020283175632357597, -0.03984866663813591, -0.028177723288536072, 0.0008239506278187037, -0.01726718619465828, 0.016053954139351845, 0.015242286026477814, -0.06172100454568863, -0.04203590005636215, -0.006053340621292591, -0.015925796702504158, 0.027306247502565384, 0.0468546487390995, 0.03250092640519142, 0.08017578721046448, -0.03414135426282883, 0.008287565782666206, -0.08625903725624084, 0.04688882455229759, 0.04791409149765968, 0.09165877103805542, -0.011226661503314972, 0.04504334554076195, 0.013695843517780304, 0.005361285991966724, -0.0358843058347702, -0.0060405246913433075, -0.05461249500513077, -0.04791409149765968, 0.041625794023275375, 0.016908342018723488, 0.07839865982532501, -0.007868915796279907, 0.01583181321620941, 0.01726718619465828, -0.0063993679359555244, -0.017395343631505966, 0.030928853899240494, -0.003242403268814087, -0.026110103353857994, -0.03463689982891083, 0.0015453747473657131, -0.020197737962007523, 0.008304653689265251, -0.06165265291929245, 0.005203224252909422, -0.014917618595063686, -0.047743212431669235, 0.053655579686164856, 0.005993533413857222, 0.04565850645303726, -0.0072964755818247795, 0.02655438520014286, 0.03226169943809509, -0.058337628841400146, -0.01758330874145031, -0.045214224606752396, 0.0017589717172086239, 0.0051946802996098995, 0.02609301544725895, -0.06941049546003342, 0.031629450619220734, 0.019223734736442566, -0.06172100454568863, 0.06599294394254684, 0.04982792213559151, -0.011875996366143227, 0.024982310831546783, 0.027494212612509727, -0.034910302609205246, 0.041625794023275375, -0.02173563651740551, 0.022179918363690376, 0.016404254361987114, -0.03868670016527176, -0.004118151031434536, 0.020419878885149956, -0.040600527077913284, 0.026400595903396606, -0.018027590587735176, 0.017532046884298325, 0.0231026578694582, 0.058371804654598236, -0.058337628841400146, -0.003925913944840431, 0.05826927721500397, -0.015703655779361725, 0.015310636721551418, 0.03379959613084793, -0.06951302289962769, -0.04805079475045204, 0.06175518035888672, -0.0017685836646705866, -0.023683641105890274, 0.0011875996133312583, 0.017173202708363533, -0.08379839360713959, 0.010953256860375404, -0.015361900441348553, 0.008526794612407684, -0.05697060748934746, -0.06401076167821884, 0.007655318360775709, -0.006912000477313995, -0.01510558370500803, -0.0435396246612072, 0.006540341768413782, 0.003385513322427869, 0.09316249191761017, -0.0471964068710804, 0.05519348010420799, 0.031851593405008316, -0.01617356948554516, -0.015780549496412277, -0.024435503408312798, 0.07491275668144226, -0.051194943487644196, -0.06917127221822739, -0.057278186082839966, -0.026212630793452263, -0.008202127180993557, 0.02578543685376644, 0.017805449664592743, -0.02768217772245407, 0.016728920862078667, 0.015054319985210896, -0.00046083563938736916, 0.04258270934224129, -0.019087033346295357, -0.04511169716715813, -0.014422073028981686, -0.024247538298368454, -0.02669108845293522, -0.0047076791524887085, -0.03289394453167915, 0.023871606215834618, 0.03615770861506462, 0.05047725513577461, 0.005908094346523285, 0.0887196734547615, -0.030860502272844315, 0.0161137618124485, -0.02113756537437439, 0.03902845457196236, -0.05105824023485184, -0.011713662184774876, -0.023188095539808273, -0.03967778757214546, -0.021752724424004555, -0.05290371924638748, 0.029339691624045372, 0.09425611048936844, -0.025375330820679665, 0.03626023605465889, -0.015062863938510418, -0.058679383248090744, 0.0365678146481514, 0.02874162048101425, 0.033389490097761154, -0.014669845812022686, -0.02599048987030983, 0.02124009095132351, 0.012439892627298832, -0.009500796906650066, 0.09582818299531937, -0.056355446577072144, 0.0187794528901577, -0.017104852944612503, -0.03414135426282883, 0.021786900237202644, -0.05874773487448692, 0.037798136472702026, -0.011363362893462181, 0.014567319303750992, -0.00822775810956955, -0.03728550300002098, -0.058371804654598236, 0.03197120875120163, 0.019668016582727432, -0.016301726922392845, -0.0032167716417461634, 0.020266087725758553, 0.02395704574882984, -0.00988527201116085, -0.05286954343318939, -0.021188827231526375, -0.0058440156280994415, 0.00410533556714654, 0.010090325027704239, 0.05057978257536888, 0.007608327083289623, -0.018266819417476654, -0.002247041091322899, 0.07525451481342316, -0.04603443667292595, -0.0339021235704422, -0.02236788347363472, 0.026998667046427727, 0.03649946302175522, -0.007903090678155422, -0.04829002171754837, -0.013695843517780304, 0.02947639301419258, 0.04931528866291046, 0.07252047210931778, -0.0217698123306036, 0.018591487780213356, -0.0438813790678978, 0.04726475477218628, -0.03260345384478569, -0.018950330093503, -0.025101926177740097, -0.009201761335134506, 0.03010863997042179, -0.048939358443021774, -0.019445875659585, 0.002691322937607765, -0.00960332341492176, -0.022692551836371422, 0.029322603717446327, 0.02728915959596634, -0.005779936444014311, -0.02535824291408062, 0.03718297556042671, 0.02253876067698002, 0.06530943512916565, 0.07949227839708328, -0.018728189170360565, 0.022948866710066795, 0.02874162048101425, -0.022094478830695152, -0.01455877535045147, 0.007915906608104706, -0.025734173133969307, -0.0069846236146986485, -0.022726725786924362, -0.0028600646182894707, -0.07293058186769485, 0.018728189170360565, -0.04702552780508995, -0.04230930283665657, -0.019548403099179268, -0.03595265746116638, 0.01018430758267641, 0.03130478411912918, 0.061071671545505524, 0.021086301654577255, -0.01642988622188568, -0.011055783368647099, -0.08359334617853165, -0.028929585590958595, 0.030364956706762314, 0.018933242186903954, -0.03646529093384743, -0.021684372797608376, -0.036738693714141846, -0.010235571302473545, -0.05102406442165375, -0.02785305678844452, -0.0231026578694582, -0.01018430758267641, 0.04794826731085777, 0.009791288524866104, 0.027442948892712593, 0.0471964068710804, 0.010901994071900845, 0.06151595339179039, 0.03998536989092827, 0.00787745974957943, 0.03246675059199333, 0.03974613919854164, 0.007903090678155422, -0.0006968603702262044, 0.022419147193431854, -0.03844746947288513, -0.01684853620827198, -0.01917247101664543, 0.05170757323503494, -0.0731356292963028, 0.023649465292692184, -0.02648603543639183, -0.028023933991789818, -0.0671207383275032, -0.012747472152113914, 0.05187845230102539, 0.02947639301419258, 0.017420975491404533, -0.058474328368902206, 0.03520079329609871, 0.01638716645538807, -0.04593190923333168, -0.013217385858297348, 0.027340423315763474, 0.10594414174556732, -0.06373736262321472, -0.015062863938510418, 0.03450019657611847, 0.008800198324024677, -0.008672039955854416, 0.04511169716715813, 0.01473819650709629, -0.012371541000902653, -0.01987306959927082, -0.035781778395175934, -0.03759308159351349, -0.0385499969124794, 0.016677657142281532, -0.05659467726945877, 0.03309899941086769, 0.02296595461666584, -0.023546939715743065, 0.013721474446356297, 0.03639693930745125, -0.03509826958179474, 0.014387897215783596, 0.010662765242159367, -0.04941781610250473, 0.03824241831898689, -0.029818149283528328, 0.03725132718682289, 0.00029262795578688383, -0.018420610576868057, 0.0108849061653018, 0.004690591245889664, -0.03304773569107056, -0.056252919137477875, -0.0005406675627455115, -0.053758107125759125, -0.028639093041419983, 0.006211402360349894, -0.02472599595785141, -0.06483098119497299, 0.00927011203020811, 0.051468346267938614, -0.04374467581510544, 0.035781778395175934, 0.04183084890246391, -0.008462714962661266, -0.004032712429761887, 0.010568782687187195, 0.06192605942487717, 0.029185902327299118, 0.01173075009137392, 0.0018508185166865587, 0.04217260330915451, -0.009543516673147678, 0.0064079114235937595, -0.020590756088495255, -0.07340903580188751, -0.021017950028181076, -0.08612233400344849, -0.03470524773001671, -0.05177592486143112, -0.05878191068768501, 0.013747106306254864, 0.020488228648900986, -0.03831076622009277, -0.00935555063188076, 0.038139890879392624, 0.02436715178191662, 0.008919812738895416, -0.01176492590457201, 0.003658917499706149, 0.04008789360523224, -0.0017066404689103365, 0.013046507723629475, -0.05276701599359512, -0.025084838271141052, -0.06753084808588028, -0.021342618390917778, -0.01394361536949873, -0.05163922533392906, -0.0005195748526602983, -0.002823753049597144, 0.02159893326461315, 0.02858782932162285, -0.07238376885652542, -0.027306247502565384, 0.0545099675655365, -0.025033574551343918, 0.033389490097761154, -0.048905182629823685, 0.015985604375600815, -0.03460272401571274, -0.0015464426251128316, 0.02539241872727871, -0.07634813338518143, -0.011226661503314972, 0.0074716247618198395, 0.02694740518927574, 0.023581115528941154, -0.011388994753360748, 0.0018390706973150373, 0.03841329365968704, 0.014815092086791992, -0.036909572780132294, 0.018864892423152924, -0.020727457478642464, -0.03865252435207367, 0.06643722951412201, 0.01248261146247387, 0.03735385462641716, 0.025016486644744873, 0.02247041091322899, 0.03330405429005623, 0.011021607555449009, -0.05222020670771599, -0.030587097629904747, 0.004519713576883078, -0.022111566737294197, 0.07340903580188751, -0.0037016370333731174, 0.03537167236208916, 0.03875504806637764, -0.011841820552945137, 0.017737099900841713, -0.030860502272844315, -0.03981449082493782, -0.004771758336573839, 0.02352985180914402, 0.0727938786149025, -0.010030517354607582, 0.039233505725860596, -0.04740145802497864, 0.00410533556714654, -0.028177723288536072, -0.00960332341492176, 0.0039002823177725077, -0.009927990846335888, 0.006826561875641346, -0.041899196803569794, 0.0004661755810957402, 0.03450019657611847, 0.003994265105575323, -0.018403522670269012, -0.04623949155211449, 0.022641288116574287, -0.010782379657030106, -0.05895278602838516, 0.020829984918236732, -0.015660936012864113, 0.045214224606752396, -0.018386434763669968, 0.02828025072813034, 0.04699135199189186, 0.036841221153736115, -0.028724532574415207, -0.005891006905585527, -0.02874162048101425, 0.016728920862078667, 0.009133409708738327, 0.008860005997121334, -0.020881248638033867, 0.001858294359408319, -0.019821805879473686, -0.02858782932162285, -0.013721474446356297, -0.014533143490552902, -0.01575491949915886, -0.024948136880993843, 0.015959972515702248, 0.03277433291077614, -0.017566220834851265, 0.01510558370500803, 0.0006429271306842566, -0.008578057400882244, 0.044120606034994125, 0.021513495594263077, -0.009193217381834984, -0.04798244312405586, -0.05560358613729477, 0.01987306959927082, -0.02694740518927574, 0.010662765242159367, -0.05765411630272865, 0.014763828366994858, -0.028143547475337982, 0.06787259876728058, -0.02775052934885025, -0.020419878885149956, -0.0003003708552569151, -0.011414626613259315, 0.025238627567887306, 0.02609301544725895, 0.05888443440198898, -0.046273667365312576, -0.017839625477790833, 0.006044796667993069, 0.02592213824391365, -0.022179918363690376, 0.019394611939787865, -0.053689755499362946, 0.04921276122331619, 0.0035179434344172478, -0.05177592486143112, -0.026742350310087204, 0.026229718700051308, -0.023820344358682632, 0.005339926574379206, -0.032757245004177094, -0.0545099675655365, 0.06274627149105072, 0.039199329912662506, -0.02429880015552044, -0.0395410880446434, -0.03540584817528725, -0.05280119180679321, 0.0026379236951470375, -0.041557442396879196, 0.09664839506149292, 0.03010863997042179, -0.046444542706012726, -0.03605518117547035, 0.014422073028981686, -0.048529252409935, 0.03403882682323456, 0.06530943512916565, -0.03127060830593109, -0.04148909077048302, 0.010457712225615978, 0.026246806606650352, -0.03301355987787247, 0.022590024396777153, 0.07094839960336685, -0.008911268785595894, -0.010312465950846672, 0.05844015255570412, 0.022709639742970467, -0.01920664682984352, 0.03896010294556618, 0.02757965214550495, -0.007390458136796951, 0.03632858768105507, 0.03386794775724411, -0.05932871624827385, -0.07504945993423462, -0.042821936309337616, -0.007428905460983515, 0.07956063002347946, 0.08038084208965302, 0.05638962239027023, 0.013080683536827564, -0.013328456319868565, -0.03296229615807533, 0.00028835603734478354, 0.05409986153244972, -0.004600880667567253, -0.026708176359534264, -0.010944712907075882, -0.04969121888279915, 0.019445875659585, 0.0010530335130169988, -0.03786648437380791, -0.0382082425057888, -0.008603689260780811, -0.007740757428109646, 0.09897232800722122, 0.004412915091961622, -0.05895278602838516, 0.03414135426282883, -0.029032111167907715, -0.07320398092269897, 0.0631563737988472, -0.002090047113597393, 0.01347370259463787, -0.028929585590958595, -0.0016596490750089288, -0.008326013572514057, 0.03851582109928131, 0.036704517900943756, -0.0031825960613787174, 0.016908342018723488, -0.0181130301207304, -0.03834494203329086, -0.020214825868606567, 0.0033235701266676188, -0.05054560676217079, -0.031253520399332047, 0.01614793762564659, -0.024179186671972275, 0.0038468828424811363, 0.0063096568919718266, -0.005263031460344791, 0.015054319985210896, -0.010756747797131538, 0.07238376885652542, -0.006467718631029129, 0.02462346851825714, -0.015430251136422157, -0.018899068236351013, 0.006642868276685476, 0.007954354397952557, 0.0067881145514547825, 0.005104969721287489, -0.005967901553958654, 0.022846341133117676, 0.010235571302473545, 0.06025145575404167, -0.0008810878498479724, 0.06042233482003212, 0.04873430356383324, -0.01264494564384222, 0.0320737324655056, 0.0006087516085244715, -0.024435503408312798, -0.03537167236208916, -0.019941421225667, -0.015609672293066978, 0.06729161739349365, -0.021547671407461166, 0.04849507659673691, -0.032159171998500824, 0.02828025072813034 ]
23,424
conexions.proxy
get_verbose
null
def get_verbose(self) -> bool: return self.__verbose
(self) -> bool
[ 0.0493648387491703, 0.012733126059174538, 0.04346106946468353, 0.0024932578671723604, 0.08778936415910721, -0.006871052086353302, 0.023898586630821228, -0.02313143014907837, 0.020679865032434464, -0.0532006211578846, -0.05206656455993652, 0.0028017880395054817, -0.018261654302477837, -0.038191039115190506, 0.02042970433831215, -0.019479097798466682, -0.03865800425410271, -0.03635653480887413, 0.03482222557067871, 0.040926121175289154, 0.02324817143380642, 0.04873109981417656, -0.005044886376708746, -0.03605634346604347, 0.011682456359267235, 0.029135260730981827, 0.060238443315029144, -0.03985877335071564, 0.036489956080913544, 0.06057199090719223, -0.09532750397920609, -0.04186004772782326, 0.033221203833818436, 0.01075686514377594, -0.013850506395101547, 0.03578950837254524, -0.02263111062347889, -0.00028090845444239676, -0.07478106021881104, -0.00017719641618896276, -0.00465713907033205, -0.00004218186950311065, -0.02339826710522175, 0.030085867270827293, -0.014884499832987785, -0.04175998643040657, 0.01572670415043831, 0.04322758689522743, -0.022064082324504852, -0.07971754670143127, 0.06317365169525146, 0.014134020544588566, 0.012507982552051544, 0.005524359177798033, -0.0550684779882431, -0.030552832409739494, 0.044861964881420135, -0.017594562843441963, -0.012966608628630638, 0.004167242906987667, -0.032987721264362335, 0.021080119535326958, 0.041926756501197815, -0.021497054025530815, 0.0009568606619723141, -0.008438719436526299, -0.03912496939301491, 0.025382867082953453, 0.0007848759414628148, 0.04652969539165497, -0.028167977929115295, -0.021964017301797867, -0.027650980278849602, 0.006687601562589407, -0.0527336560189724, -0.048330847173929214, -0.09332622587680817, -0.030869701877236366, -0.03200376033782959, -0.022931301966309547, -0.054534804075956345, 0.027517562732100487, 0.023898586630821228, -0.010931977070868015, -0.016618939116597176, -0.048597682267427444, -0.01731104776263237, -0.021580439060926437, 0.021580439060926437, 0.045095447450876236, -0.049331482499837875, 0.03715704753994942, 0.021797245368361473, 0.048831164836883545, -0.04766375198960304, -0.03210382163524628, -0.02283123880624771, -0.04382797330617905, -0.0013425234938040376, -0.06590873003005981, -0.007212936878204346, 0.04259385168552399, 0.0474969781935215, 0.0011007024440914392, 0.013391880318522453, 0.027400821447372437, -0.04529557377099991, 0.014542615041136742, 0.032404012978076935, 0.005115765146911144, -0.0032583295833319426, 0.018211623653769493, -0.028201332315802574, 0.005507681984454393, 0.005645269528031349, -0.0367901474237442, 0.012032679282128811, -0.02051309123635292, -0.03729046508669853, 0.0004148480948060751, -0.019295647740364075, -0.02815129980444908, 0.016760697588324547, -0.08979064226150513, 0.0020064888522028923, 0.009531082585453987, 0.013041656464338303, 0.03162018209695816, 0.013516959734261036, -0.04569583013653755, 0.033871617168188095, -0.03038605861365795, -0.002603745087981224, 0.013850506395101547, -0.007771626580506563, -0.062406495213508606, 0.06504151225090027, 0.06364061683416367, -0.0006389494519680738, 0.0629735216498375, -0.0344553217291832, -0.0037357176188379526, -0.02513270638883114, -0.024315519258379936, -0.019579162821173668, -0.020496414974331856, 0.00137587811332196, 0.014542615041136742, -0.003773241536691785, -0.0146093238145113, 0.04909800365567207, -0.05316726490855217, 0.00031426307396031916, -0.012583030387759209, -0.01992938667535782, 0.026967210695147514, -0.002543289912864566, -0.01698584109544754, 0.02189730852842331, -0.054001130163669586, -0.030502799898386, -0.037457238882780075, -0.01407564990222454, -0.03582286089658737, 0.012491305358707905, 0.02274785190820694, -0.004711340181529522, 0.01399226300418377, 0.002587067661806941, 0.07631537318229675, -0.009547759778797626, 0.033221203833818436, -0.012032679282128811, 0.03268752992153168, 0.05089915171265602, 0.12114398181438446, 0.04022567346692085, 0.05139946937561035, -0.010698494501411915, 0.04476189985871315, -0.042493786662817, -0.02098005637526512, -0.0678766518831253, 0.0031144877430051565, 0.028668297454714775, -0.005899598356336355, 0.054301321506500244, -0.04729685187339783, 0.009739548899233341, 0.03312113881111145, 0.04619615152478218, 0.02583315409719944, 0.04999857768416405, 0.0007838336168788373, -0.01727769337594509, -0.02509935200214386, 0.02563302591443062, -0.022430982440710068, 0.0845206081867218, 0.002165965735912323, 0.004081771709024906, 0.0019429066451266408, -0.03839116916060448, 0.008288622833788395, 0.036990273743867874, 0.044394999742507935, -0.036756791174411774, -0.004982346668839455, 0.01804484985768795, 0.004123465158045292, -0.019829321652650833, -0.04769710823893547, 0.01801149547100067, 0.025899862870573997, 0.006941930390894413, -0.054067838937044144, 0.045595765113830566, -0.006178943440318108, -0.07418067753314972, 0.046829886734485626, 0.07471434772014618, -0.053801003843545914, 0.028384782373905182, 0.03602299094200134, -0.040392447263002396, 0.021063443273305893, 0.03849123418331146, 0.016243699938058853, -0.033754877746105194, -0.04946490377187729, 0.0015207622200250626, 0.016452167183160782, -0.06000496447086334, 0.07024483382701874, -0.022264208644628525, 0.06851039081811905, 0.0025912371929734945, 0.07164572179317474, 0.007563160266727209, -0.045128803700208664, 0.003398001892492175, 0.0019189330050721765, 0.04082605615258217, 0.03242069110274315, -0.06140585616230965, -0.09339293837547302, 0.029735645279288292, 0.028735006228089333, 0.011148782446980476, 0.01677737385034561, 0.049798447638750076, -0.05633595585823059, -0.0012174436124041677, 0.02633347362279892, -0.02221417799592018, -0.004769710823893547, -0.02521609328687191, 0.009522744454443455, -0.005311723332852125, -0.004186004865914583, -0.03268752992153168, 0.042393721640110016, -0.01739443466067314, 0.06931090354919434, -0.027317434549331665, 0.010865267366170883, 0.002251436933875084, -0.04789723455905914, -0.022647786885499954, 0.02609999105334282, 0.08572137355804443, -0.0018032342195510864, -0.08018451184034348, -0.029235325753688812, -0.06490809470415115, -0.0415598563849926, 0.00717124342918396, -0.018061527982354164, -0.08525440841913223, 0.01563497819006443, 0.022197499871253967, -0.0179281085729599, 0.01981264539062977, -0.0351557694375515, -0.05173301696777344, -0.04849761724472046, -0.009589453227818012, 0.02821800857782364, -0.035522669553756714, -0.0365566648542881, -0.019345680251717567, 0.002916444558650255, 0.0629735216498375, 0.0006962777115404606, 0.09446028620004654, -0.023298202082514763, -0.04716343432664871, -0.017644593492150307, -0.016969162970781326, -0.016452167183160782, -0.0024974271655082703, -0.06804342567920685, -0.05596905201673508, 0.03558938205242157, 0.012457950972020626, 0.06991128623485565, 0.014892837963998318, -0.024815838783979416, 0.036223117262125015, 0.004586260300129652, -0.047130078077316284, 0.021580439060926437, 0.03862465173006058, 0.03635653480887413, -0.026616986840963364, -0.030619541183114052, -0.02891845628619194, -0.02780107595026493, -0.02753423899412155, 0.09439357370138168, -0.06163933873176575, 0.02074657380580902, 0.006024678237736225, 0.012524659745395184, 0.01654389128088951, -0.0664757564663887, 0.03185366466641426, 0.008738910779356956, 0.01480945199728012, -0.009672840125858784, -0.029752321541309357, -0.020596478134393692, 0.02810126729309559, 0.023498330265283585, 0.005736994557082653, -0.016935808584094048, -0.005282538011670113, -0.0408594086766243, -0.015551592223346233, 0.00005139999120729044, -0.008234421722590923, 0.028868423774838448, 0.01124050747603178, -0.015710026025772095, 0.044861964881420135, 0.03308778256177902, -0.010156482458114624, 0.022114112973213196, 0.03922503441572189, -0.04766375198960304, -0.046329569071531296, -0.03355474770069122, -0.06060534715652466, 0.022697819396853447, -0.04546234756708145, -0.062406495213508606, -0.004065094515681267, 0.022547723725438118, 0.0292186476290226, 0.06440777331590652, -0.035722799599170685, 0.032020434737205505, 0.00959779229015112, 0.03912496939301491, 0.0217138584703207, -0.019445743411779404, 0.023081397637724876, -0.014234084635972977, 0.029135260730981827, -0.02436554990708828, -0.03565609082579613, -0.023431621491909027, 0.03849123418331146, -0.058970969170331955, -0.011574053205549717, 0.022447660565376282, -0.004117210861295462, 0.0017292286502197385, 0.011907599866390228, 0.014801112934947014, 0.05183308199048042, 0.03268752992153168, -0.02598324976861477, -0.04456177353858948, -0.010323255322873592, -0.00595796899870038, -0.04552905634045601, 0.030369382351636887, -0.017861399799585342, -0.018411749973893166, -0.03812433034181595, 0.015626639127731323, -0.0881229117512703, 0.002789280144497752, -0.000019136561604682356, -0.03405506908893585, 0.010339932516217232, -0.018678586930036545, -0.015243061818182468, 0.026250086724758148, 0.003669008379802108, 0.008563798852264881, -0.008013447746634483, -0.0041839201003313065, -0.02139698900282383, -0.037990912795066833, 0.03377155214548111, 0.034955643117427826, -0.011407280340790749, -0.05740330368280411, 0.0007822701008990407, -0.026150023564696312, -0.05360087379813194, -0.0014988732291385531, -0.011182136833667755, 0.031069830060005188, 0.022731173783540726, 0.017210984602570534, 0.018795328214764595, 0.04309416934847832, 0.024065358564257622, 0.023548362776637077, 0.02004612796008587, 0.03982541710138321, 0.016827406361699104, -0.012624723836779594, -0.03200376033782959, 0.030702928081154823, 0.03982541710138321, -0.032370660454034805, -0.025266125798225403, -0.0023410774301737547, 0.021313602104783058, 0.02933538891375065, 0.013325170613825321, -0.024915901944041252, 0.005674454849213362, -0.027867786586284637, -0.025199415162205696, 0.1023319736123085, 0.023414943367242813, -0.013775458559393883, -0.03512241691350937, -0.002186812227591872, 0.033371299505233765, 0.004732186906039715, 0.014926192350685596, -0.01977929100394249, 0.05263359099626541, -0.012883222661912441, -0.02036299556493759, -0.01038996409624815, 0.002487003803253174, -0.03955858200788498, -0.005770349409431219, -0.01739443466067314, -0.06107231229543686, -0.0012664332753047347, -0.036423247307538986, -0.04259385168552399, -0.02783443033695221, 0.049865156412124634, -0.05013199523091316, 0.02880171500146389, 0.03148676082491875, -0.03528918698430061, 0.02533283457159996, 0.03365481272339821, -0.07691575586795807, -0.001133014797233045, 0.019679225981235504, -0.0034084252547472715, -0.011032041162252426, -0.025849830359220505, 0.012908237986266613, 0.041159603744745255, -0.036223117262125015, -0.0009407045436091721, 0.01605191081762314, -0.021180184558033943, -0.07331345975399017, -0.0107401879504323, -0.004719678778201342, -0.008914022706449032, 0.006337378174066544, -0.012691433541476727, -0.050832442939281464, 0.015067949891090393, 0.05043218657374382, -0.057936977595090866, 0.04999857768416405, 0.009289261884987354, -0.017594562843441963, -0.045595765113830566, 0.0025599671062082052, -0.008655523881316185, 0.0038441200740635395, 0.023998649790883064, 0.02841813676059246, 0.09939677268266678, -0.010331593453884125, 0.001542651210911572, 0.05270029976963997, -0.010306578129529953, 0.003852458670735359, -0.04382797330617905, -0.0011945123551413417, 0.010656801052391529, -0.02691717818379402, 0.013875522650778294, 0.04716343432664871, 0.013733765110373497, -0.023498330265283585, 0.059938251972198486, 0.04169327765703201, 0.006504151038825512, -0.026900501921772957, -0.001459264662116766, 0.09859625995159149, -0.011840890161693096, -0.008075987920165062, -0.030903056263923645, 0.00226602959446609, -0.09132495522499084, -0.0024223793298006058, -0.0024244640953838825, -0.03512241691350937, 0.037957560271024704, -0.036489956080913544, 0.08005108684301376, 0.04302746057510376, -0.03705698251724243, -0.0027017241809517145, 0.016860760748386383, -0.04102618247270584, 0.05563550814986229, -0.029785675927996635, 0.016277054324746132, -0.049865156412124634, -0.029168615117669106, 0.04049250856041908, -0.03682349994778633, 0.021930662915110588, -0.0013195922365412116, 0.0008468946907669306, 0.013533636927604675, 0.0024682418443262577, 0.04299410805106163, 0.012758142314851284, -0.027884462848305702, 0.019879354164004326, 0.022347595542669296, -0.015284755267202854, -0.011574053205549717, 0.0356227345764637, 0.03922503441572189, 0.015651656314730644, 0.029435452073812485, 0.016035234555602074, -0.006253991276025772, 0.05213327333331108, -0.05416790395975113, -0.018761973828077316, 0.004932314623147249, -0.004457011353224516, 0.022380949929356575, -0.01681072823703289, 0.032870978116989136, -0.026400182396173477, -0.018728619441390038, 0.013942231424152851, -0.031636856496334076, -0.03849123418331146, 0.015443189069628716, 0.007363032549619675, 0.07711588591337204, 0.027600949630141258, 0.10073095560073853, -0.0014623916940763593, 0.01330015528947115, -0.00987296737730503, -0.010615107603371143, 0.0662422776222229, 0.026550278067588806, -0.014134020544588566, -0.01610194332897663, 0.01520970743149519, -0.0010694324737414718, 0.01681072823703289, -0.034488677978515625, -0.020179545506834984, 0.029552193358540535, -0.015226384624838829, -0.06617556512355804, 0.03502235189080238, -0.0214803759008646, -0.0024244640953838825, -0.004577921703457832, 0.06580866873264313, 0.04012560844421387, -0.01819494552910328, -0.0040734331123530865, 0.0069002374075353146, -0.024148745462298393, -0.04129302129149437, -0.026933856308460236, 0.03390497341752052, 0.0017031703609973192, 0.008738910779356956, 0.01654389128088951, -0.04122631251811981, -0.026933856308460236, -0.012041018344461918, -0.07584840804338455, -0.005461819004267454, 0.0017594562377780676, 0.0835866779088974, 0.02093002386391163, 0.027033919468522072, -0.00538677116855979, 0.005882921162992716, 0.07131218165159225, 0.03103647381067276, -0.004627953749150038, -0.02536618895828724, -0.00575367221608758, -0.024782482534646988, -0.03111986070871353, -0.020913347601890564, -0.08291959017515182, -0.008326146751642227, 0.0019324833992868662, 0.04209353029727936, -0.023231493309140205, -0.03223723918199539, -0.04776381701231003, 0.001146565075032413, -0.006837697234004736, 0.02930203452706337, 0.06033850833773613, -0.04162656515836716, -0.00478221895173192, -0.028234686702489853, 0.019695904105901718, -0.0011215491686016321, -0.018244978040456772, -0.0351557694375515, 0.014242422766983509, 0.055001769214868546, -0.02574976719915867, -0.018478460609912872, 0.04376126080751419, -0.025999926030635834, 0.025549639016389847, -0.033871617168188095, -0.010465011931955814, 0.027901140972971916, 0.042493786662817, -0.02574976719915867, -0.05286707356572151, -0.05260023847222328, -0.055001769214868546, -0.028351427987217903, -0.057703495025634766, 0.10940315574407578, 0.048597682267427444, -0.04923142120242119, -0.026200054213404655, 0.011340570636093616, -0.056502725929021835, 0.021497054025530815, 0.026817115023732185, 0.0017365249805152416, 0.038958195596933365, -0.04349442571401596, 0.013266799971461296, -0.04222695156931877, 0.032020434737205505, -0.004865605384111404, -0.03689021244645119, 0.038424521684646606, 0.021213538944721222, 0.014784435741603374, -0.018295008689165115, 0.029785675927996635, 0.030619541183114052, -0.03442196920514107, 0.03812433034181595, 0.023931941017508507, -0.039458516985177994, -0.10319919884204865, -0.028234686702489853, -0.008163543418049812, 0.06931090354919434, 0.05663614720106125, 0.010798558592796326, 0.01631040871143341, 0.009272584691643715, 0.04626286029815674, -0.07611524313688278, 0.017761334776878357, 0.027400821447372437, -0.011807535775005817, -0.0010829828679561615, -0.017210984602570534, 0.011332232505083084, 0.0212468933314085, -0.06354055553674698, -0.016210345551371574, -0.026817115023732185, 0.02039634995162487, 0.09512738138437271, 0.03935845196247101, -0.08351997286081314, -0.011774181388318539, -0.03393832594156265, -0.03230395168066025, -0.005199151579290628, 0.022697819396853447, 0.03295436501502991, -0.01613529771566391, -0.017677949741482735, -0.03390497341752052, 0.04789723455905914, 0.027600949630141258, 0.07251294702291489, -0.02656695619225502, -0.031870339065790176, 0.021463697776198387, -0.002126357052475214, 0.001398809370584786, -0.045328930020332336, -0.031636856496334076, 0.0004315254045650363, -0.006170604843646288, 0.038457877933979034, -0.014300793409347534, -0.002081536687910557, 0.08198565989732742, -0.00956443790346384, 0.09766232967376709, 0.021063443273305893, 0.04082605615258217, -0.030285995453596115, -0.00429857661947608, 0.006695940159261227, 0.03755730390548706, 0.011198814027011395, -0.0007952992455102503, -0.029101906344294548, 0.026850469410419464, -0.024782482534646988, 0.016118619590997696, -0.008989070542156696, 0.04642963036894798, 0.05743665620684624, -0.007600684184581041, 0.016277054324746132, 0.03330458700656891, -0.021997371688485146, -0.03478886932134628, -0.030869701877236366, 0.024999288842082024, 0.08832303434610367, -0.041192956268787384, 0.07431409507989883, -0.023765167221426964, 0.036756791174411774 ]
23,425
conexions.proxy
set_cabeceira
null
def set_cabeceira(self) -> None: self.__cabeceira = {'User-Agent': UserAgent().random}
(self) -> NoneType
[ -0.03929978981614113, 0.02593931555747986, -0.04638902097940445, -0.03217420354485512, -0.012551574967801571, 0.006448473781347275, -0.013178699649870396, -0.01077926717698574, 0.0033969234209507704, -0.009915835224092007, -0.023576239123940468, 0.03708213195204735, -0.02590296044945717, 0.07049240916967392, -0.004426225088536739, -0.05140601843595505, 0.013051456771790981, 0.029702061787247658, 0.026048380881547928, -0.07896313071250916, -0.03722755238413811, -0.04362604022026062, -0.03052004985511303, -0.015260024927556515, 0.0015496333362534642, 0.06765671819448471, -0.01411484181880951, 0.03711848706007004, 0.07354623079299927, -0.002653917297720909, 0.036082372069358826, -0.03697307035326958, -0.02081325650215149, -0.011524545028805733, 0.05176956579089165, -0.03820914030075073, -0.010033989325165749, -0.037409327924251556, -0.05286021903157234, 0.025666654109954834, -0.07707267254590988, -0.00723465159535408, -0.061621781438589096, -0.044680334627628326, -0.014978273771703243, -0.014278438873589039, 0.04402594640851021, 0.09117842465639114, 0.013378651812672615, -0.037518393248319626, -0.0336647592484951, 0.011006486602127552, 0.04544379189610481, 0.002394887851551175, -0.023049090057611465, 0.04169922322034836, -0.01812298409640789, 0.06991072744131088, -0.016841469332575798, 0.07289183884859085, -0.021158630028367043, -0.027629824355244637, -0.04918836057186127, -0.08419825881719589, 0.03528255969285965, 0.0016780119622126222, -0.00636667525395751, 0.04566192254424095, 0.0540962889790535, 0.03595512732863426, 0.06380308419466019, -0.012242557480931282, -0.003824095008894801, -0.01108828466385603, 0.015050983987748623, -0.018313847482204437, -0.09888569265604019, 0.025303103029727936, -0.04551650211215019, 0.035191673785448074, 0.03355569392442703, 0.02026793174445629, 0.0191591028124094, -0.03697307035326958, 0.04075399041175842, -0.0306291151791811, 0.03628232330083847, -0.0020267930813133717, 0.03460999205708504, 0.012142580933868885, -0.009715882129967213, -0.009193278849124908, -0.011779030784964561, -0.005339645314961672, 0.015341823920607567, 0.04438949376344681, 0.024794133380055428, 0.026175623759627342, 0.03491900861263275, -0.023521706461906433, 0.006693870294839144, 0.04460762441158295, 0.01815933920443058, -0.04184464365243912, -0.01919545792043209, -0.012787883169949055, -0.018704663962125778, -0.00730736181139946, 0.025484878569841385, -0.004912473727017641, -0.05998580530285835, -0.013424095697700977, 0.04108118638396263, 0.027993375435471535, -0.021194985136389732, -0.013105989433825016, -0.003410556586459279, -0.032501399517059326, 0.07656370103359222, 0.0372639074921608, -0.01712322048842907, 0.018404735252261162, -0.014496569521725178, 0.019431764259934425, 0.03602783754467964, 0.037845589220523834, -0.027847955003380775, 0.017595836892724037, 0.04169922322034836, 0.01629614271223545, 0.011406391859054565, -0.05042443051934242, 0.059622254222631454, -0.012424332089722157, 0.020649658516049385, -0.037409327924251556, -0.042462676763534546, 0.009797681123018265, 0.016423385590314865, 0.012260735034942627, -0.08565245568752289, 0.03148346021771431, 0.04402594640851021, -0.05565955489873886, 0.027429873123764992, 0.024957729503512383, 0.0005723077338188887, -0.01316052209585905, -0.06263972073793411, -0.06925633549690247, 0.09655896574258804, 0.025030439719557762, -0.023085445165634155, 0.0032651363871991634, -0.04329884424805641, -0.004994272720068693, -0.04889751970767975, -0.0033423907589167356, -0.008011740632355213, 0.025230392813682556, 0.011415480636060238, 0.011333681643009186, 0.030610937625169754, -0.03162887692451477, 0.002449420280754566, -0.012506131082773209, -0.0019643078558146954, -0.00017368048429489136, 0.05362367257475853, 0.04315342381596565, -0.07009250670671463, -0.05794992297887802, -0.06354859471321106, 0.03313761204481125, 0.045189306139945984, 0.03359204903244972, -0.0007174438796937466, -0.045189306139945984, 0.019722605124115944, 0.02879318594932556, -0.004867029841989279, -0.036627694964408875, -0.02875683084130287, 0.03926343470811844, 0.047443319112062454, -0.042789872735738754, 0.03193789720535278, -0.021504001691937447, 0.021158630028367043, 0.03824549540877342, 0.037809234112501144, 0.030901778489351273, -0.023558061569929123, -0.015269113704562187, 0.04457126930356026, -0.007689089514315128, -0.013633137568831444, -0.07729080319404602, -0.03339209780097008, 0.005289657507091761, -0.020649658516049385, 0.054641615599393845, -0.0019529468845576048, -0.011442746967077255, 0.0608946792781353, 0.03926343470811844, 0.00016998818318825215, -0.016532450914382935, 0.022649185732007027, 0.017059599980711937, -0.026266511529684067, 0.005485065747052431, -0.0030447340104728937, -0.036664050072431564, -0.0032719529699534178, -0.057113755494356155, -0.00892061647027731, 0.008870627731084824, 0.007025610189884901, 0.03926343470811844, 0.022012973204255104, -0.016641516238451004, 0.0008140119025483727, -0.10979220271110535, 0.005444166250526905, -0.015423622913658619, -0.002126769395545125, -0.017713990062475204, -0.02922944724559784, -0.022049328312277794, -0.043698750436306, 0.023539884015917778, -0.030029257759451866, 0.014996451325714588, 0.01651427336037159, -0.027357162907719612, 0.02790248766541481, 0.07932668179273605, -0.10113970190286636, -0.005098793189972639, -0.00854343269020319, 0.03270135074853897, 0.026739126071333885, 0.057368241250514984, -0.010124877095222473, 0.02324904315173626, -0.000564639107324183, 0.033937424421310425, -0.031501635909080505, -0.01859559863805771, 0.003817278426140547, -0.08543432503938675, -0.009770414792001247, 0.004703432321548462, -0.02521221525967121, -0.008607054129242897, 0.009443219751119614, 0.03700942546129227, 0.018141161650419235, -0.024157918989658356, 0.005316923372447491, -0.03708213195204735, -0.000489656871650368, 0.020213399082422256, 0.0038899886421859264, 0.05889515206217766, 0.030174678191542625, 0.059331413358449936, -0.04446220397949219, -0.0186319537460804, 0.10971949249505997, -0.006875645834952593, -0.01158816646784544, -0.005848615895956755, 0.004030864220112562, -0.042062774300575256, -0.01912274770438671, 0.012524308636784554, -0.06322140246629715, -0.022485587745904922, 0.0469343475997448, 0.02772071212530136, 0.04631631076335907, 0.0023244498297572136, -0.057077400386333466, -0.06107645481824875, -0.01465107873082161, 0.0780906081199646, -0.017986653372645378, -0.022976381704211235, -0.049770038574934006, -0.021013209596276283, -0.012297090142965317, -0.015305468812584877, 0.09517747908830643, 0.010861066170036793, 0.054387129843235016, 0.04184464365243912, 0.024957729503512383, -0.013460450805723667, -0.0101157883182168, -0.04566192254424095, -0.007416426669806242, -0.018777374178171158, -0.00857524387538433, -0.016505185514688492, 0.035082608461380005, 0.017014155164361, -0.009061492048203945, 0.0454801470041275, 0.016668783500790596, 0.010697468183934689, 0.009229633957147598, 0.062021687626838684, -0.05111517757177353, 0.0003993373247794807, 0.011742675676941872, 0.0015757634537294507, -0.0038490891456604004, 0.02912038192152977, 0.002958390861749649, -0.029429398477077484, -0.008293491788208485, -0.01590532623231411, 0.05129695311188698, 0.020049801096320152, 0.06416663527488708, 0.004292165860533714, -0.04631631076335907, 0.02410338632762432, -0.01948629692196846, -0.0015893966192379594, -0.027738889679312706, 0.025339458137750626, -0.0006742722471244633, 0.05656843259930611, -0.029247624799609184, -0.03915436938405037, 0.005335100926458836, -0.07678183168172836, -0.09488663822412491, 0.0031015388667583466, -0.040245022624731064, 0.01386035606265068, 0.013478628359735012, -0.04540743678808212, 0.02037699520587921, -0.005653207655996084, -0.04649808630347252, -0.0673295184969902, -0.0006180355558171868, 0.011806297115981579, 0.057041045278310776, 0.07823602855205536, 0.06707503646612167, -0.014278438873589039, -0.02221292443573475, -0.003912710584700108, 0.019940735772252083, 0.008016284555196762, 0.006393941584974527, -0.012006249278783798, 0.049442846328020096, -0.026121091097593307, -0.03041098453104496, -0.013296853750944138, -0.022631008177995682, 0.04039044305682182, 0.061730846762657166, -0.06216710805892944, 0.036627694964408875, -0.002506225137040019, 0.023976143449544907, -0.02583025023341179, 0.06954717636108398, -0.04464397951960564, -0.00750277005136013, -0.0030151954852044582, -0.08259863406419754, 0.042608097195625305, 0.010197586379945278, 0.03466452285647392, 0.008420734666287899, -0.002937941113486886, -0.013905799947679043, -0.026811836287379265, 0.049733683466911316, 0.005571408662945032, 0.0032151483464986086, 0.014178463257849216, -0.014532924629747868, -0.03291948139667511, 0.010661113075911999, 0.043698750436306, -0.04195370897650719, -0.05773179233074188, -0.011597255244851112, -0.004305799026042223, 0.023012736812233925, -0.007743622176349163, 0.039808761328458786, 0.002221065340563655, -0.012188024818897247, 0.02228563465178013, -0.0008872900507412851, -0.006157633848488331, 0.008179882541298866, -0.0651845708489418, 0.040063247084617615, -0.01042480580508709, -0.08732479065656662, -0.021067742258310318, 0.042862582951784134, -0.042280904948711395, 0.008316214196383953, 0.04446220397949219, 0.0085070775821805, -0.054605260491371155, 0.035555221140384674, 0.0008128758054226637, -0.010333918035030365, -0.01744132675230503, -0.029902014881372452, 0.054750680923461914, 0.03948156535625458, 0.031047198921442032, 0.061549071222543716, -0.037482038140296936, 0.04446220397949219, -0.028211506083607674, 0.012078959494829178, -0.008743385784327984, -0.04446220397949219, -0.012642462737858295, -0.002447148086503148, -0.01694144494831562, -0.0540962889790535, -0.010033989325165749, -0.016459740698337555, -0.009193278849124908, -0.011370036751031876, -0.07151035219430923, 0.006439385004341602, 0.01669604890048504, 0.024885019287467003, 0.010951953940093517, -0.04417136684060097, 0.0444258488714695, 0.0018052546074613929, -0.0626760795712471, -0.008925160393118858, -0.013242321088910103, -0.01400577649474144, 0.007925396785140038, 0.03835456073284149, 0.07409155368804932, -0.037991009652614594, -0.003369657089933753, -0.001618935028091073, 0.026157446205615997, 0.0279388427734375, 0.03235597908496857, 0.006280331872403622, -0.030901778489351273, 0.015187314711511135, 0.06493008881807327, 0.025557588785886765, -0.0000644378742435947, -0.027520760893821716, -0.0019790770020335913, -0.05645936727523804, -0.037409327924251556, 0.0066893259063363075, -0.06718409806489944, -0.03849998116493225, -0.009970367886126041, -0.03495536372065544, -0.002753893844783306, -0.03506442904472351, -0.004469397012144327, 0.01948629692196846, 0.014769231900572777, 0.0626760795712471, 0.009111479856073856, 0.01747768186032772, -0.06122187525033951, 0.025666654109954834, -0.030392806977033615, -0.027702534571290016, 0.02764800190925598, -0.02993836998939514, -0.0231036227196455, -0.07612743973731995, 0.023976143449544907, 0.019540829584002495, 0.056641142815351486, 0.08492535352706909, 0.047116123139858246, -0.017314083874225616, -0.027775244787335396, -0.03362840414047241, -0.034900832921266556, -0.033682938665151596, -0.01848653517663479, -0.0009162604692392051, -0.05384180322289467, -0.03326485678553581, -0.017323173582553864, 0.0023630771320313215, -0.017677634954452515, 0.026339221745729446, 0.0064621069468557835, 0.012469775974750519, -0.027302630245685577, 0.013278676196932793, -0.020049801096320152, -0.054459840059280396, -0.04169922322034836, -0.001467834459617734, -0.001044639153406024, 0.02424880675971508, 0.009643172845244408, 0.09423224627971649, 0.02081325650215149, 0.009297799319028854, 0.04533472657203674, 0.06067654862999916, -0.0026834558229893446, 0.004971550777554512, 0.056786563247442245, -0.014905563555657864, -0.014178463257849216, -0.006902911700308323, 0.06932904571294785, 0.03230144828557968, 0.032465044409036636, 0.03333756700158119, -0.011451835744082928, 0.04569827765226364, -0.03577335178852081, 0.023121800273656845, -0.004671621602028608, 0.014796498231589794, -0.015632664784789085, 0.006825657561421394, -0.08957879990339279, -0.019177280366420746, 0.02044970542192459, -0.006057657301425934, -0.01339682936668396, 0.006057657301425934, 0.008457089774310589, 0.021340403705835342, -0.03037462942302227, -0.05118788778781891, -0.04929742589592934, 0.014678344130516052, -0.024412404745817184, 0.05918599292635918, 0.004717065487056971, -0.006725681014358997, -0.0812898501753807, -0.014960096217691898, 0.001939313835464418, -0.022940026596188545, 0.03270135074853897, -0.01686873473227024, 0.03141075000166893, -0.029356688261032104, -0.07060147076845169, -0.016250699758529663, -0.024194274097681046, 0.025884782895445824, 0.03421008586883545, -0.05173321068286896, 0.031865186989307404, -0.047370608896017075, 0.02646646462380886, 0.012824238277971745, -0.029065849259495735, -0.02081325650215149, -0.0027448050677776337, -0.0041512902826070786, -0.0977950394153595, 0.01966807246208191, -0.05267844349145889, 0.04053586348891258, 0.059331413358449936, -0.01527820248156786, -0.0011724497890099883, -0.027884310111403465, -0.01407848671078682, -0.026448287069797516, -0.05111517757177353, -0.054714325815439224, 0.01201533805578947, 0.03828185051679611, -0.06969259679317474, -0.07961752265691757, 0.04366239532828331, -0.0010594084160402417, 0.02450329251587391, -0.037918299436569214, 0.012642462737858295, 0.005416899919509888, 0.018759196624159813, -0.034755412489175797, -0.0008634320111013949, 0.05176956579089165, -0.04897022992372513, -0.022303812205791473, 0.026266511529684067, -0.04577098786830902, 0.024012498557567596, -0.03406466543674469, 0.005894059780985117, -0.005289657507091761, -0.03155617043375969, -0.01787758804857731, -0.023121800273656845, -0.03460999205708504, -0.03842727094888687, 0.011051930487155914, -0.003051550593227148, -0.026157446205615997, -0.017859410494565964, 0.018795551732182503, 0.023303575813770294, -0.042898938059806824, 0.052387602627277374, 0.06136729568243027, -0.026211978867650032, -0.013814912177622318, -0.011933539994060993, 0.014178463257849216, 0.0540962889790535, 0.02070419117808342, 0.06347588449716568, 0.014887386001646519, 0.022340167313814163, 0.020831434056162834, 0.010588403791189194, 0.06031300127506256, 0.021322226151823997, -0.0655481219291687, 0.0031537991017103195, -0.04533472657203674, 0.003142438130453229, 0.012078959494829178, -0.07779976725578308, -0.02214021421968937, -0.0033991956152021885, 0.04551650211215019, -0.011415480636060238, -0.06972895562648773, -0.011242793872952461, 0.001241751597262919, 0.05573226511478424, 0.0032515032216906548, -0.06296692043542862, 0.013842178508639336, 0.02915673702955246, 0.06532999128103256, -0.07009250670671463, 0.03462816774845123, -0.0047761425375938416, 0.004546651151031256, -0.02274007350206375, -0.03955427557229996, 0.05758637189865112, 0.015550865791738033, 0.016423385590314865, -0.030865423381328583, -0.011879007332026958, 0.063039630651474, 0.030683647841215134, -0.019958913326263428, -0.006516639608889818, 0.023194510489702225, 0.023739837110042572, 0.031537991017103195, 0.07489136606454849, 0.004487574566155672, -0.056641142815351486, -0.015050983987748623, 0.03181065246462822, -0.02697543427348137, 0.042353615164756775, 0.014033042825758457, -0.0038081896491348743, 0.019613539800047874, -0.059404123574495316, -0.028284216299653053, 0.06140365079045296, 0.008052639663219452, 0.050024524331092834, -0.01751403696835041, -0.013242321088910103, -0.01948629692196846, 0.04595276340842247, 0.011406391859054565, 0.03828185051679611, -0.027920665219426155, 0.031283505260944366, -0.03919072449207306, -0.021049564704298973, -0.003710485529154539, -0.00035247340565547347, -0.057004690170288086, -0.00700288824737072, 0.04540743678808212, 0.04889751970767975, -0.018795551732182503, 0.022467410191893578, -0.0014246628852561116, 0.02753893844783306, -0.009288710542023182, 0.013796734623610973, -0.02908402681350708, 0.02904767170548439, 0.014332971535623074, 0.0483521930873394, 0.022976381704211235, 0.04446220397949219, 0.04348061978816986, -0.02395796589553356, 0.0021313137840479612, -0.025157682597637177, -0.006103101186454296, 0.009961279109120369, 0.044825755059719086, -0.009715882129967213, 0.0011514320503920317, -0.00007959763752296567, -0.0429716482758522, -0.04097212105989456, -0.012706084176898003, 0.010897421278059483, -0.016886912286281586, 0.01715957559645176, -0.02181302011013031, -0.03860904648900032, -0.05082433670759201, 0.03215602785348892, -0.054314419627189636, 0.018922794610261917, -0.004167195875197649, -0.01586897112429142, 0.057259175926446915, 0.08725208044052124, -0.05107882246375084, -0.007166485767811537, -0.002710722154006362, 0.04111754149198532, -0.00606220168992877, -0.0637667253613472, -0.021903907880187035, 0.052096761763095856, 0.04435313865542412, 0.049588266760110855, 0.01941358670592308, 0.016068924218416214, -0.04817041754722595, 0.0394088551402092, 0.08398012816905975, -0.0036968523636460304, 0.05758637189865112, -0.007143763825297356 ]
23,426
conexions.proxy
set_max_cons
null
def set_max_cons(self, novo_max_cons: int) -> None: self.__max_cons = novo_max_cons
(self, novo_max_cons: int) -> NoneType
[ 0.011067629791796207, 0.05515056103467941, 0.0022936766035854816, 0.018502892926335335, -0.04809046909213066, -0.005414441227912903, -0.02517075650393963, 0.007853071205317974, -0.009498720988631248, -0.06207422539591789, -0.021060897037386894, 0.014307767152786255, 0.04918188601732254, -0.06347259879112244, 0.025682358071208, 0.05228559672832489, 0.02718305215239525, -0.06282456964254379, 0.08185611665248871, 0.059652648866176605, 0.016993671655654907, 0.06664452701807022, -0.05395682528614998, -0.08867746591567993, -0.024846743792295456, 0.020088855177164078, -0.03419198468327522, 0.07285194844007492, 0.023380154743790627, -0.02280033938586712, -0.047442443668842316, 0.01746263913810253, 0.004267602693289518, -0.0320773683488369, 0.06163083761930466, -0.019526096060872078, 0.023601848632097244, 0.07946865260601044, -0.06579185277223587, -0.009166180156171322, -0.012858232483267784, -0.038335949182510376, -0.012790018692612648, 0.03792667016386986, 0.02315846085548401, 0.010905622504651546, 0.010462235659360886, 0.0893595963716507, 0.009728941135108471, -0.01930440217256546, 0.008360409177839756, 0.012235784903168678, 0.01501548197120428, -0.010854462161660194, -0.017036305740475655, 0.03731274604797363, 0.013489206321537495, 0.05044383183121681, 0.03755149617791176, -0.04969348758459091, -0.019628414884209633, 0.03628954663872719, 0.011195529252290726, -0.06821343302726746, 0.0114769097417593, 0.05351343750953674, -0.018809854984283447, 0.03530045226216316, 0.05740160495042801, 0.018127718940377235, 0.014981375075876713, 0.008138715289533138, -0.0543661043047905, 0.0148620018735528, 0.010121168568730354, -0.028308574110269547, -0.02749001421034336, 0.012269890867173672, -0.05972085893154144, -0.007712381426244974, 0.002841515699401498, 0.005201274063438177, 0.01766727864742279, -0.014836421236395836, -0.01211641076952219, 0.0008947683963924646, 0.005341964308172464, 0.014248080551624298, 0.04532782733440399, 0.025017276406288147, -0.031105324625968933, 0.09611272811889648, -0.027455907315015793, 0.03391912952065468, -0.01766727864742279, 0.0076910643838346004, 0.018349412828683853, -0.007034510374069214, 0.046555668115615845, -0.005197010934352875, 0.020191175863146782, -0.0028052774723619223, -0.04829511046409607, -0.012841179035604, -0.022305792197585106, -0.03495938330888748, 0.03294708952307701, 0.01932145468890667, -0.025545930489897728, 0.006953506730496883, -0.05081900581717491, 0.006701970007270575, -0.010070008225739002, -0.003107974538579583, -0.028734909370541573, 0.06725844740867615, 0.03321994096040726, 0.0020996946841478348, 0.059686753898859024, -0.005133060738444328, 0.01265359204262495, -0.004476506728678942, -0.03915451094508171, -0.04624870792031288, -0.0016499124467372894, 0.04147376865148544, 0.028564374893903732, 0.0651097223162651, 0.03219674155116081, 0.012133464217185974, 0.026142798364162445, -0.08383430540561676, 0.0008899721433408558, 0.046351026743650436, 0.004617196507751942, -0.03008212335407734, -0.06391599029302597, 0.002223331481218338, -0.030747205018997192, -0.05770856514573097, -0.03594847768545151, 0.07121482491493225, 0.01539065595716238, 0.0007322285673581064, -0.0030269711278378963, 0.0338679701089859, -0.018895121291279793, -0.011545123532414436, -0.0560714416205883, 0.04737422987818718, -0.03219674155116081, -0.004608670249581337, -0.060778167098760605, -0.021214377135038376, -0.03680114820599556, 0.08574428409337997, -0.01619216427206993, -0.0178719200193882, 0.04184894263744354, -0.012167571112513542, -0.034498944878578186, 0.027814026921987534, 0.023908808827400208, -0.00810887198895216, -0.05770856514573097, 0.0005105349118821323, -0.016874298453330994, -0.0028159357607364655, -0.006714759860187769, 0.06446169316768646, -0.03321994096040726, -0.049659378826618195, -0.016132477670907974, -0.03328815475106239, 0.023823540657758713, -0.00009086242789635435, 0.022322846576571465, -0.07530763000249863, -0.023533634841442108, 0.005951622035354376, -0.000056455941376043484, -0.015245702117681503, 0.07121482491493225, -0.06197190284729004, 0.04904545843601227, 0.00043166312389075756, -0.017974238842725754, 0.020668670535087585, -0.002112484769895673, -0.050546154379844666, -0.02256159298121929, -0.044202305376529694, -0.003095184452831745, -0.03313467651605606, 0.036153119057416916, -0.03078131191432476, 0.08547142893075943, 0.019440827891230583, 0.026859039440751076, -0.08021900057792664, -0.042701609432697296, 0.05484360083937645, 0.014077547006309032, -0.0771493911743164, 0.062040116637945175, 0.01983305625617504, -0.0029012025333940983, -0.011911770328879356, 0.007341470569372177, -0.042735714465379715, 0.008995646610856056, 0.024744423106312752, 0.03495938330888748, -0.05259255692362785, 0.039256829768419266, -0.037073999643325806, 0.07292015850543976, 0.012849705293774605, 0.0023917334619909525, 0.0249320100992918, 0.013258986175060272, -0.051364716142416, -0.011528070084750652, -0.048022255301475525, 0.015595296397805214, 0.006906609982252121, -0.06176726520061493, -0.012892338447272778, 0.07503477483987808, 0.010590135119855404, -0.01802540011703968, 0.03922272473573685, -0.08137862384319305, -0.018008345738053322, 0.017249472439289093, 0.02077099122107029, 0.029945697635412216, -0.00983978807926178, -0.07721760869026184, -0.01047076191753149, -0.035607412457466125, 0.0481586828827858, 0.002455683657899499, 0.03751738741993904, -0.005998518783599138, 0.03952968493103981, 0.031446393579244614, 0.019270295277237892, 0.01892922818660736, 0.0536157600581646, 0.0346183180809021, -0.07039625942707062, -0.07414799928665161, -0.040518779307603836, 0.05068258196115494, 0.025614144280552864, -0.028751961886882782, 0.027080733329057693, -0.017633171752095222, 0.016797557473182678, -0.011493963189423084, -0.024710316210985184, -0.0023107300512492657, 0.029451150447130203, 0.019406720995903015, 0.04676030948758125, -0.009328186511993408, -0.0502391941845417, -0.05678768455982208, -0.0016690974589437246, 0.08110576868057251, 0.01986716315150261, 0.010649822652339935, -0.03149755299091339, -0.021947672590613365, -0.04464569315314293, 0.005316384602338076, -0.02349952794611454, 0.019816001877188683, -0.0013866511872038245, 0.029809270054101944, -0.06234707683324814, 0.011962930671870708, 0.003071736078709364, 0.007226360496133566, -0.01310550607740879, 0.014785261824727058, -0.06214243918657303, -0.03976843133568764, -0.025733517482876778, 0.007776331156492233, 0.016686711460351944, 0.028564374893903732, 0.044338732957839966, 0.06261993199586868, -0.07776331156492233, 0.058902300894260406, 0.04317910224199295, 0.009225866757333279, -0.001757561694830656, -0.024659156799316406, -0.05300183594226837, -0.06258582323789597, -0.02131669782102108, 0.014759681187570095, -0.03008212335407734, 0.03321994096040726, -0.04519139975309372, 0.05078490078449249, 0.03480590507388115, 0.006395009346306324, 0.06892967224121094, 0.012176097370684147, 0.03693757206201553, 0.015296862460672855, 0.07080554217100143, 0.06650809943675995, -0.02094152383506298, 0.008547996170818806, 0.03966611251235008, -0.000028577698685694486, -0.04099627211689949, -0.07953686267137527, -0.08594892174005508, 0.0012800677213817835, 0.025580037385225296, 0.0057938783429563046, -0.0039649056270718575, -0.019952429458498955, -0.04812457785010338, -0.014981375075876713, -0.055866800248622894, 0.0012928576907142997, 0.02459094300866127, 0.016541756689548492, 0.03806309401988983, 0.015450342558324337, -0.04304267466068268, 0.016899878159165382, -0.01855405420064926, 0.013148139230906963, 0.024539781734347343, -0.004531929735094309, 0.002223331481218338, 0.03228200599551201, -0.02644975855946541, 0.02312435396015644, -0.02769465371966362, -0.04467979818582535, 0.011059102602303028, -0.0105816088616848, 0.01986716315150261, -0.027558226138353348, 0.011195529252290726, 0.006940716877579689, -0.011127316392958164, 0.032708339393138885, -0.022101152688264847, 0.02569941058754921, -0.0389498695731163, -0.03402144834399223, 0.01111026294529438, 0.024897903203964233, -0.0048729972913861275, -0.030320871621370316, 0.028291521593928337, -0.054025039076805115, -0.0008329499396495521, 0.026381544768810272, 0.004604406654834747, -0.04795404151082039, -0.03826773539185524, 0.05013687163591385, 0.03173629939556122, 0.0240793414413929, 0.03942736238241196, -0.10191086679697037, 0.002177500631660223, -0.0012054592370986938, -0.010479288175702095, -0.043451957404613495, -0.04331552982330322, 0.03328815475106239, -0.017974238842725754, 0.006940716877579689, 0.014324820600450039, 0.040723420679569244, -0.04955706000328064, 0.04914777725934982, 0.048772603273391724, 0.06725844740867615, 0.012994659133255482, -0.033441636711359024, -0.031582821160554886, 0.04096216708421707, 0.007776331156492233, 0.030576670542359352, 0.006753129884600639, 0.0481586828827858, 0.02203293889760971, -0.02114616334438324, 0.01193735096603632, 0.02675671875476837, 0.03149755299091339, -0.009618094190955162, -0.015143382363021374, 0.04375891759991646, 0.02607458457350731, 0.004111990798264742, 0.019730735570192337, -0.06091459468007088, -0.0011916033690795302, 0.024897903203964233, -0.020344655960798264, 0.028683748096227646, -0.03714221343398094, 0.02261275239288807, -0.02549477107822895, 0.07087375968694687, -0.06882735341787338, 0.04021181911230087, -0.00837319903075695, 0.02861553430557251, 0.0000909290392883122, 0.01621774397790432, -0.030661938712000847, 0.031616926193237305, -0.002854305785149336, -0.016328589990735054, -0.016507651656866074, 0.00025739913689903915, 0.02566530369222164, 0.0393250435590744, -0.017957186326384544, -0.030354978516697884, -0.02061750926077366, -0.001657373271882534, -0.007891441695392132, 0.01294349879026413, 0.00022728928888682276, 0.061528515070676804, -0.016277430579066277, 0.016490597277879715, 0.02094152383506298, 0.019185027107596397, -0.013071399182081223, -0.008087554946541786, -0.011493963189423084, 0.018843960016965866, -0.03095184452831745, -0.05252434313297272, -0.0240793414413929, -0.012926445342600346, 0.014333347789943218, 0.00750774098560214, -0.04099627211689949, 0.0005163970054127276, -0.020839203149080276, 0.011570703238248825, -0.05579858645796776, -0.005303594283759594, 0.012807072140276432, 0.026654398068785667, -0.0068511865101754665, -0.042019475251436234, 0.045293718576431274, 0.032537806779146194, -0.016141002997756004, -0.030764257535338402, -0.0536157600581646, 0.018281200900673866, -0.017249472439289093, -0.01355742011219263, -0.03823363035917282, 0.02585289068520069, -0.0466579869389534, 0.0016339248977601528, -0.03659650683403015, 0.01747969165444374, 0.008330565877258778, 0.043486062437295914, 0.007865861058235168, 0.009549880400300026, -0.016627024859189987, -0.0036025219596922398, -0.031003005802631378, -0.07667189836502075, -0.08035542070865631, -0.06176726520061493, -0.003536440199241042, -0.019986536353826523, -0.02095857635140419, -0.017053358256816864, 0.0651097223162651, 0.002958757570013404, 0.050546154379844666, 0.0716923177242279, -0.05989139527082443, 0.04624870792031288, -0.03465242311358452, -0.049488846212625504, 0.028683748096227646, -0.038915764540433884, -0.0957716628909111, -0.057128749787807465, 0.015006954781711102, -0.0816514790058136, 0.0004892182187177241, -0.05879997834563255, 0.011553649790585041, 0.0481586828827858, -0.03219674155116081, -0.010965309105813503, 0.05034151300787926, 0.01768433302640915, -0.03477179631590843, 0.007503477390855551, -0.02061750926077366, 0.06493918597698212, -0.019611362367868423, -0.0039904857985675335, -0.00001823576894821599, -0.004783466923981905, 0.014631781727075577, 0.052217382937669754, -0.04682852327823639, -0.008168558590114117, -0.08588071167469025, 0.043281424790620804, 0.0357438400387764, 0.02588699758052826, -0.0012726068962365389, 0.031446393579244614, 0.05808373913168907, -0.0006235134205780923, -0.010462235659360886, 0.01898038759827614, 0.0007530123693868518, 0.016661131754517555, 0.010726562701165676, -0.03495938330888748, -0.03003096394240856, 0.038745228201150894, 0.01267917174845934, -0.038199521601200104, -0.0211632177233696, -0.0018012609798461199, 0.03680114820599556, -0.025904051959514618, 0.01137458998709917, 0.009242920204997063, 0.053104158490896225, -0.0050392672419548035, -0.01932145468890667, 0.022305792197585106, -0.031770408153533936, 0.024846743792295456, 0.007823227904736996, 0.059345684945583344, 0.07476191967725754, -0.009447560645639896, -0.019048601388931274, 0.03751738741993904, -0.05978907272219658, 0.005363281350582838, 0.019065653905272484, -0.009899474680423737, -0.01805950701236725, 0.05859534069895744, 0.021436071023344994, 0.025000223889946938, -0.0032635864336043596, 0.008360409177839756, 0.04010950028896332, -0.005026477389037609, 0.008164294995367527, 0.013386886566877365, 0.05252434313297272, -0.03267423436045647, -0.013907013460993767, -0.02585289068520069, 0.061153341084718704, -0.021436071023344994, -0.02899070829153061, 0.035095810890197754, 0.05798141658306122, -0.009328186511993408, -0.003071736078709364, -0.053683970123529434, -0.0038881655782461166, -0.02694430574774742, 0.011997037567198277, -0.07674010843038559, -0.011127316392958164, -0.041814833879470825, 0.08397073298692703, -0.05354754626750946, -0.03485706448554993, 0.03738095983862877, 0.05627608299255371, -0.037994883954524994, 0.020839203149080276, -0.03426019847393036, 0.01556971576064825, 0.040348246693611145, -0.014537988230586052, -0.005691558122634888, -0.04495265334844589, -0.005167167633771896, 0.0349934920668602, 0.008304985240101814, 0.06159672886133194, -0.024096395820379257, -0.03356100991368294, -0.09747699648141861, -0.018622267991304398, -0.037994883954524994, -0.006701970007270575, -0.016311537474393845, -0.010078534483909607, 0.01770138554275036, 0.01656733825802803, 0.035641517490148544, -0.03826773539185524, -0.06493918597698212, 0.045157290995121, -0.041985366493463516, -0.0025196336209774017, -0.06493918597698212, 0.00927702710032463, -0.0004335283301770687, -0.0034639632795006037, 0.008437149226665497, 0.0020677195861935616, -0.0013525445247069001, -0.04918188601732254, 0.06343849003314972, -0.011954404413700104, 0.04079163447022438, -0.0058024050667881966, -0.07373872399330139, 0.0075333211570978165, 0.036528293043375015, 0.018076559528708458, -0.030303817242383957, 0.005461337976157665, -0.011417223140597343, 0.062006011605262756, -0.07367050647735596, -0.02858142927289009, 0.013267512433230877, -0.020105909556150436, -0.030116230249404907, -0.006889556534588337, 0.019798949360847473, -0.01747969165444374, -0.006919400300830603, 0.0023981283884495497, 0.004745096899569035, -0.026159850880503654, -0.039461471140384674, -0.01840057410299778, 0.0016584390541538596, -0.06360902637243271, 0.0784454494714737, -0.009541354142129421, -0.010880042798817158, -0.009038279764354229, -0.03040613792836666, -0.033083513379096985, 0.042565181851387024, 0.005683031398802996, -0.009208813309669495, -0.0050819008611142635, 0.043997664004564285, -0.06463222950696945, -0.03294708952307701, 0.079400435090065, 0.013881433755159378, -0.017385898157954216, 0.05699232220649719, 0.04300856962800026, 0.023908808827400208, -0.05170578137040138, 0.05770856514573097, 0.0404505655169487, -0.04246286302804947, 0.06456401199102402, 0.03796077519655228, 0.06476865708827972, 0.018093613907694817, -0.014154287055134773, -0.03376564756035805, 0.003811425529420376, -0.053683970123529434, -0.0009581855847500265, -0.04123501852154732, -0.013710900209844112, -0.011997037567198277, 0.03480590507388115, 0.02170892432332039, 0.04577121511101723, -0.05743570998311043, 0.01512632891535759, -0.031412284821271896, -0.008275141939520836, 0.005009423941373825, -0.03376564756035805, -0.03340752795338631, -0.01971368119120598, 0.02242516539990902, 0.030184444040060043, 0.019560201093554497, -0.04809046909213066, -0.06555310636758804, 0.040518779307603836, 0.025716464966535568, -0.001855618553236127, -0.042531076818704605, 0.023431314155459404, 0.016115423291921616, 0.024454515427350998, 0.010530448518693447, -0.03219674155116081, -0.033987343311309814, -0.013173718936741352, 0.0556962676346302, 0.02389175444841385, 0.01638827659189701, -0.05139882117509842, 0.006403536070138216, -0.01249158475548029, -0.002063456457108259, 0.017633171752095222, 0.008117398247122765, -0.01522864867001772, -0.006169052328914404, -0.015902256593108177, -0.05047794058918953, -0.021640712395310402, -0.04352017119526863, -0.050921328365802765, -0.02331194095313549, 0.0061221555806696415, -0.062278863042593, 0.008420095779001713, -0.02351658046245575, 0.06135798245668411, 0.042019475251436234, -0.014802315272390842, -0.010010321624577045, 0.02771170623600483, 0.07060090452432632, -0.012610957957804203, -0.0038497955538332462, 0.03758560121059418, 0.025375397875905037, 0.031651031225919724, -0.003391486592590809, 0.008680159226059914, 0.015535609796643257, 0.06422294676303864, 0.021077951416373253, 0.008164294995367527, 0.050580259412527084, 0.029758110642433167, 0.008680159226059914, -0.017206838354468346 ]