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
sequencelengths
768
768
7,380
uuid
_find_mac_under_heading
Looks for a MAC address under a heading in a command's output. The first line of words in the output is searched for the given heading. Words at the same word index as the heading in subsequent lines are then examined to see if they look like MAC addresses.
def _find_mac_under_heading(command, args, heading): """Looks for a MAC address under a heading in a command's output. The first line of words in the output is searched for the given heading. Words at the same word index as the heading in subsequent lines are then examined to see if they look like MAC addresses. """ stdout = _get_command_stdout(command, args) if stdout is None: return None keywords = stdout.readline().rstrip().split() try: column_index = keywords.index(heading) except ValueError: return None first_local_mac = None for line in stdout: words = line.rstrip().split() try: word = words[column_index] except IndexError: continue mac = _parse_mac(word) if mac is None: continue if _is_universal(mac): return mac if first_local_mac is None: first_local_mac = mac return first_local_mac
(command, args, heading)
[ 0.014834912493824959, 0.02086900733411312, -0.039032772183418274, -0.04468918591737747, -0.010698000900447369, -0.05361296981573105, 0.027491578832268715, 0.03434251621365547, -0.02232702635228634, -0.04233527556061745, 0.008014717139303684, 0.0037680151872336864, -0.003289327956736088, -0.04268660396337509, 0.006477648392319679, 0.06731484085321426, 0.03966516628861427, 0.06306374818086624, -0.010759484022855759, -0.031075146049261093, 0.06295835226774216, 0.020798740908503532, 0.006165842991322279, 0.002435156609863043, -0.004962537437677383, 0.02571736089885235, 0.033130425959825516, -0.0313386432826519, 0.018638061359524727, -0.012340469285845757, 0.020605508238077164, -0.03378038853406906, -0.004114953335374594, 0.025120100006461143, -0.004497025161981583, 0.0058057294227182865, 0.08256256580352783, -0.01732935570180416, -0.01226141955703497, -0.0282118059694767, -0.03625726327300072, -0.006042877212166786, 0.0495375394821167, 0.021360868588089943, -0.018796158954501152, 0.013429592363536358, -0.014448449946939945, 0.00949469581246376, -0.00959131121635437, 0.043424397706985474, -0.01949881948530674, -0.043986525386571884, 0.005577364936470985, -0.050942860543727875, -0.012560050003230572, -0.035589735954999924, 0.0027008499018847942, -0.04651610180735588, -0.05052126571536064, 0.04676203429698944, -0.015757154673337936, 0.03418441489338875, -0.012454651296138763, 0.034324947744607925, -0.003322265110909939, -0.05986664444208145, 0.034641146659851074, -0.01969205029308796, -0.026051124557852745, -0.02069334127008915, -0.009775759652256966, 0.028492869809269905, 0.0016556429909542203, -0.017162473872303963, 0.051259059458971024, -0.02540116384625435, 0.009951424784958363, -0.04532158002257347, 0.010733134113252163, 0.029757658019661903, 0.012999213300645351, 0.07602782547473907, 0.005937478505074978, -0.026156524196267128, 0.013921454548835754, 0.015924036502838135, 0.04521618038415909, 0.06099090352654457, -0.04405679181218147, -0.01573958806693554, -0.016951676458120346, -0.017786085605621338, 0.01627536676824093, 0.0690012276172638, 0.02701728232204914, 0.004518982954323292, 0.004229135811328888, 0.025102533400058746, -0.041913677006959915, -0.03643292933702469, -0.06253675371408463, 0.040157027542591095, 0.06366100907325745, 0.043354131281375885, -0.009872375056147575, 0.012542483396828175, -0.06482040137052536, 0.034588444977998734, -0.019481252878904343, 0.01075070071965456, -0.04268660396337509, -0.07135514169931412, -0.03198860213160515, -0.03685452416539192, 0.09598337858915329, -0.008853518404066563, 0.01869075931608677, -0.003752644406631589, -0.03205886855721474, -0.009933858178555965, 0.02364451438188553, -0.04092995449900627, 0.0344654805958271, -0.05884778872132301, -0.008076200261712074, -0.031883206218481064, 0.01912992261350155, -0.03342905640602112, 0.01021492201834917, 0.010856099426746368, 0.007044168189167976, 0.013965371064841747, 0.003491342766210437, -0.006192192435264587, -0.01426400151103735, 0.027245648205280304, -0.01849752850830555, -0.007193483412265778, -0.04820248857140541, -0.011778340674936771, 0.020781174302101135, -0.0028677317313849926, -0.00224521872587502, -0.07202266901731491, -0.04728902876377106, 0.03365742042660713, -0.021800031885504723, -0.04145694896578789, 0.06671757996082306, -0.02545386366546154, -0.03618699684739113, -0.05371836945414543, -0.02508496679365635, 0.036643728613853455, 0.010698000900447369, 0.004782480653375387, -0.00794445164501667, -0.0291603971272707, -0.00249224784784019, 0.010012906976044178, 0.04026242718100548, -0.06633111834526062, -0.014325483702123165, -0.02457553893327713, -0.008603195659816265, -0.01253370102494955, -0.013122178614139557, 0.000027876532840309665, 0.04085968807339668, -0.013552557677030563, -0.0388571061193943, 0.04872948303818703, -0.010399370454251766, 0.006754320580512285, -0.022555390372872353, 0.011339178308844566, -0.039278704673051834, -0.01084731612354517, -0.0007850031252019107, -0.023714780807495117, 0.003836085321381688, 0.022731056436896324, -0.02325805090367794, -0.0029665434267371893, -0.02796587347984314, 0.08396788686513901, 0.020904140546917915, 0.026103824377059937, 0.01613483391702175, 0.06387180835008621, 0.01248100120574236, -0.006987077184021473, 0.022362159565091133, 0.01632806472480297, -0.009889941662549973, -0.04258120432496071, 0.027351045981049538, 0.059901777654886246, -0.01414103526622057, -0.04230014234781265, 0.020464977249503136, -0.020078513771295547, -0.03492220863699913, 0.09366460144519806, 0.010513552464544773, -0.022028395906090736, 0.026788918301463127, 0.05617767944931984, -0.10497742891311646, -0.014369400218129158, -0.03360472247004509, -0.05347243696451187, -0.014149818569421768, 0.027298348024487495, 0.0009090665844269097, 0.01347350887954235, -0.01398293673992157, 0.05399943143129349, 0.012463434599339962, -0.0029709350783377886, -0.006727971136569977, 0.005379742011427879, 0.07033628225326538, 0.04539184644818306, 0.00553344888612628, -0.016916543245315552, -0.012709365226328373, 0.007667778991162777, 0.05684520676732063, -0.03249803185462952, 0.052769776433706284, -0.0639420747756958, -0.000420772674260661, 0.034588444977998734, -0.019270455464720726, 0.01718004047870636, -0.0021815402433276176, -0.032181836664676666, 0.0310400128364563, -0.020798740908503532, -0.01021492201834917, 0.004778089001774788, 0.061342231929302216, 0.05631821230053902, 0.03190077096223831, -0.027913175523281097, -0.016240233555436134, -0.030196819454431534, -0.02840503677725792, -0.03525597229599953, -0.08979997038841248, 0.04619990661740303, 0.08783251792192459, -0.03047788515686989, 0.03931383416056633, -0.09506992250680923, -0.03527354076504707, 0.014632897451519966, 0.0028809066861867905, 0.06000717729330063, -0.014439666643738747, -0.007228616159409285, 0.089027039706707, -0.07047681510448456, -0.007430631201714277, 0.01472951378673315, -0.045602645725011826, 0.09457805752754211, -0.037767983973026276, -0.019779883325099945, -0.05066179856657982, -0.01225263625383377, -0.004281835164874792, -0.008853518404066563, -0.004143499303609133, -0.012059404514729977, 0.025295766070485115, 0.02050011046230793, -0.01442210003733635, -0.02294185385107994, 0.013376892544329166, 0.004262072965502739, -0.04244067519903183, -0.010109523311257362, -0.006275633350014687, -0.015379474498331547, 0.01912992261350155, -0.054385896772146225, 0.047745756804943085, 0.005199685227125883, 0.01602943427860737, -0.04131641611456871, 0.002362694824114442, -0.03560730442404747, 0.005897953640669584, 0.08495161682367325, -0.010583818890154362, -0.007900535129010677, 0.039208438247442245, -0.0645744651556015, -0.03033735230565071, 0.0297752246260643, 0.0027974657714366913, -0.018286731094121933, -0.06436367332935333, 0.03130351006984711, 0.017294222488999367, 0.04180828109383583, 0.025120100006461143, -0.04897541180253029, -0.0066928379237651825, -0.0335344560444355, 0.004393821582198143, -0.011347961612045765, -0.05698573961853981, -0.019586652517318726, -0.017733385786414146, 0.027544278651475906, -0.003320069285109639, 0.048553816974163055, -0.0039327009581029415, 0.004712214693427086, 0.005357783753424883, 0.018567794933915138, 0.021220337599515915, -0.030126554891467094, -0.019024522975087166, -0.03358715400099754, 0.025629529729485512, 0.05628307908773422, 0.002327561844140291, 0.023099953308701515, 0.009731843136250973, 0.03321826085448265, -0.015265291556715965, -0.00466829864308238, -0.07434144616127014, -0.014386966824531555, -0.051364459097385406, -0.06049903854727745, 0.007382323499768972, 0.03274396434426308, 0.029617125168442726, 0.012393168173730373, 0.10708540678024292, 0.0003027477068826556, 0.005168943665921688, 0.06162329763174057, -0.028738800436258316, -0.029388761147856712, 0.040402960032224655, 0.06787697225809097, -0.014588981866836548, 0.015563922934234142, 0.06373127549886703, 0.04194881021976471, -0.03917330503463745, -0.04244067519903183, 0.028492869809269905, 0.02550656348466873, 0.027561845257878304, 0.010346670635044575, -0.046164773404598236, -0.05849645659327507, -0.03966516628861427, -0.008941350504755974, -0.06717430800199509, 0.08544347435235977, 0.01649494655430317, -0.012762065045535564, -0.03523840755224228, 0.008572453632950783, 0.01320122741162777, -0.024487705901265144, -0.011936439201235771, 0.03109271265566349, 0.03304259479045868, -0.006925594061613083, -0.04163261502981186, -0.005568581633269787, 0.007386715151369572, -0.0067587122321128845, -0.02833477035164833, 0.02230945974588394, -0.04693770036101341, 0.014343050308525562, -0.0501348040997982, -0.05083746090531349, 0.011593892239034176, 0.021800031885504723, -0.008396788500249386, -0.004580466076731682, 0.03335878998041153, 0.012858680449426174, 0.026156524196267128, 0.028861766681075096, 0.007364756893366575, -0.008467054925858974, -0.08551374077796936, -0.04124614968895912, 0.012928946875035763, -0.04528644680976868, -0.009362946264445782, 0.010460853576660156, -0.029494160786271095, 0.017197607085108757, -0.0024307649582624435, -0.027386179193854332, -0.03529110550880432, -0.016503730788826942, -0.020921707153320312, -0.043916258960962296, 0.005493924021720886, -0.02062307484447956, -0.013376892544329166, 0.029792791232466698, 0.04043809324502945, 0.002735982881858945, -0.011620242148637772, 0.02155410125851631, -0.049748338758945465, -0.06812290102243423, -0.03443034738302231, 0.06594465672969818, 0.07188213616609573, 0.0394895002245903, -0.022906720638275146, -0.0039327009581029415, 0.037522051483392715, -0.05561555176973343, 0.017320573329925537, 0.01520380936563015, -0.02972252480685711, 0.0011264521162956953, 0.025928160175681114, 0.06879042834043503, 0.051188793033361435, -0.03014412149786949, 0.03351689130067825, -0.012762065045535564, -0.018040800467133522, -0.019358286634087563, -0.024909302592277527, 0.05554528534412384, -0.07107407599687576, -0.013227577321231365, -0.007918101735413074, -0.06626085191965103, -0.061904359608888626, 0.01326271053403616, 0.04753496125340462, -0.035396505147218704, -0.03899763897061348, -0.014747080393135548, 0.06439880281686783, -0.08593533933162689, -0.0357302688062191, 0.04823761805891991, 0.027878042310476303, 0.001167074660770595, 0.002670108573511243, 0.10511796176433563, 0.03258586302399635, 0.011400661431252956, 0.0049186209216713905, -0.033323656767606735, 0.019656917080283165, -0.0070309932343661785, -0.017487455159425735, -0.00841874722391367, 0.009196064434945583, -0.026490287855267525, -0.01579228788614273, 0.01551122311502695, 0.03818957880139351, -0.01216480415314436, 0.023029686883091927, -0.015168676152825356, -0.09675630182027817, -0.011646592058241367, -0.016591563820838928, -0.05856672301888466, 0.00911701563745737, 0.0007086986443027854, 0.03674912452697754, 0.014553848654031754, 0.0013130961451679468, -0.0376274511218071, -0.04149208217859268, -0.03453574702143669, -0.005928695201873779, 0.0702308863401413, 0.0019279237603768706, -0.02845773659646511, 0.08853518217802048, -0.029371194541454315, 0.051364459097385406, 0.059972044080495834, 0.024189075455069542, -0.04602424055337906, 0.01930558867752552, -0.013297843746840954, 0.024733638390898705, -0.04690256714820862, -0.04781602323055267, -0.015177459456026554, 0.01974475011229515, -0.022081095725297928, 0.004725389648228884, 0.05280490964651108, 0.035396505147218704, 0.03183050453662872, -0.028246939182281494, -0.01348229218274355, -0.052945442497730255, 0.05652901157736778, -0.03769771754741669, -0.05312110856175423, 0.03522083908319473, 0.04331899806857109, -0.04237040877342224, 0.028492869809269905, 0.025594396516680717, -0.08361656218767166, -0.00513820257037878, 0.05052126571536064, 0.008286998607218266, 0.011822257190942764, -0.02050011046230793, -0.041527215391397476, -0.04444325342774391, 0.04539184644818306, -0.02526063285768032, 0.01075070071965456, 0.06359074264764786, 0.025857893750071526, -0.04293253645300865, 0.020535243675112724, -0.007597513031214476, -0.023486414924263954, -0.01398293673992157, -0.012621533125638962, -0.04110562056303024, 0.0015238942578434944, -0.020675774663686752, 0.021290602162480354, -0.03249803185462952, -0.016213882714509964, -0.09521044790744781, 0.053823769092559814, -0.06854449957609177, -0.00539291650056839, 0.025348465889692307, 0.056212812662124634, -0.023609381169080734, 0.09724816679954529, -0.013578907586634159, -0.0005429147859103978, 0.011778340674936771, 0.0013416417641565204, 0.0011901305988430977, -0.004152282606810331, 0.007421847898513079, 0.023416150361299515, -0.01862049475312233, -0.03738151863217354, -0.03406145051121712, -0.009187281131744385, -0.005977002903819084, -0.005990177858620882, -0.029177963733673096, 0.05052126571536064, -0.02143113501369953, -0.004865921568125486, -0.03734638914465904, 0.003897567978128791, 0.04384599253535271, 0.012524917721748352, 0.03140890970826149, 0.010232488624751568, -0.0017994687659665942, -0.018163764849305153, 0.07156593352556229, -0.007290099281817675, -0.008989658206701279, -0.0013098024064674973, 0.0006318452069535851, -0.04310820251703262, -0.08038432151079178, -0.04876461625099182, -0.02833477035164833, -0.022344592958688736, 0.00010306596959708259, 0.02000824734568596, -0.03341149166226387, 0.017680685967206955, 0.03681939095258713, -0.018971825018525124, 0.0006400794954970479, -0.000665880274027586, 0.02865096740424633, 0.00042955591925419867, 0.02889689989387989, 0.0027689202688634396, 0.08909730613231659, 0.01676722802221775, -0.046797167509794235, -0.0495375394821167, -0.00921363104134798, -0.07623862475156784, -0.03653832897543907, 0.012235069647431374, 0.005893561989068985, 0.03910303860902786, 0.0006016527768224478, 0.017654336988925934, 0.06432853639125824, -0.04244067519903183, -0.0024746812414377928, -0.005340217147022486, 0.026490287855267525, 0.004598032217472792, -0.0054983156733214855, 0.0010067803086712956, 0.046551235020160675, 0.041351549327373505, -0.031444042921066284, -0.02169463224709034, 0.019885282963514328, 0.014053203165531158, 0.012770848348736763, 0.05305084213614464, 0.0022287501487880945, 0.0027491578366607428, -0.027105115354061127, 0.00358795840293169, -0.009239980950951576, -0.04092995449900627, -0.06183409318327904, 0.01006560679525137, -0.086497463285923, 0.02187029831111431, 0.05656414106488228, 0.01761920377612114, 0.0846705511212349, -0.01613483391702175, -0.006960727274417877, 0.02496200241148472, 0.02889689989387989, 0.007900535129010677, -0.006877286359667778, 0.02928336150944233, -0.002270470606163144, 0.06443393975496292, 0.029933322221040726, -0.03536137193441391, -0.008383614011108875, 0.004316968377679586, -0.026929451152682304, -0.05568581819534302, -0.0329020619392395, -0.008546103723347187, -0.017021942883729935, 0.014079553075134754, 0.00547196576371789, -0.03002115525305271, 0.015388257801532745, -0.062220558524131775, -0.024241775274276733, 0.013368109241127968, 0.007430631201714277, 0.024312041699886322, 0.006701621226966381, -0.017610419541597366, -0.01028518844395876, -0.002832598751410842, 0.022168928757309914, -0.02086900733411312, 0.03681939095258713, -0.03970029950141907, 0.08312469720840454, -0.048940278589725494, 0.015423390083014965, 0.012770848348736763, -0.006222933996468782, 0.08094645291566849, 0.07293612509965897, -0.001154997618868947, -0.001370187266729772, -0.0765196904540062, -0.008005933836102486, -0.0432487316429615, 0.030671115964651108, 0.07469277828931808, -0.008941350504755974, 0.040402960032224655, -0.07813581079244614, 0.018023233860731125, 0.0376274511218071, -0.011365528218448162, 0.044162191450595856, 0.027105115354061127, -0.023855311796069145, -0.004466283600777388, -0.021922996267676353, -0.008598803542554379, -0.03409658372402191, 0.017786085605621338, -0.020535243675112724, 0.03604646772146225, 0.015080844052135944, -0.00974940974265337, 0.05252384766936302, -0.021993262693285942, 0.08748119324445724, -0.006605005357414484, -0.046621501445770264, -0.027983440086245537, 0.017830001190304756, 0.0426514707505703, 0.0304076187312603, -0.013210010714828968, 0.07191726565361023, 0.013139745220541954, 0.005322650540620089, -0.03527354076504707, 0.016855061054229736, -0.002336344914510846, -0.03414928540587425, 0.06847423315048218, -0.01451871544122696, 0.034588444977998734, 0.007830268703401089, 0.11305802315473557, 0.01000412367284298, 0.05421023070812225, -0.013965371064841747, -0.04409192502498627, 0.05284004285931587, 0.05775866657495499, -0.010654084384441376, 0.04268660396337509, 0.026788918301463127, 0.034395214170217514, 0.01022370532155037, -0.022871587425470352, -0.02450527250766754, 0.023995844647288322, 0.03963003307580948, 0.017636770382523537, -0.01661791279911995, -0.052313048392534256, 0.011207429692149162, 0.020798740908503532, 0.023416150361299515, 0.016969243064522743, -0.013306627050042152, 0.032445333898067474, 0.03421954810619354, 0.03850577771663666, -0.04771062359213829, -0.005489532370120287, -0.03773285076022148, 0.04110562056303024, -0.01969205029308796, -0.05027533322572708, -0.04507564753293991, 0.008282606489956379 ]
7,381
uuid
_get_command_stdout
null
def _get_command_stdout(command, *args): import io, os, shutil, subprocess try: path_dirs = os.environ.get('PATH', os.defpath).split(os.pathsep) path_dirs.extend(['/sbin', '/usr/sbin']) executable = shutil.which(command, path=os.pathsep.join(path_dirs)) if executable is None: return None # LC_ALL=C to ensure English output, stderr=DEVNULL to prevent output # on stderr (Note: we don't have an example where the words we search # for are actually localized, but in theory some system could do so.) env = dict(os.environ) env['LC_ALL'] = 'C' # Empty strings will be quoted by popen so we should just ommit it if args != ('',): command = (executable, *args) else: command = (executable,) proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL, env=env) if not proc: return None stdout, stderr = proc.communicate() return io.BytesIO(stdout) except (OSError, subprocess.SubprocessError): return None
(command, *args)
[ 0.021204110234975815, -0.07826279103755951, 0.018956055864691734, -0.020461108535528183, 0.06751784682273865, -0.002348074223846197, 0.04896187037229538, -0.019699055701494217, 0.057839781045913696, -0.04404663294553757, 0.09731409698724747, 0.029586687684059143, -0.008501647971570492, -0.06542220711708069, -0.01483144611120224, 0.01015434879809618, 0.012888212688267231, 0.01258339174091816, -0.013307341374456882, -0.0027886356692761183, 0.031091740354895592, 0.0478568933904171, 0.027986377477645874, -0.012602442875504494, -0.029415225610136986, 0.008925539441406727, 0.0015788774471729994, -0.0840543881058693, -0.01756531000137329, 0.004188907332718372, 0.004953341092914343, -0.008868386037647724, -0.006482208613306284, -0.021718494594097137, -0.059440091252326965, 0.07239498198032379, 0.036883339285850525, -0.0015467283083125949, -0.04347509145736694, -0.025338243693113327, -0.057420652359724045, -0.0626407116651535, 0.03602603077888489, -0.04980012774467468, 0.002059923019260168, -0.013059673830866814, -0.0478568933904171, 0.011583197861909866, -0.07910104840993881, 0.01897510699927807, 0.08702639490365982, 0.0018670285353437066, -0.007782460656017065, -0.04347509145736694, -0.026157451793551445, 0.01916562020778656, 0.004743776749819517, -0.012392878532409668, -0.015317254699766636, -0.0050247833132743835, -0.0324634350836277, 0.02728147804737091, -0.03433046489953995, 0.029815303161740303, -0.016993770375847816, -0.012850109487771988, 0.036749981343746185, -0.05757306516170502, -0.019384710118174553, -0.012507186271250248, -0.0064441063441336155, 0.001029961509630084, -0.05364849418401718, -0.03478769585490227, 0.058068398386240005, -0.003848365042358637, -0.0309012271463871, 0.0046008918434381485, 0.02499532140791416, 0.06294553726911545, -0.00842544250190258, 0.015193421393632889, 0.008996982127428055, 0.028443608433008194, -0.003841220634058118, -0.038255032151937485, 0.033396948128938675, 0.03187284618616104, -0.009373245760798454, -0.014679035171866417, -0.03966483101248741, -0.017555784434080124, -0.02131841704249382, 0.08580710738897324, 0.03177758678793907, 0.015479190275073051, 0.047475866973400116, 0.05985921993851662, -0.04176047444343567, 0.01054490078240633, -0.0464089959859848, 0.09457071125507355, 0.08054894208908081, 0.017203334718942642, -0.018336886540055275, 0.03149181976914406, -0.02952953241765499, 0.025204885751008987, 0.005539169069379568, -0.03292066603899002, -0.009678066708147526, -0.03598792850971222, 0.02686234936118126, -0.032158613204956055, 0.08237787336111069, -0.038769420236349106, -0.04435145482420921, 0.012945366092026234, -0.027853017672896385, -0.03680713474750519, -0.036845237016677856, 0.026690887287259102, 0.035606902092695236, -0.05437244474887848, -0.02154703438282013, 0.020784981548786163, 0.00997336208820343, -0.05406762287020683, 0.04035067930817604, 0.022937778383493423, 0.04419904202222824, 0.020918339490890503, 0.02737673558294773, 0.019251350313425064, 0.0012907263590022922, -0.01672705076634884, -0.09098906815052032, -0.0043127406388521194, 0.008892199955880642, 0.10790663212537766, 0.017022347077727318, -0.03760728985071182, 0.011640351265668869, -0.014307535253465176, -0.023128291592001915, 0.009235123172402382, 0.08009171485900879, -0.021166007965803146, 0.09068424254655838, -0.008925539441406727, 0.020156288519501686, -0.02916755899786949, -0.017746297642588615, 0.001245479448698461, 0.0032625370658934116, -0.05570603534579277, 0.04507540166378021, -0.034082796424627304, -0.00591543223708868, -0.013383546844124794, 0.020003877580165863, 0.0011835626792162657, -0.013993188738822937, -0.022728214040398598, -0.014078919775784016, 0.027624402195215225, 0.006977542769163847, -0.009187495335936546, 0.06485066562891006, -0.029377123340964317, -0.037664443254470825, 0.021242212504148483, -0.023737933486700058, -0.007672915700823069, -0.04789499565958977, 0.025319192558526993, 0.010440118610858917, 0.06641287356615067, -0.029720045626163483, -0.04698053374886513, 0.0129548916593194, 0.006958491634577513, -0.005548694636672735, -0.008868386037647724, -0.029586687684059143, 0.04667571187019348, 0.06469825655221939, 0.007572896312922239, 0.0021397003438323736, 0.02874842844903469, -0.02754819579422474, 0.03774064779281616, 0.011707031168043613, 0.018146375194191933, -0.02196616306900978, -0.020689724013209343, -0.031110791489481926, -0.025928834453225136, -0.0354735441505909, 0.019965775310993195, -0.006382189225405455, -0.019965775310993195, 0.040464986115694046, 0.010363913141191006, -0.03152992203831673, -0.006510785780847073, -0.0029910558369010687, 0.0385408028960228, -0.026938553899526596, -0.03749298304319382, 0.0363689549267292, -0.05837322026491165, -0.06740354001522064, 0.02939617447555065, 0.00954946968704462, 0.020137235522270203, 0.05623947083950043, 0.015764961019158363, -0.05616326630115509, -0.0385408028960228, 0.004631849937140942, -0.004253205377608538, -0.007406197488307953, 0.07910104840993881, -0.04534212127327919, -0.0010418685851618648, 0.0046794782392680645, 0.05147664248943329, 0.03025348298251629, -0.029491430148482323, 0.021337468177080154, 0.008625481277704239, 0.024690499529242516, 0.0034887713845819235, -0.019508542492985725, -0.026024091988801956, -0.0354735441505909, -0.010287708602845669, 0.008615955710411072, -0.006548888515681028, -0.042522527277469635, -0.029681943356990814, 0.03846459835767746, 0.07841520011425018, 0.006706061773002148, -0.06462205201387405, -0.01835593953728676, 0.013078725896775723, 0.009187495335936546, -0.012754852883517742, 0.023909395560622215, -0.007263312581926584, 0.04035067930817604, -0.06660338491201401, 0.030729765072464943, -0.059897322207689285, -0.02369983121752739, -0.017193809151649475, 0.002688616281375289, 0.05993542820215225, -0.007096613757312298, 0.01678420603275299, 0.01806064322590828, -0.066489078104496, -0.03175853565335274, -0.04541832581162453, -0.05296264588832855, 0.04511350765824318, 0.022632958367466927, 0.03034873865544796, -0.05799219384789467, 0.035149671137332916, -0.037569187581539154, 0.0006096419529058039, -0.050409771502017975, 0.001797967590391636, 0.030634509399533272, -0.007977737113833427, 0.02021344192326069, 0.015079112723469734, -0.049304794520139694, 0.008092044852674007, -0.010402016341686249, -0.04179857671260834, 0.034216154366731644, 0.025147730484604836, -0.022842522710561752, -0.05684911459684372, 0.030558302998542786, -0.0014383740490302444, 0.0610785037279129, -0.0033482681028544903, -0.01354548241943121, -0.03996965289115906, -0.018994158133864403, 0.037702545523643494, -0.04149375855922699, -0.041417550295591354, 0.014031291007995605, -0.06279312074184418, 0.021794700995087624, 0.010173400864005089, -0.023966550827026367, 0.006301221437752247, -0.04717104882001877, 0.05658239498734474, -0.016222191974520683, -0.009887631051242352, -0.028767481446266174, -0.01919419690966606, -0.027167171239852905, 0.028919890522956848, 0.05056218057870865, 0.0387122668325901, -0.014802869409322739, 0.00630598422139883, -0.00903032161295414, 0.008820757269859314, 0.041188936680555344, 0.01643175631761551, -0.007615761831402779, 0.02989150770008564, 0.075748011469841, 0.015583973377943039, -0.015021959319710732, -0.03172043338418007, 0.018508348613977432, 0.01867981068789959, 0.05997353047132492, 0.05052407830953598, -0.0012740564998239279, -0.0047866422683000565, -0.027719657868146896, 0.04827602207660675, 0.02884368598461151, 0.026443220674991608, -0.030653560534119606, -0.07753884047269821, -0.0633646622300148, -0.03966483101248741, 0.01116406824439764, 0.07605283707380295, -0.04766638204455376, 0.012402404099702835, 0.003698335960507393, -0.02411895990371704, 0.018403567373752594, 0.02438567951321602, -0.06435532867908478, -0.0786438137292862, 0.02522393688559532, 0.02842455729842186, -0.030196329578757286, -0.03387323394417763, 0.018470246344804764, 0.012316673062741756, -0.004498491063714027, 0.0293390192091465, 0.03185379132628441, 0.02366172894835472, 0.014860022813081741, 0.008077756501734257, -0.035778362303972244, -0.04846653714776039, -0.037473928183317184, -0.03989344835281372, 0.025185834616422653, 0.0026243182364851236, 0.013726470060646534, 0.04435145482420921, -0.012202365323901176, 0.02457619272172451, -0.025090577080845833, 0.006382189225405455, -0.03471149131655693, 0.03356841206550598, -0.0548296757042408, -0.03213956207036972, -0.036883339285850525, -0.0556679330766201, -0.022575804963707924, -0.01981336437165737, -0.016879461705684662, -0.053534187376499176, -0.015698280185461044, 0.004700911231338978, -0.009678066708147526, 0.03455907851457596, 0.01354548241943121, -0.0478568933904171, -0.04389422386884689, -0.020918339490890503, 0.0004622919950634241, -0.011926121078431606, 0.029643841087818146, 0.002049206756055355, 0.0765862762928009, 0.0347495935857296, 0.010411541908979416, -0.013640739023685455, 0.003781685372814536, -0.015784012153744698, -0.010325810872018337, 0.01597452536225319, -0.03585456684231758, -0.04012206196784973, -0.04198909178376198, 0.030272534117102623, 0.0018801263067871332, -0.03621654212474823, -0.01047822181135416, -0.030615458264946938, 0.02200426533818245, -0.04427524656057358, -0.03654041513800621, 0.007677678484469652, 0.029681943356990814, 0.03654041513800621, -0.03223481774330139, -0.00803489051759243, -0.05837322026491165, -0.023166395723819733, -0.003467338625341654, 0.05060028284788132, 0.06671769171953201, -0.00021075514086987823, 0.014840971678495407, -0.019060837104916573, 0.08092997223138809, 0.044313352555036545, 0.027491042390465736, -0.04846653714776039, -0.03423520550131798, 0.010954503901302814, 0.017231911420822144, -0.004176999907940626, 0.04896187037229538, 0.0053248414769768715, 0.011935646645724773, 0.04888566583395004, -0.055401213467121124, 0.022251931950449944, 0.04111273214221001, 0.024976270273327827, 0.0031863318290561438, 0.01393603440374136, 0.01522199809551239, -0.020918339490890503, 0.018660759553313255, -0.0068679978139698505, 0.09327521920204163, -0.02558591216802597, 0.014259906485676765, -0.01688898727297783, 0.037702545523643494, -0.044122837483882904, 0.02425231970846653, 0.05113372206687927, -0.03370177000761032, 0.031568024307489395, -0.04267493635416031, 0.07029934227466583, 0.00039174259291030467, -0.029281865805387497, -0.01570780575275421, -0.05258161947131157, 0.020651621744036674, 0.022404342889785767, -0.008868386037647724, -0.0013621688121929765, 0.0478568933904171, 0.048161715269088745, -0.06557461619377136, 0.007782460656017065, 0.005034308880567551, -0.018232105299830437, -0.0387122668325901, -0.04355129972100258, -0.0672130286693573, -0.0354735441505909, -0.06618425995111465, -0.042941655963659286, 0.044313352555036545, -0.008825520053505898, -0.04846653714776039, -0.019794313237071037, 0.05075269564986229, -0.016184089705348015, 0.013859828934073448, -0.006296458654105663, 0.06744164228439331, 0.11164068430662155, 0.012154736556112766, -0.07209016382694244, -0.009287514723837376, 0.014793343842029572, -0.06260260939598083, 0.015155318193137646, 0.029739096760749817, -0.04762827977538109, 0.05284833908081055, 0.018108271062374115, 0.06305984407663345, -0.008477834053337574, -0.03471149131655693, -0.036883339285850525, 0.1127837672829628, 0.029720045626163483, 0.023776037618517876, 0.02411895990371704, 0.003453050274401903, 0.0066155679523944855, -0.07711970806121826, -0.04134134575724602, -0.046790022403001785, 0.014736189506947994, -0.006053554359823465, -0.012573865242302418, -0.02815783955156803, 0.04781879112124443, -0.0038936117198318243, 0.07140431553125381, -0.017355745658278465, -0.010525849647819996, -0.018527399748563766, 0.05052407830953598, -0.05803029611706734, -0.0008061086409725249, -0.015850691124796867, 0.012097583152353764, -0.0005087295430712402, -0.03412089869379997, -0.01432658638805151, -0.005472489167004824, 0.012459557503461838, 0.030291585251688957, -0.03187284618616104, 0.03996965289115906, -0.0074919285252690315, 0.013393072411417961, 0.015488716773688793, -0.0014193226816132665, 0.01398366317152977, 0.005443912465125322, 0.030825022608041763, 0.005258162040263414, -0.03471149131655693, 0.00440085306763649, -0.033168334513902664, 0.027224324643611908, -0.02356647327542305, -0.021375572308897972, 0.0005274831783026457, 0.09761892259120941, 0.0158411655575037, 0.07494785636663437, -0.03749298304319382, 0.0065012602135539055, -0.04282734915614128, -0.011421261355280876, 0.06317415088415146, -0.02200426533818245, -0.05883045122027397, 0.027167171239852905, -0.017422424629330635, -0.0518195666372776, 0.01444089412689209, 0.06740354001522064, 0.03194905072450638, -0.044732481241226196, 0.010078144259750843, 0.03901708498597145, -0.02310924045741558, -0.04423714429140091, 0.014459945261478424, 0.01966095343232155, 0.0770816057920456, -0.02562401443719864, 0.05010494962334633, 0.038121674209833145, -0.005653476808220148, -0.06965159624814987, 0.03132035583257675, 0.01187849324196577, -0.01730811595916748, 0.004653282929211855, -0.00228615733794868, -0.007434774190187454, -0.01675562933087349, -0.07917725294828415, 0.03196810185909271, -0.015126741491258144, 0.03484484925866127, 0.021756598725914955, 0.046370893716812134, 0.01020197756588459, -0.0009281560778617859, 0.008177775889635086, -0.01258339174091816, -0.05681101232767105, 0.04511350765824318, 0.03846459835767746, 0.040274471044540405, 0.033854179084300995, 0.10432498157024384, -0.020689724013209343, 0.018527399748563766, -0.03556879982352257, -0.01222141645848751, -0.0025028660893440247, -0.00758718466386199, -0.031606126576662064, 0.0032815884333103895, 0.014231329783797264, 0.010497272945940495, 0.025700218975543976, 0.037702545523643494, -0.05970681086182594, 0.016641320660710335, 0.062145378440618515, 0.10005749017000198, 0.056468088179826736, -0.007349043618887663, 0.02301398478448391, 0.009573284536600113, 0.04305596277117729, -0.028272146359086037, -0.009735220111906528, 0.02297588251531124, -0.004303215071558952, 0.017022347077727318, 0.049304794520139694, 0.02947237901389599, 0.015164843760430813, -0.050371669232845306, -0.03229197487235069, -0.0281959418207407, -0.01890842616558075, -0.012402404099702835, -0.006415529176592827, -0.03726436570286751, -0.046828124672174454, -0.013231135904788971, -0.007444300223141909, 0.05509639158844948, -0.01359311118721962, -0.058982860296964645, 0.03659756854176521, 0.04130324348807335, -0.03749298304319382, 0.025643065571784973, 0.03112984262406826, 0.009573284536600113, 0.05216249078512192, 0.017384322360157967, -0.07631955295801163, -0.002571927150711417, -0.03219671547412872, -0.012907263822853565, 0.019403761252760887, 0.017746297642588615, -0.0144885228946805, -0.006263118702918291, 0.0031172707676887512, 0.0037126243114471436, -0.03650231286883354, -0.022442445158958435, -0.020784981548786163, 0.016622269526124, -0.023071138188242912, 0.037435825914144516, 0.011021183803677559, -0.03718816116452217, -0.03663567081093788, -0.053115058690309525, 0.028253095224499702, 0.04377991333603859, 0.02049921080470085, 0.01359311118721962, 0.0004551477322820574, 0.059478193521499634, -0.04332268238067627, -0.01835593953728676, 0.02392844669520855, -0.0642029196023941, -0.0023671253584325314, 0.06763215363025665, 0.03947431594133377, 0.019775262102484703, -0.07624334841966629, -0.04621848091483116, -0.03478769585490227, 0.04755207523703575, -0.028977045789361, -0.007591947913169861, 0.021070750430226326, -0.010697311721742153, 0.005653476808220148, 0.026843298226594925, -0.010221028700470924, 0.03718816116452217, -0.045685045421123505, 0.009530418552458286, -0.0385979562997818, -0.017222385853528976, -0.017660565674304962, -0.023509318009018898, 0.0018515493720769882, -0.016374602913856506, 0.05970681086182594, -0.01245003193616867, -0.023318804800510406, 0.026462271809577942, -0.03461623191833496, -0.0043698945082724094, -0.005305790342390537, -0.01831783540546894, 0.059440091252326965, 0.006396478042006493, -0.010763990692794323, -0.0033863706048578024, -0.026614682748913765, 0.05460105836391449, 0.007220447063446045, 0.029815303161740303, 0.05597275495529175, -0.00919225811958313, -0.040464986115694046, -0.02773870900273323, 0.01666037179529667, -0.006929914467036724, 0.0021277933847159147, 0.008520699106156826, 0.005420098081231117, 0.023642677813768387, -0.011364107020199299, -0.00691086333245039, -0.06938488036394119, 0.07639575749635696, 0.06984210759401321, -0.024652397260069847, 0.04671381786465645, 0.03233007714152336, -0.04480868577957153, 0.0485808439552784, -0.06165004521608353, 0.006987068336457014, 0.007234735414385796, 0.026290809735655785, -0.015260100364685059, -0.019737157970666885, -0.008273032493889332, -0.02939617447555065, 0.031015535816550255, 0.0158697422593832, 0.0028696039225906134, 0.0021670868154615164, 0.06275501847267151, 0.01652701199054718, 0.0393219068646431, -0.051781464368104935, 0.005305790342390537, -0.06629856675863266, -0.004360368940979242, 0.009897156618535519, -0.01359311118721962, -0.047704484313726425, -0.04720915108919144 ]
7,382
uuid
_ifconfig_getnode
Get the hardware address on Unix by running ifconfig.
def _ifconfig_getnode(): """Get the hardware address on Unix by running ifconfig.""" # This works on Linux ('' or '-a'), Tru64 ('-av'), but not all Unixes. keywords = (b'hwaddr', b'ether', b'address:', b'lladdr') for args in ('', '-a', '-av'): mac = _find_mac_near_keyword('ifconfig', args, keywords, lambda i: i+1) if mac: return mac return None
()
[ 0.04413849487900734, 0.006294085178524256, 0.042434029281139374, -0.034994758665561676, -0.009649747051298618, 0.004543015733361244, 0.006484949961304665, -0.03447987139225006, -0.010697281919419765, -0.07400210946798325, 0.021927207708358765, 0.006791220512241125, -0.007053104229271412, -0.009445566684007645, 0.08387379348278046, 0.04051651060581207, -0.011638287454843521, 0.03135501965880394, 0.05756114050745964, -0.023081272840499878, 0.0022925918456166983, -0.01439028512686491, 0.022193530574440956, -0.03607780486345291, 0.032455820590257645, 0.0662965178489685, 0.06302962452173233, -0.015100478194653988, -0.001464773085899651, -0.031479302793741226, -0.03376967832446098, -0.039770808070898056, 0.010555243119597435, -0.052589789032936096, 0.03197643905878067, 0.02489226497709751, 0.033041730523109436, 0.01372447982430458, -0.07322089374065399, -0.03142603859305382, 0.020329274237155914, -0.05923009663820267, 0.010049230419099331, 0.01883786916732788, -0.004054758232086897, 0.0036108875647187233, 0.009800663217902184, -0.002019611420109868, -0.010004843585193157, 0.001816540490835905, -0.03547414019703865, 0.000016211681213462725, -0.009765153750777245, 0.003997054882347584, -0.05184408649802208, -0.00927689578384161, -0.012517151422798634, -0.08153015375137329, -0.011425229720771313, 0.07819224894046783, -0.05653136223554611, 0.04516827315092087, -0.01828746870160103, -0.008704302832484245, 0.007590187713503838, -0.04506174474954605, -0.024998793378472328, -0.033059485256671906, -0.050388190895318985, 0.02714712731540203, 0.018802359700202942, -0.017985638231039047, -0.02203373797237873, -0.028389964252710342, 0.07314987480640411, -0.034639663994312286, -0.010280043818056583, -0.004860383458435535, -0.01167379692196846, 0.05411670729517937, 0.027289165183901787, 0.10283594578504562, 0.005987814627587795, 0.0004419286851771176, 0.04190138727426529, 0.01197562925517559, 0.05663789063692093, 0.06927932798862457, -0.04694375768303871, -0.039131633937358856, -0.005206602159887552, -0.0015235858736559749, -0.004429828841239214, 0.05692196637392044, -0.010652895085513592, -0.023560652509331703, 0.013928660191595554, 0.014967317692935467, 0.035314347594976425, -0.04914535582065582, -0.01769268326461315, 0.029295461252331734, -0.03867000713944435, -0.023791465908288956, 0.018731340765953064, 0.0024301917292177677, -0.052873868495225906, 0.060934558510780334, -0.020631106570363045, -0.031852155923843384, -0.021501092240214348, -0.039770808070898056, -0.004558551125228405, -0.019121946766972542, 0.07620371133089066, 0.03549189493060112, 0.004414293449372053, 0.04254056140780449, 0.016796063631772995, -0.03416028246283531, -0.04094262421131134, 0.009631992317736149, -0.0226906668394804, -0.03252683952450752, -0.0032291586976498365, 0.009330159984529018, 0.0026254947297275066, -0.010821565985679626, -0.015819549560546875, -0.03426681086421013, 0.060579463839530945, -0.009059399366378784, 0.006320717744529247, 0.037888795137405396, -0.013848762959241867, -0.012446132488548756, -0.018731340765953064, -0.0051622153259813786, -0.017355341464281082, -0.03955775126814842, -0.0002421868994133547, 0.005375273060053587, -0.03668146952986717, -0.06306513398885727, -0.06512469798326492, 0.038172874599695206, -0.018322980031371117, -0.03902510553598404, 0.06132516637444496, -0.059017036110162735, 0.023596161976456642, -0.017683805897831917, -0.04573642835021019, 0.003224720014259219, -0.014479059725999832, 0.008127271197736263, -0.010732791386544704, 0.004571867175400257, 0.0009343476267531514, -0.0472988523542881, -0.03266887739300728, -0.0026277140714228153, -0.0031958683393895626, -0.04442257061600685, 0.007270600646734238, -0.010519733652472496, -0.022797195240855217, -0.03270438686013222, 0.08195626735687256, -0.00766564579680562, -0.042682599276304245, -0.022655155509710312, -0.019299494102597237, 0.009827295318245888, -0.01981438510119915, -0.0013327215565368533, -0.04637560248374939, 0.0021694176830351353, -0.0034688489977270365, 0.010670649819076061, 0.01855379156768322, 0.043073203414678574, 0.005477363243699074, 0.006089904811233282, 0.002194940112531185, 0.04768946021795273, 0.029881369322538376, 0.015473329462110996, 0.007634574547410011, 0.034657418727874756, 0.022868214175105095, 0.01358244102448225, -0.019015416502952576, 0.026330405846238136, -0.008353644981980324, 0.004072512965649366, 0.05972722917795181, 0.06349125504493713, -0.004241183865815401, -0.012215319089591503, 0.027324674651026726, 0.0010003733914345503, -0.04861271008849144, 0.08920023590326309, -0.0460205040872097, -0.009143734350800514, 0.04133323207497597, 0.021998228505253792, -0.015908323228359222, 0.03318376839160919, -0.013848762959241867, -0.016245665028691292, -0.055501583963632584, 0.06253249198198318, 0.02013397216796875, -0.0020495725329965353, -0.07140990346670151, 0.10191269218921661, -0.029828105121850967, 0.005681544076651335, -0.03746268153190613, -0.029544027522206306, 0.11817611008882523, -0.02494552917778492, 0.05077879875898361, -0.015704141929745674, -0.021980473771691322, 0.042647089809179306, 0.06658059358596802, 0.01616576872766018, 0.09722542017698288, -0.03934469074010849, 0.01944153383374214, 0.03600678592920303, 0.0012583732604980469, 0.012055525556206703, -0.006613672245293856, -0.033751923590898514, 0.02689855918288231, -0.013351628556847572, -0.04662416875362396, -0.01453232392668724, 0.06487613171339035, -0.003939351532608271, 0.07457026094198227, 0.012996532022953033, -0.002330320654436946, 0.04740538075566292, -0.04310871288180351, -0.030573807656764984, -0.027644261717796326, 0.019352758303284645, 0.0581648051738739, -0.02432410977780819, -0.009196999482810497, -0.053548552095890045, -0.033041730523109436, 0.01136308815330267, 0.03005891852080822, 0.038243893533945084, 0.02169639617204666, -0.009871682152152061, 0.025495927780866623, -0.05077879875898361, -0.02908240258693695, -0.0028407720383256674, 0.005122266709804535, 0.09552095830440521, -0.024501658976078033, -0.0021294692996889353, 0.020560087636113167, 0.004023686982691288, -0.0204535573720932, -0.00989831518381834, 0.02364942617714405, -0.05954968184232712, 0.00943668931722641, 0.026436934247612953, 0.027413450181484222, -0.04186587780714035, -0.03128400072455406, 0.024182071909308434, -0.03813736513257027, 0.020968448370695114, -0.07975467294454575, -0.042647089809179306, -0.007390445563942194, -0.034426603466272354, -0.007812122814357281, -0.004385441541671753, -0.01485191099345684, -0.018003392964601517, -0.08678558468818665, -0.013236221857368946, 0.06654508411884308, 0.00857114139944315, 0.028514249250292778, -0.003821725957095623, 0.03352110832929611, -0.029313215985894203, -0.05539505183696747, 0.03002340905368328, -0.06917279958724976, 0.012375112622976303, -0.049997586756944656, 0.08699864149093628, 0.06913729012012482, -0.010084740817546844, 0.02364942617714405, -0.01747962459921837, -0.03927367180585861, -0.03799532353878021, 0.0349237397313118, 0.018074411898851395, 0.000009293540642829612, -0.004061416257172823, -0.013174080289900303, 0.0421854630112648, 0.021501092240214348, 0.028727306053042412, 0.00813170988112688, 0.06530224531888962, 0.02496328391134739, 0.01776370219886303, 0.003499919781461358, 0.0002111159556079656, -0.006431685294955969, -0.04005488380789757, 0.02755548804998398, 0.06160924211144447, -0.05077879875898361, -0.011558391153812408, -0.0018276373157277703, -0.0010808249935507774, 0.00857114139944315, 0.0009848378831520677, 0.0021405660081654787, 0.03481721132993698, -0.09850376844406128, -0.07435720413923264, 0.006103220861405134, 0.02235332503914833, 0.0021228112746030092, -0.010439837351441383, 0.01747962459921837, 0.008686548098921776, 0.037285130470991135, 0.01801227033138275, -0.03272214159369469, 0.012233073823153973, 0.026721011847257614, 0.05013962462544441, -0.013191835023462772, 0.012383989989757538, 0.011727062053978443, 0.024128807708621025, -0.07400210946798325, 0.01579291746020317, 0.0600823275744915, 0.07947059720754623, 0.017151160165667534, -0.024767979979515076, -0.01605036109685898, -0.012099913321435452, -0.03955775126814842, -0.013227344490587711, -0.011221049353480339, 0.05081430822610855, 0.10248085111379623, -0.04740538075566292, -0.0353853665292263, 0.026738766580820084, 0.021501092240214348, -0.05234122276306152, 0.020240500569343567, -0.010652895085513592, -0.010484224185347557, -0.017009122297167778, -0.033414579927921295, -0.020080706104636192, -0.03510128706693649, -0.022921478375792503, 0.009853927418589592, 0.0020773145370185375, -0.030165446922183037, 0.009143734350800514, -0.04030345380306244, -0.024199826642870903, 0.01979663036763668, 0.031479302793741226, -0.04797353595495224, 0.05124042555689812, -0.031798891723155975, 0.08572029322385788, -0.008171658031642437, 0.01825195923447609, 0.0073726908303797245, -0.015064968727529049, -0.006529336795210838, -0.03877653554081917, -0.04033896327018738, 0.008402470499277115, -0.007075297646224499, 0.020950693637132645, -0.0075324843637645245, 0.03959326073527336, 0.01552659459412098, -0.004416512791067362, 0.0030094427056610584, -0.04406747594475746, -0.026987332850694656, 0.008047373965382576, -0.004112461116164923, -0.04641111195087433, -0.012694699689745903, 0.009587605483829975, 0.03284642472863197, 0.0662965178489685, 0.04893229529261589, -0.012463887222111225, -0.0717649981379509, -0.03416028246283531, -0.05571464076638222, 0.025531437247991562, 0.050636760890483856, 0.04726334288716316, 0.0014747601235285401, 0.02114599570631981, -0.018305223435163498, 0.011611655354499817, -0.015819549560546875, -0.00406585494056344, 0.028922609984874725, -0.012694699689745903, 0.019352758303284645, -0.021341299638152122, 0.04573642835021019, -0.05525301396846771, -0.004241183865815401, -0.03668146952986717, -0.002623275388032198, -0.014168350026011467, -0.038208384066820145, 0.01915745623409748, -0.05532403290271759, 0.03870551660656929, -0.013964169658720493, -0.023542897775769234, -0.03238480165600777, -0.007550239097326994, -0.009951579384505749, -0.05408119782805443, 0.007248407229781151, 0.0019974177703261375, 0.05812929570674896, -0.07201357185840607, -0.08579131215810776, 0.03795981407165527, 0.04286014661192894, 0.004494190216064453, -0.023525143042206764, 0.05599871650338173, 0.04648213088512421, -0.014194982126355171, 0.0110257463529706, -0.012836738489568233, 0.05184408649802208, 0.028017112985253334, 0.013910905458033085, -0.015650877729058266, -0.02301025204360485, 0.021820679306983948, -0.057383593171834946, 0.010945849120616913, 0.0009848378831520677, -0.02680978551506996, -0.01573077403008938, -0.025797760114073753, -0.056176263839006424, -0.056176263839006424, -0.015215884894132614, -0.027679771184921265, 0.05344202369451523, -0.007390445563942194, 0.0005417995853349566, -0.0441029854118824, -0.00486926082521677, -0.04577193781733513, -0.04051651060581207, -0.028389964252710342, -0.04566540941596031, 0.02593979984521866, -0.02139456383883953, -0.05489791929721832, 0.09090470522642136, -0.032757651060819626, 0.054791390895843506, -0.0005520640988834202, -0.0005606640479527414, 0.0028407720383256674, -0.004802680108696222, -0.0063828593119978905, 0.05269632115960121, -0.03316601365804672, -0.020222745835781097, -0.028549758717417717, -0.04051651060581207, 0.00909934751689434, 0.028674041852355003, 0.02048906683921814, 0.06342023611068726, -0.00478936405852437, 0.027324674651026726, 0.019352758303284645, -0.020293764770030975, 0.020968448370695114, 0.04744089022278786, -0.006471633445471525, 0.03353886306285858, 0.05503995716571808, -0.03432007506489754, 0.0032158426474779844, 0.019956422969698906, -0.012339603155851364, -0.010164637118577957, 0.09040756523609161, 0.016875961795449257, 0.03320152312517166, -0.04033896327018738, 0.023880239576101303, -0.024093296378850937, -0.005455169826745987, -0.016405457630753517, 0.04286014661192894, -0.00797191634774208, 0.04168832674622536, -0.0003817287215497345, 0.033414579927921295, -0.009960456751286983, -0.04864821955561638, 0.021288035437464714, -0.062639020383358, 0.018305223435163498, 0.0017089018365368247, -0.031816646456718445, -0.021820679306983948, -0.0022504241205751896, 0.022832704707980156, -0.013431524857878685, -0.035296592861413956, -0.0015713019529357553, -0.019263984635472298, 0.03202970325946808, -0.022974742576479912, 0.03966427966952324, 0.028514249250292778, 0.03142603859305382, 0.027999358251690865, -0.006356227211654186, -0.008504561148583889, -0.0628165677189827, 0.011638287454843521, 0.01786135323345661, 0.028070377185940742, 0.007727787364274263, -0.04403196647763252, -0.07932855933904648, -0.050636760890483856, 0.0077854907140135765, -0.04577193781733513, -0.0035443068481981754, 0.020950693637132645, 0.025016548112034798, -0.041404251009225845, -0.06313616037368774, -0.007643451914191246, 0.03806634247303009, 0.005961182527244091, 0.024856755509972572, -0.034089263528585434, -0.0568864569067955, 0.007297232747077942, 0.024821244180202484, 0.02883383445441723, 0.01747962459921837, -0.0037662421818822622, -0.021199259907007217, -0.0362020879983902, -0.06260351091623306, -0.0498555488884449, 0.006081027444452047, -0.04190138727426529, 0.002199379028752446, 0.03774675726890564, -0.024057786911725998, 0.012250829488039017, 0.007097491063177586, -0.013387138023972511, -0.027431204915046692, 0.005814705044031143, 0.03355661779642105, -0.025726741179823875, 0.08380277454853058, -0.025513682514429092, 0.04836414381861687, -0.0016356632113456726, -0.028674041852355003, -0.0556081123650074, -0.04183036834001541, -0.06352676451206207, -0.004931402392685413, 0.014807524159550667, -0.02402227744460106, 0.046801719814538956, -0.015899445861577988, -0.006982084829360247, 0.06377533078193665, -0.02972157672047615, -0.000045670123654417694, -0.01731095463037491, 0.020613351836800575, 0.027289165183901787, 0.013964169658720493, -0.016414334997534752, 0.04371237754821777, -0.0108659528195858, -0.014159472659230232, -0.03369865566492081, 0.0003598126058932394, 0.08827698975801468, 0.04325075447559357, 0.013209589757025242, 0.03263336792588234, -0.04996207728981972, -0.06771690398454666, -0.03163909912109375, 0.026454688981175423, -0.019263984635472298, -0.0628165677189827, 0.058697450906038284, -0.06714874505996704, 0.07144541293382645, 0.03767573833465576, -0.033379070460796356, 0.08614640682935715, 0.030893394723534584, -0.009090470150113106, 0.014425795525312424, 0.00599669199436903, -0.014008556492626667, -0.006285207811743021, -0.03352110832929611, 0.012419499456882477, 0.07247519493103027, 0.03590025380253792, -0.03321927785873413, -0.026028573513031006, 0.020666616037487984, -0.029916878789663315, -0.06668712198734283, -0.05592769756913185, -0.016529742628335953, -0.02114599570631981, 0.01648535393178463, -0.014656607992947102, -0.04612703621387482, -0.003473287681117654, -0.031159717589616776, -0.03423130139708519, -0.011709307320415974, 0.06523122638463974, -0.027963848784565926, -0.002616617362946272, -0.03009442798793316, -0.01374223455786705, -0.0055173118598759174, -0.006516020745038986, 0.016574129462242126, -0.001989650074392557, -0.040409982204437256, 0.1041853129863739, 0.0015324633568525314, -0.015357923693954945, -0.00171999866142869, -0.019885404035449028, 0.008753128349781036, 0.0818142294883728, 0.03297070786356926, 0.023116782307624817, -0.015224762260913849, -0.03813736513257027, -0.013289486058056355, 0.03966427966952324, 0.10091842710971832, -0.022797195240855217, -0.03391171619296074, -0.01855379156768322, 0.01684045046567917, 0.02425309084355831, 0.000499631860293448, 0.05280284956097603, 0.004456460941582918, 0.013484789058566093, -0.028549758717417717, 0.03959326073527336, -0.02075538970530033, -0.014585588127374649, -0.004527480341494083, -0.03973529860377312, 0.009862804785370827, 0.029029138386249542, -0.0007168510346673429, 0.004061416257172823, -0.07062869518995285, 0.06523122638463974, 0.04516827315092087, -0.04190138727426529, -0.015082723461091518, -0.05795174837112427, 0.042647089809179306, 0.005086757242679596, 0.009205876849591732, 0.06402389705181122, -0.0011485152645036578, 0.0016245665028691292, -0.0017710437532514334, -0.01707126386463642, -0.025851024314761162, -0.00752360699698329, 0.06849811226129532, -0.006493827328085899, -0.0042145512998104095, 0.022885968908667564, 0.06572835892438889, -0.01977887563407421, 0.028354454785585403, 0.010777178220450878, -0.038847558200359344, -0.032118476927280426, 0.04360584914684296, 0.008966186083853245, 0.05244775116443634, 0.02874506078660488, 0.08018078655004501, 0.03987733647227287, -0.015135987661778927, -0.034639663994312286, 0.046198055148124695, 0.027111617848277092, 0.02492777444422245, -0.0019630177412182093, -0.03806634247303009, 0.002871842822059989, -0.016982490196824074, 0.01388427335768938, -0.004170164465904236, -0.012818983756005764, 0.018109921365976334, 0.07034461200237274, 0.05670890957117081, -0.04449358955025673, 0.035296592861413956, -0.06942136585712433, 0.019050927832722664, -0.02400452271103859, -0.0639173686504364, -0.07041563838720322, 0.002789726946502924 ]
7,383
uuid
_ip_getnode
Get the hardware address on Unix by running ip.
def _ip_getnode(): """Get the hardware address on Unix by running ip.""" # This works on Linux with iproute2. mac = _find_mac_near_keyword('ip', 'link', [b'link/ether'], lambda i: i+1) if mac: return mac return None
()
[ 0.04864765703678131, -0.0003778942336793989, 0.029434604570269585, 0.016778936609625816, -0.016181236132979393, -0.008489085361361504, 0.013071459718048573, 0.0039110430516302586, -0.024860894307494164, -0.08094083517789841, 0.034008316695690155, 0.020806921645998955, 0.006466431077569723, 0.002748124999925494, 0.06347756832838058, 0.01824287138879299, -0.0008754369337111712, 0.041994985193014145, 0.01733332686126232, -0.02401198446750641, -0.010715304873883724, 0.0041579194366931915, 0.07255569100379944, -0.052666980773210526, 0.023041803389787674, 0.07893116772174835, 0.06365081667900085, -0.007289352361112833, -0.004560717847198248, -0.035307664424180984, -0.03374844789505005, -0.045390620827674866, -0.005028483923524618, -0.03544626384973526, 0.04178709164261818, 0.058314818888902664, 0.017246702685952187, 0.002958186436444521, -0.07768379151821136, -0.037767767906188965, 0.0165883656591177, -0.06971444934606552, -0.026489412412047386, -0.000019439492461970076, -0.018797261640429497, -0.037421274930238724, 0.042341478168964386, -0.020113935694098473, -0.004699315410107374, -0.02711310051381588, -0.03052605874836445, -0.019472923129796982, 0.019438274204730988, 0.00784374214708805, -0.03856470435857773, -0.009225383400917053, -0.013114770874381065, -0.07359517365694046, -0.025259360671043396, 0.08717770874500275, -0.039292339235544205, 0.04712308570742607, -0.04854371026158333, 0.017879053950309753, 0.03539428859949112, -0.005782106891274452, -0.008324501104652882, -0.028706969693303108, -0.05429549887776375, 0.03558485954999924, 0.036762937903404236, -0.01745459996163845, -0.02664533443748951, -0.00824654009193182, 0.06815522909164429, -0.0032786927185952663, 0.003319838782772422, -0.02723437175154686, -0.011105109937489033, 0.028776267543435097, 0.040643662214279175, 0.07872327417135239, 0.030543383210897446, 0.003259202465415001, 0.059770092368125916, -0.020876221358776093, 0.05779508128762245, 0.0581069253385067, -0.08676192164421082, -0.057309988886117935, -0.021465258672833443, -0.019057130441069603, -0.036832235753536224, 0.055196382105350494, 0.00677827512845397, -0.03425086289644241, 0.032067954540252686, 0.016778936609625816, 0.0013827247312292457, -0.04355420544743538, -0.016856897622346878, 0.06933330744504929, -0.06791268289089203, -0.0011109440820291638, 0.020806921645998955, 0.007163748610764742, -0.037005484104156494, 0.08225750923156738, -0.03655504062771797, -0.03950023651123047, -0.05031082406640053, -0.015436275862157345, -0.037351977080106735, -0.009372643195092678, 0.06974910199642181, 0.025779100134968758, 0.01300216093659401, 0.04147524759173393, 0.013123433105647564, -0.012075291015207767, -0.04012392461299896, 0.010169577784836292, -0.034545380622148514, -0.0662841647863388, -0.009459266439080238, -0.0012365479487925768, 0.010238876566290855, -0.014275523833930492, -0.028308501467108727, -0.015644172206521034, 0.02182907797396183, -0.0033653159625828266, -0.015670159831643105, 0.06905611604452133, -0.04299981892108917, -0.011070461012423038, -0.01669231429696083, 0.014128264039754868, -0.028152579441666603, -0.044801581650972366, -0.013937692157924175, 0.006830248981714249, 0.0007693233783356845, -0.056305158883333206, -0.03227584809064865, 0.024375801905989647, -0.023370971903204918, -0.013755783438682556, 0.08613823354244232, -0.04864765703678131, 0.02765016444027424, -0.022781934589147568, -0.003538562683388591, 0.013218718580901623, 0.00030994907137937844, 0.03239712119102478, -0.00032510815071873367, -0.03331533074378967, 0.00026785556110553443, -0.048335812985897064, -0.034424107521772385, -0.03956953436136246, -0.010351487435400486, -0.07470395416021347, 0.024081284180283546, -0.0035623840522021055, -0.018468093127012253, -0.02506878972053528, 0.06184905022382736, 0.02347492054104805, -0.05509243160486221, -0.009234046563506126, -0.043866049498319626, -0.0015213220613077283, 0.011607524938881397, -0.005119438283145428, -0.047850724309682846, -0.0014725964283570647, 0.0036316828336566687, 0.02371746487915516, 0.02065099962055683, 0.0445936843752861, 0.004933197982609272, 0.0014736793236806989, 0.013210056349635124, 0.047330982983112335, 0.05301347374916077, 0.01649308018386364, 0.004359318874776363, 0.06226484477519989, 0.01929967664182186, 0.029850397258996964, 0.004500081762671471, 0.005647840443998575, -0.004248873796314001, 0.00008601425361121073, 0.05571611970663071, 0.04982573539018631, -0.005782106891274452, 0.007592534180730581, 0.041059453040361404, 0.03470130264759064, -0.03551556169986725, 0.1003444567322731, -0.039708130061626434, -0.01540162693709135, 0.027130424976348877, 0.03655504062771797, -0.027962008491158485, 0.03309011086821556, 0.002750290557742119, -0.027858059853315353, -0.05200864374637604, 0.0710311233997345, -0.00020424155809450895, -0.007700813468545675, -0.08322768658399582, 0.0933452919125557, -0.015219717286527157, 0.011356317438185215, -0.017913702875375748, -0.02477427013218403, 0.06150255724787712, -0.045563869178295135, 0.03603530302643776, -0.028135254979133606, -0.03610460087656975, 0.05852271616458893, 0.05017222836613655, -0.020789597183465958, 0.0921672135591507, -0.05446874350309372, 0.02359619364142418, 0.04448973760008812, 0.009286019951105118, -0.010897213593125343, -0.027372969314455986, -0.02900148741900921, 0.009459266439080238, -0.0328475646674633, -0.051558200269937515, -0.010377474129199982, 0.0780302882194519, -0.025623178109526634, 0.06465564668178558, 0.02189837582409382, 0.005357652436941862, 0.022279517725110054, -0.04473228380084038, -0.0475388802587986, -0.023665491491556168, -0.015522899106144905, 0.04975643754005432, -0.04202963411808014, 0.015436275862157345, -0.02745959348976612, -0.0023756446316838264, 0.020027311518788338, 0.02072029933333397, 0.04324236139655113, 0.007670495193451643, -0.007588203065097332, 0.020702974870800972, -0.06801663339138031, -0.03158286213874817, -0.007856735028326511, -0.013963679783046246, 0.09875058382749557, -0.020321831107139587, -0.028273852542042732, 0.04265332221984863, -0.013859731145203114, 0.009130097925662994, -0.013158082962036133, 0.012906874530017376, -0.09909708052873611, -0.012872225604951382, 0.052216537296772, 0.013521900400519371, -0.05949289724230766, -0.03158286213874817, 0.024549050256609917, -0.034008316695690155, -0.014370809309184551, -0.09022685140371323, -0.05287487432360649, 0.03269164264202118, -0.022920530289411545, 0.003077293513342738, -0.02148258313536644, -0.025155412033200264, -0.008826916106045246, -0.07754519581794739, -0.01954222097992897, 0.03211992606520653, 0.03473595157265663, 0.02435847744345665, 0.023405620828270912, 0.015748120844364166, -0.018381468951702118, -0.051315657794475555, 0.02013126015663147, -0.07900047302246094, -0.020789597183465958, -0.034424107521772385, 0.07830747961997986, 0.05187004432082176, 0.00884857214987278, 0.015072458423674107, -0.0302142146974802, -0.045044127851724625, -0.036936186254024506, 0.014474757015705109, 0.006444775033742189, 0.0008830165024846792, 0.008662331849336624, 0.002388638211414218, 0.069229356944561, 0.004876893013715744, 0.05277092754840851, 0.013885718770325184, 0.0674968957901001, 0.03846075385808945, 0.04646474868059158, 0.002377810189500451, -0.022556712850928307, 0.0025294010993093252, -0.04746957868337631, 0.027511566877365112, 0.06874427199363708, -0.006769612431526184, -0.0023864724207669497, 0.008523735217750072, -0.00575178861618042, 0.004816256929188967, -0.005314340814948082, 0.006799930706620216, 0.006942859385162592, -0.08856368809938431, -0.05772578343749046, 0.014890548773109913, 0.0030166571959853172, -0.01631983369588852, -0.006799930706620216, 0.02974644862115383, -0.009086786769330502, 0.02411593310534954, 0.00349958217702806, -0.008450104855000973, -0.016657665371894836, 0.023336322978138924, 0.06056702509522438, -0.009944356977939606, -0.0012365479487925768, -0.004056137055158615, 0.01681358739733696, -0.06167580559849739, 0.01595601625740528, 0.05235513672232628, 0.04331165924668312, 0.0029776766896247864, -0.041059453040361404, -0.031426940113306046, -0.004530399572104216, -0.05335996672511101, -0.017246702685952187, 0.007124768104404211, 0.06375476717948914, 0.10595764964818954, -0.023336322978138924, -0.04802396893501282, -0.004993834532797337, 0.004530399572104216, -0.019282352179288864, -0.0032873551826924086, 0.0034151244908571243, 0.006111275404691696, -0.023804089054465294, -0.019438274204730988, -0.03665899112820625, -0.024601023644208908, -0.01619856059551239, 0.010290850885212421, -0.015444938093423843, -0.012222550809383392, 0.0037442930042743683, -0.014431445859372616, -0.007285021245479584, 0.008913540281355381, 0.026073619723320007, -0.03326335549354553, 0.041579194366931915, -0.010334162041544914, 0.045633167028427124, -0.0009956267895177007, 0.020165909081697464, 0.015124431811273098, -0.026801256462931633, -0.016709638759493828, -0.054953835904598236, -0.010013655759394169, 0.04015857353806496, -0.010273526422679424, 0.0211187656968832, -0.006791268475353718, 0.03690153360366821, 0.009173410013318062, -0.02922670915722847, 0.0009003411396406591, -0.06108676642179489, -0.04483623057603836, 0.0007741959416307509, 0.000717349408660084, -0.05311742052435875, 0.0012235543690621853, 0.024514399468898773, 0.05720604211091995, 0.06292317807674408, 0.04137129709124565, 0.0010898297186940908, -0.0510731115937233, -0.040054623037576675, -0.03669364005327225, 0.015124431811273098, 0.021794427186250687, 0.009242708794772625, 0.011217719875276089, -0.003205062821507454, 0.011338992975652218, 0.04244542866945267, 0.0033696473110467196, -0.010732629336416721, 0.04528667405247688, -0.015159081667661667, 0.027546215802431107, -0.019854065030813217, 0.06098281964659691, -0.02394268661737442, 0.03374844789505005, -0.014076289720833302, 0.03558485954999924, 0.0015949519583955407, -0.010065630078315735, 0.0064577688463032246, -0.022331492975354195, 0.033956341445446014, -0.030768603086471558, -0.009485254064202309, -0.051315657794475555, -0.00742361880838871, 0.0052796914242208, -0.046915192157030106, 0.05013757944107056, -0.015869392082095146, 0.038287509232759476, -0.06437845528125763, -0.06735829263925552, 0.026679983362555504, 0.06611091643571854, 0.010628681629896164, -0.017064794898033142, 0.08142592012882233, 0.044455088675022125, -0.01912643015384674, -0.013773107901215553, -0.02893218956887722, 0.02792735956609249, 0.004363649990409613, 0.02681858092546463, -0.020512402057647705, -0.004138429183512926, 0.01068065594881773, -0.0592849999666214, -0.014717302285134792, 0.012508408166468143, 0.0001740587322274223, -0.015098445117473602, -0.04746957868337631, -0.03783706575632095, -0.05484988912940025, -0.052736278623342514, -0.04542526975274086, 0.07144691795110703, -0.01722937822341919, -0.020269857719540596, -0.022903205826878548, -0.0314096175134182, 0.001366482931189239, -0.029919695109128952, -0.03825286030769348, -0.057379286736249924, 0.014414120465517044, -0.022054297849535942, -0.019161079078912735, 0.03956953436136246, -0.03087255172431469, 0.04237613081932068, 0.01094918791204691, -0.0105680450797081, 0.005206061527132988, -0.020027311518788338, 0.018918532878160477, 0.047573529183864594, -0.02622954174876213, 0.010775941424071789, -0.007393300533294678, -0.01757587119936943, 0.010697980411350727, 0.023457596078515053, 0.05724069103598595, 0.06579907238483429, -0.011668161489069462, 0.019854065030813217, 0.01757587119936943, -0.04913274943828583, 0.027684813365340233, 0.020633675158023834, -0.0045953672379255295, 0.041579194366931915, 0.03458002954721451, -0.007774443365633488, 0.0337657704949379, 0.020113935694098473, -0.010230214335024357, -0.010256201028823853, 0.08537594974040985, -0.03620854765176773, 0.04248007759451866, -0.04570246487855911, 0.052563030272722244, -0.023509569466114044, -0.0032570369075983763, -0.018935857340693474, 0.005335996858775616, 0.01580875553190708, 0.05949289724230766, -0.01801765151321888, 0.009121435694396496, -0.03011026605963707, -0.06659600883722305, 0.011165746487677097, -0.057656481862068176, -0.010264863260090351, -0.02165582962334156, -0.010871226899325848, -0.001541895093396306, -0.015938691794872284, 0.04622220620512962, -0.030144916847348213, -0.0074712615460157394, -0.00889621488749981, -0.018970508128404617, 0.04137129709124565, -0.028325825929641724, 0.04923669621348381, 0.0621955469250679, 0.003711809404194355, 0.03943093493580818, 0.00012709265865851194, -0.0037356307730078697, -0.02787538431584835, 0.003083790186792612, 0.03428551182150841, 0.019334325566887856, -0.023925362154841423, -0.0337657704949379, -0.08017854392528534, -0.057067446410655975, 0.0252420362085104, -0.05724069103598595, -0.007328332867473364, 0.016267860308289528, 0.06060167774558067, -0.024427777156233788, -0.02794468402862549, -0.009424617514014244, 0.008038644678890705, 0.0028347482439130545, 0.02687055431306362, -0.04036646708846092, -0.045979660004377365, 0.014786601066589355, 0.03109777346253395, 0.003018822753801942, 0.015522899106144905, 0.005717139225453138, -0.02998899482190609, -0.03731732815504074, -0.01860668882727623, -0.033592525869607925, 0.004229383543133736, -0.06933330744504929, 0.014829913154244423, 0.061363961547613144, -0.045390620827674866, 0.030560707673430443, -0.009441941976547241, 0.014414120465517044, -0.011139758862555027, 0.0023821413051337004, 0.03437213599681854, 0.005379308480769396, 0.07505044341087341, -0.05834947153925896, 0.06354686617851257, 0.011694148182868958, -0.06150255724787712, -0.05606261268258095, -0.025190062820911407, -0.057552535086870193, 0.005591535475105047, 0.0018136758590117097, -0.020910870283842087, 0.03173878416419029, -0.02588304877281189, -0.0014336160384118557, 0.05301347374916077, -0.02347492054104805, 0.004686321597546339, -0.021846402436494827, -0.0028455760329961777, 0.026038970798254013, 0.029555877670645714, -0.015159081667661667, 0.05387970805168152, 0.008047306910157204, -0.0007671578205190599, -0.02271263487637043, 0.016631677746772766, 0.07130832225084305, 0.009554552845656872, -0.0030707968398928642, 0.015886716544628143, -0.01978476718068123, -0.04823186621069908, -0.0349091999232769, 0.02094551920890808, -0.020148584619164467, -0.06791268289089203, 0.08128732442855835, -0.0880092978477478, 0.09022685140371323, 0.013417952693998814, -0.047330982983112335, 0.0844750627875328, 0.015505574643611908, -0.027910035103559494, 0.0038352475967258215, -0.004053971264511347, -0.020737623795866966, 0.0057864380069077015, -0.03028351254761219, 0.021170739084482193, 0.050033632665872574, 0.04085155948996544, -0.0463608019053936, -0.03419888764619827, -0.0020248200744390488, -0.034077614545822144, -0.06618022173643112, -0.03575810790061951, -0.016605690121650696, -0.002460102317854762, 0.003861234523355961, -0.02054705284535885, -0.010524733923375607, 0.008601696230471134, -0.03338462859392166, -0.045563869178295135, 0.0027372969780117273, 0.03326335549354553, -0.01836414448916912, 0.012222550809383392, -0.0375598706305027, -0.007267696782946587, -0.0009690984152257442, 0.010342824272811413, 0.0009994165739044547, -0.033956341445446014, -0.017636507749557495, 0.104502372443676, -0.020581701770424843, -0.009823084808886051, -0.024445101618766785, -0.033540550619363785, 0.020235208794474602, 0.04379675164818764, 0.05169679969549179, 0.008142592385411263, -0.03331533074378967, -0.052736278623342514, -0.013028147630393505, 0.037594523280858994, 0.10471027344465256, -0.03891119733452797, -0.003943526651710272, -0.026783932000398636, -0.0028997156769037247, 0.012369810603559017, 0.01642378233373165, 0.022677985951304436, -0.007770111784338951, 0.018034975975751877, -0.027390293776988983, 0.035896703600883484, 0.0024730958975851536, -0.04362350329756737, 0.01082791481167078, -0.034424107521772385, 0.0008510741172358394, 0.04147524759173393, -0.053602512925863266, 0.006669995840638876, -0.05817622318863869, 0.06839777529239655, 0.026662658900022507, -0.05949289724230766, 0.011226382106542587, -0.0428612194955349, 0.054780587553977966, 0.02917473576962948, -0.007397631648927927, 0.06995699554681778, -0.00523637980222702, -0.009727799333631992, 0.017272690311074257, -0.03485722467303276, -0.02929600700736046, -0.012283187359571457, 0.07851538062095642, -0.014829913154244423, 0.002973345573991537, 0.01843344233930111, 0.02182907797396183, -0.026264190673828125, 0.008220553398132324, 0.0034519394394010305, -0.010108941234648228, 0.0018808088498190045, 0.007856735028326511, -0.004907211288809776, 0.025276685133576393, 0.024445101618766785, 0.07671361416578293, 0.04095550626516342, 0.011451602913439274, -0.02723437175154686, 0.02401198446750641, 0.02312842756509781, 0.007168079726397991, 0.01971546746790409, -0.022262193262577057, 0.007137761916965246, -0.009701811708509922, 0.02143060974776745, -0.021846402436494827, -0.0020822081714868546, 0.05238978564739227, 0.0551617331802845, 0.050033632665872574, -0.03745592385530472, 0.016406457871198654, -0.09008825570344925, 0.017558546736836433, -0.02839512564241886, -0.0481279194355011, -0.04171779006719589, 0.028741618618369102 ]
7,384
uuid
_ipconfig_getnode
[DEPRECATED] Get the hardware address on Windows.
def _ipconfig_getnode(): """[DEPRECATED] Get the hardware address on Windows.""" # bpo-40501: UuidCreateSequential() is now the only supported approach return _windll_getnode()
()
[ 0.05043325945734978, -0.030409790575504303, 0.05547317862510681, -0.024501504376530647, 0.0007981293019838631, 0.02158992923796177, -0.0029541426338255405, -0.02223694697022438, 0.019563745707273483, -0.08574675768613815, -0.010207541286945343, -0.023530980572104454, 0.012208186089992523, -0.02227099984884262, 0.06660867482423782, 0.010641723871231079, -0.024075835943222046, 0.015145301818847656, 0.012114538811147213, -0.019682932645082474, -0.026800116524100304, -0.008053656667470932, 0.05179539695382118, -0.06252225488424301, 0.005112284328788519, 0.074917733669281, 0.06402061134576797, 0.01092266570776701, -0.013391545042395592, -0.05101216584444046, -0.07484962791204453, -0.030767351388931274, -0.010335242375731468, -0.04300959035754204, 0.022730723023414612, 0.04120475426316261, 0.01443869061768055, 0.03204435855150223, -0.06122822314500809, -0.05966176092624664, -0.004831342492252588, -0.05840178206562996, -0.0077216350473463535, -0.010599156841635704, 0.0296435859054327, -0.00930512323975563, 0.04018314927816391, -0.019121048972010612, -0.023054230958223343, -0.0032478540670126677, 0.001157819526270032, 0.02162398211658001, -0.016958652064204216, 0.02145371586084366, -0.050705686211586, -0.01874646171927452, -0.012012378312647343, -0.05421319976449013, 0.004007673356682062, 0.06783460825681686, -0.02857089973986149, 0.03432594612240791, -0.027140652760863304, 0.01483030617237091, -0.000056999731896212325, -0.023326659575104713, -0.00460573798045516, -0.034002434462308884, -0.01832079142332077, 0.04290743172168732, 0.037867508828639984, -0.03395135700702667, -0.04072800651192665, -0.034700531512498856, 0.06456546485424042, -0.011339820921421051, 0.0012801993871107697, 0.03424081206321716, -0.01828673854470253, 0.04065989702939987, -0.008679389953613281, 0.08234140276908875, 0.00836439523845911, -0.006963944062590599, 0.05833367258310318, -0.0108290184289217, 0.034853775054216385, 0.05577965825796127, -0.03235084190964699, -0.03209543973207474, 0.016022179275751114, 0.007491773460060358, -0.042294468730688095, 0.04634683579206467, -0.0005347466212697327, -0.04685764014720917, 0.0216580368578434, 0.03192517161369324, 0.049684081226587296, -0.05091000720858574, -0.013783160597085953, 0.030580056831240654, -0.042362574487924576, 0.006227536592632532, 0.022883962839841843, -0.027889829128980637, -0.02172614261507988, 0.0804344043135643, -0.022594507783651352, -0.028349552303552628, -0.028349552303552628, -0.004827085882425308, -0.012506154365837574, -0.00939025729894638, 0.06170497089624405, 0.04283932223916054, -0.014208829961717129, 0.03997882828116417, 0.034087568521499634, -0.03216354548931122, -0.06207956001162529, 0.014353557489812374, -0.05165918543934822, -0.06102390214800835, -0.0213175006210804, 0.019138075411319733, 0.012948849238455296, 0.02172614261507988, -0.03315109759569168, -0.07089941948652267, 0.03352568671107292, -0.004524860996752977, -0.0342748649418354, 0.06163686513900757, -0.010769424960017204, -0.00266468757763505, 0.01277006883174181, -0.01101631298661232, -0.0011759104672819376, 0.0033861964475363493, -0.011407927609980106, 0.0367777980864048, -0.01886564865708351, -0.02145371586084366, -0.005806124769151211, -0.0041183470748364925, -0.023428820073604584, 0.020772645249962807, 0.02228802628815174, -0.06245414912700653, 0.05186350643634796, -0.014362070709466934, -0.00744920689612627, -0.019614825025200844, -0.015715697780251503, 0.022798828780651093, 0.030988700687885284, -0.014174776151776314, 0.007406639866530895, -0.07675662636756897, -0.05513264238834381, 0.021181287243962288, 0.03303191065788269, -0.041817717254161835, -0.013851268216967583, 0.0073342761024832726, -0.0004488147096708417, -0.07307884842157364, 0.03190814331173897, 0.012267779558897018, -0.0366075299680233, -0.007610960863530636, -0.03248705342411995, 0.013195737265050411, 0.031652744859457016, 0.007146981544792652, -0.01432801689952612, 0.00928809680044651, 0.010267134755849838, 0.03732265532016754, 0.03255516290664673, 0.06242009624838829, 0.019035914912819862, -0.009058235213160515, 0.005554979667067528, 0.04052368551492691, 0.03275948390364647, -0.02162398211658001, 0.0013536273036152124, 0.028179284185171127, 0.030528977513313293, 0.037629134953022, 0.03383217006921768, 0.05022893846035004, 0.019001862034201622, -0.01672879047691822, 0.02547203004360199, 0.04406525194644928, -0.005120797548443079, 0.027617402374744415, 0.06739190965890884, 0.0426350012421608, -0.019478611648082733, 0.09861898422241211, -0.026936331763863564, -0.0018133497796952724, 0.02511446923017502, -0.020993992686271667, -0.00006943725020391867, 0.05731206759810448, 0.008053656667470932, -0.019308343529701233, -0.023667193949222565, 0.06153470277786255, -0.0033691697753965855, 0.016805410385131836, -0.07995765656232834, 0.07103563845157623, -0.028043070808053017, -0.015068680979311466, 0.014047075062990189, -0.03670969232916832, 0.11326199769973755, -0.07008213549852371, 0.011178066954016685, -0.027464160695672035, -0.056835319846868515, 0.002643404295668006, 0.019734011963009834, -0.00028386799385771155, 0.0787317305803299, -0.01599663868546486, 0.0034926137886941433, 0.04154529049992561, 0.049377597868442535, 0.005601803306490183, -0.03708427771925926, -0.013595866039395332, 0.05823151394724846, 0.013434112071990967, -0.07062699645757675, 0.006623408757150173, 0.06916268914937973, -0.00040757801616564393, 0.04290743172168732, 0.01820160448551178, -0.003279779339209199, 0.049684081226587296, 0.011339820921421051, -0.04423551633954048, -0.026527689769864082, -0.0369480662047863, 0.020857779309153557, -0.015902992337942123, -0.01799728348851204, -0.04471226781606674, -0.02536986954510212, 0.026766063645482063, 0.025352843105793, 0.020925885066390038, -0.007938725873827934, -0.010054300539195538, 0.02550608292222023, -0.019716985523700714, -0.02235613390803337, -0.003388324985280633, -0.002134729875251651, 0.07369180768728256, -0.024859067052602768, 0.0039438228122889996, 0.060070402920246124, 0.05717585235834122, -0.035517819225788116, -0.034938909113407135, 0.0324019193649292, -0.09058235585689545, -0.027225786820054054, 0.004039598163217306, 0.011041852645576, -0.0439971424639225, -0.05772070959210396, 0.0051420810632407665, -0.04089827463030815, 0.04396308958530426, -0.08431650698184967, -0.06916268914937973, -0.005801867693662643, -0.03555187210440636, -0.026851197704672813, -0.04300959035754204, -0.06310116499662399, -0.01470260601490736, -0.07852740585803986, -0.01780998893082142, 0.03630105033516884, -0.01869538053870201, 0.006997997406870127, 0.013570326380431652, 0.018916727975010872, -0.0011993222869932652, -0.05397482216358185, 0.015051654540002346, -0.08275004476308823, 0.007376843132078648, -0.01799728348851204, 0.06708543002605438, 0.06316927075386047, -0.0014174776151776314, -0.009654171764850616, 0.008134533651173115, -0.10032165795564651, -0.022935044020414352, 0.045427389442920685, 0.013595866039395332, -0.0013898091856390238, -0.019546719267964363, 0.007202318869531155, 0.05353212729096413, 0.03235084190964699, 0.03432594612240791, -0.020653458312153816, 0.057584498077631, 0.013698026537895203, -0.005742274224758148, -0.004094935487955809, -0.013570326380431652, 0.007410896476358175, -0.02599985897541046, 0.028621980920433998, 0.05935527756810188, -0.048934902995824814, -0.04083016514778137, -0.012616828083992004, 0.009943626821041107, 0.03538160398602486, -0.007479003630578518, 0.042090147733688354, 0.03424081206321716, -0.08962885290384293, -0.04379282146692276, -0.0025603987742215395, 0.02554013766348362, -0.031158966943621635, -0.0010663007851690054, -0.010607670061290264, 0.0009976616129279137, 0.06371413171291351, -0.007589677348732948, -0.04454199969768524, -0.011407927609980106, -0.007095901295542717, 0.02913278341293335, -0.05540507286787033, 0.017605667933821678, -0.002411414636299014, 0.00948390457779169, -0.04317985847592354, 0.014200316742062569, 0.05383861064910889, 0.06122822314500809, -0.03769724443554878, -0.060513097792863846, 0.009271069429814816, 0.002345436019822955, -0.06133038178086281, -0.01825268566608429, -0.0072959656827151775, 0.041817717254161835, 0.11251281946897507, -0.03391730412840843, -0.052953217178583145, -0.0072959656827151775, 0.0180483628064394, -0.008802833966910839, 0.0067596230655908585, -0.001493033836595714, -0.024109888821840286, -0.01686500385403633, -0.042090147733688354, -0.0446782149374485, -0.022594507783651352, 0.01770782843232155, 0.04529117792844772, -0.010011733509600163, -0.005720990709960461, 0.009066748432815075, 0.0091944495216012, -0.0003578279574867338, -0.00798129290342331, -0.01443017739802599, -0.06238604336977005, 0.042532842606306076, -0.035109177231788635, 0.08690457046031952, -0.04059179127216339, 0.003850175766274333, 0.02206667885184288, -0.02562527172267437, 0.015298542566597462, -0.04018314927816391, -0.014472744427621365, 0.0374588668346405, -0.035211335867643356, 0.004103448707610369, -0.0033861964475363493, 0.01811647042632103, -0.003807608736678958, -0.02181127667427063, 0.010096867568790913, -0.08492947369813919, -0.0428052693605423, 0.007312992587685585, -0.015766778960824013, -0.05387266352772713, 0.028094150125980377, 0.026323368772864342, 0.003330859588459134, 0.09058235585689545, 0.045563604682683945, -0.014983546920120716, -0.02932007797062397, -0.04106853902339935, -0.05169323831796646, 0.028264418244361877, 0.04065989702939987, 0.007917442359030247, 0.010888611897826195, 0.0036713946610689163, -0.014021535404026508, 0.05108027532696724, -0.00829628761857748, 0.016532981768250465, 0.038480471819639206, -0.00888796802610159, 0.01308506354689598, -0.04358850046992302, 0.05033109709620476, 0.00045865829451940954, -0.0060572694055736065, 0.009841466322541237, 0.01808241754770279, -0.0180483628064394, -0.015519890002906322, -0.011782516725361347, 0.0006358430255204439, 0.011441981419920921, -0.03919559717178345, -0.03298082947731018, 0.00161009281873703, -0.01825268566608429, -0.010352268815040588, -0.052919164299964905, 0.045154962688684464, -0.01850808598101139, 0.0023369225673377514, -0.05244241654872894, -0.07743769884109497, 0.009237016551196575, 0.02918386273086071, -0.009696738794445992, -0.02504636161029339, 0.04072800651192665, 0.04011504352092743, -0.0009141240734606981, -0.0020634301472455263, -0.03170382231473923, 0.03149950131773949, -0.0015813601203262806, 0.010548076592385769, -0.012157104909420013, 0.012531694024801254, 0.008726213127374649, -0.04672142490744591, -0.007738661486655474, 0.004814316052943468, -0.006959687452763319, -0.0592871718108654, 0.002694484544917941, -0.01259980071336031, -0.049854349344968796, -0.04736844077706337, -0.02909873053431511, 0.09752926975488663, 0.00929661002010107, -0.023360712453722954, -0.03773129731416702, -0.02254342846572399, -0.0015920018777251244, -0.007410896476358175, -0.0332532599568367, -0.00846655573695898, 0.016618115827441216, -0.019410504028201103, -0.01287222933024168, 0.06119417026638985, -0.013553299941122532, 0.04828788712620735, -0.02955845184624195, 0.021266421303153038, 0.050024617463350296, -0.01676284335553646, 0.023922596126794815, 0.05039920285344124, -0.04089827463030815, 0.028179284185171127, -0.020976966246962547, -0.03793561831116676, 0.056971531361341476, 0.02227099984884262, 0.03633510321378708, 0.027549294754862785, -0.017316212877631187, 0.02909873053431511, 0.026442555710673332, -0.019325369969010353, 0.04798140376806259, -0.009620117954909801, 0.028094150125980377, 0.045018747448921204, 0.01621798798441887, -0.011101446114480495, 0.04658520966768265, 0.0364372618496418, -0.03299785777926445, -0.010462942533195019, 0.07246588170528412, -0.02220289222896099, 0.0011312152491882443, -0.07668852061033249, 0.08268193900585175, 0.005716734100133181, 0.00037538682227022946, 0.008607026189565659, 0.04059179127216339, -0.020636431872844696, 0.035143230110406876, -0.0017739753238856792, 0.04154529049992561, -0.03367892652750015, -0.0296435859054327, 0.007198062259703875, -0.08847103267908096, -0.0064531415700912476, 0.007738661486655474, -0.017316212877631187, -0.030954645946621895, 0.02560824528336525, 0.045631710439920425, -0.020602377131581306, -0.030597085133194923, 0.06333953887224197, -0.01842295192182064, 0.023922596126794815, -0.034632425755262375, 0.041885826736688614, 0.027804696932435036, 0.00020072951156180352, 0.008777294307947159, -0.02971169352531433, -0.01835484616458416, -0.041885826736688614, 0.0027370513416826725, -0.002983939368277788, 0.020874805748462677, -0.012412507086992264, -0.008594255894422531, -0.08438461273908615, -0.027685508131980896, -0.013902348466217518, -0.0374588668346405, 0.011476035229861736, 0.014115182682871819, 0.07648419588804245, -0.031346261501312256, -0.05479210615158081, 0.006495708134025335, 0.042464736849069595, 0.012455073185265064, 0.0374588668346405, -0.030716272071003914, -0.05162513256072998, 0.02177722379565239, 0.0290476493537426, -0.01799728348851204, 0.04004693403840065, 0.0024497248232364655, -0.027617402374744415, -0.022969096899032593, -0.010965232737362385, -0.07171670347452164, -0.015366649255156517, -0.05108027532696724, 0.02491014637053013, 0.01288074254989624, -0.0035436940379440784, 0.016737302765250206, -0.024569611996412277, 0.013229791074991226, 0.05795908346772194, 0.010130921378731728, 0.0043631065636873245, 0.0013302154839038849, 0.06259036064147949, -0.026442555710673332, 0.04025125503540039, -0.015153815038502216, -0.031533557921648026, -0.10086651891469955, -0.023360712453722954, -0.05182945355772972, -0.007389612961560488, -0.03289569541811943, -0.02543797716498375, 0.004165170714259148, -0.010420376434922218, 0.00322018563747406, 0.03946802392601967, -0.01075239758938551, -0.002245403826236725, -0.015068680979311466, 0.03933181241154671, 0.004461010452359915, 0.01849105954170227, -0.046244677156209946, 0.020449137315154076, 0.017282159999012947, -0.024416372179985046, -0.015536916442215443, 0.01874646171927452, 0.09071856737136841, 0.009569037705659866, -0.001718638464808464, 0.041749611496925354, -0.030852485448122025, -0.05881042405962944, -0.027940910309553146, 0.0364372618496418, -0.014958007261157036, -0.028230365365743637, 0.05864015594124794, -0.08465704321861267, 0.08615539968013763, -0.014353557489812374, -0.05506453663110733, 0.05414509028196335, 0.03977450728416443, 0.011595222167670727, -0.0008832630701363087, 0.031891118735075, -0.015656104311347008, -0.013936401344835758, -0.011271714232861996, 0.005640113726258278, 0.04856031388044357, 0.042328521609306335, -0.017171485349535942, -0.07539448887109756, 0.03943397104740143, -0.03561997786164284, -0.08070683479309082, -0.049854349344968796, -0.0213175006210804, -0.0364372618496418, -0.023684220388531685, 0.003992774989455938, 0.031005727127194405, -0.01443017739802599, 0.007789741735905409, -0.03742481395602226, -0.020908858627080917, 0.0596277080476284, -0.04784519225358963, -0.006972457282245159, -0.024348264560103416, -0.019802119582891464, -0.005159107968211174, -0.03691401332616806, 0.026851197704672813, -0.06136443838477135, 0.0061934832483530045, 0.07198913395404816, 0.020840752869844437, -0.02959250658750534, 0.024058809503912926, -0.011705895885825157, 0.006184970028698444, 0.02235613390803337, 0.041443128138780594, 0.027413081377744675, 0.020364003255963326, -0.004303513094782829, -0.021113179624080658, 0.030511951074004173, 0.08724510669708252, -0.014370583929121494, -0.012906283140182495, 0.0182186309248209, 0.0008449528831988573, 0.0369480662047863, -0.006593612022697926, 0.03739076107740402, -0.019563745707273483, -0.019938332960009575, -0.02176019735634327, 0.04760681465268135, -0.002073007868602872, 0.001038632239215076, 0.0076875812374055386, -0.07123995572328568, 0.05131864920258522, 0.04134096950292587, -0.034938909113407135, 0.03190814331173897, -0.07648419588804245, 0.03328731283545494, 0.010471456684172153, -0.04420146346092224, 0.0031989021226763725, -0.04815167188644409, 0.02584661915898323, -0.01818457804620266, 0.03378108888864517, 0.06316927075386047, -0.008011089637875557, 0.04076205939054489, 0.07232967019081116, -0.01113549992442131, -0.03201030567288399, -0.028315499424934387, 0.05727801471948624, -0.013595866039395332, -0.041885826736688614, -0.0008066426962614059, 0.03919559717178345, 0.011884677223861217, 0.026544716209173203, 0.004173683933913708, 0.02872414141893387, -0.030494924634695053, 0.014047075062990189, 0.01122063398361206, 0.060138508677482605, -0.011816570535302162, 0.07273831218481064, 0.030835459008812904, 0.017503507435321808, -0.020312922075390816, 0.02531879022717476, 0.02547203004360199, 0.009773359633982182, 0.03619888797402382, -0.013348978012800217, 0.011671843007206917, -0.015204895287752151, 0.005073973909020424, -0.06507626920938492, 0.024654746055603027, 0.015290028415620327, 0.0433160737156868, 0.03919559717178345, -0.034462157636880875, 0.024671772494912148, -0.06245414912700653, 0.01794620230793953, -0.05850394070148468, -0.024603664875030518, -0.05714179947972298, 0.009705252014100552 ]
7,385
uuid
_is_universal
null
def _is_universal(mac): return not (mac & (1 << 41))
(mac)
[ 0.036660537123680115, 0.03280426561832428, 0.023085763677954674, 0.0036228219978511333, -0.010626368224620819, -0.027322476729750633, -0.02787584252655506, -0.007102979347109795, -0.024555644020438194, -0.030469749122858047, 0.043058838695287704, 0.03928902745246887, 0.001625514472834766, -0.005650391802191734, 0.03845898061990738, 0.011162442155182362, 0.004396670497953892, 0.04475352540612221, 0.051739778369665146, -0.01843402534723282, 0.011050039902329445, 0.014992776326835155, 0.008036785759031773, 0.041675422340631485, 0.003981645684689283, 0.06619647890329361, 0.013159750029444695, -0.013713116757571697, -0.027305183932185173, 0.0004993269103579223, -0.030400577932596207, 0.018105464056134224, 0.08798529207706451, -0.025472156703472137, 0.06713028997182846, 0.022982006892561913, 0.005373708438128233, 0.019488880410790443, -0.03693722188472748, -0.0486270897090435, -0.007786041125655174, -0.0170506089925766, -0.009450464509427547, 0.03285614401102066, -0.018676122650504112, -0.02362183667719364, 0.010306453332304955, 0.0029700223822146654, 0.01841673254966736, 0.01999036967754364, 0.019506173208355904, -0.003774133278056979, 0.013375908136367798, 0.05633963644504547, -0.03648760914802551, 0.010029769502580166, 0.013471018522977829, 0.022480517625808716, -0.0815524011850357, 0.043162595480680466, -0.045860256999731064, 0.0773329809308052, 0.006074063014239073, -0.06114701181650162, 0.044407669454813004, -0.028740478679537773, -0.0255759134888649, -0.04222878813743591, -0.025939060375094414, 0.055820856243371964, -0.04755494371056557, 0.006424240302294493, -0.040914542973041534, 0.024590229615569115, 0.03721390292048454, -0.06059364229440689, 0.02502254582941532, -0.0043534389697015285, -0.04399264603853226, -0.014837142080068588, 0.02637137658894062, 0.0033288460690528154, 0.03631468489766121, 0.04720908775925636, -0.0386664904654026, 0.05782680958509445, 0.058138079941272736, 0.08113738149404526, -0.033201996237039566, -0.00498029962182045, 0.03762893006205559, 0.05564792826771736, 0.002099983161315322, 0.02787584252655506, 0.02998555265367031, -0.004694969858974218, 0.019506173208355904, 0.023708300665020943, 0.009779025800526142, -0.07207600027322769, -0.04191752150654793, 0.009312122128903866, -0.0638100877404213, -0.056754663586616516, 0.024607520550489426, 0.06367174535989761, -0.025057131424546242, 0.028775064274668694, -0.05986734852194786, -0.036038000136613846, -0.021564004942774773, -0.047451186925172806, -0.026198450475931168, -0.0035406816750764847, 0.0075569129548966885, -0.032354652881622314, 0.026648061349987984, 0.01318568829447031, 0.0007262936560437083, -0.007647699676454067, -0.02993367426097393, 0.050114262849092484, -0.0019810956437140703, -0.070900097489357, 0.07179931551218033, 0.023189518600702286, 0.05433368310332298, 0.026699939742684364, -0.020128710195422173, 0.06339506059885025, -0.029466772451996803, 0.03638385608792305, 0.019782856106758118, 0.019004683941602707, -0.051739778369665146, -0.03780185803771019, 0.003642276395112276, -0.004333984572440386, -0.0001423946232534945, -0.05685842037200928, -0.04274757206439972, 0.035380877554416656, 0.030279528349637985, -0.004331822972744703, -0.01850319653749466, 0.055232904851436615, -0.060939498245716095, -0.006208081729710102, 0.02358725108206272, 0.010306453332304955, 0.023120349273085594, -0.00025533762527629733, -0.07207600027322769, 0.050944313406944275, -0.03143814206123352, 0.033859118819236755, 0.027357062324881554, -0.03645302355289459, 0.02486691251397133, -0.030348699539899826, -0.021546712145209312, -0.033115532249212265, -0.01917761191725731, -0.0830741599202156, 0.001350992708466947, -0.048938360065221786, -0.04769328609108925, -0.009476402774453163, 0.07138429582118988, 0.0249879602342844, -0.055959198623895645, 0.009562866762280464, 0.021581297740340233, 0.007496388163417578, 0.04343928024172783, 0.004186996724456549, -0.020249759778380394, -0.038216881453990936, -0.02772020921111107, 0.01850319653749466, 0.01629837602376938, -0.006709570065140724, -0.08224411308765411, -0.025489449501037598, 0.05934856832027435, 0.035865072160959244, -0.027408940717577934, 0.023310568183660507, 0.04267840087413788, 0.02554132789373398, 0.029570527374744415, 0.036038000136613846, -0.002399363089352846, 0.024036861956119537, 0.021252736449241638, -0.04496103525161743, 0.06107784062623978, 0.011620698496699333, -0.023708300665020943, -0.06778740882873535, 0.019021976739168167, -0.023708300665020943, -0.036556780338287354, 0.06429428607225418, -0.03143814206123352, -0.06308379024267197, -0.004044331610202789, 0.016825802624225616, -0.010885758325457573, -0.03278697282075882, 0.01774231716990471, -0.07954645156860352, 0.020232466980814934, 0.08369670063257217, 0.004751170985400677, 0.005218074191361666, -0.0011337531032040715, 0.03925444558262825, -0.028688600286841393, 0.008966268040239811, -0.020284345373511314, 0.031126871705055237, 0.05903730168938637, -0.01424054428935051, 0.005676330998539925, 0.0015401316341012716, -0.05281192436814308, 0.06623106449842453, 0.011516942642629147, 0.003975160885602236, 0.030141187831759453, -0.04347386583685875, -0.02210007980465889, 0.04399264603853226, -0.004491780418902636, 0.023345153778791428, 0.0307291392236948, -0.03852815181016922, 0.05755012854933739, 0.007154857274144888, 0.021079808473587036, -0.002967860782518983, 0.08134489506483078, 0.0014320522313937545, 0.05007967725396156, -0.011525589041411877, 0.017949828878045082, 0.03648760914802551, -0.007574205286800861, 0.0010505319805815816, -0.029466772451996803, -0.028360038995742798, 0.013661238364875317, -0.018174635246396065, 0.055820856243371964, -0.008404255844652653, -0.02144295535981655, 0.011335369199514389, 0.007353723514825106, 0.03206067904829979, -0.033150117844343185, 0.09787672013044357, 0.07567288726568222, 0.025126302614808083, -0.04568732902407646, -0.02770291641354561, 0.016851741820573807, 0.10735312104225159, -0.04686323553323746, -0.035225242376327515, 0.08141405880451202, -0.08203659951686859, -0.022947421297430992, 0.015269460156559944, -0.001964883878827095, -0.05575168505311012, 0.04212503135204315, 0.0019184096017852426, 0.0157017782330513, -0.01922949030995369, 0.03755975887179375, 0.025489449501037598, 0.02415791153907776, 0.00711594894528389, -0.03475834056735039, -0.004716585855931044, 0.025887181982398033, -0.05893354490399361, 0.01912573352456093, -0.05339987948536873, -0.01181091833859682, 0.002792772138491273, 0.030227651819586754, -0.01628108322620392, 0.023293275386095047, 0.047451186925172806, 0.04132957011461258, 0.002063235966488719, 0.03977322578430176, -0.022618860006332397, -0.006065416615456343, 0.015476972796022892, -0.056616321206092834, 0.009018146432936192, 0.007535296957939863, 0.018382146954536438, -0.009536927565932274, 0.05208563059568405, 0.006817649584263563, 0.02787584252655506, -0.00588816637173295, -0.019609929993748665, 0.039600297808647156, -0.052500657737255096, -0.018070878461003304, 0.05122099816799164, 0.022221127524971962, -0.015191642567515373, 0.01629837602376938, 0.08099903911352158, 0.03845898061990738, 0.028688600286841393, 0.008335084654390812, 0.02431354485452175, -0.04924962669610977, -0.07657210528850555, 0.025212766602635384, -0.0697241947054863, -0.031801287084817886, -0.0015033846721053123, -0.05336529389023781, -0.015087886713445187, 0.060282375663518906, -0.016047632321715355, 0.029674284160137177, -0.00204378180205822, -0.04340469464659691, -0.020267052575945854, -0.074289470911026, -0.040257420390844345, -0.05073679983615875, 0.06080115586519241, 0.046690307557582855, -0.02996825985610485, 0.0486270897090435, 0.008404255844652653, -0.06429428607225418, 0.10015935450792313, 0.0036033678334206343, -0.04762411490082741, -0.00043285806896165013, 0.03264863044023514, 0.004368570167571306, 0.024036861956119537, 0.03555380553007126, -0.005818995647132397, -0.02206549420952797, 0.0058017028495669365, 0.04554899036884308, 0.0513247512280941, 0.029466772451996803, -0.010003830306231976, 0.02932843007147312, -0.0255759134888649, -0.04060327634215355, -0.025818010792136192, -0.020267052575945854, 0.05433368310332298, 0.016920913010835648, -0.053814902901649475, -0.046033184975385666, -0.032389238476753235, -0.00659716734662652, -0.06007486209273338, -0.019782856106758118, 0.014543166384100914, -0.01777690276503563, -0.031645651906728745, -0.046655721962451935, -0.018866343423724174, 0.03621092811226845, -0.0036790233571082354, -0.03548463433980942, 0.0178979504853487, 0.04624069854617119, -0.02917279675602913, -0.02268803119659424, -0.031126871705055237, -0.024469180032610893, 0.00765634560957551, 0.014015738852322102, 0.03133438527584076, 0.004381539300084114, -0.012917651794850826, 0.002753863576799631, 0.025869889184832573, -0.028636721894145012, -0.005140257067978382, -0.0031624038238078356, 0.03921985998749733, 0.007569882087409496, -0.017967121675610542, 0.03500043973326683, 0.03150730952620506, 0.003620660398155451, 0.07532703131437302, 0.017949828878045082, -0.07760966569185257, -0.0072326743975281715, -0.020941467955708504, 0.0030370315071195364, -0.022653445601463318, -0.041052885353565216, -0.033945582807064056, -0.03264863044023514, 0.012978176586329937, 0.05218938738107681, -0.028982575982809067, 0.08044566959142685, -0.013099225237965584, 0.047382015734910965, -0.02068207785487175, -0.016168680042028427, 0.029466772451996803, 0.06214998662471771, -0.007007869426161051, -0.0099605992436409, -0.009035439230501652, -0.038113124668598175, 0.008486395701766014, -0.00994330644607544, -0.023984983563423157, 0.026423254981637, -0.0025679669342935085, 0.010150819085538387, 0.010012476705014706, 0.011188381351530552, -0.02853296510875225, -0.0249879602342844, -0.020267052575945854, -0.002128083724528551, -0.014041678048670292, -0.045237720012664795, -0.03925444558262825, 0.028723185881972313, -0.012165418826043606, -0.028169818222522736, -0.00814918801188469, 0.008853865787386894, 0.03845898061990738, -0.04184835031628609, -0.01703331619501114, -0.08708606660366058, -0.006355069577693939, 0.0638100877404213, -0.015866057947278023, -0.020509149879217148, 0.003689831355586648, -0.027478110045194626, -0.02005953900516033, -0.011015454307198524, 0.030953945592045784, -0.023206811398267746, 0.027357062324881554, 0.025869889184832573, 0.031023114919662476, -0.014413471333682537, -0.005291568115353584, -0.002107548527419567, 0.03150730952620506, -0.03193962946534157, 0.035968828946352005, 0.04613694176077843, 0.014508580788969994, 0.012900358997285366, -0.013652591966092587, -0.04361220449209213, 0.029432186856865883, -0.061769548803567886, -0.025956353172659874, -0.07003546506166458, 0.03150730952620506, -0.018970098346471786, -0.013021407648921013, -0.022653445601463318, -0.07010462880134583, -0.03150730952620506, -0.03825146704912186, -0.01564989984035492, -0.005460171960294247, -0.009035439230501652, -0.04648279398679733, -0.008417224511504173, -0.005360738839954138, 0.06962043792009354, -0.014534519985318184, -0.012615029700100422, 0.053711146116256714, -0.00285329669713974, 0.0157017782330513, -0.032285481691360474, 0.03724848851561546, -0.050978899002075195, -0.0038476272020488977, -0.021529419347643852, -0.0249879602342844, -0.025524035096168518, -0.023898519575595856, 0.013955214060842991, 0.007310491520911455, 0.0038627583999186754, -0.044580597430467606, 0.02275720238685608, -0.015200288966298103, 0.028014184907078743, 0.032994482666254044, 0.035311706364154816, -0.10105857998132706, 0.03344409540295601, -0.018036292865872383, 0.003406663192436099, -0.02919008955359459, 0.017456987872719765, -0.015511557459831238, -0.0307291392236948, 0.053123194724321365, 0.002911659423261881, 0.027305183932185173, -0.0207685399800539, -0.021650468930602074, -0.02348349615931511, 0.028066063299775124, -0.02566237561404705, 0.00447881082072854, 0.0015660707140341401, 0.02846379578113556, -0.037352245301008224, -0.004975976422429085, -0.010565843433141708, -0.04326635226607323, -0.017500219866633415, -0.04720908775925636, 0.05502539128065109, 0.026198450475931168, -0.025489449501037598, 0.005222397390753031, -0.025506742298603058, -0.019575344398617744, -0.008529627695679665, 0.0036076907999813557, -0.0923430547118187, 0.04503020644187927, 0.037490587681531906, -0.0012385901063680649, 0.07885473966598511, 0.008667969144880772, 0.06204622983932495, 0.046033184975385666, -0.03425685316324234, 0.021114394068717957, -0.0572388581931591, -0.047416601330041885, 0.004063786007463932, -0.05350363254547119, -0.10922073572874069, -0.027927720919251442, -0.050148848444223404, -0.04762411490082741, -0.006968960631638765, -0.016782572492957115, -0.04067244753241539, 0.009709854610264301, 0.04831582307815552, 0.0069776070304214954, 0.0026068754959851503, -0.023863935843110085, 0.012286468409001827, 0.0003172130964230746, 0.006891143508255482, -0.056616321206092834, -0.02502254582941532, 0.02147754095494747, 0.005646068602800369, -0.02063019946217537, 0.028117941692471504, -0.056028369814157486, 0.006566905416548252, -0.02777208760380745, -0.06419052928686142, -0.08597933501005173, 0.005429910030215979, -0.04572191461920738, 0.037283074110746384, -0.02559320628643036, -0.07290604710578918, 0.007392631843686104, 0.008045432157814503, -0.008897097781300545, 0.04786621034145355, 0.03998073935508728, 0.05395324528217316, 0.022411348298192024, 0.015822825953364372, -0.09393398463726044, 0.08570265024900436, -0.006363715976476669, -0.038908589631319046, 0.030227651819586754, -0.018209220841526985, -0.06007486209273338, 0.012960883788764477, 0.0342741459608078, -0.022999299690127373, 0.003880050964653492, 0.09926013648509979, 0.017301352694630623, -0.014863081276416779, -0.009614745154976845, -0.016678815707564354, -0.0235526654869318, -0.014370239339768887, 0.028861526399850845, 0.0033655930310487747, -0.009753086604177952, -0.00014806879335083067, 0.005378031637519598, -0.035363584756851196, 0.044476840645074844, -0.022428641095757484, -0.005291568115353584, 0.03901234641671181, -0.024036861956119537, 0.03477563336491585, -0.0042367130517959595, -0.039461955428123474, -0.024797741323709488, -0.034447070211172104, 0.007284552790224552, 0.0060178618878126144, 0.08321250230073929, -0.09358812868595123, 0.036038000136613846, 0.029691576957702637, -0.0069776070304214954, 0.0212700292468071, -0.012001138180494308, -0.025212766602635384, -0.0069646374322474, -0.03195692226290703, -0.007470449432730675, -0.033046361058950424, -0.004390185698866844, 0.03268321603536606, 0.016704754903912544, 0.041640836745500565, -0.006359392777085304, -0.014767971821129322, 0.02064749225974083, -0.010557197034358978, -0.056754663586616516, -0.045341476798057556, -0.028169818222522736, -0.005148903466761112, 0.041606251150369644, 0.0585876889526844, 0.02645784057676792, 0.02358725108206272, -0.07235268503427505, -0.010583136230707169, -0.06076657027006149, 0.0020491858012974262, 0.023379739373922348, -0.019402416422963142, -0.052362315356731415, 0.03470646217465401, 0.020993346348404884, -0.02493608370423317, -0.0198347344994545, 0.02351808175444603, -0.03638385608792305, 0.043819718062877655, -0.028861526399850845, -0.009467756375670433, -0.037352245301008224, 0.020820418372750282, 0.00603947788476944, 0.028878819197416306, 0.02133920043706894, -0.025420278310775757, -0.0808606967329979, 0.019004683941602707, -0.04399264603853226, 0.007046777755022049, 0.12319324165582657, -0.008693908341228962, 0.025368399918079376, -0.03417038917541504, 0.08314333111047745, 0.041744593530893326, -0.017405109480023384, 0.0061345878057181835, 0.04347386583685875, -0.02144295535981655, 0.013635299168527126, 0.011119210161268711, 0.041779179126024246, -0.03921985998749733, 0.0013996284687891603, 0.028135232627391815, 0.010055708698928356, 0.010453441180288792, 0.022532396018505096, -0.01065230742096901, -0.023275982588529587, 0.01858965866267681, -0.060282375663518906, -0.060282375663518906, 0.003985968884080648, 0.005758471321314573, -0.02638866938650608, -0.005641745403409004, 0.0327523872256279, 0.0032899375073611736, 0.011421832256019115, -0.023656422272324562, -0.022515103220939636, 0.0022934451699256897, -0.018053585663437843, 0.03359973058104515, 0.044580597430467606, -0.009632037952542305, 0.007003546226769686, -0.006052447482943535, 0.0915130004286766, -0.041675422340631485, 0.0005847096326760948, -0.003784941043704748, 0.023172227665781975, -0.01711113378405571, 0.026872865855693817, 0.009026792831718922, -0.022636152803897858, 0.02576613239943981, 0.05001050606369972, -0.051636021584272385, 0.043750546872615814, -0.0030327083077281713, -0.025506742298603058, 0.02777208760380745, 0.03475834056735039, 0.040983714163303375, 0.00028316807583905756, -0.011577467434108257, -0.02075124718248844, 0.062392085790634155, 0.020941467955708504, -0.015468326397240162, -0.02064749225974083, 0.025524035096168518, 0.009467756375670433, -0.06813326478004456, 0.04146790876984596, -0.023327860981225967, 0.022394055500626564, -0.027564574033021927, -0.01774231716990471, -0.015416448004543781, 0.011992491781711578 ]
7,386
uuid
_lanscan_getnode
Get the hardware address on Unix by running lanscan.
def _lanscan_getnode(): """Get the hardware address on Unix by running lanscan.""" # This might work on HP-UX. return _find_mac_near_keyword('lanscan', '-ai', [b'lan0'], lambda i: 0)
()
[ 0.04457218572497368, 0.004011582117527723, 0.041541688144207, 0.01555259432643652, 0.014701331034302711, 0.026848869398236275, -0.013909654691815376, -0.008001882582902908, -0.017425375059247017, -0.09152791649103165, 0.011509090662002563, 0.029419686645269394, -0.0017525398870930076, -0.010283269919455051, 0.056660138070583344, 0.006103563588112593, -0.03888574242591858, 0.023273559287190437, 0.02129862643778324, -0.004996920004487038, -0.027615007013082504, 0.00789973046630621, 0.049407366663217545, -0.023665141314268112, 0.004481905605643988, 0.07177858799695969, 0.08274286985397339, -0.02388647012412548, -0.0212645772844553, -0.025027163326740265, -0.04000941291451454, -0.029913419857621193, -0.01814894936978817, -0.0576135516166687, -0.0012800883268937469, 0.04341446980834007, 0.011253710836172104, 0.010070454329252243, -0.07688616961240768, -0.029419686645269394, 0.00654196459800005, -0.05863507091999054, -0.015773924067616463, 0.02647431381046772, 0.01219010166823864, -0.053595587611198425, 0.032313983887434006, -0.05318697914481163, -0.01947692222893238, 0.006001411937177181, -0.02667861618101597, 0.001173680298961699, -0.024465329945087433, -0.005822646431624889, -0.042188648134469986, -0.01869376003742218, -0.009312829002737999, -0.05659203603863716, 0.014854557812213898, 0.06312974542379379, -0.042937759310007095, 0.04855610430240631, -0.05080344155430794, 0.032041579484939575, 0.008436026982963085, -0.020651666447520256, 0.010266244411468506, -0.03166702389717102, -0.014241647906601429, 0.03377815708518028, 0.035412587225437164, -0.019851477816700935, -0.015876075252890587, -0.012445480562746525, 0.06316379457712173, -0.006563246250152588, 0.006341917440295219, -0.02621893398463726, -0.03433999419212341, 0.047330282628536224, 0.05131419748067856, 0.0846496969461441, 0.042427003383636475, 0.012700860388576984, 0.042154598981142044, -0.005022458266466856, 0.06037164852023125, 0.03765992447733879, -0.08587551862001419, -0.04576395824551582, -0.01889806240797043, -0.0024239744525402784, -0.021894512698054314, 0.04950951784849167, -0.026916969567537308, -0.039362452924251556, 0.016846515238285065, 0.019681226462125778, 0.030424177646636963, -0.0513482503592968, -0.015229114331305027, 0.07130187749862671, -0.061597470194101334, 0.011934722773730755, 0.01338187139481306, 0.019527997821569443, -0.038783591240644455, 0.0638788565993309, -0.014284211210906506, 0.0168550293892622, -0.028074689209461212, -0.008031676523387432, -0.018268126994371414, 0.009397955611348152, 0.04286965727806091, 0.055366214364767075, 0.00959374662488699, 0.04511699452996254, -0.026899944990873337, -0.010513111017644405, -0.0001630702754482627, 0.02955588884651661, -0.01599525287747383, -0.05941823124885559, -0.020413313060998917, 0.03946460410952568, 0.0189150869846344, -0.006192946340888739, 0.023733243346214294, -0.002609124407172203, 0.06810112297534943, 0.00616740807890892, -0.0021728514693677425, 0.04923711344599724, -0.02902810461819172, 0.018080849200487137, 0.005882234778255224, -0.00026828120462596416, -0.019000213593244553, -0.06258493661880493, 0.0063674552366137505, 0.0007746503106318414, 0.010853617452085018, -0.07531984895467758, -0.04440193623304367, 0.027444753795862198, -0.027444753795862198, -0.012598708271980286, 0.08928057551383972, -0.04985002428293228, 0.03319929912686348, -0.04767078906297684, 0.01945989765226841, 0.025861402973532677, -0.026916969567537308, 0.06043975055217743, 0.004660670645534992, -0.021485906094312668, 0.010427985340356827, -0.03290987014770508, -0.023222483694553375, -0.02962399087846279, -0.01669328846037388, -0.0675903707742691, -0.01011301763355732, -0.023767292499542236, -0.03738752007484436, -0.007167643401771784, 0.019527997821569443, -0.010453523136675358, -0.02000470645725727, -0.01616550423204899, -0.05376584082841873, 0.0031496770679950714, 0.014352312311530113, 0.012028361670672894, -0.03500397875905037, 0.01451405230909586, 0.01568879745900631, 0.01818300038576126, 0.008321106433868408, 0.05352748557925224, 0.007303845603018999, -0.022422295063734055, 0.020617615431547165, 0.03369303047657013, 0.05764760449528694, -0.017740342766046524, -0.002419718075543642, 0.05570672079920769, 0.035923343151807785, 0.029181333258748055, 0.009789536707103252, 0.01847243122756481, -0.011611241847276688, 0.0037774844095110893, 0.04923711344599724, 0.08212995529174805, -0.03212670609354973, 0.01528870314359665, 0.030236899852752686, 0.041882194578647614, -0.04572990536689758, 0.0811084434390068, -0.03738752007484436, -0.024754758924245834, 0.027121273800730705, 0.0176381915807724, -0.012011336162686348, 0.006571758538484573, 0.022183941677212715, -0.007686914876103401, -0.03164999932050705, 0.05972468852996826, -0.001423739129677415, -0.020379262045025826, -0.07314060628414154, 0.0956139788031578, 0.02308628149330616, -0.005213992670178413, -0.06078025698661804, -0.03738752007484436, 0.049986228346824646, -0.04746648669242859, 0.007563481573015451, -0.02230311930179596, -0.007142105605453253, 0.02305223047733307, 0.03507208079099655, -0.03425486758351326, 0.06299354135990143, -0.05754545331001282, 0.007950806058943272, 0.04927116632461548, -0.014301236718893051, -0.009449031203985214, -0.012794499285519123, -0.017995722591876984, 0.01282854937016964, -0.0487944558262825, -0.03405056148767471, -0.026014629751443863, 0.05625152960419655, -0.031224366277456284, 0.0487944558262825, 0.03299499675631523, 0.014462976716458797, 0.03110518865287304, -0.01573987305164337, -0.03762587159872055, -0.029266459867358208, -0.03112221509218216, 0.06588783860206604, -0.025486847385764122, 0.002875144360587001, -0.05533216521143913, -0.02512931637465954, 0.027972538024187088, 0.02102622203528881, 0.011832570657134056, -0.003534874180331826, -0.00845305249094963, -0.008282799273729324, -0.06885024160146713, -0.017808444797992706, 0.014105445705354214, 0.0028112996369600296, 0.09166411310434341, 0.00007002977508818731, -0.03033905103802681, 0.06568353623151779, 0.008589254692196846, -0.020617615431547165, -0.004071170464158058, 0.004622363951057196, -0.06047379970550537, 0.01454810332506895, 0.049169015139341354, 0.029879368841648102, -0.03200753033161163, -0.041405484080314636, 0.03963485732674599, -0.030986012890934944, -0.011560166254639626, -0.07579655200242996, -0.03575308993458748, 0.04208649694919586, -0.027904435992240906, -0.044095478951931, -0.022916028276085854, -0.00020736260921694338, -0.014701331034302711, -0.044470034539699554, -0.03062848187983036, 0.07940591126680374, 0.032552339136600494, 0.0176381915807724, 0.010759977623820305, -0.0025665611028671265, -0.0007038890034891665, -0.047909144312143326, 0.0016706057358533144, -0.06105266138911247, -0.014735381118953228, -0.0581924133002758, 0.05781785771250725, 0.03180322423577309, 0.010487573221325874, 0.026270009577274323, -0.020600590854883194, -0.06364050507545471, -0.0066270907409489155, 0.0674201175570488, -0.010836591944098473, -0.03292689472436905, -0.008742482401430607, 0.012360354885458946, 0.06932694464921951, 0.0016567726852372289, 0.05039483308792114, 0.02020900882780552, 0.06844162940979004, 0.03714916482567787, 0.028193866834044456, 0.006316379643976688, 0.0034454914275556803, 0.006678166799247265, -0.01741686277091503, 0.025623049587011337, 0.02097514644265175, -0.001596120186150074, -0.04069042205810547, 0.006797343492507935, -0.01130478736013174, 0.008963811211287975, -0.0025878427550196648, 0.03006664663553238, 0.01374791469424963, -0.11584001779556274, -0.04457218572497368, 0.008563716895878315, 0.027036147192120552, -0.02540172077715397, 0.00961928442120552, 0.0308668352663517, 0.012573170475661755, 0.006082281935960054, 0.0032943920232355595, -0.037489671260118484, -0.026082731783390045, 0.027836335822939873, 0.03653625398874283, -0.050939641892910004, 0.01947692222893238, 0.02235419489443302, 0.010402446612715721, -0.04852205142378807, 0.023171408101916313, 0.030798735097050667, 0.029879368841648102, -0.02831304259598255, -0.023035205900669098, -0.04375497251749039, -0.01894913800060749, -0.05648988485336304, -0.035446636378765106, -0.014497027732431889, 0.06571758538484573, 0.09575018286705017, -0.019562048837542534, -0.04596826061606407, -0.017331736162304878, 0.006154639180749655, 0.001271575689315796, 0.007303845603018999, -0.004550006706267595, 0.006797343492507935, -0.029981520026922226, -0.03895384445786476, -0.048113446682691574, -0.030679557472467422, 0.002877272665500641, -0.00027400063117966056, -0.03674055635929108, 0.015493006445467472, 0.010555674321949482, -0.0697355568408966, 0.001997278304770589, 0.008674381300807, 0.01973230205476284, -0.04208649694919586, 0.025759251788258553, -0.0419502928853035, 0.055127862840890884, -0.00985763780772686, 0.04491269215941429, 0.01050459872931242, -0.025844378396868706, -0.0033603650517761707, -0.06568353623151779, -0.035650938749313354, -0.027972538024187088, -0.03663840517401695, 0.01658262498676777, -0.0029815523885190487, 0.03355683013796806, 0.04739838466048241, -0.03612764924764633, -0.024465329945087433, -0.06020139530301094, -0.0566260851919651, -0.005741776432842016, 0.012215639464557171, -0.04143953695893288, -0.020191984251141548, 0.037523720413446426, 0.04773889109492302, 0.092481330037117, 0.029402662068605423, 0.0032837511971592903, -0.06513872742652893, -0.07429832965135574, -0.022405270487070084, 0.02412482351064682, 0.0705527663230896, 0.017570091411471367, 0.010513111017644405, -0.013645763508975506, -0.0004979894729331136, 0.030747659504413605, 0.007448560558259487, -0.009993840008974075, 0.038238782435655594, -0.03847713768482208, -0.020855970680713654, -0.010283269919455051, 0.05441280081868172, -0.03520828112959862, 0.0015226986724883318, -0.006222740281373262, 0.03316524997353554, 0.005277837160974741, 0.02647431381046772, 0.014692817814648151, -0.024584507569670677, 0.01791059598326683, -0.019613124430179596, -0.042699407786130905, -0.04671737179160118, -0.010862129740417004, -0.017297687008976936, -0.05897557735443115, 0.03868144005537033, -0.006707960739731789, 0.016122940927743912, -0.0652749314904213, -0.1073954775929451, 0.031020063906908035, 0.03013474866747856, 0.017067844048142433, -0.01115155965089798, 0.06902049481868744, 0.03755776956677437, -0.01181554514914751, -0.029896395280957222, -0.02907918021082878, 0.01837027817964554, 0.017152970656752586, 0.01011301763355732, -0.033114172518253326, -0.035684991627931595, 0.013722376897931099, -0.05553646758198738, 0.0024963319301605225, 0.027138298377394676, -0.021417804062366486, -0.04542345181107521, -0.05570672079920769, -0.07218719273805618, -0.05042888596653938, -0.07709047198295593, -0.03352278098464012, 0.07348111271858215, -0.00019033733406104147, -0.010266244411468506, -0.0033710056450217962, -0.024005647748708725, -0.009755486622452736, -0.056694187223911285, -0.05213141068816185, -0.03793232887983322, 0.0327225923538208, -0.0065377079881727695, -0.026150831952691078, 0.029947470873594284, -0.011057920753955841, 0.03793232887983322, 0.0013109466526657343, -0.00934688001871109, 0.029998546466231346, -0.02538469433784485, 0.008142340928316116, 0.023750267922878265, -0.03161594644188881, 0.008963811211287975, -0.018864011391997337, -0.022745776921510696, 0.002547407755628228, 0.030730633065104485, 0.05437874794006348, 0.03714916482567787, -0.005805620923638344, 0.0090659623965621, 0.021588057279586792, -0.052063312381505966, 0.01840432919561863, 0.035174231976270676, 0.004877743311226368, 0.01840432919561863, 0.04590015858411789, -0.03347170352935791, 0.039566755294799805, 0.03769397363066673, -0.03779612481594086, 0.003522105049341917, 0.06037164852023125, -0.03405056148767471, 0.03268853947520256, -0.03857928887009621, 0.029368611052632332, -0.02514634095132351, -0.00822746753692627, -0.020413313060998917, 0.013458484783768654, 0.050735339522361755, 0.05437874794006348, 0.020941097289323807, 0.007312358357012272, -0.03571904078125954, -0.04647902026772499, 0.024993114173412323, -0.07749908417463303, 0.006282329093664885, -0.029641015455126762, -0.00432229321449995, -0.007269795052707195, 0.003496567253023386, 0.016897592693567276, -0.013211618177592754, -0.026355136185884476, 0.03588929399847984, -0.03238208591938019, 0.03158189728856087, -0.039021946489810944, 0.04303991049528122, 0.07538794726133347, -0.026014629751443863, 0.031530819833278656, 0.003202881198376417, -0.0060184369795024395, -0.0172891728579998, -0.0034880544990301132, -0.016974205151200294, 0.037455618381500244, -0.03290987014770508, -0.049134962260723114, -0.054140396416187286, -0.04201839491724968, 0.007346408907324076, -0.048113446682691574, 0.017314711585640907, 0.03728536516427994, 0.04385712370276451, -0.019902553409337997, -0.04048611968755722, -0.00949159450829029, 0.04222269728779793, 0.02414184994995594, 0.012743423692882061, -0.057170893996953964, -0.02364811673760414, 0.013288232497870922, -0.01969825103878975, 0.017723318189382553, 0.00921919010579586, 0.03343765437602997, -0.029726142063736916, -0.046547118574380875, -0.024720709770917892, -0.04716002941131592, 0.04484459012746811, -0.06244873255491257, -0.007316614966839552, 0.05345938354730606, -0.03943055123090744, 0.034101638942956924, -0.033097147941589355, -0.0004179174720775336, 0.008470077998936176, 0.02260957472026348, 0.007699683774262667, 0.008287055417895317, 0.062380630522966385, -0.056183427572250366, 0.05883937329053879, 0.012505069375038147, -0.03789827600121498, -0.07245960086584091, -0.031190315261483192, -0.057170893996953964, -0.004571287892758846, 0.0016386833740398288, -0.03919219970703125, 0.017484964802861214, -0.009559695608913898, 0.004405291751027107, 0.07647756487131119, -0.024737734347581863, 0.009746973402798176, 0.014658767729997635, 0.03130949288606644, 0.05706874281167984, 0.019817428663372993, -0.0043371906504035, 0.046070411801338196, 0.016735851764678955, 0.0027623518835753202, 0.003996684681624174, 0.023920521140098572, 0.050190530717372894, 0.0030624226201325655, 0.01282854937016964, 0.000201643182663247, -0.01869376003742218, -0.03738752007484436, -0.06319784373044968, 0.025061214342713356, -0.03810258209705353, -0.05162065476179123, 0.08417299389839172, -0.10276459902524948, 0.08001882582902908, 0.030270950868725777, -0.052812423557043076, 0.07613705843687057, -0.008793557994067669, 0.015271677635610104, 0.03134354203939438, -0.0071463617496192455, 0.014377850107848644, -0.0044265734031796455, -0.008636074140667915, 0.015756897628307343, 0.07314060628414154, 0.025520896539092064, -0.014241647906601429, -0.024856911972165108, 0.03657030314207077, -0.014352312311530113, -0.05655798688530922, -0.06248278170824051, -0.006154639180749655, 0.014760918915271759, -0.016386833041906357, -0.01543341763317585, -0.003253957023844123, 0.009159601293504238, 0.0017695651622489095, -0.039260298013687134, 0.010436497628688812, 0.03321632370352745, -0.033880311995744705, 0.029402662068605423, -0.024261025711894035, -0.016940155997872353, 0.011977286078035831, -0.002149441745132208, 0.008231723681092262, -0.003270982299000025, -0.023767292499542236, 0.042937759310007095, 0.0002548471966292709, 0.007244257256388664, -0.029777217656373978, -0.023273559287190437, 0.057443298399448395, 0.025095265358686447, 0.03180322423577309, 0.04375497251749039, -0.02259254828095436, -0.06616024672985077, -0.014726868830621243, 0.04491269215941429, 0.1050119400024414, -0.060337599366903305, 0.013816015794873238, -0.021383753046393394, -0.011091970838606358, 0.03423784300684929, -0.031820252537727356, 0.05417444556951523, -0.016242118552327156, 0.010734439827501774, -0.0168550293892622, 0.04375497251749039, -0.00505225220695138, -0.021383753046393394, -0.023188432678580284, -0.049203064292669296, 0.023443812504410744, 0.03779612481594086, -0.060031142085790634, 0.009295803494751453, -0.055127862840890884, 0.05635368078947067, 0.012292253784835339, -0.03503802791237831, 0.0019515228923410177, -0.03170107305049896, 0.06037164852023125, 0.007291076704859734, -0.01944287121295929, 0.08941677957773209, 0.052812423557043076, -0.01837027817964554, 0.03452727198600769, -0.011126021854579449, -0.032569363713264465, 0.000054633863328490406, 0.054072294384241104, -0.014760918915271759, -0.007921012118458748, 0.005690700374543667, 0.04583205655217171, -0.012385892681777477, 0.04719408228993416, 0.014462976716458797, -0.00118325708899647, 0.025095265358686447, 0.03708106279373169, 0.0256741251796484, 0.053799889981746674, -0.002194133121520281, 0.03874954208731651, 0.008567973040044308, 0.033880311995744705, -0.048930659890174866, 0.055366214364767075, 0.030168799683451653, -0.012683834880590439, 0.025520896539092064, -0.05625152960419655, 0.02383539453148842, 0.007316614966839552, 0.012973264791071415, -0.004066914319992065, -0.007878448814153671, 0.021366728469729424, 0.032024554908275604, 0.04845395311713219, -0.00701015954837203, 0.014565128833055496, -0.09009779244661331, 0.0018419226398691535, -0.04743243381381035, -0.05005432665348053, -0.033624932169914246, -0.00272404495626688 ]
7,387
uuid
_load_system_functions
[DEPRECATED] Platform-specific functions loaded at import time
def _load_system_functions(): """[DEPRECATED] Platform-specific functions loaded at import time"""
()
[ -0.007217560429126024, -0.04862872138619423, 0.017586680129170418, 0.02983367256820202, 0.006658281199634075, 0.02744959108531475, -0.0013930953573435545, 0.028886571526527405, -0.03886378929018974, -0.0025432920083403587, 0.01437796838581562, -0.02859264425933361, 0.007560476195067167, -0.018746063113212585, -0.03241370618343353, 0.01665590889751911, -0.032054461538791656, 0.060255199670791626, -0.004841644316911697, -0.09830252081155777, -0.04013747349381447, 0.00039394490886479616, 0.024412337690591812, 0.00011360360804246739, 0.006348024122416973, 0.10692440718412399, 0.006846068426966667, -0.017096800729632378, 0.022175220772624016, -0.06218206137418747, -0.024118410423398018, 0.02932746335864067, -0.028086435049772263, 0.008103426545858383, 0.005911214742809534, -0.003959860652685165, 0.061398252844810486, 0.0060908375307917595, -0.03759010136127472, -0.03200547397136688, 0.0056172870099544525, 0.007335948292165995, 0.04843277111649513, -0.05522577092051506, 0.02338358946144581, 0.03162989765405655, -0.04098660126328468, 0.0005802012165077031, 0.01626400463283062, 0.053560178726911545, 0.01740705780684948, -0.02508183941245079, 0.03461816534399986, 0.01234496757388115, -0.05718528851866722, 0.07309004664421082, 0.012108192779123783, -0.021456729620695114, -0.03873315453529358, 0.030503174290060997, 0.0567280650138855, 0.03259332850575447, -0.03380169719457626, 0.019513539969921112, 0.040072157979011536, -0.004212965257465839, 0.008046274073421955, -0.039092399179935455, -0.009683288633823395, 0.053462203592061996, -0.07086925953626633, 0.013912582769989967, -0.03840656578540802, -0.03602248430252075, 0.07354726642370224, 0.003331181826069951, -0.03546728938817978, -0.03130331262946129, -0.021766986697912216, -0.005752003751695156, 0.02802111767232418, -0.034846775233745575, -0.008176907896995544, 0.04484032094478607, -0.007707440294325352, -0.03504272550344467, 0.02075456827878952, 0.01592925377190113, 0.008266719989478588, -0.009095433168113232, -0.031237993389368057, 0.026518819853663445, -0.020232031121850014, 0.03442221134901047, 0.014108534902334213, -0.055682990700006485, -0.007952379994094372, 0.007425759453326464, -0.0009384257718920708, -0.00518456008285284, 0.04464436694979668, -0.023497894406318665, 0.010418107733130455, -0.053723473101854324, 0.04624463990330696, -0.061496227979660034, -0.015455704182386398, -0.008083014748990536, -0.025424756109714508, 0.0010159900411963463, 0.0015523062320426106, -0.05261307582259178, -0.006641951855272055, 0.008295295760035515, -0.03259332850575447, -0.033867016434669495, 0.009805758483707905, 0.01568431407213211, 0.03569589927792549, 0.015782291069626808, -0.07374322414398193, 0.042456239461898804, -0.025881975889205933, -0.035761214792728424, 0.03167888522148132, -0.04386056214570999, 0.01328390371054411, 0.07720503956079483, 0.04869404062628746, -0.008466754108667374, 0.020950520411133766, -0.022191548720002174, 0.010932481847703457, -0.014737213961780071, -0.003378128632903099, -0.0785766988992691, 0.008679035119712353, 0.05777314305305481, 0.040725331753492355, 0.004796738736331463, -0.07615996152162552, -0.01993810385465622, -0.008078932762145996, -0.007458418142050505, -0.0008858657674863935, 0.06773403286933899, 0.020623935386538506, 0.018484793603420258, -0.05235181003808975, -0.0125000961124897, 0.06365170329809189, 0.019709492102265358, -0.03465082123875618, -0.026584137231111526, -0.008078932762145996, 0.0048375618644058704, 0.011234574019908905, -0.08229978382587433, 0.01045893132686615, -0.03300156071782112, -0.0038884200621396303, 0.016068054363131523, -0.026453502476215363, -0.03840656578540802, 0.018582768738269806, 0.02287738025188446, 0.031564582139253616, -0.037786051630973816, 0.039190374314785004, 0.008083014748990536, -0.013806442730128765, 0.014108534902334213, 0.022175220772624016, 0.03202180191874504, 0.10862265527248383, 0.031156348064541817, -0.0282660573720932, -0.0005975511739961803, 0.013120611198246479, 0.038700494915246964, 0.012679719366133213, 0.03055216185748577, -0.06766871362924576, -0.01021399162709713, 0.0064949882216751575, 0.07883796840906143, 0.03016025945544243, -0.030682796612381935, -0.022665100172162056, 0.04079064726829529, 0.0006016334518790245, 0.06018988415598869, 0.066721610724926, 0.02738427370786667, 0.030258234590291977, -0.030437856912612915, -0.03628375381231308, 0.0031046124640852213, -0.03726351261138916, 0.027025029063224792, 0.005719345062971115, 0.06296586990356445, 0.01732541061937809, 0.025130826979875565, -0.008687200024724007, 0.0056458632461726665, -0.001526791718788445, 0.027237311005592346, -0.06969355046749115, 0.009258725680410862, -0.00682565663009882, -0.03318118304014206, -0.039190374314785004, 0.06401094794273376, 0.003529174951836467, 0.020215701311826706, 0.023057004436850548, 0.03309953585267067, -0.044317781925201416, -0.0031209418084472418, 0.053723473101854324, 0.04340333864092827, -0.03412828594446182, -0.024493984878063202, 0.014851518906652927, 0.020868875086307526, -0.020232031121850014, -0.032642316073179245, 0.010605894960463047, 0.004478316754102707, 0.024575630202889442, -0.009813922457396984, -0.04261953383684158, 0.000977718154899776, 0.025686023756861687, -0.04924923554062843, 0.037132877856492996, 0.058295682072639465, 0.07309004664421082, -0.029719367623329163, 0.00010288749035680667, 0.007005279418081045, 0.01221433375030756, 0.03154825046658516, 0.020003419369459152, -0.019840126857161522, -0.05195990577340126, 0.00680524529889226, -0.014696390368044376, 0.0023187638726085424, 0.0014767830725759268, -0.025620706379413605, 0.009838417172431946, -0.009879239834845066, -0.05721794813871384, -0.03162989765405655, 0.027155663818120956, 0.036806292831897736, -0.0037047150544822216, -0.009781264699995518, -0.04888999089598656, 0.007507406175136566, -0.051339391618967056, 0.02189762145280838, -0.04079064726829529, -0.026110587641596794, 0.047681622207164764, 0.04137850180268288, -0.046375274658203125, 0.017847949638962746, 0.03634907305240631, 0.0008220793097279966, -0.08556564897298813, 0.023301944136619568, 0.028543656691908836, -0.0005146288312971592, -0.036479707807302475, -0.028413021937012672, 0.05983063951134682, 0.0051151602528989315, 0.04689781367778778, 0.017374400049448013, -0.06113698333501816, 0.06747276335954666, -0.04095394164323807, -0.05418069288134575, -0.020966850221157074, -0.08706794679164886, -0.05359283834695816, -0.045297540724277496, 0.007107337471097708, 0.0225507952272892, 0.00931587815284729, 0.02483689971268177, 0.03834125027060509, 0.043272703886032104, -0.0282660573720932, -0.007772757671773434, 0.05875290185213089, -0.0351080447435379, -0.002076885662972927, 0.03127065300941467, -0.01021399162709713, 0.05473588779568672, 0.03244636580348015, -0.03948430344462395, 0.02638818509876728, -0.028625302016735077, -0.04794289171695709, 0.04728971794247627, -0.023644858971238136, -0.014002393931150436, 0.026453502476215363, -0.019578857347369194, 0.03104204311966896, 0.021048497408628464, -0.018076559528708458, 0.03791668638586998, 0.0030270481947809458, 0.012843011878430843, -0.0022922286298125982, 0.030372539535164833, 0.021538376808166504, 0.04951050505042076, 0.01437796838581562, -0.008054438047111034, 0.05934076011180878, -0.0769437700510025, 0.03628375381231308, -0.008874987252056599, -0.05251510068774223, 0.002720873337239027, 0.015088293701410294, 0.020166713744401932, 0.022256866097450256, 0.008038109168410301, 0.0038782141637057066, -0.012761365622282028, -0.030748113989830017, 0.027972130104899406, -0.011569324880838394, 0.04843277111649513, -0.029866330325603485, 0.021260777488350868, -0.02728629857301712, 0.0011195791885256767, 0.04650590941309929, 0.025228803977370262, -0.002072803443297744, -0.06838720291852951, -0.0008037088555283844, -0.024640947580337524, -0.07002013176679611, 0.05378878861665726, 0.028413021937012672, -0.027890482917428017, -0.02418372593820095, 0.01716211810708046, 0.05039228871464729, -0.018435806035995483, 0.030944066122174263, -0.009283219464123249, 0.010262979194521904, 0.02793947048485279, 0.016035394743084908, -0.021195460110902786, 0.01732541061937809, -0.029931647703051567, -0.013381879776716232, -0.049151260405778885, 0.0036026567686349154, -0.021620023995637894, 0.027645543217658997, -0.002753532025963068, 0.003255658783018589, -0.04098660126328468, 0.06688490509986877, 0.016076218336820602, -0.04275016486644745, 0.05983063951134682, 0.03866783529520035, 0.03238104656338692, -0.010638553649187088, -0.04598337411880493, 0.03850454092025757, 0.03850454092025757, -0.0018380694091320038, 0.006601128727197647, 0.00718898419290781, -0.05199256166815758, 0.020525958389043808, 0.00764212291687727, -0.02793947048485279, 0.023759163916110992, -0.0012073492398485541, 0.01708047091960907, -0.03791668638586998, 0.015047471038997173, 0.06423955410718918, -0.021211789920926094, 0.0003166357637383044, 0.0004051713040098548, -0.0007633958593942225, -0.007091008126735687, -0.013267574831843376, 0.03291991353034973, 0.0000958709861151874, 0.006984867621213198, 0.032576996833086014, 0.07093457877635956, -0.02802111767232418, 0.0028106847312301397, -0.04830213636159897, -0.059928614646196365, 0.011724453419446945, 0.030944066122174263, -0.03291991353034973, 0.03896176442503929, 0.030911408364772797, -0.03458550572395325, -0.0003564384824130684, -0.04190104082226753, -0.03458550572395325, 0.07178369909524918, 0.0038782141637057066, -0.0031189005821943283, -0.031531922519207, 0.007907474413514137, -0.030846090987324715, 0.013708466663956642, 0.017603009939193726, 0.055682990700006485, -0.04464436694979668, -0.03523867949843407, 0.014051382429897785, -0.04464436694979668, 0.016027230769395828, -0.038537200540304184, -0.02395511604845524, -0.0060867550782859325, -0.0019054277800023556, 0.024314360693097115, 0.03716553747653961, -0.03801466152071953, -0.004241541493684053, -0.005486652255058289, -0.06022254005074501, 0.07615996152162552, 0.01356150209903717, -0.057315923273563385, -0.05695667862892151, 0.025098169222474098, -0.006662363652139902, 0.019905444234609604, 0.036806292831897736, -0.00482123252004385, -0.035173360258340836, -0.009846581146121025, -0.03251168131828308, -0.0013665602309629321, -0.04222762957215309, 0.04601603001356125, -0.054703231900930405, -0.0012838930124416947, 0.06819125264883041, 0.05956937000155449, 0.008417765609920025, -0.010671212337911129, -0.0014971947530284524, 0.049151260405778885, 0.046865157783031464, -0.02477158233523369, 0.00834020134061575, -0.04627729952335358, -0.020525958389043808, 0.008483082987368107, -0.04830213636159897, 0.014606579206883907, 0.007348195184022188, -0.008687200024724007, -0.006764421705156565, -0.04627729952335358, 0.0036169448867440224, 0.0328545980155468, -0.015553680248558521, -0.03563058376312256, 0.05173129588365555, -0.008866822347044945, 0.05003304407000542, -0.03899442404508591, -0.014279992319643497, 0.034846775233745575, 0.035761214792728424, -0.02869061939418316, 0.020770898088812828, 0.0014737213496118784, 0.008119755424559116, 0.0065603055991232395, 0.04464436694979668, 0.008295295760035515, 0.005605040118098259, -0.010165003128349781, -0.05457259714603424, 0.042521554976701736, 0.06077773869037628, -0.002382040023803711, 0.04924923554062843, 0.030290894210338593, -0.0037986086681485176, -0.01716211810708046, -0.03176053240895271, -0.021228119730949402, 0.05757719278335571, 0.004225212149322033, 0.01233680360019207, 0.00578057998791337, -0.07374322414398193, 0.0377533957362175, -0.010720199905335903, 0.04954316467046738, 0.020770898088812828, -0.024412337690591812, 0.006074508186429739, -0.09216269850730896, -0.007507406175136566, -0.02246914803981781, -0.030421528965234756, 0.019023660570383072, 0.02820073999464512, 0.012989976443350315, 0.0016645702999085188, 0.005131489597260952, -0.005845897365361452, -0.03785137087106705, 0.03798200562596321, 0.07139179855585098, -0.014990318566560745, -0.03981088846921921, -0.01494949497282505, -0.01722743548452854, 0.0009271993767470121, -0.055356401950120926, 0.034356895834207535, 0.05026165395975113, 0.008809669874608517, -0.07178369909524918, -0.05496450141072273, -0.018207194283604622, -0.006384765263646841, -0.021211789920926094, -0.01222249772399664, 0.008850492537021637, -0.0006756257498636842, -0.031107360497117043, 0.009740441106259823, -0.11933469027280807, -0.012769530527293682, -0.002955607371404767, -0.03006228245794773, -0.01267155446112156, -0.0426521897315979, -0.015578174032270908, -0.05195990577340126, 0.014165687374770641, -0.08523906767368317, -0.003839432029053569, -0.05068621784448624, 0.040072157979011536, -0.022991687059402466, -0.018207194283604622, 0.028788596391677856, -0.03772073611617088, 0.05744655802845955, -0.016321158036589622, -0.03096039593219757, 0.05039228871464729, 0.06038583442568779, -0.006846068426966667, 0.039680253714323044, -0.059177465736866, -0.0671461746096611, 0.04288079962134361, -0.013822771608829498, 0.021848633885383606, 0.019317587837576866, -0.09111762046813965, 0.04026810824871063, 0.04226028546690941, 0.052482444792985916, -0.04941252991557121, -0.050457607954740524, -0.028821254149079323, 0.06554590165615082, -0.0734819546341896, -0.036414388567209244, -0.00019225226424168795, -0.035173360258340836, 0.027743518352508545, -0.01246743742376566, -0.018076559528708458, -0.009920063428580761, 0.057315923273563385, 0.0209178626537323, -0.050947487354278564, 0.04340333864092827, 0.04085596650838852, -0.05391942337155342, -0.0434686578810215, -0.042031675577163696, 0.056826043874025345, -0.03932100906968117, 0.000617962796241045, 0.0036026567686349154, 0.033295489847660065, 0.0740698054432869, 0.017260093241930008, 0.025032851845026016, -0.04647325351834297, 0.07008545100688934, -0.01651711016893387, -0.05826302245259285, 0.01659059152007103, -0.006548058241605759, -0.042194969952106476, 0.0063072009943425655, 0.00694404449313879, -0.009936393238604069, -0.03497740998864174, 0.00915258564054966, 0.018337829038500786, -0.014573920518159866, -0.04820416122674942, 0.0785766988992691, -0.027563896030187607, -0.020901532843708992, -0.06812593340873718, 0.002087091561406851, -0.02344890683889389, 0.01021399162709713, 0.05098014697432518, 0.010181332938373089, 0.018844038248062134, -0.01879505068063736, -0.02475525252521038, -0.0009287302382290363, -0.0035495865158736706, -0.05921012535691261, 0.006266377400606871, 0.0967349037528038, 0.014786201529204845, -0.02558804862201214, 0.01617419347167015, 0.010736529715359211, 0.05970000475645065, -0.035826534032821655, -0.011267232708632946, -0.04666920378804207, -0.015880266204476357, 0.05525842681527138, -0.05130673199892044, -0.014067711308598518, 0.006282706744968891, -0.03523867949843407, 0.09987013787031174, 0.003492433810606599, -0.0176519975066185, 0.02777617797255516, 0.0005949996993876994, -0.02222420834004879, -0.04451373219490051, 0.08354081213474274, 0.021293437108397484, 0.027906812727451324, -0.018991002812981606, -0.03455284610390663, 0.003284235019236803, -0.007985038682818413, 0.015904759988188744, 0.0050212666392326355, 0.04177040606737137, -0.02281206287443638, 0.017505032941699028, -0.0691710114479065, -0.01748870499432087, -0.09503665566444397, 0.05039228871464729, 0.014802531339228153, 0.0237754937261343, -0.0016400763997808099, -0.018501123413443565, 0.023171309381723404, 0.025522731244564056, 0.016786543652415276, 0.056989334523677826, 0.005376429297029972, -0.009495501406490803, 0.020852545276284218, -0.0369369275867939, 0.038439225405454636, 0.021375082433223724, 0.04301143437623978, 0.006303118541836739, -0.055095136165618896, 0.018778720870614052, -0.042456239461898804, 0.014402462169528008, -0.07504956424236298, -0.03225041180849075, -0.0702160894870758, 0.00612757820636034, 0.025147156789898872, -0.07126116752624512, 0.040072157979011536, -0.03559792414307594, 0.0483674518764019, -0.09804125130176544, 0.007948298007249832, -0.02736794389784336, 0.022126231342554092, -0.017619339749217033, 0.005796909332275391, 0.018533781170845032, 0.06597046554088593, 0.02575134113430977, 0.044154487550258636, 0.05032697319984436, -0.05849163234233856, -0.017031483352184296, 0.010540577583014965, 0.040398743003606796, -0.012573578394949436, -0.010058863088488579, -0.038047321140766144, 0.05496450141072273, 0.005037595983594656, -0.04062735289335251, 0.009291384369134903, 0.020460641011595726, -0.03422626107931137, -0.019758479669690132, -0.003749620635062456, -0.04875935614109039, -0.016786543652415276, 0.028396692126989365, 0.004984525963664055, -0.004890632349997759, 0.03700224682688713, -0.015088293701410294, -0.000636333308648318, 0.09634300321340561, 0.026584137231111526, 0.010360955260694027, -0.038700494915246964, -0.016239510849118233, 0.011430526152253151, -0.01626400463283062, 0.006450082641094923, 0.0010501795914024115, 0.012108192779123783, -0.05277637019753456, -0.05058824270963669, -0.011585654690861702, -0.04389321804046631, -0.005286618135869503, 0.10921050608158112, -0.021032167598605156, -0.019889114424586296, 0.018076559528708458 ]
7,388
uuid
_netbios_getnode
[DEPRECATED] Get the hardware address on Windows.
def _netbios_getnode(): """[DEPRECATED] Get the hardware address on Windows.""" # bpo-40501: UuidCreateSequential() is now the only supported approach return _windll_getnode()
()
[ 0.04339749366044998, -0.018827103078365326, 0.04774744063615799, -0.013100809417665005, 0.014460167847573757, -0.0005894089699722826, -0.02270127274096012, -0.00218771630898118, 0.023363960906863213, -0.08115365356206894, 0.003513090079650283, -0.0002088153996737674, 0.001878674840554595, -0.017136402428150177, 0.0368385948240757, 0.005377958994358778, -0.02057727612555027, 0.008886801078915596, 0.009523999877274036, 0.002848279196768999, -0.029294157400727272, 0.019370846450328827, 0.04805329442024231, -0.05454422906041145, -0.0062105655670166016, 0.0816294327378273, 0.04971850663423538, 0.015777045860886574, -0.017289331182837486, -0.049922410398721695, -0.03717843443155289, -0.04750955104827881, -0.00299058691598475, -0.05603951960802078, 0.03721241652965546, 0.05270909518003464, 0.009838351048529148, 0.029345134273171425, -0.06684641540050507, -0.04750955104827881, -0.006473940797150135, -0.05359267815947533, -0.01156303659081459, -0.005722046364098787, 0.020713211968541145, -0.02327900007367134, 0.06239451840519905, -0.02355087175965309, -0.03194490447640419, 0.007752586621791124, 0.007323539350181818, 0.010840877890586853, -0.022259481251239777, 0.0006462258752435446, -0.05315088480710983, -0.020560285076498985, -0.02169874683022499, -0.06168085336685181, -0.02589576318860054, 0.07571621984243393, -0.009821359068155289, 0.02249736897647381, -0.04581035301089287, 0.012709994800388813, 0.00905672088265419, -0.010552014224231243, 0.03544525057077408, -0.028614480048418045, -0.004851207602769136, 0.06280232220888138, 0.04380530118942261, 0.00001271908786293352, -0.01768864132463932, -0.0037955816369503736, 0.05777270346879959, -0.00408444507047534, 0.019285887479782104, 0.023754775524139404, -0.026694387197494507, 0.04407717287540436, 0.014281751587986946, 0.06878349930047989, 0.005938693881034851, 0.0034408741630613804, 0.02866545505821705, 0.004965903703123331, 0.047033775597810745, 0.05376259610056877, -0.06164687126874924, -0.030891403555870056, -0.0074254912324249744, 0.006919980049133301, -0.03904755041003227, 0.04339749366044998, 0.0012510338565334678, -0.07075456529855728, 0.02288818545639515, 0.06317614763975143, 0.047951340675354004, -0.04815524443984032, -0.024808278307318687, 0.06188475713133812, -0.030534572899341583, 0.026388531550765038, 0.011962347663939, 0.004341448657214642, -0.011418604291975498, 0.08298878371715546, -0.016167860478162766, -0.01323674526065588, -0.05675318464636803, 0.005025375634431839, 0.0034918501041829586, -0.015887493267655373, 0.04285375028848648, 0.02866545505821705, 0.0088273286819458, 0.057364895939826965, 0.03264157474040985, -0.03908153250813484, -0.05437430739402771, 0.005382206756621599, -0.05005834624171257, -0.0706186294555664, -0.02285420149564743, 0.012472107075154781, 0.019132958725094795, 0.012421131134033203, -0.0276289451867342, -0.03257360681891441, 0.015607125125825405, -0.000004389039531815797, -0.01784157007932663, 0.07245376706123352, -0.011316652409732342, 0.014477159827947617, -0.008236858062446117, -0.005407694727182388, 0.006295525468885899, -0.007276811636984348, -0.017357299104332924, 0.0068307723850011826, 0.009464527480304241, -0.022072570398449898, -0.0026443754322826862, 0.021528827026486397, -0.01200482714921236, 0.007476467173546553, 0.019642718136310577, -0.05586960166692734, 0.04951460286974907, 0.009634447284042835, 0.015666596591472626, 0.015734564512968063, -0.021443868055939674, 0.03109530732035637, 0.00903972890228033, -0.04801930859684944, -0.0014570615021511912, -0.05410243570804596, -0.05158762261271477, 0.019914589822292328, 0.036668673157691956, -0.048461101949214935, -0.005509646609425545, 0.013296217657625675, -0.01899702288210392, -0.05637935921549797, 0.036362819373607635, 0.0027760632801800966, -0.040135037153959274, 0.02154581993818283, -0.049344684928655624, 0.015386229380965233, 0.044790834188461304, 0.013763496652245522, -0.025572916492819786, -0.015275781974196434, 0.001222359947860241, 0.019863614812493324, 0.02416258305311203, 0.046456050127744675, 0.029956845566630363, -0.014060855843126774, 0.01135063637048006, 0.02258232980966568, 0.047339633107185364, -0.017348801717162132, 0.02920919843018055, 0.02018646150827408, 0.031927913427352905, 0.08258097618818283, 0.02477429434657097, 0.058520346879959106, 0.05315088480710983, -0.021987611427903175, 0.04489278793334961, 0.04050885885953903, -0.030738474801182747, -0.006006661802530289, 0.07102643698453903, 0.05906409025192261, -0.016465220600366592, 0.08475594967603683, -0.02705121785402298, -0.017892545089125633, 0.033389221876859665, 0.0047535039484500885, 0.02045833319425583, 0.02161378785967827, 0.005513894837349653, -0.014239272102713585, -0.04180024936795235, 0.0652831494808197, 0.01884409599006176, -0.011189213022589684, -0.05719497427344322, 0.04883492365479469, 0.005785766057670116, -0.01823238469660282, -0.021800698712468147, -0.027391057461500168, 0.07496857643127441, -0.06711828708648682, -0.034238822758197784, -0.017076930031180382, -0.06456948816776276, 0.00807543471455574, 0.029073262587189674, -0.0143582159653306, 0.044179126620292664, -0.02886935882270336, -0.03731437027454376, 0.03588704392313957, 0.01787555404007435, 0.020713211968541145, -0.033236294984817505, -0.026643410325050354, 0.04659198597073555, 0.004298968706279993, -0.05355869233608246, 0.0052887508645653725, 0.08258097618818283, -0.0014305115910246968, 0.049038827419281006, 0.019829630851745605, 0.028767406940460205, 0.0281726885586977, -0.003205110551789403, -0.05780668556690216, -0.03483353927731514, -0.04146040976047516, 0.02671137824654579, -0.010067743249237537, -0.029345134273171425, -0.03660070523619652, -0.03240368887782097, 0.022344442084431648, 0.006274285260587931, 0.033966951072216034, -0.03707648068666458, -0.030432621017098427, 0.001346613746136427, -0.013712520711123943, -0.021511835977435112, 0.0008931405027396977, -0.0032136065419763327, 0.08210520446300507, -0.008801841177046299, -0.002873767167329788, 0.06667649745941162, 0.03850380703806877, -0.04665995389223099, -0.0520973838865757, 0.018521249294281006, -0.0857754722237587, -0.019625727087259293, -0.0023342720232903957, 0.015063382685184479, -0.02759496122598648, -0.06341403722763062, 0.009931807406246662, -0.03337223082780838, 0.011316652409732342, -0.06932724267244339, -0.05960783362388611, 0.008835825137794018, -0.06817179173231125, -0.03677062690258026, -0.04985444247722626, -0.03602297976613045, 0.002465959871187806, -0.05145168676972389, -0.019472798332571983, 0.032539624720811844, -0.032318729907274246, -0.02200460247695446, 0.031231243163347244, 0.011817916296422482, -0.004528360441327095, -0.06402574479579926, 0.019370846450328827, -0.06280232220888138, 0.0014772395370528102, -0.02778187207877636, 0.017467746511101723, 0.06348200142383575, 0.001858496805652976, -0.02045833319425583, 0.0014241395983844995, -0.10881658643484116, 0.003993113059550524, 0.0794544592499733, 0.029464077204465866, -0.010781405493617058, -0.017348801717162132, 0.017280833795666695, 0.05872425064444542, 0.01923491060733795, 0.04540254548192024, 0.0023725039791315794, 0.049378667026758194, 0.037552256137132645, 0.0263205636292696, -0.010891853831708431, -0.008568201214075089, -0.01443467941135168, 0.0036405296996235847, 0.03090839460492134, 0.0615789033472538, -0.05287901312112808, -0.06514721363782883, -0.020679228007793427, 0.00816889014095068, 0.020645244047045708, 0.0006717138458043337, 0.047849390655756, 0.016048917546868324, -0.0769396424293518, -0.035853058099746704, -0.027883823961019516, 0.024876246228814125, -0.03445971757173538, -0.015020902268588543, 0.012361658737063408, -0.0026656154077500105, 0.0663706362247467, 0.009914815425872803, -0.05869026854634285, -0.01838531345129013, -0.00998278334736824, 0.03996511548757553, -0.04346546158194542, 0.016788067296147346, -0.024876246228814125, 0.012633530423045158, -0.021256955340504646, 0.022684281691908836, 0.043329525738954544, 0.042174071073532104, -0.07027879357337952, -0.05780668556690216, -0.0005724170478060842, -0.022259481251239777, -0.06800186634063721, -0.04210610315203667, -0.024791285395622253, 0.05658326297998428, 0.097873754799366, -0.022259481251239777, -0.050160299986600876, 0.00500838365405798, 0.015420213341712952, 0.01475752703845501, 0.01480000652372837, -0.007799314800649881, -0.0010391651885583997, -0.04149439185857773, 0.0014740534825250506, -0.05627740919589996, -0.020560285076498985, 0.0015568893868476152, 0.034153860062360764, 0.0029247431084513664, -0.013788984157145023, 0.015148342587053776, 0.0074722194112837315, 0.014256264083087444, -0.03765420615673065, -0.03202986717224121, -0.06042344868183136, 0.028614480048418045, -0.03315133601427078, 0.0758521556854248, -0.04866500571370125, 0.0025169358123093843, 0.02485925331711769, -0.046490032225847244, -0.0023130320478230715, -0.05576764792203903, -0.02440047077834606, 0.0547141470015049, -0.04349944740533829, 0.006482436787337065, -0.003124398645013571, 0.028648464009165764, -0.009685423225164413, -0.0362948514521122, 0.008351554162800312, -0.0758521556854248, -0.08033803850412369, 0.018742144107818604, -0.01321975328028202, -0.054816097021102905, 0.04166431352496147, 0.03355914354324341, 0.013517113402485847, 0.07897868007421494, 0.04750955104827881, 0.00028063301579095423, -0.055121954530477524, -0.04346546158194542, -0.0747646763920784, 0.05247120559215546, 0.05518992245197296, -0.0003225819382350892, 0.021222971379756927, 0.0013678537216037512, 0.001847876817919314, 0.05124778300523758, 0.010509533807635307, 0.014137320220470428, 0.02705121785402298, -0.023720791563391685, 0.028580496087670326, -0.04693182557821274, 0.04380530118942261, -0.01346613746136427, -0.016754083335399628, 0.03248864784836769, 0.0037679695524275303, 0.0053737107664346695, -0.0037446056958287954, -0.022361433133482933, -0.0058707259595394135, -0.009931807406246662, -0.012081291526556015, -0.03170701861381531, -0.0027803112752735615, -0.017773602157831192, 0.010067743249237537, -0.05063607543706894, 0.03765420615673065, -0.020815163850784302, -0.011112748645246029, -0.045028723776340485, -0.07027879357337952, 0.007106891833245754, 0.038707710802555084, -0.015003910288214684, -0.046456050127744675, 0.054204389452934265, 0.03201287239789963, 0.009311600588262081, -0.017238354310393333, -0.010849373415112495, 0.037552256137132645, -0.01101929321885109, 0.015581637620925903, 0.004273480735719204, 0.012769466266036034, 0.010764413513243198, -0.022072570398449898, -0.025878772139549255, 0.014910454861819744, -0.015326757915318012, -0.04458693042397499, -0.02693227492272854, -0.030619531869888306, -0.06324411928653717, -0.061714839190244675, -0.030653515830636024, 0.08563953638076782, 0.00535671878606081, -0.02601470798254013, -0.022259481251239777, -0.0362948514521122, 0.020917115733027458, 0.011495068669319153, -0.03449369966983795, 0.012973370030522346, 0.013117801398038864, -0.05386454984545708, 0.010144206695258617, 0.03456166759133339, -0.000294438999844715, 0.04536856338381767, -0.02273525670170784, -0.0003870983491651714, 0.025997715070843697, -0.015598629601299763, 0.02720414660871029, 0.05172355845570564, -0.0610351599752903, 0.015063382685184479, -0.02485925331711769, -0.042445942759513855, 0.045844338834285736, 0.033780038356781006, 0.028648464009165764, 0.023924695327878, -0.02920919843018055, 0.034969475120306015, 0.003973997198045254, -0.040712762624025345, 0.048461101949214935, -0.006567396689206362, 0.021834682673215866, 0.06076328828930855, 0.0405428446829319, -0.009736399166285992, 0.03799404576420784, 0.03687257692217827, -0.015887493267655373, -0.0017225610790774226, 0.04292171820998192, -0.04377131909132004, 0.03340621665120125, -0.0384698212146759, 0.06555502116680145, -0.009778879582881927, 0.016550179570913315, 0.01001676730811596, 0.011036285199224949, -0.012616538442671299, 0.023686807602643967, 0.004634560085833073, 0.029956845566630363, -0.03282848745584488, -0.038435839116573334, 0.013058329932391644, -0.09488316625356674, -0.010849373415112495, 0.01539472583681345, -0.012047307565808296, -0.03972722962498665, 0.025267060846090317, 0.015352245420217514, -0.0068307723850011826, -0.011376124806702137, 0.048766955733299255, -0.03094237856566906, 0.008878304623067379, -0.049922410398721695, 0.04176626354455948, 0.046727921813726425, -0.022667288780212402, 0.00219621229916811, -0.0379260778427124, -0.040135037153959274, -0.030925387516617775, 0.0151228541508317, -0.001103416085243225, 0.0016641512047499418, 0.017391283065080643, -0.005441678687930107, -0.051111850887537, -0.03717843443155289, 0.013194265775382519, -0.03976121172308922, -0.008232610300183296, 0.06803585588932037, 0.07571621984243393, 0.007323539350181818, -0.055053986608982086, 0.029124237596988678, 0.02747601643204689, 0.008576697669923306, 0.024179574102163315, -0.048495084047317505, -0.05202941596508026, 0.02470632642507553, -0.013704024255275726, -0.027985775843262672, 0.037008512765169144, 0.008058442734181881, -0.05610748752951622, -0.03179197758436203, -0.002769691403955221, -0.07524044811725616, 0.0034153861925005913, -0.05610748752951622, 0.01390792801976204, 0.0009032294619828463, 0.0026868553832173347, 0.03369507938623428, -0.021222971379756927, 0.01165649201720953, 0.03272653743624687, 0.003513090079650283, 0.022905176505446434, 0.011172221042215824, 0.059981659054756165, -0.016626643016934395, 0.06603080034255981, -0.021596794947981834, -0.044145140796899796, -0.09766984730958939, -0.01838531345129013, -0.03908153250813484, -0.01930287852883339, -0.0018160168547183275, -0.028427567332983017, 0.0281726885586977, 0.008559705689549446, 0.00013354627299122512, 0.04193618521094322, -0.06219061464071274, -0.0014124575536698103, 0.018198400735855103, 0.03440874069929123, -0.008678649552166462, 0.009218144230544567, -0.03286247327923775, 0.023075096309185028, -0.002875891048461199, -0.024689333513379097, 0.0003252369351685047, 0.013670040294528008, 0.057976607233285904, -0.007960738614201546, -0.021104028448462486, 0.03287946432828903, -0.018351329490542412, -0.05260714143514633, -0.030109772458672523, 0.033474184572696686, -0.017161890864372253, -0.03762022405862808, 0.08128958940505981, -0.11180716753005981, 0.08774653822183609, -0.018861087039113045, -0.053966499865055084, 0.02720414660871029, 0.030007820576429367, -0.00188823277130723, 0.0062105655670166016, 0.012726986780762672, -0.016635140404105186, -0.01756969839334488, 0.0028440312016755342, 0.010917341336607933, 0.03969324380159378, 0.04975249245762825, -0.026728371158242226, -0.031129291281104088, 0.03615891560912132, -0.01841929741203785, -0.048189230263233185, -0.055665697902441025, -0.030126765370368958, -0.0063932291232049465, -0.014630086719989777, 0.004468888510018587, 0.028563503175973892, -0.005577614530920982, 0.011061773635447025, -0.05586960166692734, -0.02966798096895218, 0.03155409172177315, -0.015929972752928734, 0.0026103914715349674, -0.05206339806318283, -0.029277166351675987, 0.01938783936202526, -0.026099666953086853, 0.049616556614637375, -0.02027142234146595, 0.027560977265238762, 0.08815434575080872, 0.013644552789628506, -0.0431596077978611, -0.009252128191292286, -0.0004978116485290229, 0.008997248485684395, 0.023482903838157654, 0.05488406494259834, 0.011461084708571434, 0.0004699341952800751, -0.0013901556376367807, -0.03242067992687225, 0.012336171232163906, 0.1162930503487587, -0.04581035301089287, 0.01592147722840309, 0.036634691059589386, -0.0018255749018862844, 0.01796051301062107, 0.001341303694061935, 0.04570840299129486, -0.009761887602508068, -0.004621816333383322, -0.01622733287513256, 0.03680460900068283, 0.008920785039663315, -0.020509308204054832, 0.00820712186396122, -0.04720369726419449, 0.054782114923000336, 0.04237797483801842, -0.04285375028848648, 0.033508166670799255, -0.05070404335856438, 0.030704490840435028, 0.0082283616065979, -0.04363538324832916, 0.026966258883476257, -0.05916604399681091, 0.01938783936202526, -0.008428017608821392, 0.03199588134884834, 0.09257225692272186, 0.014052360318601131, 0.049038827419281006, 0.07326938211917877, 0.001327497768215835, -0.01389093603938818, -0.027951791882514954, 0.05576764792203903, -0.009107696823775768, -0.06032149866223335, -0.010305630043148994, 0.032233770936727524, 0.0071791079826653, -0.003508842084556818, 0.020016541704535484, 0.018589217215776443, -0.009974286891520023, 0.022293465211987495, 0.0015144094359129667, 0.05984572321176529, 0.0032730784732848406, 0.061069145798683167, 0.025810804218053818, 0.03318531811237335, -0.02650747448205948, 0.006558900699019432, 0.042751800268888474, -0.01383146457374096, 0.05328682065010071, -0.036940544843673706, 0.015224806033074856, -0.00017894669144880027, 0.024944214150309563, -0.0568891204893589, 0.019863614812493324, 0.030143756419420242, 0.04027097299695015, 0.03456166759133339, -0.015258789993822575, 0.022021595388650894, -0.06902138888835907, -0.002570035634562373, -0.06776398420333862, -0.023177048191428185, -0.04852906987071037, -0.010390589945018291 ]
7,389
uuid
_netstat_getnode
Get the hardware address on Unix by running netstat.
def _netstat_getnode(): """Get the hardware address on Unix by running netstat.""" # This works on AIX and might work on Tru64 UNIX. return _find_mac_under_heading('netstat', '-ian', b'Address')
()
[ 0.06237024441361427, 0.02690211310982704, 0.05748520791530609, -0.013545661233365536, 0.01825009100139141, 0.03357604146003723, -0.01957455649971962, -0.016401000320911407, -0.0012782374396920204, -0.09357257187366486, 0.02107102982699871, 0.02033139392733574, 0.01091393269598484, -0.023754360154271126, 0.08118796348571777, 0.02127743884921074, -0.014741119928658009, -0.004005645867437124, 0.034023262560367584, -0.01769966445863247, -0.006179401651024818, 0.01501633320003748, 0.038736291229724884, -0.07554609328508377, 0.001748035429045558, 0.04971042647957802, 0.06570720672607422, -0.021965472027659416, -0.003134853206574917, -0.037394627928733826, -0.0451694056391716, -0.030927110463380814, -0.012737222015857697, -0.0659136176109314, 0.03729142248630524, 0.05277217924594879, 0.007456564344465733, 0.02530243620276451, -0.052187349647283554, -0.03818586468696594, 0.001703958259895444, -0.07561489194631577, -0.02502722293138504, 0.027607347816228867, 0.03142593428492546, -0.030376683920621872, 0.046717483550310135, -0.013881077989935875, -0.03680979833006859, -0.0033326628617942333, -0.03818586468696594, 0.000551501929294318, -0.022945920005440712, 0.01694282703101635, -0.035227321088314056, -0.015308747999370098, -0.011885780841112137, -0.053873032331466675, -0.01067312154918909, 0.06818412989377975, -0.035708945244550705, 0.03705060854554176, -0.06629204005002975, 0.01210079062730074, -0.029396235942840576, -0.02569805458188057, -0.025336837396025658, -0.053391408175230026, -0.031185122206807137, 0.014904527924954891, 0.06673926115036011, -0.0012793125351890922, -0.03445328399538994, -0.01290063001215458, 0.05449226126074791, 0.00750386668369174, 0.004945241380482912, -0.02033139392733574, -0.040146760642528534, 0.04214205965399742, 0.05545550957322121, 0.07465164363384247, 0.029791854321956635, 0.007723177317529917, 0.05428585037589073, -0.024339187890291214, 0.04998563975095749, 0.04393094405531883, -0.0912332534790039, -0.03715381398797035, -0.021999875083565712, 0.005577372387051582, -0.0036766796838492155, 0.034780099987983704, -0.0024038173723965883, -0.035141315311193466, 0.009021840989589691, 0.03266439586877823, 0.005551571026444435, -0.059136487543582916, -0.02456280030310154, 0.06808092445135117, -0.06942258775234222, 0.024597201496362686, 0.01148156076669693, 0.03866748884320259, -0.021208636462688446, 0.06735848635435104, -0.04678628593683243, -0.01133535336703062, -0.0301186703145504, -0.001926494063809514, -0.0014405703404918313, -0.022326691076159477, 0.0630582794547081, 0.041178811341524124, -0.002605927176773548, 0.037394627928733826, 0.0069405389949679375, -0.033834051340818405, -0.030909908935427666, 0.0423140674829483, -0.017854472622275352, -0.05315059423446655, -0.022928720340132713, 0.041178811341524124, 0.0006353560602292418, -0.02523363195359707, 0.0052419560961425304, -0.037635438144207, 0.03115072101354599, 0.006652425043284893, 0.0014491707552224398, 0.09983367472887039, -0.012806025333702564, 0.010716123506426811, -0.049744829535484314, 0.020382994785904884, -0.010707522742450237, -0.019419748336076736, 0.005659076385200024, -0.0001788618537830189, -0.01617738977074623, -0.04620145633816719, -0.032217174768447876, 0.022567501291632652, -0.02974025346338749, -0.019522953778505325, 0.057726018130779266, -0.046063851565122604, 0.028587795794010162, -0.03417807072401047, 0.010612918063998222, -0.0012406106106936932, -0.027074122801423073, 0.04554782435297966, 0.010423708707094193, -0.029998265206813812, 0.008961637504398823, -0.04657987505197525, -0.06842494010925293, -0.011885780841112137, 0.01635799929499626, -0.0921965017914772, -0.0004703354788944125, 0.006334209349006414, -0.02134624309837818, -0.030462687835097313, 0.03271599858999252, -0.01854250580072403, -0.036672189831733704, 0.0061536007560789585, -0.02184506691992283, -0.00336276413872838, 0.04021556302905083, -0.030049867928028107, -0.024442393332719803, 0.0004012633580714464, -0.011447158642113209, 0.004035747144371271, 0.02249869890511036, 0.04743991792201996, 0.010922533459961414, -0.0015900026774033904, 0.012763023376464844, 0.046820685267448425, 0.048609573394060135, -0.012857628054916859, 0.012160994112491608, 0.05063927173614502, 0.013313449919223785, 0.045685432851314545, -0.01845650188624859, 0.02418438158929348, 0.013494059443473816, 0.007654373999685049, 0.05356341600418091, 0.05662516504526138, 0.003807835979387164, 0.004953842144459486, 0.034573689103126526, 0.0329568088054657, -0.05521469563245773, 0.06952579319477081, -0.033644843846559525, 0.002287711715325713, 0.014852925203740597, 0.015884974971413612, -0.008049992844462395, 0.029895059764385223, -0.00034992958535440266, -0.027160126715898514, -0.040043555200099945, 0.07857343554496765, 0.011963183991611004, -0.033730845898389816, -0.06226704269647598, 0.0866234302520752, -0.004704429768025875, -0.02626568265259266, -0.04386214166879654, -0.053976237773895264, 0.08634822070598602, -0.0268161091953516, 0.017484653741121292, -0.025096025317907333, -0.025835661217570305, 0.029791854321956635, 0.053873032331466675, -0.009056242182850838, 0.07726617157459259, -0.03445328399538994, 0.023874765262007713, 0.06013413518667221, 0.020382994785904884, -0.00020036290516145527, -0.016538606956601143, -0.024803610518574715, 0.04929760843515396, -0.01854250580072403, -0.08738026767969131, -0.013812274672091007, 0.07850463688373566, -0.010707522742450237, 0.08029352128505707, 0.005573072005063295, 0.006183702033013105, 0.057244397699832916, -0.042382869869470596, -0.020090581849217415, -0.03357604146003723, -0.005852585658431053, 0.0508112832903862, -0.04754312336444855, -0.011163345538079739, -0.04111000895500183, -0.05562751740217209, 0.01732124574482441, 0.0005746155511587858, 0.03350723534822464, 0.019608957692980766, -0.03306001424789429, -0.01890372298657894, -0.06787451356649399, -0.023874765262007713, -0.015583961270749569, 0.006136399693787098, 0.08600419759750366, -0.02420158125460148, -0.01873171515762806, 0.08806829899549484, 0.0025027222000062466, -0.008935836143791676, -0.011137544177472591, 0.011206347495317459, -0.060925375670194626, 0.002405967563390732, 0.0108279287815094, 0.021982673555612564, -0.03756663575768471, -0.056590765714645386, 0.009770076721906662, -0.018370497971773148, -0.004123901482671499, -0.08332087099552155, -0.03030787967145443, 0.019075730815529823, -0.04403414949774742, -0.02155265212059021, -0.0013782173627987504, -0.02900061570107937, -0.04176364094018936, -0.07568369805812836, -0.03443608060479164, 0.041075605899095535, -0.007688775658607483, 0.007581270299851894, 0.018800517544150352, -0.00019767528283409774, 0.0066352239809930325, -0.05600593611598015, 0.016521407291293144, -0.09921444207429886, 0.0014061686815693974, -0.03219997137784958, 0.07355079054832458, 0.06003093346953392, -0.018473701551556587, 0.020761413499712944, 0.0017824370879679918, -0.06608562916517258, -0.010965535417199135, 0.032131168991327286, 0.03407486528158188, 0.009417460300028324, 0.03839227557182312, -0.011309552006423473, 0.05022645369172096, 0.0028488892130553722, 0.060650162398815155, -0.0004138952062930912, 0.05703798681497574, 0.0423140674829483, 0.011567564681172371, -0.010587116703391075, 0.012031987309455872, -0.0020189485512673855, -0.0009213199955411255, 0.04946961626410484, 0.07107387483119965, -0.021036626771092415, -0.04334611818194389, 0.004261508118361235, -0.007357659284025431, 0.012203996069729328, 0.005985892377793789, 0.029155423864722252, 0.021759063005447388, -0.09770077466964722, -0.08442172408103943, -0.01021729875355959, 0.008978838101029396, -0.02841578796505928, -0.023135129362344742, 0.014500307850539684, -0.001837264746427536, 0.034109264612197876, -0.006751329638063908, -0.035605739802122116, 0.007645773235708475, 0.008484314195811749, 0.06763370335102081, -0.04561662673950195, 0.004553922452032566, -0.01797487773001194, 0.04055958241224289, -0.06151020526885986, 0.008961637504398823, 0.05889567732810974, 0.03338683024048805, -0.042486075311899185, -0.023651154711842537, 0.0005041996482759714, -0.03828907012939453, -0.046545471996068954, -0.02024538815021515, 0.021759063005447388, 0.02457999996840954, 0.1269422024488449, -0.03921791538596153, -0.03632817417383194, -0.01776846870779991, 0.0003434792743064463, -0.018834920600056648, -0.01049251202493906, -0.01768246293067932, -0.009004639461636543, -0.03567454218864441, -0.015489356592297554, -0.05328820273280144, -0.03567454218864441, -0.024958418682217598, 0.013115640729665756, -0.010707522742450237, -0.032870806753635406, -0.0012567363446578383, -0.021483849734067917, -0.003061749506741762, -0.007632873021066189, 0.023461945354938507, -0.04788713902235031, 0.011455759406089783, -0.026386089622974396, 0.08449053019285202, -0.01275442261248827, 0.021673059090971947, 0.018181288614869118, -0.015377551317214966, -0.016323598101735115, -0.03087550774216652, -0.02746974118053913, 0.030617495998740196, -0.0026854812167584896, 0.02222348563373089, -0.010698922909796238, 0.021294640377163887, 0.0067857312969863415, -0.010535514913499355, -0.007370559964329004, -0.05569631978869438, -0.04647666960954666, -0.0010315128602087498, -0.010329104028642178, -0.037497829645872116, 0.001275012269616127, 0.030841106548905373, 0.031374331563711166, 0.07864224165678024, 0.06470955908298492, 0.008127396926283836, -0.04489419236779213, -0.0574164055287838, -0.04055958241224289, 0.041454024612903595, 0.05889567732810974, 0.0338856540620327, 0.00250702234916389, -0.004880738444626331, -0.0019555205944925547, 0.04093800112605095, 0.02222348563373089, 0.020641008391976357, 0.031752750277519226, -0.03622496873140335, 0.034952107816934586, -0.03462529182434082, 0.0498824380338192, -0.03705060854554176, -0.025749657303094864, 0.0019619709346443415, 0.0051430510357022285, 0.01044951006770134, -0.00355197349563241, 0.014216494746506214, 0.0062998076900839806, 0.03921791538596153, 0.001903917989693582, -0.055489908903837204, -0.023031925782561302, -0.019213339313864708, -0.009847480803728104, -0.05985892191529274, 0.03115072101354599, -0.011464360170066357, -0.00016004843928385526, -0.08449053019285202, -0.06009973585605621, 0.014087487943470478, 0.016899826005101204, -0.0031327030155807734, -0.026970917358994484, 0.04338051751255989, 0.010337704792618752, -0.010518313385546207, -0.020090581849217415, -0.06508798152208328, 0.06240464746952057, 0.019557354971766472, 0.009735675528645515, -0.01500773336738348, -0.02972305193543434, 0.015377551317214966, -0.06415913254022598, -0.007766179274767637, 0.005289258435368538, -0.006953439675271511, -0.02843298949301243, -0.04688949137926102, -0.04203885421156883, -0.03245798498392105, -0.05521469563245773, -0.0072458540089428425, 0.06863135099411011, 0.011025738902390003, -0.009460462257266045, -0.019247740507125854, -0.03945872560143471, -0.00940885953605175, -0.015652764588594437, -0.016796620562672615, -0.009950686246156693, 0.013304850086569786, -0.01600538194179535, -0.007202851586043835, 0.06264545768499374, -0.006514818407595158, 0.039665136486291885, -0.009193848818540573, -0.026403289288282394, 0.02511322684586048, -0.010157096199691296, 0.02428758703172207, 0.06254225224256516, -0.015403352677822113, -0.02605927363038063, -0.00209205225110054, -0.046923890709877014, 0.008776728995144367, 0.026764506474137306, 0.03705060854554176, 0.07079865783452988, 0.00878962967544794, 0.012014786712825298, 0.033558838069438934, -0.032148368656635284, 0.035915352404117584, 0.02664410136640072, 0.011971784755587578, 0.04169483482837677, 0.021776262670755386, -0.03815146163105965, 0.03539932891726494, 0.02812337316572666, -0.000375999603420496, -0.026489293202757835, 0.05438905581831932, -0.02399517223238945, 0.055386703461408615, -0.030841106548905373, 0.056590765714645386, -0.01416489202529192, -0.008742326870560646, 0.0059944926761090755, 0.007116847671568394, 0.034573689103126526, 0.034952107816934586, 0.013924079947173595, 0.002172681037336588, -0.07410121709108353, -0.04303650185465813, 0.01929934322834015, -0.07829822599887848, 0.0197465643286705, -0.017080433666706085, -0.04468778148293495, 0.012307201512157917, 0.027332134544849396, 0.009116445668041706, -0.002489821519702673, -0.03784184902906418, 0.002444669371470809, -0.015644164755940437, 0.01185997948050499, -0.03963073715567589, 0.04272688552737236, 0.033266425132751465, 0.010965535417199135, 0.015566760674118996, -0.0155237577855587, -0.006166500970721245, -0.03379965201020241, -0.0035326224751770496, 0.011894380673766136, 0.03794505447149277, -0.0023006123956292868, -0.014801322482526302, -0.05335700511932373, -0.03601855784654617, 0.013605864718556404, -0.05129290372133255, -0.0020092730410397053, 0.062163837254047394, 0.061957426369190216, -0.018284492194652557, -0.021397845819592476, -0.0033928656484931707, 0.03650018200278282, 0.012126591987907887, 0.024958418682217598, -0.028106173500418663, -0.0555243119597435, 0.0010100118815898895, -0.0023780162446200848, 0.0433117151260376, -0.006338509730994701, 0.031030315905809402, -0.07458284497261047, -0.05108649656176567, -0.016392400488257408, -0.05497388541698456, 0.0018802668200805783, -0.047199103981256485, 0.02530243620276451, 0.03539932891726494, -0.02475200966000557, 0.012909230776131153, -0.01684822328388691, 0.005637575406581163, -0.011601966805756092, 0.033730845898389816, 0.037119414657354355, -0.0065406193025410175, 0.0978383794426918, -0.036947403103113174, 0.04840316250920296, -0.021036626771092415, -0.03060029447078705, -0.05610914155840874, -0.050398461520671844, -0.0545954667031765, -0.003207956673577428, 0.0032939608208835125, -0.036672189831733704, -0.002221058588474989, 0.01947135105729103, 0.010122694075107574, 0.05535230413079262, -0.02568085491657257, 0.0023973670322448015, -0.006764230318367481, 0.055008288472890854, 0.024803610518574715, 0.013872477225959301, -0.0018222139915451407, 0.04547902196645737, 0.020847417414188385, 0.005336560774594545, -0.01358866412192583, 0.006033194717019796, 0.03192475810647011, -0.0025543246883898973, 0.01750185526907444, 0.010853730142116547, -0.039768341928720474, -0.05514589324593544, -0.05184333026409149, 0.018783317878842354, -0.0004482968943193555, -0.04104120284318924, 0.07774779945611954, -0.0687689557671547, 0.046717483550310135, 0.023375941440463066, -0.06123499199748039, 0.047852735966444016, 0.021776262670755386, 0.02155265212059021, 0.012917830608785152, -0.007576969917863607, -0.0030811005271971226, 0.011189146898686886, -0.018404899165034294, 0.020967824384570122, 0.05683157593011856, 0.05590273067355156, -0.04038757085800171, -0.05287538096308708, 0.015601161867380142, -0.013803673908114433, -0.058207642287015915, -0.062163837254047394, -0.03894270211458206, 0.006428814027458429, 0.014010083861649036, 0.016254793852567673, -0.011472960002720356, -0.010337704792618752, -0.0188177190721035, -0.0254056416451931, -0.013889678753912449, 0.05920528993010521, -0.0150593351572752, 0.0012330851750448346, -0.01854250580072403, -0.02869100123643875, 0.013709069229662418, -0.005362361669540405, 0.04950401932001114, -0.023754360154271126, -0.015945179387927055, 0.09529265761375427, 0.004401265177875757, -0.02445959486067295, -0.020950622856616974, 0.00879392959177494, 0.02136344276368618, 0.04207325354218483, 0.02568085491657257, 0.0034272673074156046, -0.0027757855132222176, -0.03846107795834541, -0.029981063678860664, 0.01909293234348297, 0.10368666052818298, -0.048231154680252075, -0.0230491254478693, 0.003001546487212181, -0.0016459054313600063, 0.018422098830342293, -0.005749380681663752, 0.0395275317132473, -0.0035885253455489874, 0.02475200966000557, -0.030617495998740196, 0.05046726390719414, -0.01279742456972599, -0.042382869869470596, 0.004343212116509676, -0.021243037655949593, 0.016693415120244026, 0.05211854726076126, -0.0621294341981411, 0.013270447961986065, -0.04637346416711807, 0.05211854726076126, 0.029998265206813812, -0.029895059764385223, -0.00983028020709753, -0.04843756556510925, 0.04162603244185448, 0.006652425043284893, 0.002805887022987008, 0.08669223636388779, 0.020021777600049973, 0.00955506693571806, 0.019798167049884796, -0.010604318231344223, -0.03443608060479164, 0.008080095052719116, 0.051155298948287964, -0.015609762631356716, -0.020847417414188385, 0.006144999992102385, 0.04059398174285889, -0.01657301001250744, 0.032320380210876465, -0.015171141363680363, -0.0007310357177630067, -0.011154744774103165, 0.05332260578870773, 0.027779357507824898, 0.04943521320819855, 0.013631666079163551, 0.053976237773895264, 0.008910034783184528, -0.01133535336703062, -0.03653458505868912, 0.034023262560367584, 0.04176364094018936, -0.04241727292537689, 0.024803610518574715, -0.04664867743849754, -0.013347852043807507, -0.008884234353899956, 0.019832568243145943, -0.017149237915873528, -0.012831826694309711, 0.029413437470793724, 0.054148245602846146, 0.04737111181020737, 0.001108379103243351, 0.01758785918354988, -0.09384778141975403, -0.007185650989413261, -0.0593084953725338, -0.037669841200113297, -0.0423484668135643, 0.0030724999960511923 ]
7,390
uuid
_parse_mac
null
def _parse_mac(word): # Accept 'HH:HH:HH:HH:HH:HH' MAC address (ex: '52:54:00:9d:0e:67'), # but reject IPv6 address (ex: 'fe80::5054:ff:fe9' or '123:2:3:4:5:6:7:8'). # # Virtual interfaces, such as those provided by VPNs, do not have a # colon-delimited MAC address as expected, but a 16-byte HWAddr separated # by dashes. These should be ignored in favor of a real MAC address parts = word.split(_MAC_DELIM) if len(parts) != 6: return if _MAC_OMITS_LEADING_ZEROES: # (Only) on AIX the macaddr value given is not prefixed by 0, e.g. # en0 1500 link#2 fa.bc.de.f7.62.4 110854824 0 160133733 0 0 # not # en0 1500 link#2 fa.bc.de.f7.62.04 110854824 0 160133733 0 0 if not all(1 <= len(part) <= 2 for part in parts): return hexstr = b''.join(part.rjust(2, b'0') for part in parts) else: if not all(len(part) == 2 for part in parts): return hexstr = b''.join(parts) try: return int(hexstr, 16) except ValueError: return
(word)
[ 0.05015147104859352, 0.0950724259018898, -0.040651921182870865, -0.02324889972805977, -0.045920904725790024, -0.08399602770805359, 0.017816465348005295, 0.07311192154884338, -0.025268035009503365, -0.027133330702781677, 0.033248428255319595, 0.05445896089076996, 0.010711031965911388, -0.012451333925127983, 0.03555601090192795, 0.03486373648047447, -0.01428778562694788, 0.04865154251456261, -0.007552527356892824, 0.015730025246739388, 0.003177734324708581, -0.046843938529491425, -0.05049761012196541, 0.019239474087953568, 0.041151899844408035, 0.02322966977953911, 0.02117207460105419, -0.01899910159409046, -0.033633023500442505, -0.04392099753022194, 0.06976592540740967, -0.01627807505428791, 0.03221001476049423, 0.032344624400138855, 0.020152892917394638, -0.016479989513754845, 0.07095818221569061, -0.0561896488070488, -0.02721025049686432, 0.003932506311684847, 0.00943224597722292, -0.07072742283344269, -0.016960736364126205, 0.038036663085222244, -0.018701037392020226, -0.014970445074141026, -0.052959032356739044, 0.041959553956985474, -0.0606125146150589, -0.0011021113023161888, -0.0387866273522377, -0.09584161639213562, 0.022172028198838234, 0.011249467730522156, 0.029210155829787254, -0.014778146520256996, -0.0036753069143742323, -0.009533202275633812, 0.007177544757723808, 0.048228487372398376, -0.022306635975837708, 0.010893715545535088, -0.0004924646927975118, -0.016489604488015175, 0.000585308822337538, -0.023671956732869148, 0.04261336848139763, -0.03726746886968613, -0.058228012174367905, 0.017403023317456245, 0.024537300691008568, 0.042382609099149704, 0.003932506311684847, -0.012855160981416702, 0.040228866040706635, 0.0022595084737986326, 0.01797991804778576, -0.036248285323381424, -0.023498887196183205, 0.02461422048509121, 0.04230568930506706, 0.03745976462960243, 0.05553583428263664, 0.007047743536531925, -0.006028560921549797, 0.011999431997537613, 0.05218983814120293, 0.034094538539648056, -0.09945683181285858, 0.01974906586110592, 0.0326138399541378, -0.06657376885414124, -0.01471084263175726, 0.06276626139879227, -0.06534305959939957, -0.04211338981986046, 0.044190216809511185, 0.009831265546381474, -0.0026921802200376987, -0.06438156962394714, -0.06518922001123428, 0.007711173500865698, -0.11860977113246918, -0.007672713603824377, 0.004689681809395552, -0.032286934554576874, -0.04322872310876846, -0.005466087255626917, -0.032767679542303085, -0.07257349044084549, 0.034094538539648056, -0.03501757234334946, -0.05261289328336716, -0.01891256682574749, 0.07899626344442368, -0.005422820337116718, 0.030960073694586754, -0.018662577494978905, 0.006475654896348715, -0.011807133443653584, 0.018114527687430382, -0.0140474122017622, 0.010489888489246368, -0.014739686623215675, 0.0005032814806327224, 0.03597906604409218, -0.0005811023293063045, -0.00013859019964002073, -0.017335718497633934, 0.025729551911354065, 0.011874438263475895, 0.046036284416913986, 0.02065286785364151, -0.019595226272940636, -0.0449594110250473, -0.04434405639767647, 0.010249515064060688, 0.034094538539648056, -0.036229055374860764, -0.03769052401185036, 0.013133993372321129, 0.035344481468200684, 0.0012379222316667438, -0.049459196627140045, -0.02903708815574646, 0.04057500138878822, -0.025383414700627327, -0.008581324480473995, 0.004886787850409746, -0.010807180777192116, -0.028460191562771797, -0.002320803701877594, -0.02776791714131832, 0.05665116384625435, 0.02421039342880249, -0.008749585598707199, -0.005134372506290674, -0.07395803928375244, 0.01895102672278881, -0.027575617656111717, 0.003783474676311016, -0.004093556199222803, -0.03074854426085949, -0.05445896089076996, 0.040305785834789276, -0.009312059730291367, 0.035440631210803986, 0.011576374992728233, -0.019201014190912247, -0.03028702735900879, -0.059112586081027985, 0.02196049876511097, 0.017306873574852943, 0.023133520036935806, 0.008191919885575771, 0.009941836819052696, -0.029998579993844032, -0.02117207460105419, 0.03617136552929878, -0.006667953450232744, 0.004360370337963104, 0.04849770665168762, 0.008629399351775646, 0.020499030128121376, -0.012432103976607323, 0.034959882497787476, 0.01942215859889984, 0.08115000277757645, 0.028306351974606514, 0.0022775365505367517, 0.03655596077442169, -0.00638912059366703, -0.003788282163441181, 0.010749490931630135, -0.023575806990265846, 0.010624497197568417, 0.034940652549266815, 0.054266661405563354, -0.018758727237582207, -0.045497845858335495, 0.026267986744642258, -0.03444067761301994, -0.060074079781770706, 0.05795879662036896, 0.010912945494055748, -0.09422630816698074, 0.010403353720903397, 0.05265135318040848, -0.051651403307914734, -0.027498697862029076, -0.011932127177715302, -0.020018283277750015, 0.03642135486006737, 0.06753526628017426, -0.005619926378130913, -0.023498887196183205, -0.03259461000561714, 0.06891981512308121, 0.03882508724927902, -0.012710937298834324, -0.040728840976953506, 0.01801837794482708, 0.04215184971690178, 0.0019494269508868456, 0.017720315605401993, -0.017499171197414398, -0.051959078758955, 0.05634348839521408, -0.0036128098145127296, 0.014643537811934948, 0.07561180740594864, -0.08168844133615494, -0.009739923290908337, 0.016095392405986786, -0.006038175895810127, 0.06553535908460617, 0.043767157942056656, -0.043267183005809784, 0.03461374714970589, -0.03249846026301384, -0.010989864356815815, -0.04442097619175911, 0.023537347093224525, -0.004305084701627493, 0.07011206448078156, 0.0012036690022796392, -0.011018709279596806, 0.0075188749469816685, -0.020556719973683357, -0.051189884543418884, -0.08445753902196884, 0.06826599687337875, 0.06891981512308121, -0.009739923290908337, -0.00987453293055296, 0.010124520398676395, -0.016979966312646866, 0.038421258330345154, 0.022518165409564972, 0.038075122982263565, -0.009278407320380211, -0.00815345998853445, 0.0561896488070488, -0.04257490858435631, 0.018383745104074478, -0.011855208314955235, 0.013355136848986149, 0.0705735832452774, -0.020422110334038734, -0.02205664850771427, -0.010134135372936726, -0.08091925084590912, -0.009379363618791103, -0.01897025667130947, -0.00876881554722786, -0.02288353256881237, 0.02590261958539486, -0.01009567640721798, -0.019960593432188034, -0.0198067557066679, -0.008302492089569569, 0.009571662172675133, -0.00428345100954175, -0.011047554202377796, -0.04042116552591324, 0.024941127747297287, 0.047305453568696976, 0.020768247544765472, 0.022768152877688408, 0.015114669688045979, 0.028364041820168495, -0.05245905742049217, -0.0037185740657150745, 0.005499739665538073, -0.005817032419145107, 0.10876408219337463, 0.015076209791004658, 0.04803618788719177, -0.005369937978684902, -0.04657471925020218, -0.041190359741449356, 0.08884195238351822, 0.0017114575020968914, -0.01927793398499489, -0.015172358602285385, 0.049959175288677216, 0.016614599153399467, 0.02461422048509121, 0.08207304030656815, -0.0447671115398407, 0.014182020910084248, -0.05365130677819252, -0.015287738293409348, -0.02990243025124073, 0.01752801612019539, 0.08553441613912582, -0.007292923983186483, -0.028806328773498535, 0.003855586750432849, 0.026114149019122124, 0.07576564699411392, 0.03294074907898903, -0.0272679403424263, 0.02994089014828205, 0.03078700415790081, -0.04880538210272789, -0.03467143699526787, -0.012230190448462963, 0.029652442783117294, 0.03865201771259308, -0.01706649921834469, 0.005499739665538073, 0.011759058572351933, -0.017335718497633934, 0.028921708464622498, -0.04084422066807747, -0.020537490025162697, -0.008961114101111889, -0.10637958347797394, -0.027825606986880302, 0.02592184953391552, 0.014624307863414288, 0.04211338981986046, 0.027940984815359116, 0.06645839661359787, 0.0012667669216170907, -0.09238024055957794, 0.06211244687438011, -0.07538104802370071, 0.011451381258666515, -0.018152987584471703, 0.01427817065268755, 0.029690902680158615, 0.05280519276857376, 0.03030625730752945, -0.013941647484898567, -0.022960452362895012, -0.03082546405494213, 0.05395898595452309, 0.015547340735793114, -0.0027258326299488544, -0.01449931412935257, 0.008480368182063103, -0.026094919070601463, 0.02767176739871502, -0.010845640674233437, -0.04299796372652054, 0.06695836782455444, 0.03467143699526787, -0.05807417631149292, -0.025421874597668648, 0.050843749195337296, 0.002090045250952244, -0.08099616318941116, 0.009403401054441929, 0.01972983591258526, 0.01761455088853836, -0.0022078282199800014, -0.034882962703704834, -0.013143608346581459, 0.016922276467084885, 0.0019181784009560943, 0.00876881554722786, 0.0333445742726326, 0.029748592525720596, -0.0491899810731411, -0.028940938413143158, -0.018229907378554344, -0.003732996294274926, 0.06422773003578186, -0.029190925881266594, 0.07138123363256454, 0.03117160126566887, 0.016133852303028107, 0.0023845024406909943, 0.026056459173560143, -0.03253692016005516, -0.04122881963849068, -0.05465126037597656, -0.029344765469431877, -0.03945967182517052, 0.02674873359501362, -0.0020936508662998676, 0.01717226393520832, -0.010739875957369804, 0.055228155106306076, -0.029267845675349236, -0.015931937843561172, -0.04257490858435631, -0.03315227851271629, -0.005533392075449228, 0.008292877115309238, 0.028364041820168495, -0.017701085656881332, -0.013066689483821392, 0.021691281348466873, 0.03219078481197357, 0.0064420029520988464, 0.036363665014505386, -0.00859574694186449, -0.007047743536531925, 0.001272776280529797, 0.0002508895704522729, 0.033594563603401184, 0.015412732027471066, 0.012384029105305672, -0.013105149380862713, 0.011614834889769554, -0.027537157759070396, -0.04542092606425285, 0.05645886808633804, 0.010403353720903397, 0.04349794238805771, -0.025806471705436707, 0.029729362577199936, 0.014691612683236599, 0.03726746886968613, -0.04799772799015045, 0.022614315152168274, -0.04265182837843895, -0.03438298776745796, -0.025306494906544685, 0.0024313752073794603, 0.01795107312500477, -0.04180571436882019, -0.026575665920972824, -0.020075973123311996, -0.03949813172221184, -0.04472865164279938, -0.030960073694586754, 0.029998579993844032, -0.06495846062898636, -0.04707469418644905, 0.010182210244238377, 0.09845688194036484, -0.026998722925782204, 0.0030527401249855757, 0.011441766284406185, -0.0006562189664691687, 0.040651921182870865, -0.022979682311415672, 0.06676606833934784, -0.011701369658112526, -0.01581656001508236, -0.04369024187326431, 0.024498840793967247, 0.046382419764995575, -0.004040674306452274, 0.0010786749189719558, 0.015489651821553707, -0.021268224343657494, -0.028902478516101837, 0.03165234997868538, 0.037652064114809036, 0.03328688442707062, -0.005312248598784208, 0.04780542850494385, 0.004631992429494858, -0.052535973489284515, -0.00672083580866456, 0.060074079781770706, -0.037652064114809036, -0.040690381079912186, -0.014143561013042927, -0.0059372191317379475, 0.058651071041822433, -0.0017270817188546062, 0.02503727748990059, -0.05630502849817276, 0.0001889934646897018, -0.0510360449552536, -0.007028513588011265, -0.01431663054972887, -0.012210960499942303, 0.05365130677819252, -0.023633496835827827, 0.018604889512062073, 0.05049761012196541, -0.015393502078950405, -0.0029974542558193207, -0.041190359741449356, -0.025248805060982704, -0.02019135281443596, -0.03532525151968002, -0.011787903495132923, -0.008302492089569569, -0.05438204109668732, -0.03472912684082985, 0.037613604217767715, -0.015047364868223667, -0.05330517143011093, -0.04276720806956291, 0.02630644664168358, 0.008182304911315441, -0.023518117144703865, 0.03071008436381817, 0.029210155829787254, -0.057804957032203674, 0.03382532298564911, 0.0074563780799508095, -0.023671956732869148, 0.0025695899967104197, 0.03728669509291649, -0.032806139439344406, -0.011557145044207573, 0.03465220704674721, 0.022633545100688934, 0.021633591502904892, -0.010191825218498707, -0.06941979378461838, -0.010057216510176659, 0.04234414920210838, -0.02376810647547245, -0.0193452388048172, -0.004341140855103731, 0.034921422600746155, -0.04307488352060318, -0.009504358284175396, -0.04411329701542854, 0.00735542131587863, -0.02159513160586357, -0.0035358902532607317, -0.045959364622831345, -0.030902383849024773, -0.059651024639606476, 0.05661270394921303, -0.0016525660175830126, 0.027017952874302864, -0.03419068828225136, 0.021652821451425552, -0.0895342230796814, 0.049113061279058456, -0.006547767203301191, 0.02776791714131832, 0.0063314312137663364, -0.020825937390327454, -0.02067209780216217, 0.0025888197124004364, -0.018701037392020226, 0.0017511190380901098, -0.04672855883836746, -0.00493726646527648, -0.006764103192836046, -0.01277824118733406, -0.05553583428263664, 0.014903141185641289, -0.08868811279535294, -0.08653436601161957, -0.03965197131037712, 0.010268745012581348, -0.038478948175907135, -0.0387866273522377, 0.015595415607094765, 0.009523587301373482, -0.027825606986880302, 0.028248663991689682, -0.0007481616921722889, -0.018249135464429855, 0.009980296716094017, 0.0016537678893655539, 0.04576706513762474, 0.05238213762640953, 0.022748922929167747, 0.01843181997537613, 0.02203741855919361, -0.009754345752298832, 0.03507526218891144, -0.028325581923127174, -0.049882255494594574, -0.044190216809511185, -0.016201157122850418, -0.011835978366434574, 0.040651921182870865, 0.035767536610364914, -0.0657661184668541, 0.01708572916686535, 0.0029469758737832308, 0.02286430262029171, -0.030229339376091957, 0.018326055258512497, 0.0466131791472435, -0.006547767203301191, 0.0797654539346695, -0.03132544085383415, 0.0757271870970726, 0.048113107681274414, -0.031498510390520096, -0.008278454653918743, -0.043728698045015335, -0.06315086036920547, -0.03857509791851044, -0.0029469758737832308, 0.026594895869493484, -0.011460996232926846, 0.017720315605401993, -0.008922654204070568, 0.019008716568350792, -0.025248805060982704, -0.025344954803586006, -0.006403543055057526, -0.026575665920972824, 0.0065093073062598705, -0.04276720806956291, 0.0070237061008811, 0.07449647784233093, -0.0077400184236466885, -0.03372917324304581, 0.029248615726828575, 0.008312107063829899, -0.015258893370628357, 0.016931891441345215, 0.029537063091993332, -0.005634348839521408, 0.004970918409526348, -0.010759105905890465, -0.024710368365049362, -0.021729741245508194, -0.00035845660022459924, -0.05465126037597656, 0.015489651821553707, -0.00004214043292449787, 0.03413299843668938, 0.01361474022269249, -0.02594107948243618, 0.06849675625562668, 0.023979634046554565, -0.008254417218267918, -0.020402880385518074, -0.000006849698365840595, 0.0015648298431187868, 0.027383320033550262, -0.015960782766342163, -0.008408255875110626, 0.02553725242614746, 0.01316283829510212, -0.014605077914893627, 0.019902903586626053, 0.0008695502183400095, -0.011345616541802883, -0.007672713603824377, -0.045497845858335495, -0.016845356673002243, -0.019614456221461296, 0.00876881554722786, -0.011768673546612263, -0.007759248372167349, 0.03617136552929878, -0.0250565055757761, -0.013922418467700481, -0.04676701873540878, -0.008456330746412277, 0.020806707441806793, -0.00008871274621924385, 0.03595983609557152, 0.0361136756837368, 0.002523919101804495, 0.027556387707591057, -0.043305642902851105, 0.04669009894132614, 0.003011876717209816, 0.08845735341310501, -0.03347918391227722, -0.0010360087035223842, -0.07680405676364899, -0.021345144137740135, 0.030171649530529976, 0.042421068996191025, 0.01847027987241745, 0.04676701873540878, -0.02988320030272007, -0.029171695932745934, -0.0005447458825074136, -0.03965197131037712, 0.057420358061790466, -0.036305975168943405, 0.04530554637312889, -0.056881923228502274, -0.01030720490962267, 0.02511419542133808, 0.011114859022200108, 0.01897025667130947, -0.020768247544765472, 0.00858613196760416, 0.04565168544650078, 0.017739545553922653, -0.03657519072294235, -0.08007313311100006, -0.02240278571844101, 0.020633639767766, 0.030133189633488655, 0.03286382928490639, -0.002612857148051262, -0.04665163904428482, -0.023671956732869148, 0.11045631021261215, 0.008393833413720131, -0.05761265754699707, -0.005244944244623184, -0.003651269478723407, 0.037132859230041504, -0.005619926378130913, -0.04180571436882019, 0.043382562696933746, 0.027479467913508415, -0.04776696860790253, -0.025171885266900063, 0.022979682311415672, 0.03419068828225136, 0.005730498116463423, 0.058766450732946396, 0.00440363772213459, 0.07330422103404999, 0.0055430070497095585, 0.08607284724712372, -0.024287311360239983, 0.06103557348251343, -0.005081490147858858, -0.013547435402870178, 0.04134419560432434, 0.020806707441806793, 0.020575949922204018, 0.004600743763148785, 0.0683429166674614, 0.08822659403085709, 0.01626846008002758, 0.008917847648262978, -0.02332581952214241, 0.02380656637251377, 0.013970492407679558, 0.033633023500442505, -0.046036284416913986, -0.012249420396983624, -0.012297495268285275, 0.02903708815574646, 0.05549737438559532, 0.004913229029625654, -0.0438440777361393, -0.00428345100954175, 0.024902667850255966, -0.03707516938447952, -0.05111296474933624, 0.04865154251456261, -0.036286745220422745, -0.020902857184410095, -0.04092114046216011, -0.03430606797337532, 0.03034471720457077, 0.022229718044400215 ]
7,391
uuid
_random_getnode
Get a random node ID.
def _random_getnode(): """Get a random node ID.""" # RFC 4122, $4.1.6 says "For systems with no IEEE address, a randomly or # pseudo-randomly generated value may be used; see Section 4.5. The # multicast bit must be set in such addresses, in order that they will # never conflict with addresses obtained from network cards." # # The "multicast bit" of a MAC address is defined to be "the least # significant bit of the first octet". This works out to be the 41st bit # counting from 1 being the least significant bit, or 1<<40. # # See https://en.wikipedia.org/wiki/MAC_address#Unicast_vs._multicast import random return random.getrandbits(48) | (1 << 40)
()
[ 0.00332992454059422, 0.010260464623570442, 0.02469729818403721, -0.004825168289244175, 0.0446166917681694, 0.008589057251811028, -0.0223083458840847, 0.04485730826854706, 0.025367580354213715, -0.059087902307510376, -0.0013470082776620984, 0.0686093345284462, 0.02715499885380268, 0.06372831016778946, 0.006612585857510567, -0.0022536071483045816, -0.017616376280784607, 0.028461188077926636, 0.05162886902689934, -0.021603692322969437, -0.020228754729032516, 0.056853629648685455, 0.012795504182577133, -0.024353565648198128, 0.05008206516504288, 0.03681392967700958, 0.014161847531795502, 0.008670694194734097, 0.020486555993556976, -0.0201600082218647, -0.0010897447355091572, -0.08077752590179443, 0.014548548497259617, 0.011291666887700558, -0.011652587912976742, 0.00225790380500257, 0.01603519916534424, 0.024095764383673668, -0.09913293272256851, -0.045097921043634415, 0.06352207064628601, -0.034631215035915375, 0.0024684409145265818, -0.015579750761389732, -0.010037037543952465, -0.035748351365327835, 0.0639001801609993, 0.004305270500481129, -0.08077752590179443, -0.042863648384809494, -0.010320617817342281, 0.002210640348494053, 0.004378313664346933, 0.018991312012076378, -0.031382929533720016, -0.005297802854329348, -0.017307015135884285, -0.0454760305583477, 0.011506500653922558, 0.09913293272256851, -0.0011386193800717592, 0.04898211732506752, -0.0317438505589962, -0.004537290893495083, 0.019781900569796562, 0.0032547328155487776, -0.053553782403469086, 0.018561644479632378, -0.0360233411192894, 0.05943163484334946, 0.03189852833747864, 0.019438166171312332, -0.0022922770585864782, 0.024370752274990082, 0.08119000494480133, 0.018458524718880653, 0.004006651230156422, -0.04884462431073189, -0.018630390986800194, 0.03822323679924011, 0.03598896786570549, 0.02633003704249859, 0.07156544923782349, -0.013955607078969479, 0.028169013559818268, -0.04001065716147423, 0.03435622900724411, 0.02727530524134636, -0.0454760305583477, -0.0823587030172348, -0.008309773169457912, -0.015682870522141457, -0.04939459636807442, -0.0020376991014927626, -0.0030463440343737602, -0.046129122376441956, 0.043688610196113586, 0.03612646088004112, 0.0613221749663353, -0.007510591298341751, 0.0022256786469370127, 0.05365690216422081, -0.09913293272256851, 0.01061279233545065, 0.006157137919217348, 0.009151921607553959, -0.043516743928194046, 0.09466438740491867, -0.0368826761841774, 0.01561412401497364, -0.04808840900659561, -0.012391616590321064, 0.04365423694252968, 0.026828451082110405, 0.02182711847126484, 0.0034137098118662834, 0.012219749391078949, 0.028323695063591003, 0.006518058944493532, -0.045613523572683334, 0.018217910081148148, 0.0051001557148993015, -0.02907991036772728, -0.026776891201734543, 0.0023309472016990185, -0.005761843640357256, 0.0031494642607867718, -0.038670092821121216, -0.02182711847126484, -0.0347343347966671, 0.039185695350170135, 0.035920217633247375, 0.04798528924584389, 0.08854591846466064, -0.02217085286974907, 0.00465330109000206, -0.04936022311449051, 0.01806323044002056, -0.002479182556271553, -0.012125222012400627, 0.0060110511258244514, -0.0030227121897041798, 0.05475685000419617, -0.029320523142814636, 0.025676941499114037, 0.014548548497259617, -0.03977004066109657, -0.012400209903717041, 0.005572789814323187, -0.07328411936759949, 0.04172932729125023, -0.0223083458840847, 0.038841959089040756, 0.040216896682977676, -0.0398731604218483, 0.003920717630535364, -0.011454940773546696, -0.05314129963517189, -0.04530416056513786, -0.07321537286043167, -0.028873668983578682, -0.0193006731569767, 0.03349689394235611, -0.06530948728322983, 0.024027017876505852, 0.011635401286184788, 0.02672533132135868, -0.03457965701818466, 0.020744355395436287, 0.005289209540933371, -0.043516743928194046, -0.0005134529201313853, -0.05781608447432518, -0.05647552013397217, 0.002578006125986576, -0.03250006586313248, -0.0724591612815857, -0.017650749534368515, 0.011944761499762535, 0.07644647359848022, 0.010037037543952465, -0.004898211918771267, 0.02569412812590599, -0.01539929024875164, 0.027429984882473946, 0.07280289381742477, 0.03502650931477547, 0.026398783549666405, 0.00724849384278059, -0.029784563928842545, 0.01181586179882288, 0.03155479580163956, -0.007566448301076889, 0.07239041477441788, -0.009126141667366028, -0.002962558763101697, 0.010097190737724304, 0.03911694511771202, -0.025058219209313393, 0.046988457441329956, 0.05087265372276306, 0.04523541405797005, -0.01677422598004341, 0.035954590886831284, -0.040423136204481125, -0.04276052862405777, 0.023872336372733116, 0.018888192251324654, 0.027120625600218773, 0.0048638381995260715, -0.023837963119149208, 0.006874683313071728, 0.04911961033940315, 0.05984411761164665, 0.00759222824126482, -0.06465639173984528, -0.08895839750766754, 0.05626928061246872, -0.03578272461891174, 0.002747724996879697, 0.002651049755513668, -0.02363172359764576, 0.05829731374979019, -0.006535245571285486, 0.008301179856061935, -0.011145579628646374, -0.04671347141265869, 0.010432331822812557, -0.02835806831717491, -0.02607223577797413, 0.08524607121944427, -0.023013001307845116, 0.06018785014748573, 0.004090436268597841, -0.04104185849428177, -0.052694447338581085, 0.06424391269683838, -0.03241413086652756, 0.02213647961616516, 0.0015188752440735698, -0.07658396661281586, -0.0036564720794558525, 0.09569559246301651, 0.018596017733216286, 0.06922806054353714, 0.07555276900529861, -0.012907217256724834, 0.03256881237030029, -0.06163153424859047, -0.04619786888360977, -0.07404033839702606, -0.03200164809823036, 0.014144660905003548, 0.027601853013038635, 0.05111327022314072, -0.00655243219807744, -0.04987582564353943, 0.034167174249887466, -0.012400209903717041, 0.06582508981227875, -0.021517757326364517, 0.0009291563765145838, -0.05118201673030853, 0.012494736351072788, -0.050253935158252716, -0.027945587411522865, -0.03784513100981712, 0.10257027298212051, -0.009701896458864212, -0.039907533675432205, 0.0789213627576828, 0.006900463253259659, 0.024250444024801254, -0.026192542165517807, 0.03760451823472977, -0.09301446378231049, 0.006595399230718613, 0.028942415490746498, 0.041798073798418045, -0.043379250913858414, -0.04575101658701897, 0.03335940092802048, 0.002676829695701599, 0.01792573556303978, -0.07747767865657806, -0.027859652414917946, -0.007953149266541004, -0.00002282609602843877, 0.019455352798104286, -0.012297089211642742, -0.03157198056578636, -0.05506621301174164, -0.04468544200062752, -0.0058477772399783134, -0.0021687475964426994, 0.015846144407987595, 0.011884608305990696, 0.03418436273932457, 0.03157198056578636, 0.01252051629126072, 0.003508236724883318, 0.00015843995788600296, -0.07431532442569733, -0.03567960485816002, 0.009134734980762005, 0.0398731604218483, 0.024817606434226036, 0.0016671105986461043, 0.0019130953587591648, 0.023356735706329346, -0.06042846292257309, -0.04166058078408241, 0.05204135179519653, 0.01878507249057293, 0.03148604929447174, 0.006436422001570463, 0.01629299856722355, 0.01323376502841711, 0.02552226185798645, 0.05180073902010918, -0.0356108583509922, 0.030179858207702637, 0.036642059683799744, 0.041282471269369125, -0.026226915419101715, -0.018819445744156837, -0.03963254764676094, 0.010114377364516258, -0.010449518449604511, 0.05138825625181198, -0.039048198610544205, -0.04358549043536186, -0.03784513100981712, 0.003705883864313364, -0.013225171715021133, 0.03757014498114586, 0.0025951929856091738, 0.004709158092737198, -0.043551117181777954, -0.03571397811174393, 0.013826706446707249, -0.02290988154709339, -0.02646753005683422, 0.04554477706551552, 0.02813464030623436, 0.03461403027176857, 0.03598896786570549, 0.018028857186436653, -0.05647552013397217, -0.06634069234132767, 0.05688800290226936, 0.04224492609500885, 0.003985167946666479, 0.01689453423023224, 0.021259957924485207, 0.029698630794882774, -0.014771975576877594, 0.06984677910804749, 0.021775558590888977, 0.08125875145196915, -0.051525749266147614, -0.05815982073545456, 0.014153254218399525, -0.03880758583545685, -0.05207572504878044, 0.018200723454356194, -0.01792573556303978, 0.06640943884849548, 0.09597057849168777, -0.07259665429592133, -0.0171609278768301, -0.03074702061712742, -0.04155746102333069, 0.0018400519620627165, 0.023855149745941162, -0.01387826632708311, -0.04812278226017952, -0.016585173085331917, 0.009426909498870373, -0.030265793204307556, -0.04657597839832306, -0.01289003062993288, 0.030231419950723648, 0.04320738464593887, -0.03911694511771202, -0.019145991653203964, 0.02899397537112236, 0.00903161522001028, -0.03715766221284866, 0.029990805312991142, -0.02667376957833767, 0.01082762610167265, 0.03777638450264931, 0.02801433391869068, -0.004056063015013933, 0.0356108583509922, 0.013259544968605042, -0.03349689394235611, -0.03949505463242531, -0.046129122376441956, 0.019885020330548286, 0.07135920971632004, -0.04881025105714798, -0.00005189580042497255, 0.017616376280784607, 0.0242332573980093, 0.03629832714796066, -0.05492871627211571, -0.01947253942489624, -0.039048198610544205, -0.06926243007183075, 0.03674517944455147, 0.005065781995654106, -0.05382876843214035, 0.05434437096118927, -0.002775653265416622, 0.020091261714696884, 0.09225824475288391, 0.052385084331035614, -0.014093100093305111, -0.024680111557245255, -0.03636707365512848, 0.01125729363411665, 0.04496042802929878, 0.031967274844646454, 0.023064561188220978, 0.01104245986789465, 0.023734843358397484, -0.022978628054261208, 0.051525749266147614, -0.005959490779787302, -0.020744355395436287, 0.029062723740935326, -0.014402461238205433, 0.04506354779005051, -0.028615867719054222, 0.01564849726855755, -0.010191718116402626, -0.013654839247465134, -0.010389365255832672, 0.03770763799548149, 0.006801639683544636, 0.0018733511678874493, 0.0028680318500846624, -0.040904365479946136, -0.038876332342624664, -0.0018679803470149636, 0.013835299760103226, 0.023614536970853806, -0.0476071797311306, 0.019524099305272102, -0.020641235634684563, 0.019610034301877022, 0.016095351427793503, 0.02067560888826847, -0.01916317827999592, -0.048741504549980164, 0.026450343430042267, -0.019541285932064056, -0.06073782593011856, -0.026450343430042267, 0.05475685000419617, -0.013302511535584927, -0.01710936799645424, -0.010561231523752213, -0.004971255082637072, 0.024422312155365944, -0.007695348467677832, 0.017599189653992653, -0.004610334523022175, 0.0029238886199891567, -0.008034786209464073, -0.03873883932828903, -0.012168189510703087, 0.010458111763000488, -0.020606862381100655, -0.02976737730205059, -0.006397752091288567, -0.07685896009206772, -0.0238035898655653, 0.0038433775771409273, -0.03366876021027565, 0.06857496500015259, 0.00022624689154326916, -0.04740094020962715, -0.004176369868218899, -0.040766872465610504, 0.02715499885380268, -0.004255858715623617, -0.009108955040574074, -0.029629884287714958, -0.0216552522033453, -0.0313141830265522, 0.00473064137622714, -0.00890271458774805, -0.0007943481323309243, 0.0197303406894207, -0.011076833121478558, -0.008215246722102165, 0.0010048853000625968, -0.029922058805823326, 0.013603279367089272, -0.011944761499762535, 0.00027203335775993764, 0.003914272878319025, -0.017384354025125504, -0.09129579365253448, -0.013714992441236973, 0.03784513100981712, 0.035198379307985306, 0.0716341957449913, 0.008885527960956097, 0.032706305384635925, 0.002575857797637582, -0.017315607517957687, 0.044410452246665955, 0.022239599376916885, -0.03310159966349602, 0.014454021118581295, 0.008765220642089844, -0.0223083458840847, 0.08909589052200317, 0.011437754146754742, 0.0505976676940918, -0.008825374767184258, 0.027034690603613853, -0.02552226185798645, 0.020142821595072746, -0.025625381618738174, 0.06964053958654404, -0.05396626144647598, 0.00400879979133606, -0.021552132442593575, 0.03122824802994728, -0.024216070771217346, -0.00769964512437582, -0.005770436953753233, 0.0049927388317883015, -0.02792840078473091, -0.06321270763874054, -0.015132896602153778, -0.03791387751698494, 0.0261581689119339, -0.0009146551019512117, -0.04795091599225998, -0.025419140234589577, 0.0317438505589962, 0.01387826632708311, -0.005357956048101187, 0.0013180056121200323, 0.02500665932893753, -0.012348649092018604, -0.009719083085656166, -0.08043379336595535, 0.0540350079536438, -0.0201600082218647, -0.03310159966349602, 0.01147212740033865, -0.03640144690871239, 0.0011074685025960207, -0.042863648384809494, 0.007454734295606613, 0.04276052862405777, -0.0017111515626311302, 0.012572077102959156, -0.02474885992705822, -0.09920167922973633, -0.05468810349702835, 0.009684709832072258, -0.029200216755270958, -0.02325361594557762, 0.00724849384278059, 0.06620319932699203, -0.0016810748493298888, -0.05365690216422081, -0.00922066904604435, -0.055684931576251984, 0.006453608628362417, 0.06080657243728638, 0.009744863025844097, -0.0411793515086174, 0.021174024790525436, 0.035920217633247375, -0.015115709975361824, 0.01686016097664833, 0.0326031856238842, -0.02062404900789261, -0.029887685552239418, 0.013998573645949364, -0.03040328621864319, -0.01577739790081978, -0.02359735034406185, -0.0060540176928043365, 0.013173611834645271, -0.00665984908118844, 0.019747527316212654, 0.0625939890742302, 0.031382929533720016, -0.027859652414917946, -0.027687786146998405, 0.029217403382062912, 0.052178844809532166, 0.03684830293059349, -0.02268645353615284, 0.05015081167221069, 0.004717751406133175, -0.06273148208856583, -0.0729403868317604, -0.015682870522141457, -0.01190179493278265, -0.041626207530498505, -0.027911214157938957, -0.04963521286845207, -0.03873883932828903, 0.05585680156946182, 0.006947726476937532, -0.011326040141284466, -0.036057714372873306, -0.02603786252439022, -0.053038179874420166, -0.008309773169457912, -0.004537290893495083, -0.014256373979151249, -0.01806323044002056, 0.037295155227184296, -0.007312944158911705, -0.034682776778936386, -0.02105371654033661, -0.03097044676542282, 0.06610007584095001, -0.005224759224802256, -0.04155746102333069, 0.012752537615597248, -0.04169495403766632, 0.015820365399122238, -0.016714073717594147, 0.03512962907552719, 0.01955847255885601, -0.008799594826996326, 0.05365690216422081, -0.046472858637571335, 0.07899010926485062, -0.04427295923233032, -0.06094406545162201, -0.007605118211358786, -0.0014071617042645812, 0.010526858270168304, 0.030437659472227097, -0.015803176909685135, -0.05341628938913345, -0.03612646088004112, 0.02672533132135868, 0.028890855610370636, 0.029183030128479004, 0.07452156394720078, -0.06661567836999893, -0.009289415553212166, 0.014814942143857479, -0.004636114463210106, -0.035146817564964294, -0.00601534778252244, 0.021672438830137253, 0.011111206375062466, -0.019747527316212654, -0.011515093967318535, -0.026708144694566727, 0.04936022311449051, -0.0317438505589962, -0.005173198878765106, 0.005430999677628279, -0.004554477520287037, -0.05485996976494789, 0.02555663511157036, -0.04791654273867607, -0.028495561331510544, -0.014883688651025295, -0.021259957924485207, 0.038670092821121216, -0.017874175682663918, 0.02345985546708107, 0.08772095292806625, 0.02113964967429638, -0.00668133283033967, -0.05039142817258835, -0.009495656006038189, -0.00797463208436966, 0.012872844003140926, 0.015760211274027824, -0.014849315397441387, -0.007295757532119751, 0.010372177697718143, -0.03353126719594002, 0.016997653990983963, 0.09033333510160446, -0.041798073798418045, 0.030987633392214775, -0.02787684090435505, 0.028254946693778038, -0.020727168768644333, -0.015141489915549755, 0.0004041561624035239, -0.0005352048319764435, -0.01422200072556734, -0.022102106362581253, -0.03456246852874756, 0.008722254075109959, -0.04867275804281235, 0.060325343161821365, -0.01723826862871647, -0.02007407508790493, 0.04922273010015488, -0.01050967164337635, 0.01264941692352295, 0.0073172408156096935, -0.004472840577363968, -0.0317438505589962, -0.015081335790455341, 0.06795623898506165, -0.0780276507139206, 0.03612646088004112, -0.051525749266147614, -0.03298129141330719, 0.031761035323143005, 0.045613523572683334, 0.010054224170744419, 0.014918062835931778, 0.028289321810007095, -0.04410109296441078, -0.009212075732648373, 0.04210743308067322, 0.025058219209313393, 0.019352233037352562, 0.01998814195394516, 0.026089422404766083, 0.016482053324580193, 0.009538622573018074, -0.012168189510703087, -0.0023137605749070644, -0.02492072619497776, -0.007098110392689705, -0.038841959089040756, 0.07170294225215912, 0.013139237649738789, 0.03705454245209694, -0.018475711345672607, 0.03942630812525749, -0.027309678494930267, 0.009083175100386143, 0.036435820162296295, -0.010114377364516258, 0.023356735706329346, -0.0205896757543087, 0.015811771154403687, 0.010415145196020603, 0.025230087339878082, -0.018114790320396423, -0.019695967435836792, 0.04606037586927414, 0.06273148208856583, 0.012683790177106857, -0.028117453679442406, -0.0047478280030190945, -0.05482559651136398, -0.004038876388221979, -0.026450343430042267, -0.009555809199810028, -0.014909468591213226, 0.003491050098091364 ]
7,392
uuid
_unix_getnode
Get the hardware address on Unix using the _uuid extension module.
def _unix_getnode(): """Get the hardware address on Unix using the _uuid extension module.""" if _generate_time_safe: uuid_time, _ = _generate_time_safe() return UUID(bytes=uuid_time).node
()
[ 0.04417745769023895, 0.020121581852436066, 0.04397740960121155, 0.05828090384602547, 0.022988948971033096, -0.003782173851504922, -0.023855827748775482, 0.06674963980913162, -0.03187445178627968, -0.08975525945425034, 0.026423120871186256, 0.03840938210487366, 0.02398919314146042, 0.006759984418749809, 0.052779559046030045, 0.029190463945269585, -0.038542747497558594, 0.03540864959359169, -0.006097322795540094, -0.03980972617864609, -0.0186378862708807, 0.017937714233994484, 0.047211531549692154, -0.009227253496646881, 0.016245635226368904, 0.060314733535051346, 0.03567538037896156, 0.011944584548473358, -0.0026402282528579235, -0.05307963117957115, -0.017154190689325333, -0.01875458098948002, 0.021588606759905815, -0.02020493522286415, 0.03547533228993416, 0.02859031781554222, 0.006134831812232733, 0.048778582364320755, -0.08675452321767807, -0.038309358060359955, 0.057680755853652954, -0.044610898941755295, -0.006284868344664574, -0.014853628352284431, 0.0029694754630327225, -0.02572295069694519, 0.0658494159579277, -0.04621128737926483, -0.03554201498627663, -0.018704568967223167, 0.004446919541805983, 0.009852406568825245, -0.013161548413336277, 0.026139719411730766, -0.06151502579450607, 0.017320897430181503, 0.006889182608574629, -0.0372757725417614, -0.04577784985303879, 0.08802150189876556, -0.028957072645425797, 0.051145825535058975, -0.04014313966035843, 0.024339279159903526, -0.0023484902922064066, 0.008702125400304794, -0.019338056445121765, -0.04171018674969673, -0.03327479586005211, 0.06514924764633179, 0.0762186199426651, -0.004580285400152206, 0.0015910136280581355, -0.021088484674692154, 0.09462311118841171, 0.013444950804114342, -0.006239023990929127, 0.009335613809525967, -0.035608697682619095, 0.015228720381855965, 0.02127186208963394, 0.04507767781615257, -0.00016384210903197527, 0.04374402016401291, 0.04457755386829376, -0.002788181183859706, 0.031040916219353676, 0.055413536727428436, -0.08342037349939346, -0.05501343682408333, -0.02128853276371956, -0.003179943421855569, -0.048611875623464584, 0.046377994120121, 0.0062348563224077225, -0.06714973598718643, 0.011236078105866909, 0.04564448446035385, 0.017987728118896484, -0.04671141132712364, 0.03309141844511032, 0.03770921006798744, -0.08935516327619553, -0.008543753996491432, 0.012594743631780148, 0.008685454726219177, -0.0104692243039608, 0.07055056840181351, -0.02977393940091133, -0.021688630804419518, -0.04661138728260994, 0.0335581973195076, -0.0015180791961029172, 0.0058264234103262424, -0.004726154264062643, 0.012428035959601402, 0.003461262211203575, 0.030824195593595505, 0.010344193316996098, -0.04987885057926178, -0.05251282826066017, -0.013820042833685875, -0.04694480076432228, -0.03322478383779526, -0.02453932724893093, -0.020855093374848366, 0.00244226329959929, -0.004851184785366058, -0.012994840741157532, -0.028073525056242943, -0.006018136627972126, 0.024355949833989143, 0.032674647867679596, 0.04671141132712364, -0.04727821424603462, 0.0052887918427586555, -0.010502565652132034, 0.030357414856553078, -0.023905839771032333, 0.011661182157695293, -0.0015587140806019306, 0.0057722432538867, 0.028123537078499794, -0.03170774504542351, -0.018504520878195763, 0.033574867993593216, -0.027706768363714218, -0.009302272461354733, 0.009785723872482777, -0.03417501598596573, 0.021138496696949005, -0.006180676631629467, 0.0329747200012207, 0.0626152977347374, -0.030524123460054398, 0.003765503177419305, -0.024189241230487823, -0.013628329150378704, -0.0041155884973704815, -0.023855827748775482, -0.059014417231082916, -0.01429515890777111, 0.01875458098948002, -0.086887888610363, 0.012261328287422657, 0.0343417227268219, -0.027606744319200516, -0.04161016270518303, 0.06521593034267426, -0.011552821844816208, -0.042076945304870605, 0.024355949833989143, -0.020071569830179214, 0.011669517494738102, 0.0036217179149389267, -0.030640818178653717, -0.0013461621711030602, -0.0077102165669202805, -0.00561387138441205, 0.059014417231082916, 0.010769297368824482, 0.017771007493138313, 0.031841110438108444, 0.010769297368824482, 0.019788166508078575, 0.039943091571331024, 0.03540864959359169, -0.005576362367719412, 0.04234367609024048, 0.0018629550468176603, 0.0019692310597747564, 0.08068637549877167, -0.0022755558602511883, 0.033758245408535004, 0.02527284063398838, 0.025072790682315826, 0.050012215971946716, 0.03185778111219406, -0.04024316370487213, 0.01704583130776882, 0.03264130651950836, 0.043944068253040314, -0.019054654985666275, 0.020304959267377853, -0.03567538037896156, -0.024305937811732292, 0.034941866993904114, 0.0508790947496891, -0.013986749574542046, 0.008627107366919518, 0.02098846063017845, -0.0017754336586222053, -0.052612852305173874, 0.12042941898107529, 0.016912464052438736, -0.024122558534145355, -0.10309185087680817, 0.061681732535362244, -0.016120605170726776, -0.011044364422559738, -0.024055875837802887, -0.01218631025403738, 0.04204360395669937, -0.06861676275730133, 0.006664128042757511, -0.04701148346066475, -0.03190779313445091, 0.007230932824313641, -0.0003011152148246765, -0.01828780025243759, 0.06748314946889877, -0.07068393379449844, -0.0015910136280581355, 0.04704482480883598, 0.01339493878185749, 0.01396174356341362, -0.010477559641003609, -0.007585186045616865, 0.06254861503839493, 0.0023484902922064066, -0.08495408296585083, 0.014678585343062878, 0.09395628422498703, -0.04194357991218567, 0.10936004668474197, 0.04767831414937973, -0.0026443959213793278, 0.06514924764633179, -0.04577784985303879, -0.053446389734745026, -0.042076945304870605, -0.008768809027969837, 0.04111004248261452, -0.0167790986597538, 0.016420677304267883, -0.033358149230480194, 0.0002714204601943493, 0.018604544922709465, 0.009977437555789948, 0.03012402541935444, -0.004530273377895355, -0.0018671227153390646, -0.024305937811732292, -0.023855827748775482, -0.04211028665304184, -0.05017892271280289, -0.01167785283178091, 0.07981950044631958, -0.014278488233685493, 0.0018191944109275937, 0.03777589276432991, -0.008197835646569729, -0.044777605682611465, -0.018871275708079338, 0.022655533626675606, -0.0910889133810997, -0.019271373748779297, 0.021821998059749603, 0.016337323933839798, -0.026139719411730766, -0.07381802797317505, 0.029523879289627075, 0.017720995470881462, 0.0032799679320305586, -0.056047022342681885, -0.0553801953792572, 0.008885503746569157, -0.034875184297561646, -0.02702326700091362, -0.02442263253033161, -0.06318210065364838, -0.02904042787849903, -0.0747515931725502, -0.01666240394115448, 0.011836224235594273, 0.0067891585640609264, -0.00529295951128006, 0.028473621234297752, 0.03197447583079338, -0.02133854664862156, -0.0373757965862751, 0.03057413548231125, -0.0684833973646164, 0.011411121115088463, -0.020338300615549088, 0.046978142112493515, 0.02567293867468834, -0.02775678038597107, -0.000704338715877384, 0.004040570463985205, -0.07568515092134476, -0.028106866404414177, 0.05111248418688774, 0.03927626088261604, -0.007139244116842747, 0.05704726651310921, -0.014136786572635174, 0.06011468544602394, 0.019004642963409424, 0.07215096056461334, 0.008968857116997242, 0.06154836714267731, 0.055480219423770905, 0.059081099927425385, 0.0004365649656392634, -0.0035466996487230062, -0.03182443976402283, 0.0031861949246376753, 0.019804837182164192, 0.08155325800180435, -0.04544443264603615, -0.02965724468231201, -0.006088987458497286, 0.007660204544663429, 0.029740598052740097, 0.0019859017338603735, 0.009285601787269115, 0.0013399106683209538, -0.05974792689085007, -0.05774743854999542, 0.012528060004115105, 0.0010398373706266284, -0.044110774993896484, 0.002669402165338397, 0.04017648100852966, 0.01728755608201027, 0.05758073180913925, 0.005780578590929508, -0.021138496696949005, 0.009452308528125286, 0.013836713507771492, 0.04104335978627205, -0.04291048273444176, 0.006209850311279297, 0.0015097437426447868, -0.04437750577926636, -0.05421324446797371, 0.04271043464541435, 0.029023757204413414, 0.04171018674969673, -0.0720175951719284, -0.08802150189876556, 0.03379158675670624, -0.04074328392744064, -0.025756292045116425, -0.030157366767525673, -0.01626230590045452, 0.019721483811736107, 0.10202492028474808, -0.030240720137953758, -0.05161260813474655, -0.019954875111579895, 0.01179454755038023, -0.003021571319550276, -0.0005024665151722729, -0.02425592578947544, -0.015720507130026817, -0.021205179393291473, -0.026389779523015022, -0.051812656223773956, -0.04744492098689079, -0.007043387275189161, -0.006772487424314022, 0.017370909452438354, -0.019954875111579895, 0.019037984311580658, 0.005038730800151825, -0.01930471509695053, -0.030990904197096825, 0.01699581742286682, -0.02313898503780365, 0.02482273057103157, 0.032557953149080276, 0.04060991853475571, -0.02240547351539135, 0.03129097819328308, 0.013661670498549938, -0.020254947245121002, -0.002323484281077981, -0.007864421233534813, -0.02904042787849903, 0.022922266274690628, -0.03207449987530708, 0.03957633301615715, -0.010169150307774544, 0.0224554855376482, 0.024005863815546036, -0.00981906522065401, -0.0141617925837636, -0.02730667032301426, -0.0718175396323204, -0.021021801978349686, -0.017637642100453377, -0.05951453745365143, 0.03587542846798897, 0.04401075094938278, 0.006097322795540094, 0.05651380494236946, 0.05044565722346306, -0.008943851105868816, -0.061281636357307434, -0.024122558534145355, -0.046978142112493515, 0.04087665304541588, 0.027456706389784813, 0.018371153622865677, 0.0006090029492042959, 0.02645646221935749, -0.005793081596493721, 0.05738068372011185, 0.018621215596795082, -0.001651445054449141, 0.02342238835990429, -0.028740353882312775, 0.06825000792741776, -0.028640329837799072, 0.05034562945365906, -0.021705301478505135, -0.01717086136341095, -0.029857292771339417, 0.005026227794587612, 0.0146035673096776, 0.0179543849080801, -0.010860986076295376, 0.0006230688886716962, -0.0012450958602130413, -0.06671629846096039, -0.013695011846721172, -0.02110515534877777, 0.0009908670326694846, 0.0164373479783535, -0.02522282861173153, 0.03607548028230667, -0.028640329837799072, 0.024339279159903526, -0.10035784542560577, -0.06614948809146881, -0.02330569364130497, 0.06801661103963852, -0.03320811316370964, -0.038642771542072296, 0.04564448446035385, 0.025989681482315063, -0.020671715959906578, -0.014203469268977642, -0.026039693504571915, -0.00030528291244991124, -0.005017892457544804, 0.0044927638955414295, -0.00014547824684996158, 0.004876191262155771, 0.011269419454038143, -0.05054568126797676, 0.007718551903963089, -0.018454506993293762, -0.024555997923016548, -0.017137520015239716, -0.04751160740852356, -0.044944312423467636, -0.05754739046096802, -0.04024316370487213, -0.04881192371249199, 0.06334880739450455, 0.024189241230487823, -0.018087752163410187, -0.0003196093311998993, -0.010902662761509418, 0.002565209986642003, -0.027623414993286133, -0.01562048215419054, -0.02415589988231659, 0.030824195593595505, -0.023622436448931694, -0.010677608661353588, 0.013461621478199959, -0.036742307245731354, 0.03159105032682419, -0.004000977147370577, -0.03162439167499542, -0.01704583130776882, -0.02470603585243225, 0.024105887860059738, 0.07268442213535309, -0.02939051203429699, 0.0010731788352131844, -0.004721986595541239, -0.03175775706768036, 0.008164494298398495, -0.005042898468673229, 0.020304959267377853, 0.044110774993896484, -0.022222094237804413, 0.010144144296646118, -0.014503542333841324, -0.041010018438100815, 0.056547146290540695, 0.0230889730155468, -0.01659572124481201, 0.03145768493413925, 0.014670250006020069, -0.03249127045273781, 0.03957633301615715, 0.04307718947529793, 0.0056180390529334545, -0.014936981722712517, 0.04331057891249657, -0.07461822777986526, 0.0626152977347374, -0.03399163484573364, 0.0864877924323082, -0.011002687737345695, -0.012628084979951382, -0.029740598052740097, -0.01970481313765049, 0.00554302055388689, 0.03840938210487366, -0.04014313966035843, -0.0015451691579073668, -0.033241454511880875, -0.07875256985425949, 0.002548539312556386, -0.06024805083870888, -0.010410876013338566, 0.010202492587268353, -0.04987885057926178, -0.0036592271644622087, 0.022888924926519394, 0.043944068253040314, 0.014320164918899536, -0.009585674852132797, 0.03259129449725151, -0.019788166508078575, 0.03980972617864609, -0.02183866873383522, 0.026556486263871193, -0.02972392737865448, -0.00781024107709527, 0.010860986076295376, -0.044844288378953934, 0.00017504276183899492, -0.02668985351920128, 0.01875458098948002, 0.020588362589478493, 0.05151258409023285, -0.01661239191889763, -0.006084819789975882, -0.08302027732133865, -0.06091488152742386, 0.03720908984541893, -0.025822974741458893, -0.02105514332652092, 0.05431326851248741, 0.08988862484693527, -0.001649361220188439, -0.04241035878658295, 0.00303199072368443, 0.00791026558727026, 0.014303494244813919, 0.04090999439358711, -0.023622436448931694, -0.04377736151218414, 0.02037164196372032, -0.02723998762667179, -0.02313898503780365, 0.005709728226065636, 0.006905853748321533, 0.033358149230480194, -0.00009676843183115125, 0.01648736000061035, -0.04987885057926178, 0.021655289456248283, -0.04090999439358711, 0.002148441504687071, 0.05021226406097412, -0.032858025282621384, -0.007681042887270451, 0.003988474141806364, 0.006818332243710756, -0.02572295069694519, -0.024555997923016548, 0.016929134726524353, 0.04331057891249657, 0.06478249281644821, -0.037975944578647614, 0.05334636569023132, -0.021538594737648964, -0.05471336469054222, -0.08595433086156845, -0.044944312423467636, -0.0360087975859642, -0.007843582890927792, -0.017704324796795845, -0.019438082352280617, 0.02972392737865448, 0.07821910828351974, 0.01288648135960102, 0.0419769212603569, -0.049678802490234375, -0.015078683383762836, -0.030924219638109207, -0.009235589765012264, 0.026423120871186256, 0.014478536322712898, -0.023038960993289948, 0.033291466534137726, 0.028456950560212135, -0.0038592759519815445, 0.0157038364559412, 0.014753604307770729, 0.034475088119506836, -0.014145121909677982, -0.01818777620792389, -0.00004822141272597946, -0.01818777620792389, -0.025456218048930168, -0.026656512171030045, 0.015687165781855583, -0.016245635226368904, -0.015903884544968605, 0.06748314946889877, -0.06781656295061111, 0.07428481429815292, -0.019521435722708702, -0.05224609375, 0.029290487989783287, -0.0020577942486852407, 0.010952675715088844, 0.0027569234371185303, -0.03202448785305023, -0.0013544975081458688, 0.006839170586317778, 0.010502565652132034, 0.01654570922255516, 0.032391246408224106, 0.06238190457224846, -0.010477559641003609, -0.056047022342681885, 0.007130908314138651, 0.005147090647369623, -0.02505612000823021, -0.023405717685818672, 0.012486383318901062, -0.021038472652435303, 0.0186378862708807, -0.009802394546568394, -0.024972766637802124, 0.007656036876142025, -0.001170077477581799, -0.03309141844511032, 0.010210827924311161, 0.02257218025624752, -0.06181509792804718, 0.04331057891249657, -0.052546169608831406, -0.04017648100852966, -0.016629062592983246, 0.011644511483609676, 0.046811435371637344, 0.004292715340852737, 0.03330813720822334, 0.08682120591402054, 0.00478450208902359, -0.04594455659389496, -0.024222584441304207, -0.017821019515395164, 0.023822486400604248, 0.05618039146065712, 0.059881292283535004, -0.014486871659755707, -0.03980972617864609, 0.00993575993925333, -0.020588362589478493, -0.006593277212232351, 0.0958900898694992, -0.05774743854999542, -0.02342238835990429, 0.0012513473629951477, 0.046978142112493515, 0.027323340997099876, 0.005876435432583094, 0.044510871171951294, -0.00006437119009206071, -0.004296883009374142, -0.012644755654036999, 0.025806304067373276, 0.0033945792820304632, -0.04454421252012253, 0.01823778823018074, 0.021038472652435303, -0.006993374787271023, 0.0688834935426712, -0.023839157074689865, 0.03057413548231125, -0.04351062700152397, 0.047311555594205856, -0.019154679030179977, -0.027456706389784813, 0.036675624549388885, -0.027606744319200516, 0.048945289105176926, -0.011586163192987442, -0.0018275297479704022, 0.09935760498046875, -0.02240547351539135, 0.005117916967719793, 0.033124759793281555, 0.0047761667519807816, -0.034708477556705475, -0.0016399839660152793, 0.06688300520181656, -0.00781024107709527, -0.00855208933353424, 0.009402296505868435, 0.0010888075921684504, -0.0009663818636909127, -0.01001911424100399, 0.0024380956310778856, 0.0023589094635099173, -0.02228877693414688, 0.021988704800605774, -0.046377994120121, 0.02735668234527111, 0.005976459942758083, 0.06928358972072601, 0.024689363315701485, 0.013328256085515022, -0.014145121909677982, 0.02723998762667179, 0.004659471567720175, 0.0017129183979704976, 0.02899041399359703, -0.01757095940411091, -0.04727821424603462, 0.018837934359908104, 0.005080407485365868, -0.0659494400024414, 0.01103602908551693, 0.0584142692387104, 0.056213732808828354, 0.02583964541554451, -0.034875184297561646, 0.012111292220652103, -0.07488495856523514, -0.002099471166729927, -0.026123046875, -0.04097667708992958, -0.015920555219054222, 0.01063593104481697 ]
7,394
uuid
_windll_getnode
Get the hardware address on Windows using the _uuid extension module.
def _windll_getnode(): """Get the hardware address on Windows using the _uuid extension module.""" if _UuidCreate: uuid_bytes = _UuidCreate() return UUID(bytes_le=uuid_bytes).node
()
[ 0.05717959254980087, -0.034455664455890656, 0.0351615846157074, 0.004193506203591824, 0.028959564864635468, -0.006983574945479631, 0.0014612142695114017, 0.026824994012713432, -0.017883330583572388, -0.07502930611371994, 0.011521637439727783, 0.021412935107946396, 0.007353342603892088, -0.011361964978277683, 0.01691688969731331, 0.005256589502096176, -0.045212551951408386, 0.020807858556509018, -0.013336863368749619, -0.025581229478120804, -0.026976263150572777, 0.04806985333561897, 0.06191935017704964, -0.02062297612428665, -0.0028951161075383425, 0.059196509420871735, 0.013899918645620346, 0.02416938729584217, -0.0247744619846344, -0.055599674582481384, -0.030472252517938614, -0.03684234991669655, 0.008773588575422764, -0.027547722682356834, 0.021715471521019936, 0.029564639553427696, 0.02280796878039837, 0.036707885563373566, -0.08067667484283447, -0.06918025016784668, 0.028455335646867752, -0.015059646219015121, -0.0034245566930621862, 0.0033027015160769224, 0.02092551253736019, -0.022303739562630653, 0.07677730172872543, -0.06124704331159592, -0.027900682762265205, 0.022404585033655167, 0.02085828222334385, 0.030573097988963127, -0.02810237556695938, 0.007752524223178625, -0.03001844696700573, -0.018202675506472588, -0.03593473508954048, -0.08255913108587265, -0.040271107107400894, 0.05805359035730362, -0.029127640649676323, 0.042288023978471756, -0.044573862105607986, 0.02709391713142395, -0.0036409550812095404, -0.012353615835309029, 0.018404366448521614, -0.03003525361418724, -0.02640480361878872, 0.06800371408462524, 0.03455650806427002, -0.02025320753455162, -0.012185539118945599, -0.010740082710981369, 0.06417157500982285, 0.012656153179705143, 0.04501086100935936, 0.006088567897677422, -0.014101610518991947, 0.03334635868668556, 0.012034270912408829, 0.058826740831136703, -0.012311596423387527, 0.02186674065887928, 0.039968568831682205, 0.033464014530181885, 0.03566581383347511, 0.0508263073861599, -0.07072655111551285, -0.06037304550409317, -0.0014612142695114017, 0.01321080606430769, -0.06507918238639832, 0.05126330256462097, 0.01695890910923481, -0.07536546140909195, 0.016135334968566895, 0.06531449407339096, 0.016513507813215256, -0.00899208802729845, -0.009555143304169178, 0.019093479961156845, -0.05640644207596779, 0.01535378023982048, 0.026606494560837746, -0.009025703184306622, -0.0011051023611798882, 0.08565174043178558, -0.011387176811695099, -0.011773752048611641, -0.044271327555179596, 0.017799291759729385, 0.017345484346151352, -0.005235580261796713, 0.03566581383347511, 0.003985511604696512, -0.002502237446606159, 0.028522565960884094, 0.04114510491490364, -0.04995230957865715, -0.04692693427205086, -0.013630996458232403, -0.04084256663918495, -0.049145542085170746, -0.0002718110627029091, 0.009025703184306622, 0.025698883458971977, 0.015933644026517868, -0.049750614911317825, -0.04067448899149895, 0.012656153179705143, 0.02638799510896206, -0.008235744200646877, 0.04689331725239754, -0.03909457102417946, 0.03943072631955147, -0.00818532146513462, -0.005264993291348219, -0.006634816061705351, 0.02376600354909897, -0.0013645703438669443, 0.007147449068725109, 0.012622538022696972, -0.013261228799819946, 0.001804720377549529, 0.027514107525348663, -0.03818695992231369, 0.017681637778878212, 0.01632862351834774, -0.05220453068614006, 0.02221970073878765, -0.01828671246767044, 0.030892442911863327, 0.029228487983345985, -0.034758202731609344, -0.004895225167274475, 0.0127485953271389, -0.014143629930913448, -0.01255530770868063, -0.05553244426846504, -0.03778357803821564, 0.007912197150290012, 0.04013664647936821, -0.06144873425364494, -0.010815717279911041, 0.014269687235355377, -0.00009158851025858894, -0.07052486389875412, 0.04050641506910324, -0.01633702591061592, -0.022404585033655167, 0.0302873682230711, -0.026572879403829575, 0.009513124823570251, 0.02149697206914425, -0.017479946836829185, -0.025060191750526428, -0.0035590180195868015, 0.010656043887138367, 0.035464122891426086, 0.03680873289704323, 0.0353296622633934, 0.017429523169994354, 0.023278582841157913, 0.024371078237891197, 0.010664448142051697, 0.025329114869236946, -0.02672414854168892, 0.047162238508462906, -0.009261010214686394, 0.007601255550980568, 0.062020193785429, 0.03430439531803131, 0.047868162393569946, 0.04464109241962433, 0.00016886426601558924, 0.05025484412908554, 0.013454516418278217, -0.0495489239692688, 0.02474084682762623, 0.06077642738819122, 0.019093479961156845, 0.014513397589325905, 0.07099547237157822, -0.02835449017584324, -0.054322294890880585, 0.05280960723757744, 0.001333056017756462, 0.0125469034537673, 0.016135334968566895, -0.0012563711497932673, -0.019429633393883705, -0.020303629338741302, 0.11160273104906082, 0.017446331679821014, -0.0031661393586546183, -0.10259383916854858, 0.042220793664455414, 0.008597108535468578, -0.009160163812339306, -0.03811972960829735, -0.019496863707900047, 0.03586750477552414, -0.08753419667482376, -0.022018009796738625, -0.0332455150783062, -0.062457192689180374, 0.01093337032943964, 0.006286057643592358, -0.017681637778878212, 0.0561039038002491, -0.04770008474588394, -0.0028930152766406536, 0.02711072377860546, 0.006458336021751165, 0.023665158078074455, -0.030152907595038414, -0.030589906498789787, 0.06911301612854004, -0.013698226772248745, -0.045178938657045364, 0.028572989627718925, 0.11550210416316986, 0.018522020429372787, 0.05926373973488808, 0.037649113684892654, -0.008941665291786194, 0.023043274879455566, 0.003846848849207163, -0.08081113547086716, -0.05580136552453041, -0.02746368572115898, 0.018337136134505272, -0.028152797371149063, 0.005252387840300798, -0.06891132891178131, 0.009126548655331135, 0.01550504844635725, 0.005836453288793564, 0.04306117445230484, -0.04074172303080559, -0.03363208845257759, 0.03131263330578804, -0.0012731788447126746, -0.01453860942274332, -0.027026686817407608, -0.01223596278578043, 0.0800715982913971, -0.02383323386311531, -0.005559127312153578, 0.04823792725801468, 0.02090870589017868, -0.02971590869128704, -0.026858609169721603, 0.010471160523593426, -0.06786925345659256, -0.011866194196045399, 0.0020095636136829853, 0.0011492224875837564, -0.024387886747717857, -0.06040666252374649, 0.017782483249902725, -0.02411896362900734, 0.028522565960884094, -0.06820540875196457, -0.0366070419549942, 0.013925130479037762, -0.04564955085515976, -0.021732280030846596, -0.05633921176195145, -0.04766646772623062, 0.011983848176896572, -0.0732140839099884, -0.026001419872045517, 0.022723929956555367, -0.0130679402500391, -0.0012962892651557922, 0.01668998785316944, 0.02084147371351719, 0.0031178174540400505, -0.03939710929989815, 0.04440578818321228, -0.04541424661874771, 0.020169168710708618, -0.04806985333561897, 0.03403547406196594, 0.04087618365883827, 0.013941938057541847, -0.04211994633078575, -0.006584393326193094, -0.11805687099695206, 0.006017135456204414, 0.06891132891178131, 0.02907721884548664, 0.002998062875121832, -0.02218608558177948, -0.0026051842141896486, 0.03926264867186546, -0.004563274327665567, 0.04383432865142822, 0.002727039624005556, 0.05590221285820007, 0.05233899503946304, 0.019799400120973587, 0.002739645540714264, -0.04248971492052078, -0.030539482831954956, -0.010311488062143326, 0.03137986361980438, 0.05640644207596779, -0.0706593245267868, -0.04995230957865715, 0.014950396493077278, 0.01566472090780735, 0.033464014530181885, 0.004743956495076418, 0.03744742274284363, 0.023732388392090797, -0.07563438266515732, -0.026892224326729774, 0.02739645354449749, 0.045548707246780396, -0.052641529589891434, 0.002760655013844371, 0.03566581383347511, 0.01571514457464218, 0.07254178076982498, 0.017412716522812843, -0.03630450367927551, -0.011672906577587128, 0.010496371425688267, 0.012160328216850758, -0.053649988025426865, 0.007903792895376682, -0.007550832815468311, 0.0002936084638349712, -0.01499241590499878, 0.04817069694399834, 0.018757326528429985, 0.05748213082551956, -0.05260791629552841, -0.05180114880204201, -0.0019139701034873724, -0.03885926678776741, -0.0626588836312294, -0.06175127252936363, -0.027194762602448463, 0.05835612863302231, 0.053044915199279785, -0.004254434257745743, -0.05549883097410202, -0.01550504844635725, 0.013118363916873932, 0.026656918227672577, 0.015160491690039635, -0.020118746906518936, -0.010521583259105682, -0.02183312550187111, -0.006227231118828058, -0.014437763020396233, -0.023009659722447395, 0.012630942277610302, 0.05156584084033966, 0.014160437509417534, -0.010698063299059868, 0.002727039624005556, 0.012185539118945599, 0.0005383697571232915, -0.05233899503946304, -0.000021748168364865705, -0.05344829708337784, 0.041649334132671356, -0.010227449238300323, 0.07025593519210815, -0.0060339430347085, 0.022673508152365685, 0.018421174958348274, -0.022908814251422882, -0.009815662167966366, -0.012572115287184715, -0.018135445192456245, 0.03264043852686882, -0.052103687077760696, 0.013975553214550018, 0.009941719472408295, 0.0186228659003973, -0.016874872148036957, -0.03067394345998764, -0.00996693130582571, -0.08955111354589462, -0.0711299329996109, -0.02452234737575054, -0.024640001356601715, -0.061146195977926254, 0.03727934882044792, 0.00700878631323576, 0.018118636682629585, 0.09203863888978958, 0.016219373792409897, -0.001613533473573625, -0.04074172303080559, -0.01373184286057949, -0.06198658049106598, 0.03983410820364952, 0.01692529395222664, 0.0013624693965539336, 0.018992634490132332, 0.04393517225980759, 0.010000546462833881, 0.04887662082910538, 0.01793375238776207, 0.010387121699750423, 0.037716343998909, -0.03190090134739876, 0.04833877459168434, -0.037649113684892654, 0.037716343998909, -0.02188354916870594, -0.02647203393280506, 0.034758202731609344, 0.012614134699106216, -0.0006245088879950345, -0.010656043887138367, -0.021429741755127907, -0.006664229556918144, -0.008899645879864693, -0.022908814251422882, -0.01922794058918953, -0.0009753684280440211, 0.005945703014731407, 0.020085129886865616, -0.017816098406910896, 0.04696054756641388, -0.02447192557156086, -0.010513179004192352, -0.06706248968839645, -0.07590330392122269, 0.0009927012724801898, 0.03038821369409561, -0.03000163845717907, -0.048103466629981995, 0.044842787086963654, 0.016824448481202126, -0.028909141197800636, -0.022992853075265884, -0.0010777899296954274, 0.012479673139750957, -0.009647585451602936, 0.02151378057897091, 0.00022637791698798537, 0.03126221150159836, 0.03032098338007927, -0.014387340284883976, -0.0024245022796094418, 0.03174963220953941, -0.029615063220262527, -0.04817069694399834, -0.03361527994275093, -0.026337573304772377, -0.04558232054114342, 0.013799073174595833, -0.04144764319062233, 0.08787034451961517, 0.026001419872045517, -0.04349817335605621, 0.020404476672410965, -0.00784916803240776, 0.025211460888385773, 0.013437708839774132, -0.03220343962311745, 0.0018772033508867025, 0.017202619463205338, -0.05129691958427429, 0.016883274540305138, 0.03432120382785797, -0.02907721884548664, 0.03371612727642059, -0.0047607640735805035, -0.008244147524237633, 0.01158046443015337, -0.00112296047154814, 0.01093337032943964, 0.06477664411067963, -0.05633921176195145, 0.018051406368613243, 0.0021429741755127907, -0.022370969876646996, 0.028942758217453957, 0.013059536926448345, 0.0231777373701334, 0.03255639970302582, -0.014320109970867634, -0.002153479028493166, -0.013630996458232403, -0.034052278846502304, 0.07153332233428955, 0.0036787723656743765, -0.023312197998166084, 0.030102483928203583, 0.025698883458971977, -0.04208633303642273, 0.0749620795249939, 0.03035459853708744, -0.017126986756920815, -0.010471160523593426, 0.027682185173034668, -0.08538281172513962, 0.036741502583026886, -0.02289200760424137, 0.0935177132487297, 0.001350914128124714, 0.016463084146380424, -0.03168240189552307, -0.012160328216850758, 0.004250232130289078, 0.010874543339014053, -0.02808556705713272, -0.005882674362510443, -0.036741502583026886, -0.04561593756079674, 0.005197762977331877, -0.07348300516605377, -0.011883001774549484, -0.022774353623390198, -0.020303629338741302, -0.029531024396419525, 0.023093698546290398, 0.017429523169994354, -0.026976263150572777, 0.005916289519518614, 0.07119716703891754, -0.061213426291942596, 0.018421174958348274, -0.02450554072856903, 0.03262363001704216, 0.031800057739019394, -0.009941719472408295, -0.00009651262371335179, -0.05391891300678253, -0.021799510344862938, -0.026539264246821404, 0.04006941616535187, 0.023950887843966484, 0.024270232766866684, 0.00023753923596814275, -0.03369931876659393, -0.08578620105981827, -0.049145542085170746, 0.020101938396692276, -0.02739645354449749, -0.018337136134505272, 0.04010302945971489, 0.085987888276577, -0.006592797115445137, -0.06417157500982285, 0.023261774331331253, 0.002180791459977627, 0.0029434380121529102, 0.0672977939248085, -0.04037195444107056, -0.04659077897667885, 0.012580519542098045, -0.01919432543218136, -0.04867492616176605, 0.04393517225980759, 0.0066558257676661015, -0.027480492368340492, -0.0007910095737315714, 0.007193670142441988, -0.08316420763731003, 0.01485795434564352, -0.04248971492052078, 0.016227778047323227, 0.013824284076690674, 0.006227231118828058, 0.013630996458232403, -0.011471214704215527, 0.013950341381132603, 0.00740796746686101, -0.017782483249902725, 0.03200174868106842, 0.0404391847550869, 0.0632975772023201, -0.01368982344865799, 0.0535491444170475, -0.012303193099796772, -0.04460747912526131, -0.09970292448997498, -0.01825309731066227, -0.04262417554855347, -0.009378663264214993, -0.03191770985722542, -0.006012933328747749, 0.025345921516418457, 0.040002185851335526, 0.006185211706906557, 0.010269468650221825, -0.05657451972365379, -0.002575770951807499, 0.02385004237294197, 0.023631542921066284, -0.013093152083456516, -0.010546794161200523, -0.04054002836346626, 0.054692063480615616, 0.03035459853708744, -0.024236617609858513, 0.029917599633336067, 0.017379101365804672, 0.05196922644972801, -0.004920437000691891, -0.009059318341314793, 0.0010462756035849452, -0.01368982344865799, -0.04336371272802353, -0.02252223901450634, 0.011916616931557655, -0.02316092886030674, -0.0006864870665594935, 0.06349926441907883, -0.09197141230106354, 0.0922403335571289, -0.02252223901450634, -0.06420518457889557, 0.03364889696240425, 0.062188271433115005, 0.01421086024492979, -0.04050641506910324, -0.0036073399242013693, -0.006718854419887066, -0.012841037474572659, 0.0039161802269518375, 0.02149697206914425, 0.009899700060486794, 0.07758407294750214, -0.00383844505995512, -0.0762394592165947, 0.019446440041065216, -0.027833452448248863, 0.0007180013926699758, -0.03727934882044792, -0.01565631665289402, -0.031178172677755356, -0.013168786652386189, 0.01368982344865799, 0.01668998785316944, 0.0049582538194954395, 0.011143465526401997, -0.050086770206689835, -0.015614298172295094, -0.000971691741142422, -0.03225386142730713, 0.03070756047964096, -0.04168294742703438, -0.06336480379104614, 0.00943749025464058, -0.020656591281294823, 0.06383541971445084, -0.024236617609858513, 0.03583389148116112, 0.05452398583292961, 0.009706412442028522, -0.024623192846775055, -0.006529768463224173, 0.002588376635685563, 0.030522676184773445, -0.02060616761445999, 0.0438007116317749, 0.02062297612428665, -0.009840874001383781, -0.02055574394762516, -0.0364389643073082, -0.00022086290118750185, 0.09613970667123795, -0.07933206111192703, 0.0063280765898525715, 0.035766661167144775, -0.00479858135804534, 0.03383377939462662, -0.008000437170267105, 0.032791707664728165, -0.015051241964101791, -0.006265047937631607, -0.02216927893459797, 0.05976796895265579, 0.006445730105042458, -0.02052212879061699, 0.022421393543481827, -0.02085828222334385, 0.0366070419549942, 0.04336371272802353, -0.03489266335964203, 0.023564312607049942, -0.04803623631596565, 0.02810237556695938, -0.023060083389282227, -0.04178379476070404, 0.061549581587314606, -0.04511170834302902, 0.021295281127095222, -0.011227504350244999, 0.03334635868668556, 0.08323143422603607, -0.01356376614421606, 0.021009551361203194, 0.07617222517728806, 0.010866140015423298, -0.01756398379802704, -0.026925841346383095, 0.0561039038002491, -0.026203112676739693, -0.05489375442266464, -0.019043056294322014, 0.025631651282310486, 0.026909032836556435, 0.013698226772248745, 0.004613697528839111, 0.014748704619705677, -0.020959127694368362, 0.00878199189901352, -0.02247181534767151, 0.059835199266672134, -0.009202183224260807, 0.0728779286146164, 0.020404476672410965, 0.041313182562589645, -0.02248862385749817, 0.0019938063342124224, 0.023934081196784973, 0.0050086770206689835, 0.06723055988550186, -0.025598036125302315, 0.003964502364397049, -0.0003794850199483335, 0.03754827007651329, -0.048742156475782394, 0.005159945692867041, 0.030186522752046585, 0.03321189805865288, 0.031211789697408676, -0.03855672851204872, 0.0010247408645227551, -0.06998701393604279, -0.009160163812339306, -0.055935829877853394, -0.023244967684149742, -0.019496863707900047, -0.005596944596618414 ]
7,396
uuid
getnode
Get the hardware address as a 48-bit positive integer. The first time this runs, it may launch a separate program, which could be quite slow. If all attempts to obtain the hardware address fail, we choose a random 48-bit number with its eighth bit set to 1 as recommended in RFC 4122.
def getnode(): """Get the hardware address as a 48-bit positive integer. The first time this runs, it may launch a separate program, which could be quite slow. If all attempts to obtain the hardware address fail, we choose a random 48-bit number with its eighth bit set to 1 as recommended in RFC 4122. """ global _node if _node is not None: return _node for getter in _GETTERS + [_random_getnode]: try: _node = getter() except: continue if (_node is not None) and (0 <= _node < (1 << 48)): return _node assert False, '_random_getnode() returned invalid value: {}'.format(_node)
()
[ 0.03742346540093422, 0.013576033525168896, 0.012268130667507648, 0.0001420982152922079, 0.03585398197174072, 0.017429988831281662, -0.02685561031103134, -0.017674129456281662, -0.013113908469676971, -0.10163278877735138, 0.023891029879450798, 0.06270959228277206, 0.015171675942838192, 0.024013100191950798, 0.014343337155878544, 0.007886655628681183, -0.00931227020919323, 0.02291446179151535, 0.024606015533208847, -0.021658875048160553, -0.039027828723192215, 0.04112047329545021, 0.05360658839344978, 0.003618531860411167, 0.006526436191052198, 0.07268453389406204, 0.026018552482128143, 0.0022474133875221014, 0.017107371240854263, -0.034703027456998825, -0.009756957180798054, -0.05946599319577217, 0.008335702121257782, -0.008252868428826332, 0.012058866210281849, -0.004146052524447441, 0.008287745527923107, 0.014552601613104343, -0.12883716821670532, -0.03526106849312782, 0.05991939827799797, -0.06030305102467537, 0.01907794550061226, -0.024553699418902397, -0.026646345853805542, -0.025896480306982994, 0.052385877817869186, -0.012154779396951199, -0.04125998169183731, -0.03812101483345032, 0.015424536541104317, -0.0062517765909433365, 0.001737331273034215, 0.020577674731612206, -0.030953705310821533, -0.0017580396961420774, -0.008418535813689232, -0.045270886272192, -0.008300825022161007, 0.08021805435419083, -0.025931358337402344, 0.06400005519390106, -0.05182784050703049, -0.017386391758918762, 0.02744852565228939, 0.0024218005128204823, -0.01790955290198326, -0.025443075224757195, -0.01768285036087036, 0.08851888030767441, 0.043561890721321106, 0.00910300575196743, -0.015581484884023666, 0.029732996597886086, 0.07407963275909424, -0.007546600885689259, 0.0008092650095932186, -0.026768416166305542, -0.012320446781814098, 0.047921568155288696, 0.034546080976724625, 0.0456894151866436, 0.07101041823625565, -0.0012697558850049973, 0.021763507276773453, -0.011814724653959274, 0.04928178712725639, 0.05880332365632057, -0.0235771331936121, -0.029349345713853836, -0.0009346057195216417, -0.006818534806370735, -0.062221307307481766, 0.01862454041838646, 0.024326996877789497, -0.038748808205127716, 0.0474681630730629, 0.03208722174167633, 0.030238719657063484, -0.008575484156608582, -0.010428346693515778, 0.09905185550451279, -0.07359134405851364, 0.008518808521330357, 0.017525900155305862, 0.010689927265048027, -0.013305733911693096, 0.07861369103193283, -0.017281759530305862, -0.015380940400063992, -0.0450267419219017, -0.02385615184903145, 0.004582020454108715, -0.006321531254798174, 0.026192938908934593, 0.017726445570588112, -0.0021100835874676704, 0.047782059758901596, 0.017011459916830063, -0.033953163772821426, -0.009722079150378704, -0.010934069752693176, -0.03411011025309563, -0.026123184710741043, 0.025617461651563644, 0.0230714101344347, 0.025303564965724945, -0.005658860784024, -0.05172320827841759, -0.03745834529399872, 0.031093215569853783, 0.038644175976514816, 0.034912291914224625, 0.10156303644180298, -0.05210685729980469, 0.009286112152040005, -0.043178241699934006, 0.015450694598257542, -0.015529168769717216, -0.029506294056773186, -0.00231934804469347, -0.0029580406844615936, 0.03986488655209541, -0.0472937747836113, 0.028599480167031288, 0.040143903344869614, -0.03151174634695053, 0.0225656870752573, 0.01824088767170906, -0.049177154898643494, 0.06919679045677185, -0.019897565245628357, 0.02798912487924099, 0.05646653473377228, -0.038295403122901917, 0.01174496952444315, 0.009669763036072254, -0.02732645533978939, -0.038888316601514816, -0.05897770822048187, -0.034301936626434326, 0.011605460196733475, 0.034424006938934326, -0.09814504534006119, 0.023908467963337898, 0.013715543784201145, -0.04028341546654701, -0.06801095604896545, 0.044050175696611404, 0.01406431756913662, -0.023960784077644348, -0.011073579080402851, -0.03658640757203102, -0.008401097729802132, 0.03226161003112793, -0.03351719677448273, -0.045515026897192, -0.010140608064830303, 0.022635443136096, 0.053013671189546585, 0.00694932509213686, 0.025966236367821693, -0.005388560704886913, 0.0007406001095660031, 0.04031829163432121, 0.062186431139707565, 0.04115534946322441, -0.014369495213031769, 0.024292118847370148, 0.01359347254037857, 0.006421803962439299, 0.061977166682481766, -0.0011193470563739538, 0.014238704927265644, 0.01794443093240261, -0.007991287857294083, 0.034267060458660126, 0.020752061158418655, -0.009844150394201279, 0.0472588986158371, 0.0443291962146759, 0.02798912487924099, -0.02270519733428955, 0.06919679045677185, -0.043910667300224304, -0.03320330008864403, 0.03144199028611183, 0.0230539720505476, -0.0017613094532862306, 0.035208750516176224, -0.04949105158448219, -0.010393469594419003, -0.007258861791342497, 0.07652104645967484, -0.005083383060991764, -0.05510631576180458, -0.07526545971632004, 0.057896509766578674, -0.010053414851427078, 0.014247423969209194, 0.0229493398219347, -0.03676079586148262, 0.05678043141961098, -0.08042731881141663, 0.0477123036980629, -0.020316094160079956, -0.044224563986063004, 0.007651233114302158, -0.01818857155740261, -0.019147701561450958, 0.08412432670593262, -0.014770585112273693, 0.011178211309015751, 0.005746053997427225, 0.021606558933854103, -0.02722182311117649, 0.030587492510676384, -0.030151525512337685, -0.000021372634364524856, -0.010367311537265778, -0.06909216195344925, 0.021920455619692802, 0.0920066237449646, 0.020804377272725105, 0.05385072901844978, 0.043771155178546906, -0.009355866350233555, 0.02764035202562809, -0.05099078267812729, -0.058070894330739975, -0.06919679045677185, -0.039271969348192215, 0.016810914501547813, -0.010201644152402878, 0.021501926705241203, -0.030849073082208633, 0.004551502875983715, 0.04056243225932121, 0.002456677844747901, 0.0467706136405468, -0.03560984134674072, -0.03219185397028923, -0.004189649596810341, -0.017107371240854263, -0.029105203226208687, -0.017674129456281662, -0.008854503743350506, 0.07198698818683624, 0.008854503743350506, 0.007311177905648947, 0.005802730098366737, -0.01829320378601551, -0.019949881359934807, -0.012765133753418922, 0.02697768062353134, -0.08182241767644882, 0.03255806863307953, 0.04258532449603081, 0.011343879625201225, -0.039271969348192215, -0.0469798780977726, 0.016209278255701065, -0.004747688304632902, 0.009504095651209354, -0.11356086283922195, -0.026524273678660393, 0.005214173346757889, 0.016252875328063965, 0.03386596962809563, -0.017212003469467163, -0.021746069192886353, -0.0020250699017196894, -0.06270959228277206, -0.01379401795566082, 0.06522076576948166, -0.024187486618757248, 0.006334610283374786, 0.035104118287563324, 0.039899762719869614, 0.01831064373254776, -0.013820176012814045, -0.022356422618031502, -0.10100499540567398, -0.003531338181346655, -0.0026354247238487005, 0.03259294480085373, 0.03170356899499893, 0.003173844888806343, -0.0118408827111125, 0.030936267226934433, -0.07149869948625565, -0.004023981746286154, 0.06420931965112686, 0.0231934804469347, 0.0475030392408371, -0.03606324642896652, -0.003075751941651106, 0.0472937747836113, 0.011134615167975426, 0.061419129371643066, 0.006565673276782036, 0.06623221188783646, 0.04945617541670799, 0.0117536885663867, -0.01775260455906391, -0.01116077322512865, -0.07659080624580383, -0.02355969324707985, 0.017429988831281662, 0.04160875454545021, -0.07652104645967484, -0.034319374710321426, -0.0008059952524490654, -0.0006212539738044143, -0.010062133893370628, 0.009024531580507755, 0.01865941658616066, 0.03683055192232132, -0.07798589766025543, -0.0458289235830307, 0.03276733309030533, -0.003537877695634961, -0.0228621456772089, 0.0076032765209674835, 0.04010902717709541, 0.009451779536902905, 0.048514485359191895, 0.01790955290198326, -0.02772754430770874, -0.03613300248980522, 0.016924265772104263, 0.026698661968111992, -0.00937330536544323, 0.05046761780977249, 0.028983131051063538, 0.0112305274233222, -0.003363490803167224, 0.03325561434030533, 0.030395667999982834, 0.06944093108177185, -0.011666495352983475, -0.05409486964344978, -0.010471943765878677, -0.021257784217596054, -0.07540497183799744, -0.024588577449321747, -0.020281216129660606, 0.06427907943725586, 0.11432816833257675, -0.05468778684735298, -0.015825627371668816, -0.014264862984418869, -0.034668151289224625, 0.005070304032415152, -0.0000339918551617302, -0.0034594035241752863, -0.01763925328850746, 0.007524802349507809, -0.015302466228604317, -0.057268716394901276, -0.014718268997967243, -0.007773303892463446, 0.02727413922548294, 0.019740616902709007, -0.013375489041209221, -0.034057796001434326, 0.014369495213031769, 0.01895587518811226, -0.044189684092998505, 0.03595861420035362, -0.049002766609191895, 0.004433791618794203, -0.020176583901047707, 0.0236992035061121, 0.008649598807096481, 0.053432200103998184, 0.045515026897192, -0.016854511573910713, -0.03170356899499893, -0.014413091354072094, 0.006182021927088499, 0.038295403122901917, -0.03819077089428902, 0.015398378483951092, 0.03613300248980522, 0.021763507276773453, 0.034267060458660126, -0.05165345221757889, 0.004956952761858702, -0.02764035202562809, -0.10581807792186737, 0.024292118847370148, -0.014665952883660793, -0.05426925793290138, 0.0072196247056126595, -0.058070894330739975, 0.012904644012451172, 0.08133412897586823, 0.04143436998128891, -0.019496474415063858, -0.014517723582684994, -0.03159893676638603, -0.04035316780209541, 0.03846978768706322, 0.020194023847579956, 0.025791848078370094, 0.025321003049612045, 0.0453755185008049, -0.039655622094869614, 0.08503113687038422, 0.006766218692064285, -0.020281216129660606, 0.03693518415093422, -0.02784961648285389, 0.03609812632203102, -0.038504667580127716, 0.015808189287781715, -0.008013086393475533, -0.008627800270915031, -0.0225308109074831, 0.048235464841127396, 0.005432157311588526, 0.005170576740056276, 0.00021348793234210461, -0.010114450007677078, -0.02718694508075714, 0.009286112152040005, 0.02744852565228939, 0.002345506101846695, -0.039620742201805115, -0.016130805015563965, -0.03609812632203102, 0.039725374430418015, 0.004542783368378878, 0.010402188636362553, -0.04275970906019211, -0.05991939827799797, 0.03742346540093422, 0.01933952607214451, -0.0467008575797081, -0.007978208363056183, 0.043736279010772705, 0.0012534070992842317, -0.03288940340280533, 0.0013623990816995502, 0.03334280848503113, 0.012738975696265697, 0.0035291584208607674, 0.005401639733463526, -0.0017765683587640524, 0.011378756724298, 0.014421811327338219, -0.06570904701948166, -0.033813655376434326, 0.005628342740237713, -0.03355207294225693, -0.04293409734964371, -0.014953691512346268, -0.04963055998086929, -0.057896509766578674, 0.015093201771378517, -0.044364072382450104, 0.07407963275909424, 0.009198918007314205, -0.02769266813993454, -0.03201746568083763, -0.045759167522192, 0.0069100880064070225, -0.007036518305540085, -0.02237386256456375, -0.0474332831799984, -0.03690030425786972, -0.0227400753647089, -0.0020403286907821894, 0.017552059143781662, -0.01391608826816082, 0.025844164192676544, -0.0029863787349313498, -0.010306276381015778, 0.01773516647517681, -0.024571139365434647, 0.0036316108889877796, 0.017159687355160713, -0.0055280704982578754, 0.02823326736688614, -0.012965679168701172, -0.05566435307264328, 0.02804144099354744, 0.008505729958415031, 0.03784199431538582, 0.048130832612514496, 0.020682306960225105, 0.035313382744789124, -0.012468676082789898, -0.010689927265048027, 0.06096572056412697, 0.039899762719869614, -0.019269771873950958, 0.00916404090821743, 0.04251556843519211, -0.022879583761096, 0.053013671189546585, 0.029645802453160286, 0.038888316601514816, -0.006918807048350573, 0.04070194438099861, -0.0462474524974823, 0.017482304945588112, -0.034476324915885925, 0.06863874942064285, -0.004656135104596615, -0.010829437524080276, -0.014421811327338219, 0.04258532449603081, -0.024989668279886246, -0.006936246063560247, 0.02764035202562809, -0.006417444441467524, -0.011980392038822174, -0.057198960334062576, 0.003071392420679331, -0.06720878183841705, 0.019147701561450958, -0.028529725968837738, -0.02814607322216034, -0.048235464841127396, -0.021955333650112152, 0.0457242913544178, -0.019653422757983208, -0.019897565245628357, 0.010280118323862553, -0.05196734890341759, 0.029331905767321587, -0.07345183938741684, 0.08803059905767441, 0.011561863124370575, 0.00947793759405613, 0.044119931757450104, -0.023925906047225, 0.00342234643176198, -0.02251337096095085, -0.007271940819919109, -0.013297014869749546, -0.00031880137976258993, -0.004268123768270016, -0.061977166682481766, -0.08482187241315842, -0.057582613080739975, 0.028930814936757088, -0.024222364649176598, -0.0048174429684877396, 0.019496474415063858, 0.06734828650951385, -0.011919356882572174, -0.03351719677448273, -0.015380940400063992, -0.08468236029148102, -0.0229493398219347, 0.048130832612514496, -0.011727530509233475, -0.02251337096095085, -0.005275208968669176, 0.006234338041394949, -0.020420726388692856, 0.05657116696238518, -0.0005147143383510411, -0.015372220426797867, -0.01801418513059616, -0.0002767032419797033, -0.0465264730155468, 0.0036512294318526983, -0.08147364109754562, -0.015346062369644642, -0.0008719353936612606, -0.00942562147974968, 0.03794662654399872, -0.002426160266622901, -0.005087743047624826, -0.006330250762403011, -0.016279034316539764, 0.016706282272934914, 0.01783107779920101, 0.05957062542438507, -0.05901258811354637, 0.04990958049893379, -0.0017013639444485307, -0.023925906047225, -0.04045780003070831, -0.02844253182411194, -0.06954556703567505, -0.012974398210644722, -0.017177127301692963, -0.01900819130241871, 0.003938968293368816, -0.005262129940092564, 0.0004869214026257396, 0.008501369506120682, -0.05210685729980469, -0.021501926705241203, -0.034458886831998825, -0.003263218095526099, 0.010585295036435127, -0.015720995143055916, -0.03714444860816002, 0.03766760975122452, 0.011832162737846375, -0.010201644152402878, -0.02366432547569275, 0.006408724933862686, 0.09786602854728699, 0.01909538544714451, -0.017552059143781662, 0.012930802069604397, -0.04056243225932121, -0.044050175696611404, -0.04077169671654701, 0.04230630397796631, 0.02849484793841839, -0.019775494933128357, 0.058001141995191574, -0.05437389016151428, 0.10609709471464157, -0.03613300248980522, -0.06668561697006226, 0.04000439494848251, 0.030552616342902184, -0.009861589409410954, 0.013340611010789871, 0.007838699035346508, -0.01804906316101551, -0.03322073817253113, 0.016610369086265564, 0.024379312992095947, 0.03536570072174072, 0.05043274164199829, -0.057059451937675476, -0.014395653270184994, 0.021327538415789604, -0.005240331403911114, -0.020629990845918655, -0.03588886186480522, 0.007686110213398933, -0.0018833804642781615, -0.020542796701192856, -0.044294316321611404, -0.010916630737483501, 0.003448504488915205, 0.008980934508144855, -0.03606324642896652, -0.023838713765144348, 0.006299733184278011, -0.043422382324934006, 0.030291035771369934, -0.06267471611499786, -0.020350972190499306, 0.012800011783838272, -0.00896349549293518, 0.062221307307481766, -0.024501383304595947, 0.03248831257224083, 0.062395695596933365, 0.031110653653740883, -0.016322629526257515, -0.020403288304805756, -0.0006179842166602612, -0.008418535813689232, 0.002336786827072501, 0.03330793231725693, -0.0062256185337901115, -0.0022910102270543575, -0.0004937333869747818, -0.062291063368320465, 0.003642509924247861, 0.06379079073667526, -0.05639677867293358, 0.01853734627366066, -0.017438707873225212, 0.026628905907273293, 0.024850158020853996, -0.020403288304805756, 0.016374945640563965, -0.0076032765209674835, 0.009390744380652905, 0.0045907399617135525, 0.017386391758918762, 0.010524259880185127, -0.05001421272754669, 0.052664898335933685, -0.05025835335254669, -0.020577674731612206, 0.030657248571515083, -0.003919349517673254, -0.019949881359934807, -0.03707469254732132, -0.024204926565289497, -0.010811998508870602, -0.042968977242708206, 0.08858863264322281, -0.06410469114780426, 0.049316663295030594, -0.039550989866256714, -0.017412548884749413, 0.053746096789836884, 0.010977666825056076, 0.0005607634666375816, 0.03189539536833763, 0.014369495213031769, -0.030134087428450584, -0.0017547699389979243, 0.04973519220948219, -0.001607630867511034, -0.0006163493380881846, 0.010977666825056076, 0.039202213287353516, 0.010567856952548027, -0.014805463142693043, -0.004257224500179291, 0.010524259880185127, 0.0225308109074831, -0.0023324270732700825, -0.013061592355370522, 0.07104529440402985, 0.021972771733999252, 0.048130832612514496, 0.02355969324707985, 0.03738858923316002, -0.04171338677406311, 0.007184747606515884, 0.021153151988983154, 0.001403815927915275, -0.00011791563883889467, -0.025268686935305595, 0.04192265123128891, 0.0008468672167509794, 0.03316842019557953, -0.023891029879450798, -0.04125998169183731, 0.043736279010772705, 0.05950086936354637, 0.020595112815499306, -0.05088615044951439, -0.01871173270046711, -0.06051231548190117, 0.007550960406661034, -0.048235464841127396, -0.0237166415899992, -0.030639808624982834, 0.008518808521330357 ]
7,401
uuid
uuid1
Generate a UUID from a host ID, sequence number, and the current time. If 'node' is not given, getnode() is used to obtain the hardware address. If 'clock_seq' is given, it is used as the sequence number; otherwise a random 14-bit sequence number is chosen.
def uuid1(node=None, clock_seq=None): """Generate a UUID from a host ID, sequence number, and the current time. If 'node' is not given, getnode() is used to obtain the hardware address. If 'clock_seq' is given, it is used as the sequence number; otherwise a random 14-bit sequence number is chosen.""" # When the system provides a version-1 UUID generator, use it (but don't # use UuidCreate here because its UUIDs don't conform to RFC 4122). if _generate_time_safe is not None and node is clock_seq is None: uuid_time, safely_generated = _generate_time_safe() try: is_safe = SafeUUID(safely_generated) except ValueError: is_safe = SafeUUID.unknown return UUID(bytes=uuid_time, is_safe=is_safe) global _last_timestamp import time nanoseconds = time.time_ns() # 0x01b21dd213814000 is the number of 100-ns intervals between the # UUID epoch 1582-10-15 00:00:00 and the Unix epoch 1970-01-01 00:00:00. timestamp = nanoseconds // 100 + 0x01b21dd213814000 if _last_timestamp is not None and timestamp <= _last_timestamp: timestamp = _last_timestamp + 1 _last_timestamp = timestamp if clock_seq is None: import random clock_seq = random.getrandbits(14) # instead of stable storage time_low = timestamp & 0xffffffff time_mid = (timestamp >> 32) & 0xffff time_hi_version = (timestamp >> 48) & 0x0fff clock_seq_low = clock_seq & 0xff clock_seq_hi_variant = (clock_seq >> 8) & 0x3f if node is None: node = getnode() return UUID(fields=(time_low, time_mid, time_hi_version, clock_seq_hi_variant, clock_seq_low, node), version=1)
(node=None, clock_seq=None)
[ 0.0315295085310936, -0.003338392823934555, 0.01779014803469181, 0.02570759691298008, 0.013599073514342308, -0.042015962302684784, -0.04152495786547661, 0.06113006919622421, -0.016159310936927795, -0.040788453072309494, 0.03938557952642441, 0.07778915017843246, 0.029828527942299843, 0.04710136726498604, 0.04987203702330589, 0.03889457508921623, -0.0018774349009618163, 0.028425658121705055, 0.0051993876695632935, -0.07217767089605331, 0.015887504443526268, 0.055413372814655304, 0.018640637397766113, 0.027268290519714355, 0.016343437135219574, 0.032792091369628906, -0.03368642181158066, -0.004493568558245897, -0.011214193888008595, -0.027145538479089737, 0.03928036615252495, -0.027566399425268173, 0.004537408240139484, -0.01804441772401333, 0.0010992803145200014, -0.015326357446610928, -0.031739939004182816, 0.021902311593294144, -0.09862177819013596, 0.015449108555912971, 0.0986919179558754, -0.012494312599301338, -0.018184704706072807, -0.06260308623313904, -0.007768393959850073, 0.0008828218560665846, 0.06151586025953293, -0.0037417178973555565, -0.06968757510185242, -0.0256549883633852, 0.052011411637067795, 0.007391372229903936, 0.003338392823934555, -0.018307456746697426, -0.0061507089994847775, 0.02690003626048565, 0.016097934916615486, 0.019482359290122986, -0.009557053446769714, 0.07757872343063354, 0.022586209699511528, 0.05934140831232071, -0.028180155903100967, 0.023094750940799713, 0.0038513171020895243, 0.022919392213225365, -0.016325902193784714, -0.06295379996299744, 0.005265147425234318, 0.060919638723134995, 0.04710136726498604, 0.020516976714134216, 0.009899002499878407, -0.00023673435498494655, 0.09392216056585312, 0.02118333987891674, -0.03819314017891884, 0.04562835395336151, -0.0015946688363328576, 0.0166152436286211, 0.043068114668130875, -0.013800735585391521, -0.010731956921517849, -0.02228810079395771, 0.02914462797343731, 0.03942065313458443, -0.04317333176732063, -0.001797427423298359, -0.042892757803201675, -0.0382983572781086, 0.0024002231657505035, -0.03468596562743187, -0.02917969971895218, 0.03700070083141327, 0.045172419399023056, -0.05141519382596016, -0.015300053171813488, 0.009013441391289234, -0.007978823967278004, 0.0030205550137907267, 0.04229653626680374, 0.008035816252231598, -0.11973497271537781, -0.01797427423298359, -0.003298936877399683, -0.009592125192284584, -0.028425658121705055, 0.08129633218050003, 0.018061954528093338, -0.037316348403692245, -0.05930633842945099, -0.002571198157966137, 0.04099888354539871, -0.05436122044920921, 0.014370651915669441, -0.026584390550851822, 0.02139377035200596, 0.015975184738636017, -0.020885230973362923, -0.057587821036577225, 0.007031886838376522, -0.011836717836558819, -0.009197567589581013, 0.0074352119117975235, -0.0006384155713021755, -0.039876583963632584, -0.043103188276290894, 0.0025558541528880596, -0.0316171869635582, -0.04790801927447319, 0.014019934460520744, 0.05488729849457741, 0.02120087668299675, 0.06509317457675934, -0.0013568385038524866, -0.022533603012561798, -0.012134827673435211, 0.044120267033576965, -0.019517431035637856, 0.04106902703642845, -0.017123784869909286, -0.0313541479408741, 0.060603994876146317, 0.004822366405278444, 0.05432615056633949, 0.02135869860649109, -0.0466805063188076, -0.003892964916303754, -0.02577774040400982, -0.006567186210304499, 0.028460729867219925, 0.01779014803469181, 0.05671102926135063, 0.037351418286561966, -0.03899979218840599, -0.05839447304606438, -0.01575598679482937, -0.02800479717552662, -0.027320897206664085, -0.03480871766805649, -0.035457544028759, 0.0013097109040245414, 0.015063319355249405, -0.0375969223678112, 0.0075974189676344395, 0.03256412595510483, -0.02558484487235546, -0.01562446728348732, 0.03335323929786682, -0.03470350056886673, -0.015834897756576538, 0.03650969639420509, 0.029337523505091667, -0.002786012599244714, -0.024111831560730934, -0.0008291181875392795, -0.03892964869737625, 0.0009787211893126369, -0.010223416611552238, 0.011117746122181416, 0.021744487807154655, -0.007864841260015965, -0.007970056496560574, -0.0057999915443360806, 0.034002065658569336, 0.04338376224040985, 0.012967781163752079, 0.04334868863224983, 0.06347987800836563, -0.03889457508921623, 0.017088713124394417, 0.05832432955503464, -0.02451515756547451, 0.07337011396884918, 0.04783787578344345, 0.01670292392373085, 0.01228388212621212, 0.01170519832521677, -0.03700070083141327, 0.02916216477751732, 0.037246204912662506, -0.01689581759274006, 0.00019412764231674373, -0.016255758702754974, -0.017001032829284668, -0.07137101888656616, 0.07151130586862564, 0.03931543603539467, 0.0022467842791229486, -0.03921022266149521, 0.0277943667024374, -0.010363703593611717, 0.030915752053260803, 0.08522436767816544, -0.03217833489179611, -0.04499706253409386, -0.038543857634067535, 0.023761114105582237, -0.022042598575353622, -0.03808792680501938, 0.011784110218286514, 0.005422970280051231, 0.01221373863518238, -0.036229122430086136, -0.018114561215043068, -0.0017678356962278485, -0.006931055802851915, -0.030793001875281334, -0.039701227098703384, -0.0038052855525165796, 0.084803506731987, -0.03210819140076637, 0.01565077155828476, -0.012134827673435211, 0.02446254901587963, 0.021937383338809013, 0.029442738741636276, -0.0339319221675396, 0.02916216477751732, -0.01794796995818615, -0.05723710358142853, 0.05372992902994156, 0.09932321310043335, 0.00779908150434494, 0.08564522862434387, 0.0101094339042902, -0.043068114668130875, 0.00896083377301693, -0.04762744531035423, -0.04348897561430931, -0.07063451409339905, 0.0016944041708484292, 0.010188344866037369, -0.03657983988523483, 0.002897803671658039, -0.07961288094520569, 0.022165348753333092, 0.021411307156085968, 0.008491748943924904, 0.07547441869974136, -0.023147357627749443, -0.04113917052745819, -0.07456254959106445, 0.012774886563420296, 0.000852682045660913, -0.03477364405989647, -0.018552958965301514, 0.06035849079489708, -0.025374414399266243, 0.0034962156787514687, 0.02358575537800789, -0.025304270908236504, -0.011924397200345993, -0.028776375576853752, 0.021797096356749535, -0.0584295429289341, -0.0028956118039786816, -0.03324802219867706, 0.018202241510152817, 0.009565820917487144, -0.036229122430086136, 0.016238221898674965, 0.05008246749639511, -0.00499334093183279, -0.020622191950678825, -0.03493146970868111, -0.00030276787583716214, 0.006347987800836563, 0.004202034790068865, -0.0034633358009159565, -0.02356822043657303, -0.0032594811636954546, -0.04464634507894516, -0.03368642181158066, -0.03542247414588928, 0.07547441869974136, -0.028548408299684525, 0.05688638612627983, 0.035124361515045166, -0.018552958965301514, -0.0009354294743388891, 0.053098637610673904, -0.05267777666449547, 0.01667661964893341, 0.003945572301745415, 0.004967037122696638, -0.04903031513094902, 0.006488274782896042, 0.007746473886072636, 0.029372595250606537, -0.06383059173822403, -0.03002142161130905, 0.05292327702045441, 0.00015124694618862122, 0.019517431035637856, 0.05583423376083374, 0.051765911281108856, 0.012029612436890602, 0.026233673095703125, 0.03696563094854355, -0.022989535704255104, 0.0693017914891243, 0.0051336283795535564, 0.05274792015552521, -0.007479051593691111, -0.02341039665043354, -0.04131452739238739, 0.016360973939299583, -0.010188344866037369, 0.08094561100006104, -0.07245824486017227, -0.01997336372733116, 0.004866206087172031, 0.04654021933674812, -0.018307456746697426, 0.014168988913297653, 0.014598618261516094, -0.04910045862197876, -0.04226146638393402, -0.029898671433329582, 0.04131452739238739, -0.017474502325057983, -0.04362926259636879, -0.004370817448943853, 0.0356329046189785, 0.011871789582073689, 0.06688183546066284, 0.019377144053578377, -0.03456321358680725, 0.02349807694554329, 0.0312664695084095, 0.0021306092385202646, -0.007816617377102375, 0.022884320467710495, 0.04597907140851021, -0.04601414129137993, -0.0023410397116094828, 0.006290995981544256, 0.013222051784396172, 0.01802688278257847, -0.038438644260168076, -0.06670647859573364, 0.02905694954097271, -0.06526853889226913, -0.01992075704038143, -0.00789114460349083, -0.012494312599301338, 0.04278754070401192, 0.03137168660759926, -0.06025327742099762, -0.03556276112794876, -0.004905661568045616, -0.011108978651463985, -0.001270255190320313, 0.013572769239544868, -0.06162107363343239, -0.011003763414919376, 0.004603167995810509, -0.04903031513094902, -0.037316348403692245, -0.05109954625368118, -0.027548864483833313, 0.01228388212621212, 0.02027147449553013, -0.013379874639213085, 0.009022208862006664, 0.0534493550658226, -0.018570493906736374, -0.02251606620848179, -0.006198932882398367, -0.006790768820792437, 0.01771123707294464, 0.03486132621765137, 0.02451515756547451, -0.02584788389503956, 0.04692601040005684, 0.020481904968619347, 0.047522228211164474, -0.021534057334065437, -0.009846394881606102, -0.028478264808654785, 0.020429298281669617, -0.04920567199587822, 0.005953430663794279, 0.024813266471028328, 0.007500971667468548, 0.08887182921171188, -0.044225484132766724, 0.0009633773006498814, -0.018482815474271774, -0.08508408069610596, -0.01693088933825493, -0.04762744531035423, -0.020464370027184486, 0.06404102593660355, -0.006286612246185541, 0.023164894431829453, 0.06383059173822403, 0.035159435123205185, 0.02772422321140766, -0.032774556428194046, 0.02116580493748188, 0.006102485582232475, 0.07435212284326553, 0.05769303813576698, 0.016334669664502144, 0.010749492794275284, 0.03808792680501938, -0.033879317343235016, 0.0062515405006706715, 0.02356822043657303, 0.01897381991147995, 0.0066504813730716705, -0.015457876026630402, 0.08326034992933273, -0.009048513136804104, 0.040753379464149475, -0.02000843547284603, -0.0079262163490057, -0.001742627820931375, 0.01003929041326046, -0.021411307156085968, -0.001124488189816475, -0.020832622423768044, -0.0015497332205995917, -0.029425201937556267, -0.055097728967666626, -0.012617063708603382, 0.06621547043323517, -0.005742999725043774, -0.008916993625462055, 0.02670714259147644, -0.029670704156160355, -0.02246345952153206, 0.004774142522364855, -0.07386111468076706, 0.002823276212438941, 0.009592125192284584, -0.01578228920698166, -0.030494891107082367, -0.0031783778686076403, 0.025269199162721634, 0.01512469444423914, -0.012047148309648037, 0.0018083873437717557, 0.013528930023312569, 0.018552958965301514, -0.009872699156403542, 0.0065847220830619335, 0.0075974189676344395, -0.0040814755484461784, 0.008228710852563381, -0.024988625198602676, 0.024971090257167816, -0.0025251663755625486, -0.06025327742099762, -0.026356423273682594, -0.051976341754198074, -0.06796906143426895, -0.028864054009318352, 0.026373960077762604, -0.020867694169282913, 0.07130087912082672, 0.05211662873625755, -0.01563323475420475, -0.006470738910138607, 0.0010083129163831472, 0.007645642850548029, -0.05036304146051407, 0.00786922499537468, -0.06996814906597137, -0.051941268146038055, -0.05267777666449547, 0.030617643147706985, -0.02346300520002842, -0.0470312237739563, 0.008807394653558731, -0.028706232085824013, -0.05120476335287094, -0.01682567410171032, 0.007413292303681374, 0.04362926259636879, 0.08276934176683426, -0.013099300675094128, 0.02242838777601719, 0.012099755927920341, -0.057657964527606964, -0.03882443159818649, -0.026233673095703125, 0.01176657434552908, -0.0020330657716840506, -0.006738161202520132, -0.01893874816596508, -0.0018763388507068157, -0.03256412595510483, 0.07631614059209824, -0.0033888083416968584, -0.06814441829919815, -0.015001943334937096, -0.012292650528252125, -0.05180098116397858, 0.08059489727020264, 0.07792943716049194, 0.03703577443957329, -0.0169659610837698, -0.00238487939350307, -0.0447164885699749, 0.0030315148178488016, 0.0093992305919528, 0.03728127479553223, -0.026198601350188255, 0.00002787930498016067, -0.05927126482129097, 0.003281401004642248, 0.006615409627556801, 0.010162041522562504, -0.05786839500069618, -0.012082220055162907, -0.022901855409145355, -0.05607973784208298, 0.017483269795775414, -0.03273948282003403, -0.016518795862793922, 0.006790768820792437, -0.1026199534535408, -0.048469167202711105, 0.03240630030632019, 0.08501393347978592, 0.010100665502250195, 0.03584333509206772, -0.03130154311656952, -0.037386491894721985, 0.024339798837900162, -0.05906083434820175, 0.0022204804699867964, 0.040788453072309494, 0.0015650771092623472, 0.03456321358680725, -0.013844575732946396, 0.021604200825095177, -0.007514123804867268, 0.04468141496181488, 0.011749038472771645, -0.015291285701096058, 0.0018533230759203434, -0.0021130733657628298, -0.022954463958740234, -0.05225691571831703, 0.03544000908732414, -0.0014478059019893408, -0.01346755400300026, 0.017465734854340553, 0.05134505033493042, 0.005159932188689709, -0.09420273452997208, -0.0028320441488176584, -0.04482170194387436, 0.009846394881606102, 0.021849703043699265, -0.009837627410888672, -0.044330697506666183, 0.01781645230948925, 0.024988625198602676, -0.06505810469388962, 0.014668761752545834, 0.02346300520002842, 0.029460273683071136, 0.03472103923559189, -0.00893452949821949, -0.021989990025758743, -0.001990322023630142, -0.02232317253947258, 0.011617518961429596, 0.020692335441708565, -0.015343893319368362, 0.018710780888795853, 0.04254204034805298, -0.020937837660312653, -0.03214326500892639, -0.02000843547284603, 0.024813266471028328, 0.054010502994060516, 0.07771901041269302, -0.045067206025123596, 0.05159055069088936, 0.02470805123448372, -0.062532939016819, -0.03935050964355469, -0.013511394150555134, -0.04931088909506798, 0.006365523673593998, 0.025216592475771904, -0.0105565981939435, 0.01577352173626423, 0.049696676433086395, 0.011003763414919376, -0.0534493550658226, -0.041735388338565826, -0.025427022948861122, -0.04208610579371452, 0.004405889194458723, 0.046294715255498886, -0.04829380661249161, -0.03472103923559189, -0.0014379419153556228, 0.03679027035832405, -0.0339319221675396, -0.00790429674088955, 0.009364158846437931, 0.004388353321701288, 0.0035137515515089035, -0.062041934579610825, -0.035212043672800064, -0.0233402531594038, 0.011319409124553204, -0.04692601040005684, -0.021691881120204926, 0.02132362686097622, 0.011749038472771645, 0.0579034686088562, -0.02805740386247635, 0.054010502994060516, -0.06993307918310165, -0.016080399975180626, -0.04706629738211632, 0.00846106093376875, -0.004914429504424334, -0.012713511474430561, -0.015905041247606277, -0.021463913843035698, 0.02121841162443161, 0.04261218383908272, 0.050643615424633026, -0.0050108772702515125, 0.035036683082580566, 0.010363703593611717, -0.05664088577032089, -0.013476322405040264, -0.015992719680070877, 0.02251606620848179, 0.03442292660474777, 0.01390595082193613, 0.030757930129766464, 0.04482170194387436, 0.005431738216429949, -0.03009156696498394, 0.07505355775356293, -0.037421561777591705, -0.00646197097375989, 0.022060133516788483, -0.04615442827343941, -0.09841134399175644, 0.05667595565319061, -0.02234070748090744, -0.004782910458743572, -0.023638363927602768, -0.002051697578281164, 0.05225691571831703, 0.00047319469740614295, 0.046189501881599426, 0.062532939016819, -0.01001298613846302, -0.012134827673435211, -0.07652656733989716, -0.03686041384935379, -0.0222705639898777, 0.03193283453583717, 0.012064684182405472, -0.024094296619296074, -0.04773265868425369, 0.046294715255498886, -0.014773976989090443, -0.01677306741476059, 0.07926216721534729, -0.03579072654247284, 0.03272194787859917, 0.017395591363310814, 0.053168781101703644, -0.017255304381251335, -0.0022380163427442312, 0.0065847220830619335, -0.011152817867696285, -0.015913808718323708, 0.046435002237558365, -0.02803986892104149, 0.0400870181620121, -0.020481904968619347, 0.008395301178097725, 0.058850403875112534, -0.024778194725513458, 0.06954728811979294, 0.01563323475420475, 0.05155548080801964, 0.02684742957353592, -0.023918937891721725, -0.061796434223651886, 0.0006784192519262433, 0.05376500263810158, -0.037526778876781464, 0.060674138367176056, -0.05955183878540993, -0.004269986413419247, 0.048469167202711105, -0.04541792348027229, -0.030775465071201324, 0.04997725039720535, 0.04152495786547661, -0.0014160220744088292, 0.02356822043657303, 0.031950369477272034, -0.014896728098392487, 0.03273948282003403, 0.017316678538918495, 0.029319986701011658, 0.03763199225068092, -0.0491706021130085, -0.00693543953821063, -0.04278754070401192, -0.011459696106612682, -0.02576020359992981, -0.042927827686071396, 0.044155340641736984, 0.01992075704038143, 0.054080646485090256, -0.03679027035832405, -0.01170519832521677, -0.023182429373264313, 0.04376954957842827, 0.018114561215043068, -0.0005367622361518443, -0.001420406042598188, -0.03009156696498394, -0.056220024824142456, -0.004002564121037722, 0.04594399780035019, -0.08108589798212051, -0.017334215342998505, 0.03459828719496727, 0.04261218383908272, -0.008255014196038246, -0.04832888022065163, -0.00583506328985095, -0.01693088933825493, -0.029916206374764442, 0.009767483919858932, -0.016474956646561623, -0.0009162495844066143, 0.014335580170154572 ]
7,402
uuid
uuid3
Generate a UUID from the MD5 hash of a namespace UUID and a name.
def uuid3(namespace, name): """Generate a UUID from the MD5 hash of a namespace UUID and a name.""" from hashlib import md5 digest = md5( namespace.bytes + bytes(name, "utf-8"), usedforsecurity=False ).digest() return UUID(bytes=digest[:16], version=3)
(namespace, name)
[ -0.04703144729137421, -0.0009608528343960643, -0.024111058562994003, -0.03566755726933479, -0.01582014560699463, -0.020836718380451202, -0.03388155251741409, 0.008238382637500763, 0.03817146643996239, -0.011503969319164753, 0.04139327630400658, 0.07970482110977173, 0.0014544116565957665, 0.027105242013931274, 0.014069161377847195, -0.0034363074228167534, 0.009175159968435764, 0.07494214177131653, -0.05386028811335564, -0.022605212405323982, 0.013368767686188221, 0.006767555605620146, -0.02904883585870266, 0.0029263331089168787, 0.024531295523047447, 0.0014314299914985895, -0.024426236748695374, 0.05077855661511421, -0.018175220116972923, -0.0027884431183338165, -0.005870176013559103, -0.020101303234696388, 0.03085234947502613, 0.039852410554885864, 0.0331636480987072, -0.04296916350722313, 0.017930082976818085, -0.005073477979749441, -0.03262084349989891, -0.012510785833001137, 0.08264647424221039, -0.013981612399220467, -0.04083296284079552, -0.034546926617622375, 0.02901381626725197, 0.016275402158498764, 0.07956474274396896, -0.007594896014779806, -0.07207053154706955, 0.03950221464037895, 0.05074353516101837, 0.028278402984142303, 0.025039080530405045, 0.006947031710296869, 0.012396971695125103, -0.0025498713366687298, -0.005839534103870392, -0.017273463308811188, -0.051689065992832184, 0.05067349597811699, 0.017886308953166008, 0.01764116995036602, 0.031027449294924736, -0.0016634354833513498, -0.08572821319103241, 0.004753923509269953, 0.00432712072506547, -0.04184853285551071, -0.04762678220868111, -0.006255392916500568, 0.023830901831388474, 0.03705083578824997, 0.02188730798661709, -0.038101427257061005, 0.09203175455331802, 0.03617534413933754, 0.06373584270477295, 0.020924266427755356, -0.035720087587833405, 0.019978735595941544, 0.022692760452628136, -0.06314050406217575, -0.018560437485575676, 0.008798697963356972, 0.022465134039521217, 0.04601587727665901, -0.03820648416876793, -0.03262084349989891, -0.019453439861536026, -0.04394971579313278, -0.031920451670885086, -0.020153833553195, -0.031325116753578186, 0.06671251356601715, 0.030116936191916466, -0.05722218006849289, 0.017912574112415314, -0.02876867726445198, -0.005782627034932375, -0.004495653323829174, 0.012896002270281315, -0.02493402175605297, -0.11717589199542999, -0.01982114650309086, -0.0032108682207763195, -0.03109748847782612, -0.01687949150800705, 0.03379400447010994, -0.028611090034246445, -0.05063847824931145, 0.005673190113157034, 0.025424297899007797, 0.04475516825914383, 0.0258095134049654, 0.044054772704839706, -0.052949775010347366, 0.03918703645467758, -0.00007893110887380317, 0.019383400678634644, -0.027490459382534027, 0.007161527406424284, 0.004022887442260981, 0.0010013444116339087, 0.04472014680504799, 0.017466071993112564, 0.006596834864467382, -0.04363453760743141, 0.006618721876293421, -0.0010670062620192766, 0.005174159538000822, 0.014506908133625984, 0.034546926617622375, -0.026212239637970924, -0.0492376871407032, 0.02342817559838295, -0.005550621543079615, 0.020626598969101906, 0.047556743025779724, -0.017816269770264626, 0.0722806453704834, 0.021204425022006035, 0.028873737901449203, 0.01110124308615923, 0.030887369066476822, -0.008448501117527485, 0.00807641725987196, -0.027437929064035416, -0.04198861122131348, -0.05571633204817772, -0.02488149143755436, 0.05802763253450394, 0.005896440707147121, 0.05428052321076393, 0.06912887841463089, -0.008833717554807663, -0.06538176536560059, -0.01392908301204443, -0.09112124145030975, -0.0305721927434206, -0.029539112001657486, 0.005765117239207029, 0.01764116995036602, -0.024723904207348824, -0.04829215630888939, -0.0009947781218215823, -0.013053590431809425, 0.0444750115275383, 0.010006877593696117, -0.010575947351753712, -0.03025701455771923, -0.04170845448970795, 0.03290100023150444, -0.0034603835083544254, 0.06909385323524475, -0.060969285666942596, -0.03593020513653755, -0.05133887007832527, -0.033969104290008545, 0.006014632526785135, 0.0011819147039204836, 0.014261770062148571, -0.03330373018980026, 0.07368143647909164, 0.03195546939969063, 0.026457378640770912, 0.001309955376200378, 0.014025387354195118, 0.10547931492328644, 0.10975171625614166, -0.051724087446928024, 0.005471826996654272, 0.03230566903948784, -0.05659182369709015, 0.062370073050260544, 0.04443999007344246, -0.03694577515125275, 0.002598023507744074, 0.001618566457182169, -0.025721965357661247, -0.026177220046520233, 0.005918328184634447, 0.011827901005744934, 0.001435807440429926, -0.035404909402132034, 0.033041082322597504, -0.09098116308450699, 0.03559751808643341, -0.006329809781163931, 0.026755046099424362, -0.013193669728934765, 0.03729597479104996, 0.008549182675778866, 0.004985929001122713, 0.08986053615808487, -0.07410167157649994, -0.009928083047270775, 0.001743324100971222, 0.0022073350846767426, 0.05547119304537773, -0.013482581824064255, -0.015531234443187714, 0.059988733381032944, 0.03447688743472099, 0.012388216331601143, -0.07137013226747513, -0.03487961366772652, 0.015128507278859615, -0.00009466260962653905, -0.03698079660534859, -0.033391278237104416, 0.09595396369695663, -0.03771620988845825, 0.024828962981700897, 0.03496716544032097, 0.017982613295316696, -0.01112750731408596, 0.003946281503885984, -0.05445562303066254, 0.06138952076435089, -0.027070222422480583, -0.028926266357302666, -0.030782310292124748, 0.06608216464519501, 0.11493463069200516, 0.04170845448970795, 0.04556062072515488, -0.04479018971323967, -0.020048774778842926, -0.010409603826701641, -0.06142454221844673, -0.09630415588617325, 0.05193420499563217, -0.027105242013931274, -0.006806952878832817, 0.0005630510277114809, -0.01671314798295498, -0.001424863818101585, -0.010181975550949574, 0.013246199116110802, 0.04860733449459076, -0.014506908133625984, -0.07003938406705856, -0.011302606202661991, 0.00047495460603386164, 0.020609090104699135, -0.04528046399354935, -0.02225501462817192, 0.046961408108472824, -0.022027386352419853, -0.03533487021923065, 0.05627664551138878, 0.024461256340146065, 0.015198547393083572, -0.047906938940286636, -0.006382339168339968, -0.07536237686872482, -0.0094815818592906, -0.005213556811213493, 0.020293911918997765, -0.03230566903948784, -0.009113875217735767, -0.002385716652497649, 0.005314238369464874, -0.005301106255501509, 0.03209554776549339, 0.02341066487133503, 0.004915889352560043, -0.023655802011489868, 0.02221999503672123, 0.02073165774345398, -0.008382839150726795, -0.04160339757800102, -0.04468512907624245, -0.03461696580052376, -0.06447125226259232, 0.05907822400331497, -0.043459437787532806, 0.04244386777281761, 0.07021448761224747, 0.03566755726933479, -0.053229935467243195, 0.07263084501028061, 0.03550997003912926, 0.013071100227534771, -0.014147955924272537, 0.011906695552170277, -0.03845162317156792, -0.004432179965078831, -0.01734350249171257, 0.02876867726445198, -0.04633105546236038, -0.013859043829143047, -0.011066223494708538, 0.037786249071359634, 0.052879735827445984, 0.08439745754003525, 0.03356637433171272, -0.062370073050260544, 0.02638733945786953, 0.016940776258707047, -0.007673690095543861, 0.007376023102551699, -0.029539112001657486, -0.00872865878045559, -0.0516190268099308, -0.05337001383304596, -0.06821836531162262, 0.029241444543004036, 0.02752547897398472, 0.0011206301860511303, -0.06107434630393982, 0.012046774849295616, 0.02670251578092575, 0.00031271492480300367, -0.03388155251741409, 0.0037580509670078754, 0.04118315875530243, -0.03249827399849892, -0.017597395926713943, -0.014463133178651333, 0.04216371104121208, -0.0258095134049654, -0.022692760452628136, 0.02220248617231846, -0.02102932520210743, 0.018192730844020844, 0.000017903133993968368, 0.01214307826012373, 0.0075292340479791164, -0.05035831779241562, 0.0048633599653840065, 0.008627977222204208, 0.028050774708390236, 0.02845350094139576, 0.023323114961385727, -0.00906134583055973, 0.025424297899007797, -0.013071100227534771, -0.005913950502872467, 0.009831778705120087, -0.04170845448970795, -0.05568131431937218, 0.034827083349227905, -0.036595579236745834, 0.0361403226852417, -0.003742729779332876, -0.01125883124768734, 0.009280218742787838, -0.020854227244853973, -0.014051651582121849, -0.022149955853819847, -0.002008160576224327, 0.014305545017123222, -0.012668373994529247, 0.0011315738083794713, -0.050253260880708694, 0.02167719043791294, -0.03165780380368233, -0.01633668690919876, -0.029889307916164398, -0.028068283572793007, -0.019418420270085335, 0.001903101452626288, 0.022430114448070526, -0.0014434680342674255, 0.0038565436843782663, 0.020363951101899147, 0.0007310361252166331, -0.020539050921797752, 0.05512099713087082, -0.005191669333726168, 0.05123381316661835, 0.10793069750070572, 0.018735535442829132, -0.044580068439245224, 0.051478948444128036, -0.0663272961974144, -0.02341066487133503, -0.0734713152050972, 0.04293414577841759, -0.07284095883369446, 0.003961602691560984, 0.03374147415161133, 0.0005657869041897357, 0.009507847018539906, 0.026825085282325745, 0.042548928409814835, 0.0007775466074235737, 0.014944653958082199, -0.051724087446928024, -0.0762728899717331, -0.010908634401857853, -0.04261896759271622, -0.03267337381839752, 0.12852227687835693, -0.006294789724051952, 0.04713650792837143, -0.009472827427089214, 0.003727408591657877, 0.02344568446278572, -0.046716272830963135, -0.01901569403707981, 0.010313299484550953, 0.039607271552085876, 0.007292851340025663, 0.015014693140983582, 0.00005605202750302851, 0.0516190268099308, 0.015216057188808918, 0.02080169878900051, -0.03325119987130165, 0.021519601345062256, 0.02612469159066677, -0.0825764387845993, 0.09385278075933456, 0.006421736441552639, 0.010637232102453709, -0.0020486521534621716, -0.002987617626786232, 0.018753046169877052, 0.006859482266008854, -0.022430114448070526, -0.039257075637578964, -0.03447688743472099, -0.047241564840078354, -0.009157650172710419, -0.04780188202857971, -0.007205301895737648, 0.027507970109581947, -0.013605151325464249, 0.012256892397999763, 0.035107243806123734, -0.036875735968351364, -0.05095365270972252, 0.04009754955768585, -0.04293414577841759, -0.004257081542164087, -0.03258582577109337, 0.0019195169443264604, -0.04265398532152176, -0.05277467891573906, 0.0575723759829998, 0.03729597479104996, -0.006675628945231438, -0.029276464134454727, -0.03694577515125275, 0.004526295233517885, -0.030432114377617836, 0.011223811656236649, -0.0007594896014779806, 0.04408979415893555, 0.010453378781676292, 0.018000122159719467, 0.037225935608148575, 0.0048195854760706425, -0.012790943495929241, 0.005673190113157034, 0.002692139009013772, -0.06338564306497574, 0.013789004646241665, 0.060584068298339844, 0.0037361634895205498, 0.02017134428024292, 0.061564620584249496, -0.023323114961385727, 0.02257019281387329, 0.003955036401748657, 0.04528046399354935, 0.010462133213877678, 0.020381461828947067, -0.024776432663202286, -0.00004384301428217441, -0.03617534413933754, 0.033076100051403046, 0.043739598244428635, -0.03505471348762512, 0.013395032845437527, 0.026212239637970924, -0.09364265948534012, -0.008676129393279552, -0.011232567019760609, -0.008312799967825413, 0.04153335466980934, -0.013071100227534771, 0.006487398408353329, 0.006653741933405399, -0.04037770628929138, -0.0534050315618515, 0.05753735452890396, -0.018157711252570152, -0.02966167964041233, 0.01139015518128872, 0.00964792538434267, -0.005765117239207029, -0.0013493525329977274, 0.009376523084938526, -0.050218239426612854, -0.04916764795780182, -0.040797941386699677, -0.009332748129963875, -0.02789318561553955, 0.06426113843917847, 0.0035369889810681343, 0.004574447404593229, -0.035422418266534805, -0.020101303234696388, 0.019646048545837402, -0.010768556036055088, 0.009367767721414566, 0.04661121219396591, -0.04559564217925072, 0.04247888922691345, -0.016984552145004272, -0.024233628064393997, -0.00467950664460659, -0.01481333002448082, -0.08930021524429321, 0.027963224798440933, -0.01511099748313427, -0.030782310292124748, -0.013745229691267014, 0.004631354473531246, -0.018525417894124985, -0.006054029334336519, -0.07921454310417175, 0.05196922644972801, 0.00003970494435634464, 0.05512099713087082, 0.007743729744106531, 0.02339315600693226, -0.01959351822733879, -0.0135000916197896, 0.0021942027378827333, -0.05424550548195839, 0.012782188132405281, -0.028295911848545074, 0.0033881552517414093, -0.04233881086111069, -0.023480704054236412, 0.020626598969101906, -0.042513906955718994, 0.05666186287999153, 0.043984733521938324, -0.0020256703719496727, -0.0156888235360384, -0.013132384978234768, -0.02165967971086502, -0.059463437646627426, 0.008317177183926105, 0.04170845448970795, -0.022360073402523994, 0.012869737111032009, 0.10393845289945602, 0.06300042569637299, -0.059428419917821884, -0.00835657399147749, 0.01790381781756878, -0.05137389153242111, 0.03638546168804169, 0.00248639821074903, 0.004005377646535635, 0.04128821939229965, -0.018472887575626373, -0.016074039041996002, 0.044580068439245224, 0.0397123321890831, 0.018893124535679817, 0.017185915261507034, 0.01228315755724907, -0.028996305540204048, -0.026597457006573677, 0.00965668074786663, 0.003407853888347745, 0.016362952068448067, 0.015627538785338402, -0.020539050921797752, 0.007586141116917133, -0.0023178658448159695, -0.01929585076868534, -0.01316740456968546, 0.028611090034246445, 0.06653741747140884, 0.011074977926909924, 0.06443623453378677, 0.042233750224113464, 0.052914757281541824, -0.08663871884346008, -0.06804326176643372, -0.024513784795999527, -0.002339753322303295, -0.014375584200024605, -0.024828962981700897, 0.0025279840920120478, -0.03269088268280029, 0.059148263186216354, -0.00592708308249712, -0.06170469895005226, -0.04097304120659828, -0.05277467891573906, -0.024128569290041924, -0.009131385013461113, 0.01989118568599224, -0.015461194328963757, 0.032778434455394745, 0.027980735525488853, -0.006010254845023155, -0.006019009742885828, 0.024811452254652977, -0.004230816848576069, -0.03150021284818649, 0.0029569752514362335, -0.04468512907624245, -0.013368767686188221, -0.07851415127515793, -0.01901569403707981, 0.012860982678830624, 0.0024119813460856676, 0.03479206562042236, 0.007857543416321278, 0.013158650137484074, 0.004933399148285389, 0.03817146643996239, -0.020031264051795006, 0.004005377646535635, -0.00391782820224762, -0.01709836535155773, 0.011582763865590096, -0.06965416669845581, -0.017667435109615326, -0.06545180827379227, 0.003350946819409728, -0.011906695552170277, 0.05925332009792328, 0.005918328184634447, 0.02722781151533127, 0.015645047649741173, -0.0016371706733480096, 0.0030686005484312773, 0.018542926758527756, -0.03743605315685272, -0.0025454938877373934, -0.0018823085119947791, -0.012790943495929241, 0.04766180366277695, 0.011022448539733887, 0.00046866197953931987, 0.05000812187790871, -0.056451745331287384, -0.030134446918964386, -0.040447745472192764, -0.07038958370685577, 0.022657740861177444, 0.0675179660320282, -0.000005523125309991883, -0.029766740277409554, -0.02845350094139576, 0.04619097709655762, 0.04317928105592728, 0.01864798739552498, 0.013018570840358734, 0.013587640598416328, -0.037506092339754105, 0.011302606202661991, -0.03946719318628311, -0.0004897285252809525, 0.005375523120164871, -0.011871675960719585, 0.024461256340146065, -0.03051966242492199, -0.003526045475155115, -0.005436807405203581, 0.038101427257061005, -0.055015940219163895, 0.05074353516101837, -0.010637232102453709, 0.024426236748695374, 0.05715214088559151, 0.07445187121629715, 0.002814707811921835, -0.007275341544300318, 0.03468700498342514, -0.023568253964185715, 0.022972919046878815, -0.009227689355611801, -0.03496716544032097, 0.018455378711223602, -0.011547744274139404, -0.020661618560552597, 0.03470451757311821, 0.005975235253572464, 0.02286786027252674, -0.011530234478414059, -0.0037886931095272303, 0.04153335466980934, -0.0011654992122203112, -0.008159589022397995, -0.07795383781194687, 0.021782249212265015, -0.03022199496626854, 0.015750106424093246, -0.018455378711223602, 0.02370833232998848, 0.024811452254652977, -0.010278279893100262, -0.049097608774900436, 0.01320242416113615, 0.007612405810505152, 0.023655802011489868, -0.01244074571877718, 0.048187099397182465, 0.0033662680070847273, 0.0409030020236969, -0.028698638081550598, 0.04598085582256317, 0.03255080431699753, -0.013018570840358734, 0.04009754955768585, -0.06384090334177017, -0.04570069909095764, 0.013964102603495121, -0.012598334811627865, 0.04426489397883415, -0.029153894633054733, 0.06730785220861435, 0.009507847018539906, -0.0183678288012743, -0.005918328184634447, 0.026860104873776436, 0.003589518601074815, 0.0028037643060088158, 0.024408726021647453, 0.04811706021428108, -0.03656056150794029, -0.019978735595941544, 0.045840777456760406, -0.06716777384281158, 0.021256953477859497, 0.011153772473335266, 0.040202606469392776, -0.057082101702690125, -0.06205489858984947, 0.04065786302089691, -0.014305545017123222, -0.024408726021647453, 0.00658807996660471, -0.00012551003601402044, 0.040447745472192764, -0.02316552773118019 ]
7,403
uuid
uuid4
Generate a random UUID.
def uuid4(): """Generate a random UUID.""" return UUID(bytes=os.urandom(16), version=4)
()
[ -0.015329703688621521, 0.00026984827127307653, -0.011689944192767143, -0.030473705381155014, 0.019387293606996536, -0.02380700223147869, 0.0041666897013783455, 0.035004835575819016, -0.000582059845328331, 0.018235940486192703, 0.03847746551036835, 0.029248071834445, -0.012423466891050339, 0.0850515365600586, 0.03117937408387661, -0.018300935626029968, -0.032070744782686234, 0.028152430430054665, 0.0195358544588089, -0.029600905254483223, -0.023101333528757095, 0.051290903240442276, 0.0009430181817151606, 0.024289827793836594, 0.02352844923734665, 0.07580357789993286, -0.010733578354120255, 0.015738248825073242, 0.03429916873574257, -0.021448586136102676, 0.029415203258395195, 0.00844015832990408, -0.011597092263400555, 0.03277641162276268, 0.041857242584228516, 0.005519993137568235, -0.00029799374169670045, 0.004173653665930033, -0.061393097043037415, -0.02033437415957451, 0.036137618124485016, 0.0027391051407903433, -0.02579401433467865, -0.013834802433848381, -0.052219416946172714, -0.012683449313044548, 0.05285080149769783, -0.012655594386160374, -0.02352844923734665, 0.0274653322994709, 0.08252599090337753, 0.043639980256557465, 0.04612838849425316, 0.0200186800211668, 0.018254511058330536, 0.01096570584923029, 0.016100367531180382, 0.004851466044783592, -0.028505263850092888, 0.0005768369883298874, 0.02592400461435318, 0.024048414081335068, -0.004893248900771141, -0.04378854110836983, 0.013556249439716339, 0.0031151517760008574, -0.009944344870746136, 0.0009018155396915972, -0.008101251907646656, 0.026555392891168594, 0.025218337774276733, 0.018124518916010857, -0.029545195400714874, -0.002314311685040593, 0.03741896152496338, 0.03764180466532707, -0.042637187987565994, 0.015413269400596619, 0.03862602636218071, -0.014605466276407242, 0.02950805425643921, -0.055004946887493134, 0.01579395867884159, -0.00656456733122468, -0.010380744002759457, -0.004278110805898905, -0.016638902947306633, -0.016035372391343117, -0.020260093733668327, -0.024289827793836594, 0.0037233259063214064, 0.010817144066095352, -0.03780893608927727, 0.03563622385263443, -0.018096664920449257, -0.046834055334329605, 0.04757686331868172, 0.019443003460764885, 0.008974051102995872, 0.026351120322942734, -0.003317102789878845, -0.0019208554876968265, -0.13259126245975494, -0.05203371122479439, -0.06317583471536636, 0.006694558542221785, -0.010659296996891499, 0.05745621398091316, -0.012414181604981422, -0.03296211361885071, -0.019313013181090355, 0.008161605335772038, 0.03179218992590904, 0.010668582282960415, 0.007715919986367226, -0.013082709163427353, -0.020315803587436676, -0.04668549448251724, 0.03025086224079132, -0.031680770218372345, -0.013361262157559395, 0.00044655537931248546, -0.028282420709729195, 0.004832895938307047, 0.05470782145857811, -0.009721501730382442, -0.05359360948204994, -0.05325934663414955, 0.00033426369191147387, 0.01199635211378336, 0.02739105187356472, 0.09946201741695404, 0.008899770677089691, -0.02612827718257904, 0.023101333528757095, -0.016889600083231926, -0.01865377090871334, 0.04389996454119682, -0.0025417967699468136, 0.05990748107433319, 0.03357493132352829, -0.005143946502357721, 0.07829198241233826, 0.05355646833777428, 0.04579412564635277, 0.03528339043259621, 0.011699228547513485, -0.015766102820634842, -0.06391864269971848, -0.01857949048280716, 0.06722413748502731, 0.014252631925046444, 0.05351933091878891, 0.025032635778188705, -0.05363075062632561, -0.06057600677013397, -0.03855174407362938, -0.0895826667547226, 0.019665846601128578, -0.12078060954809189, 0.006323154550045729, -0.017502417787909508, 0.011559952050447464, -0.06532997637987137, 0.03578478470444679, 0.05366789177060127, 0.0188858974725008, 0.024642661213874817, 0.03548765927553177, -0.027335340157151222, 0.008105894550681114, 0.044382788240909576, -0.005496780388057232, 0.031216513365507126, -0.021318593993782997, 0.014596180990338326, -0.037400390952825546, 0.018412357196211815, 0.010724293068051338, 0.035469092428684235, 0.0736122876405716, -0.008616575039923191, 0.028171001002192497, 0.03004659153521061, 0.08222886919975281, 0.0003902644675690681, 0.034540578722953796, 0.05582203343510628, 0.04378854110836983, -0.04765114560723305, -0.011030701920390129, -0.01597966067492962, -0.0022121756337583065, 0.04256290942430496, 0.01907159946858883, 0.009740072302520275, 0.04007450118660927, -0.03264642134308815, -0.04460563138127327, -0.053742170333862305, 0.03970309719443321, 0.006629562936723232, 0.00002020235115196556, -0.10384458303451538, -0.026276839897036552, -0.06711272150278091, -0.011049271561205387, 0.00018570203974377364, 0.018180230632424355, 0.012711305171251297, 0.059201810508966446, -0.020464366301894188, 0.04000021889805794, 0.07806914299726486, -0.022655649110674858, -0.06161594018340111, 0.03814319893717766, -0.019331583753228188, 0.007428081706166267, -0.028802387416362762, 0.021782848984003067, 0.04341713711619377, -0.017892392352223396, -0.008867273107171059, -0.0018802331760525703, -0.04482847452163696, -0.034150607883930206, -0.04300859197974205, -0.05949893593788147, -0.06878403574228287, 0.04401138424873352, -0.04059446603059769, 0.036936137825250626, 0.0017514023929834366, -0.01100284606218338, -0.04300859197974205, 0.02997230924665928, -0.05775333568453789, 0.020185811445116997, -0.03483770415186882, -0.00684776296839118, 0.016369635239243507, 0.12189482152462006, 0.08297167718410492, 0.061653077602386475, 0.044048525393009186, -0.09188537299633026, 0.014354768209159374, -0.012052062898874283, -0.07067819684743881, -0.05712194740772247, -0.01618393324315548, 0.002567330840975046, -0.017502417787909508, 0.011912786401808262, 0.007014894858002663, 0.012906292453408241, -0.006801337469369173, -0.022637078538537025, 0.05563633143901825, 0.00356547930277884, -0.019257301464676857, -0.07216381281614304, 0.022655649110674858, -0.00934081245213747, -0.01618393324315548, -0.03203360363841057, 0.04007450118660927, 0.02241423726081848, -0.0194244347512722, 0.18406786024570465, -0.0001266546023543924, 0.0006122364429756999, -0.022581368684768677, -0.012534888461232185, -0.0767320841550827, -0.03751181438565254, -0.016276784241199493, -0.002425733022391796, -0.0007683422300033271, -0.04519987851381302, 0.0028389201033860445, 0.02207997255027294, 0.01857949048280716, 0.013008427806198597, 0.0412258543074131, -0.008463370613753796, -0.0064485035836696625, 0.015626827254891396, 0.012395611964166164, -0.028226710855960846, -0.008249813690781593, -0.051216624677181244, -0.01749313250184059, -0.019238732755184174, 0.041448697447776794, 0.007534860633313656, 0.011643518693745136, 0.02625826932489872, -0.012451321817934513, -0.002516262698918581, 0.05299936234951019, -0.007924835197627544, 0.014939729124307632, -0.016221074387431145, 0.009702932089567184, 0.005835686810314655, -0.04765114560723305, -0.010705722495913506, -0.009795783087611198, -0.052219416946172714, -0.005116091575473547, 0.007975902408361435, 0.028022438287734985, 0.043120015412569046, 0.0667041763663292, 0.008416945114731789, 0.014670461416244507, -0.0015807886375114322, -0.006629562936723232, -0.06284157186746597, 0.06217304617166519, 0.03780893608927727, 0.00008951418567448854, -0.02393699437379837, 0.006439218297600746, -0.05790189653635025, 0.010185756720602512, -0.019183021038770676, 0.05273938179016113, -0.061318814754486084, -0.020761488005518913, 0.006211733445525169, -0.027836736291646957, 0.0075255753472447395, -0.0094429487362504, 0.04887677729129791, -0.01086356956511736, -0.03290640190243721, 0.02473551221191883, 0.018365932628512383, -0.020315803587436676, -0.0425257682800293, 0.03231215476989746, 0.0037581450305879116, 0.0333520881831646, 0.04297145456075668, 0.02172713913023472, 0.010455025359988213, -0.06117025390267372, 0.046239808201789856, 0.023881282657384872, -0.01150424126535654, -0.0029665902256965637, 0.0038858153857290745, -0.048765357583761215, 0.0012000994756817818, 0.10562732070684433, -0.0008768618572503328, 0.04679691419005394, -0.11431817710399628, -0.0824517086148262, 0.0241226963698864, -0.0212071742862463, -0.013110564090311527, 0.0007439688197337091, -0.037790365517139435, 0.014967584982514381, 0.010826429352164268, -0.014707601629197598, -0.01974012702703476, 0.03032514452934265, -0.006991682108491659, -0.026741094887256622, 0.020780058577656746, -0.015413269400596619, 0.008630502969026566, 0.026871085166931152, -0.032943543046712875, -0.017688119783997536, -0.06016746163368225, -0.021188603714108467, 0.035320527851581573, 0.022507088258862495, -0.029470914974808693, 0.011522811837494373, 0.05184800922870636, 0.0017618481069803238, -0.07286947965621948, 0.02027866244316101, -0.01711244322359562, -0.00720988167449832, 0.009048332460224628, 0.04156011715531349, -0.00388813647441566, 0.026741094887256622, -0.04954530671238899, 0.0051021636463701725, -0.0769549310207367, 0.027818165719509125, -0.012683449313044548, 0.060056041926145554, -0.02612827718257904, -0.01744670793414116, -0.0037442175671458244, 0.016731753945350647, 0.07546930760145187, -0.018133804202079773, -0.0016306961188092828, -0.05043667554855347, -0.022117113694548607, 0.027743885293602943, -0.07353801280260086, -0.0077577028423547745, 0.06674131751060486, 0.03988879919052124, 0.024029845371842384, 0.04274861142039299, 0.04375140368938446, 0.03212645277380943, -0.04174581915140152, 0.022581368684768677, -0.013249840587377548, 0.05756763368844986, -0.022525658831000328, 0.021374305710196495, 0.016843175515532494, 0.04798540845513344, 0.032664988189935684, -0.013853373005986214, 0.003702434478327632, -0.03855174407362938, 0.020891480147838593, -0.04475419223308563, 0.060798849910497665, -0.02653682231903076, 0.016378920525312424, 0.011587807908654213, -0.036137618124485016, 0.00997219979763031, -0.005538563709706068, -0.028486693277955055, -0.013175560161471367, -0.031810760498046875, 0.03628617897629738, -0.013379832729697227, -0.047762565314769745, -0.00571498041972518, 0.049285322427749634, 0.007121673319488764, -0.005673197563737631, 0.031272225081920624, -0.018635200336575508, -0.024048414081335068, 0.012451321817934513, 0.0000754414577386342, -0.010315748862922192, -0.016295354813337326, -0.028542404994368553, -0.05935037508606911, 0.018765192478895187, 0.016889600083231926, 0.013769806362688541, -0.026481112465262413, -0.043120015412569046, 0.05875612795352936, -0.008598004467785358, -0.015301848761737347, -0.013788376934826374, -0.004619338549673557, 0.04475419223308563, -0.013992649503052235, -0.002848205156624317, 0.015961090102791786, 0.014856163412332535, -0.01587752439081669, 0.010455025359988213, 0.0007300411816686392, -0.0013150025624781847, -0.00734451599419117, 0.009229391813278198, 0.026555392891168594, 0.013314836658537388, 0.04538558050990105, -0.02174570970237255, 0.019647276028990746, 0.00873728096485138, 0.05723337084054947, 0.0006395114469341934, 0.027093928307294846, -0.00900654960423708, 0.001867466140538454, -0.07558073103427887, -0.008481941185891628, 0.009721501730382442, -0.029340922832489014, -0.00934081245213747, -0.04534843936562538, -0.048356812447309494, -0.0017897034995257854, 0.031142232939600945, -0.029823748394846916, -0.008649072609841824, -0.00997219979763031, 0.027669604867696762, -0.008598004467785358, -0.028041008859872818, -0.045571282505989075, 0.010547876358032227, -0.01266487967222929, -0.006416005548089743, 0.022748500108718872, 0.00624887365847826, 0.026035426184535027, 0.007558073382824659, 0.07205239683389664, 0.017966672778129578, -0.060724567621946335, -0.00723309488967061, -0.042191505432128906, -0.04386282339692116, 0.07253521680831909, 0.03948025405406952, 0.007307375315576792, -0.045311298221349716, 0.001289468607865274, -0.02414126507937908, -0.007321303244680166, 0.02239566668868065, 0.08104037493467331, -0.0044939895160496235, 0.0321635939180851, -0.024976925924420357, -0.006680631078779697, -0.03818034008145332, 0.014800452627241611, -0.07580357789993286, -0.07283233851194382, -0.041188713163137436, -0.029340922832489014, -0.008124464191496372, -0.059461794793605804, -0.023231325671076775, -0.019164450466632843, -0.05645342171192169, -0.032330725342035294, 0.03322209417819977, 0.006662060972303152, 0.00550142303109169, -0.00020253128604963422, -0.02939663454890251, -0.0166203323751688, -0.012052062898874283, -0.1100841760635376, -0.0011530936462804675, -0.019832978025078773, 0.002286456525325775, -0.002206372329965234, -0.05545062944293022, 0.007813413627445698, -0.05240511894226074, 0.018625915050506592, 0.031123662367463112, -0.023361317813396454, 0.011699228547513485, 0.03840318322181702, -0.02878381684422493, 0.0008089645416475832, 0.02453123964369297, -0.04382568225264549, -0.04260005056858063, 0.01646248623728752, 0.07740060985088348, 0.016768895089626312, -0.11119838804006577, -0.00019223062554374337, -0.042785752564668655, 0.010835714638233185, 0.035264819860458374, -0.00360494083724916, -0.0639929249882698, 0.05084522068500519, -0.005325006321072578, -0.06287871301174164, 0.0033379942178726196, -0.04345427826046944, 0.012887721881270409, 0.009675076231360435, 0.020910050719976425, -0.03881172835826874, -0.029229501262307167, 0.01571967825293541, 0.010761433281004429, -0.018412357196211815, 0.02053864672780037, 0.0037418962456285954, 0.03795749694108963, -0.005919252522289753, -0.019591566175222397, -0.020575786009430885, 0.02440124936401844, 0.09990770369768143, 0.010585016570985317, -0.011448531411588192, 0.03736324980854988, 0.023974133655428886, -0.0388488695025444, -0.042451485991477966, -0.014104070141911507, 0.003484234679490328, -0.03636046126484871, -0.020185811445116997, -0.010157901793718338, -0.08512581884860992, 0.09099400043487549, -0.01791096292436123, -0.06711272150278091, -0.04104015231132507, -0.03485627472400665, -0.027112498879432678, 0.012590598315000534, 0.013853373005986214, -0.05244225636124611, -0.01927587203681469, 0.033667780458927155, 0.013509823940694332, 0.012832011096179485, -0.013361262157559395, -0.03309210389852524, 0.017353856936097145, -0.019721556454896927, -0.10154187679290771, -0.006708486471325159, -0.020835770294070244, -0.027873877435922623, -0.02146715670824051, 0.0005327327526174486, 0.05013955384492874, 0.02932235226035118, -0.023751292377710342, -0.024772653356194496, 0.050288114696741104, -0.022785641252994537, -0.03110509179532528, -0.020520076155662537, 0.014141210354864597, -0.051959432661533356, -0.03936883434653282, 0.002764639211818576, -0.07019536942243576, 0.004642551299184561, -0.049099620431661606, 0.05114234238862991, -0.018848758190870285, -0.010594301857054234, 0.006476358976215124, -0.016527481377124786, 0.010909995064139366, 0.021355735138058662, 0.00918760895729065, -0.0171867236495018, 0.03595191612839699, 0.02326846681535244, 0.0550420880317688, 0.04260005056858063, -0.006007461342960596, 0.044642772525548935, -0.021374305710196495, -0.022117113694548607, -0.03277641162276268, -0.0021854809019714594, -0.04375140368938446, 0.07888622581958771, -0.006290656980127096, -0.020891480147838593, -0.036193329840898514, -0.028171001002192497, 0.049099620431661606, 0.025831153616309166, 0.019777268171310425, 0.06651847064495087, -0.01791096292436123, 0.03238643705844879, -0.08089181035757065, -0.018003813922405243, -0.054150715470314026, -0.017567412927746773, 0.01389979850500822, -0.0027762455865740776, 0.0009441788424737751, -0.0064113629050552845, -0.006857047788798809, -0.010185756720602512, 0.03598905727267265, -0.019387293606996536, -0.00032352778362110257, 0.05771619454026222, 0.01688031665980816, -0.012516317889094353, -0.003033907152712345, -0.020761488005518913, 0.015608256682753563, 0.009299029596149921, 0.02646254189312458, -0.012144913896918297, 0.014029789716005325, -0.03244214877486229, 0.04260005056858063, 0.04345427826046944, -0.03524624928832054, 0.0836402028799057, -0.0006383507861755788, -0.020761488005518913, 0.010195042006671429, 0.022971343249082565, -0.005882112309336662, 0.021430015563964844, 0.056936245411634445, -0.024364108219742775, 0.022061403840780258, -0.06217304617166519, -0.01644391566514969, 0.00926188938319683, -0.02878381684422493, -0.03803177922964096, 0.018932323902845383, 0.01850520819425583, 0.004422029945999384, -0.020315803587436676, 0.05842186510562897, 0.022637078538537025, 0.044308509677648544, -0.03218216449022293, 0.031885042786598206, 0.00404598331078887, -0.03636046126484871, -0.007971260696649551, -0.012024207040667534, -0.0355619415640831, -0.024494100362062454, -0.04460563138127327, 0.04289717227220535, 0.037140410393476486, 0.053482189774513245, -0.008152320049703121, 0.009944344870746136, 0.02824528142809868, 0.03231215476989746, -0.003191753989085555, 0.025552600622177124, 0.009637936018407345, -0.0057939039543271065, -0.042377207428216934, 0.0026787519454956055, 0.03485627472400665, -0.047168318182229996, -0.027948157861828804, -0.004763257689774036, 0.03361206874251366, -0.021151462569832802, -0.04460563138127327, 0.05125376582145691, -0.05344504863023758, -0.011847790330648422, -0.00478647043928504, 0.04508845508098602, 0.03012087196111679, 0.04196866229176521 ]
7,404
uuid
uuid5
Generate a UUID from the SHA-1 hash of a namespace UUID and a name.
def uuid5(namespace, name): """Generate a UUID from the SHA-1 hash of a namespace UUID and a name.""" from hashlib import sha1 hash = sha1(namespace.bytes + bytes(name, "utf-8")).digest() return UUID(bytes=hash[:16], version=5)
(namespace, name)
[ -0.026650482788681984, -0.015301329083740711, -0.013209524564445019, -0.04696324095129967, -0.018746132031083107, -0.02501264400780201, -0.027255771681666374, -0.002828387077897787, 0.021380914375185966, -0.014001740142703056, 0.01622706465423107, 0.08395703136920929, 0.012346099130809307, 0.056790273636579514, 0.0224134661257267, -0.012880176305770874, 0.03311282396316528, 0.0833161398768425, -0.018390079960227013, -0.01865711808204651, 0.031101131811738014, 0.01247071661055088, -0.013218426145613194, 0.02565353736281395, 0.0027527259662747383, 0.005861504003405571, 0.0062042041681706905, 0.04293985664844513, -0.013369748368859291, -0.004005583468824625, -0.02884020283818245, -0.032952602952718735, 0.038061946630477905, 0.009729117155075073, 0.04304667189717293, -0.03909449651837349, 0.015960024669766426, 0.012301592156291008, -0.04913515970110893, -0.0008094616932794452, 0.08851449936628342, -0.014277679845690727, -0.04375877603888512, -0.029819345101714134, 0.016894660890102386, 0.027024338021874428, 0.05258886143565178, -0.0025057150050997734, -0.058641742914915085, 0.08167830109596252, 0.030958710238337517, 0.023517226800322533, 0.012915781699120998, 0.01215026993304491, 0.019582852721214294, 0.016324978321790695, -0.000992494635283947, -0.04272622615098953, -0.02948109619319439, 0.045182984322309494, -0.007000870071351528, 0.023873278871178627, 0.032382916659116745, -0.02312557026743889, -0.05956747755408287, 0.018888551741838455, 0.006101839244365692, -0.026027392596006393, -0.040732335299253464, -0.0007332443492487073, 0.033593494445085526, 0.024585383012890816, 0.009702413342893124, -0.007597256917506456, 0.07299063354730606, 0.04600190371274948, 0.008692116476595402, 0.014900770969688892, -0.027380390092730522, -0.013832615688443184, 0.05714632570743561, -0.06145455315709114, 0.00669822609052062, -0.018354473635554314, 0.01628047227859497, 0.04603750631213188, -0.04696324095129967, -0.030567053705453873, -0.02360623888671398, -0.010494628921151161, 0.0045708161778748035, -0.026739496737718582, -0.031813234090805054, 0.07505573332309723, 0.010797273367643356, -0.06590520590543747, -0.00027496661641635, -0.02508385479450226, -0.01029880065470934, -0.01407294999808073, 0.02437175065279007, -0.028377335518598557, -0.1411389708518982, -0.008024519309401512, -0.02762962505221367, -0.012728855013847351, -0.0025034898426383734, 0.04671400785446167, -0.031083328649401665, -0.0700710117816925, 0.006756084505468607, 0.011420363560318947, 0.025973984971642494, 0.007904351688921452, 0.03213368356227875, -0.029142845422029495, 0.0514494962990284, -0.022004006430506706, 0.03286358714103699, -0.038774050772190094, 0.017758088186383247, -0.007917704060673714, -0.002421152777969837, 0.030335620045661926, 0.028964819386601448, 0.021327506750822067, -0.04621553421020508, -0.007931055501103401, -0.005465396214276552, -0.00923954602330923, 0.004034512676298618, 0.038667235523462296, -0.01569298654794693, -0.019654063507914543, 0.020829034969210625, -0.033593494445085526, -0.013627885840833187, 0.05298051983118057, -0.03074507974088192, 0.09129170328378677, 0.023446016013622284, 0.00801116693764925, 0.03888086602091789, 0.01799842156469822, 0.016511905938386917, 0.012274888344109058, -0.02422933094203472, -0.00311545399017632, -0.011918836273252964, -0.030584856867790222, 0.03524913638830185, 0.024709999561309814, 0.03959297016263008, 0.04215654358267784, 0.007606158033013344, -0.07213611155748367, 0.02109607309103012, -0.07469968497753143, -0.04674961045384407, -0.04158686101436615, 0.0063332729041576385, 0.010085169225931168, -0.02298314869403839, -0.09228864312171936, -0.01248851977288723, -0.02944548986852169, 0.006818393245339394, 0.04333151504397392, -0.021345309913158417, -0.026543667539954185, -0.036815762519836426, 0.002175254514440894, -0.010111873038113117, 0.06529991328716278, -0.0351245179772377, -0.03177763149142265, -0.033522285521030426, 0.007276810240000486, -0.018229855224490166, 0.009008112363517284, 0.007833140902221203, -0.016476301476359367, 0.04931318387389183, 0.025333091616630554, 0.029837146401405334, 0.022929741069674492, 0.020882442593574524, 0.08417066186666489, 0.09399769455194473, -0.04176488518714905, 0.013574478216469288, 0.04820942506194115, -0.0382755771279335, 0.05369262397289276, 0.052125994116067886, -0.01785600185394287, -0.0009062633034773171, 0.016850154846906662, -0.016209261491894722, -0.033664703369140625, 0.030300015583634377, 0.026009589433670044, 0.0007204487337730825, -0.05825008824467659, 0.029819345101714134, -0.08723270893096924, 0.03713621199131012, -0.009729117155075073, 0.03256094455718994, -0.04343833029270172, 0.07462847232818604, -0.0017045983113348484, 0.013120511546730995, 0.09442495554685593, -0.0701066181063652, -0.010405615903437138, 0.03710060566663742, -0.020188141614198685, 0.03288139030337334, -0.020740021020174026, -0.006764985620975494, 0.07484210282564163, 0.01342315599322319, -0.020757824182510376, -0.06640367209911346, -0.01986769400537014, 0.010396715253591537, -0.03969978541135788, -0.020063523203134537, -0.050238918513059616, 0.08239040523767471, -0.044470880180597305, 0.0354093573987484, 0.04293985664844513, -0.008189192973077297, 0.024620987474918365, 0.0160579401999712, -0.08445550501346588, 0.030371224507689476, -0.03382492810487747, -0.04162246361374855, -0.0384892076253891, 0.06590520590543747, 0.1023293063044548, 0.05700390413403511, 0.011340252123773098, -0.06010155752301216, -0.018390079960227013, -0.034893084317445755, -0.06971495598554611, -0.06829074770212173, 0.0031110031995922327, -0.020864639431238174, -0.023446016013622284, 0.011589488945901394, 0.0003182213695254177, -0.023535029962658882, -0.00957779586315155, 0.009729117155075073, 0.045752666890621185, 0.005198357626795769, -0.0764087364077568, -0.042619410902261734, 0.00007962488598423079, -0.004690983332693577, -0.02887580730021, -0.02494143322110176, 0.06512188911437988, -0.030602658167481422, -0.06305678933858871, 0.10767009109258652, 0.030478039756417274, -0.020312760025262833, -0.041408833116292953, -0.022787319496273994, -0.07110355794429779, -0.01801622472703457, 0.0006648155977018178, 0.004288199823349714, -0.057359956204891205, -0.007499342784285545, -0.031047724187374115, 0.029961764812469482, 0.011028707027435303, 0.022004006430506706, 0.02120289020240307, -0.000054694297432433814, -0.03692258149385452, 0.01312941312789917, 0.008224798366427422, 0.007214501034468412, -0.02755841612815857, -0.03131476417183876, -0.025867169722914696, -0.06665290892124176, 0.04044749215245247, -0.030228804796934128, 0.03927252069115639, 0.05568651482462883, 0.027362586930394173, -0.03371811285614967, 0.06344844400882721, 0.020651008933782578, 0.0014175315154716372, -0.016235966235399246, -0.026436852291226387, -0.03343326970934868, 0.006564706563949585, -0.00104701507370919, 0.014526916667819023, -0.05675467103719711, -0.014286581426858902, -0.004257045220583677, 0.02948109619319439, 0.03891646862030029, 0.07455725967884064, 0.025190670043230057, -0.03987780958414078, 0.03184884041547775, 0.03539155796170235, -0.008985859341919422, 0.029712529852986336, -0.023392608389258385, -0.019654063507914543, -0.06341283768415451, -0.046535979956388474, -0.05942505970597267, 0.03001517243683338, -0.00675163371488452, 0.008723271079361439, -0.04340272396802902, -0.0026637131813913584, 0.061917420476675034, -0.004624223802238703, -0.0322582982480526, 0.01723291166126728, 0.0446133017539978, -0.037385448813438416, -0.061917420476675034, -0.01984989270567894, 0.04977605119347572, -0.013690195046365261, -0.006097388453781605, 0.0255289189517498, 0.017366429790854454, 0.03642410784959793, -0.0014664886984974146, 0.022769518196582794, 0.017820395529270172, -0.06188181787729263, -0.0007065404206514359, 0.029890555888414383, 0.003778600599616766, 0.013583378866314888, 0.03927252069115639, -0.006217556074261665, 0.02620541863143444, 0.007966660894453526, -0.008928000926971436, -0.0018703850219026208, -0.0637688934803009, -0.05508122593164444, 0.03660213202238083, -0.04671400785446167, 0.04603750631213188, 0.003033116925507784, -0.021434323862195015, 0.01984989270567894, -0.00925734918564558, -0.019565051421523094, -0.04244138300418854, 0.005483198910951614, -0.007085432298481464, -0.021986203268170357, -0.006680423393845558, -0.054689567536115646, 0.02422933094203472, -0.023944489657878876, -0.02056199498474598, -0.004820052068680525, 0.007997815497219563, -0.021612348034977913, 0.019351419061422348, 0.020027918741106987, -0.0031510591506958008, -0.0029174000956118107, 0.020633205771446228, 0.0026058547664433718, -0.041266411542892456, 0.03281018137931824, -0.012016750872135162, 0.04180049151182175, 0.0644097849726677, 0.04375877603888512, -0.04229896143078804, 0.03414537385106087, -0.060457609593868256, -0.014259877614676952, -0.10019300132989883, 0.02492363192141056, -0.06088487058877945, 0.03277457505464554, 0.027932269498705864, 0.008153587579727173, 0.007214501034468412, -0.0002075114898616448, 0.04539661481976509, -0.012800064869225025, 0.0013429832179099321, -0.06711577624082565, -0.05946066230535507, -0.03284578397870064, -0.059247031807899475, -0.017482146620750427, 0.11756832897663116, 0.012622038833796978, 0.052909307181835175, -0.013565576635301113, 0.03913010284304619, -0.0004495155008044094, -0.04689203202724457, 0.004993627779185772, -0.00893690250813961, 0.05839250609278679, -0.00771297374740243, 0.0034893082920461893, 0.0143844960257411, 0.04016265273094177, -0.015434849075973034, 0.002677065087482333, -0.01913778856396675, 0.00805567391216755, -0.008126883767545223, -0.07174445688724518, 0.08744633942842484, -0.03350448235869408, 0.00925734918564558, -0.03699379041790962, -0.004575266502797604, 0.021541139110922813, -0.003064271528273821, -0.036139264702796936, -0.012773361057043076, -0.044542089104652405, -0.020686613395810127, -0.02495923638343811, -0.057395562529563904, -0.02104266546666622, 0.019493840634822845, -0.01699257642030716, -0.008665412664413452, -0.004824502859264612, -0.03590783104300499, -0.0450049564242363, 0.023535029962658882, -0.05002528801560402, -0.007530497387051582, -0.019547248259186745, -0.0029396533500403166, -0.03645971044898033, -0.05048815533518791, 0.05237523093819618, 0.021914992481470108, 0.009684611111879349, -0.0287155844271183, -0.004043414257466793, 0.002539095003157854, -0.0037274181377142668, 0.016413992270827293, 0.0028773441445082426, 0.06127652898430824, 0.01244401279836893, 0.025119459256529808, 0.04439966753125191, 0.000032614909287076443, -0.0096134003251791, -0.005011430010199547, 0.01312941312789917, -0.05365701764822006, 0.017971718683838844, 0.0512358658015728, -0.0036339545622467995, 0.014161963015794754, 0.05401306971907616, -0.028519755229353905, 0.029338674619793892, 0.005487649701535702, 0.039450548589229584, -0.02422933094203472, 0.019547248259186745, -0.01976087875664234, 0.0015287977876141667, -0.046535979956388474, 0.04037628322839737, 0.0446489043533802, -0.02816370315849781, 0.022858530282974243, 0.0385248139500618, -0.07167324423789978, -0.014429002068936825, -0.015906617045402527, 0.008095729164779186, 0.029712529852986336, -0.012452914379537106, 0.006150796078145504, 0.036139264702796936, -0.036139264702796936, -0.04913515970110893, 0.028003480285406113, -0.036174871027469635, -0.017170602455735207, -0.02495923638343811, -0.02490582875907421, 0.006791689433157444, -0.0011187817435711622, 0.02364184521138668, -0.016191458329558372, -0.056006960570812225, -0.024211527779698372, -0.014126358553767204, -0.03021100163459778, 0.05885537341237068, 0.015230119228363037, 0.017758088186383247, -0.047675345093011856, -0.012248184531927109, 0.014259877614676952, 0.010966397821903229, 0.014348890632390976, 0.08573729544878006, -0.022004006430506706, 0.05899779498577118, -0.030424632132053375, -0.016850154846906662, 0.010485727339982986, 0.000715998059604317, -0.1155744418501854, 0.006707127206027508, -0.0026637131813913584, -0.010699358768761158, -0.029196253046393394, -0.01660981960594654, 0.007672918029129505, 0.015550565905869007, -0.12255305796861649, 0.04350953921675682, 0.016031235456466675, 0.07327547669410706, 0.024709999561309814, -0.010307702235877514, -0.00957779586315155, -0.002901822794228792, 0.01350326742976904, -0.0638757050037384, 0.003542716149240732, -0.02811029553413391, -0.0072634583339095116, -0.020277153700590134, -0.03457263857126236, 0.02627662941813469, -0.056647852063179016, 0.06494386494159698, 0.06547793745994568, -0.004766644444316626, 0.0079844631254673, 0.043189093470573425, -0.021007061004638672, -0.06704457104206085, 0.0223066508769989, 0.02358843758702278, -0.046500373631715775, 0.005144949536770582, 0.07591026276350021, 0.03788391873240471, -0.05486759543418884, 0.004944670479744673, 0.005932714324444532, -0.01723291166126728, 0.015354737639427185, -0.007552750408649445, -0.015514960512518883, 0.04119520261883736, 0.0015833182260394096, -0.032418522983789444, 0.04411482810974121, 0.01673443801701069, 0.01051243208348751, 0.010877384804189205, -0.00928405299782753, -0.008060124702751637, -0.035480570048093796, -0.023819871246814728, -0.007000870071351528, 0.006853998638689518, -0.0013696870300918818, -0.02173696644604206, -0.008536343462765217, -0.024620987474918365, -0.023552831262350082, 0.01660981960594654, 0.023374805226922035, 0.0702490359544754, 0.022021807730197906, 0.03767028823494911, 0.0350533090531826, 0.046535979956388474, -0.07220732420682907, -0.03927252069115639, -0.01695697009563446, 0.019600655883550644, -0.010726062580943108, 0.01818534918129444, 0.005118245724588633, -0.013645688071846962, 0.045788273215293884, 0.015336934477090836, -0.03713621199131012, -0.014304384589195251, -0.04176488518714905, -0.030549250543117523, -0.001996115781366825, 0.03503550589084625, -0.0257247481495142, 0.0031777629628777504, 0.03905889019370079, 0.00046592726721428335, -0.004553013481199741, 0.024015698581933975, 0.003382492810487747, -0.03010418638586998, 0.016547510400414467, -0.05835690349340439, -0.027095546945929527, -0.07804656773805618, -0.008536343462765217, -0.0025034898426383734, -0.006991968955844641, 0.02488802559673786, -0.01979648508131504, 0.03499989956617355, 0.006667071487754583, 0.04051870480179787, -0.005185005255043507, 0.006288766395300627, 0.00206955149769783, 0.00480224983766675, -0.0011560559505596757, -0.05810766667127609, -0.015817604959011078, -0.05077299848198891, 0.008015617728233337, -0.0037941779009997845, 0.06341283768415451, 0.025297485291957855, 0.03453703224658966, 0.028644373640418053, -0.025101657956838608, 0.02442515827715397, -0.011064312420785427, -0.044577695429325104, -0.022591492161154747, -0.04593069106340408, 0.016503004357218742, 0.04888592287898064, 0.003682911628857255, 0.023499423637986183, 0.05269567668437958, -0.06626125425100327, -0.03759907931089401, -0.041266411542892456, -0.059816714376211166, 0.015523862093687057, 0.08694786578416824, -0.03391394019126892, -0.03272116929292679, -0.05070178583264351, 0.017090490087866783, 0.05825008824467659, -0.012070158496499062, -0.002819485729560256, -0.00707208039239049, -0.03770589455962181, 0.015497158281505108, -0.05298051983118057, 0.029338674619793892, -0.014473509043455124, -0.006413384340703487, 0.03076288290321827, -0.0318666435778141, 0.0095599927008152, -0.0026659383438527584, 0.007592806126922369, -0.03206247091293335, 0.0766935721039772, -0.018069632351398468, 0.05700390413403511, 0.0514494962990284, 0.07484210282564163, -0.006858449429273605, -0.027914466336369514, 0.04212093725800514, -0.0016367259668186307, 0.02618761546909809, 0.008732172660529613, -0.008692116476595402, 0.010797273367643356, -0.014740548096597195, 0.00675163371488452, 0.029943963512778282, 0.025297485291957855, 0.025208473205566406, 0.00901701394468546, -0.00785539485514164, 0.031670816242694855, -0.0096579072996974, -0.012426210567355156, -0.08830086886882782, 0.05233962461352348, -0.050203315913677216, 0.02303655631840229, -0.03410977125167847, 0.019333617761731148, 0.05059497058391571, -0.020241549238562584, -0.028377335518598557, 0.0320090651512146, 0.03905889019370079, 0.018888551741838455, -0.02887580730021, 0.05209038779139519, 0.021523335948586464, 0.0450049564242363, -0.01723291166126728, 0.05372822657227516, 0.03460824117064476, -0.008416175842285156, 0.029908357188105583, -0.04368756711483002, -0.026579272001981735, -0.013930529356002808, 0.009275151416659355, 0.011099916882812977, -0.028341729193925858, 0.06740061938762665, -0.006119641475379467, -0.010102972388267517, -0.0005986122414469719, 0.028484150767326355, -0.018087435513734818, 0.0192624069750309, 0.02437175065279007, 0.04436406493186951, -0.04753292724490166, -0.013529971241950989, 0.028306124731898308, -0.0704982727766037, 0.04689203202724457, -0.01673443801701069, 0.03574761003255844, -0.06099168583750725, -0.025973984971642494, 0.06067124009132385, -0.014900770969688892, -0.01671663485467434, 0.020864639431238174, 0.02761182375252247, 0.026009589433670044, -0.024496369063854218 ]
7,405
pathlib
Path
PurePath subclass that can make system calls. Path represents a filesystem path but unlike PurePath, also offers methods to do system calls on path objects. Depending on your system, instantiating a Path will return either a PosixPath or a WindowsPath object. You can also instantiate a PosixPath or WindowsPath directly, but cannot instantiate a WindowsPath on a POSIX system or vice versa.
class Path(PurePath): """PurePath subclass that can make system calls. Path represents a filesystem path but unlike PurePath, also offers methods to do system calls on path objects. Depending on your system, instantiating a Path will return either a PosixPath or a WindowsPath object. You can also instantiate a PosixPath or WindowsPath directly, but cannot instantiate a WindowsPath on a POSIX system or vice versa. """ _accessor = _normal_accessor __slots__ = () def __new__(cls, *args, **kwargs): if cls is Path: cls = WindowsPath if os.name == 'nt' else PosixPath self = cls._from_parts(args) if not self._flavour.is_supported: raise NotImplementedError("cannot instantiate %r on your system" % (cls.__name__,)) return self def _make_child_relpath(self, part): # This is an optimization used for dir walking. `part` must be # a single part relative to this path. parts = self._parts + [part] return self._from_parsed_parts(self._drv, self._root, parts) def __enter__(self): return self def __exit__(self, t, v, tb): # https://bugs.python.org/issue39682 # In previous versions of pathlib, this method marked this path as # closed; subsequent attempts to perform I/O would raise an IOError. # This functionality was never documented, and had the effect of # making Path objects mutable, contrary to PEP 428. In Python 3.9 the # _closed attribute was removed, and this method made a no-op. # This method and __enter__()/__exit__() should be deprecated and # removed in the future. pass # Public API @classmethod def cwd(cls): """Return a new path pointing to the current working directory (as returned by os.getcwd()). """ return cls(cls._accessor.getcwd()) @classmethod def home(cls): """Return a new path pointing to the user's home directory (as returned by os.path.expanduser('~')). """ return cls("~").expanduser() def samefile(self, other_path): """Return whether other_path is the same or not as this file (as returned by os.path.samefile()). """ st = self.stat() try: other_st = other_path.stat() except AttributeError: other_st = self._accessor.stat(other_path) return os.path.samestat(st, other_st) def iterdir(self): """Iterate over the files in this directory. Does not yield any result for the special paths '.' and '..'. """ for name in self._accessor.listdir(self): if name in {'.', '..'}: # Yielding a path object for these makes little sense continue yield self._make_child_relpath(name) def glob(self, pattern): """Iterate over this subtree and yield all existing files (of any kind, including directories) matching the given relative pattern. """ sys.audit("pathlib.Path.glob", self, pattern) if not pattern: raise ValueError("Unacceptable pattern: {!r}".format(pattern)) drv, root, pattern_parts = self._flavour.parse_parts((pattern,)) if drv or root: raise NotImplementedError("Non-relative patterns are unsupported") selector = _make_selector(tuple(pattern_parts), self._flavour) for p in selector.select_from(self): yield p def rglob(self, pattern): """Recursively yield all existing files (of any kind, including directories) matching the given relative pattern, anywhere in this subtree. """ sys.audit("pathlib.Path.rglob", self, pattern) drv, root, pattern_parts = self._flavour.parse_parts((pattern,)) if drv or root: raise NotImplementedError("Non-relative patterns are unsupported") selector = _make_selector(("**",) + tuple(pattern_parts), self._flavour) for p in selector.select_from(self): yield p def absolute(self): """Return an absolute version of this path. This function works even if the path doesn't point to anything. No normalization is done, i.e. all '.' and '..' will be kept along. Use resolve() to get the canonical path to a file. """ # XXX untested yet! if self.is_absolute(): return self # FIXME this must defer to the specific flavour (and, under Windows, # use nt._getfullpathname()) return self._from_parts([self._accessor.getcwd()] + self._parts) def resolve(self, strict=False): """ Make the path absolute, resolving all symlinks on the way and also normalizing it (for example turning slashes into backslashes under Windows). """ def check_eloop(e): winerror = getattr(e, 'winerror', 0) if e.errno == ELOOP or winerror == _WINERROR_CANT_RESOLVE_FILENAME: raise RuntimeError("Symlink loop from %r" % e.filename) try: s = self._accessor.realpath(self, strict=strict) except OSError as e: check_eloop(e) raise p = self._from_parts((s,)) # In non-strict mode, realpath() doesn't raise on symlink loops. # Ensure we get an exception by calling stat() if not strict: try: p.stat() except OSError as e: check_eloop(e) return p def stat(self, *, follow_symlinks=True): """ Return the result of the stat() system call on this path, like os.stat() does. """ return self._accessor.stat(self, follow_symlinks=follow_symlinks) def owner(self): """ Return the login name of the file owner. """ return self._accessor.owner(self) def group(self): """ Return the group name of the file gid. """ return self._accessor.group(self) def open(self, mode='r', buffering=-1, encoding=None, errors=None, newline=None): """ Open the file pointed by this path and return a file object, as the built-in open() function does. """ if "b" not in mode: encoding = io.text_encoding(encoding) return self._accessor.open(self, mode, buffering, encoding, errors, newline) def read_bytes(self): """ Open the file in bytes mode, read it, and close the file. """ with self.open(mode='rb') as f: return f.read() def read_text(self, encoding=None, errors=None): """ Open the file in text mode, read it, and close the file. """ encoding = io.text_encoding(encoding) with self.open(mode='r', encoding=encoding, errors=errors) as f: return f.read() def write_bytes(self, data): """ Open the file in bytes mode, write to it, and close the file. """ # type-check for the buffer interface before truncating the file view = memoryview(data) with self.open(mode='wb') as f: return f.write(view) def write_text(self, data, encoding=None, errors=None, newline=None): """ Open the file in text mode, write to it, and close the file. """ if not isinstance(data, str): raise TypeError('data must be str, not %s' % data.__class__.__name__) encoding = io.text_encoding(encoding) with self.open(mode='w', encoding=encoding, errors=errors, newline=newline) as f: return f.write(data) def readlink(self): """ Return the path to which the symbolic link points. """ path = self._accessor.readlink(self) return self._from_parts((path,)) def touch(self, mode=0o666, exist_ok=True): """ Create this file with the given access mode, if it do
(*args, **kwargs)
[ 0.07145010679960251, -0.04471677541732788, -0.044738758355379105, 0.04451891407370567, 0.01171781774610281, -0.0107779735699296, 0.012630180455744267, 0.057160086929798126, -0.005886389873921871, -0.04542028531432152, 0.04047373682260513, 0.02811836637556553, 0.025216391310095787, 0.05144407972693443, -0.055841006338596344, 0.04352960363030434, 0.02862401306629181, 0.0019291528733447194, -0.02040175348520279, 0.02972324565052986, 0.00909065268933773, -0.005083950236439705, 0.010728508234024048, -0.01409215945750475, -0.039198629558086395, 0.05540131404995918, -0.03851710632443428, 0.0245128832757473, 0.0557970367372036, -0.05403826758265495, 0.0009851870127022266, -0.013256743550300598, 0.03535131365060806, -0.01701611839234829, -0.008716912940144539, -0.034515898674726486, -0.015158414840698242, 0.037747640162706375, 0.041858769953250885, -0.04744287207722664, -0.0007522872183471918, 0.004223800729960203, 0.017785580828785896, -0.014443914406001568, 0.038912829011678696, 0.02580997720360756, 0.0023606016766279936, 0.010228358209133148, -0.003981969319283962, -0.03392231464385986, 0.02176480181515217, 0.036450546234846115, -0.01723596453666687, -0.0324273556470871, 0.01409215945750475, 0.06722905486822128, 0.006622875574976206, 0.061469078063964844, -0.013432620093226433, -0.06846019625663757, 0.025502191856503487, -0.014685745351016521, 0.02387532778084278, -0.01023934967815876, -0.03812137991189957, -0.03361452743411064, -0.041353125125169754, -0.07509955763816833, -0.018522066995501518, 0.0233696810901165, -0.05825931951403618, 0.018631989136338234, 0.02085243910551071, -0.041287168860435486, 0.02618371695280075, 0.025480207055807114, -0.012608195655047894, 0.01737886480987072, 0.07276918739080429, -0.017697641626000404, -0.03941847383975983, -0.009865610860288143, 0.013311704620718956, -0.037241995334625244, 0.03343864902853966, 0.026205701753497124, 0.07228552550077438, -0.022325411438941956, -0.007826535031199455, 0.028140351176261902, -0.013652467168867588, 0.03856107220053673, 0.0035670092329382896, 0.015752000734210014, 0.006831729784607887, -0.06292006373405457, -0.013993228785693645, -0.003564261132851243, -0.00920057576149702, -0.003649451769888401, -0.06045778468251228, 0.006787760183215141, -0.028030427172780037, 0.000542059016879648, 0.009816145524382591, 0.027151040732860565, -0.004056167788803577, 0.0012222090736031532, -0.0006272494792938232, -0.06410723924636841, -0.1058780699968338, -0.0025199903175234795, 0.03979221358895302, -0.01053064689040184, -0.03297697380185127, 0.008205770514905453, -0.023127850145101547, -0.02783256582915783, 0.03361452743411064, -0.05927061289548874, 0.029833167791366577, 0.026777302846312523, -0.023457620292901993, 0.0445408970117569, 0.05869901180267334, 0.004559066612273455, 0.0030778509099036455, 0.014366967603564262, 0.019126644358038902, -0.016180701553821564, -0.01168484054505825, 0.032339416444301605, 0.039924122393131256, 0.06415120512247086, 0.002535104751586914, 0.03187774121761322, -0.03260323405265808, 0.02111625485122204, -0.060106027871370316, 0.05597291514277458, 0.06014999747276306, -0.04695921018719673, -0.01511444617062807, 0.015883909538388252, -0.0038060923106968403, 0.01016790047287941, 0.020731523633003235, -0.03115224651992321, -0.004971278831362724, 0.030976369976997375, -0.0022451821714639664, -0.038033440709114075, 0.027085086330771446, 0.08767478168010712, 0.0687679797410965, -0.024622807279229164, -0.030448738485574722, 0.002186098601669073, -0.010442707687616348, 0.01709306426346302, -0.05759977921843529, -0.034449946135282516, 0.026733333244919777, -0.006271121092140675, -0.00937095656991005, 0.031569954007864, -0.031240185722708702, -0.06335975974798203, -0.01168484054505825, -0.002555715385824442, 0.032493311911821365, 0.018774889409542084, 0.006903179921209812, 0.004690974485129118, -0.011992625892162323, 0.015180399641394615, 0.02147900126874447, 0.04383739084005356, 0.005397231318056583, -0.02719501033425331, 0.014476891607046127, -0.06850416213274002, -0.013586512766778469, -0.023193804547190666, 0.016125740483403206, 0.08886194974184036, -0.0022712890058755875, -0.006661348510533571, 0.08182686567306519, 0.03475772961974144, -0.09761183708906174, 0.03524139150977135, 0.027964472770690918, 0.04326578974723816, 0.02530433051288128, -0.007364857476204634, -0.02748081088066101, -0.00970072578638792, -0.022820064797997475, 0.08789462596178055, -0.05993015319108963, 0.03051469288766384, 0.0523674339056015, -0.02358952723443508, -0.03014095313847065, 0.006551425438374281, 0.00876637827605009, 0.02429303713142872, -0.029107674956321716, 0.04262823238968849, -0.025502191856503487, -0.04440899193286896, -0.008255235850811005, 0.011366063728928566, 0.028316227719187737, -0.015092461369931698, 0.006139213219285011, 0.041572969406843185, -0.0002526516909711063, 0.0670531764626503, 0.041572969406843185, 0.03275712579488754, -0.05359857529401779, 0.008090350776910782, -0.014674752950668335, -0.04232044890522957, -0.0039847176522016525, 0.017697641626000404, 0.03440597653388977, -0.006787760183215141, 0.03579100966453552, -0.0327131561934948, 0.01261918805539608, 0.010310799814760685, 0.003404872491955757, -0.05135614052414894, 0.027568750083446503, 0.01955534517765045, -0.01250926498323679, 0.01854405179619789, -0.06749287247657776, -0.019720230251550674, 0.0227980799973011, 0.043375711888074875, -0.03022889234125614, -0.026777302846312523, 0.018445121124386787, 0.01665337197482586, 0.027282949537038803, -0.04500257596373558, -0.017510773614048958, 0.035878945142030716, -0.040495723485946655, -0.02912965975701809, 0.02099533937871456, -0.009585306979715824, -0.051663924008607864, -0.0032454838510602713, 0.002793424529954791, 0.06547028571367264, 0.006600890774279833, -0.0023138842079788446, -0.010195381008088589, -0.016752302646636963, 0.030272861942648888, -0.05219155550003052, 0.005485170055180788, -0.05439002066850662, -0.03532933071255684, 0.01622467115521431, 0.08503662049770355, 0.01600482501089573, -0.056368637830019, 0.0681963786482811, -0.042430371046066284, 0.03787954896688461, -0.0121135413646698, -0.016675356775522232, 0.01629062555730343, 0.0043557086028158665, -0.04119923338294029, 0.049289584159851074, -0.02855805866420269, -0.012685142457485199, 0.003885786747559905, 0.0027604475617408752, -0.060106027871370316, -0.003946244250983, -0.038033440709114075, 0.028008442372083664, 0.056148793548345566, -0.03051469288766384, -0.0010765608167275786, -0.009744695387780666, 0.08604791760444641, 0.02660142444074154, -0.08402533084154129, -0.05496162176132202, -0.010437211953103542, -0.09972236305475235, -0.0281843189150095, 0.013234758749604225, 0.013718420639634132, 0.07435208559036255, -0.0236554816365242, -0.06138113886117935, 0.0012922851601615548, -0.01890679821372032, -0.00539173511788249, 0.028008442372083664, 0.01600482501089573, -0.06063365936279297, -0.004696470685303211, 0.0422544963657856, 0.04757478088140488, 0.002198464935645461, 0.02098434790968895, 0.0027563252951949835, -0.01208056416362524, 0.015817955136299133, -0.03974824398756027, 0.051092322915792465, 0.001031217398121953, -0.006370051763951778, -0.024073190987110138, 0.0022850295063108206, 0.02970126084983349, 0.05949046090245247, 0.0018315960187464952, 0.028887828812003136, -0.030778508633375168, 0.015092461369931698, -0.00472395122051239, 0.03108629398047924, -0.03528536111116409, 0.06173289194703102, -0.009585306979715824, -0.053554605692625046, 0.02198464795947075, -0.02811836637556553, 0.07628673315048218, 0.038692981004714966, -0.013619489967823029, -0.03880290314555168, -0.022600218653678894, -0.021588925272226334, 0.054565899074077606, 0.014114144258201122, 0.018192296847701073, 0.01222346443682909, 0.06331578642129898, 0.007018599193543196, -0.0591387040913105, -0.0436834953725338, -0.04212258756160736, -0.027063103392720222, -0.010206373408436775, 0.003187773982062936, -0.002247930271551013, -0.009123628959059715, 0.026337608695030212, 0.03917664289474487, -0.036890242248773575, -0.036604441702365875, -0.021369079127907753, -0.06393136084079742, 0.004932805430144072, 0.020654577761888504, -0.01708207279443741, 0.0040341829881072044, 0.016543447971343994, -0.049861181527376175, 0.022754112258553505, -0.04051770642399788, 0.056060854345560074, -0.01947839930653572, 0.05487368255853653, -0.02675531804561615, -0.013718420639634132, 0.05373048037290573, 0.03614276275038719, 0.020247861742973328, 0.018368173390626907, 0.006463486701250076, -0.02416112832725048, -0.013102850876748562, 0.0637115091085434, -0.003690672805532813, 0.02552417665719986, 0.00846958626061678, -0.02827225811779499, -0.014949561096727848, 0.04429906606674194, -0.010838432237505913, -0.015345284715294838, -0.0324273556470871, 0.09778771549463272, 0.03304292634129524, -0.02523837611079216, -0.0008058747625909746, 0.023743420839309692, 0.016598409041762352, -0.02176480181515217, 0.04841019585728645, 0.0031822780147194862, 0.0089422557502985, 0.09497368335723877, 0.04223250970244408, 0.0007605314604006708, 0.008563020266592503, -0.04924561455845833, -0.029261566698551178, -0.0065404330380260944, 0.00815080851316452, 0.04678333178162575, -0.0005207613576203585, -0.03785756602883339, -0.05645657703280449, 0.0884222537279129, 0.007002110593020916, -0.046343639492988586, -0.04097938537597656, -0.05337872728705406, 0.02314983494579792, 0.04080350697040558, -0.015784977003932, -0.025875931605696678, 0.0014715974684804678, -0.03163591027259827, 0.038605041801929474, 0.026931194588541985, 0.020028015598654747, -0.03247132524847984, -0.0063645560294389725, 0.005086698103696108, -0.03337269648909569, -0.029657291248440742, -0.02206159569323063, 0.00423479313030839, -0.004886087961494923, -0.012641172856092453, 0.011552932672202587, 0.03387834504246712, 0.004273266065865755, -0.003916015382856131, -0.04306792840361595, -0.0032619722187519073, 0.027568750083446503, 0.00843660905957222, 0.001856328803114593, -0.0016296120593324304, -0.003578001633286476, 0.04443097487092018, 0.018719928339123726, -0.10517455637454987, -0.03469177708029747, 0.002190220635384321, 0.00048469280591234565, -0.030404768884181976, 0.013322697021067142, -0.002357853576540947, 0.047047149389982224, 0.09761183708906174, -0.0969083309173584, 0.0024952576495707035, -0.030778508633375168, 0.031767819076776505, 0.011140720918774605, -0.04757478088140488, -0.04924561455845833, 0.02609577775001526, -0.04040778428316116, -0.06718508899211884, 0.04465082287788391, -0.0012325143907219172, -0.04188075661659241, -0.029371490702033043, -0.021511979401111603, -0.039484430104494095, -0.0664815753698349, -0.0032537279184907675, -0.051092322915792465, 0.02561211585998535, 0.004652501083910465, -0.01564207673072815, -0.030954385176301003, 0.08516852557659149, -0.0006557608721777797, -0.04278212785720825, -0.030844463035464287, 0.04148503392934799, 0.0546538382768631, -0.01933549903333187, 0.03418612852692604, -0.029459429904818535, 0.0501689687371254, -0.05720405653119087, 0.022314418107271194, -0.02113823965191841, -0.07400032877922058, -0.00008351590076927096, -0.045024558901786804, -0.008920270949602127, 0.011030797846615314, 0.010882400907576084, 0.10781271755695343, -0.013201781548559666, -0.037395887076854706, 0.006117228418588638, -0.056368637830019, 0.01092087384313345, -0.005449444986879826, -0.016092762351036072, 0.004292502533644438, -0.0024993796832859516, 0.015389254316687584, 0.004248533397912979, -0.016312608495354652, -0.010261334478855133, -0.0239412821829319, -0.01593887060880661, -0.009618284180760384, -0.0008402257808484137, -0.041353125125169754, -0.024205097928643227, -0.011124231852591038, 0.025370284914970398, 0.022314418107271194, 0.0473109632730484, 0.014960553497076035, 0.03251529484987259, 0.0021119003649801016, 0.0053889867849648, -0.0045041050761938095, 0.08024396747350693, 0.053906358778476715, 0.010997820645570755, -0.01193766389042139, -0.020423738285899162, 0.011783772148191929, 0.01081644743680954, 0.06960339844226837, -0.0343400202691555, 0.001691443962045014, 0.017060087993741035, -0.05219155550003052, 0.02545822411775589, -0.06758081167936325, 0.06854813545942307, -0.03974824398756027, 0.01983015239238739, -0.024776699021458626, 0.0473109632730484, 0.08178289234638214, -0.01708207279443741, -0.021094270050525665, 0.05342269688844681, -0.0490257665514946, -0.004663493484258652, -0.0004173648194409907, -0.04766272008419037, 0.04515646770596504, -0.05821534991264343, -0.03420811519026756, 0.0540822371840477, 0.026623409241437912, 0.05003705993294716, 0.019225575029850006, 0.033350713551044464, -0.061469078063964844, 0.010266831144690514, 0.06850416213274002, 0.017796572297811508, -0.013080866076052189, 0.013916282914578915, 0.01250926498323679, -0.01940145157277584, 0.011475986801087856, 0.035944901406764984, -0.043661512434482574, 0.01171781774610281, -0.01904969848692417, -0.04434303566813469, 0.0011583161540329456, -0.013586512766778469, -0.010937362909317017, 0.010618585161864758, 0.09075263142585754, -0.05891885980963707, -0.04542028531432152, -0.02378739044070244, -0.07839725911617279, 0.031130261719226837, -0.028294242918491364, 0.010360266081988811, -0.025348300114274025, -0.02748081088066101, -0.044738758355379105, 0.04491463676095009, 0.0020912897307425737, -0.025216391310095787, -0.013575520366430283, -0.01525734644383192, 0.02748081088066101, -0.020797478035092354, 0.0009893091628327966, 0.03706611692905426, 0.011162705719470978, -0.04407922178506851, 0.03568108379840851, -0.023677466437220573, 0.05078453943133354, 0.025128453969955444, -0.010964843444526196, -0.016708333045244217, 0.024754714220762253, -0.05373048037290573, -0.007166995666921139, -0.026953179389238358, 0.03583497554063797, -0.037395887076854706, -0.04346365109086037, -0.011871710419654846, 0.014147121459245682, -0.05575307086110115, -0.000301086634863168, 0.010112938471138477, 0.029261566698551178, -0.03842916712164879, -0.0033141858875751495, 0.003795099910348654, -0.023171819746494293, -0.01867595873773098, 0.034867651760578156, 0.020368777215480804, -0.06828431785106659, -0.01853305846452713, -0.009959045797586441, 0.04304594174027443, 0.05337872728705406, -0.04797050356864929, -0.0873669907450676, -0.006078755483031273, -0.02934950590133667, -0.046915240585803986, -0.0517958328127861, 0.011695832945406437, -0.03928656876087189, 0.05452192947268486, -0.009458894841372967, 0.02767867222428322, 0.03506551310420036, -0.005748985800892115, -0.05795153230428696, -0.00275907339528203, 0.028382182121276855, 0.0019758702255785465, -0.09937061369419098, 0.013740405440330505, 0.06837225705385208, 0.0007000736659392715, -0.016928179189562798, -0.01701611839234829, 0.005666543263942003, 0.007716611493378878, 0.012937965802848339, -0.002678005024790764, 0.017257949337363243, 0.019566336646676064, 0.010030495934188366, 0.010701027698814869, 0.039968091994524, -0.042452357709407806, -0.0411112941801548, -0.029833167791366577, -0.036450546234846115, 0.04700317978858948, 0.0190277136862278, 0.008387143723666668, 0.004660745617002249, -0.0005853412440046668, 0.060897476971149445, -0.027348902076482773, 0.011981633491814137, 0.019885115325450897, 0.04572806879878044, 0.019742215052247047, 0.0038170847110450268, 0.012201479636132717, -0.09831535071134567, 0.016279632225632668, 0.034493912011384964, 0.04880591854453087, -0.000272060016868636, -0.1080765351653099, 0.017917487770318985, 0.030118968337774277, -0.021358085796236992, 0.011228659190237522, -0.05566513165831566, 0.04924561455845833, -0.00035141088301315904, 0.030470723286271095, -0.062128618359565735, 0.03135010972619057, -0.018280236050486565, -0.06784462928771973, 0.006875698920339346, -0.007821038365364075, 0.009810649789869785, -0.00046133410069160163, 0.024996545165777206, 0.03315284848213196, -0.047838594764471054, 0.07246140390634537, -0.04181480035185814, 0.00564455846324563, -0.030910415574908257, 0.0031025835778564215, -0.031701862812042236, 0.008381647057831287, -0.04858607426285744, 0.04045175388455391, -0.011377056129276752, -0.040275875478982925, 0.025919901207089424, -0.01766466535627842, -0.018192296847701073, 0.022754112258553505, 0.01106927078217268, -0.03159194067120552, -0.0043557086028158665, 0.004212808329612017, 0.034581851214170456, -0.000796943495515734, -0.015125438570976257, 0.038187336176633835, -0.009348971769213676, -0.0026862493250519037, 0.07079056650400162, 0.01774161122739315, -0.013916282914578915, -0.0845089927315712, -0.020610608160495758, 0.018489088863134384, -0.019786184653639793, 0.022732127457857132, 0.04212258756160736, -0.010014007799327374, 0.02805241197347641, 0.020885415375232697, -0.055928945541381836, -0.01710405759513378, 0.03807741031050682, 0.02169884741306305, -0.015224369242787361, -0.02596387080848217, 0.005727001000195742, 0.020017022266983986, -0.02198464795947075, -0.056060854345560074, -0.007919969968497753, -0.026711348444223404, 0.004586547147482634, 0.05680833384394646, 0.04898179695010185, -0.07791359722614288, 0.033636514097452164 ]
7,406
pathlib
__bytes__
Return the bytes representation of the path. This is only recommended to use under Unix.
def __bytes__(self): """Return the bytes representation of the path. This is only recommended to use under Unix.""" return os.fsencode(self)
(self)
[ 0.024480335414409637, -0.017587492242455482, -0.017537903040647507, 0.0632091835141182, 0.010975653305649757, -0.07154010236263275, -0.00293606985360384, 0.068564772605896, 0.026827538385987282, -0.037819720804691315, 0.08112726360559464, -0.014207189902663231, 0.012364138849079609, 0.04390261322259903, -0.002605477813631296, 0.03755524754524231, -0.017587492242455482, 0.001012437860481441, 0.04135705530643463, 0.04651428759098053, -0.022480253130197525, 0.009355752728879452, 0.05567168444395065, -0.038844555616378784, -0.01110788993537426, 0.07649897783994675, 0.018645387142896652, -0.014364220201969147, 0.00027144700288772583, -0.05332448333501816, -0.005434105172753334, -0.042547184973955154, 0.07464766502380371, -0.006351497955620289, 0.014628694392740726, 0.0043059601448476315, 0.011207067407667637, 0.0658208578824997, -0.046216756105422974, -0.07623450458049774, -0.04826642572879791, 0.026149824261665344, -0.043109189718961716, -0.033125314861536026, 0.03755524754524231, 0.016802337020635605, -0.0076903956942260265, 0.003876190632581711, 0.0008306123199872673, 0.03973715379834175, 0.018893331289291382, -0.006293644662946463, 0.000752096704673022, -0.0304309893399477, -0.016595715656876564, 0.05719240754842758, 0.043109189718961716, -0.020149579271674156, -0.07008549571037292, 0.04390261322259903, -0.0008905321010388434, -0.00871109776198864, 0.08165621757507324, -0.06297776848077774, -0.02486051619052887, 0.011479806154966354, -0.05755605921149254, -0.03907597064971924, -0.0184470321983099, 0.04482826963067055, -0.023538148030638695, -0.024199331179261208, -0.029207799583673477, 0.015174170956015587, 0.027488721534609795, 0.020992590114474297, -0.05620063468813896, 0.03137317672371864, 0.024810926988720894, 0.008909453637897968, 0.010289674624800682, -0.07669733464717865, -0.017405666410923004, -0.022314956411719322, 0.007033343892544508, -0.0032480659428983927, 0.0025889482349157333, 0.0059134638868272305, -0.03477827459573746, 0.04373731464147568, -0.005917596165090799, 0.05127481371164322, -0.0504152737557888, 0.06681263446807861, 0.017885025590658188, -0.06654816120862961, 0.013017058372497559, 0.0010387819493189454, -0.012116195634007454, -0.007987928576767445, -0.02362079545855522, 0.033125314861536026, -0.006884577684104443, -0.015909738838672638, -0.014000569470226765, -0.017752788960933685, -0.006264717783778906, -0.029009444639086723, -0.03267901390790939, -0.04327448830008507, -0.028480498120188713, 0.034282386302948, -0.01443860400468111, 0.005558077245950699, 0.016975896432995796, -0.026331650093197823, 0.018645387142896652, -0.04982020705938339, 0.07636674493551254, -0.006558117922395468, 0.016199005767703056, 0.0741187185049057, -0.03257983922958374, 0.018678445369005203, 0.03821643069386482, 0.0741187185049057, -0.009785521775484085, 0.01950492523610592, -0.03504274785518646, -0.013760889880359173, 0.022381076589226723, 0.05401872470974922, -0.01014090795069933, 0.04294389486312866, 0.05606839805841446, 0.0016560590593144298, -0.039902448654174805, 0.025786172598600388, 0.013967510312795639, 0.08039996773004532, 0.030877288430929184, -0.03788583725690842, 0.04710935428738594, -0.021108295768499374, 0.022133132442831993, 0.06069668382406235, 0.04770442098379135, -0.05355589836835861, -0.054746028035879135, 0.013711301609873772, 0.04393567144870758, 0.02373650297522545, 0.011322774924337864, 0.008421829901635647, 0.011132684536278248, -0.01935615949332714, -0.000004233288109389832, -0.03132358938455582, 0.014446868561208248, -0.02729036659002304, -0.0554402731359005, -0.05706017091870308, 0.0025724186562001705, -0.05358895659446716, 0.0330757237970829, 0.03357161208987236, -0.04859701916575432, -0.0008869162411428988, 0.019653692841529846, -0.014752666465938091, -0.0016829196829348803, -0.017323018983006477, -0.07048220932483673, 0.03376996889710426, 0.032596368342638016, -0.0007717256085015833, 0.003465017070993781, 0.05355589836835861, -0.004582831170409918, -0.0031178954523056746, 0.03692712262272835, -0.03563781455159187, -0.008227607235312462, 0.041026461869478226, 0.07074668258428574, 0.030877288430929184, 0.01285176258534193, 0.0225298423320055, 0.06023385375738144, 0.0030600419268012047, -0.0790114775300026, 0.048927608877420425, -0.0067068845964968204, 0.021637244150042534, 0.005810153670608997, -0.06681263446807861, 0.03198477253317833, -0.04122481867671013, -0.0396379753947258, 0.03292695805430412, -0.006161407567560673, -0.0004289947100915015, 0.02983592450618744, -0.03395179286599159, -0.02436462789773941, 0.003723291913047433, 0.02722424827516079, 0.01735607720911503, -0.039935506880283356, 0.021521536633372307, 0.013835273683071136, -0.054746028035879135, -0.04876231402158737, -0.009446665644645691, 0.030596286058425903, -0.05243188515305519, -0.021736420691013336, 0.050613630563020706, 0.0057936240918934345, 0.06436625123023987, 0.04770442098379135, 0.05038221552968025, -0.030513638630509377, -0.0395718589425087, -0.02401750534772873, -0.053159188479185104, -0.01085994578897953, -0.007822631858289242, 0.007149050943553448, -0.040993403643369675, 0.01213272474706173, -0.04803501069545746, 0.016909778118133545, 0.035241104662418365, -0.007570555899292231, 0.03291042894124985, 0.03176988661289215, -0.016199005767703056, -0.03481133282184601, -0.02517457865178585, -0.026430826634168625, -0.041555408388376236, 0.025901880115270615, 0.0263812392950058, 0.04562168940901756, -0.023009199649095535, 0.032100480049848557, 0.03590228781104088, 0.012893086299300194, -0.020926471799612045, 0.024910103529691696, -0.021389300003647804, -0.05659734457731247, -0.06304388493299484, 0.03299307823181152, -0.023422440513968468, -0.028133375570178032, -0.020050402730703354, 0.0020062800031155348, 0.07762299478054047, -0.04595228284597397, 0.006070494651794434, -0.014546046033501625, -0.02800113894045353, -0.027984609827399254, -0.028083786368370056, -0.03444768115878105, 0.009281368926167488, 0.005764697212725878, 0.03431544452905655, 0.02510845847427845, 0.01791808381676674, -0.06258105486631393, 0.014157600700855255, -0.043109189718961716, -0.060068558901548386, -0.046216756105422974, -0.007719322107732296, 0.0011983958538621664, -0.012628613039851189, -0.01095085870474577, -0.006669692695140839, 0.016480010002851486, -0.00004209881808492355, -0.016868455335497856, -0.022100072354078293, -0.03395179286599159, -0.03201783075928688, -0.03930738568305969, -0.010413646697998047, 0.03649735078215599, 0.03162112087011337, -0.02190171740949154, -0.023984447121620178, 0.07689569145441055, -0.012091401033103466, -0.043175309896469116, -0.07339141517877579, 0.050018563866615295, -0.04710935428738594, -0.03213353827595711, 0.05405178666114807, -0.010339263826608658, 0.052101291716098785, -0.012008752673864365, 0.008835069835186005, -0.02147194743156433, 0.0024029903579503298, -0.03563781455159187, 0.0608619786798954, -0.0006844286690466106, -0.02704242244362831, 0.02006693184375763, 0.05706017091870308, 0.04062975198030472, 0.0658208578824997, 0.006268850062042475, 0.019769398495554924, -0.003824535757303238, 0.0607297420501709, -0.037224654108285904, 0.05702711269259453, 0.022067014127969742, 0.010008671320974827, -0.002161244861781597, -0.013512946665287018, 0.032844312489032745, 0.026546534150838852, 0.009645020589232445, 0.05448155477643013, -0.002818296430632472, 0.028397848829627037, 0.05722546949982643, 0.01285176258534193, -0.020546291023492813, 0.00582668324932456, 0.021769480779767036, -0.03340631723403931, -0.04327448830008507, -0.025786172598600388, 0.04667958617210388, 0.005607665982097387, 0.02781931310892105, -0.015422115102410316, -0.028414379805326462, -0.008318520151078701, -0.021819069981575012, 0.012950940057635307, -0.0027046555187553167, -0.004839039873331785, -0.010198761709034443, -0.01269473135471344, -0.03340631723403931, -0.01932309940457344, -0.03914208710193634, -0.0040166922844946384, -0.009496253915131092, 0.00927310436964035, -0.004053883720189333, 0.02386873960494995, 0.08231739699840546, 0.014504722319543362, -0.020513230934739113, -0.040001627057790756, 0.005587004125118256, -0.0185462087392807, 0.00832265242934227, 0.02186865732073784, 0.0342162661254406, 0.012983999215066433, -0.009901229292154312, -0.012471581809222698, -0.01267820131033659, -0.05874619260430336, 0.001461836276575923, -0.000929789908695966, -0.011612042784690857, -0.022579431533813477, -0.06225046515464783, 0.03299307823181152, 0.023042259737849236, 0.029207799583673477, -0.00833918247371912, 0.003142689820379019, 0.00010098551138071343, 0.022876963019371033, 0.05011774227023125, -0.026149824261665344, 0.04291083663702011, 0.017372608184814453, -0.016843659803271294, 0.013074912130832672, 0.02200089581310749, 0.026563063263893127, -0.00871109776198864, -0.01292614545673132, 0.04697711765766144, 0.01532293763011694, 0.0165048036724329, 0.0344146229326725, 0.017637081444263458, -0.0039051175117492676, -0.010099584236741066, 0.05616757273674011, -0.02041405439376831, 0.038910672068595886, 0.012545964680612087, -0.0003422143345233053, -0.007045741192996502, -0.006818459369242191, -0.0009855772368609905, 0.004417534917593002, -0.02162071503698826, -0.047803595662117004, 0.059506554156541824, -0.0012531501706689596, -0.07345753163099289, -0.04456379637122154, 0.10155785083770752, -0.017372608184814453, -0.07550720125436783, 0.0395718589425087, -0.020017342641949654, 0.055770862847566605, 0.0421835333108902, -0.016380831599235535, -0.018116438761353493, 0.02200089581310749, 0.05375425145030022, 0.05071280524134636, 0.022017424926161766, 0.014992345124483109, -0.0344807431101799, -0.0007205871515907347, 0.014058423228561878, -0.003305919701233506, 0.003500142367556691, -0.03500968962907791, -0.015843620523810387, 0.06063056364655495, -0.027670547366142273, 0.0052026910707354546, 0.005173764191567898, -0.016703158617019653, 0.03659652918577194, -0.033522024750709534, -0.07570555806159973, 0.036761827766895294, 0.06039915233850479, -0.005661387462168932, -0.020579349249601364, -0.030811170116066933, 0.03246413171291351, -0.039472680538892746, -0.03705935925245285, -0.026034116744995117, 0.02772013656795025, -0.040398336946964264, -0.024315038695931435, -0.03271207585930824, -0.029703687876462936, 0.04644817113876343, 0.0556386262178421, -0.06942430883646011, 0.02467869035899639, -0.0501508004963398, -0.01894291862845421, 0.06664733588695526, 0.037290774285793304, -0.017124664038419724, 0.01580229587852955, 0.019240451976656914, -0.062151286751031876, 0.013058382086455822, 0.02401750534772873, 0.03848090395331383, -0.016843659803271294, 0.006884577684104443, -0.08687956631183624, -0.06324224174022675, -0.05494438484311104, -0.07167233526706696, -0.020496701821684837, 0.04076198861002922, 0.014207189902663231, -0.040927283465862274, 0.023918328806757927, 0.028298672288656235, 0.04380343481898308, -0.0016064703231677413, 0.045224979519844055, 0.10757462680339813, -0.09183844923973083, 0.007161448244005442, 0.06225046515464783, 0.06129175052046776, -0.03699323907494545, 0.00855406653136015, -0.07663121819496155, -0.002475307323038578, -0.018661916255950928, -0.04327448830008507, 0.007855691015720367, 0.006438278593122959, -0.027637487277388573, 0.024943163618445396, 0.03583616763353348, -0.054746028035879135, 0.017885025590658188, -0.00863671489059925, -0.012983999215066433, -0.02464563027024269, -0.037257712334394455, -0.011851721443235874, -0.007739984430372715, 0.04697711765766144, -0.03014998696744442, -0.014587370678782463, -0.0019380953162908554, 0.060531388968229294, -0.04800195246934891, -0.007425921969115734, -0.0025662200059741735, -0.07134174555540085, -0.040398336946964264, -0.01521549466997385, -0.01720731146633625, 0.013215413317084312, -0.0003724324924405664, 0.0686308890581131, -0.034282386302948, 0.005512620788067579, 0.07114338874816895, 0.019455336034297943, 0.029571451246738434, 0.10902922600507736, -0.05038221552968025, 0.0037522187922149897, -0.04694405943155289, -0.023538148030638695, 0.02570352517068386, -0.021538065746426582, -0.0037728806491941214, -0.035108864307403564, 0.0018161896150559187, -0.010091319680213928, 0.009463194757699966, -0.06046526879072189, 0.0662175714969635, -0.027373014017939568, -0.010000406764447689, -0.03198477253317833, -0.009851640090346336, 0.03360467404127121, 0.04062975198030472, -0.04929126054048538, 0.04019998386502266, -0.0057068439200520515, -0.034646037966012955, 0.007363935932517052, -0.0476713590323925, 0.019934695214033127, -0.02066199667751789, -0.003580724122002721, -0.04763830080628395, 0.03276166319847107, 0.0015858083497732878, 0.01047150045633316, 0.05170458182692528, -0.04658040776848793, 0.02691018581390381, 0.08020161092281342, 0.049489617347717285, -0.011289715766906738, 0.018380913883447647, 0.03534027934074402, 0.024281978607177734, 0.026860596612095833, 0.005074586719274521, -0.05345671996474266, -0.007987928576767445, -0.009694608859717846, -0.054746028035879135, 0.006401086691766977, -0.02669529989361763, -0.049522675573825836, 0.03494356945157051, 0.03666264936327934, -0.057357706129550934, -0.025058871135115623, -0.03257983922958374, -0.06023385375738144, 0.038348667323589325, -0.0029443346429616213, 0.009033425711095333, -0.07868088781833649, -0.018281735479831696, -0.040001627057790756, -0.031571533530950546, -0.03507580608129501, 0.04350590333342552, -0.00888465903699398, 0.02218271978199482, 0.05868007242679596, 0.07226740568876266, 0.019207393750548363, -0.01808338053524494, 0.05031609535217285, -0.04823336750268936, 0.04320836812257767, -0.03340631723403931, 0.04188600182533264, 0.031654179096221924, 0.00855406653136015, 0.009620225988328457, 0.05963879078626633, -0.0004819410969503224, -0.06268023699522018, -0.0739864781498909, 0.046282872557640076, -0.03600146621465683, -0.0022583564277738333, -0.019967753440141678, -0.0018316861242055893, -0.04062975198030472, -0.00025969548732973635, -0.0007918710471130908, -0.002202569041401148, 0.006111818831413984, -0.06426707655191422, 0.00634736567735672, -0.01823214627802372, 0.01095085870474577, 0.035174984484910965, 0.02662918157875538, -0.09249962866306305, -0.06982102245092392, 0.0006844286690466106, 0.014463398605585098, 0.023108378052711487, -0.005830815527588129, 0.00871109776198864, -0.06337448209524155, -0.05352284014225006, -0.06430013477802277, -0.02666224166750908, -0.04191906005144119, -0.05547333136200905, 0.014141070656478405, -0.05358895659446716, -0.03095993772149086, 0.021736420691013336, -0.00291334162466228, 0.01364518329501152, 0.04297695308923721, 0.01426504272967577, 0.055341094732284546, -0.010917799547314644, -0.0013626586878672242, -0.03438156470656395, -0.011182272806763649, 0.0038865217939019203, -0.02150500752031803, -0.009322693571448326, -0.01801726222038269, -0.006049832794815302, -0.012231902219355106, -0.002983592450618744, -0.004640684463083744, -0.057390764355659485, 0.03129052743315697, 0.03924126550555229, -0.041522350162267685, -0.07742463797330856, -0.06135786697268486, -0.004363813903182745, 0.035174984484910965, 0.01935615949332714, 0.059506554156541824, 0.013661712408065796, -0.018116438761353493, -0.005727505777031183, -0.0290590338408947, -0.013149295002222061, 0.0028492894489318132, 0.04281165823340416, 0.026893656700849533, 0.07491213828325272, 0.007760646287351847, -0.07319305837154388, -0.029141681268811226, -0.030596286058425903, 0.015157640911638737, 0.04297695308923721, -0.013364179991185665, 0.036298997700214386, 0.068829245865345, -0.00990949384868145, 0.03649735078215599, -0.0171742532402277, 0.04377037659287453, -0.010760768316686153, 0.03534027934074402, -0.00911607313901186, 0.030761582776904106, -0.04866313561797142, -0.021571125835180283, -0.014785725623369217, -0.02821602299809456, 0.040464457124471664, 0.008992101065814495, 0.001396751031279564, 0.011289715766906738, -0.06760605424642563, 0.030315281823277473, -0.0012531501706689596, -0.02439768612384796, -0.014240249060094357, -0.003712960984557867, -0.016595715656876564, -0.028149904683232307, -0.03257983922958374, 0.0738542452454567, 0.01724037155508995, 0.006281247362494469, 0.0007329843356274068, -0.05018385872244835, 0.012711260467767715, 0.02962104044854641, 0.03213353827595711, 0.00444232951849699, 0.007901147939264774, -0.011140949092805386, 0.03500968962907791, -0.02031487599015236, -0.027339955791831017, -0.001527954707853496, -0.04079504683613777, -0.035703931003808975, 0.09382199496030807, 0.02492663450539112, 0.05084504187107086, -0.034679096192121506, -0.0054093110375106335, 0.02352161705493927, -0.019438806921243668, 0.06119257211685181, 0.037224654108285904, 0.0011095493100583553, 0.007153183687478304, 0.01653786189854145, 0.03099299594759941, -0.03215006738901138, 0.02439768612384796, 0.0555063895881176, -0.029670627787709236, -0.012562494724988937, 0.012719525955617428, 0.04291083663702011, 0.009198721498250961, -0.07365588843822479, -0.009603696875274181, -0.045786987990140915, 0.0211248267441988, 0.011529394425451756, 0.045191921293735504, -0.03071199357509613, -0.008211078122258186 ]
7,407
pathlib
__enter__
null
def __enter__(self): return self
(self)
[ 0.041504357010126114, -0.01995713636279106, -0.027242302894592285, 0.03712351992726326, -0.015762893483042717, 0.021352514624595642, -0.0052610584534704685, 0.013961883261799812, 0.02975722774863243, -0.03491687774658203, 0.0010830397950485349, -0.04403550550341606, 0.016809426248073578, 0.03845399618148804, -0.044781867414712906, 0.024500224739313126, -0.019843559712171555, -0.017231283709406853, -0.026220109313726425, 0.023591607809066772, -0.030536042526364326, 0.014456755481660366, 0.06717280298471451, -0.037220872938632965, -0.05127199366688728, 0.05120709538459778, -0.023072397336363792, -0.022439610213041306, 0.05120709538459778, -0.011836366727948189, -0.02252073772251606, -0.03845399618148804, 0.011357720009982586, -0.003167992690578103, 0.06847082823514938, -0.014375628903508186, -0.050266023725271225, 0.03553343936800957, 0.00980820320546627, -0.013945657759904861, 0.03077942319214344, -0.05545812472701073, 0.004652609117329121, -0.011171129532158375, 0.03285626322031021, 0.03897320479154587, 0.06623173505067825, -0.03744802623987198, 0.09657307714223862, -0.06168864667415619, 0.03864869847893715, 0.002159995026886463, 0.026025405153632164, 0.014635234139859676, -0.042023565620183945, 0.05532832443714142, 0.031558237969875336, 0.0029672044329345226, 0.023088622838258743, 0.003109175944700837, -0.02114158496260643, -0.025895603001117706, 0.026333685964345932, 0.026901572942733765, -0.06321382522583008, -0.021044233813881874, -0.08781140297651291, 0.01770181767642498, 0.0009167302632704377, 0.009605386294424534, -0.006733505520969629, -0.03026021271944046, -0.01307760365307331, 0.028280723839998245, -0.028232047334313393, -0.02424062043428421, -0.06652379035949707, -0.01349946204572916, 0.059579357504844666, -0.042867280542850494, -0.04072554036974907, 0.019827334210276604, -0.06834102421998978, 0.05205081030726433, 0.04036858305335045, -0.031915195286273956, 0.02456512674689293, -0.02080085314810276, -0.06331118196249008, 0.002896218793466687, -0.02750190906226635, 0.0963134691119194, 0.009362006559967995, 0.056301843374967575, 0.047345466911792755, -0.02094688080251217, -0.003303879639133811, -0.023607833310961723, -0.028832385316491127, -0.008088319562375546, -0.022975046187639236, 0.04017388075590134, -0.02044389583170414, 0.005747817922383547, 0.011171129532158375, -0.002594022313132882, 0.0041780187748372555, -0.04040103405714035, -0.018659112975001335, 0.01841573230922222, -0.03712351992726326, -0.02336445264518261, -0.053056780248880386, 0.045430880039930344, -0.019486602395772934, -0.019665081053972244, -0.05205081030726433, -0.009775752201676369, 0.01822102814912796, -0.011974282562732697, -0.00447413045912981, 0.03527383506298065, -0.041342101991176605, -0.01082228496670723, 0.018123677000403404, 0.053381286561489105, -0.01737731136381626, -0.026577066630125046, 0.02404591627418995, -0.01634700410068035, -0.013913207687437534, 0.026203883811831474, -0.024500224739313126, 0.011860704980790615, 0.02802111953496933, 0.01702035591006279, 0.01666339859366417, -0.018967393785715103, -0.021612118929624557, 0.07314372062683105, -0.00806398130953312, -0.005317846778780222, -0.007317617069929838, -0.006595590617507696, 0.00842093862593174, -0.01279366109520197, -0.03058471903204918, 0.04692361131310463, 0.01702035591006279, -0.032758910208940506, 0.03178539127111435, 0.008218121714890003, 0.08956373482942581, 0.05617203935980797, -0.015527626499533653, 0.03741557523608208, -0.03751292824745178, 0.00018240803910885006, 0.008745444938540459, -0.07353312522172928, -0.01340210996568203, 0.0015028697671368718, -0.026431037113070488, -0.04176396131515503, 0.0002408445143373683, 0.029692325741052628, 0.015397823415696621, -0.015243683010339737, -0.031882744282484055, -0.024824731051921844, -0.04283482953906059, -0.055425673723220825, -0.03537118807435036, 0.04247787594795227, -0.10358241200447083, 0.026382362470030785, -0.008266798220574856, 0.0671079009771347, 0.0036932872608304024, 0.004689116030931473, -0.022650539875030518, -0.03725332394242287, -0.03142843395471573, 0.015779118984937668, 0.011925606057047844, -0.016987904906272888, 0.05604223906993866, 0.003581738332286477, 0.042348071932792664, 0.002123488113284111, -0.026852896437048912, -0.0015870386268943548, -0.010246286168694496, -0.009491809643805027, 0.009662174619734287, -0.005841113161295652, -0.06389529258012772, 0.046469300985336304, -0.033781103789806366, 0.05565283074975014, -0.06155884638428688, -0.012225775048136711, -0.012696309015154839, -0.016476808115839958, 0.05344618856906891, 0.018172353506088257, -0.015089542604982853, 0.0033221333287656307, -0.019713757559657097, 0.04783222824335098, -0.08300871402025223, -0.007605616468936205, 0.013231744058430195, 0.06860063225030899, 0.06613438576459885, -0.044262658804655075, -0.006400886923074722, -0.0003660836664494127, 0.054095201194286346, 0.039492417126894, 0.010432877577841282, -0.016809426248073578, -0.04105004668235779, -0.056464094668626785, -0.05711310729384422, -0.055263422429561615, 0.0014724473003298044, -0.02782641537487507, -0.010887186042964458, -0.04932495579123497, 0.02026541903614998, -0.02701514959335327, 0.00980820320546627, -0.04257522523403168, -0.025798249989748, -0.007893615402281284, -0.011195466853678226, 0.024110818281769753, -0.06000121310353279, 0.01074115838855505, 0.00851829070597887, 0.02026541903614998, 0.040141429752111435, -0.019048519432544708, 0.00022056286979932338, 0.009232204407453537, 0.03339169919490814, 0.04387325048446655, 0.03139598295092583, 0.024516450241208076, -0.026333685964345932, -0.012744984589517117, -0.019129646942019463, -0.009662174619734287, -0.032044995576143265, -0.061818450689315796, -0.034819524735212326, -0.03345659747719765, 0.033618852496147156, -0.009572936221957207, 0.028442976996302605, 0.029173115268349648, 0.01870778761804104, 0.03767517954111099, -0.0030239929910749197, 0.03287248685956001, -0.0008614627877250314, -0.027972443029284477, -0.001662080641835928, 0.021092908456921577, 0.037383124232292175, 0.03829174488782883, 0.03767517954111099, 0.03511158004403114, -0.028102245181798935, -0.024191943928599358, -0.021368740126490593, 0.038940757513046265, -0.11273349076509476, -0.0098731042817235, 0.07307881861925125, 0.07022316008806229, -0.06743241101503372, -0.00729733519256115, -0.03920036181807518, -0.02266676537692547, 0.00037115407758392394, 0.013750954531133175, 0.017588241025805473, -0.04951966181397438, -0.017312411218881607, 0.03183406591415405, 0.01770181767642498, 0.005293508991599083, 0.08833061158657074, -0.01323985680937767, -0.09027764946222305, 0.037026166915893555, -0.008810346014797688, 0.04423020780086517, 0.02420816943049431, -0.06509596109390259, -0.044619616121053696, 0.08644847571849823, 0.00362838595174253, 0.027939992025494576, 0.013191181235015392, 0.08106167614459991, -0.024127043783664703, -0.008218121714890003, 0.027096275240182877, 0.05931974947452545, 0.030633393675088882, 0.028929736465215683, 0.00739468727260828, -0.030876774340867996, 0.014221488498151302, 0.012485379353165627, -0.015105768106877804, 0.08261930197477341, -0.06775691360235214, -0.003648667596280575, 0.004843256436288357, -0.0017188693163916469, 0.02699892409145832, 0.03404071182012558, 0.018172353506088257, 0.06616683304309845, -0.028296949341893196, 0.02974100224673748, -0.03715597093105316, -0.024678703397512436, 0.005508494563400745, -0.015917032957077026, -0.09053725749254227, 0.020362770184874535, 0.005536888726055622, -0.015608753077685833, 0.002131600631400943, -0.08300871402025223, 0.03371620550751686, 0.016712075099349022, -0.03142843395471573, -0.05036337673664093, -0.029091989621520042, -0.048383887857198715, 0.03404071182012558, 0.0006343083805404603, 0.032547980546951294, -0.007881446741521358, -0.031249957159161568, 0.0602283701300621, 0.008526402525603771, 0.05961180850863457, 0.021871725097298622, -0.005297565367072821, -0.023624058812856674, -0.00016250666521955281, -0.013215518556535244, -0.014659572392702103, 0.03214234858751297, 0.02701514959335327, -0.03365130349993706, -0.00928899273276329, 0.014805600047111511, -0.032921165227890015, -0.04403550550341606, 0.01521123293787241, -0.005812718998640776, -0.05568528175354004, -0.00017594326345715672, -0.045463331043720245, 0.011682226322591305, 0.05740516260266304, -0.01230690162628889, -0.00868865568190813, -0.03507912904024124, 0.00945124588906765, -0.008429051376879215, 0.027793964371085167, 0.06853573024272919, 0.039979174733161926, 0.0240945927798748, -0.012120310217142105, -0.005565282888710499, -0.0722350999712944, 0.026171432808041573, -0.01616852544248104, 0.056464094668626785, 0.03890830650925636, -0.012623295187950134, -0.034105610102415085, 0.0052610584534704685, 0.021741921082139015, -0.032564207911491394, -0.027063826099038124, 0.022764116525650024, -0.04176396131515503, -0.02631746046245098, -0.035825494676828384, 0.048935551196336746, 0.005305678118020296, -0.0038230898790061474, -0.018529308959841728, 0.011463184840977192, -0.03939506411552429, 0.05140179768204689, 0.011860704980790615, 0.0481891855597496, -0.024467775598168373, -0.06636153906583786, -0.047020964324474335, -0.0361175499856472, -0.05805417522788048, 0.010587017983198166, -0.089369036257267, 0.09060215950012207, 0.003522921586409211, 0.021887950599193573, 0.04569048807024956, -0.012022958137094975, 0.018675336614251137, 0.018318381160497665, 0.034981779754161835, -0.023429354652762413, -0.06405754387378693, -0.061136987060308456, -0.01564931683242321, -0.019162096083164215, -0.03576059266924858, -0.07119668275117874, 0.013012702576816082, 0.05620449036359787, 0.008331699296832085, 0.02662574127316475, -0.030519817024469376, -0.03181784227490425, -0.035663243383169174, 0.01737731136381626, 0.0910564661026001, 0.0532514825463295, -0.012201436795294285, 0.020752178505063057, -0.020833304151892662, -0.0029469227883964777, -0.0163551177829504, -0.017977649345993996, 0.04072554036974907, 0.0030422464478760958, -0.004315933678299189, 0.037058617919683456, 0.0030260211788117886, 0.04559313505887985, 0.02110913395881653, -0.04455471411347389, -0.025392618030309677, -0.004441679921001196, -0.06561516970396042, 0.028670132160186768, 0.029968157410621643, -0.0154708381742239, 0.026885347440838814, 0.026431037113070488, 0.026901572942733765, -0.030990350991487503, -0.010635693557560444, 0.029805904254317284, 0.004194243811070919, 0.0031213448382914066, -0.029124440625309944, 0.010067807510495186, -0.0018719957442954183, -0.08060736209154129, -0.09423662722110748, 0.0032917107455432415, -0.024548901244997978, -0.010806059464812279, -0.020005812868475914, -0.008526402525603771, -0.0636356845498085, -0.03423541411757469, -0.06032571941614151, 0.053868044167757034, 0.05620449036359787, -0.034462567418813705, 0.020898206159472466, 0.11987262964248657, -0.026074081659317017, 0.015414048917591572, -0.001460278290323913, -0.06636153906583786, 0.024857182055711746, -0.016411906108260155, 0.04397060349583626, -0.0011935747461393476, 0.015495175495743752, -0.04208846762776375, -0.013864531181752682, 0.002804951276630163, -0.08560476452112198, 0.023234650492668152, 0.016217201948165894, -0.010968312621116638, 0.0015545879723504186, 0.026577066630125046, 0.009897441603243351, -0.01752334088087082, -0.03141221031546593, 0.011674114502966404, -0.019340574741363525, 0.04036858305335045, 0.018675336614251137, -0.03676656261086464, -0.009248429909348488, -0.006003366317600012, -0.0032531756442040205, -0.07359802722930908, 0.0004314919642638415, -0.001801009988412261, -0.0074149686843156815, 0.057015758007764816, 0.039946723729372025, 0.0669131949543953, -0.04676135629415512, -0.017247509211301804, 0.012931575998663902, 0.031152604147791862, 0.011252256110310555, 0.006786237936466932, 0.045787837356328964, -0.00408269464969635, -0.02626878395676613, -0.010278737172484398, 0.0008036601357161999, 0.007889559492468834, 0.010716820135712624, -0.025165462866425514, -0.040303681045770645, -0.059709157794713974, -0.018464408814907074, 0.02183927409350872, -0.00721620861440897, 0.05143424868583679, -0.043581195175647736, -0.0009081105818040669, 0.034624822437763214, -0.022926369681954384, -0.03579304367303848, -0.026723094284534454, -0.03139598295092583, 0.017231283709406853, -0.055587928742170334, 0.028572779148817062, 0.016728298738598824, -0.002981401514261961, -0.014197150245308876, 0.008867134340107441, -0.01664717309176922, 0.038097038865089417, 0.03381355479359627, 0.03845399618148804, 0.08145108073949814, -0.013994334265589714, -0.004393003880977631, 0.009378232061862946, -0.017393536865711212, 0.015957597643136978, 0.04900044947862625, 0.02386743761599064, 0.018805140629410744, 0.01945415325462818, -0.019794883206486702, 0.06814632564783096, 0.009183527901768684, 0.008461501449346542, 0.045301079750061035, -0.020589925348758698, 0.03640960529446602, -0.002750190906226635, -0.08158088475465775, 0.015584414824843407, -0.04315933585166931, -0.003395147155970335, -0.03709106892347336, -0.07139138877391815, -0.01307760365307331, -0.056983307003974915, 0.059222400188446045, 0.003646639408543706, 0.03449501842260361, -0.007569109555333853, 0.008364149369299412, -0.011025101877748966, -0.02218000590801239, 0.046696458011865616, -0.03725332394242287, -0.016225315630435944, -0.009564823471009731, 0.0018882210133597255, 0.025554871186614037, -0.007581278216093779, 0.029951931908726692, -0.025700898841023445, 0.03683146461844444, 0.010351750999689102, -0.0013588700676336884, 0.013856418430805206, -0.013491349294781685, -0.036701660603284836, -0.02459757775068283, -0.007423081435263157, -0.04520372673869133, 0.02354293130338192, 0.0027765571139752865, -0.0021782484836876392, 0.0005222523468546569, -0.06509596109390259, 0.012152761220932007, 0.016987904906272888, 0.0464043989777565, 0.028767483308911324, -0.0017127847531810403, -0.031688038259744644, 0.01823725365102291, 0.010952087119221687, -0.020525023341178894, 0.08696768432855606, -0.042185816913843155, 0.010935862548649311, 0.029611200094223022, -0.01682565174996853, -0.014302615076303482, 0.026755543425679207, -0.05315413326025009, 0.06434959918260574, 0.020346544682979584, 0.046469300985336304, 0.02391611412167549, -0.03897320479154587, 0.0012138563906773925, -0.010116484016180038, -0.07314372062683105, 0.015243683010339737, -0.04913025349378586, -0.03640960529446602, -0.0757397711277008, 0.01940547674894333, -0.02957874909043312, 0.0041780187748372555, -0.02441909909248352, -0.01038420107215643, 0.05195345729589462, -0.010432877577841282, -0.02626878395676613, 0.009159190580248833, -0.03988182544708252, 0.039816923439502716, 0.005504438187927008, -0.0063440981321036816, 0.022780342027544975, -0.039979174733161926, 0.04779977723956108, -0.040303681045770645, 0.020054489374160767, 0.053348835557699203, 0.013369659893214703, -0.0429646335542202, 0.02253696322441101, -0.0018040521536022425, 0.05367334187030792, -0.007102631498128176, -0.004311877302825451, -0.07067747414112091, 0.024159492924809456, -0.0275181345641613, -0.028751257807016373, 0.012258225120604038, -0.05636674538254738, 0.008295192383229733, -0.00833981204777956, -0.02404591627418995, 0.03355395048856735, -0.009118626825511456, 0.00013170392776373774, 0.0010708707850426435, 0.05263492092490196, -0.005334072280675173, -0.019989587366580963, 0.04371099919080734, -0.10234928876161575, -0.0031213448382914066, -0.028962187469005585, 0.021222712472081184, 0.02114158496260643, -0.11253878474235535, 0.04176396131515503, -0.03027643822133541, -0.0909915640950203, 0.03491687774658203, -0.0171988345682621, 0.04380834847688675, 0.007723249960690737, 0.051304444670677185, -0.06571252644062042, 0.053511086851358414, 0.005691029131412506, 0.02646348811686039, 0.023299552500247955, -0.003167992690578103, 0.0006895758560858667, 0.03991427272558212, 0.055944886058568954, -0.0035939072258770466, 0.045787837356328964, 0.09248429536819458, 0.015908921137452126, -0.02355915680527687, -0.010213836096227169, 0.004664778243750334, 0.0027542472817003727, -0.01956772990524769, 0.001156053738668561, 0.058183979243040085, -0.03851889818906784, 0.02782641537487507, 0.020362770184874535, -0.027420781552791595, -0.006425224710255861, -0.013572475872933865, 0.048903100192546844, -0.010335525497794151, -0.004449792671948671, -0.02975722774863243, 0.06636153906583786, 0.013207406736910343, -0.025911828503012657, 0.027193628251552582, 0.057502515614032745, 0.006672660820186138, 0.04880574718117714, 0.022958820685744286, -0.0050014532171189785, -0.026577066630125046, 0.042542774230241776, 0.025506194680929184, 0.003531034104526043, 0.01737731136381626, 0.04147190600633621, -0.01838328130543232, 0.002622416475787759, 0.039589766412973404, 0.02354293130338192, 0.057859472930431366, 0.04556068405508995, 0.019843559712171555, -0.0189024917781353, 0.01875646412372589, -0.009637837298214436, 0.002506811171770096, -0.004969002678990364, -0.020378995686769485, -0.03890830650925636, -0.00225734687410295, 0.04971436411142349, -0.04575538635253906, 0.025489969179034233, 0.06253236532211304, 0.02596050314605236 ]
7,408
pathlib
__eq__
null
def __eq__(self, other): if not isinstance(other, PurePath): return NotImplemented return self._cparts == other._cparts and self._flavour is other._flavour
(self, other)
[ 0.054458942264318466, -0.03254081308841705, -0.013234090059995651, 0.06610848009586334, -0.011410529725253582, -0.08207791298627853, -0.009586969390511513, 0.044686075299978256, 0.024520687758922577, -0.004766928032040596, 0.0598411001265049, -0.038737375289201736, 0.04355299100279808, 0.0795992836356163, -0.020430956035852432, -0.01740349270403385, -0.01952802762389183, 0.02168797329068184, 0.02563606947660446, 0.011198075488209724, -0.029778914526104927, 0.02037784270942211, 0.023706281557679176, 0.025016412138938904, 0.012508206069469452, 0.06239054352045059, 0.04036618769168854, 0.012012481689453125, 0.0009626804385334253, 0.005563628859817982, -0.021457815542817116, 0.0028393540997058153, 0.04422575980424881, 0.023723985999822617, 0.04139304533600807, 0.00564329931512475, -0.0030252509750425816, 0.04504016414284706, 0.019227052107453346, -0.030557911843061447, -0.032558515667915344, 0.01426094863563776, -0.016075655817985535, -0.004837745800614357, -0.013694405555725098, 0.014004234224557877, -0.08944296836853027, 0.02997366338968277, 0.023476123809814453, 0.07336731255054474, -0.008914199657738209, -0.017545128241181374, -0.012136412784457207, 0.06501080840826035, -0.02246696874499321, 0.039374735206365585, 0.05424648895859718, 0.05863719806075096, -0.05251144990324974, 0.015420591458678246, -0.04518180340528488, -0.02329907938838005, 0.021369293332099915, -0.07202177494764328, -0.016633346676826477, -0.05123673006892204, -0.02997366338968277, 0.0008835635962896049, 0.009232879616320133, 0.07676657289266586, -0.05778738111257553, 0.0188552588224411, -0.00882125087082386, -0.012472797185182571, -0.0074270241893827915, 0.011029883287847042, 0.013127862475812435, 0.07110114395618439, 0.04737715423107147, -0.03388635069131851, -0.037958379834890366, -0.03393946588039398, -0.02701701782643795, -0.05194490775465965, -0.08009501546621323, 0.049891188740730286, 0.01949261873960495, -0.004682831931859255, 0.02321055717766285, 0.02469773218035698, -0.006404591258615255, 0.05038691684603691, -0.00939222052693367, -0.0179523304104805, 0.05028069019317627, 0.013473100028932095, -0.004094158299267292, -0.050670187920331955, 0.02322826161980629, -0.03146084025502205, 0.003972440026700497, 0.01575697585940361, -0.004434969276189804, 0.00939222052693367, 0.02485707215964794, 0.038524921983480453, -0.002445429563522339, -0.020537182688713074, -0.03131920471787453, -0.05183868110179901, -0.06614389270544052, 0.0598411001265049, -0.020731931552290916, 0.03693151846528053, -0.014544220641255379, -0.029672687873244286, -0.008998295292258263, -0.04348217323422432, 0.028698941692709923, -0.007812096271663904, 0.006993264891207218, 0.08696434646844864, 0.004864302463829517, 0.028274035081267357, 0.05977028235793114, 0.026415066793560982, 0.03436437249183655, 0.011198075488209724, -0.05920374020934105, -0.027424219995737076, 0.04829778894782066, 0.023440714925527573, 0.016978584229946136, 0.036294158548116684, 0.0066037666983902454, 0.03434666618704796, -0.015995986759662628, -0.002211951883509755, 0.02921237237751484, 0.06012437120079994, -0.009117800742387772, -0.015942873433232307, 0.02177649550139904, 0.029725801199674606, -0.04564211890101433, 0.05236981436610222, -0.049678735435009, -0.013083601370453835, -0.007661608513444662, 0.021918131038546562, -0.0021057252306491137, -0.0055459244176745415, 0.05229899659752846, -0.028079286217689514, -0.011233484372496605, -0.048510242253541946, -0.028291739523410797, -0.012056742794811726, 0.00728981476277113, 0.008095367811620235, -0.0209443848580122, -0.058283109217882156, 0.0447923019528389, 0.006736550014466047, -0.037887562066316605, -0.03358537703752518, -0.02545902505517006, -0.058991286903619766, -0.008254707790911198, 0.030433980748057365, 0.03085888735949993, -0.016783835366368294, -0.034134212881326675, -0.010410226881504059, -0.007581938523799181, 0.006320495158433914, 0.04210122302174568, -0.010746612213551998, -0.037143971771001816, -0.03470075502991676, 0.04518180340528488, -0.05715002119541168, -0.04054323211312294, 0.05520252883434296, 0.07690820842981339, 0.03471846133470535, -0.0218473132699728, -0.012198378331959248, 0.0857604444026947, 0.02478625439107418, -0.05488384887576103, 0.025352798402309418, -0.02560066059231758, 0.027300288900732994, 0.012667546980082989, -0.07860783487558365, 0.045429665595293045, -0.032647039741277695, 0.0021787560544908047, 0.058106064796447754, -0.036294158548116684, -0.05520252883434296, -0.008166185580193996, 0.004485869314521551, -0.008267986588180065, -0.015969429165124893, 0.015031092800199986, -0.012463944964110851, 0.06748943030834198, 0.043269719928503036, -0.04415494203567505, -0.04957250878214836, 0.0009322508703917265, -0.03599318116903305, 0.030965114012360573, 0.025388207286596298, -0.024609209969639778, -0.013526213355362415, -0.026078680530190468, 0.05633561685681343, 0.0436946265399456, 0.02395414561033249, 0.029460234567523003, 0.034860096871852875, -0.04826238006353378, 0.009303697384893894, -0.029619574546813965, 0.054388124495744705, -0.017775285989046097, -0.03542663902044296, 0.008599945344030857, -0.016978584229946136, 0.03532041236758232, -0.018926076591014862, -0.0038064606487751007, 0.061186641454696655, 0.022236810997128487, 0.08781415969133377, -0.06791433691978455, 0.019793594256043434, -0.024502983316779137, -0.05152000114321709, 0.011375120840966702, 0.0004545068950392306, -0.024237416684627533, -0.08816824853420258, 0.011260041035711765, -0.005674282088875771, 0.0187667366117239, 0.01764250174164772, 0.004094158299267292, -0.00884780753403902, -0.040224552154541016, -0.014986831694841385, 0.04493393748998642, -0.02931859903037548, -0.07145523279905319, -0.02237844653427601, 0.04110977426171303, 0.013924564234912395, -0.024202007800340652, 0.05003282427787781, 0.046244069933891296, -0.0013909072149544954, -0.04635029658675194, -0.0188552588224411, -0.020572591572999954, 0.023830214515328407, 0.0026866530533879995, -0.022998103871941566, -0.05973487347364426, -0.002987629035487771, -0.025813113898038864, 0.08391917496919632, -0.03763969987630844, 0.022856468334794044, -0.004820041358470917, -0.028840577229857445, -0.024945594370365143, -0.0012404192239046097, -0.01619073562324047, 0.03215131163597107, -0.0028681238181889057, -0.04004750773310661, -0.052192769944667816, -0.029761210083961487, -0.04571293666958809, -0.044544439762830734, -0.016128771007061005, -0.025954749435186386, 0.009330254048109055, 0.007891766726970673, 0.009303697384893894, -0.019067712128162384, 0.05831851810216904, 0.03689610958099365, -0.014756673946976662, -0.09170914441347122, 0.013756371103227139, -0.0009416563552804291, -0.04578375443816185, 0.010587271302938461, 0.00713490042835474, -0.000683835067320615, 0.038595739752054214, 0.0013433265266939998, -0.006254103034734726, 0.06306331604719162, 0.019333278760313988, 0.039303917437791824, 0.004043257795274258, 0.013163271360099316, -0.01617303118109703, 0.06355904042720795, 0.040224552154541016, 0.06497539579868317, 0.02032472938299179, -0.039374735206365585, 0.008458309806883335, 0.04128681868314743, -0.03657742962241173, 0.07938683032989502, -0.06324035674333572, 0.024963298812508583, 0.006041649729013443, -0.04635029658675194, 0.006617045029997826, 0.03725019842386246, 0.0146858561784029, 0.011729209683835506, -0.006382460705935955, 0.0317264050245285, 0.046916838735342026, 0.030221525579690933, 0.005807065404951572, -0.008546832017600536, 0.031106749549508095, -0.03617022931575775, 0.03162017837166786, -0.016925470903515816, 0.05523793771862984, -0.002899106591939926, 0.020767340436577797, -0.05389240011572838, -0.0036891684867441654, 0.015880906954407692, -0.040153734385967255, 0.0009029278298839927, 0.016730722039937973, -0.009135505184531212, -0.06469212472438812, -0.01049874909222126, -0.006966708227992058, -0.009330254048109055, -0.002290515461936593, 0.05127213895320892, -0.022183697670698166, 0.010799725539982319, -0.024874776601791382, 0.026875382289290428, 0.11522067338228226, -0.002277237130329013, -0.004904137458652258, -0.03654202073812485, -0.004133993294090033, -0.016305815428495407, -0.017562832683324814, -0.016093360260128975, -0.09170914441347122, -0.02770749293267727, -0.07085327804088593, 0.004521278664469719, 0.023476123809814453, -0.11819502711296082, 0.018589690327644348, -0.04057864099740982, -0.05562743917107582, 0.018554281443357468, 0.0029278763104230165, 0.020466364920139313, 0.060266006737947464, 0.04936005547642708, -0.039374735206365585, 0.0433405376970768, -0.033231284469366074, 0.014854048378765583, 0.028858281672000885, -0.007750130724161863, 0.0324522890150547, 0.04203040525317192, -0.04142845422029495, -0.024202007800340652, 0.03277096897363663, -0.025211162865161896, -0.011144962161779404, -0.007940453477203846, -0.011977072805166245, 0.01604910008609295, -0.10041973739862442, -0.025175753980875015, 0.024449869990348816, 0.010976769961416721, 0.006577209569513798, 0.02708783559501171, 0.009463038295507431, -0.0018921650480479002, 0.04592538997530937, 0.026538997888565063, -0.03225754201412201, 0.008998295292258263, -0.003729003481566906, -0.007829801179468632, 0.006745402235537767, -0.022077471017837524, -0.04493393748998642, 0.004567752592265606, 0.0048775807954370975, -0.09758702665567398, 0.08937215059995651, 0.04663356766104698, -0.025883931666612625, 0.03404569253325462, -0.0036316290497779846, -0.004851024132221937, -0.0012359931133687496, -0.030327754095196724, 0.03362078592181206, 0.04720010980963707, 0.01954573206603527, -0.002885828260332346, -0.029088441282510757, -0.018341828137636185, 0.014800935052335262, 0.046102434396743774, -0.0057450998574495316, 0.017978886142373085, 0.00944533385336399, -0.05035150796175003, 0.009330254048109055, 0.01624384894967079, -0.01733267307281494, -0.004140632227063179, -0.04401330649852753, -0.011879697442054749, -0.01467700395733118, -0.05495466664433479, -0.007701443508267403, -0.00017842784291133285, 0.0391622819006443, 0.05353831127285957, -0.03002677671611309, 0.032717857509851456, -0.04178254306316376, -0.06295708566904068, -0.04213663190603256, 0.025866227224469185, 0.00944533385336399, -0.004616439808160067, -0.02620261162519455, 0.006364756263792515, -0.02105061151087284, 0.052865542471408844, 0.02712324447929859, -0.03831246867775917, 0.04730633646249771, 0.04663356766104698, -0.02246696874499321, 0.026822268962860107, -0.007931601256132126, 0.038595739752054214, 0.013756371103227139, -0.062496770173311234, -0.008166185580193996, 0.022909581661224365, 0.0218473132699728, 0.035904660820961, -0.0331781730055809, 0.06090337038040161, -0.05332585796713829, -0.030557911843061447, -0.04889973998069763, 0.0021887149196118116, -0.025937044993042946, -0.01945720985531807, 0.05155541002750397, -0.05049314349889755, 0.006125745829194784, 0.02099749818444252, 0.014083904214203358, -0.03574531897902489, 0.03802919760346413, -0.03424043953418732, -0.11373350024223328, 0.04702306538820267, 0.06717075407505035, 0.037179380655288696, 0.014092756435275078, -0.0066126189194619656, -0.022148288786411285, -0.035019438713788986, -0.010250886902213097, 0.01242853607982397, 0.012534762732684612, 0.04808533564209938, 0.005196261219680309, -0.005391010548919439, -0.03891441971063614, -0.04132222756743431, -0.02852189727127552, 0.017890363931655884, 0.007953732274472713, -0.03668365627527237, 0.03664824739098549, -0.03756888210773468, 0.059628646820783615, 0.07265913486480713, -0.030451685190200806, -0.06713534146547318, -0.009755161590874195, -0.034187328070402145, -0.0017571684438735247, -0.02262631058692932, 0.0046120136976242065, -0.06295708566904068, -0.06879956275224686, 0.004558900371193886, -0.024202007800340652, -0.002823862712830305, 0.05552121251821518, -0.058212291449308395, -0.026786860078573227, 0.0008265773649327457, -0.005776082631200552, 0.04436739534139633, -0.000848707917612046, 0.031868040561676025, -0.04118059203028679, 0.014800935052335262, 0.005789360962808132, 0.03358537703752518, -0.016633346676826477, 0.045394256711006165, 0.033479150384664536, 0.007657182402908802, 0.000039247210224857554, 0.019917525351047516, 0.025813113898038864, -0.034824687987565994, 0.05796442925930023, 0.040897320955991745, 0.01883755438029766, 0.007546529173851013, 0.04472148418426514, -0.034187328070402145, 0.015535670332610607, 0.024874776601791382, 0.03208049386739731, -0.018501168116927147, 0.005005938466638327, -0.00441062543541193, 0.021139133721590042, 0.006440000142902136, 0.047766655683517456, -0.04808533564209938, 0.006099189165979624, -0.025919340550899506, 0.020076867192983627, -0.021475519984960556, 0.026609815657138824, 0.000502364244312048, -0.022219106554985046, 0.02992055006325245, -0.02188272215425968, 0.004895285237580538, 0.009755161590874195, -0.004625292029231787, 0.009108948521316051, 0.03069954738020897, -0.02627342939376831, -0.06451508402824402, -0.00856010988354683, 0.021988948807120323, 0.05017445981502533, -0.027371106669306755, 0.016730722039937973, -0.06324035674333572, 0.023688577115535736, 0.04723551869392395, -0.011233484372496605, -0.052192769944667816, -0.0418887697160244, -0.014349470846354961, 0.034151919186115265, -0.0737922191619873, 0.009126652963459492, -0.05456516891717911, 0.015456000342965126, -0.037993788719177246, 0.016093360260128975, 0.011401677504181862, 0.02030702494084835, -0.0672769770026207, -0.006652453914284706, -0.039268508553504944, -0.006466556806117296, -0.02639736235141754, -0.011640687473118305, 0.003149182302877307, 0.022183697670698166, 0.014420288614928722, 0.07212800532579422, 0.07421712577342987, 0.026025567203760147, -0.07988256216049194, 0.02252008207142353, -0.024202007800340652, -0.0293717123568058, 0.018288714811205864, -0.05552121251821518, 0.07648330181837082, -0.034081101417541504, -0.034027986228466034, -0.015057649463415146, -0.0029411546420305967, -0.07357976585626602, -0.018324123695492744, 0.0362587496638298, 0.020554887130856514, 0.014827491715550423, -0.052759312093257904, 0.03466534614562988, -0.031885746866464615, -0.015278955921530724, -0.015482557006180286, 0.02250237762928009, -0.11366268247365952, -0.01715562865138054, -0.014393731951713562, 0.008728303015232086, 0.09022197127342224, -0.01878444105386734, -0.03153165802359581, -0.07605839520692825, 0.052192769944667816, -0.10049056261777878, -0.012145265005528927, -0.012499353848397732, -0.06738320738077164, 0.04709388315677643, -0.03130149841308594, -0.01653597317636013, 0.06766647845506668, 0.004882006905972958, -0.02336989715695381, -0.05190949887037277, 0.031921155750751495, 0.038737375289201736, 0.00003272906178608537, -0.010728907771408558, 0.002390103181824088, 0.06161154806613922, -0.03215131163597107, 0.037887562066316605, -0.029548756778240204, 0.05098886787891388, 0.011711505241692066, 0.08080319315195084, -0.015916315838694572, 0.0037843300960958004, -0.028752055019140244, -0.031868040561676025, 0.012915409170091152, -0.03523189201951027, -0.016668755561113358, -0.037143971771001816, -0.02999136783182621, -0.0039348178543150425, 0.021263066679239273, 0.006847202777862549, -0.005700838752090931, -0.013048192486166954, 0.016757279634475708, -0.019050007686018944, -0.0050679040141403675, 0.049112193286418915, 0.05637102574110031, -0.00524494843557477, 0.008166185580193996, 0.05336126685142517, -0.05268849432468414, 0.0017483162228018045, -0.05049314349889755, 0.0019320000428706408, 0.03197426721453667, 0.043092675507068634, 0.03746265545487404, -0.005736247636377811, -0.004344233777374029, -0.04210122302174568, -0.01460618618875742, 0.02174108661711216, 0.0013754158280789852, 0.011056439951062202, -0.0005076202796772122, 0.025724591687321663, 0.00020042010874021798, -0.05017445981502533, 0.016279257833957672, -0.011029883287847042, 0.010604975745081902, -0.04298644885420799, 0.046067025512456894, 0.015482557006180286, -0.08767252415418625, 0.04245531186461449, -0.033461444079875946, -0.0013377938885241747, -0.02545902505517006, 0.0254767294973135, 0.008064385503530502, -0.03526730090379715, -0.037037745118141174, 0.02611408941447735, 0.01131315529346466, -0.0037776906974613667, 0.03321358188986778, 0.011065292172133923, -0.053679946810007095, 0.008931904099881649, 0.025760000571608543, -0.03979964181780815, 0.07754556834697723, -0.010374817997217178, 0.02790224179625511, -0.008936329744756222, 0.007683739066123962, -0.027229471132159233, -0.022856468334794044, 0.009507299400866032, 0.07400467246770859, 0.020519478246569633, -0.023706281557679176, 0.0187667366117239, -0.0255652517080307, -0.021528633311390877, 0.009042557328939438, 0.0028570585418492556, 0.03824165090918541, -0.016713017597794533, 0.0248393677175045, 0.024325938895344734, -0.0036758901551365852, -0.0005582440062426031, 0.01049874909222126, 0.015163877047598362, 0.02321055717766285, -0.006019519176334143, -0.004525704775005579, 0.022059766575694084, -0.011578721925616264, -0.017509719356894493, 0.02625572495162487, 0.008551257662475109, 0.0583893358707428, 0.0003084450145252049, 0.03215131163597107, -0.03431125730276108, 0.06005355343222618 ]
7,409
pathlib
__exit__
null
def __exit__(self, t, v, tb): # https://bugs.python.org/issue39682 # In previous versions of pathlib, this method marked this path as # closed; subsequent attempts to perform I/O would raise an IOError. # This functionality was never documented, and had the effect of # making Path objects mutable, contrary to PEP 428. In Python 3.9 the # _closed attribute was removed, and this method made a no-op. # This method and __enter__()/__exit__() should be deprecated and # removed in the future. pass
(self, t, v, tb)
[ 0.057159166783094406, 0.014828868210315704, -0.01677125319838524, 0.04206503927707672, -0.04031946137547493, -0.041106682270765305, -0.005994011647999287, 0.07091844081878662, -0.0016985172405838966, -0.035767264664173126, 0.03946378454566002, -0.050758711993694305, 0.035835716873407364, -0.0021274248138070107, -0.03652025759220123, 0.07468341290950775, -0.013896181248128414, 0.028134632855653763, -0.019184259697794914, 0.019355395808815956, -0.020810045301914215, -0.0010380421299487352, 0.00043372085201554, -0.054078735411167145, -0.0339018888771534, 0.04641187563538551, -0.013699375092983246, -0.007944953627884388, 0.05859670415520668, -0.04452938959002495, -0.06575015932321548, -0.015265262685716152, -0.0020333004649728537, 0.01124358456581831, 0.05911010876297951, 0.013382775709033012, -0.03768397867679596, 0.018448378890752792, 0.05818597972393036, -0.007491444703191519, 0.009515118785202503, 0.002455790527164936, -0.025276673957705498, -0.01232173666357994, 0.048533953726291656, 0.01600114442408085, 0.006460355129092932, -0.012005136348307133, 0.05103252828121185, -0.04497433826327324, 0.010687394998967648, 0.0339018888771534, 0.03833429142832756, -0.015470624901354313, -0.030821455642580986, 0.07023390382528305, 0.06598974764347076, 0.007538507226854563, -0.009960070252418518, -0.05962351709604263, 0.02532801404595375, 0.02938392013311386, 0.020844271406531334, 0.00020402528753038496, -0.029760416597127914, 0.010678838938474655, -0.008565318770706654, -0.024780381470918655, -0.030855683609843254, 0.039121516048908234, -0.037855114787817, -0.006883915048092604, -0.04976612702012062, 0.024489451199769974, 0.023513982072472572, -0.001200085855089128, -0.06506561487913132, -0.016334857791662216, 0.058049071580171585, -0.07043926417827606, -0.01875642128288746, -0.007089277263730764, -0.013665148057043552, 0.005232459865510464, 0.017413010820746422, 0.012133488431572914, 0.05500286445021629, -0.04648033156991005, -0.04897890239953995, 0.05592699348926544, -0.027296070009469986, 0.02905876375734806, -0.039532240480184555, -0.027929270640015602, 0.04428979754447937, -0.0304278451949358, -0.011320595629513264, 0.002761694835498929, -0.009395324625074863, -0.036006852984428406, 0.057843711227178574, -0.06568170338869095, 0.008278666995465755, 0.0036366237327456474, 0.013262980617582798, 0.018379924818873405, 0.03397034481167793, -0.036930982023477554, -0.030975477769970894, -0.04517970234155655, -0.06342271715402603, 0.025139765813946724, -0.04531661048531532, 0.008210212923586369, -0.02941814623773098, -0.01144894678145647, -0.04500856623053551, -0.04209926724433899, 0.03309755399823189, -0.040456369519233704, 0.04312608018517494, 0.02816885896027088, -0.0647575706243515, 0.015804339200258255, 0.04644610360264778, 0.021015407517552376, -0.008163150399923325, 0.043057624250650406, 0.013964635320007801, 0.03816315904259682, -0.026611529290676117, 0.030017120763659477, -0.0027231895364820957, 0.013339991681277752, 0.012210498563945293, 0.04408443719148636, -0.03133486211299896, 0.016018258407711983, -0.030239595100283623, -0.00799629371613264, -0.029640622437000275, -0.05654308199882507, -0.0710553526878357, -0.004924416542053223, 0.045487746596336365, 0.027569886296987534, 0.007213350385427475, -0.007829437032341957, -0.02938392013311386, 0.01843126490712166, -0.03792356699705124, 0.0012706791749224067, 0.002746720565482974, 0.057159166783094406, 0.04302339628338814, 0.006186538841575384, -0.012595552951097488, 0.03104393184185028, -0.00005959651025477797, -0.023565322160720825, -0.001615088782273233, -0.01576155424118042, 0.008077583275735378, -0.0038633779622614384, 0.011808331124484539, 0.03984028100967407, -0.02038220688700676, 0.026200804859399796, -0.004633486270904541, -0.02394181862473488, -0.05257274582982063, 0.017575588077306747, -0.009643470868468285, 0.015932690352201462, -0.05335996672511101, 0.019749006256461143, 0.03665716573596001, 0.03403879702091217, -0.02070736326277256, -0.03287507966160774, 0.029520828276872635, -0.0723559781908989, -0.024780381470918655, 0.024403885006904602, 0.005613235756754875, 0.035116951912641525, -0.03256703540682793, -0.028665151447057724, 0.0018183118663728237, 0.02775813452899456, -0.035151176154613495, -0.002772390842437744, 0.02443811111152172, 0.0263034850358963, 0.053017694503068924, -0.029315466061234474, -0.02431831695139408, 0.0043147471733391285, 0.028904741629958153, 0.04209926724433899, -0.030171141028404236, 0.01916714571416378, 0.011457503773272038, -0.02168283425271511, 0.037341706454753876, 0.0352538600564003, 0.04894467815756798, -0.012895040214061737, -0.02625214494764805, 0.0877581462264061, -0.009831719100475311, -0.011697093024849892, -0.013314321637153625, 0.020929839462041855, 0.043947529047727585, -0.022641191259026527, -0.015119797550141811, 0.012980607338249683, 0.014743300154805183, 0.0768054947257042, 0.007983459159731865, 0.037992022931575775, 0.023753570392727852, 0.01174843404442072, -0.018978897482156754, -0.056269265711307526, -0.02334284596145153, 0.03231033310294151, 0.05027953162789345, -0.031351976096630096, -0.016035372391343117, 0.001320950104855001, -0.013262980617582798, -0.05678267031908035, -0.05110098049044609, 0.013083288446068764, -0.002774530090391636, 0.018328582867980003, -0.04826013743877411, 0.010499146766960621, -0.030855683609843254, -0.05596122145652771, -0.010370795615017414, 0.0060881357640028, 0.034295499324798584, -0.013434115797281265, 0.01029378455132246, 0.028990309685468674, 0.06499715894460678, -0.013391331769526005, 0.023719344288110733, -0.01386195421218872, -0.011962353251874447, -0.03617798909544945, 0.013536796905100346, -0.012578439898788929, -0.010302341543138027, -0.06821450591087341, 0.014803198166191578, 0.01807188056409359, 0.002545636612921953, 0.006263549439609051, 0.015975473448634148, 0.04661723971366882, -0.004915859550237656, -0.04908158630132675, 0.028596697375178337, -0.08741588145494461, -0.01392185129225254, -0.000667427433654666, -0.002731746295467019, -0.005454935599118471, -0.05811752751469612, -0.007097833789885044, -0.04754136875271797, 0.04565887898206711, -0.025105539709329605, -0.0054078735411167145, -0.06287508457899094, 0.014161440543830395, 0.043947529047727585, 0.03898460790514946, 0.017729610204696655, 0.014324018731713295, -0.07523105293512344, -0.001747718546539545, -0.03241301327943802, -0.022880781441926956, -0.011414719745516777, -0.0036580157466232777, 0.004197091795504093, -0.008890475146472454, -0.022179126739501953, 0.051477476954460144, 0.11924703419208527, -0.013930408284068108, -0.08673133701086044, -0.05818597972393036, 0.006165146827697754, -0.012809472158551216, 0.024078726768493652, -0.05794639140367508, -0.038436975330114365, 0.059828877449035645, 0.012664007022976875, -0.002282516099512577, 0.05733030289411545, 0.029452374204993248, 0.002975613810122013, 0.05548204481601715, 0.03922419622540474, -0.009737594984471798, -0.0237022303044796, -0.014520824886858463, 0.0646548941731453, -0.004633486270904541, -0.019150033593177795, -0.03638334944844246, -0.08077582716941833, 0.03597262501716614, -0.03918996825814247, -0.025875646620988846, 0.03949801251292229, -0.07796921581029892, -0.001000606338493526, -0.03169424459338188, 0.054968636482954025, 0.0583571158349514, 0.0008770680869929492, 0.03364518657326698, -0.0461038313806057, -0.003859099466353655, 0.013973192311823368, -0.04689105600118637, -0.01908157952129841, 0.02589276060461998, 0.0004109919536858797, -0.01614660955965519, 0.004885911010205746, -0.018260128796100616, -0.006083857733756304, 0.003450514283031225, -0.007940675131976604, -0.054078735411167145, -0.04600115120410919, 0.027501432225108147, 0.026491735130548477, -0.004633486270904541, 0.07509414106607437, 0.05127211660146713, -0.005814319476485252, 0.06561324745416641, -0.042407311499118805, -0.018533945083618164, -0.059349700808525085, -0.005467770621180534, -0.0038312901742756367, 0.013040505349636078, 0.028630925342440605, -0.00589560903608799, 0.020211070775985718, 0.05236738175153732, -0.015915576368570328, -0.011414719745516777, 0.03610953316092491, -0.08693669736385345, -0.028511129319667816, 0.04237308353185654, -0.029144329950213432, 0.001974472776055336, -0.018208788707852364, -0.0725613385438919, 0.05377069115638733, 0.020878499373793602, 0.04695950821042061, 0.0010460640769451857, 0.03686252981424332, 0.014512267895042896, -0.012698234058916569, 0.0365544855594635, 0.016428982838988304, 0.02354820817708969, -0.014726187102496624, -0.030667433515191078, -0.04511124640703201, -0.022966347634792328, 0.042407311499118805, 0.011705650016665459, 0.026235030964016914, 0.03747861459851265, -0.0009626356768421829, -0.04524815455079079, 0.08495152741670609, -0.016189392656087875, 0.018619513139128685, 0.021494586020708084, 0.0017060043755918741, -0.02938392013311386, 0.00925841648131609, 0.04466629773378372, 0.007016544695943594, 0.10281804949045181, -0.08392471820116043, 0.034466635435819626, 0.03816315904259682, -0.02228180691599846, 0.032515693455934525, -0.02224758081138134, 0.04671991989016533, -0.058049071580171585, -0.06164291128516197, -0.020998293533921242, -0.010165433399379253, -0.025584718212485313, 0.05859670415520668, -0.001574444118887186, 0.026697097346186638, -0.0275527723133564, 0.07427269220352173, 0.008727896958589554, -0.02926412597298622, 0.015855679288506508, -0.004308329429477453, 0.008706505410373211, 0.017900746315717697, -0.09152312576770782, -0.05513977259397507, 0.00015081292076501995, 0.019954368472099304, 0.014050202444195747, -0.00968625396490097, -0.04007987305521965, 0.006918142084032297, 0.040867093950510025, -0.009232745505869389, -0.006242157891392708, -0.06297776848077774, -0.023719344288110733, 0.043707940727472305, 0.052949242293834686, -0.015718771144747734, 0.014015975408256054, 0.016685685142874718, -0.0023188823834061623, 0.01278380211442709, -0.03672562167048454, 0.03407302498817444, 0.03830006718635559, 0.016283517703413963, 0.0015680266078561544, 0.01754136197268963, -0.031711358577013016, -0.018379924818873405, 0.0003353180945850909, -0.05151170492172241, -0.04244153946638107, -0.025738738477230072, 0.00015843378787394613, -0.023839138448238373, 0.008804908022284508, -0.008599545806646347, 0.08193954825401306, 0.0622589997947216, -0.05811752751469612, -0.010114092379808426, -0.00515544880181551, 0.00773959094658494, -0.004556475672870874, 0.031026817858219147, -0.051956657320261, -0.03942955657839775, 0.004470908083021641, -0.09966915845870972, 0.049252722412347794, -0.003931832034140825, -0.020536229014396667, -0.005634627770632505, 0.007970623672008514, 0.0014161440776661038, -0.0195778701454401, 0.04562465474009514, -0.01952653005719185, 0.03528808429837227, -0.019749006256461143, -0.023804910480976105, 0.01274101808667183, 0.0673588290810585, -0.01292926725000143, 0.02062179520726204, 0.04059327766299248, 0.03326869010925293, -0.04069595783948898, -0.06017114967107773, -0.02772390842437744, 0.021494586020708084, 0.013836284168064594, -0.04802054539322853, -0.02828865498304367, -0.00293710851110518, -0.07933829724788666, 0.00925841648131609, -0.012963494285941124, 0.009540789760649204, -0.01108100637793541, 0.01578722521662712, 0.03343982622027397, 0.023411300033330917, -0.030000006780028343, 0.002919994993135333, -0.05637194588780403, 0.006798346992582083, 0.02062179520726204, 0.011782661080360413, 0.056029677391052246, 0.03768397867679596, -0.01085853110998869, -0.07660013437271118, -0.05017685145139694, 0.056063901633024216, 0.022144898772239685, 0.0009883060120046139, 0.03518540412187576, 0.05657730996608734, -0.06831718236207962, -0.010721622034907341, -0.05503709241747856, 0.02678266353905201, 0.053394194692373276, 0.043707940727472305, 0.04819168150424957, 0.016505993902683258, -0.032276105135679245, 0.009823162108659744, -0.025824306532740593, 0.02938392013311386, 0.058699384331703186, -0.010601827874779701, -0.024130068719387054, -0.00429549440741539, -0.016754139214754105, 0.010944098234176636, 0.011705650016665459, 0.0019926559180021286, 0.00921563245356083, 0.020604683086276054, 0.01463206298649311, -0.026885345578193665, -0.028305767104029655, 0.05767257511615753, -0.008218769915401936, 0.02029663883149624, -0.02233314886689186, 0.07057616859674454, 0.034620657563209534, -0.02330861985683441, -0.010105535387992859, 0.029691962525248528, 0.02698802575469017, 0.012184828519821167, -0.014024532400071621, -0.02346264012157917, 0.06794068962335587, -0.011816888116300106, -0.023359959945082664, 0.056029677391052246, 0.0034761845599859953, 0.045282382518053055, -0.03116372600197792, 0.056303493678569794, -0.03638334944844246, 0.0032216208055615425, -0.007773817982524633, 0.06575015932321548, -0.03901883214712143, 0.0001346352946711704, 0.028665151447057724, 0.004778951406478882, 0.023000575602054596, 0.002851540921255946, -0.041312046349048615, -0.02390759252011776, 0.003281518118456006, 0.007414434105157852, -0.02849401719868183, -0.012869369238615036, -0.027775248512625694, 0.016873933374881744, 0.040182553231716156, -0.06965204328298569, 0.0307530015707016, -0.03617798909544945, -0.027860816568136215, 0.004432402551174164, -0.0718083456158638, 0.02471192739903927, -0.03949801251292229, -0.009917287155985832, -0.0011327012907713652, -0.006952369119971991, -0.0032793788705021143, 0.001680334098637104, -0.028665151447057724, -0.023188823834061623, 0.06393612176179886, -0.04004564508795738, 0.007401599083095789, 0.04654878377914429, 0.014563608914613724, -0.04808900132775307, 0.044187117367982864, 0.005501997657120228, 0.0032472910825163126, 0.055653177201747894, -0.032892193645238876, -0.026611529290676117, -0.0034334007650613785, 0.020365092903375626, 0.019355395808815956, -0.04446093365550041, 0.07242443412542343, -0.04011409729719162, -0.07714776694774628, -0.004701940808445215, 0.006071022246032953, -0.02556760422885418, 0.007752425968647003, 0.04514547437429428, 0.058904748409986496, -0.03104393184185028, -0.030376505106687546, -0.0539075993001461, -0.036212217062711716, -0.0269024595618248, 0.007615517824888229, -0.0029691962990909815, 0.012065034359693527, 0.027946384623646736, 0.0036195102147758007, 0.01839703693985939, 0.020433546975255013, -0.03987450897693634, -0.03326869010925293, 0.01023388747125864, 0.01920137368142605, -0.07057616859674454, -0.06277240067720413, 0.02787793055176735, -0.03836851939558983, 0.04849972575902939, -0.024985743686556816, 0.020741591230034828, 0.07324588298797607, -0.028374221175909042, -0.10610384494066238, 0.004659156780689955, 0.0035788656678050756, 0.060513418167829514, -0.01303194835782051, -0.04699373617768288, 0.08050201088190079, -0.028802059590816498, -0.02354820817708969, -0.02683400548994541, 0.014880208298563957, 0.05288078635931015, 0.003841985948383808, 0.003078295150771737, 0.0385054275393486, -0.03949801251292229, -0.05544781684875488, -0.014358245767652988, -0.02784370258450508, -0.04754136875271797, -0.0039040225092321634, -0.09631490707397461, -0.0423046313226223, 0.03617798909544945, -0.012535655871033669, -0.007123504299670458, -0.004573589190840721, -0.009010270237922668, 0.010499146766960621, -0.01588135026395321, -0.026149464771151543, 0.04716487228870392, 0.0948089212179184, -0.03679407387971878, 0.04223617538809776, 0.02111808769404888, -0.050108395516872406, 0.04209926724433899, -0.031865380704402924, -0.008188821375370026, 0.013262980617582798, -0.09145466983318329, 0.05438677594065666, 0.01848260499536991, -0.06249858811497688, 0.015444954857230186, -0.011149460449814796, 0.0531546026468277, -0.0004438820178620517, 0.0693097710609436, -0.04535083845257759, 0.008484029211103916, -0.042646899819374084, -0.015984030440449715, -0.044392481446266174, 0.0031146612018346786, 0.001559469848871231, 0.020878499373793602, 0.01803765445947647, 0.007448661141097546, -0.01803765445947647, 0.06376498937606812, 0.006242157891392708, -0.05589276924729347, -0.07112380117177963, 0.012689677998423576, -0.01709640957415104, 0.0007455078884959221, 0.002372362185269594, 0.002190530998632312, -0.019064465537667274, -0.0069823176600039005, 0.006212208885699511, -0.06058187410235405, 0.011003995314240456, 0.03717057406902313, 0.04470052197575569, -0.06910441070795059, -0.014007419347763062, -0.029315466061234474, 0.025721626356244087, -0.010379351675510406, 0.003670850768685341, -0.0011455364292487502, 0.05226470157504082, 0.061540231108665466, 0.0525042898952961, 0.000003860570359393023, 0.008967486210167408, -0.002064318861812353, -0.013374218717217445, 0.03871079161763191, -0.007641188334673643, -0.03124929405748844, 0.08707360923290253, -0.028956081718206406, 0.014880208298563957, 0.04959499090909958, -0.015444954857230186, 0.014229894615709782, 0.04432402551174164, 0.03569880872964859, -0.05777525529265404, 0.044632069766521454, -0.02127210982143879, 0.03241301327943802, 0.05558472499251366, -0.05199088528752327, 0.02548203617334366, -0.013665148057043552, 0.03172847256064415, 0.048533953726291656, 0.04778095707297325, -0.01298916433006525, 0.024284088984131813 ]
7,410
pathlib
__fspath__
null
def __fspath__(self): return str(self)
(self)
[ 0.01892957091331482, -0.03986732289195061, 0.026781227439641953, 0.0317029170691967, 0.011119065806269646, -0.06429470330476761, 0.01906125620007515, 0.05721668526530266, 0.0595540776848793, -0.01986781880259514, 0.01708599552512169, -0.02921738103032112, 0.014600460417568684, 0.02390064112842083, 0.007822850719094276, 0.03845172002911568, 0.013267160393297672, 0.00048069795593619347, 0.015217728912830353, 0.03143955022096634, -0.0017108628526329994, 0.01967029459774494, 0.06057462841272354, -0.04408121109008789, -0.00899566151201725, 0.050994619727134705, 0.031883981078863144, -0.014444085769355297, 0.024213390424847603, -0.07051676511764526, -0.022682564333081245, -0.05945531278848648, 0.03799082711338997, 0.02042747661471367, -0.013135476037859917, 0.022089986130595207, -0.05076417326927185, 0.05211393162608147, -0.025810059159994125, -0.05461592972278595, -0.01460869051516056, 0.036476459354162216, -0.04822925478219986, -0.0346987284719944, 0.03430367633700371, 0.01812300644814968, -0.027620714157819748, 0.012822726741433144, -0.012641661800444126, 0.014822677709162235, 0.029052777215838432, 0.0024011749774217606, -0.05273943021893501, -0.022847170010209084, -0.045727260410785675, 0.04296189546585083, 0.02582651935517788, -0.0006645925459451973, -0.026847070083022118, 0.037200722843408585, -0.008831056766211987, -0.01889665052294731, 0.06475559622049332, -0.018781427294015884, -0.0034772800281643867, 0.007510101888328791, -0.037036117166280746, 0.020361633971333504, 0.016048984602093697, 0.04480547085404396, -0.001597696915268898, -0.023439748212695122, -0.012715733610093594, 0.026962293311953545, 0.04862430691719055, -0.028937553986907005, -0.028707105666399002, 0.009769304655492306, 0.060805074870586395, -0.0321308895945549, -0.029694736003875732, -0.03644353896379471, -0.05491221696138382, -0.06508480757474899, -0.02985934168100357, -0.016814397647976875, -0.009563548490405083, -0.049842383712530136, -0.041184164583683014, 0.038912612944841385, -0.042171791195869446, 0.010682862251996994, -0.05089585483074188, 0.01276511512696743, -0.020888369530439377, -0.05244314298033714, 0.006057462655007839, -0.055142663419246674, 0.03644353896379471, -0.01505312416702509, 0.03273992985486984, 0.02579359896481037, -0.01975259557366371, 0.040196534246206284, 0.0032571207266300917, -0.009077964350581169, -0.026320334523916245, -0.010230198502540588, -0.017678573727607727, -0.006629465147852898, -0.04171089828014374, 0.025513770058751106, -0.007654130924493074, 0.007571828551590443, 0.031933363527059555, -0.04717578366398811, -0.008374277502298355, -0.002438211115077138, 0.06999003142118454, -0.030221471562981606, 0.03502793610095978, 0.04381784424185753, -0.08091980218887329, -0.015431716106832027, 0.04638567939400673, 0.07980048656463623, -0.053562454879283905, 0.014740374870598316, 0.013472916558384895, -0.05507682263851166, 0.027126898989081383, 0.05379290506243706, -0.05244314298033714, 0.030649445950984955, 0.07163608074188232, 0.03023793175816536, -0.011423585005104542, 0.032542403787374496, -0.004794119857251644, 0.12733840942382812, 0.011933860369026661, -0.04740623012185097, 0.027554871514439583, -0.026781227439641953, 0.01473214477300644, 0.07473065704107285, 0.03739824891090393, 0.040624506771564484, -0.027768857777118683, -0.0012602567439898849, 0.022682564333081245, 0.034336596727371216, 0.05593276768922806, -0.020246410742402077, -0.003814720083028078, -0.03529130667448044, -0.03571927919983864, 0.0009624246740713716, 0.03265762701630592, -0.06584198772907257, -0.012863878160715103, -0.0646568313241005, 0.004728277679532766, -0.0578421875834465, 0.03190044313669205, 0.03316790238022804, 0.0034608193673193455, 0.008938049897551537, 0.009950370527803898, -0.005279704462736845, -0.015900839120149612, -0.06218775734305382, -0.08091980218887329, 0.05119214579463005, 0.0041254120878875256, 0.026419097557663918, -0.0012407099129632115, 0.08789905160665512, 0.020921291783452034, 0.004055454861372709, 0.031637076288461685, -0.021793697029352188, -0.036048486828804016, 0.039044298231601715, 0.0680806115269661, 0.021480947732925415, -0.00019482540665194392, -0.005855821538716555, 0.03937350958585739, 0.03045191988348961, -0.023373905569314957, 0.05162011831998825, -0.006304370239377022, 0.033217281103134155, 0.00016074703307822347, -0.06712590903043747, 0.01581030711531639, -0.04437749832868576, -0.006444284692406654, 0.07031924277544022, -0.000033467535104136914, 0.0269787535071373, -0.01919293962419033, 0.02956305257976055, -0.014592230319976807, 0.02398294396698475, 0.04180966317653656, 0.004195369314402342, -0.043719079345464706, 0.024180470034480095, -0.013588139787316322, -0.026501400396227837, -0.03568635880947113, -0.020279331132769585, 0.0522456169128418, -0.036180172115564346, -0.04589186608791351, 0.03311851993203163, -0.02715981937944889, 0.06564445793628693, 0.07505986839532852, 0.017069535329937935, 0.02822975255548954, -0.03264116495847702, -0.037069037556648254, -0.04566141963005066, 0.01130836084485054, -0.03282222896814346, -0.006152110639959574, -0.05036912113428116, 0.006674731615930796, -0.0702534019947052, 0.01999950408935547, 0.03007332794368267, 0.024575522169470787, 0.03486333042383194, -0.0012839187402278185, 0.0020143534056842327, -0.010147896595299244, -0.02775239758193493, -0.020888369530439377, -0.047011177986860275, 0.010789855383336544, -0.02745610848069191, 0.04635275900363922, -0.020575620234012604, 0.008608839474618435, 0.02587590180337429, 0.002456729067489505, -0.033941544592380524, 0.06261572986841202, 0.006263218820095062, -0.047702521085739136, -0.005711792502552271, 0.004390837624669075, -0.06999003142118454, -0.056525345891714096, -0.007448374759405851, 0.018172388896346092, 0.03693735599517822, -0.04780128225684166, -0.034369517117738724, 0.0107075534760952, 0.00025886701769195497, -0.051554277539253235, -0.027357345446944237, -0.04905227944254875, 0.01850159838795662, 0.00043620317592285573, 0.010608790442347527, 0.027044596150517464, 0.012065543793141842, -0.07505986839532852, 0.02600758522748947, -0.03614725172519684, -0.017415205016732216, -0.04895351827144623, 0.0127404248341918, -0.02256734110414982, -0.040756188333034515, -0.009003891609609127, -0.03993316367268562, 0.004300304688513279, 0.00034078373573720455, -0.021662013605237007, -0.024509679526090622, 0.004617169499397278, -0.0329868346452713, -0.0008842372917570174, 0.015950221568346024, 0.05800678953528404, 0.03053422085940838, -0.04948025196790695, 0.013686902821063995, 0.041019558906555176, -0.00531262531876564, 0.002100770827382803, -0.056229058653116226, 0.04055866226553917, -0.03782622143626213, -0.02972765639424324, -0.004076030571013689, -0.009300180710852146, 0.031719379127025604, -0.026369715109467506, -0.016386425122618675, -0.006452514789998531, -0.004666551016271114, 0.01751396805047989, 0.04121708497405052, -0.03759577497839928, 0.0017304096836596727, -0.015752695500850677, 0.06834398210048676, 0.045299287885427475, 0.07440144568681717, -0.033645253628492355, 0.015283571556210518, 0.0010508998529985547, 0.09270551800727844, -0.06692837923765182, 0.0663687214255333, -0.021085895597934723, 0.02595820277929306, 0.014567540027201176, -0.01094623003154993, -0.01662510260939598, 0.03752993419766426, -0.01666625216603279, 0.0496777780354023, 0.013596370816230774, -0.03558759391307831, 0.048854753375053406, -0.005641835276037455, -0.011209598742425442, 0.0053537767380476, 0.060377102345228195, -0.02064146287739277, -0.023077616468071938, -0.016567489132285118, 0.07203113287687302, -0.002536974148824811, 0.001757158082909882, 0.004045167006552219, -0.0351267009973526, 0.048459701240062714, -0.002018468454480171, 0.021826619282364845, 0.06199023127555847, -0.031028036028146744, -0.02416400983929634, -0.041052479296922684, -0.007337266579270363, -0.006888717878609896, -0.01828761212527752, 0.014806216582655907, -0.011991471983492374, 0.04138169065117836, -0.0129544110968709, 0.04220471531152725, 0.07341381907463074, -0.05458300560712814, -0.025118717923760414, -0.023719575256109238, 0.03221319243311882, 0.005172711331397295, -0.0035266615450382233, 0.005715907551348209, 0.04951317608356476, -0.018024243414402008, -0.0216290932148695, 0.008427774533629417, 0.02235335484147072, -0.07802275568246841, -0.004100721329450607, 0.05073125287890434, 0.056689951568841934, -0.0015740350354462862, -0.049151044338941574, 0.0010519286151975393, 0.03986732289195061, 0.03907721862196922, 0.004802349954843521, 0.03752993419766426, 0.004362031817436218, 0.002742730313912034, 0.02342328615486622, -0.0053290859796106815, 0.005707677453756332, 0.0021789581514894962, -0.005415503401309252, -0.02753841131925583, 0.01563747227191925, -0.01450169738382101, -0.02090483158826828, -0.08144653588533401, 0.022287512198090553, -0.01669917441904545, -0.008016262203454971, 0.032410718500614166, 0.04638567939400673, -0.03697027638554573, -0.019423386082053185, 0.047998808324337006, 0.01447700709104538, -0.008287860080599785, 0.01957153156399727, 0.024707205593585968, -0.02625449188053608, -0.021382184699177742, 0.011892708949744701, -0.006312600336968899, -0.05856644734740257, -0.04125000536441803, 0.055109743028879166, 0.00983514729887247, -0.049447331577539444, 0.012040853500366211, 0.040163613855838776, 0.011267210356891155, -0.06692837923765182, 0.04576018080115318, -0.004711817018687725, 0.0582701601088047, -0.0008302262867800891, -0.000425400969106704, -0.01751396805047989, 0.03430367633700371, 0.0676855593919754, 0.0749281793832779, -0.047307468950748444, -0.01876496709883213, -0.05563648045063019, -0.02299531362950802, -0.0042509231716394424, -0.026106348261237144, 0.020921291783452034, -0.05402335152029991, -0.02793346345424652, 0.03878093138337135, 0.009012121707201004, -0.014164257794618607, -0.0034505317453294992, 0.03825419396162033, 0.01785963959991932, -0.07295291870832443, -0.0779569149017334, 0.01855097897350788, 0.05194932967424393, -0.010641710832715034, -0.022172288969159126, 0.0060739233158528805, 0.01511896587908268, -0.01537410356104374, -0.01567862369120121, -0.04253392294049263, 0.004481370095163584, -0.052838195115327835, 0.011440045200288296, 0.02368665486574173, -0.05194932967424393, 0.071965292096138, 0.036772750318050385, -0.04052574187517166, -0.0035822156351059675, -0.030089788138866425, 0.01914355717599392, 0.03772746026515961, -0.030139168724417686, -0.04704409837722778, 0.028624804690480232, -0.005880512297153473, -0.09659019857645035, -0.008374277502298355, -0.006678846664726734, 0.06814645975828171, -0.0312749445438385, 0.02098713256418705, -0.046583205461502075, -0.04869014769792557, -0.06353751569986343, -0.08118317276239395, -0.035785119980573654, 0.04342279210686684, 0.027275042608380318, -0.012205458246171474, -0.004921688698232174, 0.03673982992768288, -0.01083923690021038, 0.0030595948919653893, 0.06534817069768906, 0.09092778712511063, -0.07828612625598907, -0.026056965813040733, 0.03290453180670738, 0.0591261051595211, -0.01855097897350788, 0.017843179404735565, -0.0839485302567482, -0.01422186940908432, -0.0025698950048536062, -0.055109743028879166, -0.004629514645785093, 0.03825419396162033, -0.010567639023065567, 0.012411214411258698, 0.026698926463723183, 0.004016361199319363, -0.025760676711797714, -0.0381225124001503, 0.010279580019414425, -0.0252668634057045, 0.016682714223861694, 0.0061274198815226555, 0.001257170457392931, 0.01631235145032406, -0.01109437458217144, 0.005518381483852863, 0.0052838195115327835, 0.04506884142756462, -0.035620514303445816, -0.04691241681575775, -0.0263367947191, -0.04832801967859268, -0.05906026437878609, 0.0186332818120718, -0.012435905635356903, 0.055406033992767334, -0.01618889905512333, 0.08329011499881744, 0.009489476680755615, 0.02946428954601288, 0.04421289265155792, 0.06748803704977036, 0.008666452020406723, 0.14590583741664886, -0.07387471199035645, -0.030007485300302505, -0.004172735847532749, 0.013003792613744736, 0.009473015554249287, -0.026238031685352325, -0.026962293311953545, -0.008600609377026558, 0.027406727895140648, -0.05336492881178856, 0.0088886683806777, -0.026452017948031425, 0.06561154127120972, -0.00643605412915349, 0.03525838255882263, -0.036641065031290054, 0.005625374615192413, 0.004063684958964586, 0.030731746926903725, 0.01483913790434599, 0.0022777211852371693, 0.013670442625880241, -0.03371109813451767, 0.0060121966525912285, -0.05349661409854889, -0.0006728228181600571, 0.05257482826709747, 0.030912812799215317, -0.03346418961882591, 0.025118717923760414, -0.0068023004569113255, 0.026715386658906937, 0.007617095019668341, -0.026501400396227837, 0.004563672933727503, 0.03736532852053642, 0.04223763570189476, -0.03624601289629936, -0.020164107903838158, 0.05234437808394432, 0.03400738537311554, -0.00442375848069787, 0.010724013671278954, -0.010230198502540588, -0.01462515164166689, 0.01764565333724022, 0.009193187579512596, 0.01098738145083189, -0.05050080269575119, -0.024427376687526703, -0.0010102629894390702, 0.01967029459774494, -0.0389784574508667, -0.04335694760084152, -0.05418795719742775, -0.03937350958585739, -0.0036871512420475483, -0.012246609665453434, 0.04852554574608803, -0.08144653588533401, 0.007859887555241585, -0.043751999735832214, 0.01218899805098772, -0.02964535541832447, 0.022847170010209084, -0.006822875700891018, 0.015612781047821045, 0.07288707792758942, 0.03417199105024338, 0.011999702081084251, 0.023061156272888184, 0.035488832741975784, -0.0599820502102375, 0.023999404162168503, -0.019983043894171715, 0.03851756080985069, 0.04483839496970177, -0.004966954700648785, -0.01986781880259514, 0.010937999933958054, 0.03417199105024338, -0.01597491279244423, -0.05991620942950249, 0.0177773367613554, -0.03568635880947113, 0.008147945627570152, -0.030550682917237282, 0.030139168724417686, -0.04724162444472313, 0.023653734475374222, 0.02210644632577896, -0.01312724594026804, 0.024394456297159195, -0.038912612944841385, 0.013464686460793018, -0.042764369398355484, 0.011505886912345886, -0.05260774865746498, -0.00611507473513484, -0.043324027210474014, -0.0173493642359972, 0.007983340881764889, -0.040591586381196976, 0.02809806726872921, -0.03858340531587601, -0.0026686580386012793, -0.0856604278087616, -0.01975259557366371, -0.06482143700122833, -0.027554871514439583, -0.05208101123571396, -0.06541401147842407, 0.028772948309779167, -0.04526636749505997, -0.05217977613210678, 0.020164107903838158, -0.034204911440610886, 0.01978551782667637, 0.05273943021893501, 0.013349463231861591, 0.04342279210686684, -0.014534618705511093, -0.012007932178676128, -0.011184907518327236, -0.03973563760519028, -0.03700319677591324, 0.001442351029254496, -0.014707453548908234, -0.006892832927405834, -0.0038332382682710886, 0.0030945735052227974, -0.04490423575043678, -0.0012448250781744719, -0.048295099288225174, 0.007172661367803812, 0.037628695368766785, -0.037036117166280746, -0.05899441987276077, -0.07565244287252426, -0.009621160104870796, 0.03229549527168274, 0.029497209936380386, 0.05257482826709747, -0.002938198624178767, -0.0111355260014534, -0.013876198790967464, -0.04447626322507858, 0.005143905058503151, 0.056130293756723404, 0.05448424443602562, 0.035357147455215454, 0.03260824456810951, 0.03387570381164551, -0.035357147455215454, -0.0428302139043808, -0.06972666084766388, -0.019209399819374084, 0.03953811153769493, 0.029842881485819817, 0.010057363659143448, 0.05701915919780731, -0.019258780404925346, 0.0182053092867136, -0.013448226265609264, 0.04250100255012512, 0.03878093138337135, 0.02878940850496292, -0.017892559990286827, 0.0599820502102375, -0.03785914182662964, 0.03410615026950836, -0.005999851040542126, -0.05290403589606285, 0.008617070503532887, 0.014312402345240116, 0.028163909912109375, 0.0041356999427080154, -0.03950519114732742, 0.029151540249586105, -0.029842881485819817, -0.01785963959991932, 0.0224850382655859, 0.0043373410589993, -0.003055479610338807, -0.0059216637164354324, -0.03359587490558624, 0.06449222564697266, 0.0042879595421254635, 0.03410615026950836, 0.03858340531587601, -0.00042565815965645015, -0.002181015908718109, 0.0043579163029789925, 0.028279133141040802, -0.02373603731393814, 0.024312153458595276, -0.022945933043956757, 0.0028456083964556456, 0.034073229879140854, -0.02553023025393486, 0.022583801299333572, -0.023620812222361565, -0.009497706778347492, 0.0693974569439888, 0.035883884876966476, 0.059817444533109665, -0.018435755744576454, -0.002146037295460701, 0.03190044313669205, 0.019719675183296204, 0.035225462168455124, 0.03614725172519684, -0.060805074870586395, 0.013917350210249424, 0.04878891259431839, 0.043751999735832214, -0.0007479237974621356, 0.00768705178052187, 0.01106968428939581, -0.060673389583826065, 0.0054443092085421085, 0.003380574518814683, 0.020838988944888115, 0.02865772508084774, -0.048130493611097336, -0.026912912726402283, 0.011300130747258663, 0.047011177986860275, 0.03838587924838066, 0.06999003142118454, -0.06044294312596321, -0.017546890303492546 ]
7,411
pathlib
__ge__
null
def __ge__(self, other): if not isinstance(other, PurePath) or self._flavour is not other._flavour: return NotImplemented return self._cparts >= other._cparts
(self, other)
[ 0.042690180242061615, -0.0257281381636858, -0.033051036298274994, 0.08203071355819702, -0.002948758192360401, -0.0725162923336029, -0.009977671317756176, 0.023340623825788498, -0.00198773923330009, -0.03787951543927193, 0.07661426067352295, -0.046574342995882034, 0.024356208741664886, 0.01228500809520483, -0.04037393257021904, -0.008975449949502945, -0.02189742587506771, -0.0011369645362719893, 0.035349465906620026, 0.016988767310976982, -0.041086625307798386, 0.006824014708399773, 0.023233721032738686, -0.0011625768383964896, 0.018654681742191315, 0.0638214647769928, 0.041763681918382645, 0.012026657350361347, 0.010636910796165466, -0.02212904952466488, -0.0427258126437664, 0.01232955139130354, 0.05191952735185623, -0.0056258030235767365, 0.043082159012556076, -0.00036107812775298953, 0.013995465822517872, 0.02316245064139366, 0.013220414519309998, -0.01585737057030201, -0.03695301711559296, -0.0119464797899127, -0.004948746878653765, -0.015340670011937618, 0.01591082289814949, 0.007264991756528616, -0.09072554111480713, 0.03720245882868767, 0.009656960144639015, 0.06079252436757088, 0.01795089989900589, -0.041621144860982895, 0.013389678671956062, 0.04236947000026703, -0.05608876794576645, 0.06660095602273941, 0.058298107236623764, 0.0854516252875328, -0.04878368601202965, 0.015973182395100594, -0.03912672400474548, -0.025514330714941025, 0.030289359390735626, -0.0877322405576706, 0.004636944737285376, -0.044008657336235046, -0.027206972241401672, -0.001998875057324767, -0.015028867870569229, 0.08089040964841843, -0.06560318917036057, 0.026850625872612, -0.01279279962182045, -0.0005857427604496479, -0.02986174449324608, 0.008253850042819977, -0.0036681306082755327, 0.06211100518703461, 0.06884593516588211, -0.027990931645035744, -0.013247140683233738, -0.04821353405714035, 0.019830621778964996, -0.0385209396481514, -0.021327272057533264, 0.039625607430934906, 0.022449759766459465, -0.015786102041602135, 0.04764338210225105, 0.044151194393634796, -0.05345181003212929, 0.09329123049974442, -0.009523331187665462, -0.017095670104026794, 0.07461872696876526, 0.031198039650917053, -0.00035189109621569514, -0.024872908368706703, 0.04126479849219322, -0.030289359390735626, 0.030716974288225174, 0.05288165807723999, 0.0079776830971241, -0.002163684694096446, 0.051491912454366684, 0.008481021039187908, 0.013371861539781094, -0.03176819160580635, -0.03477931022644043, -0.057478513568639755, -0.0477859191596508, 0.01633843593299389, -0.02583504095673561, 0.02991519682109356, -0.014939781278371811, -0.0028240373358130455, -0.010138026438653469, -0.048819322139024734, 0.0610063336789608, -0.0026102301198989153, 0.013532216660678387, 0.046431805938482285, 0.0008658079896122217, 0.024783823639154434, 0.023732604458928108, 0.035349465906620026, 0.02679717354476452, 0.008494383655488491, -0.045647844672203064, -0.03958997502923012, 0.06952299177646637, 0.03176819160580635, 0.006191501393914223, 0.024730371311306953, -0.008481021039187908, 0.023483162745833397, -0.011420870199799538, 0.02057894691824913, 0.02806220017373562, 0.017425289377570152, -0.019349556416273117, -0.030235907062888145, 0.04393738880753517, 0.012089017778635025, -0.03392408415675163, 0.0556611530482769, -0.039483070373535156, 0.009576782584190369, -0.004042293410748243, 0.040944088250398636, -0.012970972806215286, 0.011251606047153473, 0.05487719178199768, -0.05541171133518219, 0.018761586397886276, -0.04614672809839249, -0.04953201115131378, -0.03089514747262001, 0.007242720574140549, -0.015019958838820457, -0.010423103347420692, -0.043295968323946, 0.019830621778964996, -0.0032405159436166286, -0.024338390678167343, -0.045754749327898026, -0.014627979137003422, -0.056302573531866074, -0.049068763852119446, 0.06474795937538147, 0.06171902269124985, 0.0057772500440478325, -0.020757120102643967, -0.0017026629066094756, -0.0251579862087965, 0.01557229459285736, 0.022164683789014816, 0.019135748967528343, -0.029255958274006844, -0.022645751014351845, 0.04422246292233467, -0.031002050265669823, -0.03647195175290108, 0.02788402885198593, 0.07903741300106049, 0.034422967582941055, -0.009799499064683914, -0.00315588410012424, 0.05997293069958687, 0.04792845621705055, -0.06806197017431259, -0.011866302229464054, 0.002282837638631463, 0.01630280166864395, 0.013674754649400711, -0.03866347670555115, 0.012115743942558765, 0.0059108794666826725, 0.0020478724036365747, 0.07362096011638641, -0.056658919900655746, -0.04646744206547737, -0.001404223614372313, -0.02364351786673069, 0.01165249478071928, 0.002563459798693657, 0.008057860657572746, -0.0072293574921786785, 0.040302664041519165, 0.010244930163025856, -0.050315972417593, -0.04942510649561882, -0.018316153436899185, -0.024926360696554184, 0.024979813024401665, 0.011082341894507408, 0.0012048928765580058, -0.012080109678208828, -0.025888493284583092, 0.02597757987678051, 0.057229071855545044, 0.025817224755883217, 0.02057894691824913, 0.017496559768915176, -0.011795032769441605, -0.001542307436466217, -0.02496199496090412, 0.045469675213098526, -0.0025812769308686256, -0.011420870199799538, 0.017282752320170403, -0.018039986491203308, 0.04044520482420921, -0.015795009210705757, -0.006957644131034613, 0.06724237650632858, -0.010111301206052303, 0.09984797984361649, -0.039910685271024704, 0.030289359390735626, -0.026494281366467476, -0.027652403339743614, -0.01405782625079155, 0.01795980893075466, -0.016766050830483437, -0.10832900553941727, 0.0035567726008594036, -0.01167922094464302, 0.03848530352115631, 0.05484155938029289, -0.017425289377570152, -0.029077785089612007, -0.06047181412577629, -0.031019868329167366, 0.01970590092241764, -0.01993752457201481, -0.06303749978542328, -0.06638714671134949, 0.014770517125725746, 0.018957575783133507, -0.024730371311306953, 0.03586616367101669, 0.017051126807928085, -0.008396388962864876, -0.047465208917856216, 0.009612416848540306, 0.022111231461167336, -0.010601275600492954, -0.026066666468977928, 0.02530052326619625, -0.11424433439970016, -0.014458714984357357, -0.025140168145298958, 0.043759215623140335, -0.03404880315065384, 0.01439635455608368, 0.00948769599199295, -0.010503280907869339, -0.014734882861375809, 0.009844041429460049, -0.016080087050795555, 0.024730371311306953, -0.045362770557403564, -0.03465459123253822, -0.07811091095209122, -0.0016536654438823462, -0.045362770557403564, -0.07173232734203339, -0.050422873347997665, -0.024783823639154434, 0.01736292988061905, 0.004532268270850182, 0.026476463302969933, -0.02330498956143856, 0.08224452286958694, -0.01940300688147545, 0.022307222709059715, -0.0829572081565857, 0.04226256534457207, 0.013051150366663933, -0.015019958838820457, -0.02991519682109356, -0.023554431274533272, -0.013826201669871807, 0.02918468788266182, -0.02189742587506771, 0.014859603717923164, 0.039091091603040695, -0.010547824203968048, 0.027812758460640907, -0.02631610818207264, 0.007955411449074745, -0.04810662940144539, 0.025567783042788506, 0.04404429346323013, 0.0964270681142807, 0.02661900222301483, 0.00028243157430551946, -0.017648005858063698, 0.042155660688877106, -0.03166129067540169, 0.10440920293331146, -0.045220233500003815, 0.015509934164583683, -0.04728703573346138, -0.04130043089389801, 0.009202620014548302, 0.024552198126912117, 0.005888607818633318, -0.0008802845259197056, -0.01697094924747944, 0.038164593279361725, 0.06086379662156105, 0.0068551949225366116, -0.00016634092025924474, 0.04767901450395584, 0.066921666264534, -0.023732604458928108, 0.010325107723474503, -0.004558993969112635, 0.04514896124601364, 0.01099325530230999, 0.013068967498838902, -0.02758113481104374, 0.008797276765108109, 0.0036213602870702744, -0.00657902704551816, -0.00809794943779707, 0.03244524821639061, -0.013505490496754646, -0.05412886664271355, -0.007643608842045069, -0.01979498751461506, -0.012133561074733734, 0.006694839335978031, 0.008797276765108109, -0.022057780995965004, -0.016017725691199303, 0.004104653839021921, 0.03428042680025101, 0.06446288526058197, -0.0053852698765695095, -0.02432057447731495, -0.029879562556743622, -0.0435810424387455, -0.028667988255620003, 0.004227147437632084, -0.024445295333862305, -0.101202093064785, -0.02193306013941765, -0.08089040964841843, -0.016480974853038788, 0.0514562763273716, -0.09343376755714417, 0.02111346460878849, -0.018280519172549248, -0.04728703573346138, 0.03759444132447243, -0.014218181371688843, 0.036365047097206116, 0.055340442806482315, 0.06560318917036057, -0.04889059066772461, 0.01872595027089119, -0.022645751014351845, 0.00963023491203785, 0.013175871223211288, -0.018904123455286026, 0.03877038136124611, 0.038449667394161224, 0.005897516384720802, -0.027652403339743614, 0.003590179840102792, -0.007541159633547068, -0.023821691051125526, 0.005278366152197123, 0.009398610331118107, -0.0036124514881521463, -0.05063668265938759, -0.025478696450591087, 0.0435810424387455, 0.022823922336101532, -0.02715351991355419, 0.04874804988503456, 0.0170778539031744, -0.0008246055222116411, 0.06182592734694481, 0.05305983126163483, -0.050315972417593, 0.04158550873398781, -0.04650307446718216, 0.01682841219007969, -0.025817224755883217, 0.0018774948548525572, -0.052026428282260895, -0.03180382773280144, -0.009327340871095657, -0.07597284018993378, 0.05965222045779228, 0.025763772428035736, -0.009131350554525852, 0.013656937517225742, 0.018743768334388733, -0.023714786395430565, -0.01162576861679554, -0.045612212270498276, -0.0034075528383255005, 0.0065701184794306755, -0.015215949155390263, 0.017113488167524338, -0.007100182119756937, 0.015429755672812462, 0.02248539589345455, 0.023376258090138435, -0.013959831558167934, -0.008579015731811523, 0.005772795528173447, -0.04646744206547737, 0.02189742587506771, -0.012463180348277092, 0.024783823639154434, 0.00929170660674572, -0.021184735000133514, 0.0068106516264379025, 0.0032316073775291443, -0.07002187520265579, 0.0189753919839859, -0.004253873135894537, 0.032373979687690735, 0.010360742919147015, -0.03426261246204376, 0.01225828193128109, -0.029309408739209175, -0.01804889552295208, -0.04878368601202965, 0.017211483791470528, -0.016872955486178398, -0.0305031668394804, -0.04518459737300873, 0.020008794963359833, -0.006668113172054291, 0.07059202343225479, 0.018957575783133507, -0.022271588444709778, 0.01318478025496006, 0.04596855863928795, -0.007714877836406231, 0.013710389845073223, -0.030485348775982857, 0.02111346460878849, 0.03663230687379837, -0.08609305322170258, -0.03508220613002777, 0.0007138043874874711, -0.00179954431951046, 0.044151194393634796, -0.028685804456472397, 0.06571009010076523, 0.017826179042458534, -0.043616678565740585, -0.007037821691483259, -0.005942059680819511, -0.027349509298801422, -0.014975415542721748, 0.0427258126437664, -0.04073027893900871, -0.035527635365724564, 0.028721438720822334, -0.014022191986441612, -0.044008657336235046, 0.024106767028570175, -0.0435810424387455, -0.06496176868677139, 0.06955862045288086, 0.0629662349820137, 0.04889059066772461, 0.01702440157532692, -0.014164729975163937, 0.008334028534591198, -0.02457001619040966, -0.029701389372348785, 0.03755880519747734, -0.006454306188970804, 0.04233383387327194, 0.020881840959191322, 0.023144634440541267, 0.012053383514285088, -0.010895260609686375, -0.01131396647542715, 0.01590191386640072, 0.007585702929645777, -0.04557657614350319, 0.06731364876031876, 0.02476600557565689, 0.05355871468782425, 0.044008657336235046, -0.020115697756409645, -0.030663521960377693, 0.02130945585668087, -0.013621303252875805, 0.017585646361112595, -0.036222510039806366, -0.006988824345171452, -0.08580797165632248, -0.04956764727830887, -0.03335392847657204, -0.004806208424270153, -0.027670221403241158, 0.06863212585449219, -0.033977534621953964, 0.005028924439102411, 0.0010089029092341661, 0.04080154746770859, 0.03966124355792999, -0.0007622450939379632, 0.032231442630290985, -0.06510430574417114, 0.051741354167461395, -0.02982611022889614, 0.030734790489077568, 0.006017783191055059, 0.024872908368706703, 0.07739822566509247, 0.035349465906620026, 0.014431988820433617, 0.028810525313019753, 0.00931843277066946, -0.028008749708533287, 0.04967454820871353, 0.02772367186844349, -0.01519813109189272, 0.025621235370635986, 0.023821691051125526, -0.007051184773445129, 0.05598186329007149, 0.029879562556743622, 0.012267190963029861, -0.020026611164212227, 0.008151400834321976, -0.014966507442295551, 0.012739348225295544, 0.006632478907704353, 0.04479261860251427, -0.04728703573346138, -0.029665755107998848, -0.013674754649400711, 0.029647937044501305, -0.008405297063291073, 0.028400728479027748, 0.01630280166864395, -0.022004328668117523, 0.04832043871283531, -0.035973068326711655, -0.0005102977738715708, -0.004788391292095184, 0.00567925488576293, -0.018565595149993896, 0.027598951011896133, -0.0376657098531723, -0.07575903087854385, 0.0031135680619627237, -0.005652529187500477, 0.048427339643239975, -0.006783925462514162, 0.013077876530587673, -0.0508861243724823, 0.0031670196913182735, 0.05676582455635071, -0.007327352184802294, -0.022022146731615067, -0.03479712828993797, -0.05191952735185623, 0.03180382773280144, -0.066921666264534, -0.012267190963029861, -0.01849432662129402, -0.002298427978530526, -0.020169150084257126, -0.006516666617244482, 0.027028799057006836, 0.03123367391526699, -0.03980378061532974, -0.003189291339367628, -0.03632941469550133, 0.0021926378831267357, -0.006979915779083967, 0.010004397481679916, -0.006681476254016161, 0.007656971924006939, -0.007060093339532614, 0.07547395676374435, 0.08138929307460785, -0.003300649346783757, -0.06503303349018097, -0.027598951011896133, 0.006249407771974802, -0.027759306132793427, -0.0018273837631568313, -0.02252103015780449, 0.07875233143568039, -0.02977265790104866, -0.026209205389022827, 0.006668113172054291, 0.002841854700818658, -0.040944088250398636, -0.014289450831711292, 0.05049414560198784, 0.007937594316899776, 0.002556778257712722, -0.017763817682862282, 0.022057780995965004, -0.055091001093387604, 0.032231442630290985, -0.0035122293047606945, -0.01619589887559414, -0.10312636196613312, -0.013264957815408707, -0.016480974853038788, -0.0007104636752046645, 0.053736887872219086, -0.05915333703160286, -0.005576805677264929, -0.09236472845077515, 0.028293825685977936, -0.09863641113042831, 0.0031024322379380465, -0.015100136399269104, -0.03499311953783035, 0.04625363275408745, -0.043295968323946, 0.009915310889482498, 0.06727801263332367, 0.01165249478071928, -0.039768148213624954, -0.06670785695314407, 0.016908589750528336, 0.04233383387327194, 0.0033429653849452734, -0.007839598692953587, 0.0006497735739685595, 0.04963891580700874, -0.030610069632530212, 0.05345181003212929, -0.031055502593517303, 0.04504206031560898, -0.003391962731257081, 0.09792371839284897, -0.037380632013082504, 0.0016748233465477824, -0.023340623825788498, -0.03643631935119629, 0.010538915172219276, -0.0321958065032959, -0.028293825685977936, -0.0379507839679718, -0.03419134020805359, -0.003881937824189663, 0.013104602694511414, 0.005808430258184671, 0.002556778257712722, -0.005661437753587961, 0.04995962604880333, -0.03586616367101669, 0.0008708190871402621, 0.05199079588055611, 0.059188973158597946, -0.025407427921891212, 0.03449423611164093, 0.067741259932518, -0.037487536668777466, 0.023019913583993912, -0.04219129681587219, 0.00013690066407434642, 0.007995500229299068, 0.022877374663949013, 0.022360675036907196, 0.010440920479595661, 0.01736292988061905, -0.02617356926202774, -0.024409661069512367, 0.04728703573346138, 0.004797299858182669, -0.00992421992123127, 0.006971007212996483, -0.0029999827966094017, 0.006979915779083967, -0.04914003238081932, 0.003579044248908758, -0.011554500088095665, -0.011055615730583668, -0.04226256534457207, 0.05430703982710838, 0.026921896263957024, -0.09685467928647995, 0.01649879291653633, -0.002106892177835107, 0.030610069632530212, -0.006730474065989256, 0.05113556608557701, 0.006218227092176676, -0.04500642418861389, 0.0020668033976107836, 0.03433388099074364, -0.016561152413487434, -0.028400728479027748, 0.024391843006014824, 0.01771036721765995, -0.09143823385238647, -0.024160219356417656, 0.011670311912894249, -0.03438733145594597, 0.044293735176324844, -0.011616860516369343, 0.008699282072484493, 0.0108239920809865, 0.014529983513057232, -0.04728703573346138, -0.01133178360760212, 0.041763681918382645, 0.06542501598596573, 0.030093370005488396, -0.008699282072484493, 0.013567850925028324, -0.036222510039806366, 0.014770517125725746, -0.020115697756409645, -0.024872908368706703, 0.06987933069467545, -0.04593292251229286, 0.018316153436899185, 0.021861789748072624, -0.00597323989495635, 0.030734790489077568, -0.020454226061701775, 0.024676918983459473, 0.031358394771814346, -0.0069131008349359035, -0.013630211353302002, -0.0006336266524158418, -0.021184735000133514, -0.033692456781864166, 0.045897286385297775, -0.01640079729259014, 0.0925072655081749, 0.005888607818633318, 0.03536728024482727, -0.029541034251451492, 0.07426238059997559 ]
7,412
pathlib
__gt__
null
def __gt__(self, other): if not isinstance(other, PurePath) or self._flavour is not other._flavour: return NotImplemented return self._cparts > other._cparts
(self, other)
[ 0.03215450793504715, -0.010125664062798023, -0.04729436710476875, 0.05896762013435364, 0.0083083501085639, -0.08065157383680344, -0.016139158979058266, 0.0332157127559185, -0.0019201176473870873, -0.04711749777197838, 0.07782169431447983, -0.02187850885093212, 0.02695460431277752, 0.0013254007790237665, -0.02775050885975361, 0.017156146466732025, -0.003663367824628949, -0.002893994329497218, 0.04669301584362984, 0.016015350818634033, -0.02665393054485321, 0.00982498936355114, 0.013928314670920372, -0.021259471774101257, 0.04365089535713196, 0.05719894543290138, 0.045631811022758484, -0.0024650907143950462, -0.004735626745969057, -0.005252964328974485, -0.04885080084204674, -0.0025645785499364138, 0.04464135318994522, -0.02355874888598919, 0.012513374909758568, -0.004638349637389183, 0.005279494449496269, 0.030969496816396713, 0.01347730215638876, -0.017156146466732025, -0.020357448607683182, -0.026494748890399933, -0.02347031608223915, -0.03210144862532616, 0.0004551574238575995, -0.0057039763778448105, -0.07760945707559586, 0.03360482305288315, 0.007768904324620962, 0.05005349963903427, 0.019402364268898964, -0.05521802976727486, 0.003579355776309967, 0.047577355057001114, -0.06844771653413773, 0.053201738744974136, 0.06278795748949051, 0.08652357757091522, -0.03838024660944939, 0.019119376316666603, -0.029943665489554405, 0.0032919461373239756, 0.023717930540442467, -0.0845426619052887, 0.018031639978289604, -0.02693691849708557, -0.037248291075229645, 0.004193970467895269, -0.03328645974397659, 0.08369369804859161, -0.06692665815353394, 0.03440072759985924, -0.0056066992692649364, 0.01581195369362831, -0.02737908624112606, -0.007291362155228853, -0.006256687454879284, 0.04580868035554886, 0.06328319013118744, -0.026123328134417534, -0.013556892983615398, -0.037036050111055374, 0.029925979673862457, -0.06452126055955887, -0.031022557988762856, 0.02941306307911873, 0.034648340195417404, -0.028422605246305466, 0.02840491756796837, 0.040431909263134, -0.06473349779844284, 0.07163133472204208, -0.007008374202996492, -0.02377098985016346, 0.06466275453567505, 0.025097496807575226, -0.015113326720893383, -0.02831648476421833, 0.019809158518910408, -0.023594122380018234, 0.053060244768857956, 0.04977051168680191, 0.0016835574060678482, 0.0004410632827784866, 0.06045330688357353, 0.021860821172595024, 0.007795434445142746, -0.010895037092268467, -0.05107932910323143, -0.05794179067015648, -0.05808328464627266, 0.035585738718509674, -0.012760989367961884, 0.02332882210612297, 0.0014370483113452792, -0.0011385844554752111, -0.003793807700276375, -0.045844051986932755, 0.0541921965777874, -0.01376029010862112, 0.007472651544958353, 0.016519423574209213, 0.016563640907406807, 0.02007446065545082, -0.018518025055527687, 0.050831716507673264, 0.03866323456168175, 0.00863113347440958, -0.07895364612340927, -0.025521978735923767, 0.056385353207588196, 0.020322075113654137, 0.004025946371257305, 0.032472871243953705, -0.002540259389206767, 0.021436339244246483, 0.0003230595320928842, 0.022798219695687294, 0.03100487031042576, 0.02361181005835533, -0.01550243515521288, -0.036965303122997284, 0.03922921046614647, -0.00008691378752700984, -0.028298797085881233, 0.04014892131090164, -0.0455256924033165, 0.002843144815415144, -0.004824060946702957, 0.03300347179174423, -0.0353911854326725, 0.01231882069259882, 0.05008887127041817, -0.057977162301540375, 0.044181499630212784, -0.033410269767045975, -0.033498700708150864, -0.03549730405211449, 0.00440842192620039, -0.022780532017350197, -0.012371880933642387, -0.04471210017800331, 0.022479858249425888, 0.005973699502646923, -0.021542459726333618, -0.054581306874752045, 0.005646494682878256, -0.04029041528701782, -0.04955827072262764, 0.06682053953409195, 0.06147914007306099, 0.010267158038914204, -0.028847087174654007, -0.017819399014115334, -0.044676728546619415, -0.001560855540446937, 0.01604188047349453, 0.026547810062766075, -0.018394218757748604, -0.009656964801251888, 0.035939473658800125, -0.03834487125277519, -0.03436535224318504, 0.021347906440496445, 0.06236347556114197, 0.020817304030060768, -0.01177053153514862, 0.0011982772266492248, 0.04241282492876053, 0.03993668034672737, -0.05716357380151749, 0.01238956768065691, 0.0020516628865152597, -0.00028796237893402576, 0.030739570036530495, -0.03806188330054283, 0.02196694165468216, 0.01195624191313982, 0.04220058396458626, 0.06735114008188248, -0.04025503993034363, -0.02615870162844658, 0.0073974826373159885, -0.019685352221131325, 0.023788677528500557, 0.019119376316666603, 0.009550844319164753, -0.009621591307222843, 0.02152477391064167, 0.00834814552217722, -0.049664389342069626, -0.04060877487063408, -0.025875713676214218, -0.05122082307934761, 0.017580628395080566, 0.012584121897816658, -0.008635555393993855, -0.0042006028816103935, -0.024902941659092903, 0.020781930536031723, 0.061938993632793427, 0.014299736358225346, 0.02969605103135109, 0.03510819748044014, -0.003670000471174717, 0.017235737293958664, -0.021064918488264084, 0.038097258657217026, -0.004908072762191296, -0.01267255563288927, 0.015131013467907906, -0.0084896394982934, 0.04962901771068573, -0.027219906449317932, -0.026989977806806564, 0.05787104368209839, -0.012743302620947361, 0.08121754974126816, -0.06586544960737228, 0.023434942588210106, -0.03171234205365181, -0.0062168920412659645, -0.019738411530852318, 0.021860821172595024, -0.026600869372487068, -0.1177230030298233, 0.005619964562356472, -0.03374631702899933, 0.03862785920500755, 0.06982728093862534, -0.006796133238822222, -0.03339258208870888, -0.05656222254037857, -0.02803349681198597, 0.014255519956350327, -0.00863113347440958, -0.0780339390039444, -0.07859991490840912, 0.025628099218010902, 0.0216839537024498, -0.011717471294105053, 0.020357448607683182, 0.008617868646979332, 0.006844771560281515, -0.044181499630212784, -0.000866650661919266, 0.015139857307076454, -0.010497085750102997, -0.009842676110565662, 0.007220615167170763, -0.096781887114048, -0.01340655516833067, -0.04435836523771286, 0.0158827006816864, -0.033852435648441315, 0.022851279005408287, 0.011142651550471783, -0.023240387439727783, -0.01850033923983574, -0.017890146002173424, -0.009126362390816212, -0.007304627448320389, -0.0541921965777874, -0.026264822110533714, -0.06664367020130157, 0.004176283720880747, -0.04722362011671066, -0.0852501317858696, -0.045561064034700394, -0.014184772036969662, 0.0151752308011055, 0.006044446490705013, 0.0058587356470525265, -0.013468459248542786, 0.0780339390039444, -0.03337489441037178, 0.0006345121073536575, -0.09423499554395676, 0.06024106591939926, 0.013212000951170921, -0.02960761822760105, -0.03473677486181259, -0.00029597667162306607, -0.007883868180215359, 0.037531279027462006, 0.0022506387904286385, -0.0017609369242563844, 0.03777889534831047, -0.014547350816428661, 0.0426250658929348, -0.01769559271633625, -0.008507326245307922, -0.03742516040802002, 0.015785424038767815, 0.054793547838926315, 0.10194642096757889, 0.015104483813047409, -0.012309976853430271, -0.002001918852329254, 0.03749590739607811, -0.033852435648441315, 0.0772557184100151, -0.06827084720134735, 0.030456582084298134, -0.030350461602211, -0.057694174349308014, -0.015873856842517853, 0.013574579730629921, 0.02000371366739273, 0.005235277581959963, -0.014467760920524597, 0.05475817248225212, 0.0700395256280899, 0.007114494685083628, 0.020056772977113724, 0.04492434114217758, 0.06098391115665436, -0.01705886982381344, 0.02276284620165825, -0.007826386019587517, 0.03056270256638527, -0.0016946116229519248, 0.029023954644799232, -0.012292290106415749, 0.03012053295969963, 0.02442540042102337, -0.015926918014883995, -0.007680470589548349, 0.022656725719571114, -0.002008551498875022, -0.0505487285554409, -0.01531672477722168, -0.022338364273309708, -0.01361879613250494, -0.006844771560281515, 0.017580628395080566, -0.011381423100829124, 0.007954615168273449, -0.003398066619411111, 0.04718824476003647, 0.0873725414276123, 0.0001127530267694965, -0.012725615873932838, -0.0325259305536747, -0.025115182623267174, -0.038238752633333206, 0.01448544766753912, -0.01995065249502659, -0.09444724023342133, -0.021047230809926987, -0.06869532912969589, -0.00939166359603405, 0.0700395256280899, -0.07548703998327255, 0.007826386019587517, -0.00664579588919878, -0.03707142546772957, 0.03360482305288315, -0.005593434441834688, 0.0361163392663002, 0.0368591845035553, 0.05939210206270218, -0.031464725732803345, 0.02117103897035122, -0.03310959413647652, 0.025451231747865677, -0.0017620422877371311, -0.02341725490987301, 0.023505689576268196, 0.01646636240184307, 0.011549446731805801, -0.030102847144007683, -0.007640675641596317, -0.017315326258540154, -0.02874096669256687, 0.010903880931437016, -0.007516868412494659, -0.010355591773986816, -0.03164159506559372, -0.02088805101811886, 0.04566718637943268, 0.018606459721922874, -0.026211760938167572, 0.04977051168680191, 0.03560342639684677, -0.0005698449094779789, 0.05511190742254257, 0.058330897241830826, -0.0679171159863472, 0.04372164234519005, -0.034648340195417404, 0.024549206718802452, -0.042660437524318695, -0.00408342806622386, -0.030297400429844856, -0.020339760929346085, -0.0013508254196494818, -0.042731184512376785, 0.06222198158502579, 0.018659519031643867, -0.021436339244246483, 0.024814508855342865, 0.027785882353782654, -0.044464487582445145, -0.005911795888096094, -0.047931089997291565, 0.00440621143206954, 0.018376531079411507, -0.04389851167798042, 0.019915279000997543, 0.005872000474482775, 0.019119376316666603, -0.007233880460262299, 0.04711749777197838, 0.010497085750102997, 0.008989290334284306, -0.0038535003550350666, -0.05787104368209839, 0.02845797874033451, 0.00775121757760644, 0.01596229150891304, 0.022585978731513023, -0.015926918014883995, -0.0012170694535598159, -0.008471952751278877, -0.060134947299957275, 0.01718267612159252, -0.020675810053944588, 0.039406076073646545, -0.002314753131940961, -0.02723759226500988, 0.023965544998645782, -0.005902952514588833, -0.022285303100943565, -0.03473677486181259, -0.005947169382125139, -0.029784485697746277, -0.030155906453728676, -0.05033648759126663, 0.016943905502557755, -0.025327423587441444, 0.07028713822364807, 0.036823809146881104, -0.025415858253836632, 0.0028984160162508488, 0.046268533915281296, -0.01675819419324398, 0.00525738624855876, -0.031393978744745255, 0.014600411057472229, 0.03004978597164154, -0.07463807612657547, -0.0339585579931736, 0.022709785029292107, -0.014255519956350327, 0.048886172473430634, -0.016952749341726303, 0.054298318922519684, 0.0073002055287361145, -0.04014892131090164, 0.007432856131345034, -0.0024673014413565397, -0.04754197970032692, -0.004434952046722174, 0.0339408703148365, -0.019879905506968498, -0.04701137915253639, 0.04209446161985397, 0.00546962721273303, -0.06926130503416061, 0.0195084847509861, -0.05334323272109032, -0.06384916603565216, 0.061231523752212524, 0.057623427361249924, 0.05571325868368149, 0.025451231747865677, -0.009082145057618618, -0.010337905026972294, -0.020923424512147903, -0.028086556121706963, 0.04248357191681862, 0.004395157098770142, 0.029731424525380135, 0.024549206718802452, 0.011575977317988873, 0.024036291986703873, -0.02325807511806488, -0.023098893463611603, 0.002732602646574378, 0.004947868175804615, -0.06190362200140953, 0.05726969242095947, 0.011991615407168865, 0.04202371463179588, 0.04775422066450119, -0.024902941659092903, -0.03929995745420456, 0.025557352229952812, -0.0022185815032571554, 0.014432387426495552, -0.05928598344326019, -0.015431688167154789, -0.07859991490840912, -0.028935521841049194, -0.03777889534831047, 0.007954615168273449, -0.0014458916848525405, 0.06657291948795319, -0.03440072759985924, 0.002969163004308939, 0.008706302382051945, 0.04754197970032692, 0.03215450793504715, 0.003258783370256424, 0.045844051986932755, -0.07845842093229294, 0.06851846724748611, -0.03027971461415291, 0.025681158527731895, 0.010523615404963493, 0.011231085285544395, 0.08142979443073273, 0.02637094259262085, 0.0010435181902721524, 0.015307880938053131, 0.0008362515945918858, -0.010620892979204655, 0.05546564236283302, 0.04595017433166504, -0.0068889884278178215, 0.025168243795633316, 0.014458917081356049, -0.02426621876657009, 0.04637465626001358, 0.04878005385398865, 0.008091687224805355, -0.004625084809958935, 0.024796821177005768, -0.01253106165677309, 0.013194314204156399, 0.024885255843400955, 0.057764921337366104, -0.030863376334309578, -0.03169465437531471, -0.00336932553909719, 0.022709785029292107, -0.020180581137537956, 0.011045374907553196, 0.00975424237549305, -0.006650217343121767, 0.04138699173927307, -0.014724218286573887, -0.012522217817604542, 0.010762386955320835, 0.014918772503733635, -0.007468229625374079, 0.049310654401779175, -0.03784964233636856, -0.04920453578233719, 0.003849078668281436, 0.022656725719571114, 0.06508723646402359, -0.009833832271397114, 0.0029116810765117407, -0.06731576472520828, 0.012707929126918316, 0.044252246618270874, -0.005942747462540865, -0.03777889534831047, -0.0411747507750988, -0.040431909263134, 0.04060877487063408, -0.06632530689239502, 0.008131482638418674, -0.026194075122475624, -0.010877350345253944, -0.023134266957640648, -0.023293448612093925, 0.020852677524089813, 0.051043957471847534, -0.04067952185869217, -0.0014425754779949784, -0.02318732813000679, 0.028564099222421646, -0.018836386501789093, 0.0005869789747521281, -0.014379327185451984, -0.003453337587416172, 0.00989573635160923, 0.08567461371421814, 0.08822150528430939, 0.005252964328974485, -0.02087036333978176, -0.012442627921700478, -0.009586217813193798, -0.016139158979058266, -0.0009633750887587667, -0.022709785029292107, 0.058189403265714645, -0.03243749588727951, -0.02007446065545082, 0.013105880469083786, 0.015979977324604988, -0.029713738709688187, -0.02449614740908146, 0.036965303122997284, -0.020339760929346085, 0.015369785018265247, -0.019596917554736137, 0.025115182623267174, -0.07088848948478699, 0.02997903898358345, -0.01640445925295353, -0.03873398154973984, -0.10930410772562027, -0.010753543116152287, -0.00731347082182765, -0.000303438282571733, 0.04566718637943268, -0.07071162015199661, -0.013309278525412083, -0.08836299926042557, 0.03277354687452316, -0.080863818526268, -0.016271809116005898, -0.0126460250467062, -0.01797858066856861, 0.04248357191681862, -0.03295041248202324, -0.00034295712248422205, 0.07470882683992386, 0.00996648333966732, -0.04110400378704071, -0.06667904555797577, 0.012354194186627865, 0.06031181290745735, 0.007255988661199808, -0.019773785024881363, -0.011390266008675098, 0.05238815024495125, -0.05988733097910881, 0.05341397970914841, -0.02377098985016346, 0.03213682398200035, -0.01550243515521288, 0.08730179071426392, -0.035727232694625854, -0.01913706213235855, -0.0368591845035553, -0.01668744720518589, 0.007021639030426741, -0.01797858066856861, -0.04029041528701782, -0.0520344153046608, -0.03979518637061119, -0.0056420727632939816, 0.030863376334309578, -0.0011529548792168498, -0.01821735128760338, 0.012946699745953083, 0.05288337916135788, -0.050902463495731354, -0.0027989279478788376, 0.06926130503416061, 0.048355571925640106, -0.013353494927287102, 0.042589690536260605, 0.033976245671510696, -0.0347013995051384, 0.02196694165468216, -0.0310579314827919, 0.008180120959877968, 0.0033516387920826674, 0.021542459726333618, 0.03130554407835007, 0.02398323081433773, 0.02983754500746727, -0.022232243791222572, -0.030456582084298134, 0.024177785962820053, -0.011779374442994595, -0.006101928185671568, 0.005739349871873856, -0.002352337585762143, 0.00910867564380169, -0.025592725723981857, 0.005535952281206846, -0.005911795888096094, -0.02246217057108879, -0.05069022253155708, 0.05974583700299263, 0.036894556134939194, -0.09444724023342133, -0.0021367804147303104, -0.01257527805864811, 0.029731424525380135, 0.010647422634065151, 0.04220058396458626, 0.007543398533016443, -0.05267113819718361, -0.0031305544544011354, 0.05001812428236008, -0.030067473649978638, -0.00671654287725687, 0.017828242853283882, 0.0332334004342556, -0.08503788709640503, -0.029943665489554405, 0.0003534586285240948, -0.04372164234519005, 0.041563861072063446, -0.0013784610200673342, 0.0002130700449924916, 0.0033273196313530207, 0.011797061190009117, -0.042589690536260605, -0.03300347179174423, 0.048072583973407745, 0.08142979443073273, 0.030102847144007683, 0.0073002055287361145, 0.014087495394051075, -0.042872678488492966, 0.022515231743454933, -0.029996726661920547, -0.02716684527695179, 0.07166670262813568, -0.051043957471847534, 0.01797858066856861, 0.046268533915281296, -0.02037513442337513, 0.024071665480732918, -0.024867568165063858, 0.04485359415411949, 0.05758805572986603, 0.0166167002171278, -0.01112496480345726, -0.005275072995573282, -0.018694892525672913, -0.02304583415389061, 0.04545494541525841, -0.0036368377041071653, 0.07187894731760025, 0.010718169622123241, 0.037106797099113464, -0.042306702584028244, 0.06972116231918335 ]
7,413
pathlib
__hash__
null
def __hash__(self): try: return self._hash except AttributeError: self._hash = hash(tuple(self._cparts)) return self._hash
(self)
[ 0.030627576634287834, -0.03791001811623573, -0.0075148604810237885, 0.07774824649095535, 0.00357666052877903, -0.06865810602903366, -0.008418709971010685, 0.007071543950587511, 0.007329786662012339, -0.03911514952778816, 0.005948188714683056, 0.01700958050787449, 0.007988305762410164, 0.022570405155420303, -0.029783982783555984, -0.010389962233603, -0.04417670518159866, -0.005306886043399572, -0.01548594981431961, -0.03262465074658394, -0.005939580500125885, -0.025290561839938164, 0.02468799613416195, 0.0681416243314743, -0.0006439925637096167, 0.02468799613416195, 0.1086684986948967, 0.0027502840384840965, 0.05825953930616379, 0.012920740060508251, -0.019850250333547592, 0.01403118297457695, 0.009658274240791798, 0.04273054748773575, 0.032125383615493774, -0.0818801298737526, 0.007712846621870995, 0.03863309696316719, -0.01229234877973795, 0.0010442686034366488, 0.029491309076547623, 0.021210327744483948, -0.01689767651259899, -0.0238444022834301, 0.027666393667459488, 0.021365273743867874, -0.016441447660326958, 0.06917459517717361, -0.011982457712292671, -0.056813377887010574, 0.0003760658437386155, -0.025652101263403893, -0.006895078346133232, 0.026409612968564034, -0.0012535527348518372, 0.03532759100198746, 0.052440471947193146, -0.005612473003566265, -0.05605586618185043, 0.06586908549070358, -0.03429462015628815, 0.0071318005211651325, 0.0685892403125763, -0.04589832201600075, 0.003910223953425884, -0.029215849936008453, -0.03894298896193504, 0.04004482552409172, 0.02169238030910492, 0.050925448536872864, 0.012378429993987083, -0.007329786662012339, 0.006249471567571163, -0.020624978467822075, 0.00027895584935322404, 0.012610848061740398, 0.0070758480578660965, 0.031385086476802826, 0.0531635507941246, 0.00736852316185832, -0.011474580504000187, -0.007876399904489517, 0.0014676789287477732, -0.0071318005211651325, -0.03401916101574898, 0.03594737499952316, 0.06011888384819031, 0.009064316749572754, -0.04300600662827492, 0.026426829397678375, -0.015029720962047577, 0.07423614710569382, -0.026788368821144104, 0.029353579506278038, 0.05722656846046448, -0.05061555653810501, -0.046827998012304306, -0.021451354026794434, 0.06848594546318054, -0.018576253205537796, 0.03770342469215393, 0.0040006088092923164, -0.030334901064634323, 0.0073943473398685455, 0.001300897216424346, -0.018369659781455994, 0.0041534025222063065, -0.03234919533133507, -0.02628909982740879, -0.02535942569375038, -0.00945167988538742, 0.04989247769117355, -0.018868928775191307, 0.0038994636852294207, 0.02084878832101822, -0.05412765592336655, 0.01080315001308918, -0.026960531249642372, 0.04321260005235672, 0.003066631266847253, -0.012412862852215767, 0.01831801049411297, -0.04314373433589935, 0.036808181554079056, 0.013256454840302467, 0.01403118297457695, -0.006443153601139784, -0.023517295718193054, -0.028010716661810875, -0.04758550971746445, 0.04576059430837631, 0.03345102816820145, 0.0032517050858587027, 0.009752963669598103, -0.04145655035972595, -0.024808509275317192, 0.03660158812999725, 0.04290270805358887, -0.007273834198713303, 0.06573135405778885, 0.03489718586206436, -0.007381435018032789, 0.040630172938108444, 0.005831979215145111, 0.0411466583609581, 0.024085428565740585, -0.04328146576881409, 0.0033356340136379004, -0.033623188734054565, 0.040354713797569275, 0.035396456718444824, -0.004575198516249657, 0.05016793683171272, 0.027959069237113, -0.05034009739756584, 0.003105367533862591, -0.0318671390414238, -0.0174055527895689, -0.021348057314753532, -0.04014812037348747, 0.016355367377400398, -0.029715118929743767, 0.04538183659315109, -0.03828877583146095, 0.0016387647483497858, 0.00033840545802377164, 0.01795647107064724, -0.0510631762444973, -0.029439659789204597, -0.052784793078899384, -0.04989247769117355, -0.012387038208544254, -0.07582003623247147, 0.04799869656562805, 0.009167613461613655, 0.02685723267495632, -0.019712520763278008, 0.016949323937296867, 0.01749163493514061, -0.02207113616168499, -0.014900599606335163, -0.072996586561203, -0.014935032464563847, 0.041215524077415466, 0.04734448343515396, 0.019333764910697937, 0.061599474400281906, 0.002718003699555993, 0.07155042141675949, -0.0028535809833556414, -0.07664640992879868, -0.022656487300992012, -0.03722137212753296, 0.04001039266586304, 0.0578119158744812, -0.002543689915910363, -0.017095662653446198, -0.0018679550848901272, -0.04872177541255951, 0.06707421690225601, -0.028079582378268242, -0.07781711220741272, -0.005922364536672831, 0.0036971736699342728, -0.009529152885079384, -0.021830109879374504, 0.016992365941405296, -0.0021896823309361935, 0.03825434297323227, 0.00968409888446331, 0.019230468198657036, -0.05732986330986023, -0.014694005250930786, 0.06163390725851059, 0.026771152392029762, -0.06927789002656937, 0.0005170232616364956, -0.026254666969180107, 0.022587621584534645, 0.02601364068686962, 0.04631151258945465, -0.029319146648049355, 0.03463894501328468, -0.025738181546330452, -0.029301930218935013, -0.009468896314501762, -0.005629689432680607, 0.017138702794909477, -0.04603605344891548, -0.024946238845586777, 0.04004482552409172, 0.00388009543530643, 0.013041253201663494, 0.04001039266586304, 0.005991228856146336, 0.010372745804488659, -0.0033614581916481256, 0.043350327759981155, -0.023431215435266495, 0.006382897030562162, -0.021175894886255264, 0.02814844623208046, 0.0886288732290268, 0.07609549164772034, 0.031161276623606682, -0.047103457152843475, 0.022794216871261597, 0.07843689620494843, -0.0007327634375542402, -0.023327916860580444, -0.04021698608994484, 0.016398407518863678, -0.03283124789595604, -0.026237450540065765, 0.04572616145014763, -0.023586159572005272, -0.022398244589567184, 0.014848951250314713, 0.013480265624821186, -0.003339938120916486, -0.017121486365795135, -0.006666963919997215, 0.04965145140886307, -0.02553158812224865, -0.008569351397454739, -0.018283577635884285, 0.006602403242141008, 0.09000616520643234, -0.07761051505804062, 0.06142731383442879, -0.009339774958789349, -0.06576579064130783, -0.020917652174830437, 0.039597202092409134, -0.031023548915982246, -0.020642194896936417, 0.026254666969180107, 0.018731199204921722, -0.029715118929743767, 0.03214259818196297, 0.032710734754800797, 0.021193111315369606, -0.007712846621870995, -0.02227773144841194, -0.013110117986798286, 0.06666103005409241, -0.016114339232444763, -0.03749683126807213, -0.018490172922611237, -0.019247684627771378, -0.03482832387089729, -0.004248091485351324, -0.0462082140147686, -0.02365502528846264, 0.09523988515138626, 0.009425856173038483, -0.047275617718696594, -0.0009183753281831741, 0.08298196643590927, 0.030627576634287834, -0.07885008305311203, 0.02506675198674202, -0.02112424746155739, -0.014745654538273811, -0.03226311132311821, -0.03066200762987137, 0.024068213999271393, 0.0272187739610672, 0.011113041080534458, 0.03327886760234833, 0.016303718090057373, 0.0757511705160141, -0.020452816039323807, 0.05199284851551056, 0.029715118929743767, 0.008758729323744774, 0.006004141177982092, -0.014788694679737091, -0.01658778451383114, 0.10722234100103378, -0.0231041070073843, -0.010906446725130081, 0.01155205350369215, 0.045209676027297974, 0.042317360639572144, -0.06955334544181824, -0.031281791627407074, -0.0339675135910511, 0.024722427129745483, 0.022880297154188156, -0.06294233351945877, -0.006460370030254126, 0.06841707974672318, 0.006490498315542936, -0.027184341102838516, 0.017629364505410194, 0.05123533681035042, -0.013299495913088322, -0.039597202092409134, -0.06397530436515808, 0.03238362446427345, -0.005440311506390572, 0.009554977528750896, -0.0038176868110895157, -0.04941042512655258, -0.01291213184595108, -0.05285365879535675, 0.009184829890727997, -0.054850734770298004, -0.027287637814879417, -0.02804514952003956, -0.04796426370739937, 0.013256454840302467, 0.03894298896193504, 0.0886288732290268, -0.014633748680353165, -0.014960856176912785, -0.020728275179862976, -0.01734529621899128, 0.0542309507727623, 0.0626668781042099, -0.07671527564525604, 0.000053901425417279825, -0.031212925910949707, -0.01631232537329197, 0.007054327987134457, -0.06311450153589249, -0.01365242712199688, -0.020056843757629395, -0.07630208879709244, -0.07024199515581131, -0.012343998067080975, -0.033812567591667175, -0.09482669085264206, 0.059051480144262314, -0.021468570455908775, -0.029164200648665428, 0.07065518200397491, -0.03407081216573715, -0.03563748300075531, 0.027821339666843414, 0.03310670703649521, -0.006951030809432268, 0.011724215000867844, -0.057846348732709885, 0.05825953930616379, 0.03401916101574898, -0.006288208067417145, 0.07251453399658203, 0.07006983458995819, -0.04665583372116089, -0.015666719526052475, 0.022226082161068916, -0.04920382797718048, 0.005246629472821951, 0.057846348732709885, 0.04899723455309868, -0.04534740746021271, -0.07526911795139313, -0.07788597792387009, 0.03477667272090912, -0.048790641129016876, 0.021434137597680092, 0.04761994257569313, -0.01738833636045456, -0.02093486860394478, 0.009503329172730446, 0.04379795119166374, -0.007308266591280699, -0.07568230479955673, -0.06621341407299042, 0.013402792625129223, -0.012016890570521355, -0.05412765592336655, 0.011560661718249321, -0.048962801694869995, 0.016389798372983932, -0.0732031762599945, 0.022398244589567184, 0.06838265061378479, 0.002124045742675662, -0.012498943135142326, -0.04565729573369026, 0.01696654036641121, -0.021210327744483948, 0.015141625888645649, -0.028475554659962654, 0.03753126412630081, -0.03136787191033363, -0.014848951250314713, 0.0014655268751084805, 0.03209095075726509, 0.042799413204193115, 0.005431703291833401, 0.011861944571137428, -0.029577389359474182, 0.009882085025310516, -0.013075685128569603, 0.024739643558859825, 0.04651810601353645, 0.028854310512542725, 0.0016549048013985157, -0.02489458955824375, -0.0020498009398579597, 0.060463208705186844, -0.01403118297457695, -0.042799413204193115, 0.0025028015952557325, 0.020263439044356346, -0.004601022694259882, 0.018472956493496895, 0.029783982783555984, -0.023327916860580444, -0.06576579064130783, -0.037737857550382614, -0.0029159896075725555, -0.06352768838405609, -0.021020950749516487, 0.018920576199889183, -0.02010849304497242, -0.06883026659488678, 0.07492479681968689, 0.02759752981364727, 0.017715444788336754, -0.038564231246709824, -0.02430924028158188, -0.02647847682237625, -0.0174055527895689, 0.01267110463231802, 0.029697902500629425, 0.03897742182016373, -0.035499755293130875, -0.015296571888029575, -0.010966703295707703, -0.027666393667459488, 0.023448430001735687, -0.005788939073681831, -0.0007510556606575847, -0.03990709409117699, -0.060015588998794556, 0.016105731949210167, 0.01736251264810562, 0.036704886704683304, -0.01805976778268814, 0.05133863538503647, -0.022708134725689888, -0.002903077518567443, -0.008573655039072037, 0.012102970853447914, -0.0017582018626853824, -0.04558843374252319, -0.0021315778139978647, -0.04744777828454971, 0.06903686374425888, 0.020349519327282906, 0.03401916101574898, 0.039149582386016846, -0.0027847164310514927, -0.05460970848798752, -0.033330515027046204, -0.03815104439854622, 0.010828974656760693, 0.07857462763786316, -0.00682621356099844, 0.027924636378884315, -0.026323532685637474, -0.010553515516221523, -0.004241635091602802, 0.017629364505410194, -0.0071318005211651325, -0.03393308073282242, -0.08002078533172607, 0.09930290281772614, 0.0012535527348518372, 0.022312162443995476, 0.01548594981431961, -0.04734448343515396, -0.0658346563577652, -0.034191325306892395, 0.04445216432213783, 0.01869676634669304, 0.03722137212753296, 0.011973850429058075, -0.05698554217815399, -0.028217311948537827, 0.006666963919997215, 0.0058793239295482635, -0.06022218242287636, 0.022105569019913673, -0.0030278947670012712, -0.04052687808871269, -0.013239238411188126, -0.04741334542632103, 0.035775210708379745, -0.03863309696316719, 0.059154778718948364, -0.06611011177301407, 0.018094200640916824, -0.0019174515036866069, -0.026805585250258446, -0.021950623020529747, -0.019488710910081863, 0.039252880960702896, -0.03198765218257904, -0.01478008646517992, 0.03031768463551998, -0.01584748923778534, 0.027442583814263344, -0.055332787334918976, -0.01375572383403778, 0.00434708409011364, -0.009150397032499313, 0.038392070680856705, -0.06301119923591614, 0.07161928713321686, -0.055332787334918976, 0.03556861728429794, -0.02956017293035984, 0.0008382125524803996, 0.02244989201426506, 0.04731005057692528, 0.034105245023965836, 0.008995451964437962, -0.06153061240911484, -0.010596555657684803, -0.036153968423604965, 0.001751745818182826, -0.014039791189134121, -0.02656455896794796, 0.01538265310227871, -0.0696222111582756, 0.10143770277500153, 0.01736251264810562, 0.05564267933368683, 0.018352443352341652, 0.011853336356580257, -0.04589832201600075, -0.0011976001551374793, 0.02059054560959339, -0.07175701856613159, 0.017035406082868576, 0.006623923312872648, -0.004751664586365223, 0.019884683191776276, 0.016260677948594093, -0.03808217868208885, 0.011750039644539356, 0.028699364513158798, -0.059051480144262314, -0.016699690371751785, -0.04366021975874901, -0.05436868220567703, -0.005250933580100536, -0.016234854236245155, 0.02926749736070633, 0.0051347240805625916, 0.007024199701845646, -0.024360887706279755, -0.028837094083428383, 0.01257641613483429, 0.03611953556537628, 0.0014289425453171134, 0.016906283795833588, 0.03019717149436474, 0.06621341407299042, -0.011354067362844944, -0.009598017670214176, 0.020418383181095123, -0.0024855853989720345, -0.030541494488716125, -0.013841805048286915, 0.03415689244866371, 0.003701477777212858, -0.0394594743847847, 0.02281143330037594, -0.017414161935448647, -0.00684773363173008, 0.01542569324374199, -0.048790641129016876, 0.041559848934412, -0.04200746864080429, 0.015270747244358063, -0.027425367385149002, 0.03770342469215393, -0.02711547538638115, -0.01805976778268814, -0.0013482416979968548, 0.05058112367987633, 0.03407081216573715, -0.011259378865361214, -0.01253337599337101, 0.003182840533554554, 0.04593275487422943, -0.019127171486616135, 0.08139807730913162, -0.016234854236245155, 0.0174055527895689, 0.02346564643085003, -0.00010161578393308446, 0.07464933395385742, -0.013970926403999329, -0.008431621827185154, -0.03050706349313259, 0.009701314382255077, -0.05412765592336655, 0.026392396539449692, 0.027614744380116463, -0.04159427806735039, 0.01670829765498638, -0.06108298897743225, -0.03339938074350357, 0.014375506900250912, 0.022312162443995476, -0.040458012372255325, -0.043350327759981155, 0.00034566852264106274, -0.0011136713437736034, -0.03190157189965248, -0.0320737361907959, -0.03190157189965248, -0.02411986142396927, 0.00794526468962431, -0.0288026612251997, -0.041215524077415466, 0.027167124673724174, 0.010544907301664352, 0.04348805919289589, 0.022656487300992012, -0.013936493545770645, 0.0003311423643026501, -0.05994672328233719, -0.0004801698960363865, -0.004471901338547468, -0.010415785945951939, -0.09765014797449112, -0.056537918746471405, -0.01852460391819477, 0.029525740072131157, -0.0079108327627182, -0.011431540362536907, 0.033726487308740616, 0.023913267999887466, -0.053094685077667236, 0.0020498009398579597, 0.03863309696316719, 0.06555919349193573, -0.028268959373235703, -0.026168586686253548, 0.01118190586566925, -0.07223907113075256, -0.010174759663641453, -0.05646905675530434, -0.025101182982325554, 0.003703629830852151, -0.02797628566622734, 0.032039303332567215, -0.003905919846147299, 0.007523468695580959, 0.0409400649368763, -0.029577389359474182, -0.021830109879374504, 0.030059441924095154, 0.01257641613483429, 0.03739353269338608, 0.00977017916738987, -0.012653889134526253, -0.00907292403280735, 0.024464184418320656, -0.006959639023989439, 0.006834821775555611, -0.008737209253013134, 0.004656975623220205, 0.0069768549874424934, 0.022467108443379402, 0.054024357348680496, -0.024946238845586777, 0.014220560900866985, 0.004777488764375448, 0.02029787003993988, 0.0339675135910511, -0.013996750116348267, -0.008311108686029911, 0.0626668781042099, 0.024808509275317192, 0.008952410891652107, 0.028372257947921753, 0.0759577676653862, -0.020607762038707733, -0.001596800284460187, 0.03057592734694481, -0.008995451964437962, -0.002360768150538206, -0.012197660282254219, 0.0329173281788826, 0.07416728138923645, -0.011973850429058075, 0.030937466770410538, -0.0028406688943505287, -0.02770082652568817, 0.07836803048849106, 0.004915217868983746, -0.01440993882715702, -0.01862790249288082, 0.02506675198674202, 0.0245846975594759, -0.013936493545770645, -0.028217311948537827, 0.06566249579191208, 0.013833196833729744, -0.06132401525974274, -0.009890692308545113, 0.035207077860832214, 0.023052459582686424, -0.00448911776766181, 0.03317556902766228, -0.027941852807998657, -0.018765632063150406, 0.03469059243798256, 0.025411074981093407, -0.00607731007039547, -0.01478008646517992, -0.020917652174830437, -0.026771152392029762, 0.028596067801117897, -0.019505927339196205, 0.017904821783304214, 0.056262459605932236, 0.031385086476802826 ]
7,414
pathlib
__le__
null
def __le__(self, other): if not isinstance(other, PurePath) or self._flavour is not other._flavour: return NotImplemented return self._cparts <= other._cparts
(self, other)
[ 0.01858804188668728, -0.016665447503328323, -0.02953886240720749, 0.0808730497956276, -0.0009031547233462334, -0.07335986196994781, -0.008323864080011845, 0.029981857165694237, -0.008762428537011147, -0.03660905361175537, 0.07775437086820602, -0.03412828594446182, 0.03714064508676529, 0.02778460457921028, -0.04674476385116577, -0.014406176283955574, -0.027802325785160065, 0.012297523207962513, 0.006830972619354725, 0.02000562474131584, -0.035262349992990494, 0.020377740263938904, 0.032781582325696945, 0.006751233711838722, 0.014592234045267105, 0.07155244797468185, 0.02140548638999462, 0.016816064715385437, -0.013998621143400669, -0.010481245815753937, -0.02921990677714348, 0.00711448909714818, 0.049650806933641434, -0.031966470181941986, 0.037672240287065506, 0.001402077148668468, 0.004957106895744801, 0.03561674430966377, 0.01963350921869278, -0.028298478573560715, -0.019562629982829094, -0.00841689296066761, -0.003836330957710743, -0.018481723964214325, -0.004339129664003849, 0.0039049950428307056, -0.08952029794454575, 0.02691633626818657, 0.018357684835791588, 0.05808541923761368, 0.026172105222940445, -0.04174778610467911, -0.007672661915421486, 0.04199586436152458, -0.045220863074064255, 0.05727031081914902, 0.053265638649463654, 0.07364337891340256, -0.05145822465419769, 0.025817710906267166, -0.04394504055380821, -0.021476365625858307, 0.038345590233802795, -0.06581123918294907, 0.013927741907536983, -0.048516739159822464, -0.03379160910844803, -0.010348347947001457, 0.0004632059717550874, 0.08852799236774445, -0.06871728599071503, 0.028918670490384102, -0.015371903777122498, 0.00042970452341251075, -0.030460290610790253, 0.0004978149081580341, 0.0016579063376411796, 0.0607079453766346, 0.07112716883420944, -0.021476365625858307, -0.024967161938548088, -0.03515603020787239, 0.004449878353625536, -0.03412828594446182, -0.039656855165958405, 0.03265754133462906, 0.013334129936993122, -0.02778460457921028, 0.03873542696237564, 0.027607407420873642, -0.056845035403966904, 0.08080216497182846, -0.02149408496916294, -0.01196970697492361, 0.06715793907642365, 0.028741473332047462, -0.008478911593556404, -0.015336464159190655, 0.029875539243221283, -0.027944082394242287, 0.018623482435941696, 0.04447663202881813, -0.004567271564155817, 0.007996047846972942, 0.04426399618387222, 0.0070879096165299416, 0.0022371213417500257, -0.018269086256623268, -0.04663844406604767, -0.06421645730733871, -0.058617010712623596, 0.016443949192762375, -0.026774577796459198, 0.040790919214487076, -0.024364689365029335, 0.004700169898569584, 0.001088104909285903, -0.051918938755989075, 0.052556850016117096, -0.0023456551134586334, 0.01936771348118782, 0.042456578463315964, -0.006777813658118248, 0.018109608441591263, 0.02202567830681801, 0.04394504055380821, 0.036077458411455154, 0.010773622430860996, -0.059290364384651184, -0.03986949101090431, 0.06517332792282104, 0.04312992841005325, 0.0011916548246517777, 0.02828075923025608, -0.00458056153729558, 0.03191331401467323, -0.009059234522283077, 0.025073479861021042, 0.015557961538434029, 0.035545866936445236, -0.027837764471769333, -0.02851111628115177, 0.05220245197415352, 0.030779246240854263, -0.02845795638859272, 0.05510849505662918, -0.05514393746852875, 0.011411534622311592, 0.012607619166374207, 0.05670327693223953, -0.002790864324197173, -0.009356040507555008, 0.049615368247032166, -0.03611290082335472, 0.00939148012548685, -0.04911921173334122, -0.05032415688037872, -0.013387288898229599, 0.012908855453133583, -0.007331556640565395, -0.01010913122445345, -0.06272800266742706, 0.03799119591712952, 0.0001906260004034266, -0.032143671065568924, -0.045398060232400894, -0.007517613936215639, -0.04493734613060951, -0.02819216065108776, 0.06166481226682663, 0.06715793907642365, -0.001705528236925602, -0.01321009173989296, 0.005311502143740654, -0.03528007119894028, -0.010277468711137772, 0.022911667823791504, 0.01574401929974556, -0.02863515540957451, -0.023035705089569092, 0.04312992841005325, -0.011508992873132229, -0.04812690615653992, 0.01986386626958847, 0.08136919885873795, 0.03742416203022003, -0.017994429916143417, 0.0018074169056490064, 0.07534448057413101, 0.045894213020801544, -0.07562799751758575, 0.007105629425495863, 0.0025627221912145615, 0.012067166157066822, 0.006609475705772638, -0.04157058894634247, 0.011260916478931904, -0.0019425301579758525, 0.009068094193935394, 0.06432277709245682, -0.0426337756216526, -0.021299168467521667, 0.017498277127742767, -0.006325959227979183, 0.014946629293262959, -0.004062258172780275, 0.001358885201625526, 0.006113321986049414, 0.0415351502597332, 0.019243674352765083, -0.03577622398734093, -0.068079374730587, -0.028847791254520416, -0.025445595383644104, 0.01841084472835064, 0.0016202518017962575, -0.025587353855371475, -0.010649584233760834, -0.03198419138789177, 0.02921990677714348, 0.06761865317821503, 0.032055072486400604, 0.01981070637702942, 0.006325959227979183, -0.013750544749200344, -0.005789936054497957, -0.028333919122815132, 0.014166959561407566, -0.004731179680675268, 0.004175221547484398, 0.012457001022994518, -0.026774577796459198, 0.032870180904865265, -0.026083506643772125, -0.0005864137783646584, 0.06336591392755508, -0.01475171186029911, 0.08193623274564743, -0.03026537410914898, 0.03044257126748562, -0.03361441195011139, -0.02918446809053421, -0.006715794093906879, 0.01564656011760235, -0.015203566290438175, -0.10468842089176178, -0.0033667569514364004, -0.015274444594979286, 0.027341611683368683, 0.05330108106136322, -0.021281449124217033, -0.02411661297082901, -0.05769558250904083, -0.03125768154859543, 0.02705809473991394, -0.013493607752025127, -0.0536554753780365, -0.07091453671455383, 0.020289141684770584, 0.013041753321886063, -0.011190037243068218, 0.03375617042183876, 0.03148803859949112, -0.008394742384552956, -0.05702223256230354, -0.006808822974562645, 0.008771288208663464, 0.003840761026367545, -0.0035284499172121286, 0.007384715601801872, -0.08668513596057892, -0.013475888408720493, -0.03696344792842865, 0.055710967630147934, -0.02587086893618107, 0.01323667075484991, 0.018357684835791588, -0.01201400626450777, -0.005152024328708649, 0.011092578060925007, -0.02257499098777771, 0.030070455744862556, -0.04568157717585564, -0.04412223771214485, -0.07732909172773361, -0.011951987631618977, -0.05025327950716019, -0.07980985939502716, -0.055675528943538666, -0.03306509926915169, 0.03148803859949112, 0.009001645259559155, 0.014450475573539734, -0.018357684835791588, 0.08477139472961426, -0.0039404346607625484, 0.007969467900693417, -0.0932060107588768, 0.05269860848784447, 0.0010155645431950688, -0.031877871602773666, -0.030796967446804047, -0.02393941394984722, -0.01135837472975254, 0.014290997758507729, -0.02633158303797245, -0.0009828937472775578, 0.044547513127326965, -0.015619980171322823, 0.034004244953393936, -0.02913130819797516, 0.01305061299353838, -0.03460671752691269, 0.021281449124217033, 0.054222509264945984, 0.08278678357601166, 0.033277735114097595, 0.00943577941507101, -0.021068811416625977, 0.04989888146519661, -0.03795575723052025, 0.11007523536682129, -0.07895930856466293, 0.005683617666363716, -0.028794633224606514, -0.03841647133231163, 0.024081172421574593, 0.014512495137751102, 0.01801214925944805, 0.004611571319401264, -0.017861532047390938, 0.035315509885549545, 0.05478953942656517, 0.021724442020058632, -0.012200064025819302, 0.0435197651386261, 0.06325959414243698, -0.02936166524887085, 0.025534193962812424, -0.01737423799932003, 0.06031810864806175, 0.007863149978220463, -0.0003510730166453868, -0.03230314701795578, 0.02822759933769703, 0.008833306841552258, -0.0028063692152500153, 0.008319433778524399, 0.047843389213085175, -0.00047123522381298244, -0.05624256283044815, -0.002401029458269477, -0.0313994400203228, -0.028245318681001663, 0.00730497669428587, 0.02578227035701275, -0.04018844664096832, -0.0010122420499101281, 0.00843904260545969, 0.03017677552998066, 0.0838499665260315, -0.01968666911125183, -0.03497883304953575, -0.01609841361641884, -0.02868831343948841, -0.025853149592876434, -0.007539763581007719, -0.022681310772895813, -0.08533842861652374, -0.01554024126380682, -0.07796700298786163, -0.006644915323704481, 0.05659695714712143, -0.09242633730173111, 0.02199023962020874, -0.024400128051638603, -0.029928697273135185, 0.03170067444443703, -0.020430898293852806, 0.047170039266347885, 0.05741206556558609, 0.0689653605222702, -0.025817710906267166, 0.03219682723283768, -0.022149717435240746, 0.02071441523730755, 0.030052736401557922, -0.014689692296087742, 0.041783228516578674, 0.03373844921588898, 0.0016346491174772382, -0.02493172138929367, 0.0008400280494242907, -0.02257499098777771, -0.020413178950548172, -0.0027975093107670546, -0.002447543665766716, 0.011757070198655128, -0.04787882789969444, -0.025994908064603806, 0.05230877175927162, 0.01986386626958847, -0.02927306666970253, 0.045043665915727615, 0.01732993870973587, 0.0197221077978611, 0.05854613333940506, 0.04823322594165802, -0.04720547795295715, 0.022185156121850014, -0.040117569267749786, 0.021706722676753998, -0.022202877327799797, -0.016762906685471535, -0.04437031224370003, -0.028014961630105972, -0.003435421036556363, -0.06715793907642365, 0.060920581221580505, 0.025534193962812424, -0.013458168134093285, 0.009559817612171173, 0.017569156363606453, -0.014849170111119747, -0.009116823785007, -0.027855483815073967, 0.017631174996495247, 0.018853839486837387, -0.01479601114988327, 0.0038208262994885445, -0.00165126146748662, 0.020430898293852806, 0.015504801645874977, 0.029467983171343803, -0.0020455264020711184, -0.015770599246025085, 0.009032654576003551, -0.045220863074064255, 0.02950342372059822, -0.01000281237065792, 0.013174652121961117, 0.0008261844632215798, -0.023673618212342262, 0.007468884810805321, 0.009152263402938843, -0.06680354475975037, -0.0004917237092740834, -0.00798275787383318, 0.037353284657001495, 0.022539552301168442, -0.03152347728610039, 0.023726776242256165, -0.016479389742016792, -0.0164705291390419, -0.05638432130217552, 0.013077192939817905, -0.020980212837457657, -0.034766197204589844, -0.04426399618387222, 0.022521832957863808, 0.0023190754000097513, 0.05121014639735222, 0.0313994400203228, -0.019420871511101723, 0.030974164605140686, 0.033915646374225616, -0.011588731780648232, 0.008731418289244175, -0.030052736401557922, 0.026579661294817924, 0.03442952036857605, -0.09235545992851257, -0.0010332843521609902, 0.012474720366299152, 0.002708910498768091, 0.03926701843738556, -0.022699030116200447, 0.059573881328105927, 0.007650512270629406, -0.05578184872865677, -0.009674996137619019, -0.008904186077415943, -0.026172105222940445, -0.005227333400398493, 0.043413445353507996, -0.04911921173334122, -0.038522787392139435, 0.0416414700448513, -0.0026978356763720512, -0.03958597406744957, 0.01769319362938404, -0.04188954457640648, -0.08987469226121902, 0.08633074164390564, 0.06542140245437622, 0.046851083636283875, 0.014211258850991726, -0.020342299714684486, -0.002859528409317136, -0.01858804188668728, -0.024736804887652397, 0.015052948147058487, 0.006219640839844942, 0.03561674430966377, 0.028564276173710823, 0.03471303731203079, -0.00474889948964119, -0.02845795638859272, -0.03191331401467323, 0.009568678215146065, 0.011889968067407608, -0.046035971492528915, 0.06272800266742706, 0.01683378592133522, 0.05131646618247032, 0.0375659205019474, -0.025481034070253372, -0.03044257126748562, 0.015398483723402023, -0.024364689365029335, 0.004352419637143612, -0.038522787392139435, 0.005550719331949949, -0.08455876260995865, -0.04192498326301575, -0.040968116372823715, -0.005444400478154421, -0.03664449229836464, 0.05546289309859276, -0.03469531610608101, -0.012837976217269897, -0.011305215768516064, 0.042456578463315964, 0.030903285369277, -0.0037366573233157396, 0.0395505353808403, -0.0788884311914444, 0.05624256283044815, -0.020430898293852806, 0.028068121522665024, -0.0024276089388877153, 0.002425394020974636, 0.06531508266925812, 0.0243469700217247, 0.004611571319401264, 0.026810018345713615, 0.005603878293186426, -0.009187703020870686, 0.021547244861721992, 0.030159054324030876, -0.009001645259559155, 0.014344156719744205, 0.017569156363606453, -0.010126850567758083, 0.04018844664096832, 0.008377023041248322, 0.016124993562698364, -0.002677900716662407, 0.009347180835902691, -0.007712531369179487, 0.006472147535532713, 0.015584541484713554, 0.02044861949980259, -0.049296412616968155, -0.02167128399014473, -0.01728563942015171, 0.04107443615794182, -0.03356125205755234, 0.025551913306117058, 0.027678286656737328, -0.008408032357692719, 0.046071410179138184, -0.03352581337094307, -0.008620670065283775, -0.003652488347142935, 0.014317577704787254, 0.0013522402150556445, 0.03017677552998066, -0.047666192054748535, -0.07796700298786163, -0.008828877471387386, 0.013812563382089138, 0.051422782242298126, -0.021777601912617683, 0.02642018347978592, -0.07063101977109909, 0.0005412836908362806, 0.05751838535070419, -0.016443949192762375, -0.037388723343610764, -0.042456578463315964, -0.044228553771972656, 0.03710520640015602, -0.0727219507098198, -0.004175221547484398, -0.02737705036997795, 0.004374569281935692, -0.03442952036857605, 0.016860364004969597, 0.03627237677574158, 0.03696344792842865, -0.042279381304979324, -0.005156454164534807, -0.039798613637685776, 0.006259510293602943, -0.009843334555625916, 0.01593007706105709, -0.028174439445137978, 0.005772216245532036, 0.007074619643390179, 0.08250326663255692, 0.07484832406044006, 0.02202567830681801, -0.06648459285497665, -0.015628840774297714, -0.006706934422254562, -0.02647334150969982, -0.02207883819937706, -0.015557961538434029, 0.07839228212833405, -0.023460980504751205, -0.02700493484735489, 0.0017077431548386812, 0.004166361875832081, -0.05886508896946907, -0.01959807053208351, 0.047170039266347885, 0.018304526805877686, 0.02773144654929638, -0.03182471543550491, 0.03242718428373337, -0.050784870982170105, 0.0333840548992157, -0.014166959561407566, -0.023106584325432777, -0.09795490652322769, -0.005807655863463879, -0.012651918455958366, 0.01042808685451746, 0.05525025352835655, -0.07541535794734955, -0.013077192939817905, -0.08548019081354141, 0.02222059667110443, -0.09497798979282379, -0.003351252293214202, -0.004208446480333805, -0.041109874844551086, 0.03162979707121849, -0.030212214216589928, -0.003240503603592515, 0.07626590877771378, 0.0064544277265667915, -0.03191331401467323, -0.05443514510989189, 0.030460290610790253, 0.05397443100810051, 0.004691310226917267, -0.005630458239465952, -0.008731418289244175, 0.04837498068809509, -0.03763679787516594, 0.06155849248170853, -0.02691633626818657, 0.043767839670181274, 0.019792987033724785, 0.0961829349398613, -0.02167128399014473, -0.01067616418004036, -0.04429943487048149, -0.048658497631549835, -0.000036097117117606103, -0.029893258586525917, -0.032728422433137894, -0.01515926606953144, -0.029893258586525917, -0.01619587279856205, 0.012864556163549423, 0.0048817978240549564, -0.018446285277605057, -0.027447929605841637, 0.0375659205019474, -0.03994036838412285, -0.020395459607243538, 0.04500822722911835, 0.06428734213113785, -0.011854528449475765, 0.028014961630105972, 0.06474805623292923, -0.04235025867819786, 0.02822759933769703, -0.02207883819937706, -0.002214971696957946, 0.0207675751298666, 0.03226770833134651, 0.02691633626818657, 0.005484269931912422, -0.002531712641939521, -0.02999957650899887, -0.03125768154859543, 0.05245053023099899, -0.006379118654876947, -0.0021097606513649225, 0.008350443094968796, 0.0077435411512851715, 0.0005086128949187696, -0.037849437445402145, 0.003444280941039324, -0.006658204831182957, 0.0010432517156004906, -0.03494339436292648, 0.052556850016117096, 0.027270732447504997, -0.103129081428051, 0.009444639086723328, -0.04447663202881813, 0.02411661297082901, -0.014858030714094639, 0.04086179658770561, 0.0033667569514364004, -0.04447663202881813, -0.009019364602863789, 0.029645182192325592, -0.008749138563871384, -0.015956657007336617, 0.027802325785160065, 0.01746283657848835, -0.07761260867118835, -0.029308505356311798, 0.0187829602509737, -0.029467983171343803, 0.052415091544389725, -0.016169292852282524, 0.042952731251716614, 0.021511806175112724, 0.014025201089680195, -0.03460671752691269, 0.008691549301147461, 0.039160698652267456, 0.06531508266925812, 0.04663844406604767, -0.013351849280297756, 0.020253701135516167, -0.03457127884030342, 0.01033948827534914, -0.019580349326133728, -0.0071189189329743385, 0.07045382261276245, -0.042279381304979324, 0.017303358763456345, 0.01986386626958847, -0.018269086256623268, 0.017267920076847076, -0.01655912771821022, 0.0207675751298666, 0.030212214216589928, 0.009639556519687176, -0.006941721308976412, -0.008359303697943687, -0.02982237935066223, -0.02542787604033947, 0.0323917455971241, 0.004159716889262199, 0.0791010707616806, 0.020430898293852806, 0.027837764471769333, -0.03177155554294586, 0.08314117789268494 ]
7,415
pathlib
__lt__
null
def __lt__(self, other): if not isinstance(other, PurePath) or self._flavour is not other._flavour: return NotImplemented return self._cparts < other._cparts
(self, other)
[ 0.013877276331186295, -0.009084109216928482, -0.02824796736240387, 0.04655716195702553, 0.002852551406249404, -0.0574827641248703, 0.02505839616060257, 0.04042472690343857, 0.003980355337262154, -0.03778143599629402, 0.06576507538557053, -0.04722679406404495, 0.01610645279288292, 0.042750824242830276, -0.04475972428917885, -0.022961385548114777, -0.02223888598382473, 0.016828950494527817, 0.02155163139104843, -0.007652326952666044, -0.018837852403521538, 0.012159137986600399, 0.01929602213203907, -0.0020441447850316763, 0.03388698771595955, 0.06111288443207741, 0.038204364478588104, 0.0003975949948653579, -0.017480963841080666, -0.02118157036602497, -0.012634930200874805, 0.027789797633886337, 0.048918500542640686, -0.0369708277285099, -0.0022060463670641184, -0.007854979485273361, 0.0011795684695243835, 0.011551180854439735, 0.03164900094270706, -0.0036939987912774086, -0.015621848404407501, -0.017542639747262, -0.01892596296966076, -0.038415826857089996, -0.0011421218514442444, 0.0017908294685184956, -0.08810969442129135, 0.02461784891784191, 0.028177479282021523, 0.05237240344285965, 0.010255968198180199, -0.025657542049884796, -0.0053130146116018295, 0.042045947164297104, -0.07965116202831268, 0.055579595267772675, 0.06033751741051674, 0.05977361649274826, -0.047121062874794006, 0.0325477197766304, -0.03633643686771393, -0.0102383466437459, 0.014652642421424389, -0.05522715672850609, 0.011374961584806442, -0.060654714703559875, -0.032970648258924484, -0.0017985390732064843, -0.029992539435625076, 0.06587080657482147, -0.05804666504263878, 0.034398023039102554, -0.013260508887469769, 0.0033613848499953747, -0.009903529658913612, 0.0102383466437459, -0.010581973940134048, 0.050751183182001114, 0.07718408852815628, -0.01680251769721508, -0.015366330742835999, -0.023119984194636345, -0.004850438795983791, -0.030151136219501495, -0.04444253072142601, 0.03001016192138195, 0.02808937057852745, -0.02865327149629593, 0.008665588684380054, 0.03890924155712128, -0.05445178970694542, 0.07387116551399231, -0.030521197244524956, -0.013701057061553001, 0.06992385536432266, 0.035878267139196396, 0.012397034093737602, -0.023067118600010872, 0.029833942651748657, -0.03360503539443016, 0.058399103581905365, 0.027701687067747116, -0.004718273878097534, -0.01717257872223854, 0.04324423894286156, 0.007736030966043472, 0.0041741966269910336, 0.0019075748277828097, -0.04451301693916321, -0.038979727774858475, -0.04898899048566818, 0.019155047833919525, -0.02056480199098587, 0.03866253420710564, 0.004920926410704851, -0.027860285714268684, 0.0028855924028903246, -0.0408828966319561, 0.06291031837463379, -0.00876691471785307, 0.00460813706740737, 0.02808937057852745, 0.006863744929432869, 0.026908699423074722, -0.01978943683207035, 0.04416057839989662, 0.0370413139462471, -0.012846393510699272, -0.07196799665689468, -0.05854007974267006, 0.05875154212117195, 0.023525288328528404, 0.0057623740285634995, 0.024177299812436104, -0.015251788310706615, -0.010863925330340862, -0.015877366065979004, 0.021005351096391678, 0.046345699578523636, 0.03263583034276962, -0.02015949785709381, -0.043561432510614395, 0.03993131220340729, 0.018344437703490257, -0.040001802146434784, 0.027137786149978638, -0.02756071276962757, 0.018996449187397957, 0.012529198080301285, 0.0550156906247139, -0.017815779894590378, 0.0065817940048873425, 0.05522715672850609, -0.048671793192625046, 0.022009801119565964, -0.03735851123929024, -0.05854007974267006, -0.03883875161409378, 0.009207462891936302, -0.018661633133888245, -0.007921061478555202, -0.07951018959283829, 0.046416185796260834, -0.0025617892388254404, -0.03690033778548241, -0.04468923807144165, 0.0005226006032899022, -0.055861543864011765, -0.04109436273574829, 0.062452152371406555, 0.06685763597488403, 0.009489414282143116, -0.014952215366065502, -0.015507305972278118, -0.014062306843698025, -0.006537739187479019, 0.01741928607225418, 0.021040594205260277, -0.02081150934100151, -0.011154687032103539, 0.036935582756996155, -0.011004900559782982, -0.030961746349930763, 0.03187808766961098, 0.06104239448904991, 0.02371913008391857, -0.002093706512823701, -0.008454125374555588, 0.06562410295009613, 0.044548261910676956, -0.04951764643192291, 0.008370420895516872, -0.011031333357095718, 0.020617667585611343, 0.012784716673195362, -0.024089189246296883, 0.010634839534759521, -0.013542460277676582, 0.009991639293730259, 0.07150983065366745, -0.04035424068570137, -0.02257370389997959, 0.023701507598161697, -0.008559856563806534, 0.029322905465960503, 0.008810969069600105, -0.0031389077194035053, -0.01672321930527687, 0.0459580160677433, 0.028935223817825317, -0.027014432474970818, -0.06086617708206177, -0.010758193209767342, -0.04694484546780586, 0.0025155318435281515, 0.0026521016843616962, -0.035226255655288696, -0.02322571538388729, -0.031120343133807182, 0.0009581929189153016, 0.06312178075313568, 0.0409533865749836, 0.005546505097299814, 0.023895349353551865, -0.013595325872302055, 0.007599460892379284, -0.034803327172994614, 0.013445539399981499, -0.026186201721429825, 0.015366330742835999, 0.022009801119565964, -0.04475972428917885, 0.041799239814281464, -0.026432907208800316, 0.0006085075438022614, 0.0677034854888916, 0.0025331536307930946, 0.08035603910684586, -0.06844361126422882, 0.019560351967811584, -0.036371681839227676, -0.005581749137490988, 0.007595055736601353, 0.008454125374555588, -0.017392853274941444, -0.10347602516412735, -0.003515576710924506, -0.027331626042723656, 0.007286671549081802, 0.06449629366397858, 0.007854979485273361, -0.003826163476333022, -0.05561484023928642, -0.007489324081689119, 0.006608226802200079, -0.023049496114253998, -0.06135959178209305, -0.07214421778917313, -0.0030243652872741222, 0.013507216237485409, -0.024089189246296883, 0.027402114123106003, 0.01941937580704689, -0.01228249166160822, -0.04264509305357933, -0.017304744571447372, -0.011172309517860413, 0.014608587138354778, -0.013427916914224625, 0.020705778151750565, -0.08254116028547287, -0.007330726366490126, -0.03066217340528965, 0.06668141484260559, -0.014106362126767635, 0.02195693552494049, -0.022379862144589424, -0.017031604424118996, -0.011066577397286892, -0.006978287827223539, -0.015877366065979004, 0.02493504248559475, -0.04796691611409187, -0.040741920471191406, -0.07186226546764374, -0.030609307810664177, -0.04310326278209686, -0.09135212749242783, -0.07027629017829895, -0.011806698516011238, 0.021375412121415138, 0.018450168892741203, 0.008991594426333904, -0.02914668619632721, 0.08070848137140274, -0.020511936396360397, -0.012960935942828655, -0.08521969616413116, 0.04197545722126961, 0.013842033222317696, -0.020917240530252457, -0.03360503539443016, 0.004929737187922001, -0.01030002348124981, 0.019207913428544998, -0.017066847532987595, -0.02195693552494049, 0.04373764991760254, -0.03004540503025055, 0.02065291255712509, -0.015674713999032974, 0.013110722415149212, -0.05244288966059685, 0.0029340528417378664, 0.04112960398197174, 0.08409189432859421, 0.023243337869644165, 0.0011751630809158087, -0.006881366949528456, 0.03304113447666168, -0.046662893146276474, 0.09276188164949417, -0.06798543781042099, 0.029622478410601616, -0.013075478374958038, -0.03230101242661476, 0.016176939010620117, 0.0057932124473154545, 0.0034274670761078596, 0.010308833792805672, 0.002262216294184327, 0.06787970662117004, 0.042257409542798996, 0.017146145924925804, -0.001526500447653234, 0.03475046157836914, 0.061676785349845886, -0.028406566008925438, 0.01676727458834648, -0.013401484116911888, 0.05952690914273262, 0.005484828259795904, 0.021780716255307198, -0.03180759772658348, 0.021375412121415138, 0.011295662261545658, 0.009418926201760769, 0.016414836049079895, 0.00891229510307312, 0.0055993711575865746, -0.05159703642129898, -0.013956575654447079, -0.034803327172994614, -0.03929692134261131, 0.014212093316018581, 0.015516117215156555, -0.03725278005003929, 0.009656822308897972, 0.002949472051113844, 0.030186381191015244, 0.11158211529254913, -0.012767094187438488, -0.024670714512467384, -0.03876826539635658, -0.01815059594810009, -0.021357789635658264, 0.014661452732980251, -0.030327357351779938, -0.10939699411392212, -0.012996179983019829, -0.09649773687124252, 0.005797617603093386, 0.05212569609284401, -0.107423335313797, 0.012247247621417046, -0.03496192768216133, -0.03106747753918171, 0.04190497100353241, -0.02334906905889511, 0.06012605503201485, 0.06259312480688095, 0.05808191001415253, -0.023560531437397003, 0.02824796736240387, -0.049940574914216995, 0.018044864758849144, 0.021445900201797485, -0.013383862562477589, 0.05445178970694542, 0.020053766667842865, -0.010969656519591808, -0.025498945266008377, 0.015119623392820358, -0.0108727365732193, -0.008555451408028603, -0.003806338645517826, -0.002082692924886942, 0.0031102721113711596, -0.03455662354826927, -0.03943789750337601, 0.05649593472480774, 0.011877186596393585, -0.0030309734866023064, 0.05512142553925514, 0.02673248015344143, -0.012608497403562069, 0.05603776499629021, 0.042327895760536194, -0.06312178075313568, 0.019489863887429237, -0.026521017774939537, 0.03764045983552933, -0.007467296440154314, -0.022256508469581604, -0.026679614558815956, -0.020459070801734924, -0.012969747185707092, -0.05321825295686722, 0.03305875509977341, 0.030433088541030884, -0.03623070567846298, 0.015260598622262478, -0.008744887076318264, -0.019736571237444878, -0.0028106991667300463, -0.02167498506605625, 0.024794068187475204, 0.02149876579642296, -0.027860285714268684, 0.0021322546526789665, 0.02065291255712509, 0.04183448106050491, 0.01957797445356846, 0.045112162828445435, -0.004434120375663042, -0.003460508305579424, 0.005674264393746853, -0.045076917856931686, 0.012996179983019829, 0.010828681290149689, 0.004520027432590723, 0.01762193813920021, -0.00799595471471548, 0.010070937685668468, 0.006097190547734499, -0.04750874638557434, -0.008286716416478157, 0.0028239155653864145, 0.022926142439246178, 0.01606239750981331, -0.022150777280330658, 0.023895349353551865, 0.007357159163802862, -0.021904069930315018, -0.05424032732844353, 0.014264958910644054, -0.022785166278481483, -0.0058152396231889725, -0.05808191001415253, 0.02493504248559475, -0.010767004452645779, 0.07045251131057739, 0.05314776673913002, -0.028477052226662636, 0.032441988587379456, 0.05258386582136154, -0.02093486301600933, 0.008163362741470337, -0.05025776848196983, 0.01994803547859192, 0.035138145089149475, -0.08303457498550415, -0.004165385849773884, 0.012582064606249332, -0.026767725124955177, 0.04606374725699425, -0.014635019935667515, 0.04194021224975586, 0.012934503145515919, -0.0395083874464035, -0.009031243622303009, -0.025076018646359444, -0.025780895724892616, 0.003896651091054082, 0.04525313898921013, -0.027014432474970818, -0.02911144308745861, 0.05727130174636841, -0.007740436587482691, -0.05025776848196983, 0.031243696808815002, -0.035508207976818085, -0.0921274945139885, 0.07281385362148285, 0.0653069019317627, 0.06012605503201485, -0.0018602159107103944, -0.013762733899056911, 0.002103618811815977, -0.011374961584806442, -0.021269679069519043, 0.009189841337502003, 0.020089009776711464, 0.044301554560661316, 0.03304113447666168, 0.03536723181605339, 0.005449584685266018, 0.00016410430544055998, -0.02874138206243515, -0.001191683579236269, 0.0005011238972656429, -0.0612538605928421, 0.06488397717475891, 0.002092605223879218, 0.04694484546780586, 0.043843384832143784, -0.029340527951717377, -0.018344437703490257, 0.025357969105243683, -0.007771275006234646, 0.01578044518828392, -0.058610569685697556, 0.012264869175851345, -0.09367822855710983, -0.03989607095718384, -0.016626298427581787, 0.020635290071368217, -0.013956575654447079, 0.05670739710330963, -0.03127894178032875, -0.002058462705463171, -0.006863744929432869, 0.025481322780251503, 0.03258296474814415, 0.00041439090273343027, 0.042539358139038086, -0.08317554742097855, 0.07436458021402359, -0.014626208692789078, 0.016247427091002464, -0.00233490695245564, 0.02269705757498741, 0.08493774384260178, 0.03735851123929024, 0.012582064606249332, 0.008361609652638435, -0.013031424023211002, 0.008625938557088375, 0.006894583348184824, 0.033094000071287155, -0.009286761283874512, 0.004850438795983791, 0.006269004661589861, -0.016247427091002464, 0.013251697644591331, -0.0013623961713165045, 0.019243156537413597, -0.016326725482940674, 0.018961206078529358, -0.009383682161569595, 0.031860463321208954, 0.026521017774939537, 0.040248509496450424, -0.050469230860471725, -0.020670533180236816, -0.012370601296424866, 0.011480692774057388, -0.01889071799814701, -0.0006277815555222332, 0.008418881334364414, -0.001367902965284884, 0.03788716718554497, -0.031243696808815002, 0.012652551755309105, -0.018820229917764664, 0.016582245007157326, 0.010581973940134048, 0.052478134632110596, -0.04468923807144165, -0.06488397717475891, -0.0000400623757741414, 0.014441179111599922, 0.07062873244285583, -0.019560351967811584, 0.009806608781218529, -0.079016774892807, 0.014229715801775455, 0.04902423173189163, -0.00972731038928032, -0.0600908100605011, -0.044865455478429794, -0.0446539930999279, 0.04010753333568573, -0.04772020876407623, 0.014185660518705845, -0.02313760481774807, 0.013304563239216805, -0.037464242428541183, -0.018943583592772484, 0.020741021260619164, 0.030221624299883842, -0.04655716195702553, 0.007740436587482691, -0.02403632365167141, 0.029340527951717377, -0.05032825842499733, 0.023701507598161697, -0.028018882498145103, 0.010009260848164558, 0.0027093731332570314, 0.10763479769229889, 0.08225920796394348, 0.011903619393706322, -0.054028864949941635, -0.006894583348184824, -0.009833041578531265, -0.010722950100898743, -0.024212542921304703, 0.004489189013838768, 0.053253497928380966, -0.02976345457136631, -0.03608972951769829, 0.01177145540714264, 0.008797752670943737, -0.0471915528178215, -0.019965656101703644, 0.028018882498145103, 0.023296203464269638, 0.015498494729399681, -0.04694484546780586, 0.05596727877855301, -0.062628373503685, 0.04243362694978714, -0.006022297311574221, -0.029446259140968323, -0.09311432391405106, 0.0013007193338125944, -0.03221290558576584, 0.0007191953482106328, 0.05536813288927078, -0.05730654299259186, -0.048460330814123154, -0.09121115505695343, 0.03395747393369675, -0.08994237333536148, -0.025357969105243683, -0.020335717126727104, -0.04874228313565254, 0.04148204252123833, -0.026521017774939537, 0.014485233463346958, 0.062487393617630005, 0.0061632730066776276, -0.029781077057123184, -0.07492848485708237, 0.03679460659623146, 0.030556442216038704, -0.011198742315173149, 0.003793122246861458, -0.007907845079898834, 0.061993978917598724, -0.033340707421302795, 0.060196541249752045, -0.015110812149941921, 0.05720081180334091, 0.0021355587523430586, 0.08881457149982452, -0.029781077057123184, -0.006784446537494659, -0.01762193813920021, -0.05956215411424637, 0.00030728254932910204, -0.029164308682084084, -0.03242436796426773, -0.03866253420710564, -0.03728802129626274, -0.027137786149978638, -0.008674398995935917, 0.003057406283915043, -0.010670083574950695, -0.012361790053546429, 0.03672412037849426, -0.022397484630346298, -0.013806789182126522, 0.030344977974891663, 0.04620472341775894, -0.004242481663823128, 0.008291122503578663, 0.05106837674975395, -0.02072340063750744, 0.02775455266237259, -0.005009036045521498, -0.0029054172337055206, 0.010537919588387012, 0.014582154341042042, 0.018044864758849144, 0.023983458057045937, -0.009366060607135296, -0.043561432510614395, -0.025216994807124138, 0.04120009392499924, 0.0036102947778999805, -0.004916520789265633, 0.005392313003540039, 0.0038481908850371838, -0.0075818393379449844, -0.020229985937476158, 0.015022702515125275, -0.008427692577242851, 0.015727579593658447, -0.03524387627840042, 0.03517339006066322, 0.046592406928539276, -0.0791577473282814, 0.025005530565977097, -0.03393985331058502, 0.03193095326423645, -0.016608677804470062, 0.05639020353555679, 0.03045070916414261, -0.033375952392816544, -0.021005351096391678, 0.02477644570171833, 0.01901407167315483, 0.011489504016935825, 0.04631045460700989, 0.030750282108783722, -0.099740169942379, -0.04289180040359497, 0.014212093316018581, -0.01183313224464655, 0.07323677837848663, -0.0017093280330300331, 0.007176534738391638, 0.0408124104142189, 0.016361970454454422, -0.036406926810741425, 0.011031333357095718, 0.04655716195702553, 0.07824140787124634, 0.02056480199098587, -0.022626569494605064, 0.007780085783451796, -0.03434515744447708, 0.02322571538388729, -0.03237150236964226, 0.008603911846876144, 0.05730654299259186, -0.04338521137833595, 0.05004630610346794, 0.015022702515125275, -0.02796601690351963, -0.004528838209807873, -0.02220364287495613, 0.010608406737446785, 0.035702046006917953, -0.005088334903120995, 0.0040684649720788, -0.0017082266276702285, -0.03282967209815979, -0.014740752056241035, 0.024723580107092857, -0.016952304169535637, 0.08077896386384964, 0.028759004548192024, 0.025164129212498665, -0.016220994293689728, 0.06428483128547668 ]
7,416
pathlib
__new__
null
def __new__(cls, *args, **kwargs): if cls is Path: cls = WindowsPath if os.name == 'nt' else PosixPath self = cls._from_parts(args) if not self._flavour.is_supported: raise NotImplementedError("cannot instantiate %r on your system" % (cls.__name__,)) return self
(cls, *args, **kwargs)
[ 0.05543939769268036, -0.054162152111530304, 0.00422009127214551, -0.016664613038301468, -0.027805998921394348, -0.05181477963924408, 0.015482298098504543, 0.06752146035432816, 0.00024137152649927884, 0.020643062889575958, 0.06838446110486984, 0.07732518762350082, -0.028686264529824257, 0.03538317605853081, -0.011529738083481789, 0.017165156081318855, 0.012401372194290161, 0.003249211236834526, -0.028133941814303398, -0.018986094743013382, 0.028996946290135384, 0.0561988428235054, 0.012090690433979034, 0.01651790365576744, 0.04435842111706734, 0.0990728959441185, 0.009890029206871986, 0.024768223986029625, 0.025941910222172737, -0.07815366983413696, -0.01907239481806755, 0.06348259747028351, 0.011546998284757137, 0.05799389258027077, 0.018917055800557137, -0.01613818109035492, -0.013730399310588837, 0.009104696102440357, 0.006304246839135885, -0.053609829396009445, -0.007167250849306583, -0.00015830736083444208, -0.006187741179019213, -0.02557944878935814, 0.014593402855098248, 0.017191046848893166, -0.0015372264897450805, -0.008034570142626762, -0.03921491652727127, 0.07249236106872559, -0.006006509996950626, 0.0066537633538246155, -0.01351464819163084, -0.015853390097618103, -0.047189075499773026, 0.11087879538536072, 0.06475984305143356, 0.05996154248714447, -0.06793569773435593, 0.0012405687011778355, -0.036211661994457245, 0.03175855800509453, 0.08139856904745102, -0.02214469201862812, -0.025613969191908836, -0.011745489202439785, -0.022783314809203148, -0.03873163461685181, 0.0018252541776746511, 0.07987967878580093, -0.01351464819163084, -0.014256831258535385, -0.015542708337306976, -0.004655908327549696, 0.09216886013746262, 0.030722953379154205, -0.0844363421201706, 0.01685447432100773, 0.061791110783815384, 0.02823750115931034, -0.026822173967957497, -0.01467107329517603, -0.004608443006873131, -0.030153371393680573, 0.021471546962857246, 0.014558883383870125, -0.03655686229467392, -0.06448368728160858, 0.040492162108421326, 0.053747911006212234, -0.06120426580309868, 0.029825430363416672, -0.05247066169977188, -0.008595523424446583, 0.05074465647339821, -0.046774834394454956, 0.023283855989575386, 0.000771310122217983, 0.03993983939290047, -0.0030593504197895527, -0.01912417635321617, -0.03510701656341553, -0.03203472122550011, -0.03576289862394333, 0.008694768883287907, 0.02110908553004265, 0.042770493775606155, 0.02906598523259163, -0.056164320558309555, -0.033605389297008514, -0.025596708059310913, 0.08740507811307907, 0.0033225666265934706, 0.03534865751862526, -0.08215801417827606, 0.0015480139991268516, -0.0267876535654068, -0.038213830441236496, 0.07042115181684494, -0.011659188196063042, -0.05982346087694168, 0.07256140559911728, -0.05726896598935127, 0.08402210474014282, 0.05599172040820122, 0.021195385605096817, -0.0004735736292786896, -0.07076635211706161, 0.023128516972064972, -0.009242776781320572, 0.031016375869512558, 0.049605488777160645, -0.011477957479655743, -0.008668878115713596, -0.01348875742405653, 0.030360491946339607, -0.06976526975631714, 0.0723542869091034, -0.022489892318844795, 0.05505967512726784, -0.028807085007429123, -0.024353982880711555, 0.05934017896652222, -0.004914809484034777, -0.015611748211085796, 0.0555429570376873, 0.041562288999557495, -0.023232076317071915, -0.027339978143572807, 0.06520860642194748, -0.025096166878938675, -0.017691588029265404, 0.04756879806518555, 0.04225269332528114, 0.03628070279955864, -0.04656771197915077, -0.00028047640807926655, -0.018174871802330017, 0.021454287692904472, 0.020591283217072487, -0.03117171674966812, -0.04180392995476723, 0.01225466188043356, -0.04642963409423828, 0.022386332973837852, 0.016474753618240356, -0.048535361886024475, -0.07587534189224243, 0.014981755055487156, -0.01023523136973381, 0.025130685418844223, -0.019935399293899536, 0.021506067365407944, 0.007961214520037174, -0.01879623346030712, 0.014869564212858677, 0.034399352967739105, 0.03255252167582512, 0.02972186915576458, -0.029152287170290947, 0.05726896598935127, -0.0026515808422118425, -0.0214370284229517, -0.006299931555986404, 0.06241247430443764, 0.06914390623569489, 0.0021014155354350805, 0.03515879809856415, 0.012107950635254383, 0.027650658041238785, -0.04850084334611893, 0.03334648907184601, 0.06562285125255585, 0.04749975726008415, 0.017596658319234848, -0.0428740568459034, 0.0016343144234269857, -0.02390521951019764, -0.022800574079155922, 0.11792091280221939, 0.0016483382787555456, 0.07815366983413696, 0.030067071318626404, -0.02758161909878254, -0.0234046783298254, -0.011339876800775528, 0.010778924450278282, 0.01981457881629467, -0.038489993661642075, 0.009130585938692093, 0.0026580533012747765, -0.061791110783815384, 0.012996844947338104, 0.024457542225718498, -0.008940724655985832, 0.005091725382953882, 0.0197282787412405, 0.04311569780111313, 0.0009902975289151073, 0.02892790548503399, 0.09810633212327957, 0.06955815106630325, -0.04525594785809517, 0.029739128425717354, -0.005687198601663113, -0.027650658041238785, -0.023663578554987907, -0.02204113081097603, -0.024733703583478928, -0.0051521360874176025, -0.02963556908071041, -0.05916757881641388, -0.016095031052827835, 0.03155143931508064, -0.016422972083091736, -0.011158646084368229, 0.03907683491706848, 0.0615839883685112, -0.042114611715078354, -0.012530823238193989, 0.019244996830821037, 0.012073430232703686, 0.001567431609146297, 0.018019530922174454, 0.008021625690162182, -0.009475787170231342, -0.0790511965751648, -0.010917005129158497, 0.08540290594100952, -0.013195335865020752, 0.015249286778271198, 0.020643062889575958, -0.04829372093081474, -0.0000022291469576884992, -0.015275176614522934, 0.05813197046518326, -0.06831542402505875, -0.05243614315986633, 0.011080975644290447, 0.0000036281578559282934, -0.015197506174445152, 0.03783411160111427, 0.04349541664123535, 0.04038860276341438, -0.019883619621396065, -0.03357086703181267, -0.009354966692626476, -0.038351912051439285, -0.00009277296339860186, 0.00519960094243288, 0.00850922241806984, 0.045601148158311844, -0.02093648537993431, 0.0682809054851532, -0.043046656996011734, -0.03293224424123764, -0.06620968878269196, -0.05851169303059578, -0.010209341533482075, -0.008427237160503864, 0.00016235269140452147, -0.017406797036528587, 0.020246081054210663, 0.0021197544410824776, -0.008837164379656315, 0.0012750888708978891, -0.0019385234918445349, -0.01762254908680916, -0.022990435361862183, -0.00017138726252596825, -0.028686264529824257, 0.041942011564970016, -0.04473814368247986, 0.009389487095177174, 0.09389486908912659, 0.003594412934035063, -0.0650014877319336, -0.03717822581529617, 0.024785485118627548, -0.07442549616098404, 0.00944126769900322, -0.04042312130331993, -0.018951574340462685, 0.053092025220394135, 0.008854424580931664, -0.022489892318844795, -0.018917055800557137, 0.0032060611993074417, 0.023594537749886513, 0.044254861772060394, 0.010727143846452236, -0.00029476991039700806, -0.024267680943012238, -0.0200907401740551, 0.028807085007429123, 0.05167669802904129, 0.001210363581776619, -0.028530923649668694, -0.01869267411530018, 0.009018395096063614, -0.02381891943514347, 0.05409311130642891, -0.05540487915277481, -0.004548032768070698, -0.013436977751553059, 0.014912715181708336, 0.002274016384035349, -0.003915882203727961, -0.02930762805044651, 0.041286125779151917, -0.03735082596540451, 0.061100706458091736, 0.041562288999557495, -0.004461732227355242, -0.00888894498348236, -0.014532992616295815, 0.012349591590464115, -0.021333467215299606, -0.02991173043847084, -0.01637982204556465, 0.06279219686985016, 0.037419866770505905, -0.04739619791507721, -0.015016275458037853, 0.00923414621502161, -0.017191046848893166, 0.010088521055877209, -0.006010825280100107, 0.051607657223939896, -0.0435299389064312, -0.025009864941239357, -0.038213830441236496, -0.05947825685143471, -0.0301015917211771, 0.026010951027274132, -0.011400287039577961, -0.02892790548503399, 0.03443387150764465, -0.00234952918253839, -0.0709044337272644, 0.031931161880493164, 0.02069484442472458, -0.025009864941239357, 0.0234046783298254, -0.02028060145676136, -0.03603906184434891, 0.03293224424123764, 0.012116581201553345, -0.05657856538891792, 0.04000888019800186, 0.0004145117709413171, -0.06006510183215141, 0.008798329159617424, -0.03652234375476837, 0.05564652010798454, 0.019037876278162003, 0.027219155803322792, 0.0003743281413335353, -0.019244996830821037, 0.03203472122550011, 0.006891089491546154, 0.027892300859093666, 0.026546012610197067, 0.007132730912417173, 0.019987180829048157, 0.032069239765405655, 0.047844961285591125, 0.031327057629823685, 0.05364434793591499, 0.0071801962330937386, -0.034209493547677994, 0.006153220776468515, 0.03427853062748909, -0.028858864679932594, 0.045566629618406296, -0.005575007759034634, -0.025803828611969948, 0.055508438497781754, 0.004209303762763739, 0.07014498859643936, -0.007456357590854168, -0.033191148191690445, -0.023870699107646942, 0.01995266042649746, -0.029877210035920143, -0.034347571432590485, 0.06524312496185303, -0.0020561078563332558, -0.01385984942317009, -0.033139366656541824, 0.04843180254101753, -0.014895454980432987, -0.04408226162195206, 0.028341062366962433, 0.010925634764134884, 0.0214370284229517, -0.000971419271081686, -0.06386232376098633, 0.034451134502887726, -0.031741298735141754, -0.05512871593236923, 0.044496502727270126, -0.02828928269445896, -0.002841441659256816, 0.06634777039289474, 0.048811525106430054, -0.02217921055853367, -0.007572862785309553, 0.038628075271844864, -0.027219155803322792, -0.019969919696450233, 0.034951675683259964, -0.07124963402748108, 0.018848014995455742, 0.0132125960662961, -0.026597794145345688, -0.01141754724085331, -0.010571802966296673, -0.012013019993901253, -0.0153959970921278, -0.07649670541286469, -0.07525397837162018, 0.03724726662039757, 0.05433475226163864, 0.0022373388055711985, -0.08995956927537918, 0.011521107517182827, -0.017881449311971664, 0.013635468669235706, -0.005946099758148193, 0.010252491571009159, 0.04135516658425331, 0.013833959586918354, 0.011616038158535957, -0.00453508784994483, -0.06955815106630325, -0.02000444009900093, 0.025872869417071342, -0.002435829723253846, 0.017225567251443863, -0.02752983756363392, 0.04428938403725624, 0.015249286778271198, -0.08726699650287628, -0.02469918318092823, -0.012910544872283936, 0.016284892335534096, -0.0153959970921278, -0.0012653800658881664, -0.03572838008403778, -0.0005560984136536717, -0.001998933730646968, -0.007417522370815277, 0.014722853899002075, -0.046533193439245224, 0.003145650727674365, -0.007969845086336136, -0.011840419843792915, -0.009311816655099392, -0.01962471939623356, -0.027616139501333237, 0.011089605279266834, -0.00944126769900322, 0.056164320558309555, -0.02623533084988594, -0.010036740452051163, 0.0354522168636322, -0.0024401447735726833, 0.011210426688194275, 0.024716444313526154, 0.046774834394454956, 0.08554098755121231, -0.05982346087694168, 0.053609829396009445, 0.026062730699777603, 0.052815865725278854, -0.0032535262871533632, 0.009173735976219177, -0.03182759881019592, -0.00453508784994483, 0.015818869695067406, -0.025372328236699104, 0.00029045488918200135, -0.009691538289189339, 0.014187791384756565, 0.014282722026109695, -0.01655242219567299, 0.010856594890356064, 0.008379772305488586, -0.040216002613306046, -0.027892300859093666, -0.04591182991862297, -0.014524362981319427, -0.028720784932374954, 0.02055676281452179, 0.0338125079870224, -0.07442549616098404, -0.021454287692904472, -0.02469918318092823, 0.015896540135145187, 0.00847901776432991, 0.003087397897616029, -0.003782116575166583, -0.08505770564079285, -0.04822468385100365, -0.0023948370944708586, 0.033519089221954346, 0.027270937338471413, 0.0990038588643074, 0.030256932601332664, 0.021247167140245438, -0.01649201288819313, -0.009225516580045223, 0.03655686229467392, 0.0374889075756073, 0.05457639321684837, -0.0762205421924591, 0.02047046273946762, 0.05233258381485939, -0.021419767290353775, 0.0024552473332732916, -0.0059072645381093025, -0.018968835473060608, 0.035417698323726654, -0.024250421673059464, -0.06168755143880844, 0.042770493775606155, -0.006170480977743864, 0.014524362981319427, -0.012806984595954418, 0.033415526151657104, -0.03800671175122261, -0.02261071279644966, 0.049053166061639786, 0.012349591590464115, 0.03310484439134598, 0.040077921003103256, -0.04629155248403549, -0.049985211342573166, -0.010114410892128944, -0.03811027109622955, -0.01132261659950018, -0.003624618286266923, 0.03628070279955864, -0.06375876069068909, -0.001114354352466762, -0.001460634870454669, -0.00747793260961771, -0.016500642523169518, -0.02796133980154991, -0.003052877727895975, 0.03060213290154934, 0.0067745838314294815, 0.04708551615476608, -0.020435942336916924, 0.05471447482705116, 0.03838643431663513, 0.007771354168653488, 0.003842526813969016, -0.01649201288819313, -0.02683943510055542, 0.03194842115044594, -0.09016669541597366, -0.050123292952775955, -0.03921491652727127, -0.05958181992173195, -0.007710943929851055, -0.01051139272749424, -0.02102278545498848, -0.04059572517871857, 0.02702929638326168, -0.014627923257648945, 0.03410593047738075, -0.024440282955765724, -0.06617517024278641, -0.04977808892726898, -0.04004340246319771, -0.054679956287145615, 0.038351912051439285, -0.02730545774102211, -0.0515386201441288, 0.021178126335144043, -0.026442453265190125, 0.011987130157649517, 0.04964001104235649, -0.016811324283480644, -0.0040755379013717175, 0.013972040265798569, -0.03510701656341553, 0.005915894638746977, 0.03652234375476837, 0.019452117383480072, 0.017052965238690376, 0.028254762291908264, 0.018157610669732094, 0.048259202390909195, -0.04587731137871742, 0.0200907401740551, -0.019417596980929375, -0.014645183458924294, -0.054127633571624756, -0.02628711238503456, 0.006049660500138998, -0.0023797345347702503, -0.04138968884944916, 0.019503897055983543, -0.00028587019187398255, 0.008017309941351414, 0.00734848203137517, -0.04801756143569946, 0.04964001104235649, -0.04125160723924637, -0.026804914698004723, 0.004200673662126064, -0.02985995076596737, -0.051745738834142685, -0.015033535659313202, 0.010425092652440071, 0.07884407788515091, 0.03669494390487671, -0.07214716076850891, -0.005203916225582361, -0.02069484442472458, -0.019037876278162003, -0.07194004207849503, -0.07842983305454254, -0.013178076595067978, -0.014455322176218033, 0.01874445378780365, 0.008345251902937889, 0.03679850324988365, 0.029549269005656242, -0.006304246839135885, -0.030118850991129875, -0.015637638047337532, -0.005130560602992773, -0.021920310333371162, -0.01532695721834898, 0.03717822581529617, 0.022576194256544113, -0.026666833087801933, 0.01600009948015213, 0.03213828057050705, 0.029100505635142326, 0.04311569780111313, 0.017139265313744545, 0.03603906184434891, -0.047844961285591125, -0.0240950807929039, -0.010261121205985546, -0.000971419271081686, 0.009648388251662254, -0.023732619360089302, -0.01188356988132, -0.04394418001174927, -0.023974260315299034, -0.006925609894096851, -0.015439147129654884, 0.03538317605853081, 0.04004340246319771, -0.036073580384254456, -0.0029795225709676743, -0.03377798944711685, -0.02963556908071041, 0.043564457446336746, 0.04404773935675621, 0.008043200708925724, 0.03811027109622955, -0.013195335865020752, -0.07918927818536758, 0.01962471939623356, 0.022852355614304543, 0.0327596440911293, 0.024353982880711555, 0.0033570867963135242, 0.003639720845967531, 0.00353616033680737, -0.07553014159202576, 0.0009730373858474195, -0.012996844947338104, 0.03367443010210991, 0.0065329428762197495, -0.04808660224080086, -0.0023042215034365654, 0.005423982162028551, -0.010079890489578247, -0.03959463909268379, 0.032673344016075134, 0.006131645757704973, -0.01034742221236229, -0.005971990060061216, 0.02195483073592186, 0.0615839883685112, -0.04283953458070755, 0.02349097840487957, 0.0043689594604074955, 0.060582902282476425, -0.01921047642827034, -0.01865815371274948, -0.060444824397563934, 0.03464099392294884, -0.029238587245345116, 0.04453102499246597, -0.007987105287611485, -0.01646612212061882, -0.008815589360892773, -0.026856694370508194, -0.014990385621786118, 0.03452017158269882, -0.021695928648114204, -0.05647500231862068, 0.014817784540355206, -0.025320546701550484, -0.026615053415298462, 0.02055676281452179, -0.06707269698381424, -0.003445544745773077, -0.022334551438689232, 0.018433772027492523, 0.05599172040820122, -0.02977364882826805, 0.004317179322242737, -0.008310731500387192, 0.004427212290465832, -0.0014056182699277997, 0.010019480250775814, 0.01929677650332451, 0.01592242904007435, 0.00018595047004055232, 0.045980870723724365, -0.000792885257396847, -0.014308611862361431, 0.012496302835643291, 0.056026242673397064, 0.0361081026494503, -0.09140942245721817, -0.020349642261862755, -0.05312654748558998, -0.004334439057856798, -0.026149030774831772, -0.06434560567140579, -0.02307673543691635, 0.015128466300666332, 0.014740114100277424, 0.00844018254429102, 0.022731533274054527, 0.027270937338471413, 0.008000049740076065 ]
7,417
pathlib
__reduce__
null
def __reduce__(self): # Using the parts tuple helps share interned path parts # when pickling related paths. return (self.__class__, tuple(self._parts))
(self)
[ 0.012321490794420242, -0.011523758992552757, -0.04567882791161537, 0.033886268734931946, -0.006147739011794329, -0.05608402565121651, 0.019388355314731598, 0.002089710906147957, 0.026446549221873283, -0.014385188929736614, 0.06666264683008194, 0.05702049657702446, 0.002885275287553668, 0.03780556097626686, 0.0072272783145308495, 0.019769879058003426, -0.02202433906495571, 0.012642317451536655, -0.016752371564507484, 0.07734531909227371, -0.010804065503180027, 0.0118359150364995, 0.040268123149871826, -0.00559713039547205, 0.002486409153789282, 0.03282840549945831, 0.08324159681797028, -0.028943797573447227, 0.035759203135967255, -0.0569511279463768, -0.018712017685174942, 0.023394357413053513, -0.021209266036748886, -0.03704250976443291, 0.03034850023686886, 0.00587460258975625, 0.0006730863824486732, 0.08844419568777084, -0.0019423039630055428, -0.034077029675245285, 0.014168414287269115, -0.04786391928792, -0.05396830290555954, -0.048210758715867996, 0.029342664405703545, 0.006529262755066156, 0.022926123812794685, 0.010726027190685272, 0.029065191745758057, -0.024521587416529655, 0.02219776064157486, -0.028857087716460228, -0.023082202300429344, 0.018521254882216454, -0.016448887065052986, 0.05885874852538109, 0.03673035651445389, 0.032533593475818634, -0.0602114237844944, 0.02707086130976677, -0.0024690672289580107, 0.02233649604022503, 0.09836382418870926, 0.02207636646926403, -0.016769714653491974, -0.03536033630371094, -0.06041952595114708, 0.003394696395844221, -0.03679972514510155, 0.09045586735010147, -0.023377016186714172, -0.050153061747550964, 0.005107218865305185, -0.027955302968621254, 0.01765415631234646, 0.019388355314731598, 0.006351507268846035, 0.0173246581107378, 0.09933497756719589, -0.02365448698401451, -0.04158611595630646, -0.025770211592316628, -0.0982944518327713, -0.03437184542417526, 0.003678671782836318, 0.0033405027352273464, 0.007747538387775421, -0.06069700047373772, -0.094687320291996, 0.027955302968621254, -0.06437350064516068, 0.094340480864048, -0.04973685368895531, 0.04543603956699371, 0.008120391517877579, -0.01109888032078743, -0.04581756517291069, -0.008957142941653728, -0.00514623848721385, -0.03359145298600197, 0.00880540069192648, -0.02524995245039463, -0.08865230530500412, -0.015000829473137856, 0.008228778839111328, -0.0350828655064106, 0.012971815653145313, -0.022735361009836197, -0.028961138799786568, -0.008592961356043816, 0.009243286214768887, 0.05559845268726349, -0.03291511535644531, 0.0790795162320137, -0.06069700047373772, -0.009581455029547215, -0.030782049521803856, -0.051644474267959595, 0.04137801006436348, -0.02377588115632534, -0.01272902823984623, 0.05233815684914589, -0.07380755245685577, 0.06506718695163727, -0.008272133767604828, 0.019284304231405258, 0.04484641179442406, -0.010145070031285286, -0.03215206786990166, -0.06822342425584793, 0.019943300634622574, 0.03470133990049362, -0.027556437999010086, -0.03320993110537529, -0.0351695753633976, 0.03475336730480194, -0.0068197413347661495, -0.002334666671231389, -0.019648484885692596, 0.05809570103883743, -0.005774885881692171, -0.004586958792060614, 0.027417702600359917, 0.035828571766614914, 0.000530014862306416, -0.006958477199077606, 0.05247689038515091, 0.04595629870891571, -0.024816401302814484, 0.04647655785083771, -0.03282840549945831, 0.010743369348347187, 0.03908886760473251, 0.021434711292386055, -0.014983488246798515, -0.017177250236272812, -0.03359145298600197, 0.03362613916397095, 0.011671165935695171, -0.06589959561824799, -0.020931793376803398, -0.054453879594802856, 0.012252123095095158, -0.02537134662270546, 0.04231448099017143, 0.010231779888272285, 0.023411700502038002, -0.042106375098228455, -0.02356777712702751, -0.04245321452617645, 0.0017287805676460266, -0.017792891710996628, -0.02037684991955757, 0.027989987283945084, -0.07304450124502182, 0.0020170912612229586, -0.008038016967475414, 0.03204801678657532, -0.0019878267776221037, -0.005185258109122515, 0.03218675032258034, -0.05049990490078926, -0.04130864515900612, 0.019925957545638084, 0.059552427381277084, 0.052858415991067886, 0.024226773530244827, -0.00469534657895565, 0.03922760486602783, -0.00800766795873642, -0.060974471271038055, 0.004877437371760607, -0.0011066363658756018, 0.029446715489029884, -0.006377520505338907, -0.018469229340553284, -0.01907620020210743, -0.0008633064571768045, -0.009416705928742886, 0.09198196977376938, -0.09114955365657806, -0.02531931921839714, 0.013760876841843128, 0.03218675032258034, 0.0071275620721280575, 0.02714022994041443, 0.0037198590580374002, -0.005761879496276379, -0.00951208733022213, 0.06069700047373772, 0.016483571380376816, -0.00042433704948052764, 0.008142068982124329, 0.01765415631234646, 0.03964381292462349, -0.05715923011302948, 0.016813069581985474, 0.013101880438625813, 0.04252258315682411, 0.022596625611186028, 0.019423039630055428, 0.007829912938177586, 0.053239937871694565, 0.008337166160345078, -0.037458717823028564, -0.07963446527719498, -0.042106375098228455, -0.0286489836871624, -0.014688673429191113, -0.03995596617460251, 0.027937961742281914, -0.08122992515563965, 0.015460392460227013, -0.018278468400239944, 0.025683501735329628, 0.06881305575370789, 0.015269630588591099, -0.003485742025077343, 0.011879269964993, 0.009017840027809143, -0.0271922554820776, -0.01881607063114643, -0.004977154079824686, -0.005276303272694349, 0.060870420187711716, -0.032759036868810654, 0.016570281237363815, -0.003633148968219757, 0.05036116763949394, 0.001720109605230391, 0.028805062174797058, 0.07644353806972504, -0.019457723945379257, -0.017081869766116142, 0.023082202300429344, 0.0015997994923964143, -0.022596625611186028, -0.023238278925418854, -0.018313152715563774, -0.007409369572997093, 0.03315790370106697, -0.0075264279730618, 0.057922277599573135, -0.0021471562795341015, -0.03166649118065834, -0.005310987588018179, 0.014532595872879028, -0.00022016211005393416, -0.07769215852022171, 0.053205255419015884, 0.0852532684803009, 0.016821740195155144, -0.023012833669781685, 0.05924027040600777, -0.05691644176840782, -0.02214573323726654, -0.0030847082380205393, 0.0049164569936692715, -0.016362177208065987, -0.0149661460891366, -0.03301916643977165, 0.007010503206402063, -0.02396664395928383, -0.0301057118922472, -0.002306486014276743, 0.001026971498504281, 0.009338666684925556, -0.026099709793925285, -0.005076870322227478, -0.0001494392636232078, 0.04338968172669411, 0.006793728563934565, -0.03459728881716728, -0.024590956047177315, 0.11258426308631897, 0.018659992143511772, -0.07332197576761246, -0.030920784920454025, 0.07339134067296982, 0.0028570943977683783, -0.03530831262469292, -0.014506583102047443, 0.016622306779026985, 0.0014122891006991267, 0.032325487583875656, -0.02831948548555374, 0.024747034534811974, -0.004938134457916021, 0.008241785690188408, 0.053205255419015884, -0.008809735998511314, -0.02035950869321823, -0.0016832578694447875, 0.001067616860382259, -0.017827576026320457, 0.025735527276992798, -0.005601466167718172, 0.06787658482789993, -0.011202932335436344, 0.04543603956699371, -0.043597787618637085, 0.024261457845568657, -0.036973144859075546, 0.03369550406932831, 0.03353942930698395, 0.0006248539430089295, -0.03804834932088852, -0.0266719963401556, 0.0057835569605231285, 0.007795229088515043, -0.08518390357494354, 0.014350504614412785, -0.0067113540135324, 0.05063863843679428, -0.02509387396275997, 0.031215598806738853, 0.08615505695343018, -0.035759203135967255, 0.0141077172011137, -0.03804834932088852, 0.053031835705041885, 0.008471567183732986, -0.02061963826417923, 0.034250449389219284, -0.030591288581490517, -0.0053283292800188065, 0.012867763638496399, 0.05500882491469383, 0.05102016404271126, -0.06281272321939468, -0.0011781720677390695, -0.04699682071805, -0.03607136011123657, 0.00035036259214393795, 0.06184156984090805, 0.028076697140932083, -0.08407401293516159, -0.02407069504261017, 0.03503083810210228, 0.034267790615558624, 0.07998130470514297, -0.04175953567028046, -0.012893776409327984, 0.0032212764490395784, 0.06000331789255142, -0.006598630920052528, -0.04730897396802902, 0.010188424959778786, -0.01892012171447277, -0.09219007194042206, -0.05424577370285988, 0.016570281237363815, 0.003086875891312957, -0.04266132041811943, -0.0015651155263185501, 0.05178321152925491, 0.02039419114589691, 0.034059688448905945, -0.05542503297328949, 0.00034033675910905004, -0.021313317120075226, -0.015460392460227013, 0.04165548458695412, 0.021365344524383545, -0.018659992143511772, 0.0732526108622551, 0.061009153723716736, -0.014047020114958286, 0.04179421812295914, 0.05889343097805977, -0.007621808908879757, -0.004250957630574703, -0.02700149454176426, -0.059344325214624405, -0.001821993850171566, -0.004242286551743746, 0.048418864607810974, -0.014723357744514942, -0.013093209825456142, -0.05382956564426422, 0.020342165604233742, -0.037181247025728226, 0.009919623844325542, 0.05414172261953354, -0.010604633018374443, -0.03704250976443291, 0.05532097816467285, 0.056292131543159485, 0.023585120216012, -0.07928762584924698, 0.0017916453070938587, -0.03797898069024086, -0.005610136780887842, -0.01193129550665617, 0.02540602907538414, -0.023134227842092514, 0.03484007716178894, -0.00957278348505497, 0.05240752175450325, -0.0011651655659079552, -0.01038785744458437, 0.011246287263929844, -0.008142068982124329, -0.029724188148975372, -0.011003498919308186, -0.04335499927401543, -0.030677998438477516, 0.03190927952528, 0.011853257194161415, 0.007669499609619379, -0.0016431545373052359, -0.023030174896121025, -0.04748239368200302, -0.02393195964396, -0.0026164741721004248, -0.04945938289165497, 0.017792891710996628, 0.002742203650996089, 0.054557930678129196, 0.0008573451195843518, -0.003002333687618375, 0.024209432303905487, -0.002839752472937107, -0.04900849238038063, 0.07054725289344788, -0.03679972514510155, -0.07692911475896835, 0.011983321979641914, -0.010804065503180027, -0.002436551032587886, 0.018174415454268456, -0.016232112422585487, -0.0070581939071416855, -0.017792891710996628, 0.012503582052886486, 0.0011082622222602367, 0.03334866464138031, -0.05559845268726349, -0.029533425346016884, -0.006516256369650364, 0.04467299208045006, -0.015338999219238758, 0.06777253746986389, 0.012286806479096413, -0.04952875152230263, -0.04092711955308914, 0.01585058867931366, -0.02700149454176426, -0.010769382119178772, -0.05663897097110748, 0.03494412824511528, -0.008302482776343822, -0.03589794039726257, -0.025007164105772972, 0.00435934541746974, 0.06766848266124725, 0.04252258315682411, -0.03203067183494568, -0.021348001435399055, -0.0787326768040657, -0.013119222596287727, -0.0533439926803112, 0.0019390523666515946, -0.019943300634622574, -0.01902417466044426, 0.030591288581490517, 0.002466899575665593, 0.01575520634651184, 0.04800265654921532, -0.016596293076872826, -0.004925128072500229, 0.05102016404271126, -0.07894078642129898, 0.01727263256907463, 0.0174980778247118, 0.08317223191261292, -0.013769547455012798, -0.02696681022644043, -0.025943631306290627, -0.02679339051246643, 0.012087373994290829, -0.05500882491469383, 0.04463830590248108, 0.02535400353372097, -0.006628979463130236, 0.03007102757692337, -0.015399695374071598, -0.024504246190190315, -0.005965647753328085, -0.029065191745758057, -0.01739402674138546, -0.05084674432873726, -0.006828412413597107, 0.04432615265250206, 0.010864762589335442, -0.0134227080270648, -0.0151829207316041, -0.02875303477048874, -0.014255124144256115, -0.01715990900993347, -0.019596459344029427, 0.020012667402625084, 0.013873599469661713, 0.010093043558299541, -0.06881305575370789, -0.035932622849941254, -0.008129062131047249, -0.013873599469661713, 0.007418040651828051, 0.0171512383967638, -0.012876435182988644, -0.024400193244218826, -0.021313317120075226, 0.03631414845585823, -0.003570284228771925, 0.0826866552233696, -0.05507818982005119, 0.018139731138944626, 0.03178788721561432, 0.016717687249183655, 0.00882707815617323, -0.014133729971945286, 0.012122058309614658, 0.019284304231405258, 0.0020658657886087894, 0.021226607263088226, 0.040372174233198166, 0.026255788281559944, 0.023411700502038002, -0.03484007716178894, 0.02561413310468197, -0.003281973535194993, -0.004257461056113243, 0.010179754346609116, 0.06756442785263062, -0.05254625901579857, -0.006420875433832407, -0.053135886788368225, -0.06059294566512108, 0.0032841411884874105, 0.019648484885692596, 0.03227346017956734, -0.016448887065052986, 0.0016767545603215694, 0.014723357744514942, -0.00147407001350075, 0.023446382954716682, 0.026186419650912285, 0.0011846753768622875, -0.016787055879831314, -0.01923227868974209, 0.05982989817857742, -0.01575520634651184, -0.00007410995021928102, 0.03178788721561432, 0.004461229313164949, -0.006100048311054707, -0.005350006744265556, -0.013457391411066055, -0.03995596617460251, 0.037424035370349884, 0.043459050357341766, 0.011575784534215927, -0.008588625118136406, -0.004071034491062164, -0.02044621855020523, 0.023186253383755684, 0.0033405027352273464, -0.024209432303905487, -0.0382564514875412, 0.025995656847953796, -0.002826745854690671, 0.025839580222964287, 0.0409964881837368, 0.005280639044940472, -0.04123927652835846, -0.035585783421993256, 0.0059526413679122925, -0.06909053027629852, -0.04110053926706314, 0.024608297273516655, -0.010405199602246284, 0.03666098788380623, 0.05174852907657623, 0.013153906911611557, -0.050153061747550964, -0.009763546288013458, 0.015495076775550842, -0.024937795475125313, 0.05213005095720291, 0.03137167915701866, 0.009451390244066715, 0.05878937989473343, -0.012373517267405987, 0.00628213956952095, -0.0110208410769701, -0.03978254646062851, 0.00864932220429182, -0.07394628971815109, 0.006017673760652542, -0.04900849238038063, -0.03282840549945831, -0.021174581721425056, 0.026429207995533943, -0.03589794039726257, 0.05865064263343811, -0.0018165744841098785, -0.04793328791856766, 0.07991193234920502, -0.03492678701877594, 0.019700512290000916, -0.04089243710041046, 0.05875469371676445, -0.04175953567028046, 0.01602400839328766, -0.024348167702555656, 0.03451057896018028, 0.00714056845754385, -0.017896944656968117, -0.0025189255829900503, -0.029585450887680054, -0.005501749459654093, -0.04973685368895531, -0.024244116619229317, -0.06146004796028137, -0.04644187539815903, -0.007114555221050978, -0.03017508052289486, -0.0003286850987933576, 0.009139234200119972, -0.021313317120075226, 0.024018669500947, 0.001966149313375354, 0.0005554859526455402, 0.007357343565672636, 0.06014205515384674, 0.031180916354060173, -0.061217259615659714, -0.011827243492007256, 0.02235383726656437, -0.03190927952528, -0.03142370283603668, 0.01883341185748577, -0.008302482776343822, -0.0026836744509637356, 0.0004365306522231549, -0.01274636946618557, 0.00019916202290914953, 0.04148206487298012, -0.024018669500947, -0.013327326625585556, -0.021677499637007713, 0.046684663742780685, -0.026637312024831772, -0.08712621033191681, -0.010171082802116871, 0.04422209784388542, 0.019977983087301254, 0.006681005470454693, -0.05587592348456383, 0.013084539212286472, -0.0022457889281213284, -0.03759745508432388, -0.04075369983911514, 0.027278965339064598, 0.015156907960772514, -0.019908616319298744, 0.022457890212535858, 0.042106375098228455, -0.04162079840898514, 0.07796963304281235, -0.00951208733022213, 0.01742003858089447, -0.008796729147434235, -0.03995596617460251, 0.05993395298719406, 0.006620308384299278, -0.05265031009912491, 0.03933165594935417, -0.04637250676751137, 0.020012667402625084, 0.005727195646613836, -0.0065812887623906136, -0.04595629870891571, 0.02198965661227703, 0.020238114520907402, 0.019457723945379257, 0.029585450887680054, -0.023064859211444855, 0.0222151018679142, 0.0012594627914950252, 0.01926696114242077, 0.020238114520907402, -0.02394930087029934, 0.06357577443122864, -0.04286942258477211, 0.06985357403755188, 0.0007381188916042447, -0.00482541136443615, 0.04654592648148537, -0.03357411175966263, -0.010804065503180027, 0.09191259741783142, 0.01718592271208763, -0.013925625942647457, 0.029377346858382225, 0.06215372681617737, -0.03131965175271034, 0.0007343253237195313, 0.01761080138385296, -0.0118359150364995, 0.04325094819068909, -0.04456894099712372, 0.015338999219238758, 0.07380755245685577, -0.030920784920454025, 0.027885936200618744, -0.02205902338027954, -0.0283888541162014, 0.04397931322455406, -0.028146065771579742, -0.04911254346370697, 0.043701838701963425, 0.05885874852538109, -0.09288375079631805, -0.05972584709525108, 0.03320993110537529, 0.06593428552150726, -0.040302809327840805, 0.00006147603562567383, 0.031042179092764854, 0.027573779225349426, 0.03666098788380623, -0.01740269735455513, 0.0010470232227817178, -0.08178487420082092, 0.02074103243649006, -0.056153394281864166, -0.009113220497965813, -0.04859228432178497, -0.03836050257086754, 0.000647615292109549, -0.029047850519418716, 0.03445855528116226, 0.046615295112133026, 0.011775217950344086, 0.024642981588840485, 0.006355843041092157 ]
7,418
pathlib
__repr__
null
def __repr__(self): return "{}({!r})".format(self.__class__.__name__, self.as_posix())
(self)
[ 0.05731072276830673, -0.022340036928653717, 0.02843584306538105, 0.0523800402879715, 0.06170105189085007, -0.07828299701213837, -0.005610337946563959, 0.03319766744971275, 0.0322689414024353, -0.0502861887216568, -0.0030669004190713167, 0.00649684714153409, -0.012022756040096283, 0.04045860096812248, -0.017628872767090797, 0.048530057072639465, -0.022188063710927963, -0.033653583377599716, -0.0033286316320300102, 0.008966409601271152, -0.00037703034467995167, 0.03031017817556858, 0.043059028685092926, -0.08274087309837341, 0.006252001971006393, 0.05899931117892265, -0.005416150204837322, -0.0005772864678874612, -0.020296843722462654, -0.04164061322808266, -0.07031285762786865, -0.04498402029275894, -0.0023703572805970907, -0.038364749401807785, 0.00505732512101531, 0.007497336715459824, -0.05683791637420654, 0.02419748529791832, -0.03900641202926636, -0.04376823455095291, 0.048530057072639465, 0.016590390354394913, -0.005340163595974445, -0.05315679311752319, -0.024265028536319733, 0.004630956333130598, 0.0689619854092598, 0.01862514019012451, -0.013103453442454338, -0.04376823455095291, 0.015383048914372921, 0.03654107078909874, -0.023032357916235924, -0.010232850909233093, -0.09030575305223465, 0.051265571266412735, 0.04451121389865875, -0.011473963968455791, -0.05204232409596443, 0.02504177950322628, -0.05119802802801132, 0.03650730103254318, 0.034683626145124435, -0.03947921842336655, 0.003915416542440653, -0.03748668357729912, -0.01845628023147583, -0.006509511731564999, -0.006948545109480619, 0.024433886632323265, 0.024788491427898407, -0.034413449466228485, -0.026865456253290176, 0.01572076603770256, 0.007961698807775974, -0.014277022331953049, -0.039681848138570786, 0.028604703024029732, 0.009143711067736149, -0.0161935705691576, -0.005428814794868231, 0.025278182700276375, -0.029904916882514954, -0.01312878169119358, 0.0030457929242402315, -0.04603094607591629, -0.007535329554229975, -0.006332209799438715, -0.07821545749902725, 0.005677881650626659, -0.0038183226715773344, 0.03785817325115204, -0.03670993074774742, 0.05254890024662018, -0.011094031855463982, -0.05190723389387131, 0.003645242191851139, -0.039209045469760895, 0.0357980914413929, -0.05001601576805115, 0.018304308876395226, -0.01703786663711071, -0.04386955127120018, -0.03559546172618866, -0.045895855873823166, 0.022576438263058662, -0.02644330821931362, 0.023859767243266106, -0.049002863466739655, 0.005158640444278717, -0.04572699964046478, 0.09449345618486404, 0.0012991584371775389, -0.04191078618168831, 0.046469978988170624, -0.028013696894049644, -0.019131716340780258, 0.0011619605356827378, 0.06230894476175308, -0.0035819201730191708, -0.03388998657464981, 0.059843603521585464, -0.02561589889228344, -0.0025033336132764816, -0.0681852325797081, 0.03647352755069733, -0.041674382984638214, -0.01299369428306818, 0.015813639387488365, -0.05913439765572548, 0.026510851457715034, 0.022762183099985123, -0.01436145231127739, 0.03157661855220795, 0.05156951770186424, 0.012867050245404243, -0.004846251104027033, 0.05471029505133629, -0.00024550504167564213, 0.12542840838432312, 0.018709570169448853, -0.04332920163869858, 0.030343949794769287, 0.0251430943608284, -0.03728405013680458, 0.021698372438549995, 0.02722005918622017, 0.05373091250658035, -0.022154292091727257, -0.016691705211997032, 0.03833097591996193, 0.022458238527178764, 0.06308569759130478, 0.025024892762303352, 0.005677881650626659, 0.04518665000796318, -0.004875801503658295, -0.03361981362104416, -0.0023661358281970024, -0.03368735685944557, -0.06875935941934586, -0.043835777789354324, 0.026392651721835136, -0.056061163544654846, 0.0072778197936713696, 0.012461788952350616, 0.002254266757518053, -0.05845896154642105, 0.02880733273923397, 0.02060079015791416, 0.0016400424065068364, -0.05096162483096123, -0.03380555659532547, 0.04653752222657204, 0.006501068826764822, 0.05393354222178459, 0.006868336815387011, 0.110028475522995, -0.004525419324636459, -0.03191433846950531, 0.06693568080663681, -0.05805370211601257, -0.06305192410945892, -0.0062857735902071, 0.03402507305145264, 0.00046831968938931823, 0.021580170840024948, 0.004402996506541967, 0.05048881843686104, 0.007510000839829445, -0.015670109540224075, 0.03768931329250336, 0.00658971955999732, 0.031796135008335114, 0.008502047508955002, -0.04755067452788353, -0.021141137927770615, -0.0502861887216568, -0.02088784985244274, 0.017848389223217964, 0.010705656372010708, 0.062376488000154495, -0.013660687021911144, 0.012951480224728584, -0.0015482252929359674, -0.028959305956959724, 0.0020199748687446117, -0.019824039191007614, 0.014589411206543446, -0.0009139489848166704, 0.000673852686304599, -0.031964994966983795, -0.029786715283989906, 0.029989346861839294, 0.025109322741627693, -0.02212052047252655, -0.05170460417866707, -0.00027202119235880673, -0.034227706491947174, 0.029111279174685478, 0.04332920163869858, -0.01464006956666708, 0.0002068521862383932, -0.05025241896510124, -0.07598651945590973, -0.02137754112482071, 0.01557723619043827, 0.035730548202991486, 0.004067389294505119, -0.011094031855463982, 0.04444367066025734, -0.06869181245565414, -0.023218102753162384, 0.02674725465476513, -0.0059607201255857944, 0.028604703024029732, -0.03157661855220795, 0.044308584183454514, -0.02117490954697132, 0.006910551805049181, -0.032235171645879745, 0.0288242194801569, 0.058897994458675385, 0.018000362440943718, 0.09071101993322372, -0.0529203899204731, 0.01670859195291996, 0.06767866015434265, 0.01919925957918167, -0.0165228471159935, 0.03985070809721947, -0.049104176461696625, -0.055115554481744766, -0.023589592427015305, 0.015416820533573627, -0.07456810027360916, -0.0647742822766304, -0.013120339252054691, 0.02098916471004486, 0.06710454076528549, -0.016016269102692604, 0.02777729369699955, 0.011136246845126152, 0.0022183842957019806, 0.01280794944614172, 0.008839764632284641, -0.07754001766443253, 0.007535329554229975, 0.002408350585028529, 0.011642822995781898, 0.07814791053533554, -0.007906819693744183, -0.07625669240951538, 0.0450177900493145, -0.05913439765572548, -0.045254193246364594, -0.037790630012750626, 0.007476229220628738, -0.039209045469760895, -0.06710454076528549, 0.012504003942012787, -0.003478494007140398, 0.01660727523267269, -0.022931043058633804, 0.009920462034642696, -0.029128165915608406, 0.000412385183153674, -0.027186287567019463, -0.01911483146250248, 0.010477696545422077, 0.022255606949329376, 0.02900996431708336, -0.019638294354081154, -0.005352828186005354, 0.06484182924032211, -0.019469434395432472, 0.0029465884435921907, -0.027709750458598137, 0.02176591567695141, -0.01049458235502243, -0.011170018464326859, 0.0014110273914411664, 0.034886255860328674, 0.04613225907087326, -0.06970496475696564, 0.02156328596174717, 0.010241294279694557, 0.038567379117012024, -0.0026574174407869577, 0.026291335001587868, -0.016210457310080528, 0.012976808473467827, 0.029347682371735573, 0.06561858206987381, 0.0025181088130921125, 0.07078566402196884, -0.013187882490456104, -0.008957966230809689, 0.02269463986158371, 0.07544617354869843, -0.04751690477132797, 0.04218095913529396, -0.011195346713066101, 0.04869891703128815, 0.04339674487709999, -0.0344809927046299, -0.02298169955611229, 0.027996810153126717, 0.011921440251171589, 0.07456810027360916, -0.004147597588598728, -0.033653583377599716, 0.011186904273927212, 0.027625320479273796, 0.0335860401391983, 0.03275863081216812, 0.025447040796279907, -0.015079102478921413, -0.04538927972316742, -0.07868826389312744, 0.02543015405535698, 0.02619002014398575, -0.02240758016705513, -0.03812834620475769, -0.05190723389387131, 0.026105590164661407, -0.0024780048988759518, 0.020651446655392647, 0.036372214555740356, -0.04086386039853096, -0.03400819003582001, 0.010190636850893497, -0.03128955885767937, 0.003237870056182146, -0.04076254740357399, -0.02129311114549637, -0.02016175538301468, 0.04302525520324707, -0.006492625921964645, 0.04177569970488548, 0.04376823455095291, -0.021411312744021416, 0.006125357933342457, -0.011186904273927212, -0.05714186280965805, -0.04055991396307945, -0.01262220460921526, 0.006053592544049025, 0.0455581396818161, 0.0037550004199147224, -0.062477804720401764, -0.0013540375512093306, -0.010671884752810001, -0.06450410932302475, -0.037148963660001755, 0.032522231340408325, -0.017915932461619377, 0.019233033061027527, -0.040357284247875214, -0.06389621645212173, 0.01778084598481655, 0.011195346713066101, 0.004196144640445709, 0.02693299949169159, -0.010832300409674644, 0.025548355653882027, 0.020448816940188408, 0.010747871361672878, 0.02674725465476513, 0.0013572036987170577, -0.06203877180814743, 0.0006844063755124807, 0.027338260784745216, 0.025447040796279907, -0.03351849690079689, -0.028587816283106804, 0.025919845327734947, 0.0006395531818270683, -0.047111641615629196, 0.023961082100868225, 0.015670109540224075, -0.006412418093532324, -0.007286262698471546, -0.013610029593110085, -0.020921621471643448, 0.020212413743138313, 0.0397493913769722, -0.011744138784706593, -0.008789107203483582, -0.015974054113030434, -0.001618935028091073, -0.014234808273613453, -0.06487560272216797, -0.0621400848031044, 0.07031285762786865, 0.013246983289718628, -0.03481871262192726, -0.006999202538281679, 0.0676448866724968, -0.00039602696779184043, -0.0668681338429451, 0.022914156317710876, -0.008654019795358181, 0.06761111319065094, 0.012968366034328938, 0.02522752434015274, -0.013989962637424469, 0.024518316611647606, 0.061228249222040176, 0.0317285917699337, -0.01501155924052, 0.01854071021080017, 0.00993734784424305, 0.018287422135472298, 0.04207964614033699, -0.06298438459634781, 0.01779773086309433, -0.030614124611020088, -0.03806080296635628, 0.04839497059583664, 0.015712322667241096, -0.015619451180100441, 0.00487158028408885, 0.0011830679140985012, 0.018574481830000877, 0.009532086551189423, -0.0381958894431591, -0.016674818471074104, 0.007079410832375288, 0.0020769648253917694, 0.02242446504533291, 0.011431749910116196, 0.014344566501677036, -0.024906693026423454, -0.04207964614033699, -0.05910062417387962, -0.02232315018773079, -0.038837555795907974, -0.001709696720354259, -0.010241294279694557, -0.06875935941934586, 0.05481160804629326, 0.012216943316161633, 0.003448943607509136, -0.021225567907094955, -0.026122476905584335, 0.06210631504654884, 0.01516353152692318, -0.07720230519771576, -0.015450592152774334, 0.04343051835894585, 0.025379497557878494, -0.020077327266335487, -0.005048882216215134, -0.04812479391694069, 0.0763917788863182, -0.03313012048602104, -0.017763959243893623, -0.055790990591049194, -0.030445264652371407, -0.056263796985149384, -0.0805794820189476, -0.002568766474723816, 0.023674022406339645, -0.006699478253722191, 0.004635177552700043, 0.043464288115501404, 0.024265028536319733, 0.026038046926259995, 0.0011756803141906857, 0.038938868790864944, 0.10455744713544846, -0.0858478769659996, 0.027979925274848938, 0.05075899511575699, 0.049374353140592575, -0.0198746956884861, -0.030766097828745842, -0.05302170291543007, -0.026156248524785042, -0.008746892213821411, -0.019722722470760345, 0.018608253449201584, -0.03596695140004158, 0.031796135008335114, 0.0010379547020420432, 0.03323143720626831, 0.010722542181611061, 0.002676414093002677, -0.02938145399093628, 0.040627457201480865, -0.033282093703746796, 0.022542666643857956, -0.03198188170790672, -0.01623578555881977, -0.012022756040096283, -0.01740935631096363, -0.03812834620475769, -0.031306445598602295, 0.022086748853325844, 0.011397977359592915, 0.0036621280014514923, -0.04393709450960159, -0.03569677844643593, -0.04454498738050461, 0.034497879445552826, 0.00748889334499836, 0.05525064095854759, -0.007615537848323584, 0.08834699541330338, 0.004402996506541967, 0.017156068235635757, 0.003284306265413761, -0.000695487717166543, -0.005732760764658451, 0.11347319930791855, -0.0821329802274704, 0.04748313128948212, -0.012951480224728584, 0.000770418846514076, 0.02277906984090805, -0.04653752222657204, 0.008058792911469936, -0.025582127273082733, -0.022931043058633804, -0.05801992863416672, 0.02691611275076866, -0.02852027304470539, 0.04197832942008972, -0.02467028982937336, 0.04302525520324707, -0.038567379117012024, 0.011482407338917255, 0.004677392542362213, 0.029820486903190613, 0.05602739378809929, 0.044781386852264404, -0.001043759286403656, -0.020550131797790527, 0.013534042984247208, -0.010139978490769863, 0.03287683427333832, 0.06970496475696564, -0.02598738856613636, 0.004310124088078737, 0.033653583377599716, -0.02195166051387787, 0.027084972709417343, -0.01582208089530468, -0.02353893406689167, -0.00008231872925534844, 0.00816855113953352, 0.07254179567098618, -0.013508714735507965, -0.028587816283106804, 0.033839330077171326, 0.018405623733997345, 0.08260578662157059, -0.004297459963709116, -0.021715259179472923, -0.0242143701761961, -0.028317643329501152, -0.051468200981616974, -0.05953965708613396, -0.05015110224485397, -0.012875493615865707, -0.04586208611726761, 0.0028980413917452097, -0.004132822155952454, -0.05119802802801132, -0.02543015405535698, -0.04393709450960159, 0.03532528877258301, 0.0017782956128939986, 0.030377721413969994, -0.05204232409596443, -0.0010284563759341836, -0.03606826812028885, 0.01073098462074995, 0.02814878337085247, 0.05467652156949043, 0.03348472714424133, 0.024163713678717613, 0.043734464794397354, 0.06956987828016281, -0.01068032719194889, 0.005918505601584911, -0.000779389520175755, -0.040728773921728134, 0.01835496537387371, -0.05102916806936264, 0.04299148544669151, -0.016210457310080528, -0.039411675184965134, 0.0323871411383152, -0.012647533789277077, -0.011668152175843716, 0.0022141626104712486, -0.009971119463443756, 0.019351232796907425, 0.0009524698834866285, 0.04008711129426956, -0.023420734331011772, 0.011127803474664688, -0.0017403023084625602, 0.019182374700903893, -0.015855854377150536, 0.016531288623809814, 0.03419393301010132, -0.047787077724933624, 0.026629053056240082, 0.011533064767718315, 0.011094031855463982, -0.059742290526628494, -0.05454143509268761, -0.03340029716491699, -0.039783164858818054, 0.012596876360476017, -0.01843939535319805, 0.06622647494077682, -0.01030039507895708, -0.04386955127120018, -0.059370800852775574, -0.031964994966983795, -0.056331340223550797, -0.019148603081703186, -0.0023049244191497564, -0.05001601576805115, 0.031036270782351494, -0.02870601788163185, -0.03454853594303131, 0.02004355564713478, 0.007661974057555199, -0.02006044052541256, 0.015940282493829727, 0.012039641849696636, -0.04751690477132797, -0.006433525122702122, -0.046942781656980515, -0.0037697756197303534, -0.035460375249385834, -0.04008711129426956, -0.0244845449924469, -0.027068085968494415, 0.05643265321850777, 0.010612783953547478, -0.007358028087764978, 0.02428191341459751, 0.002237380715087056, -0.02154639922082424, 0.0012316148495301604, 0.031238902360200882, -0.02088784985244274, -0.04761821776628494, -0.06676682084798813, -0.004538083914667368, 0.021512627601623535, 0.039209045469760895, 0.05065767839550972, -0.015543464571237564, 0.03377178683876991, 0.0030795647762715816, -0.0705830305814743, -0.04961075261235237, 0.02730448916554451, 0.038162119686603546, 0.026713483035564423, 0.05528441444039345, -0.01938500441610813, -0.08618559688329697, -0.03429524973034859, 0.008037685416638851, 0.013550928793847561, 0.02088784985244274, 0.015746096149086952, 0.01020752266049385, 0.0495094396173954, -0.06278175115585327, 0.02374156564474106, -0.013449613936245441, 0.04714541509747505, 0.016362430527806282, 0.044680073857307434, -0.0008369070710614324, 0.03471739590167999, 0.035629235208034515, 0.03360292688012123, 0.021597057580947876, 0.030343949794769287, 0.007003424223512411, 0.015315504744648933, 0.09942413866519928, 0.028030581772327423, -0.031863681972026825, 0.025818530470132828, -0.01445432472974062, 0.00786038301885128, 0.03691256046295166, -0.017493784427642822, 0.008383845910429955, -0.010418595746159554, 0.03377178683876991, 0.09807326644659042, -0.004179258365184069, 0.028739789500832558, 0.06072167307138443, -0.05180592089891434, -0.024974236264824867, -0.033298980444669724, 0.02571721561253071, -0.018760226666927338, 0.023606479167938232, -0.04876646026968956, -0.0019735386595129967, 0.03654107078909874, -0.008814436383545399, 0.030259519815444946, -0.011853897012770176, -0.007695745676755905, 0.06210631504654884, -0.02022930048406124, 0.02759154886007309, -0.01011465024203062, -0.0017962368438020349, 0.03264043107628822, 0.01045236736536026, -0.010840743780136108, 0.05893176794052124, 0.020482588559389114, 0.031964994966983795, 0.05224495381116867, 0.016505960375070572, -0.05923571437597275, -0.003565034130588174, 0.04255244880914688, -0.03991825133562088, -0.0072820414789021015, 0.03059723787009716, 0.042316049337387085, -0.003898530500009656, -0.05997869372367859, -0.010519911535084248, -0.02129311114549637, 0.05366336926817894, -0.030833641067147255, 0.04407218098640442, -0.018979743123054504, -0.014141935855150223 ]
7,419
pathlib
__rtruediv__
null
def __rtruediv__(self, key): try: return self._from_parts([key] + self._parts) except TypeError: return NotImplemented
(self, key)
[ 0.019851213321089745, -0.03210313618183136, -0.03365401178598404, 0.06561928987503052, 0.03563568741083145, -0.032309919595718384, 0.005682237911969423, -0.016542678698897362, 0.033447228372097015, -0.021867353469133377, 0.04459630325436592, 0.05714116990566254, 0.029725125059485435, 0.017197493463754654, -0.040012601763010025, 0.014492075890302658, 0.0249518733471632, 0.06289663910865784, -0.049076613038778305, -0.022660022601485252, -0.0233665332198143, 0.005328982602804899, 0.0435623861849308, 0.06861764937639236, -0.010278861969709396, 0.033705707639455795, 0.0752691850066185, -0.04287310689687729, 0.014181900769472122, -0.07168494164943695, -0.008995081298053265, 0.05128230154514313, 0.010899212211370468, 0.030500562861561775, 0.009908375330269337, -0.05827847868204117, -0.007495901081711054, -0.006685999222099781, -0.031534481793642044, 0.04307989031076431, 0.046870920807123184, -0.04070188105106354, 0.05879543721675873, -0.06641196459531784, 0.01313936710357666, 0.026416590437293053, 0.020023534074425697, 0.03866850957274437, 0.003937501925975084, -0.008891689591109753, -0.005570230074226856, -0.01446622796356678, 0.006113036535680294, -0.01993737369775772, -0.05303996428847313, 0.0600016750395298, 0.024348754435777664, 0.053350139409303665, -0.02281511016190052, 0.0958096832036972, -0.026192573830485344, -0.04828394204378128, -0.018679441884160042, 0.0029854364693164825, 0.0001892822765512392, -0.01666330173611641, -0.04725002497434616, 0.016844237223267555, -0.016887318342924118, 0.03818601742386818, 0.0012730108574032784, 0.024762321263551712, -0.007065102458000183, 0.010813052766025066, 0.02278064750134945, 0.007905160076916218, -0.027553899213671684, 0.025038033723831177, 0.031155377626419067, -0.025365440174937248, 0.03973689302802086, -0.03239607810974121, 0.001955826999619603, -0.014362836256623268, -0.031896352767944336, 0.02210860140621662, -0.00526005495339632, -0.08298910409212112, 0.009003696963191032, -0.0012730108574032784, -0.06782498210668564, 0.03567015007138252, -0.06362038105726242, 0.033085357397794724, 0.046974312514066696, -0.0008793682791292667, -0.021402090787887573, -0.06275878846645355, -0.010640732944011688, -0.06861764937639236, 0.02026478201150894, 0.06854872405529022, 0.017783379182219505, -0.012148529291152954, 0.04842180013656616, -0.017921235412359238, -0.023021893575787544, -0.016689149662852287, -0.04787037521600723, -0.005557306110858917, 0.03611817955970764, 0.07051316648721695, -0.03394695371389389, 0.024503841996192932, -0.0752691850066185, 0.01585339941084385, -0.008555666543543339, -0.02281511016190052, 0.025572223588824272, 0.046457353979349136, 0.002748497063294053, 0.007582060992717743, -0.04259739816188812, 0.03423989936709404, -0.037979234009981155, -0.016094647347927094, 0.018265875056385994, 0.029535572975873947, -0.028260409832000732, -0.0392199344933033, 0.027743449434638023, 0.055521365255117416, -0.004471692722290754, 0.03756566718220711, -0.04776698350906372, -0.001366709591820836, 0.054901015013456345, 0.004980035591870546, 0.02860504761338234, 0.05255746841430664, 0.01182973850518465, 0.014664394780993462, 0.07395955920219421, 0.07106459140777588, 0.03915100544691086, -0.016129111871123314, 0.012898119166493416, 0.03942671790719032, 0.02414197102189064, 0.020557723939418793, -0.034188203513622284, 0.06599839776754379, 0.09574075043201447, -0.01601710356771946, 0.04928339645266533, -0.022384312003850937, 0.013018743135035038, -0.009236329235136509, -0.03704870864748955, -0.050627488642930984, 0.013871724717319012, -0.022143064066767693, -0.016628839075565338, -0.04628503695130348, -0.011907282285392284, -0.03520488739013672, 0.053212281316518784, -0.042218293994665146, -0.024417683482170105, 0.04824947938323021, 0.003233145922422409, -0.043148819357156754, -0.09574075043201447, 0.03763459250330925, 0.022832343354821205, -0.015560456551611423, -0.013406462036073208, 0.011459250934422016, 0.006535219494253397, -0.021798424422740936, 0.0022401544265449047, -0.020006300881505013, -0.04918000474572182, -0.020299244672060013, 0.03535997495055199, 0.025038033723831177, 0.011123227886855602, 0.02484848164021969, 0.051178909838199615, -0.01802462711930275, -0.05848526209592819, -0.031534481793642044, -0.00983944721519947, -0.0037371807266026735, -0.005509918089956045, -0.014380067586898804, -0.024124739691615105, 0.041563481092453, -0.026640605181455612, 0.06582607328891754, -0.023866260424256325, -0.0582440122961998, -0.004575084429234266, 0.042631860822439194, -0.03728995472192764, -0.015905095264315605, -0.026485517621040344, -0.001353785628452897, 0.03439498692750931, -0.009158785454928875, 0.03573907911777496, -0.04680199548602104, 0.011218003928661346, 0.01938595063984394, -0.017662756145000458, -0.0594157874584198, -0.04387256130576134, -0.012432856485247612, 0.04197704792022705, -0.012027906253933907, 0.07347706705331802, 0.014354219660162926, 0.06651535630226135, -0.03198251128196716, 0.014474843628704548, -0.03935778886079788, -0.014586851000785828, 0.020075229927897453, -0.07899128645658493, 0.01566384918987751, 0.07023745775222778, 0.010192702524363995, 0.008620286360383034, 0.006621379405260086, 0.010477029718458652, 0.021884584799408913, -0.05145462229847908, 0.02359054796397686, 0.05421173572540283, 0.008228259161114693, -0.01857605017721653, 0.00010123774700332433, 0.02155717834830284, 0.06672213971614838, -0.05314335599541664, -0.005350522696971893, 0.00511358305811882, 0.09243221580982208, 0.010623501613736153, 0.041563481092453, -0.018679441884160042, -0.010080695152282715, -0.03162064030766487, 0.0455612950026989, 0.03918546810746193, 0.03649728372693062, -0.007336505688726902, 0.01643928699195385, 0.017904002219438553, -0.013079055584967136, 0.0009348336607217789, -0.02863951213657856, -0.0024103198666125536, -0.04201151058077812, -0.029035847634077072, -0.0036402507685124874, 0.04711217060685158, 0.05341906473040581, -0.015172737650573254, 0.03165510296821594, -0.06389609724283218, -0.04228722304105759, -0.01876560039818287, 0.0014722553314641118, 0.005333290435373783, 0.05000713840126991, 0.04683645814657211, 0.026071950793266296, 0.007534672971814871, 0.019782286137342453, -0.0004046817484777421, -0.0017447356367483735, -0.02288403920829296, -0.017783379182219505, -0.041563481092453, 0.04073634743690491, 0.011330011300742626, -0.08009413629770279, -0.0020850668661296368, -0.026071950793266296, 0.032930269837379456, -0.02255663089454174, -0.011519563384354115, 0.03218929469585419, 0.06403394788503647, -0.005397910252213478, -0.09319042414426804, -0.06427519768476486, 0.0922943577170372, 0.0140612768009305, -0.04569914937019348, -0.0018104324117302895, -0.030500562861561775, -0.0380481593310833, 0.009649896062910557, -0.047008778899908066, 0.022022441029548645, 0.05241961404681206, -0.0310002900660038, 0.018265875056385994, -0.03255116567015648, 0.02200520783662796, -0.05579707771539688, -0.017499051988124847, 0.02974235825240612, -0.0015304131666198373, -0.008977849036455154, 0.02067834883928299, 0.020954059436917305, 0.09036438167095184, 0.006457675714045763, 0.03044886700809002, -0.058554187417030334, 0.027846843004226685, 0.014457611367106438, -0.021987976506352425, -0.01715441234409809, -0.08347159624099731, 0.008310111239552498, 0.012596560642123222, -0.03423989936709404, 0.05052409693598747, 0.021798424422740936, 0.03430882468819618, -0.09001974016427994, -0.008848609402775764, 0.0692724660038948, 0.01916193589568138, -0.02016139030456543, 0.027657290920615196, 0.03753120079636574, -0.04659521207213402, -0.010726893320679665, -0.006634303368628025, 0.022901270538568497, -0.02300466224551201, -0.030207620933651924, -0.044837553054094315, 0.05679652839899063, -0.020282013341784477, -0.022694487124681473, -0.050627488642930984, 0.022436007857322693, 0.013070438988506794, 0.05658974498510361, -0.03508426249027252, 0.004279987420886755, -0.039047613739967346, -0.007444205228239298, -0.008068863302469254, 0.06699784845113754, -0.02646828629076481, -0.06144915893673897, 0.004476000554859638, -0.006431827787309885, -0.052798714488744736, -0.0327579490840435, -0.04773252084851265, -0.03456730395555496, -0.008323035202920437, -0.030466100201010704, -0.04442398622632027, -0.004075357690453529, 0.0005005344864912331, 0.005975180771201849, -0.0036790226586163044, -0.005419450346380472, 0.040564026683568954, -0.00983944721519947, -0.011881434358656406, 0.011915897950530052, 0.05031731352210045, 0.03787584230303764, 0.02922539785504341, -0.03353338688611984, 0.07340813428163528, 0.02012692578136921, -0.004868027754127979, 0.06820408254861832, 0.038427263498306274, -0.03987474739551544, -0.009158785454928875, -0.009753287769854069, -0.03484301641583443, -0.04542343690991402, 0.011261084116995335, 0.036290500313043594, -0.06206950917840004, -0.011890050023794174, -0.045285582542419434, 0.05524565279483795, -0.01986844651401043, -0.029328789561986923, 0.06885889917612076, 0.01760244369506836, -0.040632955729961395, 0.05900222063064575, 0.028691207990050316, -0.004458768758922815, -0.07513133436441422, -0.005005883518606424, -0.015689697116613388, -0.03174126520752907, -0.028467193245887756, 0.023211445659399033, -0.058554187417030334, 0.03479132056236267, -0.05531458184123039, -0.014586851000785828, 0.0594157874584198, 0.05052409693598747, -0.02245323918759823, -0.02631319873034954, -0.004570776596665382, -0.018110785633325577, 0.024452146142721176, -0.006750619038939476, -0.01850712113082409, -0.03132769837975502, 0.006724771112203598, 0.001225622952915728, 0.013346150517463684, 0.015965407714247704, 0.015620769001543522, -0.0022530783899128437, -0.035291045904159546, -0.0044156890362501144, -0.0014108665054664016, 0.025072496384382248, 0.01585339941084385, -0.0204887967556715, -0.010683813132345676, -0.01902407966554165, 0.002263848204165697, 0.0447341613471508, -0.0669289231300354, -0.021212538704276085, 0.05783044546842575, -0.00762083288282156, -0.06169040501117706, 0.05266086012125015, 0.0012299309018999338, -0.011390323750674725, -0.01168326660990715, 0.004094743635505438, 0.002378009958192706, -0.008555666543543339, -0.007302041631191969, 0.004017199855297804, -0.029501110315322876, 0.005919177085161209, 0.06748034060001373, 0.030414404347538948, -0.006427519954741001, -0.02038540504872799, 0.025313744321465492, 0.0035756309516727924, -0.04559575766324997, -0.005527150351554155, -0.012777496129274368, -0.015525992959737778, -0.0307073462754488, 0.016723614186048508, -0.03591139614582062, -0.003603633027523756, 0.05838187038898468, 0.050144992768764496, -0.006026877090334892, -0.03025931678712368, -0.09091580659151077, -0.016456518322229385, -0.018558816984295845, -0.024641698226332664, 0.012768879532814026, 0.006509371567517519, 0.002032293938100338, -0.06337913870811462, 0.07437312602996826, 0.031568944454193115, -0.030379939824342728, -0.02838103286921978, 0.009167401120066643, -0.015293361619114876, 0.10111711919307709, 0.04490647837519646, 0.024676162749528885, -0.014199132099747658, 0.017076868563890457, 0.003002668498083949, 0.019765054807066917, -0.03096582554280758, -0.016422055661678314, 0.054315127432346344, 0.024607233703136444, -0.0021238387562334538, 0.031534481793642044, -0.017094101756811142, 0.02672676555812359, 0.02097129076719284, -0.047491271048784256, -0.006548143457621336, -0.023935187608003616, 0.03003530018031597, -0.012527632527053356, 0.07664774358272552, 0.04769805446267128, -0.07940485328435898, -0.01039087027311325, -0.01850712113082409, -0.008995081298053265, 0.0220741368830204, -0.010278861969709396, 0.0039051922503858805, -0.019075775519013405, -0.013492622412741184, 0.008839993737637997, -0.07699238508939743, -0.07196065038442612, 0.011261084116995335, 0.030069764703512192, -0.0628277137875557, -0.03472239151597023, -0.006134576629847288, 0.02738157846033573, -0.0605875588953495, 0.034929174929857254, -0.037462275475263596, 0.0265372134745121, 0.016870085150003433, -0.0005169587093405426, -0.00656968355178833, 0.054315127432346344, 0.025020800530910492, -0.028949687257409096, -0.005983796902000904, 0.05569368600845337, -0.0441482737660408, 0.014698859304189682, -0.01676669344305992, 0.010735508985817432, -0.079611636698246, 0.029725125059485435, 0.03058672323822975, -0.007172801997512579, 0.07595846801996231, -0.039013151079416275, -0.026089182123541832, -0.03491194546222687, -0.05410834401845932, 0.008680597878992558, 0.04662967473268509, -0.013811413198709488, 0.02598579041659832, -0.04463076964020729, -0.041632406413555145, 0.006474907975643873, 0.018713904544711113, -0.055073332041502, 0.028725672513246536, 0.006966018583625555, -0.028036393225193024, -0.013647709973156452, 0.01886899210512638, 0.025744542479515076, -0.05272978916764259, 0.02546883188188076, -0.039564572274684906, -0.026347661390900612, -0.016137726604938507, -0.06300003081560135, -0.02484848164021969, -0.003015592461451888, 0.08650442212820053, 0.01166603434830904, -0.015706928446888924, 0.016628839075565338, 0.03203420713543892, 0.06958264112472534, -0.03439498692750931, 0.009365568868815899, -0.023797331377863884, -0.09691252559423447, 0.01916193589568138, -0.009503424167633057, -0.009443112649023533, -0.010589037090539932, -0.004824948031455278, 0.016904549673199654, -0.003592862980440259, -0.015379521064460278, 0.05572814866900444, -0.031500015407800674, 0.03243054077029228, 0.06389609724283218, 0.007065102458000183, 0.03728995472192764, -0.017662756145000458, 0.05945025011897087, 0.004094743635505438, -0.0752691850066185, 0.05303996428847313, 0.0207817405462265, 0.018438193947076797, -0.02646828629076481, 0.013294454663991928, 0.01182973850518465, -0.009296640753746033, -0.006466291844844818, -0.003567015053704381, -0.004161517601460218, -0.0712713748216629, 0.022728951647877693, -0.05376370623707771, 0.03660067543387413, -0.038496192544698715, -0.011872817762196064, 0.036945316940546036, 0.026261502876877785, 0.03925439715385437, -0.044837553054094315, 0.0034937793388962746, -0.017197493463754654, 0.04397595301270485, 0.04559575766324997, 0.009675743989646435, -0.025486063212156296, 0.03258563205599785, 0.018731137737631798, -0.006677383091300726, 0.05162694305181503, 0.016361743211746216, -0.01850712113082409, -0.04511326178908348, 0.029690662398934364, -0.03517042472958565, 0.013035975396633148, -0.011872817762196064, 0.0006219659117050469, -0.00524282269179821, -0.004333836957812309, 0.004303681198507547, 0.01627558283507824, 0.027192028239369392, -0.04776698350906372, -0.04132223129272461, -0.02805362641811371, 0.08491908013820648, -0.056830994784832, -0.01433698832988739, 0.008232567459344864, -0.014914258383214474, -0.008590130135416985, -0.0173181165009737, -0.020402636379003525, 0.04083973914384842, -0.0201958529651165, 0.029397718608379364, -0.01935148797929287, 0.005384986288845539, -0.0035497830249369144, 0.02579623833298683, -0.02203967235982418, -0.034808553755283356, 0.005376370623707771, -0.01234669703990221, -0.018972383812069893, 0.0173784289509058, -0.030155925080180168, 0.038358334451913834, 0.017404276877641678, 0.01931702345609665, -0.011984826065599918, -0.0036768687423318624, -0.033447228372097015, -0.027726218104362488, -0.0032503779511898756, -0.046422891318798065, 0.020574957132339478, -0.023711172863841057, -0.13744208216667175, 0.031861886382102966, -0.07361491769552231, -0.028536120429635048, -0.04928339645266533, -0.012553480453789234, 0.033119820058345795, 0.0028195788618177176, 0.017524899914860725, 0.04514772817492485, -0.003336537629365921, -0.015681080520153046, -0.01194174587726593, -0.0033300756476819515, -0.0012471628142520785, -0.02203967235982418, -0.0009622970828786492, 0.008344574831426144, 0.005268670618534088, 0.006655843462795019, -0.06827301532030106, 0.014026813209056854, 0.012941199354827404, 0.0018610513070598245, -0.0669289231300354, 0.0686865821480751, 0.041563481092453, -0.01271718367934227, 0.010942292399704456, 0.008473814465105534, 0.03959903493523598, -0.007706992793828249, -0.04015045985579491, 0.072098508477211, 0.01496595423668623, -0.01286365557461977, -0.011355859227478504, 0.046870920807123184, -0.002350008115172386, -0.02993190847337246, 0.04918000474572182, 0.026623373851180077, 0.04339006543159485, 0.015577688813209534, -0.029208166524767876, 0.05155801400542259, -0.03029377944767475, -0.06730802357196808, 0.001687654759734869, 0.04421720281243324, 0.08836547285318375, -0.010347790084779263, 0.01743873953819275, 0.016335895285010338, 0.003054364351555705, 0.029983604326844215, 0.01750766858458519, -0.018076322972774506, 0.046870920807123184, 0.009201864711940289, -0.005746857728809118, -0.007448513526469469, 0.040598489344120026, -0.02210860140621662, 0.005255746655166149, 0.028070857748389244, -0.054418519139289856, 0.01883452944457531, 0.0031125221867114305, 0.006229352205991745, -0.042149364948272705, -0.06468876451253891, -0.03096582554280758, 0.007306349463760853, 0.04080527275800705, -0.04973142594099045, 0.02138485759496689, 0.05924346670508385, 0.028794599696993828 ]
7,420
pathlib
__str__
Return the string representation of the path, suitable for passing to system calls.
def __str__(self): """Return the string representation of the path, suitable for passing to system calls.""" try: return self._str except AttributeError: self._str = self._format_parsed_parts(self._drv, self._root, self._parts) or '.' return self._str
(self)
[ 0.04228530451655388, 0.004068681504577398, 0.010272941552102566, 0.022745400667190552, 0.04869630187749863, -0.07781859487295151, 0.05480038747191429, 0.031731028109788895, 0.04828708991408348, -0.0438198521733284, 0.032515350729227066, 0.003763903398066759, -0.008278029970824718, 0.019250042736530304, -0.012881672009825706, 0.045593105256557465, -0.01090381108224392, -0.04303552582859993, 0.01609569601714611, 0.018704427406191826, -0.006142451893538237, 0.005473218858242035, 0.043410636484622955, -0.004111308138817549, -0.014134885743260384, 0.06301873922348022, 0.03693143650889397, -0.037579357624053955, -0.009650597348809242, -0.07420388609170914, 0.000987331965006888, -0.014492946676909924, 0.037545256316661835, -0.02110855095088482, -0.02775825560092926, 0.03788626939058304, 0.004492813255637884, -0.010119486600160599, -0.044126760214567184, -0.0611431859433651, -0.015891090035438538, 0.029497409239411354, -0.020153721794486046, -0.03377709165215492, -0.03491947799921036, 0.007101543713361025, 0.0010933649027720094, 0.03676093369722366, -0.004697419703006744, 0.020869843661785126, 0.028764236718416214, 0.05162899196147919, -0.062336720526218414, -0.04617282375693321, -0.0394890159368515, 0.03159462288022041, 0.060256555676460266, -0.013674521818757057, -0.010511648841202259, -0.007353038992732763, -0.026854578405618668, -0.003584872931241989, 0.0599837489426136, 0.0019533508457243443, -0.018772628158330917, -0.0015718452632427216, -0.04327423498034477, -0.01016211323440075, 0.006385421846061945, 0.06775879114866257, 0.011082842014729977, -0.0396595224738121, -0.052106406539678574, 0.009386314079165459, 0.038943398743867874, -0.006709381937980652, -0.06632654368877411, 0.016658363863825798, 0.047093551605939865, -0.018397517502307892, -0.033265575766563416, -0.023120513185858727, -0.02409239299595356, -0.039761826395988464, 0.007578958757221699, -0.009053829126060009, -0.031049007549881935, -0.026752274483442307, -0.016956748440861702, 0.05561881512403488, -0.016257675364613533, 0.026837527751922607, -0.046479731798172, 0.04535439610481262, -0.008925950154662132, -0.037511155009269714, 0.013648945838212967, -0.05718746408820152, 0.039011601358652115, -0.012310479767620564, -0.023563826456665993, -0.018431618809700012, -0.036897338926792145, 0.004288207273930311, -0.02179057151079178, -0.04170558601617813, -0.004303126595914364, 0.015848463401198387, -0.010605426505208015, -0.018857881426811218, -0.030452238395810127, 0.017400061711668968, -0.022898856550455093, 0.006790371611714363, 0.03529458865523338, -0.04027334228157997, -0.033112119883298874, -0.04903731122612953, 0.05534600466489792, -0.04729815945029259, 0.018670326098799706, 0.03285636380314827, -0.07966005802154541, 0.009292536415159702, 0.01690559647977352, 0.03282226249575615, -0.0511515773832798, -0.004957440309226513, 0.01615537330508232, -0.06516710668802261, 0.04835528880357742, 0.03502177819609642, -0.001705052563920617, 0.017348909750580788, 0.05104927346110344, 0.01826111227273941, -0.07161220908164978, 0.03231074661016464, 0.01684591919183731, 0.11567076295614243, 0.030452238395810127, -0.05251561850309372, -0.008917424827814102, 0.0027280841022729874, 0.03996643051505089, 0.07399927824735641, 0.04869630187749863, 0.004816773347556591, -0.02620665729045868, 0.0035273274406790733, 0.009113505482673645, -0.00010143730469280854, 0.004394772928208113, -0.033197373151779175, 0.022864755243062973, -0.015157917514443398, -0.010844133794307709, -0.011398276314139366, 0.015524503774940968, -0.05677824839949608, -0.026752274483442307, -0.07638635486364365, 0.03529458865523338, -0.02700803242623806, 0.03430565819144249, 0.05159489065408707, -0.03853418678045273, 0.00009943919576471671, 0.010289992205798626, 0.010375244542956352, 0.01347844023257494, -0.01676919125020504, -0.09425530582666397, 0.025831546634435654, -0.030418137088418007, 0.04088715836405754, 0.026002051308751106, 0.06376896798610687, -0.01962515525519848, -0.01974450796842575, 0.03566969931125641, -0.034680768847465515, -0.019420549273490906, 0.06509890407323837, 0.06591732800006866, 0.013776824809610844, 0.020801641047000885, -0.020972145721316338, 0.038363683968782425, 0.04961702972650528, -0.0568123497068882, 0.07222602516412735, 0.022967057302594185, 0.03873879462480545, -0.0002911910123657435, -0.06206391379237175, 0.032515350729227066, -0.07154400646686554, -0.014168987050652504, 0.052242811769247055, 0.010383769869804382, 0.004441661760210991, 0.006061461754143238, 0.008670192211866379, 0.00638115918263793, 0.010767406783998013, 0.00400474201887846, 0.01756204105913639, 0.02201222814619541, 0.05497089400887489, -0.006138189230114222, -0.025950899347662926, -0.009522718377411366, -0.010861184448003769, 0.03422040492296219, 0.009565345011651516, -0.008116049692034721, 0.04590001329779625, -0.009394839406013489, 0.04828708991408348, 0.03292456641793251, 0.03495357558131218, 0.03150936961174011, -0.01889198273420334, -0.07461310178041458, -0.03147526830434799, -0.0034228928852826357, 0.026547668501734734, 0.01202062051743269, 0.012958399020135403, 0.0393185131251812, -0.07809140533208847, -0.029616761952638626, 0.030298784375190735, -0.005162046756595373, 0.03067389503121376, -0.04010283574461937, -0.0017540728440508246, -0.008359020575881004, -0.052958931773900986, -0.03485127538442612, -0.031083108857274055, -0.011219245381653309, -0.01763024367392063, 0.051322080194950104, -0.04743456095457077, -0.008320656605064869, 0.011960943229496479, 0.015695009380578995, -0.025814495980739594, 0.08661667257547379, 0.025985000655055046, -0.04439956694841385, -0.020017316564917564, -0.010631002485752106, -0.06595142930746078, -0.04593411460518837, -0.010017183609306812, 0.0016293908702209592, 0.041330475360155106, -0.04971933364868164, -0.00583554245531559, -0.016556059941649437, -0.009403364732861519, -0.0007869882974773645, -0.037579357624053955, -0.02192697487771511, -0.017169879749417305, 0.02185877412557602, 0.02410944364964962, -0.02329101786017418, 0.0409894622862339, -0.067315474152565, 0.03805677220225334, -0.058176394551992416, -0.025320030748844147, -0.02484261617064476, -0.01831226423382759, -0.017766647040843964, -0.017289232462644577, -0.004260499961674213, 0.013333510607481003, -0.003420761786401272, 0.011943893507122993, -0.003925883676856756, -0.016675414517521858, -0.003636024659499526, -0.05268612504005432, -0.024552756920456886, 0.03384529426693916, 0.06001785025000572, 0.024638010188937187, -0.00800948403775692, -0.005379440728574991, 0.06479199975728989, -0.01427129004150629, -0.017323333770036697, -0.06049526482820511, 0.004399035591632128, -0.052993033081293106, -0.039148006588220596, 0.015780260786414146, -0.000028406442652340047, 0.03347017988562584, -0.019369397312402725, -0.022762451320886612, -0.017400061711668968, -0.017110202461481094, 0.01959105394780636, 0.01619799993932247, 0.008951526135206223, -0.009480091743171215, 0.04153507947921753, 0.08109229803085327, 0.056607745587825775, 0.08006926625967026, -0.03727244958281517, -0.021159702911973, -0.014535573311150074, 0.06012015417218208, -0.04286501929163933, 0.09036778658628464, -0.0181588102132082, 0.031662825495004654, 0.004620692227035761, 0.00264070020057261, -0.008891848847270012, 0.06134779006242752, -0.013981430791318417, 0.05091286823153496, -0.013623369857668877, -0.007314675487577915, 0.00836754497140646, 0.014450320042669773, 0.04102356359362602, -0.0059463707730174065, 0.027536598965525627, -0.08866273611783981, -0.05353865027427673, 0.011867165565490723, 0.09991607815027237, -0.003693570150062442, -0.0066454424522817135, 0.0005722582573071122, -0.029361004009842873, 0.038227278739213943, 0.03132181614637375, 0.02854258008301258, 0.01235310547053814, -0.011185145005583763, -0.031151309609413147, -0.015652382746338844, -0.04395625367760658, -0.007544857449829578, -0.01203767117112875, 0.007885867729783058, -0.026428313925862312, 0.08416139334440231, 0.006410997360944748, 0.017118727788329124, 0.06066577136516571, 0.008772495202720165, -0.012566237710416317, -0.005856855306774378, -0.006530351471155882, -0.036829136312007904, 0.023120513185858727, -0.00690972525626421, 0.03959131985902786, -0.0005173768731765449, -0.030418137088418007, -0.009480091743171215, 0.013214156962931156, -0.08245634287595749, -0.0047144703567028046, 0.06250722706317902, 0.03819317743182182, -0.015533029101788998, -0.02484261617064476, -0.039693623781204224, 0.01679476723074913, 0.03423745557665825, 0.015908140689134598, 0.021637117490172386, 0.008222616277635098, 0.025302980095148087, 0.027468396350741386, -0.007110069040209055, 0.024433402344584465, -0.026854578405618668, -0.025985000655055046, 0.019488750025629997, 0.034612566232681274, 0.024467503651976585, -0.010972012765705585, -0.04095536097884178, 0.05967684090137482, -0.024433402344584465, -0.02416059374809265, 0.024348150938749313, 0.002504295902326703, -0.021023297682404518, -0.05179949477314949, 0.05749437212944031, -0.028815388679504395, 0.020648187026381493, 0.04378575086593628, 0.014416219666600227, -0.0337429903447628, -0.027604801580309868, 0.0026577506214380264, -0.0219099260866642, -0.026803426444530487, -0.0254052821546793, 0.07925084233283997, 0.04221710190176964, -0.054357074201107025, -0.021415460854768753, 0.05933582782745361, -0.0005149791250005364, -0.08607105165719986, 0.026496516540646553, -0.025234777480363846, 0.06325744837522507, 0.032430101186037064, 0.0036573377437889576, -0.01690559647977352, 0.018465718254446983, 0.11403391510248184, 0.03491947799921036, -0.01902838610112667, 0.016641313210129738, -0.07024816423654556, -0.013214156962931156, 0.010358193889260292, -0.06063167005777359, 0.005136470776051283, -0.01617242395877838, -0.041876088827848434, 0.01754499040544033, -0.030077127739787102, -0.021466610953211784, -0.015677958726882935, 0.03227664530277252, 0.030861450359225273, -0.032498300075531006, -0.04071665555238724, 0.015652382746338844, 0.01461230032145977, -0.014365067705512047, -0.013359086588025093, -0.0045269145630300045, 0.0026236495468765497, -0.012983975000679493, -0.03427155688405037, -0.05128797888755798, 0.03856828808784485, 0.017988303676247597, -0.00329714547842741, 0.014552623964846134, -0.07543152570724487, 0.08450240641832352, 0.03645402193069458, -0.010349668562412262, 0.022250935435295105, -0.006973664741963148, 0.038943398743867874, 0.05275432765483856, -0.052822526544332504, -0.02262604795396328, 0.0181588102132082, -0.005596835166215897, -0.055209603160619736, 0.06042706221342087, -0.013674521818757057, 0.041364576667547226, -0.03785216808319092, -0.0068287355825304985, -0.045593105256557465, -0.05347044765949249, -0.052788425236940384, -0.05391376093029976, -0.007306150160729885, 0.04293322190642357, -0.004202954471111298, -0.0002485646982677281, -0.012685591354966164, 0.048593997955322266, -0.0002946543972939253, -0.0037276712246239185, 0.07556793093681335, 0.07952365279197693, -0.10871414840221405, -0.022302087396383286, -0.010613951832056046, 0.06441688537597656, -0.06724727153778076, 0.01167108491063118, -0.04661613702774048, 0.0006314022466540337, 0.004386247601360083, -0.03573790192604065, 0.033112119883298874, 0.012625914067029953, -0.0045567527413368225, 0.01467197760939598, 0.03850008547306061, 0.033879395574331284, -0.0037511156406253576, -0.007502231281250715, 0.020818691700696945, -0.04876450449228287, 0.010059810243546963, 0.007664211094379425, -0.00422639911994338, 0.024518655613064766, 0.00490628881379962, -0.01053722482174635, -0.005136470776051283, 0.05237921327352524, -0.03000892512500286, -0.022370290011167526, -0.02184172347187996, -0.04971933364868164, -0.03734065219759941, -0.00187875481788069, -0.01962515525519848, 0.031117208302021027, -0.008700030855834484, 0.07256703823804855, 0.007864555343985558, 0.05377735570073128, 0.04801427945494652, 0.04143277555704117, 0.03362363576889038, 0.10134832561016083, -0.0496511310338974, -0.00654313899576664, -0.019335296005010605, -0.0028218619991093874, 0.04092125967144966, -0.02127905562520027, -0.007877342402935028, -0.037613458931446075, 0.028764236718416214, -0.06533761322498322, 0.06260953098535538, -0.02185877412557602, 0.07884162664413452, -0.017971253022551537, 0.020119620487093925, -0.026496516540646553, -0.0009660188225097954, 0.023546775802969933, 0.042046595364809036, 0.02845732681453228, 0.012881672009825706, -0.01017916388809681, -0.030094178393483162, -0.024638010188937187, -0.06561042368412018, -0.0012009963393211365, 0.012122923508286476, 0.012199651449918747, 0.0239900890737772, -0.006555926986038685, 0.0030413875356316566, -0.018039455637335777, 0.022302087396383286, -0.05889251455664635, 0.00656871497631073, 0.004829561337828636, 0.022131582722067833, -0.002231487538665533, -0.05595982447266579, 0.042592212557792664, 0.058142293244600296, 0.0511515773832798, 0.027604801580309868, 0.01814175955951214, 0.020102569833397865, -0.007672736421227455, -0.00808621197938919, 0.00799243338406086, -0.050026241689920425, -0.03996643051505089, 0.008968576788902283, -0.007178271189332008, -0.029702015221118927, -0.05272022634744644, -0.008145888336002827, -0.08020567148923874, 0.037613458931446075, 0.00421787379309535, 0.04504748806357384, -0.0689864233136177, -0.019574003294110298, -0.030520441010594368, 0.026854578405618668, -0.027570700272917747, 0.011969468556344509, 0.00747239263728261, 0.04177378863096237, 0.06271183490753174, 0.038261380046606064, 0.004970228299498558, 0.016445232555270195, 0.038363683968782425, -0.04320603236556053, 0.060256555676460266, -0.010758881457149982, 0.05162899196147919, -0.00318631692789495, 0.019574003294110298, -0.019403498619794846, 0.005545683205127716, 0.03945491462945938, -0.031782180070877075, -0.04460417479276657, 0.03788626939058304, -0.010375244542956352, 0.03693143650889397, -0.03659042716026306, 0.017698446288704872, -0.05469808727502823, -0.0009804052533581853, -0.01234458014369011, -0.022250935435295105, 0.031850382685661316, -0.03955721855163574, 0.014313915744423866, -0.03449321165680885, 0.004680369049310684, -0.002864488400518894, -0.049207817763090134, -0.08327476680278778, 0.009394839406013489, -0.013717147521674633, -0.011935368180274963, 0.01466345228254795, -0.011816014535725117, -0.019113639369606972, -0.06983895599842072, -0.034578464925289154, -0.051560789346694946, -0.011031690053641796, -0.06134779006242752, -0.044945184141397476, 0.04528619721531868, -0.031049007549881935, -0.02994072251021862, -0.007080230861902237, 0.004249843303114176, -0.01619799993932247, 0.009497142396867275, 0.031850382685661316, 0.054357074201107025, -0.026803426444530487, -0.01607864536345005, 0.032515350729227066, -0.029378054663538933, -0.03505587950348854, 0.006845785770565271, -0.038329582661390305, 0.020784590393304825, 0.0068585737608373165, -0.013631895184516907, 0.0008274833089672029, -0.011764862574636936, -0.0569828562438488, 0.00320336758159101, 0.006428048014640808, -0.02335922047495842, -0.0599837489426136, -0.0921410396695137, -0.012557712383568287, 0.026632919907569885, 0.01619799993932247, 0.033282626420259476, -0.0031586098484694958, -0.0064706746488809586, 0.004774147178977728, -0.03415220230817795, -0.06953204423189163, 0.028133366256952286, 0.04371754825115204, 0.0020513914059847593, 0.043410636484622955, 0.04794607684016228, -0.07543152570724487, -0.04913961514830589, -0.05851740390062332, 0.003241731086745858, 0.03938671573996544, 0.007775039412081242, -0.001602749340236187, 0.07590893656015396, -0.028099266812205315, -0.00039322773227468133, -0.029787268489599228, 0.06700856238603592, 0.024484554305672646, 0.00692677590996027, -0.016504907980561256, 0.035328689962625504, -0.04678664356470108, -0.014032582752406597, -0.013273834250867367, -0.04838939011096954, -0.005562733858823776, 0.008700030855834484, 0.05493679270148277, 0.0016368504147976637, -0.07877343147993088, 0.04317193105816841, -0.023904837667942047, 0.002246406627818942, -0.0064706746488809586, 0.020869843661785126, -0.0042690252885222435, -0.01420308742672205, -0.03488537669181824, 0.05694875493645668, -0.010383769869804382, 0.052140507847070694, 0.07468130439519882, 0.003968509845435619, -0.005387966055423021, 0.030179429799318314, 0.0112448213621974, -0.037647560238838196, 0.04508158937096596, -0.013316459953784943, 0.008593465201556683, 0.018755577504634857, -0.05053775757551193, 0.018022404983639717, -0.01457819901406765, 0.04907141253352165, 0.07577253878116608, 0.023512674495577812, 0.04334243759512901, 0.008925950154662132, -0.019556952640414238, -0.008636090904474258, -0.004215742461383343, 0.04453597217798233, 0.04617282375693321, -0.021517762914299965, 0.016308827325701714, 0.02775825560092926, -0.006696593947708607, 0.0012958399020135403, 0.03925031051039696, 0.021739419549703598, -0.07188501209020615, -0.006295906379818916, 0.027553649619221687, 0.036078911274671555, 0.00805211067199707, -0.05391376093029976, -0.03139001876115799, 0.022097481414675713, 0.033112119883298874, 0.00654313899576664, 0.07515871524810791, -0.05595982447266579, -0.04354704171419144 ]
7,421
pathlib
__truediv__
null
def __truediv__(self, key): try: return self._make_child((key,)) except TypeError: return NotImplemented
(self, key)
[ 0.029760807752609253, -0.03861696645617485, -0.014622957445681095, 0.05008191242814064, 0.009285234846174717, 0.0003277078503742814, -0.0019244120921939611, 0.013507355935871601, 0.0481596477329731, -0.028027335181832314, 0.05032219737768173, 0.07462514191865921, 0.03631711006164551, -0.009096440859138966, -0.052347443997859955, 0.02050989866256714, 0.025470033288002014, 0.06264530122280121, -0.014236788265407085, -0.0022462201304733753, -0.00779204536229372, 0.030601799488067627, 0.04520759359002113, -0.003160154912620783, -0.0003534525167196989, 0.05986487865447998, 0.007350095547735691, 0.0068824016489088535, 0.05818289518356323, -0.05680984631180763, -0.04088249430060387, 0.048914823681116104, 0.01923982985317707, 0.031185345724225044, 0.010048992931842804, -0.014176717028021812, -0.06086033955216408, 0.009808708913624287, -0.026482656598091125, 0.03947512060403824, 0.04857156053185463, -0.04222121462225914, 0.022191882133483887, -0.06844642758369446, 0.004286483395844698, 0.0055522616021335125, 0.04966999962925911, 0.03896022588014603, -0.014434163458645344, -0.05286233499646187, 0.01066686399281025, 0.007521726656705141, 0.04277043417096138, -0.009705730713903904, -0.09343589097261429, 0.057873960584402084, 0.02687740884721279, 0.03024137392640114, -0.016038913279771805, 0.07936215400695801, -0.003932494204491377, 0.019840538501739502, -0.003687920281663537, -0.018210044130682945, -0.005771090742200613, -0.04424646124243736, -0.056363604962825775, 0.016588132828474045, -0.018999546766281128, 0.038857247680425644, -0.01896522007882595, -0.0006141170160844922, 0.006873819977045059, 0.051111698150634766, -0.012323102913796902, -0.005075985565781593, -0.010726935230195522, 0.003554906230419874, 0.0635034516453743, 0.00194801134057343, -0.02275826595723629, -0.020166637375950813, -0.006624954752624035, 0.0005701365880668163, -0.025195425376296043, 0.038136400282382965, 0.014039412140846252, -0.0491551049053669, 0.015292318537831306, 0.0002797048364300281, -0.0819709450006485, -0.0006393252988345921, -0.03696930781006813, 0.010040410794317722, 0.03847965970635414, 0.03128832206130028, 0.00424572080373764, -0.05396077409386635, -0.0084227891638875, -0.03720959275960922, 0.04009299352765083, 0.08375591039657593, 0.04596276953816414, -0.0004387316294014454, 0.04469270259141922, -0.0017624354222789407, -0.0328158400952816, -0.020252453163266182, -0.034377679228782654, 0.0035870869178324938, -0.01712018810212612, 0.07064330577850342, -0.017746640369296074, 0.028679532930254936, -0.03810207173228264, -0.02828478254377842, -0.036488741636276245, -0.045310571789741516, -0.0024285779800266027, 0.018673447892069817, 0.01151643693447113, -0.03933781385421753, -0.046409010887145996, -0.005080276168882847, -0.055093538016080856, 0.04177497699856758, 0.035184346139431, 0.01805557683110237, -0.0005529734771698713, 0.0011370551073923707, 0.01786678284406662, 0.02262096107006073, 0.017351889982819557, 0.05258772522211075, -0.014846078120172024, -0.014949056319892406, 0.06923592835664749, 0.0223978403955698, 0.000845818838570267, 0.018673447892069817, 0.0029584886506199837, -0.032609883695840836, 0.06549437344074249, 0.06219905987381935, 0.02083599753677845, -0.029777972027659416, -0.03168307617306709, 0.023753724992275238, -0.0021443143486976624, 0.008379881270229816, -0.021591175347566605, 0.060070835053920746, 0.0998205617070198, -0.0013290672795847058, 0.0444180928170681, -0.0024929395876824856, -0.002525120507925749, -0.03775881230831146, -0.028250455856323242, -0.03235243633389473, -0.000811492616776377, -0.003647157922387123, -0.016124729067087173, -0.06930457800626755, -0.012700690887868404, -0.028387760743498802, 0.06652416288852692, -0.05320559814572334, -0.009825872257351875, 0.08354995399713516, 0.009885943494737148, -0.041328735649585724, -0.06182147189974785, 0.05313694477081299, -0.019771886989474297, -0.016785508021712303, 0.00629456527531147, 0.01846749149262905, 0.017437705770134926, 0.015163594856858253, -0.006818039808422327, -0.01052955910563469, -0.01480317022651434, -0.04702688381075859, 0.029640667140483856, 0.015069197863340378, 0.010932891629636288, 0.02649981901049614, 0.047816384583711624, -0.006552011705935001, -0.0656316801905632, -0.05475027486681938, 0.01795259863138199, -0.005929849576205015, 0.03199201077222824, 0.01144778449088335, -0.026105068624019623, 0.027409464120864868, -0.02564166486263275, 0.09542681276798248, -0.025435708463191986, -0.0015017709229141474, 0.008113853633403778, 0.018210044130682945, -0.024663368239998817, -0.011353387497365475, -0.054544318467378616, -0.00959417037665844, -0.002353489398956299, -0.00859012920409441, 0.009448284283280373, -0.03782746195793152, -0.029005631804466248, 0.051798224449157715, -0.011430622078478336, -0.06267962604761124, -0.05148928612470627, -0.03896022588014603, 0.025933437049388885, -0.010632538236677647, 0.04819397255778313, 0.023324647918343544, 0.0495326928794384, -0.02842208743095398, 0.019462950527668, -0.031151019036769867, 0.00029230897780507803, 0.002437159651890397, -0.039921361953020096, 0.007397294510155916, 0.05598601698875427, 0.007508854381740093, 0.002426432678475976, -0.01599600538611412, 0.018673447892069817, -0.046683620661497116, -0.03878859803080559, 0.0013290672795847058, 0.03267853334546089, 0.02943470887839794, -0.0070969401858747005, -0.014013667590916157, 0.05035652220249176, 0.07970541715621948, -0.04767908155918121, 0.0042907739989459515, 0.011499274522066116, 0.07325208932161331, 0.007611833047121763, 0.04634035751223564, -0.022003088146448135, -0.059796225279569626, -0.046168725937604904, 0.03152860701084137, 0.05516219139099121, -0.012983881868422031, -0.017523521557450294, -0.02677442878484726, 0.00931956060230732, -0.01709444262087345, -0.007770591415464878, -0.02910861000418663, 0.0026002090889960527, 0.015369552187621593, -0.05018489062786102, -0.01179104670882225, 0.03950944542884827, 0.027203507721424103, -0.04263313114643097, 0.04630603268742561, -0.08444242924451828, -0.022929895669221878, 0.0016562386881560087, -0.005856906529515982, -0.01786678284406662, 0.008542930707335472, -0.006989670917391777, 0.039372142404317856, -0.024920815601944923, -0.024096986278891563, -0.018381675705313683, 0.005457864608615637, -0.022226208820939064, -0.023753724992275238, -0.07318343967199326, 0.004449532367289066, -0.021402381360530853, -0.044349439442157745, 0.009722894057631493, -0.0011863990221172571, -0.016047494485974312, 0.0052433256059885025, -0.053617510944604874, 0.02226053550839424, 0.05753069743514061, -0.03218080475926399, -0.11444352567195892, -0.033519525080919266, 0.07689066976308823, -0.0035291616804897785, -0.01855330727994442, -0.018261533230543137, -0.07146713137626648, -0.010443744249641895, -0.015000545419752598, 0.02088748849928379, 0.02399400807917118, 0.04026462137699127, -0.03889157623052597, 0.034841082990169525, -0.02687740884721279, 0.03796476870775223, -0.03139130398631096, 0.04349128529429436, 0.044761352241039276, -0.02207174152135849, 0.008023747242987156, -0.02317017875611782, 0.0298809502273798, 0.10469488799571991, -0.0310652032494545, 0.020235290750861168, -0.07338939607143402, 0.005088857840746641, 0.019497277215123177, -0.03116818144917488, -0.010297857224941254, -0.06944188475608826, 0.01359317172318697, 0.015094942413270473, -0.027855703607201576, 0.06491082906723022, 0.0467865988612175, 0.009877361357212067, -0.10325318574905396, 0.0031730274204164743, 0.06408699601888657, 0.04894914850592613, 0.0049601346254348755, 0.007920769043266773, 0.03817072510719299, -0.01905103586614132, -0.028490738943219185, -0.013953597284853458, 0.033656831830739975, -0.032369598746299744, 0.02965782955288887, -0.036900654435157776, 0.09666255861520767, -0.029417546465992928, -0.011602252721786499, -0.03569924086332321, -0.00032261255546472967, 0.01519792154431343, 0.03902887925505638, -0.04483000561594963, -0.009577007032930851, -0.04658064246177673, -0.035802219063043594, 0.005093148909509182, 0.08361860364675522, -0.0361798070371151, -0.04555085673928261, 0.02737513743340969, -0.03583654388785362, -0.06631819903850555, -0.01519792154431343, -0.03211215138435364, -0.039681077003479004, 0.01466586533933878, -0.004767050035297871, -0.042667455971241, -0.011799627915024757, 0.025761807337403297, 0.022861244156956673, 0.017575010657310486, -0.017145933583378792, 0.028181802481412888, 0.02143670618534088, -0.011164593510329723, 0.020595714449882507, 0.03889157623052597, 0.020853161811828613, 0.026156557723879814, -0.016459409147500992, 0.026156557723879814, 0.048777516931295395, 0.023891029879450798, 0.08183363825082779, 0.013395796529948711, -0.04881184548139572, -0.007114103063941002, -0.009448284283280373, -0.04417780786752701, -0.0309450626373291, 0.011138848960399628, 0.052244462072849274, -0.0481596477329731, -0.011567926965653896, -0.0280101727694273, 0.04170632362365723, -0.005934140179306269, -0.038308028131723404, 0.03549328073859215, 0.007384421769529581, -0.0220202524214983, 0.04126008227467537, 0.03700363636016846, -0.004374444019049406, -0.06291990727186203, -0.01532664429396391, -0.0015189340338110924, -0.05245042219758034, -0.007946513593196869, 0.029228752478957176, -0.07689066976308823, 0.05025354400277138, -0.02490365132689476, -0.02952052466571331, 0.02641400508582592, 0.020303942263126373, -0.006208749953657389, -0.02526407688856125, -0.010057574138045311, -0.034892573952674866, 0.028130313381552696, -0.018381675705313683, -0.011902607046067715, -0.018810752779245377, 0.019154014065861702, 0.015000545419752598, 0.0001270471402676776, 0.03147711604833603, 0.03834235668182373, 0.01729181967675686, -0.03583654388785362, -0.039681077003479004, -0.006277402397245169, 0.0037243918050080538, 0.060208141803741455, -0.01619338057935238, -0.019771886989474297, -0.008088109083473682, 0.015893027186393738, 0.05756502225995064, -0.03944079577922821, 0.021676989272236824, 0.04984163120388985, 0.05004758760333061, -0.04798801615834236, 0.06247366964817047, 0.033107612282037735, 0.05533381924033165, 0.007221372332423925, -0.021556848660111427, -0.016262033954262733, -0.0560203455388546, -0.041054125875234604, 0.013378633186221123, 0.004874319303780794, -0.008414207957684994, 0.05694715306162834, 0.025452870875597, -0.01087282132357359, -0.04122575744986534, 0.0187764260917902, 0.012649201788008213, -0.04301071912050247, -0.005320559721440077, -0.04623737931251526, 0.015043453313410282, -0.008251158520579338, 0.023959681391716003, -0.042667455971241, -0.026722939684987068, 0.016262033954262733, 0.0067794229835271835, -0.05155793949961662, -0.028868326917290688, -0.09137631952762604, 0.018810752779245377, -0.020132310688495636, 0.0228955689817667, -0.0033811298198997974, -0.023753724992275238, -0.007680485490709543, -0.03707228600978851, 0.06082601100206375, 0.06765692681074142, -0.017103025689721107, -0.03961242362856865, -0.0030614673160016537, 0.010709771886467934, 0.08972866833209991, 0.053617510944604874, -0.005908395629376173, -0.016914231702685356, 0.0012668509734794497, -0.011353387497365475, -0.0065048132091760635, -0.020492736250162125, -0.007603251375257969, 0.05025354400277138, 0.019222667440772057, 0.020029332488775253, 0.010950054973363876, -0.005788254085928202, 0.02498946711421013, 0.022037414833903313, -0.04208391159772873, 0.02495514042675495, -0.01657954975962639, 0.0031429920345544815, -0.025470033288002014, 0.04771340638399124, 0.012674946337938309, -0.06714203208684921, -0.007534598931670189, 0.006933890748769045, -0.03355385363101959, 0.05945296213030815, -0.015052035450935364, 0.0017334726871922612, -0.026311025023460388, -0.002415705705061555, -0.0004958525532856584, -0.0519012026488781, -0.03348520025610924, 0.04273610934615135, 0.020097985863685608, -0.05684417486190796, -0.07661605626344681, -0.012288776226341724, 0.04685525223612785, -0.07380130887031555, -0.006719352211803198, -0.04122575744986534, 0.05368616431951523, 0.031322650611400604, -0.03590519726276398, 0.020441247150301933, 0.04575681313872337, 0.020527062937617302, -0.012237287126481533, 0.0019329936476424336, 0.020115148276090622, -0.037449873983860016, 0.01133622508496046, -0.02861088141798973, 0.008555803447961807, -0.05025354400277138, 0.04359426349401474, 0.028027335181832314, -0.0013998650247231126, 0.07297748327255249, 0.004741305019706488, 0.00005329945634002797, -0.029211588203907013, -0.013232747092843056, 0.03070477768778801, 0.04630603268742561, -0.01265778299421072, 0.040367599576711655, -0.06384671479463577, 0.007101230788975954, -0.0033897114917635918, -0.009268071502447128, 0.007015415467321873, 0.059796225279569626, -0.006195877678692341, -0.010297857224941254, -0.013850618153810501, 0.043388307094573975, 0.017746640369296074, -0.03441200777888298, 0.009825872257351875, -0.07146713137626648, -0.0015725686680525541, -0.038857247680425644, -0.08698257058858871, -0.028078824281692505, -0.011825373396277428, 0.033468037843704224, 0.012426081113517284, -0.0025830459780991077, -0.0004448996332939714, 0.017008628696203232, 0.094328373670578, -0.03377697244286537, -0.0007063686498440802, -0.05423538386821747, -0.05450999364256859, -0.008847575634717941, -0.014219624921679497, 0.04071086272597313, -0.019068200141191483, 0.004022600594907999, -0.02553868666291237, -0.0027224961668252945, -0.009928850457072258, 0.03413739800453186, -0.011070196516811848, 0.012374592013657093, 0.07599818706512451, -0.02394251897931099, 0.019565928727388382, -0.005509353708475828, 0.00615726038813591, -0.007478819228708744, -0.07359535247087479, 0.04620305448770523, 0.020097985863685608, 0.05094006657600403, -0.02536705508828163, 0.00799800269305706, -0.02577896974980831, -0.04057355970144272, 0.01099296286702156, 0.007641868200153112, -0.03920051082968712, -0.07538031786680222, 0.0006173350848257542, -0.041603345423936844, 0.018347349017858505, -0.0693732351064682, -0.043251000344753265, 0.07119251787662506, -0.026293862611055374, 0.011370550841093063, -0.04898347705602646, 0.017000045627355576, -0.008607292547821999, 0.03844533488154411, 0.008469987660646439, -0.017437705770134926, 0.00025355792604386806, 0.034892573952674866, 0.032558392733335495, 0.016030332073569298, 0.061478208750486374, -0.017549265176057816, -0.019480112940073013, -0.03751852735877037, 0.02979513444006443, -0.03111669234931469, -0.0346866175532341, 0.00736725889146328, 0.0015135705471038818, -0.03403441980481148, -0.01795259863138199, -0.0038574058562517166, -0.0003403120208531618, -0.007749137934297323, -0.06690175086259842, -0.009885943494737148, -0.031459953635931015, 0.05643225833773613, -0.046683620661497116, -0.04383454844355583, 0.016399338841438293, 0.010641119442880154, -0.005419247318059206, -0.034343354403972626, 0.013404377736151218, 0.06185579672455788, -0.010057574138045311, 0.02462904155254364, -0.025710318237543106, -0.024165639653801918, -0.005320559721440077, 0.06316019594669342, 0.0019254848593845963, -0.05241609364748001, -0.03195768594741821, -0.01748061366379261, -0.02111060731112957, 0.027134854346513748, 0.019548766314983368, 0.04136306047439575, 0.03238676115870476, 0.020938977599143982, 0.03902887925505638, -0.0210247915238142, 0.018484653905034065, -0.018673447892069817, -0.01718025840818882, -0.0001233597577083856, 0.012400336563587189, -0.027306485921144485, -0.1653149425983429, 0.021230749785900116, -0.05423538386821747, 0.001657311455346644, -0.0046426174230873585, -0.013378633186221123, 0.0004824438947252929, -0.014863240532577038, 0.025710318237543106, 0.04472702741622925, 0.020406920462846756, 0.0019319209968671203, -0.019771886989474297, -0.009911688044667244, -0.010821332223713398, 0.01087282132357359, -0.0004277365223970264, 0.01373047661036253, 0.023633582517504692, 0.05934998393058777, -0.06123792752623558, -0.008924810215830803, 0.03477243334054947, 0.028490738943219185, -0.060928989201784134, 0.02572748064994812, 0.0319405198097229, -0.0013891380513086915, 0.04355993866920471, -0.0142539506778121, 0.0056981476955115795, 0.019411461427807808, -0.013773384504020214, 0.07716527581214905, 0.007800627034157515, -0.0324382521212101, 0.004990170244127512, 0.07084926217794418, -0.027821378782391548, -0.038136400282382965, 0.038582637906074524, 0.0406765379011631, 0.046168725937604904, 0.015155013650655746, -0.04956702142953873, 0.04424646124243736, -0.040642209351062775, -0.04661496728658676, -0.00553080765530467, 0.04232419282197952, 0.07153578102588654, -0.02116209641098976, 0.03288448974490166, 0.004258593078702688, -0.01078700553625822, 0.07222230732440948, 0.00549648143351078, -0.029898112639784813, 0.05807991698384285, 0.022037414833903313, 0.00850860495120287, 0.018347349017858505, 0.03218080475926399, -0.020664367824792862, 0.016304941847920418, 0.07167308777570724, -0.03394860401749611, 0.03974973037838936, 0.0015521874884143472, 0.006019955966621637, -0.04500163719058037, -0.04040192812681198, -0.050013262778520584, -0.013224164955317974, 0.04524192214012146, -0.04771340638399124, 0.007753428537398577, 0.06755394488573074, 0.028233293443918228 ]
7,422
pathlib
_make_child
null
def _make_child(self, args): drv, root, parts = self._parse_args(args) drv, root, parts = self._flavour.join_parsed_parts( self._drv, self._root, self._parts, drv, root, parts) return self._from_parsed_parts(drv, root, parts)
(self, args)
[ -0.005549737252295017, -0.010827303864061832, -0.03034706972539425, -0.01686609908938408, -0.022692259401082993, 0.01360855158418417, 0.0485825277864933, 0.10560235381126404, 0.009245309047400951, -0.011643816716969013, 0.050555769354104996, 0.10090740770101547, -0.0003941695613320917, 0.006923350505530834, -0.014263463206589222, 0.023185569792985916, 0.0336301326751709, 0.02660471759736538, -0.006055805366486311, 0.05341356247663498, 0.008339490741491318, 0.039124585688114166, 0.015445705503225327, -0.01777617074549198, 0.009772640652954578, 0.025873258709907532, -0.01130360271781683, 0.03987305611371994, 0.001212011557072401, -0.040213268250226974, 0.01217114832252264, -0.009508974850177765, 0.013676594011485577, 0.040009140968322754, 0.019562292844057083, 0.020480869337916374, -0.0546383336186409, 0.04422779008746147, -0.0032277782447636127, 0.012749511748552322, 0.0682809054851532, -0.0475618876516819, 0.02024272084236145, -0.012281717732548714, 0.0008967822650447488, 0.015173534862697124, 0.08518952876329422, -0.014357021078467369, -0.07049229741096497, -0.02301546186208725, 0.038103941828012466, 0.015802929177880287, 0.02541396953165531, 0.019051970914006233, -0.019358163699507713, 0.06896132975816727, 0.025771193206310272, 0.05161042883992195, 0.01481631025671959, 0.04667733237147331, -0.02054891176521778, 0.05263107270002365, -0.009160256013274193, 0.02230101265013218, -0.012783532962203026, 0.010436058044433594, -0.006481072399765253, -0.029853759333491325, -0.0525970496237278, 0.052358899265527725, -0.0167044959962368, -0.05695178732275963, 0.0009568512323312461, 0.010793282650411129, 0.039396755397319794, 0.012868585996329784, 0.0027855003718286753, -0.012604920193552971, 0.07906568050384521, 0.024172188714146614, -0.08233173191547394, 0.014824815094470978, -0.051542386412620544, -0.010691218078136444, -0.012137126177549362, 0.04997740313410759, -0.05324345827102661, -0.019392184913158417, 0.006336481776088476, 0.013549013994634151, -0.04694950208067894, 0.01912001520395279, -0.026536675170063972, 0.06596745550632477, 0.008007781580090523, -0.02362784743309021, 0.003212893847376108, 0.04745982214808464, 0.008484081365168095, 0.013923249207437038, -0.04453398287296295, 0.013591540977358818, -0.06566125899553299, -0.012230684980750084, 0.036164723336696625, -0.0107422498986125, 0.017589053139090538, -0.016134638339281082, -0.008564881980419159, -0.03356209024786949, -0.024580445140600204, -0.007922728545963764, -0.029377460479736328, 0.03429354727268219, -0.08348846435546875, -0.05433214083313942, 0.0053966413252055645, -0.017810191959142685, 0.024274252355098724, -0.05314139276742935, -0.027999594807624817, 0.018473608419299126, -0.019205067306756973, 0.0034808123018592596, -0.042730849236249924, 0.03701525926589966, -0.018796810880303383, -0.03180998936295509, 0.006166374776512384, -0.03926067054271698, -0.016891613602638245, 0.04494224116206169, -0.03555234149098396, -0.08689060062170029, -0.013982786796987057, -0.027948562055826187, 0.026927920058369637, -0.014025312848389149, -0.013140757568180561, -0.01912001520395279, -0.025516033172607422, -0.03131667897105217, 0.0389544777572155, 0.004652423318475485, -0.07770482450723648, -0.006026036571711302, 0.0313677117228508, -0.003000260330736637, -0.04865057021379471, 0.015981541946530342, -0.05787036567926407, 0.03029603697359562, 0.028628990054130554, 0.02624749392271042, 0.04657526686787605, -0.0334089919924736, -0.028935182839632034, 0.009747125208377838, 0.021773681044578552, 0.029496535658836365, -0.009959758259356022, -0.030891411006450653, 0.03755960240960121, -0.014731256291270256, 0.026842867955565453, 0.02172265015542507, 0.041744232177734375, -0.08212760835886002, -0.000007168078354879981, 0.02973468415439129, 0.0369131937623024, 0.017104247584939003, 0.005528473760932684, 0.005145733244717121, -0.1083240658044815, 0.007420913316309452, 0.04664330929517746, -0.030381090939044952, 0.009721608832478523, 0.006034541875123978, 0.030159952118992805, -0.014714245684444904, 0.07035621255636215, -0.039124585688114166, 0.05858481302857399, 0.008632924407720566, -0.0071785105392336845, 0.05606723204255104, 0.04130195453763008, -0.028611978515982628, 0.02393404021859169, 0.01815040595829487, 0.0323883518576622, -0.006140858866274357, 0.010453068651258945, -0.0067915176041424274, -0.047697972506284714, 0.005979257170110941, 0.018490618094801903, 0.05446822568774223, -0.02362784743309021, 0.03305177018046379, 0.00561352726072073, -0.03070429340004921, 0.05848274752497673, 0.013183283619582653, -0.014756772667169571, -0.004114460200071335, -0.027761444449424744, -0.010410541668534279, 0.010708228684961796, 0.00897313840687275, -0.0008223605109378695, -0.004490822087973356, -0.006404524203389883, -0.025669129565358162, -0.03434458002448082, 0.007233795709908009, 0.04814025014638901, -0.0033340950030833483, -0.032575469464063644, 0.030125930905342102, 0.015462716110050678, 0.05460431054234505, -0.08838754147291183, -0.042458679527044296, 0.025039734318852425, -0.013591540977358818, -0.003721088171005249, 0.0078419279307127, -0.052256837487220764, -0.052767157554626465, -0.030517175793647766, -0.04701754450798035, -0.029020234942436218, 0.009491964243352413, -0.009160256013274193, 0.042458679527044296, -0.025345927104353905, 0.020821083337068558, 0.008054560981690884, -0.007463439833372831, 0.003587129060178995, -0.013115241192281246, 0.0465412437915802, -0.012383781373500824, -0.009891715832054615, -0.0586528554558754, 0.04722167178988457, 0.03752557933330536, -0.010206413455307484, 0.020259730517864227, 0.01307271420955658, 0.05970751866698265, 0.0013991291634738445, 0.017827201634645462, -0.0250227227807045, -0.07709244638681412, -0.001924334210343659, -0.03704928234219551, 0.055386804044246674, -0.0050606802105903625, 0.047119610011577606, 0.009117729030549526, -0.004367494489997625, 0.0032958209048956633, -0.0150459548458457, -0.06185086444020271, -0.021603574976325035, -0.023134537041187286, -0.023644857108592987, 0.019000940024852753, -0.0028046374209225178, 0.05147434398531914, -0.03075532615184784, -0.03301774710416794, -0.02767639048397541, 0.008101340383291245, -0.009491964243352413, -0.009032675996422768, 0.016168659552931786, -0.00768883153796196, -0.05375377833843231, 0.003125714138150215, 0.010784776881337166, -0.01952827163040638, 0.007518724538385868, 0.006072815973311663, 0.0054179043509066105, -0.020787062123417854, -0.05576103925704956, 0.055488865822553635, -0.03932871297001839, -0.01655139960348606, -0.0020827462431043386, 0.006247175391763449, -0.08029045164585114, -0.015437200665473938, -0.014620686881244183, -0.034310560673475266, 0.010393531061708927, -0.036879174411296844, -0.011184528470039368, 0.041131846606731415, -0.017759159207344055, 0.03146977350115776, -0.014637697488069534, -0.034871913492679596, -0.0014480348909273744, -0.027506284415721893, 0.019919516518712044, 0.019698377698659897, 0.026332546025514603, 0.03448066487908363, 0.00008379093196708709, 0.017606062814593315, 0.006153616588562727, -0.04606494680047035, 0.028203722089529037, 0.004259051289409399, -0.03871632739901543, 0.009985274635255337, -0.040621526539325714, 0.07192119210958481, 0.08369258791208267, 0.05623733624815941, -0.017963288351893425, 0.0315888486802578, 0.027591338381171227, 0.009185772389173508, -0.041540101170539856, 0.045384518802165985, 0.002594130113720894, 0.011397161521017551, 0.02054891176521778, 0.03194607421755791, 0.013514992780983448, -0.03701525926589966, 0.008862568996846676, -0.046507224440574646, 0.05562495440244675, 0.04484017565846443, -0.022879377007484436, 0.012281717732548714, -0.0023623595479875803, -0.020310763269662857, 0.08450910449028015, -0.019392184913158417, 0.04191433638334274, -0.03711732476949692, -0.03490593284368515, -0.07981415092945099, -0.029853759333491325, 0.004592886194586754, 0.06511691957712173, 0.008501091971993446, -0.06443648785352707, 0.01547972671687603, -0.051372282207012177, -0.03269454464316368, 0.06392616778612137, -0.034259527921676636, -0.004154860973358154, 0.009194277226924896, -0.06389214843511581, -0.1103653535246849, 0.01609211228787899, 0.018286490812897682, -0.04511234909296036, 0.05698580667376518, 0.0409957617521286, -0.02168862894177437, 0.09376291930675507, -0.013438444584608078, 0.02869703248143196, 0.01573488675057888, -0.033902302384376526, -0.01789524406194687, 0.03599461913108826, -0.011626806110143661, -0.05052174627780914, 0.006421535275876522, 0.025686141103506088, -0.027438241988420486, 0.009211287833750248, -0.04136999696493149, 0.06640972942113876, 0.03342600539326668, 0.05249498784542084, -0.0465412437915802, -0.014552644453942776, 0.037797752767801285, 0.030619239434599876, 0.006936108227819204, -0.0192220788449049, -0.05171249434351921, 0.010299972258508205, -0.009092213585972786, -0.014314495027065277, -0.009041180834174156, -0.023236600682139397, -0.05116815119981766, -0.0009802409913390875, -0.007599525153636932, -0.004584380891174078, -0.08348846435546875, 0.02044684812426567, 0.03786579519510269, 0.006344987079501152, -0.06140858680009842, -0.029207352548837662, -0.00354885496199131, -0.05848274752497673, 0.01583695225417614, 0.0262985248118639, 0.014076345600187778, 0.12404194474220276, 0.0038274049293249846, -0.025124788284301758, -0.04783405736088753, -0.04926295578479767, 0.042560745030641556, 0.020770050585269928, -0.006464061792939901, 0.03422550484538078, 0.020684998482465744, -0.03650493919849396, 0.01577741466462612, 0.017104247584939003, -0.016415314748883247, -0.04188031703233719, 0.020480869337916374, -0.07239749282598495, 0.036572981625795364, 0.028254754841327667, -0.004643918015062809, 0.01242630835622549, 0.020872116088867188, 0.023134537041187286, 0.04201640188694, -0.07661614567041397, -0.0157944243401289, -0.012264707125723362, 0.018898876383900642, 0.014331505633890629, -0.028339808806777, -0.0014437822392210364, -0.02665575034916401, 0.008862568996846676, -0.03858024254441261, 0.036368854343891144, 0.019051970914006233, 0.06382410228252411, -0.02475055307149887, -0.03932871297001839, -0.08607408404350281, 0.01573488675057888, -0.04419377073645592, 0.020770050585269928, 0.028611978515982628, -0.024835605174303055, -0.011771396733820438, 0.05293726548552513, -0.018269479274749756, -0.04242466017603874, 0.005962246563285589, 0.05429811775684357, -0.0326094925403595, -0.05759819224476814, -0.020412826910614967, 0.041540101170539856, -0.022318024188280106, 0.07273770868778229, 0.015488232485949993, 0.04865057021379471, -0.03182699903845787, -0.00011694848944898695, -0.07729656994342804, -0.062497273087501526, -0.05365171283483505, -0.055386804044246674, 0.00717425812035799, 0.014688730239868164, 0.04899078607559204, -0.08131109178066254, 0.00809708796441555, 0.003582876408472657, 0.01717229001224041, 0.0120180519297719, -0.011439688503742218, -0.009483459405601025, 0.03315383195877075, -0.022386066615581512, 0.020072612911462784, 0.031605858355760574, 0.05858481302857399, 0.051950644701719284, 0.0039953854866325855, -0.015666844323277473, -0.10179196298122406, 0.01345545519143343, -0.037287428975105286, 0.008462817408144474, -0.006459809374064207, -0.028611978515982628, -0.0006533167907036841, -0.06202097237110138, 0.013744636438786983, -0.01635577715933323, 0.04844644293189049, 0.001080710324458778, -0.05147434398531914, -0.04079163074493408, -0.0336301326751709, -0.0037040775641798973, 0.06902937591075897, -0.025499023497104645, 0.019307132810354233, -0.024767562747001648, 0.004584380891174078, 0.055692996829748154, 0.028663011267781258, 0.016925634816288948, -0.02039581537246704, 0.03475283831357956, 0.015369157306849957, 0.011873461306095123, 0.07532332837581635, 0.07709244638681412, 0.002677057171240449, 0.022539163008332253, 0.004193135071545839, 0.051746517419815063, -0.007429418619722128, -0.0015798677923157811, -0.023661868646740913, -0.008309721946716309, 0.0601838193833828, 0.020021580159664154, -0.04868459329009056, 0.03408941999077797, -0.003942226991057396, -0.048310358077287674, 0.010223424062132835, -0.04007718339562416, -0.02485261671245098, 0.05535278096795082, 0.012137126177549362, 0.04766394942998886, -0.03203112632036209, 0.005345609039068222, 0.002375117503106594, -0.015326631255447865, 0.0728737935423851, -0.015658339485526085, 0.00437174690887332, -0.024206209927797318, -0.05494452640414238, -0.04324117302894592, -0.024529414251446724, 0.03932871297001839, 0.030517175793647766, 0.007297585718333721, 0.03403838723897934, 0.02126336097717285, 0.01639830507338047, 0.007518724538385868, 0.031180592253804207, -0.026893898844718933, -0.020480869337916374, -0.023695889860391617, 0.022896386682987213, 0.01577741466462612, 0.004050670191645622, 0.0042058927938342094, -0.03213319182395935, 0.02874806523323059, 0.029955822974443436, 0.005188260227441788, -0.029768705368041992, -0.0005485947476699948, -0.01855866238474846, -0.08063066750764847, 0.014305989257991314, -0.04419377073645592, -0.03817198798060417, 0.024988701567053795, 0.0444999635219574, 0.0577002577483654, -0.024478381499648094, 0.023695889860391617, 0.013770152814686298, 0.029292406514286995, 0.0003170898708049208, 0.0485825277864933, -0.0364028736948967, -0.09274227917194366, -0.01988549530506134, 0.010299972258508205, -0.03783177211880684, 0.000020449373550945893, 0.011482215486466885, 0.009440932422876358, 0.05048772320151329, -0.004431284498423338, -0.04582679644227028, 0.03371518477797508, -0.07634397596120834, -0.04473811388015747, 0.01634727232158184, 0.07675223052501678, 0.012128621339797974, -0.00791847612708807, 0.024835605174303055, -0.015904994681477547, -0.023900019004940987, -0.03141874447464943, -0.03898850083351135, 0.03163988143205643, -0.017538020387291908, -0.01736791431903839, -0.005681570153683424, -0.003047039732336998, 0.014152892865240574, -0.0415060818195343, -0.011779902502894402, 0.014442075043916702, 0.004486569203436375, -0.010963388718664646, -0.005821908358484507, 0.053787797689437866, -0.04817426949739456, -0.0013789290096610785, -0.037185367196798325, -0.0043313466012477875, -0.022318024188280106, 0.029547566547989845, -0.04045141860842705, 0.003259673248976469, 0.0014310241676867008, -0.004928847309201956, -0.05093000456690788, -0.055999189615249634, -0.035178106278181076, -0.028203722089529037, -0.10995709151029587, 0.028169700875878334, -0.015658339485526085, -0.0698118656873703, -0.03633483126759529, 0.06263335794210434, 0.0399751178920269, -0.04946708306670189, 0.02184172533452511, 0.015326631255447865, 0.05058978870511055, 0.031197603791952133, 0.018541650846600533, -0.019239088520407677, 0.0778409093618393, 0.04797014221549034, -0.01757204160094261, 0.08260390907526016, -0.001772301155142486, -0.013897732831537724, 0.01726584881544113, 0.03444664552807808, 0.006838297005742788, -0.06293954700231552, -0.014680224470794201, 0.005651801358908415, -0.017036205157637596, -0.0642663836479187, -0.012179653160274029, -0.03080635704100132, -0.06960774213075638, -0.0027344683185219765, 0.030738314613699913, 0.056611571460962296, 0.05283519998192787, -0.015437200665473938, 0.000890403229277581, -0.018065351992845535, -0.03868230804800987, 0.06511691957712173, 0.001234338153153658, 0.047119610011577606, 0.04562266916036606, -0.0050819432362914085, -0.10968492180109024, 0.01741894520819187, 0.011584279127418995, 0.0647086575627327, -0.01988549530506134, -0.039294689893722534, 0.009296341799199581, 0.01266445778310299, -0.016644958406686783, -0.00009455550753045827, 0.035654403269290924, 0.029020234942436218, -0.011524741537868977, -0.008862568996846676, -0.03439561277627945, 0.03660700097680092, -0.03065326251089573, 0.012570898979902267, 0.03732145205140114, 0.0001626647135708481, -0.014909869059920311, -0.011414172127842903, 0.0586528554558754, 0.040825653821229935, -0.0083522479981184, 0.03854622319340706, -0.03694721683859825, -0.009500470012426376, 0.027251124382019043, -0.025754183530807495, -0.026434611529111862, -0.015267093665897846, 0.044057685881853104, 0.12404194474220276, -0.05065783113241196, 0.0037763728760182858, -0.00585592957213521, -0.007199774030596018, 0.007608030457049608, 0.018133394420146942, -0.02316855825483799, -0.047697972506284714, -0.016823571175336838, -0.002798258326947689, -0.021977810189127922, 0.0007468755939044058, -0.026689771562814713, 0.04116586595773697, -0.01881382241845131, -0.031095540151000023, -0.022011831402778625, -0.0011599163990467787, 0.028203722089529037, 0.01178840734064579, 0.00018419386469759047, 0.011992535553872585, 0.044159747660160065, -0.024682510644197464, 0.00040745915612205863, 0.01242630835622549, 0.030619239434599876, 0.015062965452671051, 0.00874349381774664, -0.007144489325582981, 0.059027090668678284, -0.007374133914709091, -0.02793155051767826, 0.058754920959472656, -0.0018254595343023539, -0.009959758259356022, -0.08233173191547394, 0.03579048812389374, 0.017146773636341095, -0.03155482932925224, 0.03847817704081535, 0.026672760024666786, 0.011159012094140053, 0.040213268250226974, 0.016925634816288948 ]
7,423
pathlib
_make_child_relpath
null
def _make_child_relpath(self, part): # This is an optimization used for dir walking. `part` must be # a single part relative to this path. parts = self._parts + [part] return self._from_parsed_parts(self._drv, self._root, parts)
(self, part)
[ -0.0013556921621784568, 0.04646394029259682, -0.0433482825756073, 0.06593680381774902, -0.00020385651441756636, -0.012885954231023788, 0.06265181303024292, 0.12699691951274872, 0.002851080847904086, -0.02362142689526081, 0.06844287365674973, 0.07199878990650177, 0.040503550320863724, 0.01759330742061138, -0.03129203990101814, 0.05289845168590546, 0.017830368131399155, 0.030106736347079277, -0.06258407980203629, 0.042162977159023285, 0.02683868259191513, 0.00024618880706839263, -0.01049841195344925, -0.026229096576571465, -0.019083403050899506, 0.026330694556236267, -0.0034437330905348063, 0.007763744797557592, -0.008187067694962025, -0.10044609755277634, 0.05147608369588852, 0.00009471853263676167, 0.023553695529699326, -0.00493594678118825, -0.012826688587665558, 0.024840597063302994, -0.02560257911682129, 0.02766839601099491, -0.004957112949341536, -0.01153978705406189, 0.04030035436153412, 0.03151216730475426, -0.022588519379496574, -0.022927176207304, 0.029547950252890587, 0.01048994529992342, 0.03247734531760216, 0.003035226371139288, -0.03103804774582386, 0.02113228663802147, 0.02766839601099491, 0.015832282602787018, -0.01860928162932396, -0.022199060767889023, -0.033611852675676346, 0.04653166979551315, 0.014816307462751865, 0.028023986145853996, -0.0034543161746114492, 0.0495118647813797, -0.027160407975316048, 0.008326764218509197, -0.03633804991841316, 0.05997641012072563, 0.024434207007288933, 0.029293956235051155, -0.005477800499647856, -0.03569459915161133, -0.02057350054383278, 0.06424351036548615, 0.019337397068738937, 0.011184195056557655, -0.0018467468908056617, -0.05919749662280083, 0.03400130942463875, 0.021284684538841248, 0.025619512423872948, -0.021504811942577362, 0.09130232036113739, 0.017982764169573784, -0.07084734737873077, 0.022453054785728455, -0.029564883559942245, -0.05967161804437637, -0.017864232882857323, 0.03373038023710251, -0.0589604377746582, -0.05638663098216057, 0.01818595826625824, 0.002029834082350135, -0.018964873626828194, 0.026381492614746094, -0.009626366198062897, 0.0073150224052369595, 0.030580857768654823, -0.05706394836306572, -0.024654334411025047, 0.039081186056137085, -0.013571737334132195, -0.03735402598977089, -0.019472861662507057, -0.009321574121713638, -0.06116171553730965, 0.013969660736620426, 0.07396300882101059, -0.028718236833810806, 0.0317830964922905, -0.03752335533499718, 0.0005019024247303605, -0.04023262485861778, -0.041722722351551056, -0.019963916391134262, -0.0631936639547348, 0.023452097550034523, -0.06238088756799698, 0.029175424948334694, -0.001612860825844109, -0.04002942889928818, 0.0327482707798481, -0.019642191007733345, 0.053067781031131744, 0.005909590050578117, -0.04588821902871132, 0.006633472628891468, -0.006832434330135584, 0.011395856738090515, -0.008098170161247253, 0.048055633902549744, -0.01489250548183918, -0.06563200801610947, -0.005117975641041994, 0.05232273042201996, -0.05916363000869751, -0.09739816933870316, -0.0377604179084301, 0.05300004780292511, 0.02011631242930889, 0.030800987035036087, -0.03395051136612892, 0.009076046757400036, 0.014359118416905403, -0.025416316464543343, 0.019185001030564308, 0.0008170134969986975, 0.02445114031434059, -0.005532832350581884, -0.03938597813248634, 0.03955530747771263, -0.08480007946491241, 0.0018118227599188685, -0.05804605782032013, -0.023299701511859894, 0.036846037954092026, 0.0026161365676671267, 0.014460715465247631, -0.028345711529254913, -0.02475593239068985, 0.0433482825756073, 0.031529102474451065, -0.008754321373999119, 0.03887799009680748, -0.06807035207748413, 0.04947799816727638, 0.00971103087067604, 0.04463518410921097, 0.05520132929086685, -0.003896688809618354, -0.0481572300195694, -0.010422213934361935, 0.008593457750976086, 0.02853197418153286, 0.005287304986268282, 0.004584588576108217, -0.03549140691757202, -0.06969591230154037, -0.015070301480591297, 0.04226457327604294, -0.0061381845735013485, -0.004347527865320444, 0.03511888161301613, 0.0213862806558609, -0.012149372138082981, 0.06234702095389366, -0.01833835430443287, 0.03413677215576172, 0.04571888968348503, -0.007323489058762789, 0.031071912497282028, 0.061195582151412964, -0.01363946869969368, -0.026246029883623123, 0.06830740720033646, 0.014638511463999748, 0.007475885096937418, 0.015705285593867302, -0.024586603045463562, 0.03799747675657272, 0.015273496508598328, 0.05757193639874458, 0.0612633153796196, -0.026889480650424957, 0.007793377619236708, 0.00909297913312912, 0.020048581063747406, 0.01551902387291193, 0.026076700538396835, 0.010608475655317307, 0.027634529396891594, -0.009634832851588726, 0.0182028915733099, -0.01245416421443224, -0.008601924404501915, 0.005833392031490803, -0.019946983084082603, -0.04395786672830582, -0.05218726769089699, -0.10498411953449249, 0.02473899908363819, 0.05245819315314293, 0.03681217506527901, -0.05730101093649864, -0.05479493737220764, 0.06417577713727951, -0.037116967141628265, -0.04602368175983429, -0.0654965415596962, -0.00006224172102520242, -0.019388196989893913, -0.03076712042093277, 0.004800483584403992, -0.02113228663802147, -0.026076700538396835, 0.03437383100390434, -0.02055656723678112, 0.044567450881004333, -0.008754321373999119, -0.03674444183707237, 0.020387237891554832, 0.05496426671743393, 0.030292998999357224, -0.027329737320542336, -0.001750440918840468, 0.0035093482583761215, 0.004525323398411274, 0.03759108856320381, 0.02506072446703911, 0.013512472622096539, -0.0039157383143901825, 0.03484795615077019, -0.0033781181555241346, -0.027041876688599586, 0.08656109869480133, -0.021623341366648674, -0.002650002483278513, 0.06654638797044754, 0.039081186056137085, -0.014426849782466888, -0.010794738307595253, -0.04615914821624756, 0.03445849567651749, 0.03579619899392128, 0.00020094616047572345, 0.009897293522953987, -0.05218726769089699, -0.03129203990101814, -0.04751377925276756, -0.027448266744613647, 0.0022541952785104513, -0.052221134305000305, -0.014359118416905403, -0.02040417119860649, -0.005287304986268282, -0.03061472438275814, 0.013199212960898876, -0.010430680587887764, 0.004330595023930073, -0.008847451768815517, 0.010523810982704163, -0.02236839011311531, -0.017965830862522125, -0.0342891663312912, 0.008271732367575169, 0.015832282602787018, 0.050256915390491486, -0.02587350644171238, -0.030242199078202248, -0.0015027968911454082, 0.03860706463456154, -0.032663606107234955, 0.010227485559880733, -0.012691225856542587, 0.019066471606492996, -0.04040195420384407, -0.01606934331357479, 0.0036977268755435944, 0.03738789260387421, -0.01587461493909359, -0.009617899544537067, 0.011963109485805035, -0.007437786087393761, -0.05184860900044441, 0.03369651734828949, -0.05665756016969681, 0.06170357018709183, -0.0682058110833168, 0.01272509153932333, 0.01832142286002636, -0.04409332945942879, -0.010837070643901825, -0.01699218712747097, -0.04121473431587219, -0.03425530344247818, 0.009338506497442722, 0.03367958217859268, 0.043280549347400665, 0.021843470633029938, 0.009330040775239468, -0.004847049247473478, 0.009973491542041302, 0.0170514527708292, -0.046226877719163895, 0.047615379095077515, 0.004006752744317055, 0.009838027879595757, 0.050968095660209656, -0.010303683578968048, 0.007734112441539764, 0.005558231845498085, 0.016424935311079025, 0.051137425005435944, 0.01350400596857071, 0.0017758402973413467, -0.017965830862522125, -0.04206138104200363, 0.04544796422123909, 0.05022304877638817, 0.04808950051665306, -0.032240282744169235, 0.011522853747010231, -0.011158796027302742, 0.07152466475963593, 0.049715060740709305, -0.005168774630874395, 0.038234539330005646, -0.007666380610316992, 0.03538980707526207, 0.01573915220797062, 0.03284987062215805, 0.009423171170055866, -0.02155561000108719, -0.058824971318244934, -0.04290802404284477, -0.023384366184473038, 0.009423171170055866, 0.010583076626062393, 0.05801219120621681, -0.023587560281157494, 0.005570931360125542, -0.03312079608440399, 0.056962352246046066, 0.015375093556940556, -0.022469988092780113, 0.03620258718729019, -0.011378924362361431, 0.0023557927925139666, -0.043009623885154724, -0.03342558816075325, 0.009838027879595757, -0.04348374530673027, 0.03728629648685455, -0.035863928496837616, -0.0034924151841551065, 0.08127802610397339, -0.042162977159023285, 0.038234539330005646, -0.03820067271590233, -0.022469988092780113, -0.013884996064007282, 0.03691377118229866, 0.00046671368181705475, -0.014917904511094093, 0.006328679621219635, 0.011192661710083485, 0.026601621881127357, -0.030123669654130936, -0.0237907562404871, 0.08852531760931015, -0.041587259620428085, 0.026127498596906662, -0.035288210958242416, -0.023130372166633606, 0.038370002061128616, 0.030428461730480194, -0.004006752744317055, -0.034881819039583206, -0.09137005358934402, 0.04771697521209717, -0.019659122452139854, 0.013021417893469334, -0.04937640205025673, 0.010583076626062393, -0.030530059710144997, -0.052356597036123276, 0.03549140691757202, 0.034069038927555084, -0.030242199078202248, 0.018660081550478935, 0.06556427478790283, -0.025246987119317055, -0.10369721800088882, -0.11243460327386856, -0.008864385075867176, -0.011819180101156235, -0.001189537812024355, 0.03076712042093277, -0.0141135910525918, 0.043145086616277695, -0.05638663098216057, 0.010447612963616848, -0.012581161223351955, -0.04907160997390747, -0.025077657774090767, 0.014917904511094093, 0.005266138818114996, 0.019625257700681686, -0.012742023915052414, -0.005905356723815203, 0.021369347348809242, 0.0014996218960732222, -0.00755208358168602, -0.004049085080623627, 0.04744604974985123, -0.07450485974550247, -0.015138032846152782, 0.05022304877638817, 0.0060958522371947765, 0.02655082195997238, 0.037963613867759705, -0.041722722351551056, -0.0005093105719424784, 0.0016710677882656455, 0.012208636850118637, -0.016788993030786514, -0.009372372180223465, 0.017034519463777542, 0.018118226900696754, -0.05885883793234825, -0.03303613141179085, -0.06891699135303497, -0.026195231825113297, 0.023147305473685265, -0.00011886117863468826, 0.04114700108766556, -0.017931964248418808, -0.04348374530673027, -0.08791573345661163, -0.009126844815909863, -0.04768310859799385, -0.004415259696543217, 0.005778359714895487, -0.021572543308138847, 0.06227928772568703, 0.05973935127258301, -0.039521440863609314, -0.03242654725909233, -0.0481572300195694, 0.010058156214654446, -0.032206419855356216, -0.021708006039261818, -0.02516232244670391, 0.05090036615729332, -0.020522702485322952, 0.042603231966495514, 0.05449014529585838, 0.028887566179037094, -0.008394496515393257, -0.04920707270503044, 0.012377966195344925, -0.02477286569774151, -0.025788841769099236, -0.04226457327604294, -0.02602590247988701, -0.018118226900696754, 0.04602368175983429, -0.032663606107234955, 0.005452401004731655, -0.06881539523601532, 0.0732179582118988, -0.03721856325864792, -0.04419492930173874, 0.02599203586578369, 0.07613041996955872, -0.0342891663312912, 0.05984094738960266, 0.004411026369780302, 0.06210995838046074, 0.011099530383944511, 0.030580857768654823, -0.007454718928784132, -0.061026252806186676, 0.0006281055975705385, -0.018355287611484528, -0.010413747280836105, 0.08317451924085617, -0.03129203990101814, 0.024434207007288933, -0.09380839020013809, 0.019913116469979286, -0.03522047773003578, 0.002501839306205511, 0.02516232244670391, -0.034187570214271545, -0.021623341366648674, -0.011836112476885319, -0.00513914180919528, 0.01601007767021656, -0.027753060683608055, -0.008500327356159687, 0.015832282602787018, -0.0026097865775227547, -0.0027240838389843702, -0.000028921564080519602, 0.0341029055416584, -0.03704923391342163, 0.008470694534480572, -0.01761023886501789, -0.018931007012724876, 0.05943455919623375, 0.029615681618452072, 0.017576374113559723, -0.02067509852349758, 0.005240739323198795, 0.06962817907333374, -0.01888020895421505, 0.0618390329182148, 0.04714125767350197, -0.02209746465086937, -0.01832142286002636, -0.007090661209076643, 0.005249205976724625, -0.01572221890091896, -0.016805926337838173, 0.02770226076245308, -0.035457540303468704, -0.02252078615128994, 0.015705285593867302, 0.05730101093649864, 0.017677970230579376, 0.04964732751250267, 0.02236839011311531, 0.02040417119860649, 0.007141460198909044, -0.018710879608988762, 0.023824622854590416, -0.0037294761277735233, -0.008136269636452198, -0.041621122509241104, -0.008424129337072372, -0.01601007767021656, -0.02390928752720356, 0.012640426866710186, 0.08981221914291382, 0.021470945328474045, 0.02015017718076706, 0.03647351637482643, 0.00713722687214613, -0.0005389431607909501, -0.0029315121937543154, 0.0029547950252890587, -0.0294802188873291, -0.03227414935827255, 0.10044609755277634, -0.006675804499536753, 0.021741872653365135, -0.0023515596985816956, -0.003856473136693239, 0.03032686375081539, -0.06332913041114807, 0.009389305487275124, 0.009025247767567635, 0.0250437930226326, -0.007632514927536249, -0.0005423826514743268, 0.051137425005435944, -0.02167414128780365, -0.04101153835654259, 0.06962817907333374, 0.05889270454645157, -0.011497454717755318, -0.10396814346313477, 0.004453358706086874, -0.02043803781270981, 0.02487446367740631, 0.04863135516643524, 0.058791108429431915, -0.05943455919623375, -0.07680773735046387, -0.04317895323038101, -0.017965830862522125, -0.012809756211936474, 0.04619301110506058, 0.01774570345878601, -0.0017800735076889396, 0.09489209949970245, 0.006629239302128553, -0.03593166172504425, 0.026770951226353645, -0.05340643599629402, -0.07017002999782562, 0.0514422170817852, 0.04781857505440712, 0.0346786268055439, 0.03945371136069298, -0.024942195042967796, -0.026821749284863472, -0.033611852675676346, -0.05035851150751114, -0.03281600400805473, -0.033357858657836914, -0.01957445777952671, -0.04548183083534241, -0.04693806171417236, 0.004470291547477245, 0.025924304500222206, -0.07179559022188187, 0.01930353231728077, 0.03772655129432678, -0.024722067639231682, 0.004102000501006842, -0.01564601995050907, 0.008182834833860397, -0.009965024888515472, -0.0017059919191524386, -0.023570628836750984, 0.03667670860886574, -0.013004484586417675, -0.005964621901512146, -0.01273355819284916, 0.011209595017135143, 0.025416316464543343, -0.014071258716285229, -0.018067428842186928, -0.06766396015882492, -0.023807689547538757, -0.01999778114259243, -0.0525936558842659, 0.02782079204916954, -0.02683868259191513, -0.08107483386993408, -0.04040195420384407, 0.02097989059984684, 0.07768824696540833, -0.007082195021212101, 0.006608073133975267, 0.012631960213184357, 0.041892051696777344, 0.006620772648602724, -0.014596179127693176, -0.0075647830963134766, 0.06471762806177139, 0.027312804013490677, -0.0464300736784935, 0.019811518490314484, -0.03650737926363945, -0.018389154225587845, 0.05184860900044441, 0.01711071841418743, -0.04233230650424957, -0.07226971536874771, -0.03931824490427971, -0.0268725473433733, 0.008652723394334316, -0.04297575727105141, -0.032206419855356216, -0.035288210958242416, -0.02672015130519867, 0.006248248275369406, -0.007937307469546795, 0.033086929470300674, 0.030800987035036087, -0.030597791075706482, -0.004690419416874647, -0.03850546479225159, 0.023011840879917145, 0.09130232036113739, 0.02964954823255539, -0.0029992437921464443, 0.004034268669784069, 0.019676055759191513, -0.04544796422123909, 0.025213122367858887, 0.019269665703177452, -0.005257672630250454, 0.027482133358716965, -0.03193549066781998, 0.005820692051202059, 0.034746356308460236, -0.016424935311079025, -0.00909297913312912, 0.01616247370839119, 0.04602368175983429, -0.017796501517295837, 0.02123388461768627, -0.039352111518383026, 0.04473678022623062, -0.04737831652164459, 0.025399383157491684, -0.001097465050406754, -0.10803204774856567, 0.036270320415496826, -0.019506726413965225, 0.0014075491344556212, 0.015332761220633984, -0.016348736360669136, 0.05001985281705856, -0.06722370535135269, 0.014164390042424202, 0.004072367679327726, 0.0021885803434997797, -0.030259132385253906, 0.010295216925442219, -0.037252429872751236, 0.0976690948009491, -0.008479161188006401, 0.017305446788668633, -0.007188025396317244, 0.033510252833366394, 0.010523810982704163, -0.018795544281601906, 0.02209746465086937, -0.052085671573877335, 0.002046766923740506, 0.02335049957036972, -0.024552738294005394, 0.038099076598882675, -0.0032765204086899757, 0.04964732751250267, 0.008771253749728203, -0.052525926381349564, -0.014646978117525578, 0.00011390036524971947, 0.00043999141780659556, -0.01942206174135208, -0.0008381796651519835, -0.017982764169573784, 0.04487224295735359, -0.03119044378399849, 0.006002720911055803, -0.010574609972536564, 0.025670310482382774, 0.026466157287359238, -0.028904499486088753, -0.022199060767889023, 0.04385627061128616, 0.021437080577015877, -0.04822496324777603, 0.015840748324990273, 0.049410268664360046, -0.004068134818226099, -0.03257894143462181, -0.012140905484557152, 0.0006238723872229457, -0.025365518406033516, 0.05621730163693428, 0.01711071841418743, 0.01805049553513527, 0.000728644838090986, 0.011370457708835602 ]
7,424
pathlib
absolute
Return an absolute version of this path. This function works even if the path doesn't point to anything. No normalization is done, i.e. all '.' and '..' will be kept along. Use resolve() to get the canonical path to a file.
def absolute(self): """Return an absolute version of this path. This function works even if the path doesn't point to anything. No normalization is done, i.e. all '.' and '..' will be kept along. Use resolve() to get the canonical path to a file. """ # XXX untested yet! if self.is_absolute(): return self # FIXME this must defer to the specific flavour (and, under Windows, # use nt._getfullpathname()) return self._from_parts([self._accessor.getcwd()] + self._parts)
(self)
[ 0.07779206335544586, 0.019553139805793762, -0.014612292870879173, 0.05515527352690697, 0.020078763365745544, -0.07113418728113174, 0.030889056622982025, 0.002171476138755679, 0.006057794205844402, -0.017582057043910027, 0.038650743663311005, 0.02288207970559597, -0.01069640927016735, 0.025159776210784912, -0.011756413616240025, 0.058309007436037064, 0.028190862387418747, -0.011116906069219112, -0.013534767553210258, 0.024651674553751945, 0.048882849514484406, -0.04352150484919548, -0.03693370893597603, -0.04674532264471054, -0.014507168903946877, 0.040052399039268494, -0.006473911460489035, -0.028611360117793083, -0.010556243360042572, -0.054980065673589706, 0.03724908456206322, 0.01920272596180439, 0.05035459250211716, -0.010021860711276531, 0.00678490474820137, -0.004936466924846172, -0.018046356737613678, 0.0260708536952734, -0.026526393368840218, -0.08522085845470428, -0.008926814422011375, -0.030538640916347504, 0.050950296223163605, 0.02095479890704155, 0.0481119379401207, -0.0030726988334208727, -0.0029434834141284227, 0.01897495612502098, -0.023845721036195755, -0.0114848418161273, 0.02997797727584839, 0.0327637754380703, -0.05308782681822777, 0.00932979118078947, -0.026053333654999733, 0.044257376343011856, 0.019798431545495987, 0.03540940582752228, -0.017923712730407715, -0.027752844616770744, -0.013622371479868889, -0.053227994590997696, 0.025632835924625397, -0.06261910498142242, 0.024599112570285797, 0.04867260158061981, -0.021550504490733147, -0.03770462051033974, -0.019325371831655502, 0.08634218573570251, -0.07323667407035828, 0.022041084244847298, -0.03970198705792427, -0.020797112956643105, 0.058168839663267136, -0.047095734626054764, -0.01173013262450695, 0.05550568923354149, 0.040402814745903015, 0.013604850508272648, -0.09692470729351044, -0.023652993142604828, 0.010924178175628185, -0.03696875274181366, -0.026035811752080917, -0.025685397908091545, 0.013464684598147869, -0.024020928889513016, 0.028418632224202156, 0.015427007339894772, 0.045203495770692825, 0.011493601836264133, -0.016653459519147873, -0.013009145855903625, 0.026911849156022072, -0.04261042922735214, -0.024126052856445312, 0.004316671285778284, 0.016802385449409485, -0.03127451241016388, -0.036723461002111435, 0.06724458187818527, -0.02265430986881256, 0.0052693611942231655, 0.028786567971110344, 0.07046839594841003, 0.02678920328617096, -0.03411287069320679, 0.024616632610559464, -0.03251848369836807, -0.09447180479764938, 0.020043721422553062, -0.0010857380693778396, 0.033219315111637115, -0.04218992963433266, -0.037073876708745956, -0.04523853957653046, -0.029995499178767204, 0.024301258847117424, -0.004682416561990976, -0.02431878075003624, 0.0551903173327446, -0.05091525614261627, -0.03756445646286011, 0.034568410366773605, 0.044572751969099045, -0.012930302880704403, -0.04303092509508133, -0.02713961899280548, -0.034393202513456345, 0.006145397666841745, -0.0009045079350471497, -0.010600044392049313, 0.030836494639515877, -0.015269320458173752, 0.020884716883301735, 0.027612678706645966, 0.037529416382312775, -0.024301258847117424, 0.10771747678518295, 0.036863625049591064, 0.003101170063018799, 0.06517713516950607, 0.014165514148771763, -0.0010572668397799134, 0.03952677920460701, 0.029680125415325165, -0.001985318260267377, -0.047270942479372025, 0.0015144485514611006, 0.012991624884307384, -0.04467787593603134, 0.019640743732452393, 0.0311343465000391, 0.04804185777902603, -0.036898668855428696, -0.0140691502019763, 0.007980694994330406, 0.02535250410437584, -0.02279447577893734, -0.0572577640414238, -0.00477878050878644, 0.03728412464261055, -0.03194030001759529, 0.016522053629159927, 0.016320565715432167, -0.010862856172025204, -0.01076649222522974, 0.016224199905991554, 0.007682842202484608, -0.0409284383058548, 0.023880762979388237, -0.025650355964899063, -0.0019831282552331686, -0.05217675119638443, 0.006907549686729908, -0.004524729680269957, 0.04979392886161804, 0.02952243946492672, 0.03158988431096077, -0.0025930688716471195, -0.03745933249592781, 0.008357390761375427, -0.03872082382440567, 0.03257104754447937, 0.053052786737680435, -0.004748119041323662, 0.022864559665322304, 0.055435605347156525, 0.02265430986881256, -0.05669710040092468, 0.0747784972190857, 0.0460444912314415, -0.02741995081305504, 0.009084501303732395, -0.036898668855428696, 0.024196134880185127, 0.006276803556829691, 0.0003714943304657936, 0.014918905682861805, -0.032010383903980255, -0.014997749589383602, 0.0102321095764637, -0.0140691502019763, -0.004012248478829861, 0.04310100898146629, -0.019728347659111023, 0.004577292129397392, -0.05771329998970032, 0.06587796658277512, -0.017757264897227287, -0.015733620151877403, -0.0377747043967247, -0.07428791373968124, 0.003153732279315591, -0.01391146332025528, -0.03780974820256233, 0.03574230149388313, -0.015584694221615791, 0.11031054705381393, 0.018834790214896202, -0.06016620621085167, 0.051125504076480865, 0.010775252245366573, -0.0057380408979952335, 0.01379757933318615, 0.009154584258794785, 0.012422201223671436, 0.003915884532034397, -0.0067192018032073975, -0.026491351425647736, -0.07309650629758835, -0.020026199519634247, -0.018817270174622536, 0.03861569985747337, 0.0500742606818676, 0.020026199519634247, 0.011011782102286816, -0.014218077063560486, 0.010372275486588478, -0.02342522330582142, -0.010731450282037258, 0.024126052856445312, 0.025072172284126282, -0.055610813200473785, -0.042014721781015396, 0.016373127698898315, 0.0009242187952622771, 0.032150547951459885, -0.05361345037817955, 0.009119542315602303, 0.08837458491325378, -0.024196134880185127, 0.029802771285176277, 0.04310100898146629, -0.003793239127844572, -0.06177811324596405, -0.014393283985555172, -0.011204509995877743, 0.05918504297733307, 0.05235195532441139, 0.009049459360539913, -0.0026018291246145964, -0.009452437050640583, -0.022917121648788452, -0.05084517225623131, -0.04989905282855034, -0.0520365834236145, 0.004581672139465809, 0.02722722291946411, 0.03556709364056587, 0.010600044392049313, -0.057362888008356094, -0.017091477289795876, -0.00784928910434246, 0.062163569033145905, -0.012483524158596992, -0.021638108417391777, -0.022584227845072746, 0.03038095496594906, -0.05820388346910477, 0.010013099759817123, -0.005654817447066307, -0.02009628340601921, 0.021743232384324074, -0.03980711102485657, -0.040718190371990204, -0.03328939527273178, -0.03574230149388313, 0.03388510271906853, 0.07898347079753876, 0.001507878303527832, -0.026228541508316994, -0.042295053601264954, 0.006062174215912819, -0.0017192221712321043, 0.03446328639984131, -0.06044653803110123, -0.001639283844269812, -0.0377747043967247, -0.04369671270251274, 0.0009017703123390675, 0.01184401661157608, 0.05329807475209236, 0.017801066860556602, -0.016854947432875633, -0.01222947333008051, 0.002520795678719878, 0.06275927275419235, 0.07428791373968124, -0.00040845214971341193, -0.05441940203309059, 0.03633800521492958, 0.04331125691533089, -0.006780524738132954, 0.05631164461374283, 0.03770462051033974, -0.029575001448392868, 0.02946987748146057, 0.00017137468967121094, -0.03460345044732094, 0.037073876708745956, 0.0102321095764637, -0.01503279060125351, -0.035777341574430466, -0.010056901723146439, -0.0204642191529274, 0.038019996136426926, 0.024476466700434685, 0.029539959505200386, 0.005199278239160776, -0.013473445549607277, -0.03395518660545349, 0.006154158152639866, 0.006434489972889423, 0.009250948205590248, 0.00888301245868206, -0.0007813152624294162, 0.05571593716740608, -0.0388609915971756, 0.040402814745903015, 0.027630198746919632, -0.007323667407035828, -0.03073136880993843, 0.017065195366740227, 0.02934723161160946, 0.011756413616240025, 0.03038095496594906, 0.006149778142571449, -0.061672989279031754, -0.007954414002597332, -0.048392269760370255, -0.06692920625209808, -0.035602133721113205, -0.04481803998351097, 0.06496688723564148, -0.013806339353322983, 0.05771329998970032, 0.016574615612626076, 0.03612775728106499, 0.0672796219587326, -0.06293448060750961, -0.04450266808271408, -0.0316774882376194, -0.015435767360031605, 0.001038651098497212, -0.006894409190863371, -0.0026062093675136566, 0.009522520005702972, 0.0068418472073972225, 0.0001706902839941904, -0.014235597103834152, 0.09846653044223785, -0.065422423183918, 0.0408233143389225, 0.029312189668416977, -0.02202356420457363, -0.025475148111581802, 0.007928133010864258, -0.016811145469546318, 0.04814698174595833, 0.027209701016545296, -0.018554458394646645, -0.024756798520684242, -0.018116440623998642, 0.01370997540652752, 0.0366884209215641, -0.027332346886396408, -0.038475535809993744, -0.013526007533073425, 0.0317300520837307, -0.057538095861673355, 0.032641131430864334, -0.046780362725257874, -0.014270639047026634, -0.020709509029984474, 0.05687230825424194, 0.04657011479139328, 0.01597891002893448, -0.05077509209513664, 0.01139723788946867, 0.03791487216949463, -0.014410804957151413, 0.004721838049590588, -0.024826882407069206, -0.013972786255180836, 0.04926830902695656, 0.05978074669837952, -0.03637304529547691, 0.013578569516539574, -0.03584742546081543, -0.019763389602303505, -0.01601395197212696, -0.0006044653709977865, 0.04127885401248932, 0.03299154341220856, -0.011879058554768562, -0.07709123194217682, 0.09678453952074051, -0.0459393672645092, -0.05291261896491051, 0.00036027011810801923, -0.06612325459718704, -0.036232881247997284, 0.04106860235333443, -0.022952163591980934, -0.0398421511054039, 0.005370105151087046, -0.04534366354346275, 0.0030595583375543356, -0.012378399260342121, -0.027157139033079147, -0.060586702078580856, -0.010635086335241795, 0.025072172284126282, 0.0017312676645815372, 0.010722690261900425, -0.00688564870506525, -0.02857632003724575, 0.0005527244647964835, -0.0470256544649601, -0.0020367854740470648, 0.013534767553210258, 0.04380183666944504, 0.02135777659714222, -0.017599578946828842, -0.0603063702583313, 0.03325435519218445, -0.011870298534631729, -0.003405592869967222, -0.0033836918883025646, 0.007603999227285385, 0.029364751651883125, -0.012912781909108162, -0.07155468314886093, -0.023390181362628937, -0.04429242014884949, -0.007520775776356459, -0.009303510189056396, 0.03516411408782005, -0.004507209174335003, 0.023127369582653046, 0.10750722885131836, -0.075759656727314, -0.007731024641543627, 0.004831342957913876, 0.0367935448884964, 0.0005814693868160248, -0.03498890995979309, -0.010118224658071995, 0.020026199519634247, -0.05308782681822777, -0.030608724802732468, 0.0006028228090144694, 0.007428791839629412, -0.01217691134661436, 0.018239084631204605, 0.03288641944527626, 0.017687182873487473, -0.06763003766536713, -0.05540056526660919, -0.029539959505200386, -0.03731916472315788, 0.028681444004178047, 0.03181765601038933, 0.009102022275328636, 0.0005814693868160248, -0.008462514728307724, -0.009259708225727081, -0.016206679865717888, 0.0755494087934494, 0.08739342540502548, -0.06777020543813705, 0.0030617485754191875, -0.06966244429349899, 0.017406851053237915, -0.006894409190863371, 0.03288641944527626, -0.030486078932881355, -0.026543913409113884, 0.014007828198373318, -0.028786567971110344, -0.008664003573358059, 0.030889056622982025, -0.043276216834783554, 0.05452452972531319, -0.03605767339468002, -0.07323667407035828, -0.046500030905008316, -0.02211116813123226, -0.01597891002893448, -0.007547056768089533, 0.005685478448867798, 0.005519031547009945, 0.021462900564074516, 0.0419095978140831, 0.0010156551143154502, -0.029539959505200386, 0.08690284937620163, 0.006942591164261103, -0.04867260158061981, -0.04642994701862335, -0.04075323045253754, 0.012027984485030174, -0.06293448060750961, -0.007003914099186659, -0.004494068678468466, 0.08178678900003433, -0.014375763013958931, 0.0003808022302109748, 0.00030989799415692687, -0.0229696836322546, 0.033674854785203934, 0.04720086231827736, 0.060867033898830414, 0.10119976848363876, -0.034340642392635345, -0.03823024407029152, -0.10827814042568207, 0.032413359731435776, -0.005606635473668575, -0.0026697220746427774, 0.013534767553210258, -0.023214973509311676, 0.017319247126579285, -0.061672989279031754, -0.022917121648788452, -0.007507634814828634, 0.10890889167785645, 0.027735324576497078, 0.02701697312295437, 0.01341212261468172, 0.046500030905008316, 0.06002603843808174, 0.014708656817674637, -0.025597793981432915, 0.0014717417070642114, 0.046009451150894165, -0.07169485092163086, -0.025545231997966766, -0.040402814745903015, 0.0000311916992359329, -0.0007484639063477516, 0.025948209688067436, -0.01512039452791214, 0.05077509209513664, -0.001495832810178399, 0.04211984574794769, 0.02216373011469841, -0.0418044738471508, -0.04769144207239151, 0.05844917148351669, 0.0030726988334208727, -0.03942165523767471, 0.014226837083697319, 0.05455956980586052, 0.037879828363657, 0.007284245453774929, 0.021235130727291107, 0.07253584265708923, 0.04061306267976761, -0.0418044738471508, -0.01770470291376114, 0.005190517753362656, -0.05340320244431496, -0.01494518667459488, 0.03889603167772293, 0.060867033898830414, -0.026543913409113884, -0.10042885690927505, 0.04513341560959816, -0.0336923748254776, 0.00226017483510077, 0.04110364615917206, 0.014594772830605507, -0.05186137557029724, -0.059605542570352554, -0.04849739372730255, 0.01848437637090683, -0.0015013080555945635, 0.019675785675644875, -0.002687242813408375, 0.012168150395154953, 0.05939529091119766, -0.005654817447066307, -0.0367935448884964, 0.02934723161160946, 0.01139723788946867, -0.06125248968601227, 0.06016620621085167, -0.0015637256437912583, 0.005002169869840145, -0.023162411525845528, -0.004914566408842802, 0.009855413809418678, 0.009224667213857174, -0.0065702758729457855, -0.01825660653412342, -0.07505883276462555, 0.010819054208695889, -0.016197919845581055, -0.009855413809418678, -0.032868899405002594, 0.030889056622982025, -0.04674532264471054, -0.00020217285782564431, 0.0399472750723362, 0.03204542398452759, -0.010871616192162037, 0.0642310157418251, 0.04492316395044327, -0.01146732084453106, -0.05010930448770523, 0.029802771285176277, 0.015427007339894772, -0.02989037334918976, 0.006197960115969181, 0.04422233626246452, 0.0644412636756897, 0.041839513927698135, -0.03780974820256233, -0.06868128478527069, -0.040578022599220276, -0.007774826139211655, -0.03563717380166054, 0.00021367083536460996, -0.036408089101314545, 0.00948747806251049, 0.007875570096075535, -0.02486192248761654, 0.018291648477315903, 0.017003873363137245, 0.006881268694996834, -0.022689351812005043, 0.014261878095567226, 0.022531665861606598, 0.037844788283109665, -0.04667523875832558, 0.019850993528962135, -0.002595258876681328, -0.008677144534885883, -0.049198225140571594, -0.014594772830605507, 0.0038501815870404243, 0.039281487464904785, 0.03348212316632271, -0.026946891099214554, 0.03435816243290901, -0.010573763400316238, -0.005129195284098387, -0.003979397006332874, -0.017888670787215233, -0.0723956748843193, -0.02049926109611988, -0.026859287172555923, 0.03211550787091255, 0.0086815245449543, 0.016259241849184036, 0.019553139805793762, -0.0032676171977072954, 0.04162926599383354, 0.026508871465921402, -0.0418044738471508, -0.034568410366773605, 0.033937662839889526, 0.0012363068526610732, 0.04310100898146629, 0.05571593716740608, 0.022181250154972076, -0.07470841705799103, -0.009522520005702972, -0.03942165523767471, 0.024108530953526497, 0.02118256874382496, 0.030433516949415207, 0.040087442845106125, 0.01572486013174057, -0.0076565612107515335, -0.00008493450150126591, 0.01586502604186535, 0.04590432718396187, 0.00469993706792593, -0.0013403362827375531, -0.03001301921904087, 0.052877578884363174, 0.02006124146282673, 0.020446697250008583, 0.021725712344050407, -0.07218542695045471, 0.04029769077897072, -0.001583436387591064, 0.05333311855792999, 0.0006844036979600787, -0.03763454034924507, 0.09152831882238388, -0.06097215786576271, -0.0027310445439070463, -0.03458593040704727, -0.0022667450830340385, -0.007735404651612043, -0.027244742959737778, -0.07046839594841003, 0.043416380882263184, -0.03493634611368179, 0.04383688047528267, 0.015882546082139015, -0.041033562272787094, -0.03756445646286011, 0.007717883680015802, 0.027349866926670074, -0.028593840077519417, -0.015356924384832382, 0.04625473916530609, 0.0255277119576931, -0.017003873363137245, 0.005532172042876482, 0.0173630490899086, -0.0021528603974729776, -0.030223269015550613, -0.006167298648506403, 0.03423551842570305, -0.0198685135692358, -0.03516411408782005, -0.003898363560438156, -0.0061935801059007645, -0.02006124146282673, -0.029364751651883125, 0.008471275679767132, -0.00939987413585186, 0.03423551842570305, -0.005076632834970951, -0.017599578946828842, 0.05890471115708351, 0.05554072931408882, 0.015497090294957161, -0.03563717380166054, -0.015523371286690235, 0.01690750941634178, -0.009075741283595562, -0.03444576635956764, -0.018922394141554832, 0.008243505842983723, -0.008199703879654408, 0.02894425392150879, 0.008379291743040085, 0.023810679093003273, -0.03956181928515434, 0.03476113826036453 ]
7,425
pathlib
as_posix
Return the string representation of the path with forward (/) slashes.
def as_posix(self): """Return the string representation of the path with forward (/) slashes.""" f = self._flavour return str(self).replace(f.sep, '/')
(self)
[ -0.002650156617164612, 0.010839033871889114, -0.00898286048322916, 0.06494905799627304, 0.016288351267576218, -0.06777589023113251, 0.029971249401569366, 0.07458753883838654, 0.05316490679979324, -0.018970437347888947, 0.052960559725761414, -0.018646884709596634, 0.018067894503474236, 0.04935038462281227, 0.03198068588972092, 0.03702130541205406, -0.00150388409383595, 0.01732712797820568, 0.01798274926841259, 0.03538651019334793, 0.004704293794929981, -0.009068005718290806, 0.004444600082933903, -0.07615421712398529, -0.02695709466934204, 0.03647637367248535, -0.024113232269883156, -0.00130698480643332, -0.0028970788698643446, -0.06263309717178345, 0.0234831552952528, 0.022853076457977295, 0.031231403350830078, -0.028881385922431946, 0.04056335985660553, 0.038996681571006775, -0.038622040301561356, 0.013265683315694332, -0.005445060785859823, -0.06334832310676575, -0.005968706216663122, -0.010472907684743404, -0.02385779470205307, -0.02676977403461933, 0.007965370081365108, 0.008569903671741486, 0.015658274292945862, 0.026309987530112267, 0.030124511569738388, 0.03504592552781105, 0.038451749831438065, 0.043969184160232544, -0.04897574335336685, -0.016450129449367523, -0.0495547354221344, 0.044650349766016006, 0.03858798369765282, -0.035114042460918427, -0.041551049798727036, -0.022325174883008003, 0.020315738394856453, 0.0017742213094606996, 0.05255185812711716, -0.010413305833935738, 0.032355327159166336, 0.006637099198997021, 0.0058069294318556786, -0.03267887979745865, 0.027774492278695107, 0.004576575476676226, -0.03909885510802269, -0.024709250777959824, -0.024113232269883156, -0.025935348123311996, 0.04880545288324356, 0.01563272997736931, 0.000760988739784807, 0.03998437151312828, 0.02644622139632702, -0.013836158439517021, -0.0240621455013752, -0.02883029729127884, -0.00582821574062109, -0.021950533613562584, -0.0010637877276167274, -0.017659196630120277, -0.029256025329232216, -0.02276793122291565, -0.05834176018834114, 0.0044701434671878815, -0.007288462948054075, 0.021609950810670853, -0.03909885510802269, 0.034228529781103134, -0.014908993616700172, -0.03647637367248535, 0.03213394805788994, -0.02273387275636196, -0.0012995345750823617, -0.06825270503759384, -0.003378151450306177, 0.03913291543722153, -0.07056866586208344, -0.025356357917189598, 0.030771616846323013, -0.0059601916000247, 0.0006407205946743488, -0.00415297644212842, -0.04866922274231911, -0.01533472165465355, -0.06188381835818291, 0.034586139023303986, -0.00491715781390667, -0.0127462949603796, 0.008889200165867805, 0.0006630712887272239, -0.02443678490817547, -0.042504679411649704, 0.08800648152828217, -0.015726391226053238, -0.02259764075279236, 0.0670606717467308, -0.041585106402635574, 0.003782592946663499, -0.000007321356861211825, 0.044650349766016006, -0.015726391226053238, 0.036782898008823395, 0.0018253086600452662, 0.005006561055779457, -0.00468300748616457, 0.08766590058803558, -0.002828962402418256, -0.011801179498434067, 0.03189554065465927, 0.04233438894152641, -0.057899001985788345, 0.03426258638501167, 0.028115075081586838, 0.07220346480607986, 0.025782085955142975, -0.08528182655572891, -0.003629331011325121, 0.015232546254992485, -0.03007342293858528, 0.06365484744310379, 0.03426258638501167, 0.023449096828699112, -0.0264291912317276, 0.015998857095837593, 0.028660006821155548, 0.0247773677110672, 0.08650792390108109, -0.00916166603565216, 0.04219815507531166, -0.022665757685899734, 0.025458531454205513, -0.024317581206560135, 0.028711093589663506, -0.015343235805630684, -0.02935820072889328, -0.07227157801389694, 0.004742609336972237, -0.02881326898932457, 0.021354515105485916, 0.025935348123311996, 0.019498340785503387, -0.025186065584421158, 0.03869015723466873, 0.01275481004267931, 0.05374389886856079, 0.0015815794467926025, -0.03538651019334793, 0.03702130541205406, 0.019566457718610764, 0.019855951890349388, -0.007407666649669409, 0.04383295029401779, 0.028115075081586838, -0.03923508897423744, 0.07199911028146744, -0.039371322840452194, 0.038281459361314774, -0.009612937457859516, 0.037327829748392105, 0.04584238678216934, -0.01927696168422699, -0.019328050315380096, 0.0637570172548294, 0.043049611151218414, -0.01340191625058651, 0.042845264077186584, 0.02000921405851841, 0.025594765320420265, -0.0024351640604436398, -0.06930851191282272, 0.031997714191675186, -0.016382012516260147, -0.03593144193291664, -0.0019253547070547938, 0.00010895974992308766, 0.028660006821155548, -0.008391098119318485, -0.01093269418925047, -0.005517434328794479, -0.020860670134425163, 0.008293180726468563, 0.0005763292429037392, -0.021541835740208626, 0.042095981538295746, 0.01522403210401535, -0.027195502072572708, -0.03155495598912239, -0.02126936987042427, 0.002001985674723983, 0.01438960526138544, -0.04039306938648224, 0.06791212409734726, 0.010225986130535603, 0.0458083301782608, 0.004248765297234058, -0.009093549102544785, 0.016841799020767212, -0.02663354203104973, -0.047817766666412354, -0.04587644711136818, -0.03811116889119148, 0.04086988419294357, 0.024317581206560135, -0.009357500821352005, 0.004955473355948925, -0.07901511341333389, -0.018050866201519966, 0.025986434891819954, 0.018817175179719925, -0.011673460714519024, 0.020843641832470894, -0.0006902114837430418, 0.014934537000954151, -0.012976188212633133, -0.03264481946825981, -0.0554468110203743, 0.02072443813085556, -0.014440692961215973, 0.06498311460018158, -0.00350799853913486, 0.0032568189781159163, 0.009970548562705517, 0.08276151865720749, 0.014304460026323795, 0.009664025157690048, 0.03637419641017914, -0.05755842104554176, 0.007965370081365108, 0.005232196766883135, -0.0020743594504892826, -0.07676726579666138, 0.029136821627616882, -0.03083973377943039, 0.0542888306081295, -0.021030960604548454, -0.0010403727646917105, -0.011945926584303379, -0.06569834053516388, -0.01035370398312807, -0.04328801855444908, -0.047238774597644806, -0.009068005718290806, 0.023619387298822403, 0.007965370081365108, -0.090186208486557, -0.027042239904403687, -0.09951817244291306, 0.00012645451352000237, -0.037872761487960815, 0.008284666575491428, -0.08575864136219025, 0.0029949962627142668, 0.020503059029579163, -0.022699814289808273, -0.04206192120909691, -0.011997014284133911, -0.010626169852912426, -0.008863655850291252, -0.006143254693597555, 0.0167651679366827, 0.005261997692286968, -0.036612603813409805, -0.025441503152251244, 0.007522613275796175, 0.029681753367185593, 0.012167305685579777, -0.02828536555171013, -0.01689288578927517, 0.032423440366983414, -0.009859859943389893, -0.0007492812001146376, -0.09577175974845886, 0.024879543110728264, -0.07077302038669586, -0.020298710092902184, 0.02498171664774418, -0.016024401411414146, 0.0483967550098896, -0.0251349788159132, 0.00021698822092730552, 0.002012629061937332, 0.014176741242408752, -0.006079395301640034, 0.03940537944436073, -0.042095981538295746, -0.029256025329232216, -0.004717065952718258, 0.030141539871692657, 0.04015466198325157, 0.09182100743055344, -0.05670696496963501, -0.008527331054210663, 0.01100081019103527, 0.016041429713368416, -0.04291337728500366, 0.0637570172548294, 0.0015730648301541805, 0.04039306938648224, -0.023380979895591736, -0.024862512946128845, 0.012048101052641869, 0.038417693227529526, -0.02292119339108467, 0.07949192821979523, 0.0123886838555336, 0.017488904297351837, -0.01467910036444664, 0.020486028864979744, 0.03858798369765282, -0.0010994424810633063, 0.039745964109897614, -0.03358142077922821, -0.02697412297129631, -0.00899988878518343, 0.02937522903084755, 0.007629045285284519, 0.0001309113431489095, -0.017020603641867638, -0.06355267018079758, 0.03542056679725647, 0.008395355194807053, 0.056775081902742386, 0.021780243143439293, -0.06889981031417847, -0.0057813855819404125, -0.035693030804395676, -0.039166972041130066, -0.0076418169774115086, -0.04240250587463379, -0.011137043125927448, -0.042504679411649704, 0.056434497237205505, 0.013001731596887112, 0.04069959372282028, 0.0670606717467308, 0.007846166379749775, 0.0291538517922163, -0.005700497422367334, 0.022478437051177025, -0.048532988876104355, -0.00725014740601182, 0.013495576567947865, -0.01818709820508957, 0.04683007672429085, -0.030345888808369637, -0.0017508062301203609, 0.066072978079319, -0.09549929946660995, 0.00918720941990614, 0.04226627200841904, 0.025816144421696663, -0.026650570333003998, -0.026378104463219643, -0.013376372866332531, -0.011801179498434067, 0.04935038462281227, -0.0070457980036735535, -0.007109656929969788, -0.009459675289690495, 0.012295023538172245, 0.04199380800127983, -0.007667360827326775, 0.019311020150780678, -0.0377705842256546, -0.04427570849657059, 0.009749170392751694, 0.039916254580020905, 0.00216589099727571, -0.07336144149303436, -0.04921415448188782, 0.048567045480012894, 0.004027386661618948, 0.05156417191028595, 0.02881326898932457, 0.04032495245337486, -0.010711316019296646, 0.005087449215352535, 0.012056616134941578, -0.018459564074873924, 0.0053854589350521564, 0.02130342647433281, 0.006066623609513044, -0.012976188212633133, -0.022444378584623337, -0.0036506173200905323, -0.01961754448711872, -0.008778510615229607, -0.011137043125927448, 0.053709838539361954, 0.02937522903084755, -0.06590268760919571, -0.004968245513737202, 0.06409760564565659, 0.02312554232776165, -0.07363390922546387, -0.003012025263160467, -0.06539181619882584, 0.0830339789390564, 0.036578547209501266, -0.019174788147211075, -0.010157869197428226, 0.03450099378824234, 0.07186288386583328, 0.047443125396966934, 0.016654478386044502, -0.004976760130375624, -0.04236844554543495, 0.005691982805728912, -0.005325856618583202, -0.01165643148124218, 0.051087357103824615, 0.030226685106754303, -0.02772340551018715, 0.0016358597204089165, -0.013972391374409199, -0.0027055011596530676, -0.024164319038391113, 0.0036591319367289543, 0.07274839282035828, -0.03444990515708923, -0.03582926467061043, -0.023738591000437737, 0.021235311403870583, -0.007182030938565731, -0.02881326898932457, -0.027587171643972397, 0.016109546646475792, 0.020588204264640808, -0.06167946755886078, -0.04369672015309334, 0.02588425949215889, -0.032219093292951584, 0.00007716319669270888, 0.022887134924530983, -0.01347854733467102, 0.0656302198767662, 0.05101924017071724, -0.024624105542898178, -0.020775524899363518, -0.040665533393621445, 0.034586139023303986, 0.028489714488387108, -0.06334832310676575, -0.04424165189266205, 0.001347429002635181, -0.0042892093770205975, -0.036578547209501266, 0.032917287200689316, -0.017105748876929283, 0.052211277186870575, -0.04131264239549637, 0.029681753367185593, -0.028728123754262924, -0.024538960307836533, -0.07874264568090439, -0.051257647573947906, -0.012039586901664734, 0.043015554547309875, 0.01631389558315277, -0.01642458513379097, 0.036408256739377975, 0.033666566014289856, -0.005462090019136667, -0.002192499116063118, 0.14031994342803955, 0.0833064466714859, -0.07281651347875595, -0.007697161752730608, 0.0488395132124424, 0.04880545288324356, -0.030958937481045723, -0.02808101661503315, 0.0002865681308321655, -0.024658164009451866, 0.00018040223221760243, -0.059908438473939896, -0.001064852112904191, 0.035352449864149094, -0.037906818091869354, 0.03341113030910492, -0.01082200463861227, -0.02019653469324112, -0.022274086251854897, -0.01046439353376627, -0.005261997692286968, -0.04127858206629753, 0.0013240139232948422, -0.025560706853866577, -0.029256025329232216, 0.031316548585891724, -0.024470843374729156, -0.03317272290587425, -0.0038060080260038376, 0.029324142262339592, -0.03610173240303993, -0.04676195979118347, -0.04526339843869209, -0.036408256739377975, -0.07424695789813995, -0.008033487014472485, -0.011613858863711357, 0.06661791354417801, -0.00001957350832526572, 0.039507556706666946, -0.019208846613764763, 0.03427961468696594, 0.028387540951371193, 0.04141481593251228, 0.03760029375553131, 0.12730969488620758, -0.03613578900694847, -0.012439771555364132, -0.007054312154650688, -0.004323267377912998, 0.022819017991423607, 0.018766088411211967, -0.03800899162888527, 0.0024777366779744625, -0.0048447842709720135, -0.037906818091869354, 0.03363250941038132, -0.049452561885118484, 0.07656291872262955, -0.019753778353333473, -0.020298710092902184, 0.018646884709596634, 0.0038145226426422596, 0.07199911028146744, 0.045638035982847214, -0.04056335985660553, 0.04253873974084854, -0.01612657494843006, -0.09004998207092285, -0.006624327041208744, -0.07615421712398529, -0.019855951890349388, 0.024487871676683426, 0.022836048156023026, -0.06362078338861465, 0.029136821627616882, -0.0254925899207592, 0.04495687410235405, 0.01929399184882641, -0.027042239904403687, 0.03613578900694847, 0.012703722342848778, 0.05493593588471413, -0.011860781349241734, -0.026327017694711685, -0.007556671276688576, 0.08943693339824677, 0.025543678551912308, 0.028489714488387108, 0.001579450792632997, 0.005330114159733057, -0.013086877763271332, -0.047988057136535645, -0.019941097125411034, -0.05187069624662399, -0.03647637367248535, 0.016322409734129906, 0.05745624750852585, 0.0033355785999447107, -0.055140286684036255, -0.049077920615673065, -0.054050423204898834, 0.06702660769224167, -0.011051897890865803, 0.019413195550441742, -0.08637169003486633, -0.043049611151218414, -0.017897604033350945, 0.02166103944182396, 0.009144636802375317, 0.050712715834379196, 0.012610062025487423, 0.043424252420663834, 0.06416571885347366, 0.026548396795988083, -0.04757935553789139, -0.0027374308556318283, 0.010796461254358292, -0.07302086055278778, 0.03783870115876198, -0.028557831421494484, 0.05980626493692398, 0.0038336804136633873, 0.008633763529360294, 0.0429474376142025, 0.049793142825365067, -0.0017582564614713192, -0.02774043381214142, -0.027076298370957375, 0.008812569081783295, -0.026105638593435287, -0.02969878353178501, -0.023023368790745735, -0.005926133133471012, -0.033666566014289856, 0.005628123879432678, 0.001999857136979699, -0.023227717727422714, -0.02111610770225525, -0.055719275027513504, 0.03434773162007332, -0.03869015723466873, 0.007709933444857597, 0.010115296579897404, -0.02385779470205307, -0.059908438473939896, -0.07077302038669586, -0.002507537603378296, 0.005236453842371702, 0.018255215138196945, -0.015905195847153664, -0.048907630145549774, -0.05667290836572647, -0.06004467234015465, -0.034211497753858566, -0.063212089240551, -0.03433070331811905, -0.032746996730566025, 0.017003575339913368, -0.012797382660210133, -0.030567267909646034, 0.011247732676565647, -0.012073645368218422, -0.011435053311288357, 0.027450939640402794, 0.024351639673113823, 0.041040174663066864, -0.02605455182492733, -0.009033947251737118, -0.0006742466357536614, -0.014355546794831753, -0.003446267917752266, -0.006743530742824078, 0.011630888096988201, 0.018101952970027924, -0.002183984499424696, -0.000017661059246165678, 0.019379137083888054, -0.003937983885407448, -0.020315738394856453, 0.03981408104300499, 0.007301234640181065, -0.05994249880313873, -0.011784150265157223, -0.02200162038207054, -0.01891935057938099, 0.03838363289833069, 0.018766088411211967, 0.05997655540704727, 0.023363951593637466, 0.005074677523225546, -0.01681625470519066, -0.045569922775030136, -0.020315738394856453, 0.04110829159617424, -0.01028558798134327, 0.03872421383857727, 0.07717596739530563, 0.033666566014289856, -0.027774492278695107, -0.014193770475685596, -0.027246588841080666, 0.014202284626662731, 0.05984032154083252, -0.027229560539126396, 0.0178124587982893, 0.06753748655319214, -0.019498340785503387, 0.028540803119540215, 0.011579800397157669, 0.05118953064084053, 0.03858798369765282, 0.026701657101511955, -0.044854696840047836, 0.055344633758068085, 0.0009387301397509873, 0.0320998877286911, -0.01184375211596489, -0.038451749831438065, 0.02019653469324112, -0.01695248670876026, 0.04703442379832268, 0.00936601497232914, -0.06488094478845596, 0.0948181301355362, -0.016015885397791862, -0.01604994386434555, -0.05524246022105217, 0.0014176741242408752, -0.023227717727422714, -0.016203206032514572, -0.025935348123311996, 0.08439631015062332, 0.01090715080499649, 0.004142333287745714, 0.0022499721962958574, -0.013350828550755978, 0.010438850149512291, 0.01782948710024357, 0.03943943977355957, -0.0703643187880516, 0.032764025032520294, 0.00018984806956723332, -0.011520198546350002, 0.013453003950417042, -0.007901511155068874, 0.007301234640181065, -0.016433099284768105, -0.04894168674945831, 0.06409760564565659, 0.014202284626662731, 0.019549427554011345, -0.02385779470205307, -0.03376874327659607, 0.03746405988931656, 0.03981408104300499, 0.013810615055263042, -0.008667821064591408, -0.030584296211600304, 0.025730997323989868, 0.035318393260240555, 0.018238186836242676, -0.04219815507531166, -0.011860781349241734, 0.02440272644162178, -0.07622233778238297, -0.011222189292311668, 0.008872170932590961, 0.011784150265157223, 0.013725469820201397, -0.049656908959150314, 0.04941850155591965, -0.004436085466295481, 0.06365484744310379, 0.0021520548034459352, 0.05398230627179146, -0.023363951593637466, -0.0316060446202755 ]
7,426
pathlib
as_uri
Return the path as a 'file' URI.
def as_uri(self): """Return the path as a 'file' URI.""" if not self.is_absolute(): raise ValueError("relative path can't be expressed as a file URI") return self._flavour.make_uri(self)
(self)
[ -0.0019011491676792502, -0.03231953829526901, -0.021357955411076546, 0.050046470016241074, 0.026050882413983345, -0.0655297040939331, 0.019028618931770325, 0.06439928710460663, 0.04329824447631836, 0.0011582451406866312, 0.05665767192840576, -0.0010870591504499316, 0.011698062531650066, 0.07481279224157333, -0.0013230970362201333, 0.06765350699424744, -0.02598237246274948, -0.01160386111587286, 0.01159529760479927, 0.06583799421787262, -0.01786395162343979, -0.032850489020347595, -0.03225102648139, -0.03805723786354065, 0.010867379605770111, 0.07159282267093658, -0.03480301797389984, -0.020518708974123, -0.02300219237804413, -0.04607289656996727, 0.031839966773986816, -0.02788352221250534, 0.034443341195583344, 0.0041833845898509026, 0.0131624611094594, 0.01683630421757698, -0.039084888994693756, 0.07104475051164627, -0.01784682460129261, -0.08001954108476639, -0.03458036109805107, 0.009788349270820618, -0.011929282918572426, 0.02642768621444702, 0.02110104262828827, 0.0013637748779729009, -0.03980424255132675, -0.023601654917001724, -0.022402731701731682, -0.028620002791285515, 0.0435037761926651, 0.031976986676454544, -0.03223389759659767, 0.014027398079633713, -0.014815261587500572, 0.015474669635295868, -0.008572299033403397, 0.0286713857203722, -0.02711278572678566, 0.03935892507433891, 0.003937177360057831, -0.00882064737379551, 0.0800880491733551, -0.05648639798164368, 0.04014679044485092, 0.04449716955423355, -0.038434043526649475, -0.014541222713887691, 0.010541957803070545, 0.06765350699424744, -0.015654508024454117, 0.04096890985965729, -0.0027596636209636927, 0.007035108283162117, 0.06083677336573601, -0.019919248297810555, 0.010507702827453613, 0.040009770542383194, 0.031171996146440506, 0.034323450177907944, -0.03668704256415367, -0.03321016579866409, 0.015277703292667866, -0.0687154084444046, -0.007035108283162117, -0.0595693401992321, -0.0007305936305783689, -0.05145091935992241, 0.002393563976511359, 0.014258619397878647, 0.005352334585040808, 0.017572784796357155, -0.07001709938049316, -0.07851232588291168, 0.032525066286325455, -0.05789085105061531, 0.005412280559539795, -0.020518708974123, 0.03350133076310158, -0.046792250126600266, -0.021392211318016052, 0.04610715061426163, -0.03894786909222603, 0.020244669169187546, 0.001540401834063232, 0.028722768649458885, 0.04764862358570099, -0.04007828235626221, -0.004448860418051481, -0.024081222712993622, -0.053848765790462494, -0.0019172062166035175, -0.0037402112502604723, 0.03795447573065758, -0.0155688701197505, -0.04877903684973717, 0.028174689039587975, -0.007159282453358173, 0.06501587480306625, -0.014352819882333279, -0.0017812568694353104, 0.0674479752779007, -0.05419131740927696, 0.00864937249571085, 0.05425982549786568, 0.025948118418455124, -0.04158549755811691, -0.01432712934911251, -0.04048933833837509, -0.04158549755811691, 0.002365731867030263, 0.035659391433000565, -0.05977487191557884, 0.01645093597471714, -0.028808405622839928, 0.04857350513339043, -0.010798869654536247, 0.06316611170768738, 0.016904812306165695, 0.11475405097007751, 0.03466600179672241, 0.01026791799813509, 0.008914847858250141, -0.0003018716524820775, -0.022899428382515907, 0.038331277668476105, -0.0025798252318054438, -0.004384632222354412, -0.056041084229946136, 0.013813304714858532, 0.046244170516729355, -0.016236841678619385, 0.03867382928729057, 0.06169314682483673, 0.050046470016241074, -0.057959359139204025, -0.02062147483229637, -0.0019364745821803808, 0.01942255161702633, -0.007985683158040047, 0.001958954380825162, -0.014977972954511642, 0.03939318284392357, 0.002669744426384568, -0.005138241220265627, 0.03535109758377075, -0.014378511346876621, -0.0020253234542906284, 0.004761436954140663, -0.021717632189393044, -0.009411544539034367, -0.015440414659678936, -0.03946169093251228, 0.008332514204084873, -0.015055046416819096, 0.021169552579522133, 0.02589673548936844, 0.051279645413160324, 0.01952531561255455, -0.003461889922618866, 0.025023235008120537, -0.06491310894489288, 0.031154869124293327, -0.018805962055921555, 0.05634937807917595, 0.015029354952275753, -0.010867379605770111, -0.010730359703302383, 0.08036208897829056, -0.016724973917007446, -0.05552725866436958, 0.015603125095367432, 0.01417298149317503, 0.01806948147714138, -0.006628330796957016, -0.10228525102138519, 0.0035432453732937574, -0.03850255161523819, 0.0012021342990919948, 0.023156339302659035, -0.007047954015433788, -0.009060432203114033, -0.02689012885093689, 0.00870075449347496, -0.03559088334441185, 0.01646806299686432, 0.025417165830731392, -0.03816000372171402, -0.009300216101109982, 0.08221185952425003, -0.03785170987248421, -0.027523845434188843, -0.05062880367040634, -0.02745533548295498, -0.006568384822458029, -0.02164912223815918, -0.07803275436162949, 0.042681656777858734, -0.0009928580839186907, 0.10386098176240921, 0.03740639612078667, -0.034289196133613586, -0.008563735522329807, -0.04531928524374962, -0.0006781407864764333, -0.010028134100139141, 0.004358941223472357, 0.0038279895670711994, -0.024286752566695213, -0.006940907333046198, -0.02735256962478161, -0.0365842767059803, 0.00650415662676096, 0.0026119393296539783, 0.009831167757511139, 0.03750915825366974, 0.019936375319957733, 0.03043551556766033, -0.013761922717094421, -0.00021503004245460033, -0.03451185300946236, -0.015329086221754551, 0.016262533143162727, 0.01126131135970354, -0.024595048278570175, -0.05210176482796669, 0.03870808333158493, 0.02824319899082184, 0.0014558349503204226, -0.07063368707895279, 0.031497418880462646, 0.030281366780400276, -0.04877903684973717, 0.014027398079633713, 0.03970147669315338, 0.02812330611050129, -0.04942987859249115, -0.018206501379609108, -0.01239172462373972, 0.008991922251880169, 0.028705639764666557, -0.02543429285287857, 0.05843892693519592, -0.0342378132045269, -0.04093465581536293, -0.07906040549278259, -0.0751553401350975, -0.0385710634291172, 0.036550022661685944, 0.011852209456264973, 0.022248584777116776, 0.019439678639173508, -0.06330312788486481, -0.006701122969388962, -0.0030422669369727373, -0.0232248492538929, -0.048367977142333984, -0.015397596172988415, -0.009728402830660343, 0.01744432933628559, -0.07940295338630676, -0.005951795727014542, 0.03199411556124687, 0.011295566335320473, 0.05008072406053543, -0.008940539322793484, -0.007471858989447355, 0.06988007575273514, -0.030623916536569595, -0.014695369638502598, 0.07871785014867783, 0.025245891883969307, -0.06344015151262283, -0.03494003787636757, 0.03403228521347046, 0.045490562915802, 0.0002530316123738885, -0.04261314496397972, 0.03216538950800896, -0.008126984350383282, -0.04192804917693138, -0.0007900045602582395, 0.005245287902653217, 0.03867382928729057, -0.03678980469703674, 0.005737702362239361, -0.007047954015433788, -0.02790064923465252, -0.004196230322122574, 0.049361370503902435, 0.02331048622727394, -0.03696108236908913, -0.018823089078068733, 0.005724857095628977, 0.05254707857966423, 0.06782478094100952, 0.011492532677948475, -0.028294580057263374, 0.014035961590707302, 0.004294713027775288, -0.07310004532337189, 0.05950083211064339, 0.009385854005813599, -0.023944202810525894, -0.02084413170814514, 0.0006406744359992445, -0.016802048310637474, 0.029647652059793472, -0.037885963916778564, 0.0486762709915638, 0.052821118384599686, 0.00805419310927391, 0.011946410872042179, 0.023892821744084358, -0.017709804698824883, -0.01774405874311924, 0.06296057999134064, 0.0192855317145586, 0.04196230322122574, -0.01456691324710846, 0.03850255161523819, 0.01639098860323429, 0.014087344519793987, -0.012931239791214466, -0.03223389759659767, 0.031291887164115906, -0.05826765298843384, -0.00403137831017375, 0.05532173067331314, -0.07501831650733948, -0.03874233737587929, -0.02709565870463848, -0.04929285869002342, -0.019610954448580742, -0.055390238761901855, 0.057068731635808945, -0.003498285776004195, 0.017812568694353104, 0.0006203355733305216, 0.050937097519636154, 0.08563735336065292, -0.05110837146639824, -0.0014365665847435594, -0.0137790497392416, 0.019439678639173508, 0.022265711799263954, 0.007989964447915554, 0.043914832174777985, 0.007433322258293629, 0.027472462505102158, -0.016605082899332047, -0.013719103299081326, 0.035762157291173935, -0.06806457042694092, 0.04912158474326134, -0.017427200451493263, 0.01043919287621975, -0.03850255161523819, 0.017427200451493263, -0.009248834103345871, 0.024903342127799988, 0.05258133262395859, -0.021700505167245865, 0.0018486963817849755, -0.004889892879873514, 0.0004921471700072289, 0.04638119041919708, -0.009171760641038418, -0.035419609397649765, -0.001269573695026338, 0.02063860185444355, -0.036207471042871475, 0.06289207190275192, -0.01973084546625614, 0.009531437419354916, -0.07878636568784714, 0.001993209356442094, 0.0342378132045269, 0.04018104448914528, 0.01974797248840332, -0.006546975579112768, 0.015585998073220253, -0.019919248297810555, 0.034409087151288986, -0.015414723195135593, -0.003917908761650324, 0.016596518456935883, 0.054499611258506775, 0.011338385753333569, -0.05569853261113167, -0.021255191415548325, -0.022848045453429222, -0.04436014965176582, 0.008015655912458897, 0.05330068618059158, 0.039667222648859024, 0.004744309466332197, -0.12324927747249603, 0.03935892507433891, -0.004007827956229448, -0.02498897910118103, 0.03863957151770592, -0.007099336478859186, 0.03434057906270027, 0.03473450988531113, -0.039872750639915466, 0.018223628401756287, 0.04473695158958435, 0.01221188623458147, 0.04631267860531807, 0.006940907333046198, -0.025160253047943115, 0.02589673548936844, -0.03356984257698059, 0.03559088334441185, 0.0027746502310037613, -0.010096644051373005, -0.0016924081137403846, -0.026050882413983345, 0.006350009702146053, 0.004740027245134115, -0.021906035020947456, -0.012785656377673149, 0.0007964273681864142, 0.03079519234597683, -0.0736481249332428, -0.0573427714407444, 0.027078529819846153, 0.01942255161702633, -0.005677756387740374, -0.05086858570575714, -0.006855269894003868, 0.040455084294080734, -0.018651815131306648, -0.08666499704122543, -0.013736231252551079, -0.010850252583622932, -0.022231455892324448, 0.009111814200878143, -0.03850255161523819, 0.00847809761762619, 0.024064095690846443, 0.03826276957988739, -0.11543914675712585, 0.013119642622768879, -0.023704418912529945, 0.01973084546625614, -0.012717146426439285, -0.029424993321299553, -0.028191816061735153, 0.030863702297210693, -0.011843645945191383, -0.02385856583714485, 0.019234148785471916, 0.025280145928263664, 0.034974295645952225, -0.023807182908058167, 0.055732786655426025, -0.01711890660226345, -0.05001221224665642, -0.03713235631585121, -0.07748467475175858, -0.037098102271556854, 0.041345711797475815, 0.04864201694726944, 0.020946895703673363, -0.002399986842647195, 0.010678977705538273, 0.011518224142491817, 0.005373743828386068, 0.06693415343761444, 0.06768776476383209, -0.0939270481467247, 0.051176879554986954, -0.005870440509170294, 0.023293359205126762, -0.0033098836429417133, 0.021717632189393044, -0.039324671030044556, -0.0015478951390832663, 0.051930490881204605, -0.06909221410751343, -0.017290180549025536, 0.06419375538825989, 0.007763025816529989, 0.04298995062708855, -0.014669678173959255, -0.03737214207649231, -0.043914832174777985, -0.03271346911787987, -0.001201063860207796, -0.0011090036714449525, 0.06477609276771545, 0.010944453999400139, -0.014318564906716347, 0.020689984783530235, 0.012871294282376766, 0.02488621510565281, 0.044462911784648895, 0.009839731268584728, -0.048367977142333984, -0.0435037761926651, -0.013051132671535015, -0.005883286241441965, -0.054602377116680145, -0.024954725056886673, -0.005515045486390591, 0.044565677642822266, -0.004662953782826662, 0.03935892507433891, 0.02276240848004818, -0.01887447200715542, 0.039872750639915466, -0.01566307246685028, 0.025348655879497528, 0.1117396131157875, -0.014301437884569168, -0.03816000372171402, -0.03024711273610592, 0.015012227930128574, -0.012443107552826405, 0.01683630421757698, -0.041551243513822556, -0.031189123168587685, -0.0017245222115889192, -0.07200388610363007, 0.008109857328236103, -0.013958888128399849, 0.12914112210273743, -0.006606921553611755, 0.05100560560822487, 0.004294713027775288, 0.03142890706658363, 0.041756771504879, 0.03089795634150505, 0.005489354021847248, 0.018891599029302597, 0.01293980423361063, -0.034974295645952225, -0.029424993321299553, -0.031189123168587685, -0.008131266571581364, -0.011732317507266998, 0.03517982363700867, -0.03427206724882126, 0.08221185952425003, 0.01399314310401678, -0.03480301797389984, 0.009325907565653324, -0.025828225538134575, -0.0030272803269326687, 0.02834596298635006, 0.013539264909923077, -0.018805962055921555, 0.024697812274098396, -0.007163564674556255, 0.03372398763895035, -0.02209443598985672, 0.0722094178199768, 0.012511617504060268, 0.024064095690846443, -0.054602377116680145, -0.024577919393777847, -0.03288474306464195, -0.05477365106344223, -0.020381689071655273, 0.010276482440531254, 0.08378758281469345, -0.03846829757094383, -0.02019328810274601, 0.018206501379609108, -0.08659648895263672, -0.02599949948489666, -0.014224364422261715, 0.01974797248840332, -0.08323950320482254, -0.006123070605099201, -0.08214334398508072, 0.026479069143533707, 0.03392951935529709, 0.018497668206691742, -0.018994364887475967, -0.03326154872775078, 0.05491067096590996, -0.02689012885093689, -0.021272318437695503, 0.018343521282076836, 0.0339980274438858, -0.045798856765031815, 0.034443341195583344, -0.004341813735663891, 0.00611022487282753, -0.012460234574973583, -0.0005828692228533328, 0.007446167524904013, -0.005241006147116423, -0.024475155398249626, 0.03959871083498001, -0.10399799793958664, 0.06344015151262283, -0.02221432887017727, -0.030846573412418365, 0.0005480790277943015, 0.025194508954882622, -0.03901637718081474, -0.008529480546712875, 0.029630523175001144, 0.04699777811765671, -0.04048933833837509, -0.008983357809484005, 0.04185953736305237, -0.03148028999567032, -0.009771222248673439, -0.0009548564557917416, 0.03651576489210129, -0.06977731734514236, 0.006307190749794245, 0.05730851739645004, 0.028140433132648468, 0.006058842409402132, -0.03365547955036163, -0.0338781364262104, -0.0672081932425499, -0.011406894773244858, -0.025365782901644707, 0.021255191415548325, -0.034426216036081314, -0.0598091259598732, -0.005699165631085634, -0.04161975160241127, 0.018120864406228065, 0.016767794266343117, 0.022916555404663086, -0.018720325082540512, 0.027369698509573936, 0.054396845400333405, 0.043983343988657, -0.026633216068148613, -0.009180324152112007, 0.04206506535410881, 0.028722768649458885, -0.031154869124293327, 0.012443107552826405, -0.0007712714141234756, -0.010893071070313454, 0.03235379233956337, 0.020141905173659325, 0.011740881018340588, -0.030058709904551506, 0.00580193055793643, -0.042784422636032104, 0.04161975160241127, -0.07618299126625061, -0.02543429285287857, 0.00925739761441946, 0.00008684162457939237, -0.01490089949220419, -0.006028869654983282, 0.01897723786532879, -0.008178367279469967, -0.024920469149947166, 0.012785656377673149, -0.0486762709915638, 0.028431599959731102, 0.056075338274240494, 0.005142522975802422, 0.002581966109573841, 0.036310236901044846, 0.04018104448914528, -0.02488621510565281, -0.027421079576015472, -0.005223878659307957, -0.046244170516729355, 0.012588690966367722, 0.011329821310937405, 0.05576704442501068, 0.014070216566324234, -0.03593343123793602, 0.02856861986219883, 0.008803519420325756, 0.05634937807917595, -0.0029202336445450783, 0.0464496985077858, 0.0046072895638644695, 0.04439440369606018, -0.019662335515022278, 0.029596269130706787, 0.010953017510473728, -0.03651576489210129, 0.04384632408618927, -0.03254219517111778, 0.01517493836581707, -0.05179347097873688, -0.026050882413983345, 0.04699777811765671, -0.029322229325771332, -0.014626859687268734, -0.03336431086063385, -0.020570091903209686, -0.05737702548503876, 0.023516016080975533, -0.0593295581638813, 0.012306087650358677, -0.010713232681155205, 0.015971366316080093, -0.0013830432435497642, -0.023276232182979584, -0.001670998870395124, 0.033415693789720535, 0.0020231823436915874, 0.005232442170381546, 0.014078781008720398, 0.04764862358570099, -0.018206501379609108, 0.016442371532320976, -0.021717632189393044, 0.019217021763324738, -0.0034447624348104, -0.024851959198713303, -0.009325907565653324, 0.03740639612078667, -0.015329086221754551, -0.07789573818445206, -0.03449472412467003, 0.04751160368323326, -0.0012235436588525772, 0.03593343123793602, -0.00403137831017375, -0.03494003787636757, 0.021803269162774086, -0.004290431272238493, 0.015029354952275753, 0.04120869189500809, 0.06772201508283615, 0.01918276585638523, -0.039667222648859024, 0.011715189553797245, -0.0015104288468137383, -0.021340828388929367, -0.04004402458667755, -0.02432100847363472, 0.018360648304224014, 0.037303630262613297, -0.00353039987385273, -0.011809390969574451, 0.05597257241606712, -0.06433077901601791, -0.0037937345914542675 ]
7,427
pathlib
chmod
Change the permissions of the path, like os.chmod().
def chmod(self, mode, *, follow_symlinks=True): """ Change the permissions of the path, like os.chmod(). """ self._accessor.chmod(self, mode, follow_symlinks=follow_symlinks)
(self, mode, *, follow_symlinks=True)
[ 0.019351735711097717, 0.03066941536962986, 0.027169102802872658, 0.02486889623105526, 0.017901604995131493, -0.0008443465339951217, 0.027819160372018814, 0.04553741589188576, 0.007704857271164656, 0.004148288629949093, 0.024318845942616463, -0.006675598677247763, 0.09274164587259293, 0.029019268229603767, -0.029469309374690056, -0.013917914591729641, 0.016359800472855568, -0.011967739090323448, -0.0257356408983469, 0.07594013959169388, 0.035636529326438904, -0.042670492082834244, 0.017168205231428146, -0.08707447350025177, -0.006488081533461809, 0.10580948740243912, -0.020935209468007088, 0.09407509863376617, 0.06703934073448181, -0.04683753103017807, -0.026869075372815132, 0.02678573504090309, -0.005629671271890402, 0.02310207113623619, 0.012492786161601543, 0.00852993130683899, -0.05933865159749985, 0.0684061348438263, -0.05650506541132927, -0.02028515189886093, -0.032736267894506454, 0.023918811231851578, -0.015601398423314095, -0.02581898123025894, 0.02318541146814823, -0.011659378185868263, -0.005758849438279867, 0.03426973894238472, 0.024968905374407768, -0.08067389577627182, -0.014034591615200043, 0.016143113374710083, 0.0037982570938766003, -0.03463643789291382, 0.022268662229180336, 0.037203334271907806, 0.011301012709736824, 0.06653929501771927, -0.017468232661485672, -0.06357236951589584, 0.03646993637084961, 0.0021460256539285183, -0.014659647829830647, -0.016226455569267273, 0.009150820784270763, -0.07434000074863434, -0.04973779246211052, -0.00922582671046257, 0.018434986472129822, 0.015834752470254898, -0.07267317920923233, -0.03258625417947769, 0.035369835793972015, -0.009367506019771099, -0.019401738420128822, 0.016659826040267944, -0.038970161229372025, -0.004792096093297005, 0.04093700274825096, 0.02618568018078804, -0.020585179328918457, -0.0525713786482811, 0.026319026947021484, -0.0037732550408691168, -0.033336322754621506, 0.03750336170196533, 0.039403531700372696, -0.04433730989694595, 0.013592884875833988, -0.04030361399054527, -0.01723487861454487, -0.010784300044178963, -0.025352273136377335, -0.05467156693339348, 0.0006302648107521236, 0.0348031185567379, -0.022885385900735855, -0.03400304913520813, 0.003523232415318489, -0.0043837265111505985, -0.03733668103814125, -0.018418317660689354, 0.04193709418177605, -0.031669504940509796, 0.03151949122548103, -0.0048546018078923225, -0.018484991043806076, 0.014409624971449375, -0.03963688760995865, -0.04583744332194328, -0.05210467055439949, 0.05817188322544098, 0.06420575827360153, -0.016026437282562256, -0.005175463855266571, 0.04473734274506569, 0.017518237233161926, -0.11100995540618896, 0.036336589604616165, -0.004317053593695164, 0.015009678900241852, 0.01705986261367798, 0.023685457184910774, -0.020418496802449226, 0.06807276606559753, 0.077340267598629, -0.008900797925889492, 0.028485886752605438, -0.006863115355372429, -0.009509186260402203, -0.04923774674534798, -0.006217224057763815, -0.007054799236357212, 0.07567345350980759, 0.036436598747968674, -0.040470294654369354, 0.0007281902944669127, -0.02618568018078804, -0.02935263141989708, 0.01185939647257328, -0.009209158830344677, -0.007792365271598101, 0.07000627368688583, 0.004179541487246752, -0.02443552389740944, 0.01950174756348133, -0.00029325546347536147, 0.023352093994617462, 0.013359530828893185, 0.009134151972830296, 0.0476042665541172, 0.016126446425914764, -0.016676494851708412, 0.01888502575457096, 0.005179631058126688, 0.03787006065249443, -0.02461887337267399, 0.04210377484560013, 0.03160283342003822, 0.021835291758179665, -0.03178618475794792, -0.010092571377754211, -0.024585537612438202, -0.0024668879341334105, 0.02891925908625126, -0.006604758556932211, 0.005946366582065821, 0.0025981497019529343, 0.00549215916544199, 0.019835110753774643, 0.056205037981271744, -0.00023869327560532838, 0.05703844502568245, 0.003964938689023256, 0.0618722140789032, 0.01352621242403984, -0.0012938659638166428, -0.024968905374407768, 0.04003692418336868, -0.008154897950589657, 0.011917735449969769, -0.022001972422003746, 0.007417331449687481, -0.025985663756728172, 0.03285294398665428, 0.06540586054325104, -0.007300654426217079, 0.03155282884836197, 0.013826239854097366, 0.015193028375506401, 0.0040461961179971695, 0.025235595181584358, 0.034936465322971344, -0.0018991285469383001, -0.0003521149046719074, -0.016118111088871956, 0.0097592081874609, -0.06097213178873062, -0.041870418936014175, 0.09154154360294342, 0.012342773377895355, 0.046604178845882416, 0.027469128370285034, 0.02856922708451748, 0.08087391406297684, 0.01388457790017128, 0.058638591319322586, 0.032986290752887726, -0.011301012709736824, 0.006471413653343916, 0.059705354273319244, -0.018768349662423134, 0.05910529941320419, 0.0008433047914877534, 0.03410305827856064, 0.043370556086301804, -0.07620683312416077, 0.03350300341844559, 0.030736088752746582, 0.06980625540018082, -0.024585537612438202, 0.05357147008180618, -0.025618962943553925, 0.005479658022522926, 0.025252263993024826, -0.04973779246211052, 0.012817815877497196, -0.043203871697187424, -0.016468143090605736, 0.009325835853815079, -0.007225647568702698, -0.0025043911300599575, -0.04110368341207504, 0.002246034797281027, 0.0025627296417951584, -0.05627170950174332, 0.05043785646557808, 0.015976432710886, -0.07474003732204437, 0.020251816138625145, -0.01950174756348133, -0.0017282799817621708, 0.05237136036157608, 0.04013693332672119, -0.006667264271527529, 0.024202169850468636, 0.017884936183691025, -0.04557075351476669, 0.011567703448235989, -0.06503916531801224, 0.0022897885646671057, 0.022552020847797394, -0.06670597940683365, 0.023702124133706093, -0.01607644185423851, -0.04507070779800415, 0.0007005836232565343, -0.005562998820096254, -0.043903935700654984, 0.03301962837576866, -0.040803659707307816, -0.03583654761314392, 0.0163431316614151, -0.0792737752199173, 0.0398702397942543, -0.01880168542265892, 0.0030044359154999256, 0.015843087807297707, -0.03937019780278206, -0.01565140299499035, 0.0154680535197258, -0.026769066229462624, -0.009175822138786316, 0.050037819892168045, -0.027035757899284363, -0.0023002061061561108, 0.008984139189124107, 0.03463643789291382, -0.007792365271598101, -0.02108522318303585, 0.02926929108798504, 0.013784568756818771, -0.02110189199447632, 0.009092481806874275, -0.05543830245733261, -0.002412716392427683, 0.0011115579400211573, 0.07027296721935272, -0.024752218276262283, 0.02628568932414055, 0.0323195643723011, 0.03807007893919945, -0.029819339513778687, 0.015576396137475967, 0.0658392384648323, 0.026335693895816803, -0.01471798587590456, -0.02916928194463253, 0.022618694230914116, -0.047137558460235596, -0.04300385341048241, -0.03907017037272453, -0.020518505945801735, 0.007425665855407715, 0.01695985347032547, -0.0286359004676342, 0.04580410569906235, -0.022001972422003746, 0.0068714492954313755, 0.08327413350343704, 0.03496980294585228, -0.04807097464799881, -0.07413998246192932, 0.09940890967845917, 0.006458912510424852, 0.017618246376514435, 0.024652209132909775, 0.023868806660175323, 0.0014251277316361666, 0.015168026089668274, -0.046004123985767365, -0.012109419330954552, 0.008600771427154541, -0.004112868569791317, -0.04333721846342087, 0.003704498754814267, 0.02741912566125393, 0.019001703709363937, -0.021051887422800064, 0.0020543509162962437, -0.011567703448235989, 0.05053786560893059, 0.041870418936014175, 0.00472125643864274, -0.07940711826086044, 0.02943597175180912, -0.023835470899939537, -0.05760516598820686, 0.0011823977110907435, 0.042403802275657654, 0.032119546085596085, 0.0541381873190403, -0.009875885210931301, -0.034303076565265656, 0.01203441247344017, 0.04693754017353058, 0.054271530359983444, 0.04383726418018341, 0.033686354756355286, 0.009309167973697186, 0.05493825674057007, 0.032902948558330536, -0.054704904556274414, -0.042037103325128555, -0.06357236951589584, -0.011984407901763916, -0.007054799236357212, -0.005521328188478947, -0.01670149713754654, -0.03503647446632385, 0.034836456179618835, -0.02750246599316597, 0.01326785609126091, -0.030086031183600426, 0.002117898315191269, 0.008263240568339825, -0.046970877796411514, 0.0363699272274971, 0.04930441826581955, -0.014117931947112083, 0.05430486798286438, -0.0067214360460639, 0.047237567603588104, 0.013792903162539005, 0.006679765414446592, 0.051704633980989456, 0.024735551327466965, -0.004248297307640314, -0.025502286851406097, 0.01366789173334837, 0.03503647446632385, -0.018935030326247215, 0.02373546175658703, -0.00676310621201992, -0.006854781415313482, 0.01855166256427765, 0.027169102802872658, -0.03910350427031517, 0.005767183844000101, 0.017551572993397713, 0.0020074716303497553, -0.008842458948493004, 0.021318577229976654, -0.06007205322384834, -0.008029886521399021, 0.02301873080432415, 0.04763760417699814, 0.06007205322384834, -0.020668519660830498, -0.00035758415469899774, -0.015368044376373291, -0.012642799876630306, -0.026035666465759277, 0.042403802275657654, -0.011834394186735153, 0.08087391406297684, 0.009559189900755882, 0.07287319749593735, -0.009450847283005714, -0.021468590945005417, -0.026235684752464294, 0.06367237120866776, -0.00007012347487034276, 0.023318756371736526, 0.03683663532137871, 0.011784389615058899, 0.00839241873472929, -0.10107573121786118, 0.03743669018149376, 0.0172182098031044, -0.0012167757377028465, -0.047404248267412186, -0.03021937608718872, 0.015126355923712254, 0.03833676874637604, -0.04357057437300682, 0.010425934568047523, 0.03153616189956665, 0.021735282614827156, 0.07907375693321228, 0.0034482257906347513, 0.02645237185060978, -0.0016761919250711799, -0.006808943580836058, -0.020051797851920128, -0.00014324201038107276, 0.012309436686336994, -0.0017386975232511759, -0.022718703374266624, -0.02503557689487934, 0.026585716754198074, -0.030419394373893738, -0.00735899293795228, -0.07193978130817413, -0.024852227419614792, -0.005071287974715233, -0.00020132013014517725, 0.03907017037272453, 0.013784568756818771, 0.04103701189160347, -0.023585448041558266, 0.054704904556274414, 0.01811829023063183, 0.0012240681098774076, -0.037403352558612823, -0.015859754756093025, -0.029902679845690727, -0.025452282279729843, 0.019485080614686012, -0.015976432710886, 0.012859486043453217, -0.00024207899696193635, 0.06523918360471725, -0.07434000074863434, -0.024302178993821144, 0.02170194499194622, 0.010684290900826454, 0.018218299373984337, -0.010959316045045853, -0.04297051951289177, 0.025985663756728172, -0.06250560283660889, 0.0067922757007181644, 0.007871539331972599, 0.028185859322547913, 0.02960265427827835, -0.02741912566125393, -0.03486979380249977, -0.033786363899707794, -0.01027592085301876, -0.015751412138342857, -0.06377238035202026, 0.049937810748815536, 0.011667712591588497, -0.0005292140995152295, -0.06933955103158951, -0.005604668986052275, -0.024852227419614792, -0.03690330684185028, -0.000604220840614289, 0.06350569427013397, 0.001930381404235959, -0.01978510618209839, -0.027702484279870987, 0.014626311138272285, 0.024852227419614792, -0.04983780160546303, 0.008934134617447853, -0.08067389577627182, -0.006371404509991407, -0.0051962994039058685, -0.030186040326952934, -0.05290474370121956, -0.016668161377310753, -0.025702303275465965, 0.10714294016361237, -0.0035607358440756798, -0.08720781654119492, 0.002475221874192357, -0.008809123188257217, -0.008817457593977451, 0.02820252813398838, -0.00816739909350872, 0.043803926557302475, 0.020151806995272636, 0.01793494075536728, 0.015859754756093025, 0.024902231991291046, -0.00039039956755004823, -0.04340388998389244, 0.010000896640121937, -0.11054324358701706, -0.004946276545524597, 0.002246034797281027, -0.007254817057400942, -0.019201721996068954, 0.016493145376443863, -0.02503557689487934, 0.018151627853512764, 0.0005667174700647593, 0.028935927897691727, 0.028519222512841225, -0.02275203913450241, 0.009609194472432137, 0.04307052865624428, 0.04817098379135132, -0.0004838975437451154, 0.005100457463413477, 0.01185939647257328, 0.05007115378975868, -0.04577077180147171, -0.016726499423384666, -0.03266959637403488, 0.01923505775630474, 0.0038274263497442007, -0.04163706675171852, -0.04367058351635933, -0.11881065368652344, 0.12001075595617294, -0.009325835853815079, -0.038970161229372025, 0.014759656973183155, -0.011317681521177292, 0.09227494150400162, 0.02046850137412548, -0.030202707275748253, 0.050204500555992126, -0.08527430891990662, -0.012551125138998032, 0.018401648849248886, -0.07207312434911728, -0.022552020847797394, 0.031052783131599426, -0.03503647446632385, 0.030202707275748253, -0.010900977067649364, 0.03293628618121147, 0.03275293484330177, 0.009967559948563576, -0.07213979959487915, 0.0009657116024754941, 0.07353992760181427, 0.020235147327184677, -0.021935299038887024, 0.01045093685388565, -0.03453642874956131, 0.009025809355080128, -0.020718524232506752, 0.021851958706974983, 0.021585268899798393, -0.06493915617465973, -0.02690241113305092, -0.015659736469388008, 0.020535174757242203, 0.014009589329361916, -0.0037065823562443256, 0.048537686467170715, 0.0658392384648323, -0.04620414227247238, -0.013692894019186497, -0.036703288555145264, -0.05963867902755737, -0.018585000187158585, -0.07514006644487381, 0.0011094744550064206, -0.025868985801935196, -0.01591809280216694, -0.07380661368370056, 0.028535891324281693, 0.044403981417417526, -0.026052335277199745, -0.054004840552806854, -0.005846357438713312, 0.03743669018149376, -0.08754117786884308, 0.019185053184628487, 0.04027027636766434, -0.0004154018242843449, -0.0022272830829024315, 0.034569766372442245, -0.07967381179332733, 0.048637691885232925, 0.047937631607055664, -0.00008887515286915004, -0.003189869225025177, 0.01941840723156929, -0.04200376570224762, -0.018585000187158585, -0.016726499423384666, -0.02953598089516163, -0.0894080176949501, -0.05287140607833862, -0.031169461086392403, -0.022552020847797394, -0.06817277520895004, 0.006279729772359133, -0.04703754931688309, 0.018384981900453568, -0.026302358135581017, -0.03240290656685829, -0.012926158495247364, -0.04913773760199547, 0.008909132331609726, 0.020968547090888023, 0.017618246376514435, -0.08620772510766983, -0.05817188322544098, -0.011059325188398361, 0.03260292112827301, 0.008121561259031296, -0.024018820375204086, -0.01916838437318802, 0.022185321897268295, -0.012559459544718266, -0.06000537797808647, 0.03980356827378273, 0.0024210503324866295, -0.028352541849017143, -0.014876333996653557, -0.04200376570224762, -0.03540317341685295, -0.009234161116182804, -0.0007479836931452155, 0.0326862633228302, 0.06630594283342361, 0.018585000187158585, 0.013734564185142517, -0.08200734853744507, 0.010200914926826954, -0.05283806845545769, -0.015076351352036, 0.0010006105294451118, 0.018785016611218452, 0.014034591615200043, 0.03960354998707771, 0.0010089445859193802, 0.0061463844031095505, -0.013359530828893185, -0.020351825281977654, 0.014242943376302719, 0.010159243829548359, -0.0027544135227799416, -0.023918811231851578, -0.0011563536245375872, 0.0386701337993145, 0.060505423694849014, 0.02215198613703251, 0.004387893248349428, 0.023302089422941208, -0.009467515163123608, -0.050637874752283096, 0.00006081274477764964, 0.014392957091331482, -0.015393046662211418, 0.003419056534767151, 0.051871318370103836, 0.017368223518133163, 0.04850434884428978, -0.022168654948472977, -0.04803764075040817, 0.011784389615058899, -0.017518237233161926, -0.005738014355301857, -0.02906927280128002, -0.041003674268722534, -0.0016793172108009458, 0.010475939139723778, 0.04560408741235733, 0.037370018661022186, -0.014984676614403725, 0.03980356827378273, 0.06227225065231323, 0.010792634449899197, -0.0940084308385849, 0.0024043822195380926, -0.05290474370121956, -0.01986844837665558, -0.021218568086624146, 0.009125818498432636, -0.012509454973042011, -0.03295295313000679, 0.05357147008180618, 0.017351554706692696, -0.04433730989694595, 0.01931839808821678, -0.03311963751912117, -0.023485438898205757, -0.030086031183600426, -0.019401738420128822, -0.0201184693723917, 0.011326014995574951, -0.009450847283005714, 0.007479837164282799, -0.0305694080889225, -0.02301873080432415, -0.07293987274169922, -0.014051259495317936, 0.0700729489326477, -0.0038024242967367172, -0.04367058351635933, -0.011317681521177292, -0.01427628006786108, -0.012017743661999702, 0.01890169456601143, -0.002979433862492442, 0.046604178845882416, -0.005567165557295084, 0.018401648849248886, 0.003027354832738638, 0.03225289285182953, -0.007671521045267582, 0.0330529622733593, -0.07887373864650726, -0.026519043371081352, 0.005283806938678026, -0.015751412138342857, -0.06663930416107178, 0.06423909217119217, 0.006188054569065571, 0.006717268843203783, -0.0012959495652467012, 0.013759566470980644, -0.017618246376514435, -0.01177605614066124, 0.0297860037535429, -0.03358634561300278, -0.021951967850327492, 0.0351698212325573, 0.001315742963925004, 0.01765158213675022, -0.040370285511016846, 0.01785160042345524, -0.02908594161272049, -0.029202617704868317, 0.053738150745630264, 0.018751680850982666, 0.017201542854309082, -0.0035461513325572014 ]
7,428
pathlib
exists
Whether this path exists.
def exists(self): """ Whether this path exists. """ try: self.stat() except OSError as e: if not _ignore_error(e): raise return False except ValueError: # Non-encodable path return False return True
(self)
[ 0.04168239235877991, -0.038566600531339645, -0.023697340860962868, 0.03153875470161438, 0.06068873405456543, -0.002944857580587268, 0.017673473805189133, -0.00396830914542079, 0.00022949225967749953, 0.005989247467368841, 0.048952579498291016, 0.029288459569215775, 0.09409696608781815, -0.053937848657369614, -0.021949034184217453, 0.0010862002382054925, 0.023610791191458702, 0.029634658247232437, 0.009485860355198383, -0.02653617411851883, -0.04341338947415352, 0.009044456295669079, 0.043898068368434906, -0.011312061920762062, -0.0008790215943008661, 0.03960519656538963, 0.05542650446295738, -0.003693513572216034, 0.03714718297123909, 0.008871356956660748, -0.054768726229667664, 0.03460261970758438, 0.038289640098810196, 0.02419932931661606, 0.004617433063685894, 0.04843327775597572, -0.033737119287252426, -0.017863882705569267, -0.0560842826962471, -0.07789483666419983, -0.024528218433260918, 0.06477388739585876, -0.018469732254743576, 0.02092774584889412, 0.03210998326539993, -0.016063647344708443, -0.08364174515008926, 0.012186214327812195, -0.030275126919150352, -0.006084452383220196, 0.02658810466527939, 0.025255236774683, -0.006101762410253286, -0.005487258546054363, -0.04085151478648186, -0.018625522032380104, 0.05192989110946655, 0.05418018624186516, -0.022676052525639534, -0.027297813445329666, -0.002687371801584959, -0.012748788110911846, 0.01909288950264454, -0.02354155108332634, -0.015319318510591984, -0.021222015842795372, -0.0285960603505373, -0.09001181274652481, 0.005283866543322802, 0.026795824989676476, 0.019006339833140373, 0.03711256384849548, -0.030604016035795212, 0.024026229977607727, 0.02288377285003662, 0.013510426506400108, -0.001508130575530231, 0.037562623620033264, 0.022399093955755234, 0.003847139421850443, -0.044832807034254074, -0.07644080370664597, -0.015700137242674828, -0.03515653684735298, 0.002185382880270481, 0.05525340512394905, 0.0638391450047493, -0.012999783270061016, 0.00014497095253318548, 0.08848853409290314, -0.009226210415363312, 0.042997948825359344, -0.015423177741467953, -0.06508546322584152, 0.029305769130587578, -0.019231369718909264, 0.03565852716565132, -0.046286843717098236, 0.024476289749145508, -0.0744328424334526, -0.010074399411678314, -0.005188661627471447, 0.03586624562740326, 0.010273464024066925, 0.02548026666045189, 0.05795376002788544, -0.023195352405309677, -0.025618746876716614, -0.004037549253553152, -0.04839865863323212, -0.026120735332369804, -0.007503869477659464, 0.023056872189044952, 0.006171002052724361, 0.03822040185332298, -0.07851799577474594, 0.01048983819782734, -0.017950432375073433, -0.04587140306830406, -0.045455966144800186, 0.05840381979942322, 0.05092591419816017, 0.006867728196084499, -0.04047069698572159, 0.07284032553434372, 0.006093107163906097, 0.0036653848364949226, 0.027453603222966194, 0.025584125891327858, 0.003325676778331399, -0.018971720710396767, 0.02598225511610508, 0.019404469057917595, 0.044832807034254074, -0.03221384435892105, 0.004256087355315685, -0.005348778795450926, 0.026276525110006332, -0.043344151228666306, 0.038566600531339645, 0.030223196372389793, -0.06196967139840126, -0.005543516017496586, 0.014791363850235939, 0.016591601073741913, 0.06948219239711761, -0.04064379632472992, -0.008983870968222618, 0.05362626910209656, 0.009979194030165672, 0.02754015289247036, -0.029617348685860634, 0.010290773585438728, 0.007084102835506201, -0.038497358560562134, -0.040055256336927414, -0.000456009351182729, 0.028526820242404938, -0.02120470628142357, -0.007914980873465538, 0.00997053924947977, -0.012142939493060112, 0.007157670333981514, -0.027834422886371613, -0.046113744378089905, 0.017794642597436905, -0.045940645039081573, 0.013614286668598652, 0.009131005965173244, 0.06196967139840126, 0.0377703420817852, 0.004911702126264572, -0.0034057353623211384, -0.002546728355810046, -0.005569480825215578, -0.017560958862304688, 0.02920190989971161, 0.04452122747898102, -0.022901082411408424, 0.002384447492659092, 0.02016610838472843, -0.04839865863323212, 0.00853813998401165, 0.006114744581282139, 0.01876400038599968, 0.031452205032110214, -0.02625921554863453, -0.03242156282067299, 0.056638203561306, 0.06903214007616043, -0.031729165464639664, 0.024787869304418564, 0.038393501192331314, 0.045732926577329636, 0.013986450619995594, -0.01981990784406662, 0.04074765369296074, 0.0021518447902053595, -0.06449692696332932, 0.0299808569252491, 0.027228573337197304, -0.012644928880035877, 0.005184334237128496, 0.016505051404237747, -0.033235132694244385, -0.020079558715224266, -0.027834422886371613, 0.021516285836696625, 0.002274096477776766, 0.05102977529168129, -0.048883337527513504, -0.0960356816649437, 0.017015693709254265, 0.07024383544921875, 0.031175244599580765, 0.04452122747898102, 0.007161997724324465, 0.04974883794784546, -0.005889715161174536, 0.009520480409264565, 0.05137597396969795, 0.0038125196006149054, 0.054214805364608765, -0.023004941642284393, -0.010057088918983936, -0.040505316108465195, 0.007218255195766687, 0.033512089401483536, -0.025359097868204117, -0.015302008017897606, 0.0002699272590689361, 0.013761421665549278, 0.02548026666045189, 0.04144005477428436, -0.026345765218138695, -0.0011651769746094942, 0.0321965329349041, 0.032888930290937424, 0.017950432375073433, -0.019525639712810516, -0.0023498276714235544, -0.023887749761343002, -0.04175163432955742, -0.004009420517832041, -0.007027845364063978, -0.05951165780425072, 0.028630681335926056, 0.03825502097606659, -0.023731959983706474, -0.057157501578330994, 0.017716748639941216, 0.04102461412549019, -0.04843327775597572, -0.061208032071590424, 0.004297198727726936, -0.09236596524715424, -0.06889365613460541, -0.030015477910637856, 0.04060917720198631, 0.030621325597167015, -0.055322643369436264, -0.00025775618269108236, 0.023731959983706474, 0.06688570231199265, -0.051549073308706284, -0.06266207247972488, 0.03427372872829437, 0.02620728500187397, -0.0388781800866127, -0.007646676618605852, -0.01848704181611538, 0.025185996666550636, -0.03037898615002632, -0.040886133909225464, 0.013510426506400108, 0.02854412980377674, 0.03347747027873993, -0.05892311781644821, 0.024458978325128555, 0.033408232033252716, -0.027332432568073273, 0.014289375394582748, 0.03043091669678688, -0.0073956819251179695, -0.03181571513414383, 0.01727534458041191, -0.0020793594885617495, 0.02987699769437313, -0.044001929461956024, 0.025462957099080086, 0.01943909004330635, 0.004543865565210581, -0.045386724174022675, 0.006080124992877245, 0.05203375220298767, 0.03309665247797966, -0.005504568573087454, -0.029617348685860634, 0.008659309707581997, -0.05982323735952377, -0.04185549169778824, 0.032179221510887146, -0.050337374210357666, -0.003855794435366988, -0.011692880652844906, -0.009001181460916996, -0.01710224524140358, 0.03397946059703827, -0.026553485542535782, 0.037389520555734634, -0.03822040185332298, -0.005392053630203009, 0.02754015289247036, 0.04057455435395241, 0.11133769154548645, 0.011502470821142197, -0.0180369820445776, -0.037458762526512146, -0.06813202053308487, 0.0488487184047699, -0.02343769185245037, 0.08045671135187149, -0.019733358174562454, -0.026120735332369804, -0.02653617411851883, -0.03010202758014202, 0.032785072922706604, 0.020477687940001488, -0.011112997308373451, 0.029773138463497162, -0.010117674246430397, -0.04881409928202629, 0.09188129007816315, -0.04057455435395241, -0.02554950676858425, -0.012930543161928654, -0.02542833797633648, -0.023506931960582733, 0.04919491708278656, 0.04420964792370796, 0.009304105304181576, -0.012774753384292126, -0.019196750596165657, -0.00044410876580514014, 0.01524142362177372, -0.019560258835554123, 0.020858505740761757, 0.027522843331098557, 0.01518949307501316, -0.003907724283635616, -0.05781527981162071, 0.05130673199892044, -0.03790882229804993, 0.012921888381242752, -0.022416403517127037, 0.015172183513641357, 0.014445165172219276, 0.038947418332099915, 0.007257202174514532, 0.03148682415485382, 0.0488487184047699, -0.001689885277301073, -0.057884518057107925, -0.032179221510887146, -0.03283700346946716, -0.05078743398189545, 0.03458530828356743, 0.010792762972414494, -0.023628100752830505, -0.009295450523495674, 0.010308083146810532, -0.0148519491776824, -0.015881892293691635, -0.0783102735877037, 0.031244484707713127, -0.030413607135415077, 0.04303257167339325, -0.0377703420817852, 0.0031482495833188295, 0.027228573337197304, 0.009364690631628036, 0.03697408363223076, -0.023887749761343002, -0.009987848810851574, 0.07346348464488983, -0.00907907634973526, 0.025636056438088417, -0.025774536654353142, -0.029790448024868965, -0.042063213884830475, -0.019750669598579407, 0.00020298636809457093, -0.001064562820829451, -0.007187962532043457, -0.03880893811583519, -0.034066010266542435, 0.06709341704845428, 0.0175003744661808, -0.00723123736679554, 0.0471869632601738, 0.0405399352312088, -0.012757443822920322, 0.01745709776878357, 0.05359164997935295, 0.00541369104757905, 0.011329371482133865, 0.03659326210618019, 0.010368668474256992, 0.006023867521435022, -0.055391885340213776, -0.014981773681938648, -0.06491236388683319, -0.039120517671108246, -0.02193172462284565, -0.05618814378976822, 0.06103493273258209, -0.03905127942562103, -0.014090310782194138, 0.00960703007876873, 0.02326459251344204, -0.031071385368704796, -0.024684008210897446, -0.02203558385372162, 0.06588172167539597, -0.006906675640493631, -0.016617566347122192, -0.0627659261226654, -0.03152144327759743, 0.017015693709254265, 0.005971937440335751, -0.02837103046476841, -0.05404170602560043, 0.05646510422229767, -0.023004941642284393, -0.022693362087011337, -0.04618298262357712, -0.027955591678619385, -0.0682704970240593, -0.08696525543928146, 0.03259466215968132, -0.02414740063250065, 0.02892494946718216, -0.023887749761343002, 0.026241905987262726, 0.03711256384849548, 0.008789134211838245, -0.002455851063132286, 0.017967741936445236, 0.1033058613538742, -0.011857325211167336, -0.036281686276197433, 0.024510908871889114, 0.02181055396795273, -0.02527254819869995, -0.0627313107252121, -0.003790882183238864, -0.020183417946100235, 0.012004460208117962, -0.005833457689732313, 0.022399093955755234, -0.05314159020781517, 0.0744328424334526, 0.003500940278172493, -0.04227093234658241, 0.02736705355346203, -0.026570795103907585, 0.016833940520882607, 0.019681429490447044, 0.0505450963973999, 0.0224856436252594, -0.006517201662063599, 0.005154041573405266, -0.05203375220298767, 0.02442435920238495, 0.02016610838472843, -0.02819793112576008, 0.018296631053090096, 0.038116540759801865, -0.04957573860883713, 0.005565153434872627, 0.007361062336713076, -0.06840898096561432, -0.0324908010661602, 0.006672990974038839, 0.04064379632472992, -0.05192989110946655, -0.018833240494132042, 0.03236963227391243, 0.018365871161222458, -0.02980775758624077, 0.05850767716765404, -0.03231770172715187, -0.01904096081852913, -0.017015693709254265, 0.05757293850183487, -0.026068806648254395, -0.05826533958315849, 0.034239109605550766, -0.024510908871889114, -0.054941825568675995, 0.016444465145468712, 0.006763868499547243, 0.04926415905356407, 0.051272112876176834, -0.023004941642284393, 0.009451240301132202, 0.02582646533846855, -0.0175003744661808, 0.015890546143054962, -0.01642715558409691, -0.021862484514713287, 0.06370066851377487, -0.015838617458939552, 0.044451989233493805, 0.03198881447315216, 0.052553050220012665, -0.001022910699248314, -0.05535726621747017, 0.010429252870380878, 0.0249955877661705, 0.0006929395021870732, -0.03126179426908493, 0.06709341704845428, -0.05348778888583183, -0.06920523941516876, 0.020114177837967873, -0.003546378808096051, -0.005885387770831585, -0.023004941642284393, 0.02532447688281536, -0.00389474187977612, 0.006586441304534674, 0.011260131374001503, -0.011900600045919418, 0.05847305804491043, 0.07782559841871262, 0.02842296101152897, -0.0033083667512983084, -0.039016660302877426, -0.01338060200214386, 0.04047069698572159, -0.007300477474927902, 0.0035983086563646793, -0.026120735332369804, -0.0034014079719781876, -0.014168205671012402, -0.009416620247066021, -0.07491752505302429, 0.07339424639940262, -0.021585525944828987, 0.04957573860883713, 0.02882109023630619, 0.03254273161292076, 0.013268087059259415, 0.08862701803445816, 0.052276089787483215, 0.03236963227391243, -0.04036683589220047, -0.026068806648254395, 0.03780496120452881, -0.04708310216665268, -0.024857107549905777, -0.007897671312093735, 0.000242609967244789, -0.0249955877661705, -0.037458762526512146, -0.027176642790436745, -0.017915813252329826, 0.05348778888583183, -0.03583162650465965, 0.0045914677903056145, 0.03136565536260605, -0.011087032034993172, -0.06730113923549652, -0.02570529654622078, -0.01177077554166317, 0.006698956247419119, 0.017534993588924408, 0.016712769865989685, -0.014765399508178234, 0.012212179601192474, -0.05026813596487045, -0.04476356506347656, 0.029565418139100075, 0.004522228147834539, -0.04085151478648186, -0.006292171776294708, 0.04324029013514519, -0.04493666812777519, -0.012246799655258656, -0.026293834671378136, -0.023178040981292725, 0.08073367178440094, -0.036835603415966034, 0.06889365613460541, 0.020235348492860794, 0.05179141089320183, -0.0988745167851448, 0.011493816040456295, -0.012480484321713448, -0.023056872189044952, -0.01931791938841343, -0.009944573976099491, -0.03624706342816353, -0.008832409046590328, -0.0007297231932170689, 0.021793244406580925, 0.048606377094984055, -0.04258251190185547, -0.03804730251431465, 0.002328190254047513, -0.018798621371388435, 0.00005105086893308908, 0.006196967326104641, 0.04652918502688408, 0.04102461412549019, 0.014202825725078583, -0.02842296101152897, -0.01285264827311039, 0.026743894442915916, 0.005993574857711792, -0.03465454652905464, 0.00453953817486763, -0.0022805877961218357, -0.05400708690285683, 0.0032845656387507915, 0.04230555146932602, 0.04742930084466934, -0.056326624006032944, -0.050233516842126846, 0.026674654334783554, -0.021516285836696625, 0.011779430322349072, -0.03129641339182854, -0.003267255611717701, -0.05435328558087349, -0.01393452100455761, -0.014800019562244415, 0.06034253537654877, 0.06363143026828766, -0.06477388739585876, -0.0516183115541935, -0.04801784083247185, 0.009001181460916996, -0.01748306304216385, 0.045836783945560455, 0.026518864557147026, -0.016254056245088577, 0.07027845084667206, 0.009001181460916996, 0.007854396477341652, 0.011649605818092823, -0.01788119226694107, -0.03065594658255577, 0.055322643369436264, 0.007239892613142729, -0.00024206902890000492, -0.02316073141992092, -0.06186581030488014, -0.0060195401310920715, 0.010212878696620464, -0.04365573078393936, -0.06172733008861542, 0.008698256686329842, 0.022070204839110374, 0.009624339640140533, -0.025411026552319527, -0.01898903027176857, 0.008611707016825676, 0.00317854224704206, -0.009009836241602898, 0.023333830758929253, -0.003674039850011468, -0.02258950285613537, -0.02653617411851883, 0.03981291875243187, -0.02454552799463272, -0.02703816443681717, 0.04002063721418381, 0.01566551811993122, -0.04957573860883713, 0.025791846215724945, 0.0013577502686530352, 0.05556498467922211, 0.029236529022455215, 0.015760721638798714, 0.03818577900528908, -0.023749271407723427, 0.042236313223838806, -0.027834422886371613, -0.03652402386069298, -0.05587656423449516, -0.020356517285108566, 0.0893886536359787, -0.03266390040516853, -0.04324029013514519, 0.02909804880619049, 0.09118889272212982, -0.0006740067037753761, -0.03960519656538963, 0.049991175532341, 0.031902264803647995, 0.023922370746731758, -0.022070204839110374, 0.02115277573466301, -0.021222015842795372, -0.057607561349868774, 0.015475107356905937, 0.008062115870416164, 0.0422016903758049, -0.03925899788737297, -0.0008211414096876979, 0.054214805364608765, -0.07782559841871262, 0.022624123841524124, -0.02658810466527939, 0.02776518277823925, -0.012592998333275318, 0.06117341294884682, -0.02869991958141327, 0.004794859793037176, -0.043344151228666306, -0.030673256143927574, 0.019525639712810516, -0.06581248342990875, -0.03638554364442825, -0.019889147952198982, -0.036627884954214096, 0.017110899090766907, 0.03126179426908493, -0.015985751524567604, 0.015128908678889275, -0.06044639274477959, 0.08204922825098038, 0.012783408164978027, -0.01535393763333559, 0.006248896941542625, 0.05591118335723877, 0.0030573722906410694, 0.06813202053308487, 0.0610695518553257, 0.00523193646222353, 0.014834638684988022, -0.0871729776263237, 0.021897103637456894, 0.0030595362186431885, 0.03970905765891075, 0.005348778795450926, -0.035900864750146866, 0.011597676202654839, 0.05895773693919182, -0.028319101780653, -0.014254755340516567, 0.0499565564095974, 0.011156272143125534, -0.010654282756149769, -0.046494562178850174, 0.05864615738391876, 0.025514887645840645, 0.03058670647442341, -0.06366604566574097, -0.027384363114833832, -0.031123315915465355, 0.03391021862626076, -0.017318619415163994, 0.03294086083769798, -0.032888930290937424, -0.015345282852649689 ]
7,429
pathlib
expanduser
Return a new path with expanded ~ and ~user constructs (as returned by os.path.expanduser)
def expanduser(self): """ Return a new path with expanded ~ and ~user constructs (as returned by os.path.expanduser) """ if (not (self._drv or self._root) and self._parts and self._parts[0][:1] == '~'): homedir = self._accessor.expanduser(self._parts[0]) if homedir[:1] == "~": raise RuntimeError("Could not determine home directory.") return self._from_parts([homedir] + self._parts[1:]) return self
(self)
[ 0.02325648069381714, -0.024874622002243996, 0.052916668355464935, 0.03112340159714222, 0.006024994887411594, -0.02680261991918087, 0.03938625380396843, -0.004647853318601847, 0.0025261943228542805, -0.01933162659406662, 0.12277217954397202, -0.03924853727221489, 0.01631912961602211, 0.06338294595479965, -0.061695948243141174, 0.029729045927524567, 0.021535053849220276, 0.027370691299438477, -0.02843797579407692, 0.027955975383520126, 0.014804272912442684, -0.0597679503262043, 0.050093527883291245, -0.0044757104478776455, -0.05054109916090965, 0.05694480985403061, 0.008942813612520695, 0.015191594138741493, 0.03387768566608429, -0.058356378227472305, 0.02496069297194481, -0.0034751310013234615, 0.029333118349313736, 0.010724490508437157, 0.06754879653453827, 0.0011275347787886858, 0.03714839741587639, 0.081251360476017, 0.04393082112073898, -0.051470670849084854, -0.036390967667102814, -0.017937270924448967, 0.013521810062229633, 0.0058614592999219894, 0.03697625547647476, -0.00030770510784350336, 0.049508243799209595, -0.006614583544433117, 0.02110469713807106, 0.03427361324429512, 0.025201693177223206, -0.011266740038990974, -0.046616245061159134, -0.007711993530392647, -0.0053106024861335754, -0.0076474398374557495, 0.036012254655361176, -0.024668050929903984, -0.05852852016687393, -0.0027198547031730413, -0.016052307561039925, 0.0012846150202676654, 0.03611554205417633, 0.009269884787499905, 0.012514774687588215, 0.025838620960712433, -0.06286651641130447, -0.03842225298285484, -0.012729953043162823, 0.028988832607865334, -0.07395251095294952, -0.0035977826919406652, -0.022516267374157906, -0.05326095595955849, 0.04685724526643753, 0.004174460656940937, -0.07071622461080551, 0.001688074436970055, -0.004893156699836254, -0.0036171486135572195, -0.046616245061159134, -0.028937188908457756, -0.030847974121570587, 0.019934125244617462, 0.001276007853448391, 0.04699495807290077, 0.026647690683603287, -0.028610117733478546, 0.06548308581113815, 0.0406256802380085, 0.03559911251068115, 0.00313730095513165, -0.017016306519508362, 0.03680410981178284, 0.05911380797624588, -0.03305140137672424, 0.016301915049552917, 0.022430194541811943, -0.015398165211081505, -0.030555330216884613, -0.04069453850388527, 0.03845668211579323, -0.04289796203374863, 0.029264260083436966, 0.012437311001121998, 0.037113968282938004, 0.042622536420822144, 0.0075269402004778385, 0.01979641243815422, -0.04224381968379021, -0.11712589859962463, 0.03079633042216301, -0.027422333136200905, 0.031020116060972214, -0.030830759555101395, -0.0004338534199632704, 0.026819834485650063, 0.025115622207522392, 0.062212374061346054, -0.03492775559425354, -0.027078047394752502, 0.06603394448757172, -0.042484819889068604, 0.024099979549646378, 0.042691390961408615, 0.06875380128622055, -0.019452126696705818, -0.0015191594138741493, -0.023359766229987144, 0.018918484449386597, -0.016207236796617508, 0.024943478405475616, -0.0093387421220541, -0.06961451470851898, 0.028747832402586937, 0.01556170079857111, -0.022464623674750328, 0.03420475497841835, 0.012041382491588593, 0.10452505201101303, -0.000014339621884573717, -0.0319841168820858, -0.021707195788621902, 0.009967062622308731, -0.017016306519508362, 0.0543970949947834, 0.0625566616654396, 0.029453618451952934, -0.024943478405475616, -0.005663495045155287, 0.011550775729119778, 0.02792154811322689, 0.01264388207346201, 0.006924440618604422, 0.020760411396622658, 0.001099023618735373, 0.0014901102986186743, -0.012514774687588215, 0.04048796370625496, -0.008542582392692566, 0.008237028494477272, -0.053054384887218475, 0.005654888227581978, 0.012575024738907814, -0.014399738050997257, 0.010113384574651718, -0.004120666068047285, -0.023824550211429596, 0.00725581543520093, 0.02129405364394188, 0.022705623880028725, 0.004574692342430353, -0.011361419223248959, 0.024409836158156395, -0.07601822167634964, 0.011387240141630173, 0.018780769780278206, -0.029453618451952934, -0.028661761432886124, 0.00568501278758049, 0.006356369704008102, -0.0020915339700877666, 0.0396961085498333, -0.006201440934091806, 0.04351767525076866, 0.05281338468194008, 0.03983382135629654, 0.024719692766666412, 0.03749268129467964, 0.0674799457192421, -0.1057644784450531, 0.027112476527690887, 0.03134718909859657, 0.0002110093046212569, -0.004396094474941492, -0.028162546455860138, 0.010078955441713333, 0.010733097791671753, -0.10073791444301605, 0.007927171885967255, -0.08765506744384766, -0.013719773851335049, 0.009622777812182903, -0.05722023546695709, 0.03566797077655792, 0.017145413905382156, -0.023480266332626343, -0.013780023902654648, -0.021242409944534302, 0.020691553130745888, -0.004322933964431286, -0.016396593302488327, -0.00028995287721045315, 0.04850981384515762, -0.0310545451939106, -0.020536625757813454, 0.024616407230496407, 0.051608383655548096, 0.02490904927253723, 0.06128280609846115, -0.005439709406346083, -0.030107760801911354, -0.005981959402561188, -0.024943478405475616, -0.04245039075613022, -0.04234710708260536, -0.03897310793399811, -0.036735255271196365, 0.007970207370817661, -0.046753961592912674, 0.018006127327680588, -0.0831105038523674, -0.0630386620759964, -0.0151743795722723, -0.032603830099105835, 0.04709824547171593, 0.031037330627441406, 0.012575024738907814, 0.041520822793245316, 0.026750976219773293, -0.03742382675409317, -0.03394654393196106, 0.05928594991564751, 0.02902326174080372, 0.010474883951246738, -0.010311348363757133, 0.011197883635759354, -0.0025735334493219852, 0.04968038573861122, -0.06338294595479965, -0.019555412232875824, 0.05870066583156586, -0.018384842202067375, 0.00496631721034646, 0.009510884992778301, 0.005400977563112974, -0.028730617836117744, 0.04768352955579758, -0.040074821561574936, 0.0019850207027047873, 0.017747912555933, -0.014227595180273056, -0.014193166047334671, -0.0723687931895256, -0.003120086621493101, -0.0015729540027678013, 0.01031995564699173, -0.011998347006738186, -0.010268312878906727, -0.0062057445757091045, -0.009390384890139103, 0.12153275310993195, -0.0522969551384449, 0.008701814338564873, 0.000032360811019316316, 0.0063047269359230995, -0.02084648236632347, 0.009614170528948307, -0.04176182299852371, 0.013013988733291626, -0.05312323942780495, 0.024857407435774803, -0.02332533709704876, 0.02699197642505169, 0.014296452514827251, -0.01732616312801838, -0.010156420059502125, 0.02150062471628189, 0.011189276352524757, -0.008624349720776081, 0.009596955962479115, 0.002610113937407732, -0.018711913377046585, -0.033980969339609146, 0.03914525359869003, -0.0019387572538107634, -0.07047522813081741, -0.03308583050966263, -0.03590897098183632, -0.022103123366832733, -0.03248332813382149, 0.0315193310379982, -0.11292561888694763, 0.02673376351594925, 0.02563204988837242, -0.01716262847185135, 0.020295625552535057, 0.006803940515965223, 0.05725466459989548, 0.023411408066749573, 0.01044906210154295, -0.04258810728788376, 0.014287845231592655, 0.03224232792854309, 0.011619633063673973, -0.029143759980797768, 0.052710097283124924, -0.03153654560446739, 0.030520902946591377, 0.00273706903681159, -0.06207466125488281, 0.007384922355413437, -0.002202350879088044, -0.008624349720776081, -0.05794323608279228, 0.032534971833229065, -0.011481918394565582, 0.06679137051105499, -0.05178052559494972, 0.05078209936618805, -0.04110768064856529, 0.028231404721736908, -0.015492843464016914, 0.02960854582488537, -0.08737964183092117, -0.035874541848897934, 0.05470695346593857, -0.03497939929366112, -0.030262688174843788, -0.03349897265434265, 0.035220399498939514, -0.014537451788783073, -0.021793266758322716, -0.012686917558312416, 0.04541124776005745, -0.02227526716887951, 0.03532368317246437, 0.03800911083817482, 0.00633915513753891, -0.02050219662487507, 0.006907226052135229, 0.010638419538736343, -0.020071839913725853, -0.04789010062813759, 0.038766536861658096, -0.009536705911159515, -0.05126409977674484, 0.0004674750380218029, 0.0469261035323143, -0.021053053438663483, 0.030641403049230576, -0.03177754580974579, -0.01329802442342043, -0.025976335629820824, -0.048199959099292755, -0.04045353829860687, -0.027611691504716873, 0.026165692135691643, 0.023239266127347946, 0.01596623659133911, 0.038697682321071625, -0.028541261330246925, 0.07787736505270004, -0.03165704384446144, 0.03577125445008278, 0.024203265085816383, -0.03590897098183632, -0.05250352621078491, -0.09708848595619202, -0.01448580902069807, 0.07966764271259308, 0.016913020983338356, 0.015544487163424492, 0.005547299049794674, 0.022326909005641937, -0.014528844505548477, 0.05642838031053543, 0.031243901699781418, 0.03368832916021347, 0.004725317470729351, -0.00538806663826108, 0.0054224953055381775, 0.08414335548877716, 0.019417697563767433, -0.008353224955499172, 0.019813625141978264, 0.035358112305402756, -0.015415379777550697, -0.016362164169549942, 0.015148558653891087, 0.04286353662610054, -0.00485012074932456, 0.014528844505548477, 0.02397947944700718, 0.0028382029850035906, -0.037251681089401245, 0.009657206013798714, -0.0006137963500805199, -0.04475710541009903, 0.031760331243276596, -0.044791534543037415, -0.051091957837343216, 0.008060581982135773, 0.035805683583021164, 0.024599192664027214, 0.04045353829860687, -0.03131275996565819, -0.037320539355278015, 0.06751436740159988, 0.008456510491669178, -0.07677564769983292, -0.008899778127670288, -0.08675992488861084, 0.02988397516310215, 0.01025970559567213, 0.014881737530231476, -0.041899535804986954, -0.046616245061159134, 0.01840205490589142, -0.015957629308104515, 0.02292940951883793, -0.010543741285800934, 0.012867667712271214, 0.024995122104883194, 0.012635274790227413, -0.037251681089401245, 0.026045192033052444, -0.007234297227114439, -0.05412166938185692, -0.005418191663920879, -0.011516347527503967, -0.014089880511164665, 0.02045055478811264, -0.018556984141469002, 0.07464107871055603, -0.008112224750220776, -0.02530497871339321, 0.06200580298900604, -0.011585203930735588, 0.029987260699272156, 0.03973053768277168, -0.012927917763590813, 0.025700906291604042, 0.04351767525076866, -0.052916668355464935, -0.00901167094707489, -0.0009241911466233432, -0.012420096434652805, 0.027611691504716873, 0.05374295264482498, 0.022430194541811943, 0.02535662055015564, 0.04844095930457115, 0.0021216589957475662, 0.011464704759418964, 0.012437311001121998, 0.030761903151869774, 0.013220559805631638, -0.0019333778182044625, -0.02502954937517643, -0.028472404927015305, -0.05246909707784653, -0.029574116691946983, 0.032930899411439896, 0.026957549154758453, 0.0006745842401869595, -0.009726063348352909, 0.04561781883239746, -0.031295545399188995, -0.07429679483175278, -0.062350090593099594, -0.03697625547647476, 0.014150130562484264, 0.04823438823223114, -0.0005435944185592234, -0.00008492822234984487, 0.02325648069381714, -0.012566417455673218, -0.03210461512207985, -0.022034266963601112, 0.0728507936000824, 0.07732650637626648, -0.1146470457315445, 0.05391509830951691, -0.03265547379851341, -0.007294547278434038, -0.007062154822051525, 0.050437815487384796, -0.0002990979701280594, -0.049645956605672836, 0.007462386507540941, 0.0067566013894975185, 0.010276920162141323, 0.00805627927184105, 0.004239014349877834, 0.06086966395378113, -0.011886454187333584, -0.03924853727221489, -0.04083225131034851, -0.007836797274649143, -0.007518332917243242, -0.037251681089401245, -0.02019234001636505, -0.03200133144855499, 0.002640238730236888, 0.046168673783540726, -0.006623190827667713, -0.013590667396783829, 0.014175952412188053, 0.006511298008263111, -0.03714839741587639, 0.013366881757974625, -0.007092279847711325, -0.027405118569731712, -0.008034761063754559, 0.017102377489209175, -0.023566337302327156, 0.06923580169677734, 0.007247208151966333, 0.022361338138580322, -0.000004778473339683842, -0.011223704554140568, 0.01926276832818985, 0.06737665832042694, 0.06775537133216858, 0.05656609311699867, -0.04837210103869438, -0.014322273433208466, -0.037905823439359665, -0.016869986429810524, -0.006167012732475996, 0.004630638752132654, -0.04768352955579758, -0.0747099369764328, 0.02150062471628189, 0.007625922095030546, 0.019366055727005005, -0.03897310793399811, 0.033653900027275085, -0.01972755417227745, -0.01264388207346201, -0.002547712065279484, 0.027181334793567657, 0.11444047093391418, 0.00891699269413948, -0.027405118569731712, -0.019830839708447456, 0.015905985608696938, -0.08393678814172745, -0.010999918915331364, -0.010931062512099743, -0.013384095393121243, -0.014201773330569267, 0.035736825317144394, -0.0074796006083488464, -0.03701068088412285, -0.048199959099292755, 0.048199959099292755, 0.0240483358502388, -0.02456476539373398, -0.059595804661512375, 0.03310304135084152, 0.04234710708260536, 0.025700906291604042, -0.02811090461909771, -0.03473839908838272, 0.062212374061346054, 0.03248332813382149, 0.019693126901984215, -0.009743276983499527, -0.005125549156218767, -0.024995122104883194, -0.023962264880537987, -0.002605810295790434, -0.052124813199043274, -0.049645956605672836, 0.04121096432209015, 0.04778681695461273, -0.04541124776005745, -0.039937108755111694, 0.0415552519261837, -0.029212618246674538, -0.015699414536356926, 0.019675912335515022, -0.0213629100471735, -0.09047821164131165, -0.07877250760793686, -0.059010520577430725, 0.0012426552129909396, 0.008934206329286098, -0.012342632748186588, 0.009028885513544083, 0.03232840076088905, 0.007014815229922533, -0.014098487794399261, -0.026974761858582497, -0.0033288097474724054, 0.012884882278740406, -0.048131100833415985, -0.01706795021891594, 0.0026768192183226347, -0.017971698194742203, -0.005284781102091074, 0.08138907700777054, -0.06358952075242996, 0.04737367480993271, 0.03546139970421791, -0.0747099369764328, -0.04035025089979172, 0.020605482161045074, -0.12531989812850952, 0.01933162659406662, -0.0271985474973917, 0.01618141494691372, -0.04709824547171593, -0.025046763941645622, 0.06424365937709808, 0.08565821498632431, 0.018315983936190605, 0.00943342037498951, -0.030383188277482986, -0.008228421211242676, 0.016146985813975334, 0.032139044255018234, -0.012299596332013607, -0.0394551083445549, -0.03818125277757645, 0.003023256314918399, 0.02227526716887951, -0.05635952204465866, -0.08675992488861084, -0.006033602170646191, -0.0448259599506855, -0.025081193074584007, -0.03611554205417633, -0.03439411520957947, -0.023290907964110374, 0.013952166773378849, -0.017377806827425957, 0.019348841160535812, -0.00538806663826108, 0.050300098955631256, 0.028265833854675293, 0.012704132124781609, -0.01104295440018177, 0.03425639867782593, 0.019813625141978264, -0.0480966717004776, -0.00630903011187911, -0.008611438795924187, -0.040522392839193344, -0.032345615327358246, 0.00455317460000515, -0.013762809336185455, 0.049645956605672836, 0.05085095763206482, -0.028937188908457756, 0.031226687133312225, 0.025718120858073235, -0.003815112868323922, -0.0053149061277508736, -0.017661841586232185, -0.029040474444627762, -0.019452126696705818, -0.03938625380396843, -0.016052307561039925, 0.024220479652285576, -0.0012103784829378128, -0.032276757061481476, 0.01392634492367506, -0.006726476363837719, -0.00880079623311758, -0.0026897299103438854, -0.057185810059309006, -0.03224232792854309, 0.010070348158478737, 0.04245039075613022, 0.05801209434866905, 0.032862044870853424, -0.07009651511907578, -0.029642974957823753, 0.003948523197323084, 0.046753961592912674, 0.04141753539443016, -0.01229098904877901, 0.026957549154758453, 0.016095343977212906, -0.00313730095513165, 0.012428703717887402, -0.0008558720583096147, 0.03783696889877319, 0.0417962484061718, 0.0009188117110170424, -0.027491191402077675, 0.026303406804800034, -0.020106269046664238, -0.015071094036102295, -0.005870066583156586, -0.05474138259887695, 0.04379310458898544, 0.007178350817412138, -0.011611025780439377, 0.04265696182847023, -0.02365240827202797, 0.06847836822271347, -0.03794025257229805, 0.02423769421875477, -0.011395847424864769, 0.0019581234082579613, -0.007625922095030546, 0.039937108755111694, -0.03752711042761803, 0.0711982250213623, 0.010517919436097145, 0.02248183824121952, -0.04293239116668701, -0.060456518083810806, -0.011808989569544792, 0.011714311316609383, 0.01717984303832054, -0.04358653351664543, 0.02465083636343479, 0.018591413274407387, 0.07835935801267624, -0.007909957319498062, -0.00550426309928298, -0.03556468337774277, 0.01464073732495308, -0.033843256533145905, 0.07622478902339935, 0.025838620960712433, -0.004721013829112053, -0.03904196619987488, -0.005663495045155287, -0.02759447693824768, 0.0007278408738784492, 0.03201854228973389, 0.006463958881795406, 0.004393942654132843, 0.051091957837343216, -0.013960774056613445, -0.02392783761024475, 0.0246336217969656, 0.056531667709350586, 0.02110469713807106, -0.03597782552242279, 0.009510884992778301, 0.01979641243815422, -0.00419597839936614, -0.017713485285639763, -0.0012587935198098421, -0.030503688380122185, -0.01828155666589737, 0.005086817312985659, 0.04448167607188225, -0.027869904413819313, -0.026716548949480057, 0.01601787842810154 ]
7,430
pathlib
glob
Iterate over this subtree and yield all existing files (of any kind, including directories) matching the given relative pattern.
def glob(self, pattern): """Iterate over this subtree and yield all existing files (of any kind, including directories) matching the given relative pattern. """ sys.audit("pathlib.Path.glob", self, pattern) if not pattern: raise ValueError("Unacceptable pattern: {!r}".format(pattern)) drv, root, pattern_parts = self._flavour.parse_parts((pattern,)) if drv or root: raise NotImplementedError("Non-relative patterns are unsupported") selector = _make_selector(tuple(pattern_parts), self._flavour) for p in selector.select_from(self): yield p
(self, pattern)
[ 0.05665779486298561, -0.04774494096636772, 0.0014254014240577817, -0.021757852286100388, 0.015055734664201736, 0.0035258205607533455, 0.05096055939793587, -0.003783594351261854, -0.0029534753412008286, -0.00494576059281826, 0.03304746747016907, 0.02612689882516861, -0.00721329590305686, 0.03477761149406433, -0.04582256078720093, 0.01201487798243761, 0.050366368144750595, 0.03848256170749664, -0.023924898356199265, -0.004766629543155432, -0.03834275156259537, 0.054490748792886734, 0.025165708735585213, 0.030827991664409637, -0.015641186386346817, -0.004626820329576731, -0.03659513220191002, -0.006099189165979624, 0.03970589488744736, -0.029534755274653435, -0.036699991673231125, 0.013945996761322021, -0.00010710990318330005, -0.03476013243198395, -0.10394835472106934, -0.054385893046855927, -0.04330598935484886, 0.06969503313302994, -0.011245925910770893, 0.029954183846712112, 0.050016846507787704, 0.014819805510342121, 0.003025564830750227, 0.006544831674546003, 0.03476013243198395, 0.004340647719800472, 0.010581830516457558, -0.014531448483467102, -0.043515704572200775, -0.005435093771666288, 0.010118711739778519, 0.06522112339735031, -0.03687475249171257, -0.0524984635412693, -0.0026039518415927887, 0.052009131759405136, -0.014819805510342121, 0.02441423200070858, 0.06417255848646164, 0.028014326468110085, 0.01600818708539009, 0.008484688587486744, -0.040055420249700546, 0.02133842371404171, -0.005675391294062138, -0.06686388701200485, -0.05015665292739868, -0.05117027461528778, -0.01978304237127304, 0.058230653405189514, -0.0922742635011673, 0.01728394813835621, 0.037748560309410095, 0.01701306737959385, -0.030076516792178154, 0.02133842371404171, 0.016261590644717216, 0.020254898816347122, 0.06067731976509094, 0.02584727853536606, -0.022614184767007828, 0.009847830981016159, 0.012914901599287987, 0.004462981130927801, 0.020849090069532394, 0.029220182448625565, -0.015282925218343735, -0.02710556425154209, 0.04837408289313316, 0.027857040986418724, 0.0006029283977113664, 0.0038928205613046885, 0.019049042835831642, 0.03725922852754593, -0.020184995606541634, 0.01477611530572176, -0.004530701320618391, 0.021618042141199112, 0.012390616349875927, 0.012006140314042568, -0.014164448715746403, 0.005194796249270439, 0.022474374622106552, -0.03984570503234863, 0.03519703820347786, -0.00949830748140812, -0.024693850427865982, -0.004639927297830582, 0.038412656635046005, 0.020394708961248398, -0.00989152118563652, 0.06623474508523941, 0.03166684880852699, -0.007139021996408701, -0.05263827368617058, -0.03037361241877079, -0.014819805510342121, 0.013343067839741707, 0.0029359993059188128, -0.024169566109776497, -0.005662284325808287, 0.040859322994947433, 0.016637329012155533, 0.05735684186220169, 0.04942265525460243, -0.03418342024087906, 0.016209162771701813, -0.024501612409949303, -0.03596599027514458, 0.021163661032915115, -0.008991497568786144, 0.030076516792178154, -0.008899747394025326, 0.005771510303020477, -0.03718932345509529, 0.013657639734447002, 0.027350232005119324, -0.08633235841989517, 0.022334566339850426, 0.011927496641874313, 0.02888813614845276, 0.01204983051866293, 0.005749665200710297, 0.011333306320011616, -0.025480279698967934, -0.007890498265624046, 0.016480043530464172, 0.016541210934519768, 0.0065710460767149925, -0.002121172146871686, -0.027629850432276726, 0.022946232929825783, 0.06735321879386902, 0.07619617134332657, 0.00913130771368742, 0.004379969090223312, -0.005850153509527445, 0.07032417505979538, -0.01179642602801323, -0.0035716956481337547, 0.02822403982281685, 0.0036525228060781956, -0.005697236862033606, 0.05026151239871979, -0.0033903801813721657, 0.04875855892896652, -0.028433755040168762, 0.015309139154851437, -0.04634684696793556, 0.000845410511828959, 0.013605210930109024, -0.030391087755560875, -0.016366448253393173, -0.040754467248916626, 0.004792843945324421, 0.026371564716100693, 0.007200188469141722, 0.058964651077985764, 0.0535120815038681, 0.06280941516160965, 0.04550798982381821, -0.050016846507787704, 0.016873257234692574, -0.0408942773938179, -0.007226402871310711, 0.0191539004445076, 0.027210421860218048, 0.0010693240910768509, 0.03974084556102753, 0.0007755057886242867, -0.03509218245744705, 0.01908399537205696, 0.012259544804692268, -0.005369557999074459, 0.00364596932195127, 0.028206564486026764, -0.07402912527322769, -0.0014789222041144967, -0.023994803428649902, 0.0630890354514122, -0.046975988894701004, -0.03893694281578064, 0.003289892105385661, 0.017467448487877846, 0.001744341803714633, -0.009454616345465183, 0.0050986772403120995, 0.020272376015782356, -0.00005386215343605727, -0.052044082432985306, -0.07070864737033844, 0.003728981129825115, 0.033938754349946976, -0.045228369534015656, 0.02188018523156643, -0.01693442463874817, -0.04994694143533707, -0.014321734197437763, -0.03033865988254547, 0.018210185691714287, 0.0057103438302874565, -0.004736046306788921, -0.06018798425793648, -0.04309627413749695, 0.018542233854532242, -0.005579272285103798, 0.010878926143050194, 0.009183735586702824, -0.053057700395584106, -0.024047231301665306, -0.002789636142551899, -0.00726135540753603, 0.07871273905038834, -0.020849090069532394, -0.010345902293920517, -0.018821852281689644, 0.04169818013906479, -0.011385735124349594, 0.021827757358551025, 0.028136659413576126, -0.012180902063846588, 0.02694827876985073, -0.005732188932597637, -0.02254427969455719, -0.03593103960156441, -0.007012319751083851, 0.02596961334347725, 0.03523199260234833, 0.040754467248916626, 0.01845485344529152, -0.06665417551994324, 0.01908399537205696, -0.04278170317411423, -0.003259308636188507, 0.05221884325146675, -0.06329874694347382, -0.010380854830145836, 0.05456065386533737, 0.004288219381123781, 0.07158245891332626, 0.01728394813835621, 0.04777989163994789, -0.0025340470019727945, 0.046276941895484924, -0.00901771243661642, -0.031561993062496185, -0.02745508775115013, -0.049387700855731964, -0.010826497338712215, 0.0018633983563631773, -0.023190898820757866, -0.009026450105011463, -0.021548137068748474, 0.06780759990215302, 0.004539439454674721, 0.01791309006512165, -0.06266960501670837, 0.04040494188666344, -0.020901517942547798, -0.04910808429121971, -0.027909468859434128, 0.01405959203839302, 0.004012969322502613, 0.0010130726732313633, -0.019835472106933594, 0.02289380319416523, -0.03150956332683563, 0.06280941516160965, -0.020254898816347122, 0.011263402178883553, 0.03645532578229904, -0.025375422090291977, -0.03442808613181114, -0.02207242324948311, -0.010415807366371155, 0.006562307942658663, 0.05253341421484947, -0.0021736007183790207, 0.00786428339779377, 0.011944972909986973, -0.024204518646001816, 0.015990709885954857, 0.029954183846712112, 0.04708084464073181, -0.04162827506661415, -0.00023620158026460558, 0.012425567954778671, 0.006252105813473463, -0.05040132254362106, 0.02184523269534111, 0.012163425795733929, -0.041138943284749985, 0.028521135449409485, -0.025340469554066658, -0.019922852516174316, -0.04809446260333061, 0.06116665154695511, 0.02749004028737545, -0.03449799120426178, -0.016637329012155533, -0.04173313081264496, 0.05127513036131859, -0.011691568419337273, 0.00526470085605979, -0.04271179810166359, 0.04872360825538635, -0.02846870757639408, 0.01845485344529152, 0.010022592730820179, -0.007580295670777559, 0.008122057653963566, -0.01193623524159193, -0.023505469784140587, 0.04466913267970085, 0.02165299467742443, 0.059593793004751205, 0.019101470708847046, 0.01759851910173893, 0.01807037554681301, 0.027559945359826088, 0.025357946753501892, 0.05131008103489876, -0.028992991894483566, 0.013098401948809624, -0.01779949478805065, -0.0019212882034480572, 0.024903565645217896, 0.004159332253038883, 0.03427080065011978, -0.002662933897227049, 0.06724836677312851, -0.010302212089300156, -0.019538376480340958, 0.013281901367008686, 0.03984570503234863, 0.036420371383428574, -0.007488545961678028, 0.02457151748239994, -0.05641312897205353, 0.06892608106136322, 0.10541635751724243, 0.06179579347372055, 0.0022249368485063314, -0.07703503221273422, -0.03544170409440994, -0.025480279698967934, -0.008261866867542267, 0.031002754345536232, -0.02035975642502308, -0.022212233394384384, 0.0022631660103797913, 0.0429215133190155, 0.0034559157211333513, -0.036734942346811295, 0.03596599027514458, -0.07409902662038803, -0.013185782358050346, -0.023837517946958542, 0.02051704190671444, 0.07088340818881989, 0.016366448253393173, 0.021618042141199112, 0.032995037734508514, -0.0186470914632082, 0.029657088220119476, -0.042851608246564865, 0.05875493958592415, -0.026039516553282738, -0.03649027645587921, -0.032138705253601074, 0.00739679578691721, -0.04547303542494774, 0.025183184072375298, -0.0007946203113533556, -0.04617208242416382, -0.09276359528303146, 0.07892245799303055, -0.0034864991903305054, -0.05669274926185608, -0.03666503727436066, 0.024658897891640663, -0.014033377170562744, -0.06280941516160965, 0.008869164623320103, 0.03722427785396576, -0.03607084974646568, 0.04169818013906479, 0.031002754345536232, -0.018507281318306923, -0.04907312989234924, -0.023348184302449226, -0.07451845705509186, -0.01035463996231556, 0.038098085671663284, 0.02565504051744938, -0.03718932345509529, -0.027315279468894005, -0.03764370456337929, 0.00715649826452136, 0.01759851910173893, -0.004487010650336742, -0.10220073908567429, -0.0005207357462495565, 0.01253916323184967, 0.07850302755832672, 0.01822766289114952, -0.004183362238109112, 0.009708021767437458, -0.02051704190671444, 0.08339636027812958, -0.08297692984342575, 0.003106391988694668, -0.03918160870671272, 0.0036044633015990257, 0.0419078953564167, -0.04655655845999718, -0.028433755040168762, -0.03161441907286644, -0.03268046677112579, -0.005103046540170908, -0.010940092615783215, 0.021670470014214516, 0.04225741699337959, -0.00761087890714407, -0.0008071813499554992, -0.032068800181150436, 0.032295990735292435, 0.043550655245780945, -0.00364596932195127, -0.03217365965247154, -0.02215980365872383, -0.0021288178395479918, 0.0519392266869545, -0.04872360825538635, -0.0021124340128153563, -0.010442021302878857, 0.04480894282460213, 0.01209352072328329, -0.03512713313102722, -0.08794017136096954, 0.043935131281614304, -0.016174210235476494, 0.07955159991979599, -0.03289018198847771, 0.0625297948718071, -0.06315893679857254, 0.07640588283538818, -0.02460647001862526, -0.006911831442266703, -0.047290559858083725, 0.018629614263772964, -0.006046760361641645, -0.06724836677312851, -0.02121609076857567, -0.021093755960464478, -0.0372941829264164, -0.05466550961136818, -0.011674092151224613, -0.033117372542619705, -0.05851026996970177, 0.0002228213706985116, -0.04201275110244751, 0.0458575114607811, -0.002975320676341653, -0.04606722667813301, -0.07647579163312912, 0.039461228996515274, -0.03390379995107651, -0.044948749244213104, -0.10157159715890884, 0.029080374166369438, 0.03075808845460415, -0.014653782360255718, -0.015440210700035095, -0.013657639734447002, 0.0189267098903656, -0.031876564025878906, 0.0355989895761013, -0.006343855522572994, -0.031160039827227592, -0.016383923590183258, -0.010546877980232239, -0.03890199214220047, 0.049387700855731964, -0.04299141839146614, 0.04159332439303398, 0.0504712238907814, -0.018245138227939606, -0.008087105117738247, 0.030391087755560875, 0.03757379949092865, 0.009943949989974499, -0.03925151377916336, 0.025532707571983337, 0.04774494096636772, -0.04676627367734909, 0.04599732160568237, -0.016794614493846893, 0.0029359993059188128, 0.02609194628894329, -0.031002754345536232, -0.05288293957710266, -0.022124851122498512, 0.0042052073404192924, 0.029412420466542244, -0.02028985135257244, -0.0005985593888908625, -0.003827284788712859, 0.0021736007183790207, -0.006837558001279831, 0.010109974071383476, 0.005487522576004267, 0.010843973606824875, 0.025445327162742615, 0.03666503727436066, -0.04232732206583023, 0.08814988285303116, 0.023418089374899864, -0.06266960501670837, 0.03170180320739746, -0.016916947439312935, 0.06875131279230118, 0.0013609579764306545, -0.002232582774013281, 0.013334330171346664, -0.028433755040168762, -0.0030080885626375675, -0.07507769763469696, 0.10695426166057587, 0.019730614498257637, 0.0685066506266594, -0.06504636257886887, -0.06633960455656052, 0.10464740544557571, 0.01810532808303833, -0.0092099504545331, -0.010634259320795536, 0.006706486456096172, -0.028800753876566887, -0.01496835332363844, -0.024169566109776497, 0.05840541422367096, -0.03507470712065697, -0.026703612878918648, 0.0423622764647007, 0.000003101852371401037, -0.030303707346320152, 0.04736046493053436, 0.005369557999074459, -0.00019728975894395262, 0.046626463532447815, -0.009917736053466797, 0.0488983690738678, -0.015614972449839115, -0.015064472332596779, -0.0145052345469594, -0.027402659878134727, -0.03848256170749664, 0.009052664041519165, -0.03072313591837883, 0.013517829589545727, -0.04928284510970116, 0.03614075109362602, -0.0007716828258708119, -0.04410989210009575, 0.008593914099037647, 0.03304746747016907, 0.057601507753133774, -0.041803035885095596, 0.02771723084151745, 0.05693741515278816, -0.0896877869963646, 0.016445090994238853, 0.026528850197792053, -0.03119499236345291, -0.026336612179875374, 0.00117308902554214, -0.06116665154695511, 0.014400376938283443, -0.019608281552791595, 0.03974084556102753, 0.08304683864116669, 0.012740139849483967, -0.005277808289974928, -0.009550735354423523, -0.03697960823774338, 0.05735684186220169, -0.01685578189790249, -0.0038185466546565294, 0.07703503221273422, -0.006090451031923294, 0.0519392266869545, 0.05040132254362106, -0.005046248901635408, -0.006758914794772863, 0.05931417644023895, -0.05833550915122032, 0.0094633549451828, -0.014295520260930061, -0.028433755040168762, -0.07633598148822784, -0.0019824549090117216, -0.0013893567956984043, 0.014435329474508762, -0.007859914563596249, 0.004718570038676262, -0.030041564255952835, -0.04543808475136757, -0.03834275156259537, 0.0458575114607811, -0.002189984545111656, -0.0049850819632411, -0.024361804127693176, -0.01226828247308731, 0.023924898356199265, -0.06357836723327637, -0.06812217086553574, -0.06277445703744888, -0.0641026496887207, -0.036420371383428574, -0.04875855892896652, -0.05463055893778801, 0.005290915258228779, -0.025532707571983337, -0.0007383688353002071, -0.03897189348936081, -0.03320475295186043, 0.03136975318193436, -0.0022893804125487804, -0.06469684094190598, 0.04582256078720093, 0.02188018523156643, -0.018402423709630966, 0.024117136374115944, -0.05151979625225067, 0.09045673906803131, -0.07207179069519043, -0.03491742163896561, 0.0636482685804367, 0.04746532067656517, 0.026493897661566734, 0.02701818384230137, -0.039461228996515274, 0.001822984660975635, -0.040160275995731354, 0.00928859319537878, -0.010284735821187496, -0.02242194674909115, -0.015352829359471798, 0.027402659878134727, -0.008751200512051582, 0.0680522695183754, -0.03147461265325546, -0.03586113452911377, -0.01985294744372368, -0.008681295439600945, -0.014959615655243397, 0.02359285205602646, 0.002804927760735154, -0.003464653855189681, -0.028014326468110085, 0.06039769947528839, 0.04096417874097824, 0.0757068395614624, 0.029097849503159523, 0.042851608246564865, -0.0519392266869545, -0.007589033804833889, 0.05012170225381851, -0.02520066127181053, 0.006138510536402464, 0.032610561698675156, 0.003689659759402275, -0.01729268580675125, -0.0419078953564167, 0.11590206623077393, 0.04959741607308388, -0.007715736050158739, 0.002057821024209261, -0.028678420931100845, 0.02114618569612503, 0.021757852286100388, -0.022876327857375145, -0.014889710582792759, 0.03750389441847801, 0.02958718314766884, -0.019258758053183556, 0.0330125167965889, -0.032995037734508514, 0.047675035893917084, -0.06483665108680725, 0.017895614728331566, -0.04547303542494774, -0.017345115542411804, 0.009052664041519165, -0.027734708040952682, 0.03722427785396576, -0.027315279468894005, 0.0458575114607811, -0.014050853438675404, 0.007623986341059208, -0.08451483398675919, -0.008130795322358608, -0.004423659760504961, -0.043900180608034134, 0.06640950590372086, 0.0071958196349442005, -0.011263402178883553, 0.035721324384212494, 0.02593466080725193, -0.012259544804692268, 0.016445090994238853, 0.004233606159687042, 0.004578760825097561, 0.020534519106149673, -0.016480043530464172, -0.006252105813473463, 0.01946847140789032, -0.027472564950585365, -0.018367471173405647, -0.023540422320365906, 0.00788175966590643, -0.052044082432985306, -0.0061734626069664955, 0.018559709191322327, -0.00011994397937087342, 0.014103282243013382, 0.015195543877780437, -0.030478468164801598, 0.032453276216983795, -0.015912067145109177, -0.07381941378116608, 0.02055199444293976, 0.025288041681051254, -0.04442446678876877, 0.02593466080725193, 0.0300240870565176, -0.011202235706150532, 0.00356732658110559, 0.01616547256708145, -0.06046760454773903, 0.006999212317168713, 0.019643234089016914, 0.0011086455779150128, 0.02584727853536606, 0.04131370410323143, 0.000518005108460784, -0.005068094003945589 ]
7,431
pathlib
group
Return the group name of the file gid.
def group(self): """ Return the group name of the file gid. """ return self._accessor.group(self)
(self)
[ 0.03136149048805237, 0.024647152051329613, -0.030340107157826424, 0.09390028566122055, 0.05314541980624199, -0.029084308072924614, 0.0035622837021946907, 0.027778277173638344, 0.03104335442185402, -0.024111343547701836, 0.0013321936130523682, -0.05723095312714577, 0.008824082091450691, 0.015664001926779747, 0.02350855991244316, -0.012038927525281906, -0.017279796302318573, 0.0024027624167501926, 0.017631420865654945, 0.004914360586553812, -0.013621235266327858, 0.010665920563042164, 0.055523067712783813, -0.09095335006713867, -0.016693755984306335, 0.07675444334745407, 0.05080126225948334, -0.0025304353330284357, 0.021231377497315407, -0.023943904787302017, -0.0724010095000267, -0.08231344819068909, 0.01949000358581543, 0.001647189841605723, -0.011971952393651009, -0.01970767416059971, -0.03954930230975151, 0.05006452649831772, -0.08050509542226791, -0.027208982035517693, 0.012340319342911243, 0.014877034351229668, 0.017112355679273605, -0.028515012934803963, 0.006396203767508268, 0.03887954354286194, 0.069989874958992, -0.015337493270635605, -0.003957860171794891, -0.009602678008377552, 0.012474271468818188, 0.010607317090034485, -0.06788013130426407, -0.046950142830610275, -0.044539012014865875, 0.03057452291250229, 0.03656887263059616, -0.019741162657737732, -0.014743082225322723, 0.024831335991621017, -0.005353890359401703, -0.005697142332792282, 0.047787342220544815, -0.059441160410642624, -0.022185785695910454, 0.016174692660570145, -0.06299088895320892, 0.016233297064900398, -0.05361425131559372, 0.04206090047955513, -0.029235003516077995, -0.0023085775319486856, 0.04812222346663475, 0.008568736724555492, -0.008665014058351517, 0.024697383865714073, -0.042764145880937576, 0.0528775155544281, 0.04122370108962059, -0.002087766071781516, -0.009686397388577461, 0.01373844314366579, 0.06218717619776726, 0.012884499505162239, 0.02905082143843174, -0.004131579305976629, 0.0570635125041008, -0.013562630861997604, -0.009736629202961922, -0.048155710101127625, 0.004516690969467163, 0.03787490352988243, 0.003834373317658901, 0.029502907767891884, -0.012415667995810509, -0.05297797918319702, -0.06289042532444, 0.03328704833984375, -0.013068683445453644, -0.023575536906719208, -0.05127009376883507, -0.014960753731429577, 0.01034778542816639, 0.006588759366422892, -0.011268704198300838, -0.02200160175561905, 0.0024153203703463078, -0.006542713847011328, -0.05676212161779404, 0.04524225741624832, -0.051906365901231766, -0.016593292355537415, 0.01387239433825016, 0.022436944767832756, 0.04309902712702751, -0.01959046721458435, -0.008087346330285072, -0.018016532063484192, 0.05873791128396988, -0.035195864737033844, -0.024881567806005478, 0.040520451962947845, -0.031897298991680145, 0.04534272104501724, 0.009652909822762012, 0.045376211404800415, -0.013386818580329418, 0.017681652680039406, 0.058603961020708084, -0.015638886019587517, 0.02868245355784893, 0.004504133015871048, -0.02429552748799324, -0.009209194220602512, 0.040051620453596115, -0.019992321729660034, 0.05545609071850777, 0.030691731721162796, -0.006212019827216864, 0.07320471853017807, 0.008011998608708382, -0.03206473961472511, 0.02247043326497078, 0.019925346598029137, 0.014441690407693386, 0.0261206217110157, 0.038477685302495956, -0.014106810092926025, -0.028029438108205795, -0.05508772283792496, 0.017363516613841057, -0.010699409060180187, 0.060747191309928894, 0.0045334347523748875, 0.022353224456310272, 0.05877140164375305, -0.03646840900182724, 0.02141556143760681, 0.010540341027081013, -0.054987259209156036, -0.028079669922590256, -0.018250947818160057, -0.01635887660086155, -0.011838000267744064, 0.014039834961295128, -0.007639444898813963, 0.0457780659198761, 0.03253357112407684, 0.0012819616822525859, 0.02670666202902794, -0.00521156657487154, 0.013462167233228683, -0.03985069319605827, 0.030390338972210884, -0.04972964525222778, 0.050198476761579514, -0.00025495339650660753, 0.07400842756032944, 0.016275156289339066, 0.04323297739028931, 0.012917987070977688, 0.00014598664711229503, 0.005575748160481453, 0.03176334500312805, 0.023056471720337868, 0.030289875343441963, 0.04849059134721756, 0.021616488695144653, 0.04430459439754486, -0.05378169193863869, 0.003669026540592313, -0.0020479990635067225, -0.03620050475001335, 0.004391110967844725, 0.026405271142721176, -0.041726019233465195, -0.026555966585874557, 0.010138485580682755, -0.01633376069366932, 0.030708475038409233, 0.0070827072486281395, 0.003779955441132188, -0.03003871627151966, 0.003761118510738015, -0.00023755534493830055, 0.0026162483263760805, 0.0005452261539176106, 0.02784525416791439, -0.06918615847826004, 0.04457249864935875, 0.023123448714613914, -0.03810931742191315, 0.0009653955930843949, 0.08639898151159286, 0.0623881034553051, -0.07816094160079956, -0.03097637929022312, 0.031328003853559494, -0.012532875873148441, 0.07829488813877106, -0.028096413239836693, 0.019992321729660034, 0.045912016183137894, -0.03610004112124443, -0.054685868322849274, -0.046213410794734955, 0.03509540110826492, -0.005169706419110298, -0.03553074598312378, -0.006446435581892729, 0.05425052344799042, -0.08070602267980576, 0.014542154036462307, 0.033220075070858, -0.046481311321258545, -0.00025495339650660753, 0.009368261322379112, 0.0027418280951678753, 0.030658243224024773, 0.02794571779668331, -0.032684266567230225, 0.021884392946958542, 0.09014963358640671, 0.07682142406702042, 0.015479817986488342, -0.023156937211751938, -0.010406388901174068, 0.02895035594701767, 0.06419645249843597, 0.0029657790437340736, -0.0075138648971915245, -0.014173786155879498, -0.08646595478057861, 0.01695328950881958, -0.019238842651247978, -0.0636606439948082, -0.13107194006443024, 0.02314019203186035, 0.018903963267803192, 0.004993894603103399, 0.025149472057819366, -0.01687793992459774, -0.02503226324915886, -0.006559457629919052, 0.022336481139063835, 0.05987650528550148, 0.027342934161424637, -0.014483550563454628, 0.004751106724143028, -0.012407295405864716, 0.07702235132455826, 0.05421703681349754, -0.05930721014738083, -0.04581155255436897, -0.06262251734733582, -0.07173124700784683, -0.007162241265177727, 0.03680328652262688, -0.02195136994123459, -0.04905988648533821, 0.03720514476299286, 0.023960648104548454, -0.04597899317741394, 0.00032886239932850003, -0.0021474165841937065, 0.045376211404800415, -0.01212264783680439, -0.02784525416791439, -0.04085533320903778, 0.0048515708185732365, -0.026154110208153725, -0.0017685837810859084, -0.07260193675756454, -0.027828508988022804, -0.03770746290683746, -0.053580764681100845, -0.011519864201545715, -0.026422014459967613, 0.0011354517191648483, 0.034927960485219955, -0.05890535190701485, 0.029536396265029907, -0.015948649495840073, 0.042764145880937576, -0.06811454892158508, 0.012951475568115711, 0.03988417983055115, -0.016785848885774612, -0.00011341436038492247, 0.025685278698801994, 0.008070603013038635, -0.006994801107794046, 0.013395191170275211, 0.004868314601480961, 0.021248122677206993, 0.03532981500029564, 0.025367142632603645, 0.05913976952433586, 0.0020490456372499466, 0.06744478642940521, -0.013144031167030334, 0.001171032665297389, 0.0033843787387013435, 0.014902150258421898, 0.05033243075013161, 0.0369037501513958, -0.010515225119888783, 0.060747191309928894, -0.010238949209451675, 0.07233402878046036, -0.07045870274305344, -0.030959635972976685, -0.009410121478140354, 0.01217287965118885, -0.02801269292831421, 0.02633829414844513, 0.02131509780883789, -0.07487911731004715, 0.03204799443483353, -0.039214421063661575, -0.010691036470234394, -0.04055394232273102, -0.06138346344232559, -0.011670560576021671, -0.03196427598595619, 0.022336481139063835, 0.05207380652427673, -0.02367600053548813, 0.029402444139122963, -0.01850210689008236, 0.04021906107664108, 0.0517389252781868, -0.042462754994630814, -0.024496454745531082, 0.0010527783306315541, 0.011871487833559513, -0.006232949905097485, 0.02054487355053425, 0.019272331148386, 0.07742420583963394, 0.03469354659318924, -0.07876372337341309, 0.03764048591256142, -0.04698363319039345, -0.028916869312524796, -0.02094672992825508, -0.06278996169567108, 0.014935637824237347, 0.047050610184669495, 0.008041300810873508, -0.026874102652072906, 0.025434119626879692, -0.01638399250805378, -0.03025638684630394, -0.026689918711781502, 0.018786756321787834, 0.038745589554309845, -0.013939370401203632, -0.07420935481786728, -0.06513411551713943, 0.013277983292937279, 0.015446329489350319, 0.028715940192341805, 0.06851640343666077, -0.06620573252439499, 0.004257159307599068, 0.011243588291108608, 0.021767186000943184, -0.0391809344291687, -0.009652909822762012, 0.07086055725812912, 0.003399029839783907, 0.032466594129800797, 0.0002930198097601533, -0.0225708968937397, -0.05508772283792496, -0.005441796500235796, -0.03894651681184769, 0.0014002160169184208, -0.005027382634580135, 0.011159868910908699, -0.0014577734982594848, -0.059273719787597656, 0.00883245375007391, 0.02220252901315689, 0.003941116388887167, 0.02717549353837967, -0.0338563434779644, -0.02695782110095024, -0.06272298097610474, -0.018301179632544518, 0.0027355491183698177, -0.03934837505221367, -0.020042555406689644, 0.07039172947406769, 0.005512958392500877, -0.03343774378299713, -0.004952034913003445, 0.039683252573013306, 0.028347572311758995, -0.04259670898318291, 0.01465936191380024, -0.026371782645583153, 0.05361425131559372, -0.03141172230243683, -0.060948118567466736, 0.01376355905085802, -0.012373807840049267, -0.033303793519735336, 0.055255163460969925, -0.04718456044793129, 0.05924023315310478, -0.007840372622013092, 0.034994937479496, 0.02185090444982052, -0.05790071189403534, -0.026405271142721176, 0.022286249324679375, -0.018535595387220383, 0.02931872382760048, 0.03452610597014427, -0.01709561236202717, 0.0017068403540179133, -0.014081694185733795, 0.045108307152986526, -0.03489447385072708, -0.048725008964538574, 0.03861163929104805, 0.01424076221883297, 0.019724419340491295, 0.012264971621334553, 0.023324375972151756, 0.04068789258599281, -0.029854532331228256, -0.003587399609386921, -0.01000453345477581, -0.039214421063661575, -0.052274733781814575, 0.019741162657737732, -0.053681228309869766, -0.039314884692430496, 0.06985592097043991, 0.015714233741164207, 0.013989602215588093, -0.027510372921824455, -0.01298496313393116, 0.06305786222219467, -0.007040847092866898, 0.01744723692536354, -0.007815256714820862, 0.013663094490766525, -0.008497574366629124, -0.07099451124668121, -0.00827990286052227, -0.07119543850421906, 0.041625555604696274, -0.005429238546639681, 0.05689607560634613, -0.018016532063484192, -0.02350855991244316, -0.019305819645524025, -0.03144521266222, 0.014224018901586533, 0.026371782645583153, 0.0003788327449001372, -0.040520451962947845, -0.008129206486046314, 0.007773397024720907, -0.05877140164375305, -0.08164368569850922, 0.04129067808389664, 0.011193356476724148, -0.06788013130426407, -0.02925174869596958, 0.07005684822797775, 0.05726444348692894, 0.00814176443964243, 0.019054658710956573, -0.050198476761579514, -0.020812777802348137, -0.033203329890966415, 0.020025810226798058, -0.01970767416059971, -0.058704424649477005, 0.023742975667119026, -0.025668535381555557, 0.008740361779928207, -0.032684266567230225, 0.02471412718296051, -0.013981230556964874, 0.012742175720632076, 0.012281715869903564, -0.024077855050563812, 0.016425853595137596, -0.01510307751595974, 0.021130913868546486, -0.03656887263059616, 0.015370981767773628, -0.0022081134375184774, 0.04993057623505592, 0.00727526331320405, -0.06838244944810867, -0.02236996963620186, 0.015555165708065033, -0.018719779327511787, -0.012800779193639755, -0.018301179632544518, 0.03244984894990921, -0.03198101744055748, 0.040319524705410004, 0.014307738281786442, 0.023223912343382835, 0.024479711428284645, 0.018066763877868652, -0.01663515344262123, 0.022872287780046463, -0.04504133015871048, 0.008865942247211933, -0.11499771475791931, -0.001767537323758006, -0.023592280223965645, -0.0504663810133934, 0.00025286039453931153, -0.01628352887928486, 0.010104997083544731, 0.010808244347572327, 0.005764117930084467, -0.05716397613286972, 0.1188153475522995, -0.019791394472122192, 0.06550248712301254, -0.00258066738024354, -0.011812884360551834, -0.08264832943677902, 0.07956743240356445, 0.02742665447294712, 0.012524503283202648, -0.01823420450091362, -0.030423827469348907, -0.047318510711193085, -0.02000906690955162, 0.0030390338506549597, 0.047050610184669495, -0.0017968392930924892, -0.020143019035458565, -0.009728257544338703, -0.006697595585137606, -0.000101183402875904, 0.005743188317865133, 0.014006346464157104, -0.06727734953165054, 0.025902951136231422, 0.06071370467543602, -0.009652909822762012, -0.043969713151454926, 0.05327937379479408, 0.0071329390630126, 0.07106149196624756, 0.009426865726709366, -0.03978371620178223, 0.004525063093751669, -0.007170613389462233, 0.06891825795173645, 0.0010171972680836916, -0.09061846882104874, 0.030055459588766098, -0.0067855012603104115, 0.0003537167503964156, -0.014977497979998589, 0.041926946491003036, -0.002551365178078413, -0.03971674293279648, 0.03097637929022312, -0.005621794145554304, -0.012239855714142323, -0.001808350789360702, -0.011143124662339687, -0.06044580042362213, 0.0030432199127972126, 0.006392017938196659, 0.07635258883237839, 0.017263052985072136, 0.0171207282692194, 0.07427633553743362, -0.0012013812083750963, 0.0005891791079193354, -0.01850210689008236, -0.03162939473986626, -0.03663584589958191, 0.006149230059236288, -0.10227228701114655, -0.018736522644758224, -0.026505734771490097, -0.0083050187677145, -0.014081694185733795, 0.029971739277243614, 0.04129067808389664, 0.0142658781260252, -0.003980883397161961, -0.027878740802407265, -0.03934837505221367, 0.05920674279332161, -0.029184771701693535, 0.008384552784264088, 0.030289875343441963, -0.025065751746296883, -0.0005965046002529562, 0.06017789617180824, 0.019004426896572113, -0.024479711428284645, -0.06533504277467728, -0.017480723559856415, 0.005759932100772858, -0.06546899676322937, 0.027409909293055534, -0.03149544447660446, -0.015312377363443375, -0.024262038990855217, -0.07400842756032944, 0.03824327141046524, -0.03509540110826492, -0.003311123698949814, -0.010490109212696552, -0.022956008091568947, -0.04828966408967972, -0.002411134308204055, -0.006722711492329836, 0.012331947684288025, 0.007672932930290699, -0.09068544209003448, -0.04105626046657562, 0.03156241774559021, 0.009301286190748215, -0.06754525005817413, 0.017832348123192787, 0.02560155838727951, -0.02283880114555359, 0.011519864201545715, -0.08613108098506927, -0.0486915186047554, -0.02210206538438797, -0.002687410218641162, 0.0038364664651453495, -0.021181145682930946, -0.04299856349825859, -0.016886312514543533, 0.019623955711722374, -0.030959635972976685, 0.0060320221818983555, -0.0011166147887706757, -0.03193078562617302, 0.02774478867650032, 0.01907140389084816, -0.01032266952097416, -0.06510062515735626, -0.02670666202902794, 0.0677126869559288, 0.029335469007492065, 0.0249820314347744, 0.04058742895722389, 0.032784730195999146, 0.03496144711971283, -0.0021788114681839943, -0.03333728015422821, 0.05696304887533188, 0.06081416830420494, 0.002877873135730624, -0.0005771443829871714, 0.03777443990111351, -0.024898311123251915, -0.03405727446079254, 0.02481459081172943, 0.029402444139122963, 0.02936895564198494, -0.030189411714673042, 0.014692850410938263, 0.07293681800365448, 0.0738075003027916, 0.0021788114681839943, 0.002649736125022173, -0.04105626046657562, 0.007225031033158302, 0.01690305583178997, -0.02210206538438797, 0.009133845567703247, 0.002974150935187936, -0.0021641605999320745, 0.025484351441264153, -0.011419400572776794, -0.0036878634709864855, 0.01248264405876398, 0.030758706852793694, -0.025199703872203827, 0.01259147934615612, 0.045074816793203354, -0.013227751478552818, -0.014039834961295128, 0.0344926156103611, -0.00003868777275783941, 0.00995430164039135, -0.019054658710956573, 0.033303793519735336, 0.02622108720242977, -0.000916210119612515, -0.013688210397958755, 0.0020616035908460617, -0.00006478485011029989, 0.017698395997285843, -0.03390657901763916, 0.024462968111038208, 0.018301179632544518, 0.0184518750756979, -0.024178320541977882, 0.006613875739276409, 0.022386712953448296, 0.030239643529057503, 0.01710398495197296, -0.0344926156103611, -0.03405727446079254, 0.03713816776871681, 0.03062475472688675, 0.016810964792966843, -0.03891303017735481, -0.04105626046657562, -0.031060099601745605, 0.009485469199717045, 0.02690758928656578, 0.026422014459967613, -0.03904698044061661, -0.009334773756563663, 0.049662671983242035, 0.02879966050386429, 0.023123448714613914, 0.024027623236179352, -0.02267136052250862, -0.03559771925210953, 0.03720514476299286, 0.02801269292831421, 0.07300379127264023, 0.03710467740893364, -0.02821362018585205, -0.029402444139122963, 0.002737642265856266, -0.011034288443624973, -0.023625768721103668, 0.03834373503923416, -0.029235003516077995, -0.02032720297574997 ]
7,432
pathlib
hardlink_to
Make this path a hard link pointing to the same file as *target*. Note the order of arguments (self, target) is the reverse of os.link's.
def hardlink_to(self, target): """ Make this path a hard link pointing to the same file as *target*. Note the order of arguments (self, target) is the reverse of os.link's. """ self._accessor.link(target, self)
(self, target)
[ 0.027086254209280014, 0.01949596218764782, -0.03646751493215561, 0.04213038086891174, -0.02602872997522354, -0.013952490873634815, -0.018950143828988075, 0.07450425624847412, -0.027751469984650612, 0.008869553916156292, 0.026455150917172432, -0.031401634216308594, 0.08930958807468414, 0.0004938486963510513, -0.02589227631688118, 0.029610665515065193, 0.03181099891662598, 0.04468890652060509, -0.01596519723534584, 0.05625344067811966, 0.038446106016635895, 0.017568539828062057, 0.01481386087834835, -0.04032235965132713, -0.016783926635980606, 0.11298447847366333, -0.05874374136328697, 0.02497120574116707, -0.004392134957015514, -0.04554174840450287, -0.008694721385836601, -0.06761329621076584, 0.05932367220520973, 0.04178924486041069, 0.041175201535224915, 0.027000969275832176, -0.00016603762924205512, 0.03769560530781746, -0.047213319689035416, -0.03827553614974022, 0.009227748028934002, 0.036876875907182693, 0.019359508529305458, -0.0043367003090679646, 0.04011767730116844, 0.025278229266405106, -0.00043095159344375134, 0.003112872363999486, -0.01569228805601597, -0.050249435007572174, -0.015231753699481487, 0.01569228805601597, -0.0036224452778697014, 0.0006934669800102711, -0.039742425084114075, 0.03906015306711197, 0.026199297979474068, 0.008617965504527092, -0.0471792072057724, -0.005462451372295618, 0.01611017994582653, -0.02474946714937687, 0.06280326843261719, 0.0015415115049108863, 0.03619460389018059, 0.010771390981972218, -0.033056147396564484, -0.006089290138334036, -0.006532767787575722, 0.045644089579582214, -0.027359163388609886, -0.00809346791356802, 0.008886611089110374, -0.03351668268442154, 0.0308558139950037, 0.008613701909780502, -0.016954494640231133, -0.025158831849694252, 0.004656516015529633, -0.05065879970788956, -0.04062937945127487, -0.042983222752809525, -0.007330175023525953, -0.05185277760028839, -0.0520915761590004, -0.006669222377240658, 0.07348084449768066, -0.00623853737488389, 0.009440958499908447, -0.0435972698032856, -0.0023133333306759596, 0.03181099891662598, -0.020826395601034164, -0.02625046856701374, 0.009091293439269066, -0.05963069573044777, 0.006242801435291767, 0.0073429676704108715, 0.020024724304676056, -0.0028932655695825815, -0.01877957582473755, -0.0053004114888608456, -0.010524067096412182, 0.031691599637269974, 0.03496651351451874, -0.027427390217781067, -0.01755148358643055, -0.01255383063107729, -0.04509827122092247, -0.024647125974297523, -0.09640523046255112, 0.0078035020269453526, -0.005377167370170355, -0.03007120080292225, 0.005138371605426073, -0.0008480445249006152, 0.062393903732299805, -0.016596300527453423, 0.020331747829914093, -0.028587255626916885, -0.017534427344799042, 0.003756767837330699, -0.027461504563689232, -0.05215980112552643, 0.04015178978443146, -0.004788706544786692, -0.014515366405248642, 0.013133763335645199, 0.0032024208921939135, -0.07361730188131332, -0.01883074641227722, 0.012997308745980263, -0.022839102894067764, 0.052193913608789444, 0.022753817960619926, -0.012323562987148762, -0.05673103407025337, 0.03201568126678467, 0.03766149282455444, 0.022497965022921562, 0.014378911815583706, -0.04885077476501465, -0.007368552964180708, -0.008067882619798183, 0.01813141629099846, 0.017159176990389824, -0.02602872997522354, 0.02273676171898842, -0.010336441919207573, 0.0191207118332386, 0.046735730022192, -0.03588758036494255, 0.020894622430205345, 0.05413839593529701, -0.004737535957247019, 0.026557492092251778, -0.04905545711517334, 0.01301436498761177, 0.01848960854113102, 0.0061958953738212585, 0.02437421679496765, -0.031896281987428665, 0.035921696573495865, 0.029900632798671722, -0.029252471402287483, -0.009517714381217957, -0.002046820241957903, -0.04342670366168022, 0.039094265550374985, 0.035341762006282806, 0.003940128721296787, -0.04598522558808327, -0.013892792165279388, 0.005718303844332695, 0.02307789772748947, -0.017892619594931602, 0.03588758036494255, -0.00309155136346817, 0.02329963631927967, 0.02041703090071678, -0.0223615113645792, -0.006021062843501568, 0.013065535575151443, -0.003871901659294963, -0.0027781319804489613, 0.05826614797115326, -0.029525382444262505, 0.009662697091698647, 0.016954494640231133, 0.020894622430205345, 0.00017376650066580623, 0.035853467881679535, 0.020945793017745018, 0.010592294856905937, -0.008426076732575893, -0.09804268926382065, 0.005773738492280245, -0.027512675151228905, -0.01477974746376276, 0.09313032031059265, -0.019513020291924477, 0.026131071150302887, -0.02178157866001129, 0.022480908781290054, 0.04144810885190964, 0.005313204135745764, 0.06375844776630402, 0.02978123351931572, -0.029610665515065193, 0.05587819218635559, -0.007974070496857166, -0.04588288813829422, -0.014830918051302433, 0.017432086169719696, 0.026199297979474068, -0.003255723509937525, -0.09517713636159897, 0.038070857524871826, -0.012229750864207745, 0.054274849593639374, 0.0025755821261554956, -0.020229406654834747, -0.038514334708452225, 0.007607348263263702, -0.006592466961592436, -0.02705213986337185, 0.03830965235829353, -0.02043408900499344, 0.06256446987390518, -0.044347770512104034, 0.03544410318136215, -0.02712036855518818, -0.02805849350988865, -0.01761971041560173, 0.07818853110074997, -0.043699610978364944, -0.015035600401461124, 0.012886438518762589, -0.01604195311665535, 0.020246462896466255, -0.026574548333883286, -0.0026310167741030455, 0.07061529904603958, 0.022600306198000908, 0.041959814727306366, 0.01416570134460926, -0.031094610691070557, -0.0038441841024905443, -0.002029763301834464, -0.0684320256114006, 0.016169879585504532, 0.014737105928361416, -0.03483005613088608, 0.015939611941576004, 0.02439127489924431, 0.0036800121888518333, 0.0031384576577693224, -0.03946951776742935, -0.025210002437233925, 0.062393903732299805, -0.021849805489182472, -0.018148472532629967, 0.004334568046033382, -0.04932836815714836, 0.00217687850818038, -0.026489265263080597, -0.07061529904603958, 0.008391963317990303, -0.02734210714697838, -0.013398144394159317, 0.09606409817934036, -0.02121870219707489, -0.028996620327234268, 0.021986261010169983, -0.02891133539378643, -0.03295380622148514, 0.0014615575782954693, 0.022190943360328674, -0.0019743286538869143, 0.019802985712885857, 0.006021062843501568, -0.009799151681363583, 0.013244632631540298, -0.013210519216954708, -0.032697953283786774, -0.01942773535847664, -0.038582559674978256, 0.055127691477537155, -0.021031077951192856, -0.011743631213903427, 0.06474774330854416, 0.052466824650764465, 0.015027071349322796, 0.035000625997781754, 0.018353154882788658, 0.0395718589425087, -0.04697452485561371, -0.008792798034846783, 0.0015308510046452284, -0.03633105754852295, -0.023487262427806854, -0.023777227848768234, -0.06655576825141907, 0.04711097851395607, -0.07122934609651566, -0.027512675151228905, 0.04990829899907112, -0.008293885737657547, 0.0386849008500576, 0.03343139588832855, 0.012110352516174316, -0.031981565058231354, 0.0102852713316679, 0.06253036111593246, 0.04281265661120415, 0.005586113315075636, -0.00974798109382391, 0.016442788764834404, 0.008869553916156292, -0.0054880366660654545, -0.058232035487890244, 0.061097584664821625, -0.02352137491106987, -0.019581247121095657, -0.0038505804259330034, -0.002914586802944541, 0.0230267271399498, 0.014882088638842106, -0.030514677986502647, 0.01710800640285015, 0.03360196575522423, 0.031896281987428665, 0.05625344067811966, -0.005658605135977268, -0.06890961527824402, 0.020979907363653183, 0.006055176258087158, -0.024988263845443726, 0.02497120574116707, -0.00826830044388771, 0.018114358186721802, 0.03257855400443077, 0.0061361961998045444, -0.025227058678865433, 0.027239765971899033, 0.04308556392788887, -0.05990360304713249, -0.006946396082639694, -0.0016726359026506543, -0.028092607855796814, 0.011752159334719181, 0.07429957389831543, -0.020894622430205345, -0.005112786311656237, -0.005257769487798214, -0.011504835449159145, -0.02208860218524933, -0.007812030613422394, -0.012570887804031372, -0.02826317586004734, 0.018933087587356567, 0.02689862810075283, -0.06693102419376373, -0.043324362486600876, 0.0355464443564415, 0.020007668063044548, -0.04015178978443146, 0.01646837405860424, 0.016587771475315094, 0.015879914164543152, -0.012374733574688435, -0.10773096978664398, 0.06420192867517471, 0.026455150917172432, 0.05932367220520973, -0.017457671463489532, -0.007901579141616821, -0.014822389930486679, 0.024288933724164963, 0.030258825048804283, 0.03796851634979248, -0.010686106979846954, 0.030258825048804283, -0.01294613815844059, 0.009270389564335346, -0.013065535575151443, 0.05819792300462723, -0.022532079368829727, 0.07122934609651566, 0.03013942763209343, 0.07457248121500015, -0.007210777141153812, 0.0014850107254460454, 0.0076713114976882935, 0.028109664097428322, -0.03694510459899902, 0.04861197993159294, 0.04465479403734207, -0.014796804636716843, -0.009406844154000282, 0.007794973440468311, 0.025158831849694252, -0.10336442291736603, 0.066419318318367, -0.01208476722240448, 0.009381258860230446, 0.018029075115919113, 0.057276852428913116, 0.012758512981235981, 0.035409990698099136, -0.04687218368053436, 0.027563845738768578, -0.06297383457422256, -0.01597372628748417, 0.05632166936993599, 0.05250093713402748, 0.013679581694304943, -0.07996243983507156, 0.029116017743945122, -0.045917000621557236, -0.0036501626018434763, 0.015154997818171978, -0.011308681219816208, 0.02495414949953556, 0.0054198093712329865, -0.04977184534072876, 0.00902306567877531, 0.05403605476021767, -0.009082764387130737, 0.0491919107735157, 0.016357505694031715, 0.009688282385468483, 0.033687248826026917, 0.0215768963098526, 0.02488592267036438, 0.0025286758318543434, 0.03274912387132645, -0.054206620901823044, 0.020161179825663567, -0.029968859627842903, 0.009543299674987793, -0.04608756676316261, -0.021747464314103127, -0.034693602472543716, -0.02070699818432331, -0.04489358887076378, -0.03970831260085106, 0.03619460389018059, -0.015069713816046715, 0.019564189016819, 0.014788275584578514, -0.020161179825663567, 0.02560230903327465, 0.021235760301351547, -0.029866518452763557, -0.07661930471658707, -0.03414778411388397, -0.03895781189203262, 0.03213507682085037, 0.04782736673951149, -0.01255383063107729, 0.029286585748195648, 0.07122934609651566, -0.08023535460233688, -0.013534598983824253, 0.0191207118332386, -0.009091293439269066, 0.008750156499445438, 0.007952749729156494, -0.019359508529305458, 0.044279545545578, -0.03984476625919342, -0.031964510679244995, 0.043904293328523636, 0.006971981376409531, 0.006281179375946522, -0.0029913424514234066, 0.008716043084859848, -0.040458813309669495, -0.01589697040617466, -0.012656171806156635, -0.1090955138206482, -0.005138371605426073, 0.048441410064697266, 0.02271970361471176, 0.004193849395960569, 0.03143574669957161, 0.032476212829351425, -0.021832749247550964, -0.027307992801070213, 0.04782736673951149, 0.03012237139046192, -0.03902604058384895, -0.0050872010178864, -0.024408331140875816, 0.020382918417453766, -0.0332096591591835, 0.07122934609651566, -0.05782267078757286, -0.04192570224404335, -0.001005820231512189, -0.05601464584469795, -0.0807129442691803, 0.01567523181438446, -0.009875907562673092, 0.09074236452579498, -0.016161350533366203, -0.00710417190566659, -0.05331966653466225, 0.015146469697356224, 0.029678892344236374, 0.013926905579864979, 0.006067968904972076, 0.09081058949232101, 0.023419033735990524, 0.014609179459512234, -0.05396782606840134, 0.018319040536880493, 0.041038744151592255, 0.00826830044388771, 0.000393373251426965, -0.03919660672545433, -0.0019263563444837928, -0.08344203978776932, -0.03232270106673241, -0.04704274982213974, -0.028723711147904396, 0.06880727410316467, 0.02007589489221573, 0.04871432110667229, 0.02538057044148445, 0.0048356126062572, 0.009756510145962238, -0.028638426214456558, 0.02978123351931572, 0.11421256512403488, 0.008528417907655239, -0.02638692408800125, 0.004379342310130596, -0.034693602472543716, -0.007790709380060434, -0.0018570629181340337, -0.05495712161064148, -0.05301264300942421, 0.005782267078757286, -0.03626283258199692, -0.020809339359402657, -0.01726151630282402, 0.06355376541614532, -0.029286585748195648, -0.0014850107254460454, 0.019308337941765785, 0.02144044265151024, 0.0561169870197773, 0.015214696526527405, -0.036706309765577316, 0.05359257757663727, -0.006247065961360931, 0.017500312998890877, 0.010728749446570873, -0.05065879970788956, -0.011760687455534935, 0.036058150231838226, 0.018319040536880493, 0.05287618935108185, -0.0043409643694758415, 0.010600822977721691, -0.014080417342483997, 0.011095471680164337, -0.0702059343457222, 0.0004317511338740587, 0.07300325483083725, 0.012818211689591408, 0.007965542376041412, 0.026489265263080597, 0.04264208674430847, 0.04680395498871803, -0.008664872497320175, 0.019734758883714676, -0.00012865917233284563, -0.059664808213710785, 0.03172571212053299, -0.002355975331738591, 0.03418189659714699, -0.02070699818432331, -0.04056115448474884, 0.013491956517100334, 0.044620681554079056, -0.032407987862825394, -0.05802735313773155, -0.04342670366168022, -0.06000594422221184, -0.05301264300942421, -0.03496651351451874, -0.01197389792650938, -0.03356785327196121, -0.013466371223330498, -0.03766149282455444, 0.035000625997781754, 0.045268841087818146, 0.026489265263080597, -0.04161867871880531, -0.01010617520660162, 0.04789559170603752, -0.01633192040026188, 0.0250394344329834, -0.011462192982435226, -0.06532768160104752, -0.045644089579582214, 0.02271970361471176, -0.07191161811351776, 0.03848021849989891, -0.01640014722943306, -0.024220705032348633, -0.03848021849989891, 0.010430254973471165, -0.005325996782630682, -0.03230564668774605, -0.03752503544092178, 0.03199862316250801, -0.021849805489182472, -0.054479531943798065, -0.01582021452486515, 0.04926013946533203, -0.05140930041670799, 0.0041426788084208965, 0.0041959816589951515, 0.0456099770963192, -0.04151633754372597, 0.03177688270807266, -0.04639459028840065, -0.022395623847842216, 0.034693602472543716, 0.048304956406354904, 0.00019721966236829758, -0.08883199840784073, 0.038514334708452225, 0.0016555790789425373, 0.0491919107735157, -0.0017760429764166474, -0.034335408359766006, -0.0014583594165742397, -0.06205276772379875, -0.037866175174713135, -0.05795912444591522, -0.022924385964870453, 0.014233929105103016, -0.022122714668512344, 0.0010441981721669436, -0.008869553916156292, -0.006306764669716358, 0.013773394748568535, 0.0032642518635839224, 0.02969595044851303, 0.10773096978664398, 0.020110009238123894, 0.05099993571639061, -0.06358788162469864, -0.003108608303591609, 0.031196951866149902, 0.011658347211778164, -0.017653824761509895, 0.008609437383711338, -0.04028824344277382, 0.011726574040949345, 0.00009581143967807293, 0.023777227848768234, -0.051170505583286285, -0.09006009250879288, 0.05236448347568512, -0.023640774190425873, -0.027563845738768578, -0.05905076488852501, -0.06590761244297028, 0.003023324068635702, -0.06423603743314743, 0.027785584330558777, -0.002447655890136957, 0.011999483220279217, -0.03674042224884033, -0.04731566086411476, -0.009466543793678284, -0.026949798688292503, -0.009423901326954365, -0.020911680534482002, 0.04878254979848862, 0.041584562510252, 0.031606316566467285, 0.007291797082871199, -0.024476557970046997, -0.0203488040715456, 0.009321560151875019, 0.014958844520151615, 0.025295287370681763, -0.08337380737066269, 0.012451489455997944, 0.020604657009243965, -0.03933306038379669, 0.03136751800775528, 0.0014349062694236636, 0.06437249481678009, 0.07457248121500015, 0.031896281987428665, -0.056696921586990356, 0.008622230030596256, -0.05270561948418617, -0.009048650972545147, -0.04015178978443146, -0.06079056113958359, -0.020007668063044548, 0.029218358919024467, 0.008404755033552647, 0.03817319869995117, -0.004430512897670269, 0.07539121061563492, -0.12915435433387756, -0.053831372410058975, -0.023606659844517708, -0.03300497680902481, -0.0031214007176458836, 0.017380915582180023, -0.020263521000742912, 0.03633105754852295, -0.028382573276758194, 0.02935481257736683, -0.018711348995566368, -0.04161867871880531, -0.0067672994919121265, 0.03953774273395538, -0.005313204135745764, 0.0035435575991868973, 0.010046475566923618, -0.007701160851866007, 0.012963194400072098, -0.011820387095212936, -0.009159520268440247, 0.034488920122385025, 0.04216449707746506, 0.04670161381363869, 0.030531734228134155, -0.005479508079588413, -0.017287101596593857, -0.05079525336623192, -0.05215980112552643, 0.052910301834344864, -0.020382918417453766, -0.0019860551692545414, 0.03181099891662598, -0.014626235701143742, 0.04796382039785385, 0.00791863538324833, -0.005070144310593605, 0.00758602749556303, -0.008728835731744766, 0.08112230896949768, 0.020979907363653183, -0.01233209203928709, -0.00598694896325469, 0.021321043372154236, -0.0552300326526165, -0.021031077951192856, -0.010481425561010838, 0.01305700745433569, -0.04264208674430847, 0.06027885526418686, 0.025517025962471962, -0.05741330608725548, -0.004613874014467001 ]
7,433
pathlib
is_absolute
True if the path is absolute (has both a root and, if applicable, a drive).
def is_absolute(self): """True if the path is absolute (has both a root and, if applicable, a drive).""" if not self._root: return False return not self._flavour.has_drv or bool(self._drv)
(self)
[ 0.09019461274147034, -0.0032890518195927143, 0.010952203534543514, 0.026295458897948265, 0.058117881417274475, -0.04140136390924454, 0.0488610677421093, 0.019276555627584457, -0.04065539315342903, -0.012537389993667603, 0.028719864785671234, 0.011206511408090591, 0.018734032288193703, -0.011460819281637669, -0.014665101654827595, 0.048318542540073395, 0.014334500767290592, 0.005857563577592373, 0.009341585449874401, -0.03556922823190689, -0.008451506495475769, -0.0123508982360363, -0.026651490479707718, -0.05062426999211311, -0.0013128656428307295, 0.09670490026473999, 0.020497234538197517, -0.016368966549634933, -0.027516139671206474, -0.020480280742049217, 0.011214988306164742, 0.018886616453528404, 0.07432578504085541, -0.0007406724034808576, 0.03828185051679611, 0.011333664879202843, 0.0307373758405447, 0.03940080478787422, -0.04177434742450714, -0.07473268359899521, -0.033619534224271774, 0.0058829947374761105, 0.013639392331242561, 0.021124528720974922, -0.006349225994199514, 0.0027550046797841787, -0.024074502289295197, -0.0036959447897970676, -0.01964954100549221, -0.00846846029162407, 0.010672464035451412, 0.040960561484098434, -0.02210785262286663, 0.03214454650878906, -0.030906913802027702, 0.004615692421793938, 0.029143711552023888, 0.06744251400232315, -0.05042082443833351, -0.04367318004369736, -0.0032021631486713886, 0.016886059194803238, 0.004009591415524483, -0.06605229526758194, 0.04323238134384155, 0.006942611653357744, -0.05384550616145134, -0.04391053691506386, -0.02554949000477791, 0.10830134898424149, -0.0981290265917778, 0.03882437199354172, -0.0486915297806263, 0.003592102322727442, 0.07046030461788177, -0.07432578504085541, 0.037298522889614105, 0.04750475659966469, 0.03285660967230797, -0.005637163296341896, -0.09236471354961395, -0.0494714081287384, 0.02580379694700241, -0.016597842797636986, -0.04377490654587746, 0.002913947217166424, 0.00018662506772670895, 0.039977237582206726, 0.08131078630685806, 0.025244319811463356, 0.03066955879330635, 0.006921419408172369, -0.01853058487176895, -0.013851315714418888, -0.021209297701716423, -0.010104509070515633, -0.001980424392968416, -0.0365525558590889, 0.002204003743827343, -0.06784940510988235, -0.049640946090221405, 0.03919735923409462, 0.018937477841973305, -0.007561428006738424, 0.0034268018789589405, 0.038519203662872314, 0.013376607559621334, -0.017818521708250046, -0.017784614115953445, -0.033772118389606476, -0.04316456615924835, -0.012800175696611404, 0.011816850863397121, 0.04170653223991394, -0.05035300925374031, -0.04051975905895233, -0.004374099895358086, -0.02700752206146717, -0.02320985496044159, -0.023820193484425545, 0.01709798350930214, 0.053235165774822235, -0.042350780218839645, -0.05299781262874603, 0.07100282609462738, 0.021463604643940926, 0.0016763143939897418, 0.028923310339450836, -0.06917180866003036, 0.017445536330342293, 0.026566721498966217, -0.0033611056860536337, -0.01853058487176895, 0.03429768979549408, -0.012418713420629501, 0.0076546743512153625, 0.03336522728204727, 0.032415807247161865, -0.02068372815847397, 0.039841607213020325, 0.00855746865272522, -0.011087833903729916, -0.00196876865811646, -0.013461376540362835, -0.02461702562868595, 0.10002785921096802, -0.010460540652275085, -0.010748757049441338, -0.03597612306475639, 0.01570776477456093, 0.028787679970264435, -0.06296668946743011, -0.041130099445581436, 0.011732080951333046, -0.0026490429881960154, -0.021073665469884872, -0.013012099079787731, -0.03151725232601166, 0.039909422397613525, -0.002019630279392004, -0.017988061532378197, -0.01588578149676323, 0.04323238134384155, -0.015555179677903652, -0.02805866301059723, 0.015071994625031948, -0.0731051117181778, -0.05889775976538658, 0.03780714049935341, 0.043469734489917755, -0.0005215965793468058, 0.05153977870941162, -0.029177619144320488, -0.021768774837255478, 0.002023868728429079, 0.0182423684746027, 0.0029499742668122053, 0.01585187204182148, 0.001529027591459453, 0.018852708861231804, 0.014046285301446915, -0.03419596701860428, 0.014207347296178341, -0.001555518014356494, 0.032297130674123764, 0.043571457266807556, -0.005764317233115435, -0.019259601831436157, 0.0608983188867569, 0.05364206060767174, -0.10518183559179306, 0.08917738497257233, 0.0369933545589447, -0.024888288229703903, 0.01970040239393711, -0.048488080501556396, 0.05601560324430466, 0.012045728042721748, -0.0002459636307321489, 0.03539969027042389, -0.02453225664794445, -0.04614844545722008, -0.010265571065247059, 0.012257651425898075, 0.01599598117172718, 0.037366341799497604, 0.0022018845193088055, -0.012401759624481201, 0.019022246822714806, 0.04703005030751228, -0.034958891570568085, -0.05231965705752373, -0.02836383320391178, -0.013368130661547184, 0.021582283079624176, 0.03433159738779068, -0.025379950180649757, 0.052014488726854324, -0.023854101076722145, 0.08436248451471329, -0.014978748746216297, -0.015122856013476849, 0.0490984208881855, -0.0067985039204359055, -0.011214988306164742, 0.013503761030733585, 0.014504039660096169, 0.05174322426319122, -0.012257651425898075, -0.011189557611942291, -0.017937200143933296, -0.054659292101860046, -0.06201727315783501, 0.023481115698814392, 0.037400249391794205, 0.0015629353001713753, 0.008409122005105019, 0.03205977752804756, 0.005904186982661486, -0.022565606981515884, -0.011426911689341068, -0.0020259879529476166, -0.004062572028487921, -0.016691090539097786, -0.05754145234823227, -0.08361651003360748, -0.0033399134408682585, 0.021734867244958878, -0.0063619413413107395, -0.06225463002920151, 0.0016243931604549289, 0.044724322855472565, -0.03590830788016319, -0.0369933545589447, 0.01714036799967289, -0.03953643515706062, -0.06591666489839554, -0.0014792255824431777, 0.009010984562337399, 0.01575862616300583, -0.021175390109419823, 0.004810662008821964, 0.02320985496044159, 0.03441636636853218, -0.0021849307231605053, -0.03519624471664429, 0.0031767322216182947, -0.042147330939769745, 0.012851037085056305, 0.005022585391998291, 0.03350085765123367, 0.025227366015315056, -0.07493612915277481, 0.0026490429881960154, 0.004331714939326048, 0.03317873179912567, 0.03929908201098442, -0.05296390503644943, -0.008205675520002842, 0.012596729211509228, 0.0024222848005592823, 0.026108967140316963, 0.0010892864083871245, 0.01418191660195589, 0.005730409640818834, -0.054557569324970245, -0.02809257060289383, -0.01958172582089901, -0.0487932525575161, 0.03831575810909271, 0.038553111255168915, 0.036281291395425797, 0.013046006672084332, -0.03194110095500946, 0.01964954100549221, 0.05008174479007721, 0.027753492817282677, -0.07459704577922821, -0.04662315547466278, -0.04150308668613434, -0.07710622251033783, 0.02349807135760784, -0.04513121396303177, 0.03144943714141846, -0.0017632029484957457, 0.012673021294176579, -0.014512516558170319, -0.020276835188269615, 0.05747363716363907, 0.03584049269556999, 0.0023947348818182945, -0.010079078376293182, 0.02580379694700241, 0.05021737888455391, 0.0242779478430748, 0.01695387437939644, 0.02700752206146717, -0.04641970992088318, -0.0003634486929513514, 0.02807561680674553, -0.04608063027262688, 0.07032467424869537, 0.0016646585427224636, -0.016682613641023636, -0.04611453786492348, 0.009833247400820255, 0.03416205942630768, 0.0009552448755130172, 0.005959286820143461, 0.040926653891801834, -0.030873006209731102, 0.017784614115953445, 0.010079078376293182, 0.004007472191005945, 0.02439662627875805, -0.027787400409579277, -0.009468738920986652, -0.047301311045885086, 0.04652143269777298, -0.03307700902223587, 0.019920803606510162, 0.05001392960548401, 0.009138138964772224, -0.031262945383787155, 0.05469319969415665, 0.03567095100879669, 0.009841724298894405, 0.05035300925374031, 0.026041151955723763, -0.020344650372862816, -0.01714036799967289, -0.03402642533183098, -0.06727297604084015, -0.013444422744214535, -0.029652327299118042, 0.039773792028427124, 0.008235344663262367, 0.049607038497924805, 0.05367596819996834, 0.05767708271741867, 0.12817129492759705, -0.04075711593031883, -0.054523661732673645, -0.01698778197169304, -0.0494035929441452, -0.022328253835439682, 0.01092677190899849, -0.010875910520553589, 0.023854101076722145, 0.00027179179596714675, -0.003933298867195845, -0.026448044925928116, 0.05523572489619255, -0.0729694738984108, 0.03906172886490822, 0.016284197568893433, 0.009205954149365425, -0.04682660102844238, 0.0154110724106431, 0.007235066033899784, 0.03573876991868019, 0.02705838344991207, -0.0016943279188126326, -0.032687071710824966, -0.00003157327955705114, -0.0051327855326235294, 0.01715732179582119, -0.02064981870353222, -0.04458869248628616, -0.048216819763183594, 0.009824770502746105, 0.0045987386256456375, -0.006065248511731625, -0.016157042235136032, -0.013164684176445007, -0.036179568618535995, 0.06411955505609512, 0.04065539315342903, 0.020361604169011116, -0.013190114870667458, 0.017648983746767044, 0.01708102971315384, -0.036213476210832596, 0.0308390986174345, 0.009570462629199028, -0.022260436788201332, 0.013851315714418888, -0.002513411920517683, -0.031161222606897354, 0.0031724937725812197, -0.008171767927706242, -0.02685493789613247, -0.03780714049935341, 0.013478330336511135, 0.017869384959340096, 0.056829389184713364, -0.011927050538361073, -0.042215149849653244, 0.06496724486351013, -0.011740557849407196, -0.03346695005893707, -0.015487364493310452, -0.04174043983221054, 0.002998716663569212, 0.06472989171743393, 0.002913947217166424, -0.012147451750934124, -0.004408007487654686, 0.02219262160360813, 0.007074004039168358, -0.021514467895030975, 0.008235344663262367, -0.03794277086853981, -0.008722768165171146, 0.006811219267547131, -0.004513969179242849, 0.014724439941346645, 0.003337794216349721, -0.04289330169558525, -0.011799897067248821, -0.037196800112724304, -0.00006827908509876579, -0.032364945858716965, 0.02960146591067314, 0.031381621956825256, -0.00797255989164114, -0.016809767112135887, 0.021463604643940926, 0.03936689719557762, -0.0003382827853783965, -0.04655534029006958, 0.021616190671920776, -0.004497015383094549, -0.015580611303448677, -0.06022016331553459, -0.051946673542261124, -0.06452644616365433, 0.035094521939754486, -0.026532813906669617, 0.013961516320705414, -0.03322959318757057, 0.005870278924703598, -0.00007271622598636895, -0.06550977379083633, 0.052082303911447525, 0.032280176877975464, 0.031279899179935455, 0.025990290567278862, -0.0052811321802437305, 0.027516139671206474, 0.00709519675001502, -0.05482883006334305, 0.017530307173728943, 0.028567278757691383, 0.04028240591287613, -0.039638157933950424, 0.013808931224048138, 0.08971990644931793, -0.029669281095266342, -0.024990011006593704, -0.06788331270217896, -0.03760369494557381, -0.047131773084402084, 0.022497791796922684, 0.012122020125389099, -0.01575862616300583, -0.060491424053907394, -0.010723325423896313, 0.009290723130106926, -0.040994469076395035, 0.06266152113676071, 0.009477215819060802, -0.03312787041068077, -0.00677731167525053, 0.00863376073539257, -0.003958729561418295, 0.014605763368308544, 0.06428909301757812, 0.014207347296178341, -0.029889680445194244, 0.02960146591067314, 0.007531758863478899, 0.009985832497477531, -0.011825327761471272, -0.021463604643940926, 0.009638277813792229, -0.01588578149676323, -0.07052811980247498, -0.03818012773990631, 0.014046285301446915, 0.013435945846140385, -0.019785171374678612, 0.05062426999211311, 0.04784383624792099, 0.06442472338676453, 0.07737748324871063, 0.012045728042721748, -0.04313065856695175, 0.053404707461595535, 0.0006871617515571415, -0.007285927888005972, -0.09514514356851578, -0.0038252179510891438, -0.05520181730389595, -0.037400249391794205, -0.010943726636469364, -0.02838078700006008, 0.0488949753344059, 0.002024928340688348, -0.008739722892642021, 0.028499463573098183, -0.000822792761027813, 0.05153977870941162, 0.01701321266591549, 0.060491424053907394, 0.11955872178077698, -0.003880318021401763, -0.023955825716257095, -0.1224747896194458, 0.01839495450258255, 0.032263223081827164, -0.04533465951681137, 0.03412814810872078, -0.06015234813094139, 0.04313065856695175, -0.037162892520427704, 0.027346599847078323, -0.073037289083004, 0.08910956233739853, 0.004429199732840061, 0.04652143269777298, 0.017530307173728943, 0.05394722893834114, 0.03389079496264458, 0.042282965034246445, 0.006883273366838694, 0.026736261323094368, 0.005743124987930059, -0.08083607256412506, -0.012927329167723656, -0.049742668867111206, -0.03567095100879669, -0.009502646513283253, 0.02548167295753956, -0.03290747106075287, -0.009824770502746105, 0.001787574146874249, 0.018750986084342003, 0.05506618693470955, -0.05167540907859802, -0.06517069786787033, 0.010757233947515488, 0.008188721723854542, -0.029957497492432594, -0.0006182866054587066, 0.04998002201318741, 0.04679269343614578, 0.008943169377744198, -0.030415251851081848, 0.008977076970040798, 0.03180547058582306, -0.06798503547906876, -0.026736261323094368, -0.0002600035513751209, -0.038519203662872314, -0.04682660102844238, 0.0368577241897583, 0.04085883870720863, -0.05903339385986328, -0.10558873414993286, 0.026159828528761864, -0.009748478420078754, 0.024990011006593704, -0.02334548532962799, 0.004060452803969383, -0.03943471238017082, -0.016284197568893433, -0.0611356720328331, 0.025108689442276955, -0.005904186982661486, 0.020395511761307716, -0.0035857444163411856, 0.029075894504785538, 0.004755561705678701, -0.008421837352216244, -0.020344650372862816, -0.006459426134824753, -0.0066628726199269295, -0.07778437435626984, 0.03322959318757057, 0.02326071634888649, 0.02578684315085411, -0.021039757877588272, 0.008129382506012917, 0.02582075074315071, 0.013190114870667458, 0.0014230658998712897, -0.012172882445156574, -0.017462490126490593, 0.06211899593472481, -0.01586035080254078, 0.01961563341319561, 0.02314203977584839, 0.006887511815875769, -0.06462816894054413, -0.006010148674249649, 0.03543359786272049, 0.015589088201522827, -0.013775023631751537, 0.018055876716971397, 0.0489288829267025, 0.005933856125921011, 0.0068027423694729805, 0.01973430998623371, -0.015699287876486778, -0.07181661576032639, 0.01480073295533657, 0.030042266473174095, 0.0737154483795166, 0.04669097065925598, -0.04401225969195366, -0.061813827604055405, -0.026041151955723763, 0.013020575977861881, 0.03450113534927368, 0.003687467658892274, 0.00020066500292159617, 0.02095498889684677, -0.014749870635569096, -0.008756676688790321, 0.011113264597952366, 0.02714315429329872, 0.0030983206816017628, -0.02575293555855751, 0.031127315014600754, 0.0494035929441452, 0.0038739603478461504, -0.026736261323094368, 0.007120627444237471, -0.008875353261828423, -0.007540235761553049, -0.04764038696885109, -0.028584232553839684, 0.014003900811076164, 0.027210969477891922, 0.0369933545589447, -0.008286206051707268, 0.022345207631587982, -0.03445027396082878, -0.024125363677740097, 0.0011284922948107123, -0.005429478362202644, -0.05649030953645706, -0.03943471238017082, 0.0038252179510891438, 0.008044613525271416, -0.03406033292412758, -0.005972002167254686, 0.022429976612329483, -0.04770820215344429, 0.010986111126840115, 0.03183937817811966, -0.03882437199354172, -0.011613404378294945, 0.03336522728204727, 0.008722768165171146, 0.026295458897948265, 0.049505315721035004, 0.04126572981476784, -0.0857866033911705, -0.027719585224986076, -0.04197779297828674, 0.032670117914676666, 0.04513121396303177, 0.014927886426448822, -0.0153771648183465, 0.031313806772232056, 0.04062148556113243, 0.00397780304774642, 0.00854899175465107, 0.06364484876394272, 0.0041007185354828835, -0.02219262160360813, 0.01944609358906746, 0.00369382556527853, 0.018717078492045403, -0.025346042588353157, -0.0008079580729827285, -0.02439662627875805, 0.027312692254781723, -0.02095498889684677, 0.01476682536303997, 0.0045393998734653, -0.11718518286943436, 0.05435412377119064, -0.08103951811790466, -0.01849667727947235, -0.021531421691179276, 0.047199588268995285, -0.03943471238017082, -0.024176225066184998, -0.027939986437559128, 0.027956940233707428, -0.025515582412481308, 0.02934715710580349, -0.020039480179548264, -0.05482883006334305, -0.006171210203319788, 0.024176225066184998, 0.012766268104314804, -0.027583954855799675, -0.004942054394632578, -0.0039121066220104694, 0.09433136135339737, -0.024956103414297104, 0.017665937542915344, 0.019242648035287857, 0.008849922567605972, -0.049776576459407806, -0.0013933966401964426, 0.09080495685338974, -0.03392470255494118, -0.02575293555855751, -0.04543638601899147, -0.019869940355420113, 0.01235937513411045, -0.016250288113951683, 0.03168679028749466, 0.013334222137928009, -0.017750706523656845, 0.03811230883002281, -0.03787495568394661, 0.030974728986620903, 0.04675878584384918, 0.03824794292449951, 0.005348947364836931, -0.037468064576387405, 0.0370611697435379, 0.026041151955723763, -0.015690810978412628, -0.02565121278166771, -0.0013128656428307295, -0.014826163649559021, 0.018700124695897102, -0.0009472977253608406, 0.013029052875936031, -0.07195224612951279, 0.036213476210832596 ]
7,434
pathlib
is_block_device
Whether this path is a block device.
def is_block_device(self): """ Whether this path is a block device. """ try: return S_ISBLK(self.stat().st_mode) except OSError as e: if not _ignore_error(e): raise # Path doesn't exist or is a broken symlink # (see http://web.archive.org/web/20200623061726/https://bitbucket.org/pitrou/pathlib/issues/12/ ) return False except ValueError: # Non-encodable path return False
(self)
[ 0.0977097675204277, -0.01575418747961521, 0.01807595044374466, 0.03718379884958267, -0.003311404027044773, -0.018983306363224983, -0.0013132196618244052, 0.03531571105122566, -0.055508825927972794, -0.04191628098487854, 0.03296726197004318, -0.0020671256352216005, 0.03255806118249893, -0.00655609043315053, -0.013806041330099106, 0.006960842292755842, -0.01598547399044037, -0.026704726740717888, 0.02812802977859974, -0.009518340229988098, -0.037148214876651764, 0.00868659745901823, 0.033305294811725616, -0.043873321264982224, -0.04102671518921852, 0.10354530811309814, 0.035084426403045654, 0.005933395586907864, 0.019107846543192863, 0.00329361273907125, 0.03878501430153847, 0.00341592775657773, 0.06757131963968277, 0.013067702762782574, 0.020726853981614113, 0.03300284221768379, 0.03149058297276497, 0.03753962367773056, -0.04067089036107063, -0.07842400670051575, -0.03665005788207054, 0.021580835804343224, -0.028110239654779434, 0.04590152949094772, 0.001524491235613823, 0.005768825765699148, -0.028003491461277008, 0.01756889931857586, -0.022025616839528084, 0.047609493136405945, 0.03255806118249893, 0.026455648243427277, -0.021420713514089584, -0.0063336994498968124, -0.036383189260959625, -0.0130765987560153, 0.005662078037858009, -0.0030400867108255625, -0.08326324075460434, 0.030351942405104637, 0.02184770442545414, 0.007494580931961536, 0.04714692011475563, -0.0636572390794754, 0.0057821692898869514, -0.06725107878446579, -0.02882189117372036, -0.029337838292121887, -0.01128857396543026, 0.06721549481153488, -0.043802157044410706, 0.024213945493102074, -0.0057599302381277084, 0.05856892839074135, -0.0025019003078341484, -0.04166720062494278, -0.001851406181231141, 0.052519891411066055, 0.030583228915929794, -0.00791267678141594, -0.049637701362371445, -0.006582777481526136, 0.0010029840050265193, -0.011528756469488144, 0.0025241393595933914, 0.015674127265810966, 0.05529532954096794, 0.06508053839206696, 0.0038829492405056953, 0.013334572315216064, -0.008891197852790356, 0.014304197393357754, 0.000597120204474777, -0.01027446985244751, 0.01639467477798462, 0.04714692011475563, 0.014072910882532597, -0.03015623800456524, 0.007961602881550789, -0.05646955594420433, -0.034550685435533524, -0.004503420554101467, 0.03510221466422081, -0.02302193082869053, 0.0031824170146137476, 0.036792390048503876, -0.013067702762782574, 0.0038985165301710367, -0.004049742594361305, -0.05686096474528313, -0.01206249464303255, -0.010132139548659325, -0.022505981847643852, 0.05508183687925339, 0.0017012921161949635, -0.017640065401792526, 0.05522416532039642, -0.02225690521299839, -0.003854038193821907, -0.026686936616897583, 0.005172817502170801, 0.025548292323946953, -0.03661447763442993, -0.044940799474716187, 0.06369282305240631, 0.02951575070619583, -0.003500436432659626, -0.010390114039182663, -0.001914787688292563, 0.0514879934489727, -0.025761788710951805, 0.016056640073657036, -0.010043183341622353, 0.04316167160868645, -0.05540207773447037, 0.020015202462673187, -0.044656138867139816, 0.006307012401521206, 0.028732934966683388, -0.007966049946844578, 0.01997961848974228, -0.08034546673297882, 0.005662078037858009, -0.07248171418905258, -0.036827970296144485, 0.050491683185100555, -0.014437632635235786, -0.044086817651987076, 0.03478197380900383, 0.008659910410642624, 0.03842918574810028, -0.014072910882532597, 0.024818850681185722, 0.04077763855457306, 0.011057287454605103, -0.0009746291325427592, -0.053907610476017, 0.01905447244644165, 0.02314646914601326, -0.019872872158885002, -0.007970497943460941, -0.048641387373209, 0.00565318251028657, -0.009927540086209774, -0.028839681297540665, -0.014473214745521545, -0.07330011576414108, -0.02197224460542202, -0.0048926048912107944, 0.007943810895085335, 0.023235425353050232, 0.05799960717558861, 0.02416057325899601, 0.027718830853700638, 0.033056218177080154, 0.013138867914676666, -0.009233679622411728, -0.007854854688048363, -0.020744644105434418, -0.05789285898208618, 0.026971597224473953, 0.003987472970038652, -0.0089712580665946, 0.050207022577524185, 0.002163865603506565, 0.030476480722427368, -0.04017273336648941, -0.04454939067363739, 0.05785727500915527, 0.06995535641908646, -0.0733712837100029, 0.07892216742038727, 0.01279193814843893, -0.009269262664020061, 0.0025441546458750963, 0.01031894888728857, 0.07721420377492905, 0.0013354587135836482, -0.06643267720937729, 0.04084880277514458, 0.04067089036107063, -0.049032796174287796, -0.01832502894103527, 0.01613670028746128, -0.001299876137636602, -0.01098612230271101, 0.008806688711047173, 0.049922361969947815, 0.004754722584038973, 0.04067089036107063, -0.08041663467884064, -0.03878501430153847, 0.006000112742185593, 0.0891699492931366, 0.05557999014854431, -0.00010063198715215549, -0.009233679622411728, 0.07315778732299805, -0.010247783735394478, 0.033340878784656525, 0.034034740179777145, 0.009660670533776283, 0.07198356091976166, -0.0008823368116281927, -0.06476029753684998, 0.00841528084129095, 0.007032007444649935, 0.013628128916025162, 0.004781409166753292, 0.04252118617296219, -0.0069964248687028885, -0.007788137532770634, -0.01674160361289978, 0.0814841091632843, -0.02679368294775486, -0.0020893646869808435, 0.02476547658443451, 0.01737319491803646, -0.014535483904182911, -0.009829687885940075, 0.030743349343538284, -0.0180403683334589, -0.013183346018195152, -0.0632302463054657, -0.02777220495045185, -0.05454809591174126, 0.032522477209568024, -0.01778239570558071, -0.040635306388139725, -0.06440447270870209, -0.030102863907814026, 0.03697030246257782, 0.016501421108841896, -0.06173577904701233, -0.0022305829916149378, -0.06789156794548035, -0.025957493111491203, -0.024996763095259666, 0.010505757294595242, 0.02229248732328415, -0.058319851756095886, 0.006787377409636974, -0.035458043217659, 0.024676520377397537, -0.007601328659802675, 0.004723587539047003, 0.020531149581074715, 0.044371478259563446, 0.006573881953954697, 0.02428511157631874, 0.111871637403965, 0.029764829203486443, -0.03490651026368141, 0.014740084297955036, 0.007476789876818657, -0.029444586485624313, 0.052875716239213943, 0.017924726009368896, 0.011244095861911774, -0.0012075838167220354, -0.00998980924487114, 0.04330400004982948, -0.011172930710017681, 0.002804352203384042, 0.002673141425475478, -0.027185091748833656, -0.016412464901804924, -0.016670439392328262, -0.043873321264982224, 0.02723846584558487, -0.006991977337747812, -0.007152098696678877, -0.03296726197004318, 0.016465838998556137, 0.029978323727846146, 0.06639709323644638, 0.010194409638643265, -0.027469752356410027, -0.007169890217483044, -0.07219705730676651, -0.05668305233120918, 0.02537037990987301, 0.007045350968837738, 0.06856763362884521, -0.02339554764330387, -0.03867826610803604, 0.00018611358245834708, 0.00006845477037131786, -0.01997961848974228, 0.02318205125629902, 0.025067929178476334, 0.012311573140323162, 0.06725107878446579, -0.011128452606499195, 0.06796272844076157, 0.05333828926086426, 0.02172316610813141, 0.004421135876327753, -0.04689784348011017, 0.06468912959098816, -0.011297469027340412, 0.05856892839074135, 0.008588745258748531, 0.06803389638662338, -0.0717700645327568, 0.025512710213661194, 0.07226822525262833, 0.011644399724900723, -0.046435266733169556, 0.06379956752061844, -0.0348709300160408, -0.009180305525660515, 0.03138383477926254, -0.014037327840924263, -0.027950117364525795, 0.009909749031066895, -0.051061004400253296, -0.061308786273002625, -0.02508571930229664, -0.04027948155999184, 0.027736620977520943, -0.007810376584529877, 0.034034740179777145, -0.03357216343283653, -0.016287926584482193, 0.015442839823663235, 0.02318205125629902, 0.04913954436779022, 0.005074965767562389, 0.08034546673297882, 0.01530050951987505, 0.01925017684698105, -0.06742899119853973, -0.044371478259563446, -0.04547453671693802, -0.030636603012681007, -0.02298634685575962, 0.02225690521299839, -0.025388171896338463, 0.06831855326890945, 0.09785209596157074, 0.011902373284101486, -0.024978971108794212, -0.007761450484395027, -0.025886327028274536, -0.00044422628707252443, -0.0025619459338486195, 0.02010415866971016, 0.04220094159245491, -0.024872224777936935, -0.01461554504930973, 0.01092385221272707, 0.02013974077999592, -0.012907581403851509, 0.029942741617560387, -0.028323734179139137, 0.026615770533680916, -0.06433330476284027, 0.011742251925170422, 0.09066441655158997, 0.0014233032707124949, -0.01536277960985899, 0.036863554269075394, -0.02362683415412903, -0.005337387323379517, 0.0033269713167101145, -0.02914213389158249, -0.055757906287908554, -0.04223652184009552, -0.04138254001736641, 0.04867697134613991, -0.016252344474196434, -0.01781797781586647, 0.03266480937600136, -0.06355048716068268, 0.006551642902195454, 0.08006080985069275, -0.0032446866389364004, 0.00178913667332381, -0.017355404794216156, 0.0009401584975421429, -0.013637023977935314, -0.058604512363672256, 0.06006339564919472, -0.009811896830797195, 0.0043722097761929035, 0.049637701362371445, 0.033180758357048035, -0.02622436173260212, -0.035333503037691116, 0.016857247799634933, -0.024267319589853287, -0.027505334466695786, 0.009838583879172802, 0.006867438089102507, 0.037397291511297226, -0.013752667233347893, -0.011982434429228306, 0.03028077632188797, -0.006734003312885761, -0.0022116797044873238, -0.017862455919384956, -0.005119443871080875, -0.03778870031237602, 0.05821310356259346, -0.017515525221824646, -0.014953579753637314, 0.002262829802930355, 0.032735973596572876, 0.008677702397108078, -0.027096135541796684, 0.014660023152828217, 0.003805112326517701, 0.017195282503962517, -0.040599726140499115, -0.03456847742199898, 0.020317653194069862, -0.0261531975120306, -0.03871384635567665, -0.02857281267642975, 0.004458941984921694, 0.023448921740055084, -0.06376398354768753, 0.02521025948226452, 0.009091349318623543, -0.019855080172419548, -0.023662416264414787, 0.025850744917988777, 0.07137865573167801, 0.051132168620824814, -0.05002911016345024, -0.02647344022989273, 0.034070320427417755, 0.00015205993258859962, -0.060739465057849884, -0.014668919146060944, -0.009678461588919163, -0.0013476902386173606, 0.0006321467808447778, 0.003402584232389927, -0.022239113226532936, 0.07564856857061386, -0.0020270950626581907, -0.043802157044410706, 0.04796531796455383, 0.02359125204384327, 0.0015478422865271568, 0.03478197380900383, 0.062127187848091125, 0.03332308679819107, -0.016190074384212494, -0.018680855631828308, -0.008219576440751553, 0.02638448402285576, 0.0344439372420311, -0.02241702564060688, -0.029177716001868248, 0.012489485554397106, -0.046115025877952576, -0.026242153719067574, -0.08461537957191467, -0.07600439339876175, -0.04333958402276039, -0.006240295246243477, 0.029569124802947044, -0.06899462640285492, -0.04593711346387863, 0.0136815020814538, -0.006796272937208414, -0.015869831666350365, -0.02777220495045185, -0.027291839942336082, -0.008246263489127159, -0.01648363098502159, 0.04077763855457306, 0.021100470796227455, -0.016216760501265526, 0.05273338407278061, 0.01667933538556099, 0.0007605776772834361, 0.009198097512125969, 0.048748135566711426, 0.034604061394929886, -0.0306010190397501, -0.005439687054604292, 0.016412464901804924, 0.033910199999809265, -0.0733712837100029, 0.001810263842344284, 0.02298634685575962, -0.029320046305656433, 0.028145821765065193, 0.0026664696633815765, 0.04796531796455383, -0.033305294811725616, 0.035173382610082626, 0.05301804468035698, -0.027434170246124268, 0.06792714446783066, 0.0206734798848629, 0.0401371531188488, -0.017702333629131317, 0.0017413225723430514, -0.0616290308535099, 0.0029311152175068855, 0.027256257832050323, 0.006315907929092646, -0.02257714793086052, 0.005146130919456482, -0.017399882897734642, 0.010078766383230686, 0.058426596224308014, 0.03604515641927719, 0.048534639179706573, 0.022559355944395065, 0.04693342372775078, 0.01100391335785389, 0.027701038867235184, -0.1025490015745163, -0.02768324874341488, 0.011946851387619972, -0.03149058297276497, 0.038891762495040894, -0.026117613539099693, 0.020744644105434418, 0.010123244486749172, 0.03842918574810028, -0.05657630413770676, 0.05006469041109085, -0.042663514614105225, 0.06116645783185959, -0.009980914182960987, 0.020459983497858047, -0.023377755656838417, 0.05785727500915527, -0.013290094211697578, 0.050527263432741165, -0.008477549999952316, -0.032931677997112274, -0.016101118177175522, -0.03606294468045235, 0.003275821451097727, -0.021349549293518066, -0.008811136707663536, 0.021029304713010788, -0.018182698637247086, 0.009251470677554607, -0.008072798140347004, 0.04191628098487854, -0.02996053360402584, -0.0024173916317522526, 0.013619232922792435, 0.0372905433177948, -0.0206734798848629, 0.032326776534318924, 0.02327100746333599, -0.009811896830797195, 0.023697998374700546, -0.04736041650176048, -0.06059713661670685, 0.02869735099375248, -0.035404667258262634, -0.026971597224473953, 0.01817380264401436, 0.01094164326786995, -0.08938344568014145, -0.02400045096874237, 0.007619120180606842, -0.06166461110115051, -0.006903020665049553, 0.034230444580316544, -0.03501325845718384, 0.03157953917980194, -0.041169047355651855, 0.011902373284101486, 0.03753962367773056, 0.019356923177838326, -0.04718250408768654, -0.02647344022989273, 0.038571517914533615, -0.00016387445793952793, -0.010514652356505394, 0.015193762257695198, 0.012987641617655754, 0.013103285804390907, 0.012969850562512875, 0.008161754347383976, 0.03624085709452629, -0.03145500272512436, -0.05465484410524368, -0.004510092083364725, 0.06614802032709122, -0.008993497118353844, 0.04017273336648941, 0.009420488029718399, -0.0015489542856812477, 0.012418320402503014, -0.006827407516539097, 0.02602865733206272, 0.016083326190710068, -0.008508685044944286, -0.0032869409769773483, 0.06842530518770218, -0.0035916168708354235, -0.05013585835695267, -0.03181082755327225, -0.021260593086481094, 0.012400529347360134, -0.008855614811182022, -0.05383644625544548, 0.013058806769549847, -0.019001098349690437, 0.018378403037786484, 0.0036271994467824697, -0.00835301075130701, -0.09194538742303848, -0.01461554504930973, -0.026206571608781815, 0.03189978376030922, 0.0579640232026577, -0.05913824960589409, -0.04102671518921852, -0.0021516343113034964, -0.01623455248773098, -0.022025616839528084, -0.04426473006606102, 0.0037406189367175102, -0.0045990487560629845, 0.016190074384212494, 0.007472341880202293, -0.028430482372641563, 0.01706184819340706, 0.02168758399784565, -0.06547194719314575, 0.05006469041109085, 0.04629293829202652, 0.028768517076969147, -0.01820049062371254, -0.03732612729072571, -0.06376398354768753, 0.003878501243889332, -0.054619260132312775, -0.054868340492248535, 0.015994369983673096, -0.023128677159547806, -0.02456977218389511, -0.021634209901094437, -0.02400045096874237, -0.025921911001205444, -0.03793103247880936, -0.029124341905117035, 0.023377755656838417, -0.042627930641174316, -0.05501066893339157, -0.03563595563173294, 0.019232384860515594, -0.04248560220003128, -0.03640098124742508, 0.04344633221626282, -0.004447822459042072, -0.033625539392232895, 0.02282622642815113, -0.03910525515675545, 0.019161220639944077, -0.0018914365209639072, 0.08383256196975708, -0.03782428428530693, 0.026455648243427277, 0.018983306363224983, -0.0895969420671463, 0.01909005455672741, -0.03198873996734619, 0.018191594630479813, 0.07707186788320541, -0.04067089036107063, -0.02063789777457714, 0.0523063950240612, 0.09984472393989563, -0.03234456479549408, 0.01130636502057314, 0.036098528653383255, 0.018307238817214966, -0.02857281267642975, -0.017737915739417076, 0.0052706697024405, -0.036827970296144485, -0.07543507218360901, 0.012631815858185291, -0.03227340057492256, 0.04109787940979004, 0.039140839129686356, -0.044086817651987076, 0.04195186123251915, -0.10425696521997452, 0.0031245953869074583, -0.04778740555047989, -0.056078147143125534, -0.06831855326890945, 0.04483405128121376, -0.014224137179553509, -0.04590152949094772, -0.015122597105801105, -0.014989161863923073, 0.0318286195397377, -0.06476029753684998, -0.021794330328702927, -0.014562170952558517, 0.019801706075668335, 0.030209612101316452, -0.017399882897734642, -0.02035323716700077, 0.0130765987560153, -0.021616417914628983, 0.0733712837100029, 0.013121076859533787, -0.004883709363639355, -0.018378403037786484, -0.002370689529925585, -0.009206992574036121, 0.06629034876823425, 0.07415410131216049, 0.020495567470788956, -0.029764829203486443, -0.01832502894103527, -0.02723846584558487, -0.0044389269314706326, -0.014882414601743221, 0.04451381042599678, 0.00911803636699915, -0.011422008275985718, 0.037432875484228134, -0.06251859664916992, -0.014268615283071995, 0.04679109528660774, 0.05536649748682976, -0.022488191723823547, -0.027950117364525795, 0.014989161863923073, 0.005933395586907864, -0.027825579047203064, -0.028750725090503693, -0.003175745252519846, 0.01576308347284794, 0.042378854006528854, -0.05362294986844063, -0.008526476100087166, -0.07386943697929382, -0.004272133577615023 ]
7,435
pathlib
is_char_device
Whether this path is a character device.
def is_char_device(self): """ Whether this path is a character device. """ try: return S_ISCHR(self.stat().st_mode) except OSError as e: if not _ignore_error(e): raise # Path doesn't exist or is a broken symlink # (see http://web.archive.org/web/20200623061726/https://bitbucket.org/pitrou/pathlib/issues/12/ ) return False except ValueError: # Non-encodable path return False
(self)
[ 0.04711774364113808, 0.012433849275112152, 0.024289775639772415, 0.03732704371213913, 0.03685110807418823, -0.007355773355811834, 0.034182462841272354, 0.04178045317530632, 0.020278306677937508, -0.05517467483878136, 0.08532866835594177, 0.013887155801057816, 0.045587945729494095, 0.020771242678165436, -0.005706992466002703, -0.0009200028725899756, -0.009059797041118145, -0.012170383706688881, 0.028488216921687126, 0.02490169368684292, -0.03705507889389992, -0.013921151868999004, 0.05677246302366257, -0.04670979827642441, -0.057078421115875244, 0.10538600385189056, 0.024051805958151817, 0.011405485682189465, 0.00706681190058589, -0.043072279542684555, 0.009042799472808838, 0.00315520609728992, 0.04480605199933052, 0.01384466141462326, 0.0037076326552778482, 0.05629652366042137, 0.019921354949474335, 0.017159221693873405, -0.03103787824511528, -0.07893751561641693, -0.08240506052970886, 0.058098286390304565, -0.05979806184768677, 0.003023473545908928, -0.009374255314469337, -0.03112286701798439, -0.04059061035513878, 0.02072024904191494, -0.0038712359964847565, 0.009450744837522507, 0.024799706414341927, 0.009450744837522507, -0.013266738504171371, 0.011838927865028381, 0.013062765821814537, -0.051639143377542496, 0.011422483250498772, 0.005248052999377251, -0.07798564434051514, -0.03936677426099777, -0.006650366820394993, -0.017422687262296677, 0.010827562771737576, -0.045180000364780426, 0.013088262639939785, -0.03127584606409073, 0.004342923406511545, -0.07927747070789337, -0.008396885357797146, 0.0607159398496151, -0.018816500902175903, 0.03071492165327072, -0.016904255375266075, 0.006956326309591532, -0.0006103251944296062, -0.023966817185282707, -0.027196388691663742, 0.07948144525289536, 0.031921762973070145, -0.012578330002725124, -0.02860720083117485, 0.0021162189077585936, -0.010079661384224892, -0.0010416429722681642, 0.02802927792072296, -0.003939226735383272, 0.00775946956127882, 0.03280564397573471, -0.03528731316328049, 0.0541888065636158, 0.01862952671945095, -0.00960372481495142, 0.0052565522491931915, -0.0318707674741745, 0.03685110807418823, 0.03657914325594902, 0.05571860074996948, 0.005736738443374634, 0.009790699928998947, -0.06489738076925278, -0.03664713352918625, 0.03180277720093727, 0.03212573379278183, 0.0033400566317141056, -0.0030808409210294485, 0.013589696027338505, -0.009663216769695282, 0.02809727005660534, -0.03766699880361557, -0.06744704395532608, -0.07091458141803741, 0.005787731613963842, 0.04191643372178078, -0.002127904910594225, 0.022335033863782883, -0.05442677438259125, -0.0003991813864558935, -0.043990157544612885, -0.001596725545823574, -0.024697721004486084, 0.026567472144961357, 0.02615952678024769, -0.004253685008734465, -0.04436410963535309, 0.055412642657756805, 0.04218839854001999, -0.008103674277663231, 0.023252911865711212, -0.053236931562423706, 0.06527133285999298, -0.03372352197766304, 0.04269833117723465, 0.026550475507974625, 0.017575666308403015, 0.0028173758182674646, 0.013921151868999004, -0.03984270989894867, 0.024867698550224304, -0.011167516931891441, -0.0045978897251188755, 0.037293046712875366, -0.04099855571985245, -0.01779663749039173, -0.05837025120854378, -0.04334424436092377, 0.061701808124780655, 0.020159322768449783, -0.03278864547610283, 0.005269300192594528, -0.0061659314669668674, -0.001248271786607802, -0.004699876066297293, -0.020839232951402664, 0.006777849979698658, 0.013011772185564041, -0.0013035144656896591, -0.047355711460113525, 0.01920744962990284, 0.029848037287592888, 0.01712522655725479, -0.015569932758808136, -0.04562194272875786, -0.03732704371213913, -0.0045426469296216965, -0.0003906825149897486, 0.011235508136451244, -0.09443946182727814, -0.04976939037442207, 0.0197173822671175, -0.014159119687974453, 0.061123885214328766, 0.06476140022277832, 0.07859756052494049, 0.008622105233371258, 0.02281097136437893, 0.02372884936630726, -0.0074577596969902515, 0.006607872433960438, 0.003184952074661851, -0.05728239566087723, 0.04908948019146919, -0.026805439963936806, -0.001508549670688808, 0.08158916980028152, 0.04348022863268852, 0.04708374664187431, 0.01270581316202879, -0.025972550734877586, 0.05520866811275482, 0.04229038581252098, -0.03188776597380638, 0.08077327162027359, 0.004279181826859713, 0.01578240469098091, -0.01434609480202198, -0.02004033885896206, 0.07071061432361603, -0.01946241594851017, -0.06051196530461311, 0.01729520410299301, -0.013419718481600285, -0.02658447064459324, -0.009790699928998947, 0.013088262639939785, -0.022929955273866653, 0.00985019188374281, 0.022963950410485268, 0.03299262002110481, -0.04212040826678276, 0.022590000182390213, -0.05677246302366257, -0.07730573415756226, 0.025717584416270256, 0.06907882541418076, 0.037123069167137146, -0.002558160340413451, -0.031224854290485382, 0.06727706640958786, 0.001972800586372614, 0.01803460530936718, 0.020839232951402664, 0.059526097029447556, 0.07173047214746475, 0.0019451791886240244, -0.012646321207284927, -0.04891950637102127, -0.024731716141104698, 0.06255169212818146, 0.001995110185816884, 0.01476253941655159, -0.0043195514008402824, -0.03919679671525955, 0.008405383676290512, 0.0485115572810173, -0.02609153650701046, -0.004784864839166403, 0.04823959618806839, 0.029321106150746346, 0.0009736519423313439, -0.03783697634935379, -0.008277900516986847, -0.028879165649414062, -0.015535937622189522, -0.04191643372178078, -0.015807900577783585, -0.0446360744535923, 0.048103611916303635, 0.015229977667331696, -0.029151128605008125, -0.07608189433813095, 0.008001687936484814, 0.023762844502925873, -0.015824899077415466, -0.08029733598232269, -0.03623918816447258, -0.08186113089323044, -0.07519801706075668, -0.01920744962990284, 0.013411219231784344, 0.025224650278687477, -0.07628586888313293, 0.06295964121818542, -0.009314763359725475, 0.03606921061873436, 0.0011006038403138518, -0.03265266492962837, 0.009646219201385975, 0.06261968612670898, 0.018986478447914124, 0.00036943532177247107, 0.02954207733273506, 0.031836774200201035, -0.06408149003982544, -0.009918183088302612, -0.0028811173979192972, -0.003089339705184102, 0.052387043833732605, -0.006603623274713755, 0.012110891751945019, 0.004032714758068323, -0.023694854229688644, 0.028709188103675842, -0.01878250576555729, 0.016632292419672012, -0.029746050015091896, -0.03215973079204559, -0.021196186542510986, -0.003214698052033782, -0.01828957162797451, 0.051809120923280716, 0.0017061484977602959, -0.002893865806981921, -0.006633369252085686, 0.03596722334623337, 0.06319760531187057, 0.0182045828551054, 0.014915519393980503, -0.0711185559630394, -0.0005163064342923462, -0.09736306965351105, -0.014796535484492779, 0.03780297935009003, -0.01619884930551052, 0.04817160218954086, -0.05245503410696983, 0.003646015888080001, -0.027553342282772064, -0.03229571133852005, 0.0009088480728678405, 0.03841489925980568, 0.013011772185564041, -0.006080942694097757, 0.01644531637430191, 0.05697643384337425, 0.03538930043578148, 0.04613187536597252, 0.004993087146431208, -0.00597470672801137, -0.04133851081132889, 0.07091458141803741, -0.01619884930551052, 0.06700510531663895, 0.00639540096744895, 0.004916597157716751, -0.07077860087156296, 0.024221783503890038, 0.08002537488937378, -0.013130756095051765, 0.019513409584760666, 0.05837025120854378, -0.0489874966442585, -0.007946444675326347, 0.018663521856069565, -0.03967273235321045, 0.005129069089889526, -0.022165056318044662, -0.05517467483878136, -0.039298780262470245, -0.04188244044780731, -0.014830530621111393, 0.008949311450123787, -0.0007085934048518538, 0.021502144634723663, -0.024527743458747864, 0.008286399766802788, 0.011490474455058575, 0.01861252821981907, 0.051707133650779724, 0.015450948849320412, 0.058506231755018234, 0.032499685883522034, 0.03348555415868759, -0.03170078992843628, -0.043990157544612885, -0.055650610476732254, -0.01852753944694996, -0.0442621223628521, 0.05425679683685303, 0.020193317905068398, 0.04738970845937729, 0.10830961912870407, 0.022250045090913773, -0.01997234858572483, -0.03255067765712738, -0.04422812908887863, -0.02155313827097416, 0.010232641361653805, 0.023932822048664093, 0.009918183088302612, -0.008358640596270561, -0.012212878093123436, 0.03899282217025757, 0.011838927865028381, -0.0402846522629261, 0.02112819440662861, -0.005371286999434233, 0.03156480938196182, -0.03306061029434204, -0.021519143134355545, 0.06710708886384964, -0.00767873041331768, -0.003979596775025129, 0.0008312958525493741, 0.012561332434415817, -0.008787833154201508, -0.012561332434415817, -0.03844889625906944, -0.06996271014213562, -0.008630604483187199, -0.02852221205830574, -0.008082427084445953, 0.035355307161808014, 0.0003837771655526012, 0.05160514637827873, -0.045247990638017654, 0.039468757808208466, 0.050279323011636734, -0.0068118455819785595, 0.002222454873844981, 0.07438212633132935, -0.015238476917147636, 0.001527672167867422, -0.0009093792759813368, 0.058336254209280014, -0.005452026147395372, 0.054732732474803925, 0.026448488235473633, 0.009731207974255085, -0.04823959618806839, 0.02131517045199871, -0.005027082748711109, 0.012102393433451653, -0.02031230367720127, 0.011099526658654213, -0.008626354858279228, 0.0035440295469015837, -0.0390608124434948, -0.02306593768298626, 0.04018266499042511, 0.01401463896036148, -0.06996271014213562, -0.02072024904191494, -0.051469165831804276, 0.04042063280940056, 0.04613187536597252, -0.013819165527820587, 0.0327206552028656, 0.01922444812953472, 0.058336254209280014, 0.018221581354737282, -0.028913160786032677, -0.005592257250100374, -0.007262285798788071, -0.027145395055413246, -0.042494356632232666, 0.004166571889072657, 0.02726438082754612, -0.012544333934783936, -0.04854555428028107, -0.011830429546535015, -0.04150848835706711, 0.04749169573187828, -0.04031864553689957, 0.024425756186246872, 0.0313948318362236, 0.00597470672801137, 0.01852753944694996, 0.02668645605444908, 0.02440875954926014, 0.01944541744887829, -0.00521830702200532, -0.008065429516136646, 0.011218510568141937, -0.016555801033973694, -0.0037203810643404722, -0.023048939183354378, 0.0029087387956678867, 0.01978537254035473, -0.015510440804064274, 0.01585889421403408, -0.0424603633582592, 0.12789101898670197, 0.01384466141462326, -0.08192912489175797, 0.013241241686046124, 0.03793896362185478, -0.004695626441389322, 0.07689779251813889, 0.05014334246516228, 0.03933277726173401, -0.021604131907224655, 0.022454017773270607, -0.01745668239891529, 0.03214273229241371, 0.0102836349979043, -0.03596722334623337, -0.04538397490978241, 0.03960474207997322, -0.04120253026485443, -0.00605969550088048, -0.05225106328725815, -0.041814446449279785, -0.0085116196423769, -0.035695262253284454, 0.048103611916303635, -0.056092552840709686, -0.019411422312259674, 0.013241241686046124, -0.0416104756295681, -0.010734074749052525, 0.02063526026904583, -0.002031230367720127, -0.03219372406601906, -0.052625011652708054, 0.027077404782176018, 0.028913160786032677, -0.011600960046052933, 0.0706426203250885, 0.008056930266320705, -0.00400509312748909, 0.019581399857997894, 0.018986478447914124, 0.022114064544439316, -0.026074538007378578, -0.019581399857997894, 0.03154781088232994, 0.03136083483695984, -0.05384885147213936, -0.006892584729939699, -0.009255271404981613, -0.03086790069937706, 0.01367468386888504, 0.03824492171406746, 0.015535937622189522, 0.011736941523849964, 0.0399107001721859, 0.04925945773720741, -0.053576886653900146, 0.025309639051556587, 0.01845954917371273, -0.02078823931515217, -0.018901489675045013, -0.02306593768298626, -0.05864221230149269, -0.013113758526742458, 0.015705915167927742, 0.005273549817502499, 0.00673110643401742, -0.008736839517951012, 0.009561230428516865, -0.0025135413743555546, 0.050891242921352386, 0.02750234864652157, 0.048205599188804626, 0.022369029000401497, 0.034097474068403244, -0.029729053378105164, 0.05000736191868782, -0.07043864578008652, -0.005027082748711109, 0.006820344366133213, -0.025853566825389862, 0.04640384018421173, -0.07445011287927628, 0.026363499462604523, -0.04059061035513878, 0.05476672947406769, -0.07533399760723114, 0.032499685883522034, -0.0026495233178138733, -0.02106020413339138, -0.014006140641868114, -0.016385823488235474, 0.0240688044577837, 0.05514067783951759, 0.015009007416665554, 0.04888550937175751, -0.024102799594402313, -0.04395616427063942, -0.007993188686668873, -0.053984832018613815, -0.04980338737368584, 0.009986174292862415, -0.01069158036261797, -0.010207144543528557, -0.0227429810911417, -0.0008854761836118996, 0.016309333965182304, 0.01718471758067608, -0.01845954917371273, -0.005936461966484785, 0.029253115877509117, -0.001824070350266993, -0.03151381388306618, -0.013751174323260784, -0.0022904458455741405, 0.01896948181092739, 0.03848288953304291, -0.022844966500997543, -0.029899030923843384, -0.011074029840528965, -0.00019481006893329322, -0.037123069167137146, 0.023048939183354378, 0.02131517045199871, -0.07166248559951782, 0.01560392789542675, 0.030578939244151115, -0.07241038233041763, -0.09137986600399017, 0.014907021075487137, -0.04388817399740219, 0.03142882511019707, -0.06887485831975937, 0.011889921501278877, -0.01392965018749237, -0.001024113968014717, -0.028998149558901787, -0.018561534583568573, 0.00248379516415298, -0.004835858009755611, -0.03457340970635414, 0.023881828412413597, -0.023422889411449432, 0.03231270983815193, -0.003943476360291243, 0.003461165353655815, 0.040386635810136795, -0.017142223194241524, -0.01560392789542675, -0.02223304845392704, 0.0429362989962101, -0.029814042150974274, 0.02643148973584175, 0.020856231451034546, 0.009722708724439144, 0.006947827525436878, -0.06248370185494423, 0.04565593972802162, 0.051299188286066055, -0.010581094771623611, 0.011770936660468578, 0.03576325252652168, -0.0016402822220698, -0.051639143377542496, 0.011515971273183823, -0.016819266602396965, 0.030765915289521217, -0.005290547385811806, -0.019581399857997894, 0.03380851075053215, 0.0035716507118195295, 0.00564325088635087, 0.021825101226568222, -0.0454859621822834, -0.09443946182727814, -0.057758331298828125, -0.03239769861102104, 0.0689428448677063, 0.045078013092279434, -0.04708374664187431, -0.015493443235754967, 0.004767866805195808, 0.017159221693873405, -0.04127052053809166, 0.011991907842457294, -0.0072027938440442085, -0.027145395055413246, 0.017473679035902023, -0.02615952678024769, -0.016649289056658745, 0.03637516871094704, 0.028080271556973457, -0.04823959618806839, 0.059254132211208344, 0.00597895635291934, 0.0030086005572229624, -0.019836366176605225, -0.03397848829627037, -0.020346298813819885, 0.011838927865028381, -0.02112819440662861, -0.012527336366474628, -0.01510249450802803, -0.002641024300828576, -0.03651115298271179, -0.021332167088985443, -0.053474899381399155, -0.03977471962571144, -0.03851688653230667, -0.023966817185282707, 0.008243905380368233, -0.04361620917916298, -0.06231372430920601, -0.008439379744231701, 0.02995002269744873, -0.0010692642536014318, 0.000661849626339972, 0.03780297935009003, 0.012603826820850372, -0.0011930291075259447, 0.018765509128570557, -0.01844255067408085, 0.005766484420746565, 0.010003171861171722, 0.03476038575172424, 0.011558465659618378, 0.022369029000401497, 0.050279323011636734, -0.050449300557374954, 0.012357358820736408, -0.008460626937448978, 0.027978284284472466, 0.04657381772994995, -0.045349977910518646, -0.042086411267519, 0.01888449303805828, 0.10259837657213211, -0.03316259756684303, -0.020159322768449783, 0.04545196518301964, 0.03377451375126839, -0.0009067233768291771, -0.03362153470516205, 0.03425045311450958, -0.04344623163342476, -0.08145318180322647, -0.009714210405945778, 0.029304109513759613, 0.017643656581640244, 0.014286602847278118, -0.0032019498758018017, 0.005605005659162998, -0.13509805500507355, -0.019768375903367996, -0.06051196530461311, -0.019241444766521454, -0.029253115877509117, 0.05840424448251724, 0.010640586726367474, 0.004831608384847641, -0.013530203141272068, 0.03559327498078346, 0.049191467463970184, -0.0679909735918045, -0.02911713346838951, -0.04225638881325722, 0.014592562802135944, 0.024867698550224304, -0.006467641331255436, -0.05435878410935402, -0.007020067889243364, -0.04276632145047188, 0.07914149016141891, -0.061531830579042435, -0.015918387100100517, -0.011558465659618378, -0.020176321268081665, -0.0012142763007432222, 0.06822893768548965, 0.0195304062217474, 0.030391965061426163, -0.011227008886635303, -0.04823959618806839, 0.010853058658540249, 0.020601265132427216, 0.007309029344469309, 0.06074993312358856, 0.028454221785068512, -0.0007797714788466692, 0.050109345465898514, -0.04789964109659195, -0.02048228122293949, 0.017507676035165787, 0.05517467483878136, 0.010181647725403309, -0.095323346555233, 0.025275643914937973, 0.015034503303468227, 0.01896948181092739, -0.05571860074996948, 0.028760181739926338, -0.03246568888425827, 0.02347388304769993, -0.034012485295534134, 0.014439582824707031, -0.041236523538827896, 0.0234058927744627 ]
7,436
pathlib
is_dir
Whether this path is a directory.
def is_dir(self): """ Whether this path is a directory. """ try: return S_ISDIR(self.stat().st_mode) except OSError as e: if not _ignore_error(e): raise # Path doesn't exist or is a broken symlink # (see http://web.archive.org/web/20200623061726/https://bitbucket.org/pitrou/pathlib/issues/12/ ) return False except ValueError: # Non-encodable path return False
(self)
[ 0.027901632711291313, 0.03505589812994003, 0.005053846165537834, 0.008282437920570374, 0.06013251468539238, 0.0037468168884515762, 0.03955024480819702, 0.006301256362348795, -0.029809437692165375, 0.005076776724308729, 0.05470260977745056, 0.02113259769976139, 0.04839218035340309, -0.00756242498755455, -0.040797654539346695, -0.023315565660595894, 0.0031873167026787996, 0.013125324621796608, 0.016097096726298332, -0.008796077221632004, -0.039256736636161804, 0.023407287895679474, 0.036633506417274475, -0.010969872586429119, -0.03933011367917061, 0.0434759184718132, 0.030029568821191788, 0.004957538563758135, 0.0012795127695426345, 0.0065534901805222034, -0.02731461636722088, 0.05250129848718643, 0.0434759184718132, 0.023737484589219093, -0.021150942891836166, 0.02258179523050785, -0.022178221493959427, 0.004705305211246014, -0.062113694846630096, -0.081742063164711, -0.0767524242401123, 0.05826139822602272, -0.030836716294288635, 0.03767912834882736, 0.015574284829199314, -0.03815608099102974, -0.07557839155197144, -0.010043486952781677, -0.023719139397144318, -0.018857909366488457, 0.023774173110723495, 0.005842649843543768, 0.009814184159040451, -0.024948205798864365, 0.026947731152176857, -0.003999050706624985, 0.045750606805086136, 0.017161063849925995, -0.02889222465455532, -0.008640150539577007, -0.002779156668111682, -0.0059481291100382805, -0.00549410842359066, -0.030598241835832596, -0.0085117407143116, -0.019188106060028076, -0.06596599519252777, -0.05639028176665306, -0.011932946741580963, 0.03929342329502106, -0.06574586033821106, 0.04835549369454384, -0.010777258314192295, 0.03353332355618477, 0.018426818773150444, 0.001008361577987671, -0.0009223727975040674, 0.02366410754621029, 0.024379534646868706, -0.006172846537083387, -0.07535825669765472, -0.050006479024887085, -0.021921401843428612, -0.009474814869463444, 0.015647660940885544, 0.016317227855324745, 0.033404912799596786, 0.0070533715188503265, -0.02604886144399643, 0.03536774963140488, -0.006420494057238102, -0.026342371478676796, -0.0038568826857954264, -0.05756431818008423, -0.02417774684727192, 0.037752505391836166, 0.024287812411785126, -0.03933011367917061, -0.011226693168282509, -0.07139589637517929, -0.0010502093937247992, 0.023315565660595894, 0.034854110330343246, 0.0015546767972409725, -0.013767373748123646, 0.01405171025544405, -0.057307496666908264, -0.017408711835741997, -0.026525814086198807, -0.05855490639805794, -0.05055680498480797, -0.00036745864781551063, 0.00526021933183074, 0.039109982550144196, 0.011602750048041344, -0.032249223440885544, 0.0034464295022189617, -0.06409487873315811, -0.04732821509242058, -0.014868030324578285, 0.05635359510779381, 0.06945140659809113, 0.00907124113291502, -0.0460074283182621, 0.0818154439330101, 0.02052723802626133, 0.004517276305705309, 0.014253497123718262, -0.04105447605252266, 0.052868183702230453, -0.03390020877122879, 0.023132123053073883, 0.0028043801430612803, 0.047768477350473404, -0.00958488043397665, 0.03129532188177109, -0.0069112032651901245, 0.0217379592359066, -0.011731159873306751, 0.029515929520130157, 0.07095563411712646, -0.027332961559295654, -0.007145092822611332, 0.00028849230147898197, -0.004925436340272427, 0.060059137642383575, -0.03265279904007912, 0.028121763840317726, 0.021352728828787804, 0.020123662427067757, -0.0011551156640052795, -0.03391855210065842, 0.059545498341321945, 0.04325578734278679, 0.006379219703376293, -0.002451252890750766, -0.03676191717386246, 0.01889459788799286, 0.0012485567713156343, 0.007617457769811153, -0.015711866319179535, -0.0672500878572464, 0.009639913216233253, -0.017472917214035988, 0.0009860044810920954, 0.030268043279647827, -0.0036184070631861687, -0.027094485238194466, -0.023113779723644257, 0.04729152470827103, 0.02988281473517418, 0.020692335441708565, 0.027809912338852882, 0.008699770085513592, -0.02403099276125431, 0.02212318778038025, 0.02936917543411255, 0.051914282143116, -0.01926148310303688, -0.016078751534223557, 0.040284015238285065, -0.021756302565336227, -0.004934608470648527, 0.03230425715446472, 0.0037009562365710735, 0.03767912834882736, -0.03371676802635193, -0.02146279439330101, 0.045383721590042114, 0.05980231612920761, -0.09414278715848923, 0.047438278794288635, -0.008929072879254818, -0.012327348813414574, -0.02001359686255455, 0.022526763379573822, 0.03272617608308792, -0.016399776563048363, -0.04978634789586067, 0.02819514088332653, 0.03525768592953682, -0.002084367675706744, -0.007466117385774851, 0.011061593890190125, -0.039586931467056274, -0.0009521822212263942, -0.0646452009677887, 0.02801169827580452, 0.010538782924413681, 0.01964671164751053, -0.016234679147601128, -0.07374396175146103, 0.028085075318813324, 0.08071478456258774, 0.015491735190153122, 0.007773383986204863, 0.013143668882548809, 0.07711930572986603, -0.00677820760756731, 0.024764763191342354, 0.04325578734278679, 0.04175155609846115, 0.040284015238285065, -0.03608317673206329, -0.003609234932810068, -0.06325104087591171, 0.017555465921759605, 0.03006625734269619, -0.005012571346014738, -0.009924249723553658, -0.010089348070323467, -0.022380009293556213, -0.003141456050798297, 0.07157933712005615, 0.012162250466644764, -0.017885662615299225, 0.04791523143649101, -0.009988454170525074, -0.027516404166817665, -0.02880050241947174, -0.014079226180911064, -0.046264246106147766, -0.0366518497467041, -0.0031391631346195936, -0.03030473180115223, -0.035606227815151215, 0.05928867682814598, 0.022783583030104637, -0.033826831728219986, -0.03465232625603676, -0.029259109869599342, 0.018821220844984055, -0.04395286738872528, -0.06545235216617584, 0.0022953266743570566, -0.06082959845662117, -0.05804126709699631, 0.045383721590042114, 0.009823355823755264, 0.013895783573389053, -0.03472570329904556, -0.028140109032392502, -0.03268948942422867, 0.0328545868396759, 0.0002669951063580811, -0.061746809631586075, 0.04886913299560547, 0.0013402781914919615, 0.055473070591688156, 0.01883956417441368, 0.10632338374853134, -0.021077565848827362, -0.010612159967422485, -0.02028876170516014, 0.02674594521522522, 0.042522016912698746, 0.018032416701316833, -0.042338572442531586, 0.03589973598718643, 0.044723328202962875, -0.00907124113291502, 0.017610497772693634, -0.03727555647492409, -0.007452359423041344, -0.0213160403072834, 0.017014309763908386, -0.01684003882110119, 0.027809912338852882, -0.03217584639787674, 0.06930465251207352, 0.05250129848718643, -0.012584168463945389, -0.004833715036511421, 0.01986684277653694, 0.06383805721998215, 0.041311293840408325, 0.014207636937499046, -0.045053526759147644, 0.002522337017580867, -0.07976087927818298, -0.05804126709699631, 0.05345520004630089, 0.011978807859122753, 0.018371785059571266, -0.032469358295202255, -0.015647660940885544, -0.021150942891836166, 0.03109353594481945, 0.001391871483065188, 0.023462319746613503, 0.024324500933289528, -0.007814658805727959, 0.02725958451628685, 0.024929862469434738, 0.07044199109077454, 0.03166220709681511, -0.01283181644976139, -0.04784185439348221, -0.09216161072254181, 0.08093491196632385, -0.04941946268081665, 0.09605059027671814, -0.009850872680544853, -0.011822881177067757, -0.07022186368703842, -0.0018401595298200846, 0.05723411962389946, 0.003870640881359577, 0.029846126213669777, 0.044172998517751694, -0.018032416701316833, -0.031863994896411896, 0.058004580438137054, -0.03734893351793289, -0.02889222465455532, -0.016821695491671562, -0.034010276198387146, -0.0595821850001812, 0.015931997448205948, 0.018316753208637238, 0.01762884296476841, -0.04043076932430267, 0.0010857514571398497, -0.007044199388474226, 0.006035264581441879, -0.0040403250604867935, 0.01620716229081154, 0.058848414570093155, 0.0766056701540947, 0.05382208526134491, 0.008030204102396965, 0.05228116735816002, -0.02777322381734848, -0.029515929520130157, -0.061893563717603683, 0.012685062363743782, 0.005860994104295969, 0.05011654272675514, -0.00956653617322445, 0.05004316568374634, 0.07719268649816513, 0.017106030136346817, -0.02421443536877632, 0.007791728246957064, -0.01968340016901493, -0.041311293840408325, 0.023315565660595894, -0.039073292165994644, 0.06424163281917572, 0.010116863995790482, 0.032469358295202255, -0.012859332375228405, -0.011290897615253925, -0.06607605516910553, 0.03305637463927269, -0.015675177797675133, 0.06031595543026924, -0.04450319707393646, 0.020178696140646935, 0.050850313156843185, -0.004705305211246014, 0.015574284829199314, 0.01940823718905449, 0.014620382338762283, 0.03764244168996811, 0.007507392205297947, 0.048465557396411896, -0.03608317673206329, -0.027296273037791252, -0.07018517702817917, -0.03577132523059845, 0.001982327550649643, 0.022783583030104637, 0.0025704908184707165, -0.07917386293411255, -0.037899259477853775, 0.05657372623682022, -0.008062305860221386, -0.0332031287252903, -0.010942356660962105, 0.05965556204319, 0.011272553354501724, 0.006727760657668114, 0.060022447258234024, -0.01587696559727192, 0.028745470568537712, 0.05980231612920761, 0.02889222465455532, -0.02043551579117775, -0.04784185439348221, 0.04006388410925865, -0.04189831018447876, -0.021664582192897797, -0.004418675787746906, -0.017216097563505173, 0.027296273037791252, -0.035973113030195236, -0.03610152006149292, 0.05503280833363533, -0.000965940416790545, -0.027608124539256096, -0.06104972958564758, -0.029625995084643364, 0.031130224466323853, 0.030598241835832596, -0.009199650958180428, -0.033496636897325516, -0.021627893671393394, 0.02324218861758709, 0.007631216198205948, -0.026397403329610825, -0.010713052935898304, 0.026856010779738426, -0.05473930016160011, -0.013262907043099403, -0.030451487749814987, -0.05848152935504913, -0.007319363299757242, -0.08819924294948578, 0.01678500697016716, -0.051510706543922424, 0.028030043467879295, -0.03969699889421463, 0.047585032880306244, 0.04281552508473396, -0.00722305616363883, 0.018004899844527245, 0.020839089527726173, 0.0595821850001812, 0.006787379737943411, -0.04582398384809494, 0.02215987630188465, 0.041494738310575485, -0.005792202893644571, -0.06974491477012634, 0.003927966579794884, -0.008254921063780785, 0.030451487749814987, 0.004145804792642593, 0.004519569221884012, -0.01717940717935562, 0.03465232625603676, 0.015610973350703716, -0.03591807931661606, 0.023297222331166267, 0.003950897138565779, -0.006269154138863087, 0.01052043866366148, 0.022288287058472633, 0.0153358094394207, 0.00857594609260559, 0.0056087602861225605, -0.00027530736406333745, 0.04307234287261963, -0.0013620619429275393, 0.015684349462389946, -0.0032882101368159056, -0.004492052830755711, -0.04332916438579559, -0.006484698969870806, -0.022435041144490242, -0.06079290807247162, -0.010758914053440094, -0.021903056651353836, 0.008686011657118797, -0.0460074283182621, -0.049346085637807846, 0.06204031780362129, 0.022196564823389053, -0.013638963922858238, 0.06945140659809113, 0.004994227085262537, 0.0018000314012169838, -0.035147618502378464, 0.03525768592953682, -0.010025142692029476, -0.06739684194326401, 0.05404221639037132, -0.02010531909763813, -0.009860044345259666, 0.03182730823755264, -0.023352254182100296, 0.018582744523882866, 0.014345218427479267, -0.010722225531935692, 0.034487225115299225, 0.01799572817981243, -0.03399192914366722, -0.0023320151958614588, -0.0027241238858550787, -0.0281034205108881, 0.049676280468702316, -0.0044140899553895, 0.01935320347547531, 0.045383721590042114, 0.039586931467056274, 0.03344160318374634, -0.011419307440519333, 0.027369650080800056, 0.004001343622803688, -0.004916264209896326, -0.05088700354099274, 0.012721750885248184, -0.02590210735797882, -0.06255395710468292, 0.0689377635717392, 0.0031896098516881466, 0.001907804049551487, 0.00470989104360342, 0.015482563525438309, 0.0043086102232337, 0.012685062363743782, 0.02230663225054741, 0.028653748333454132, 0.046594444662332535, 0.08071478456258774, 0.010960700921714306, 0.031130224466323853, -0.06526891142129898, -0.0006328772869892418, 0.01711520366370678, -0.01926148310303688, 0.015895308926701546, -0.050153233110904694, 0.04072427749633789, 0.001140784239396453, 0.014070054516196251, -0.04072427749633789, 0.050997067242860794, 0.010740569792687893, -0.009373921900987625, 0.03507424145936966, 0.005874752067029476, 0.04072427749633789, 0.07080888003110886, 0.02725958451628685, 0.04663113132119179, -0.03030473180115223, -0.012547479942440987, -0.006026092451065779, -0.08438363671302795, -0.031680554151535034, -0.023132123053073883, -0.006842412520200014, 0.0195916797965765, -0.0276815015822649, 0.029570961371064186, -0.02586541883647442, 0.0345422588288784, -0.026911042630672455, 0.020178696140646935, -0.024141058325767517, -0.034578949213027954, -0.04868569225072861, 0.01624385081231594, 0.02234332077205181, -0.015565112233161926, 0.008140269666910172, 0.0013804062036797404, -0.020784057676792145, 0.01629888266324997, -0.0689377635717392, -0.01705099828541279, -0.002971771638840437, -0.029094010591506958, -0.08269596844911575, -0.018014071509242058, 0.04464995115995407, -0.03305637463927269, -0.01657404750585556, -0.017940694466233253, -0.03507424145936966, 0.045750606805086136, -0.03375345468521118, 0.04564054310321808, -0.014088398776948452, 0.027553092688322067, -0.06585592776536942, 0.028360240161418915, 0.011437651701271534, -0.01862860471010208, -0.009548191912472248, -0.021829679608345032, -0.016711629927158356, 0.010676364414393902, -0.01907804049551487, 0.0570506788790226, 0.061746809631586075, -0.05925199016928673, -0.0234256312251091, -0.0030680790077894926, 0.01807827688753605, 0.027387993410229683, -0.013061119243502617, 0.06409487873315811, 0.02586541883647442, 0.011483512818813324, -0.06361792236566544, 0.005838063545525074, 0.00392567366361618, -0.017344506457448006, -0.036871980875730515, 0.014666243456304073, -0.02674594521522522, -0.04740159213542938, -0.032010748982429504, 0.02234332077205181, 0.031221946701407433, -0.029240764677524567, -0.06288415193557739, 0.0153358094394207, 0.0033363639377057552, 0.006512215360999107, -0.03586304560303688, -0.0285253394395113, -0.06603936851024628, -0.040100570768117905, -0.03745899721980095, 0.07179947197437286, -0.003705542301759124, -0.040944408625364304, -0.0417148694396019, -0.01926148310303688, -0.0004941487568430603, -0.023865893483161926, -0.02215987630188465, 0.023388942703604698, -0.015262432396411896, 0.06721340119838715, -0.014794653281569481, -0.010437889024615288, 0.020453860983252525, -0.0020362138748168945, -0.07873360067605972, 0.020692335441708565, 0.03292796388268471, 0.03039645403623581, -0.03465232625603676, -0.005668379366397858, -0.03468901291489601, 0.029534272849559784, -0.04314571991562843, -0.06871762871742249, -0.016775833442807198, 0.030653273686766624, 0.011043249629437923, -0.04274214804172516, 0.008250335231423378, 0.04597073793411255, -0.04842887073755264, -0.009057482704520226, 0.04175155609846115, -0.022526763379573822, -0.044723328202962875, 0.011373447254300117, 0.022471729665994644, -0.0075165643356740475, -0.05195096880197525, 0.05972893908619881, -0.004971296992152929, -0.09076744318008423, 0.059178613126277924, -0.035000864416360855, 0.05092369019985199, 0.012501619756221771, 0.0085300849750638, -0.003331777872517705, -0.011373447254300117, 0.03556953743100166, -0.050666872411966324, -0.024673042818903923, -0.025168336927890778, 0.007695421110838652, 0.022655172273516655, -0.0191330723464489, -0.04714477062225342, 0.031075192615389824, 0.09619734436273575, -0.017170235514640808, -0.028635405004024506, 0.05279480665922165, -0.0022517589386552572, 0.021444451063871384, -0.035697948187589645, 0.058885104954242706, -0.04615418240427971, -0.04241194948554039, 0.03133201226592064, 0.006782793439924717, 0.02067399211227894, -0.005241875071078539, 0.001942199538461864, 0.0006168260588310659, -0.10573636740446091, 0.020398827269673347, -0.04208175465464592, -0.007411084603518248, -0.03899991512298584, 0.0834297388792038, -0.0578945130109787, -0.00391650153324008, -0.09333564341068268, -0.036541786044836044, 0.04842887073755264, -0.05804126709699631, -0.051033757627010345, -0.023297222331166267, -0.007612871937453747, 0.02801169827580452, 0.018399301916360855, -0.007603699807077646, 0.027094485238194466, -0.015262432396411896, 0.06981828808784485, -0.04057752341032028, 0.0037330586928874254, -0.002098125871270895, 0.07990763336420059, -0.0014973509823903441, 0.06482864916324615, 0.049676280468702316, 0.0323592908680439, 0.027461370453238487, -0.09326226264238358, 0.029864469543099403, 0.013070291839540005, 0.022233253344893456, 0.027424681931734085, 0.0031896098516881466, -0.010245274752378464, 0.05554644763469696, -0.036486752331256866, -0.03292796388268471, 0.029094010591506958, 0.012244800105690956, -0.009832528419792652, -0.04630093649029732, 0.009364749304950237, 0.031075192615389824, -0.02548019029200077, -0.04751165583729744, -0.02071068063378334, -0.022526763379573822, 0.012474102899432182, -0.02076571248471737, 0.03379014506936073, -0.05572988837957382, -0.01944492571055889 ]
7,437
pathlib
is_fifo
Whether this path is a FIFO.
def is_fifo(self): """ Whether this path is a FIFO. """ try: return S_ISFIFO(self.stat().st_mode) except OSError as e: if not _ignore_error(e): raise # Path doesn't exist or is a broken symlink # (see http://web.archive.org/web/20200623061726/https://bitbucket.org/pitrou/pathlib/issues/12/ ) return False except ValueError: # Non-encodable path return False
(self)
[ 0.03914949670433998, 0.04270543158054352, -0.05385192483663559, -0.00503045367076993, 0.03048189915716648, 0.01191580668091774, -0.0013056955067440867, 0.021677536889910698, -0.023455504328012466, -0.04171387106180191, 0.0893087163567543, 0.006637463346123695, 0.014710978604853153, -0.023216163739562035, -0.015676893293857574, 0.03171280026435852, 0.03320014104247093, 0.014069884084165096, 0.009240306913852692, 0.006440861150622368, -0.023558080196380615, 0.004534673877060413, 0.010949891060590744, -0.051902998238801956, 0.015711085870862007, 0.0483812540769577, -0.018275462090969086, -0.0022630630992352962, -0.006752860266715288, 0.016223961487412453, -0.023660656064748764, 0.017950640991330147, 0.019950855523347855, -0.03945722058415413, 0.006603271700441837, 0.06506679952144623, -0.030430611222982407, 0.03826051205396652, -0.05699755996465683, -0.070571668446064, -0.0026135279331356287, 0.011873067356646061, -0.08253876119852066, 0.024224817752838135, 0.0045432220213115215, -0.0019895294681191444, -0.03785020858049393, 0.07939312607049942, 0.014856292866170406, 0.030755432322621346, 0.0483812540769577, 0.004739824216812849, -0.003327279584482312, -0.001988461008295417, -0.03294370323419571, 0.007077681832015514, 0.046398136764764786, 0.05139012262225151, -0.04701358452439308, -0.02834491804242134, -0.017471957951784134, 0.03485843539237976, 0.044244058430194855, -0.039730753749608994, -0.0027887604665011168, -0.04325249791145325, -0.02979806438088417, -0.06831501424312592, -0.034140411764383316, 0.0451672337949276, -0.04892832040786743, 0.046261366456747055, -0.029387764632701874, 0.028857793658971786, -0.006966558750718832, -0.010214770212769508, 0.013129612430930138, 0.03448232635855675, 0.007368310820311308, -0.01822417601943016, 0.014839197508990765, -0.028276534751057625, -0.01326637901365757, 0.012497065588831902, -0.0035409778356552124, 0.02552410215139389, 0.050672098994255066, 0.01798483356833458, -0.005833958741277456, 0.03620900958776474, -0.005039001349359751, 0.018976392224431038, -0.02979806438088417, -0.053339049220085144, 0.021113373339176178, -0.010898604057729244, 0.007744419854134321, -0.025267664343118668, 0.011796136386692524, -0.07296508550643921, -0.053680967539548874, 0.06315206736326218, -0.05351000651717186, -0.019198639318346977, 0.013727966696023941, 0.008838553912937641, -0.013300570659339428, -0.0027802125550806522, -0.027011441066861153, -0.08862487971782684, -0.016326535493135452, 0.034140411764383316, 0.05631372705101967, 0.030977679416537285, -0.006286998745054007, 0.019267022609710693, -0.0212672371417284, -0.03371301293373108, 0.0009178334148600698, -0.03856823593378067, 0.03846566006541252, 0.06304949522018433, 0.02048082835972309, -0.009659155271947384, 0.04892832040786743, 0.05354420095682144, 0.005440753884613514, 0.013309118337929249, 0.0203611571341753, 0.04916766285896301, 0.013309118337929249, 0.03699541836977005, 0.0006790257757529616, 0.062468234449625015, -0.022207507863640785, 0.02764398790895939, -0.0056373560801148415, 0.027609797194600105, -0.06243404000997543, -0.04554334282875061, 0.018395133316516876, -0.05747624486684799, -0.027165304869413376, 0.007492255885154009, -0.021865591406822205, 0.06051930785179138, -0.005598890595138073, -0.06123733147978783, 0.028293630108237267, 0.029610011726617813, 0.0155230313539505, -0.027934618294239044, -0.061886973679065704, 0.04212417080998421, 0.05836522951722145, 0.004923604428768158, -0.06510099768638611, 0.00382092222571373, 0.0016176947392523289, -0.0008702855557203293, -0.047047778964042664, -0.022857150062918663, -0.014471636153757572, -0.009650606662034988, -0.020959511399269104, -0.03237953782081604, -0.03521744906902313, -0.015497387386858463, 0.028977464884519577, 0.07132388651371002, 0.07720485329627991, 0.07371730357408524, -0.00017803724040277302, -0.004752646200358868, -0.036927033215761185, -0.020326964557170868, -0.03477295860648155, 0.03877338767051697, -0.030669953674077988, -0.016890699043869972, -0.011385835707187653, -0.04137195646762848, -0.017489053308963776, -0.004940700251609087, 0.03272145614027977, 0.03696122765541077, -0.013292022980749607, -0.018463516607880592, 0.09088153392076492, 0.04602202773094177, -0.11474733799695969, 0.03733733668923378, 0.02955872379243374, -0.013488625176250935, -0.026584045961499214, -0.027045633643865585, 0.03607224300503731, 0.018976392224431038, -0.004799659829586744, 0.009966880083084106, 0.007705953903496265, 0.02022439055144787, 0.018138695508241653, -0.00883000623434782, -0.0629127249121666, 0.019420884549617767, 0.028703931719064713, -0.0045859613455832005, -0.0035046490374952555, 0.04383375868201256, -0.0631178766489029, -0.07645263522863388, -0.002295117825269699, 0.01639491878449917, 0.024583831429481506, 0.07050327956676483, -0.014471636153757572, 0.03566194325685501, 0.012522709555923939, 0.028755217790603638, 0.043799564242362976, 0.01721552014350891, 0.02044663578271866, -0.005808314774185419, 0.00035794434370473027, -0.0293364766985178, 0.03056737780570984, 0.033336907625198364, -0.011514054611325264, 0.030447708442807198, 0.031302500516176224, -0.011385835707187653, 0.0262079369276762, -0.007590556982904673, 0.0028870615642517805, 0.021198853850364685, 0.016121385619044304, -0.016446206718683243, -0.043115731328725815, -0.01688215136528015, 0.000004708036613010336, -0.03542260080575943, -0.00038706071791239083, -0.02764398790895939, 0.021899782121181488, -0.03384978324174881, 0.026156648993492126, 0.038294702768325806, -0.03183247148990631, -0.02564377337694168, 0.015540126711130142, 0.052552640438079834, -0.0741959884762764, -0.06424620002508163, 0.0074879820458590984, -0.08370127528905869, -0.0566556453704834, -0.06585320830345154, 0.027387550100684166, 0.051561079919338226, -0.05217653140425682, -0.03405493125319481, -0.004791111685335636, 0.04735550284385681, 0.0073469411581754684, -0.041542913764715195, 0.004821029491722584, -0.009479648433625698, -0.006056204438209534, 0.009804469533264637, 0.04742388427257538, -0.050672098994255066, -0.0024532543029636145, -0.00282508903183043, -0.006342560052871704, -0.03521744906902313, 0.035696133971214294, -0.01175339613109827, 0.07467467337846756, 0.014582759700715542, -0.008287212811410427, 0.0165316853672266, -0.0007388612139038742, -0.013044132851064205, -0.0284303966909647, 0.03624320030212402, -0.011676465161144733, -0.03161022439599037, -0.029302285984158516, 0.043218307197093964, 0.025592487305402756, 0.01662571355700493, -0.04632975161075592, -0.02280586212873459, 0.042876388877630234, 0.07330700010061264, 0.009402717463672161, -0.08171816170215607, 0.0707768127322197, -0.0467742420732975, -0.015779469162225723, 0.030071599408984184, -0.0489967055618763, 0.007137516979128122, -0.040653929114341736, 0.003286676947027445, -0.020173102617263794, 0.014864840544760227, -0.04745807871222496, 0.05351000651717186, 0.006560532376170158, -0.018378037959337234, -0.0007329845102503896, -0.012924461625516415, 0.056040193885564804, 0.07905120402574539, 0.018343845382332802, 0.00745379040017724, -0.025814732536673546, 0.056518878787755966, -0.01988247223198414, 0.0741959884762764, -0.032430827617645264, -0.028498779982328415, -0.03627739101648331, 0.05467252433300018, 0.015104182995855808, -0.027165304869413376, 0.009351429529488087, 0.05015922337770462, -0.016839411109685898, 0.02101079933345318, 0.019078968092799187, -0.017164232209324837, -0.02981516160070896, 0.018719954416155815, -0.01967732235789299, -0.020497923716902733, 0.009018060751259327, -0.031764086335897446, 0.021626248955726624, 0.015454648062586784, 0.019540555775165558, -0.008137624710798264, 0.010086551308631897, 0.018514804542064667, 0.03169570490717888, 0.06397266685962677, 0.07658940553665161, 0.06893046200275421, 0.01354846078902483, 0.02562667801976204, -0.04000428691506386, -0.009975427761673927, -0.03655092418193817, -0.016437659040093422, -0.012428682297468185, 0.026276320219039917, 0.022412657737731934, 0.050193414092063904, 0.09477938711643219, -0.02304520457983017, -0.04270543158054352, 0.006769956089556217, -0.02689177170395851, -0.04284219816327095, 0.01676248013973236, 0.030533187091350555, 0.0234896969050169, -0.0009814086370170116, -0.016241056844592094, 0.007898282259702682, 0.009693346917629242, -0.0822652280330658, -0.0212672371417284, -0.000909819733351469, 0.06862273812294006, -0.03292660415172577, 0.030498994514346123, 0.03679026663303375, -0.010257509537041187, -0.010291701182723045, 0.011189233511686325, -0.003923497628420591, -0.01400150079280138, 0.0407223142683506, -0.03617481887340546, -0.05747624486684799, 0.05248425900936127, -0.02911423146724701, 0.019540555775165558, -0.028857793658971786, 0.003919223323464394, -0.0146682383492589, -0.048278678208589554, -0.0039085387252271175, 0.06503260880708694, 0.024447064846754074, -0.017813874408602715, 0.03482424467802048, 0.0146682383492589, -0.00517576839774847, -0.014326321892440319, 0.044791124761104584, 0.051116589456796646, 0.00888129323720932, 0.08643661439418793, 0.026242129504680634, -0.008013679645955563, 0.01524094957858324, 0.04937281087040901, -0.039525602012872696, -0.07330700010061264, -0.007582009304314852, -0.013061229139566422, 0.013702323660254478, -0.04417567327618599, -0.05562989413738251, 0.058399420231580734, 0.007423872593790293, 0.0021070633083581924, -0.008915485814213753, -0.028037192299962044, 0.005586068611592054, 0.022891342639923096, 0.01744631491601467, -0.015471743419766426, 0.04250027984380722, 0.013864734210073948, 0.028156863525509834, 0.006222889292985201, -0.007629022933542728, 0.01853189989924431, -0.023079397156834602, -0.009642058983445168, -0.0185489971190691, -0.0009007375338114798, -0.05344162508845329, -0.046705860644578934, 0.0323624424636364, 0.02890908159315586, 0.03386687859892845, 0.026464374735951424, 0.01298429723829031, 0.009009512141346931, 0.015505935065448284, 0.01923283003270626, 0.04386794939637184, 0.05299713462591171, 0.01709584891796112, -0.027250783517956734, 0.02205364592373371, -0.0025195006746798754, -0.002951171016320586, -0.05231329798698425, -0.04393633082509041, -0.010787480510771275, 0.02415643446147442, -0.042568664997816086, -0.013488625176250935, -0.011402931064367294, 0.07597395777702332, 0.0009787373710423708, -0.03302918002009392, 0.02463511936366558, 0.0027118290308862925, 0.022669095546007156, 0.015608510002493858, 0.021745920181274414, -0.0030195543076843023, 0.035901281982660294, -0.014121171087026596, -0.05265521630644798, 0.007727324031293392, 0.000529437093064189, 0.012403038330376148, 0.019626034423708916, 0.04250027984380722, 0.007197352591902018, 0.012394490651786327, -0.023438408970832825, -0.0979934111237526, -0.055390551686286926, 0.03463619202375412, 0.001505503198131919, -0.07994019240140915, -0.05002245679497719, 0.0186515711247921, -0.01979699358344078, -0.00017095849034376442, 0.010137838311493397, -0.06605836004018784, -0.04038039594888687, 0.02316487580537796, 0.08759912848472595, 0.02687467448413372, -0.03184956684708595, 0.03610643371939659, -0.04185063764452934, -0.020275676622986794, -0.011095206253230572, 0.01607864536345005, 0.015087086707353592, 0.0066716549918055534, -0.01575382426381111, -0.029182614758610725, 0.05197138339281082, -0.06598997861146927, -0.032772742211818695, -0.014839197508990765, 0.005073193460702896, 0.00900096446275711, 0.017933545634150505, 0.06051930785179138, -0.01731809601187706, 0.021506577730178833, 0.05251844972372055, -0.006381025537848473, 0.007261462043970823, -0.01236884668469429, 0.019865376874804497, -0.03706379979848862, 0.015599962323904037, -0.04085908085107803, -0.03949141129851341, -0.050672098994255066, 0.021284332498908043, -0.0146169513463974, 0.013480077497661114, -0.024532543495297432, 0.025917308405041695, 0.037029609084129333, 0.046363942325115204, 0.003538840916007757, 0.061784397810697556, 0.03610643371939659, -0.00791965238749981, 0.01868576370179653, -0.09860885888338089, -0.04393633082509041, 0.0029939105734229088, 0.01664280891418457, 0.021198853850364685, -0.04284219816327095, -0.008941128849983215, -0.018959296867251396, 0.0528261736035347, -0.01935250125825405, 0.08103432506322861, -0.02022439055144787, -0.024224817752838135, -0.032430827617645264, -0.010368632152676582, -0.00685970950871706, 0.052210722118616104, 0.010539591312408447, 0.05002245679497719, 0.00167325627990067, -0.01617267355322838, 0.0011432849569246173, -0.0677337571978569, 0.04410729184746742, -0.028293630108237267, -0.025489911437034607, 0.022190412506461143, -0.070571668446064, 0.03116573393344879, -0.03205471858382225, 0.07699970155954361, 0.0009862168226391077, 0.026054074987769127, -0.021455291658639908, 0.008116254583001137, -0.04756065085530281, 0.06198954954743385, -0.023985477164387703, -0.0009039430296979845, 0.028071384876966476, -0.055835042148828506, 0.011838875710964203, 0.009103539399802685, -0.045133043080568314, -0.07994019240140915, -0.022207507863640785, -0.016488946974277496, -0.024566736072301865, 0.005107385106384754, 0.03661930933594704, -0.07248640060424805, -0.01957474835216999, -0.026242129504680634, -0.025592487305402756, 0.06041673198342323, -0.04766322672367096, 0.02675500325858593, 0.012565448880195618, 0.06233146786689758, -0.06650285422801971, -0.03600385785102844, 0.027028538286685944, -0.028173958882689476, 0.0082145556807518, 0.02148948237299919, -0.03661930933594704, 0.010428467765450478, -0.017130041494965553, -0.0066716549918055534, 0.035354215651750565, -0.026395991444587708, -0.0062528070993721485, 0.0350806824862957, 0.06096379831433296, -0.002829363103955984, 0.03733733668923378, 0.026943057775497437, 0.03897853568196297, -0.038294702768325806, -0.050979822874069214, 0.00534245278686285, 0.04280800744891167, 0.026618236675858498, 0.003224704647436738, 0.0027844863943755627, -0.028635548427700996, -0.05980128049850464, -0.03439684957265854, 0.015907688066363335, -0.052244916558265686, -0.01989956945180893, -0.05453575775027275, 0.05528797581791878, -0.019403789192438126, 0.013796349987387657, 0.008146172389388084, -0.0391153022646904, -0.07549527287483215, -0.04202159866690636, 0.005509137641638517, 0.027832042425870895, 0.014847745187580585, -0.08780428022146225, -0.06151086464524269, -0.03275564685463905, -0.044483400881290436, -0.008325678296387196, -0.04431243985891342, 0.037952784448862076, -0.015317880548536777, 0.05125335603952408, -0.020634690299630165, 0.00486376928165555, 0.02340421825647354, -0.024241914972662926, -0.009770277887582779, 0.03369591757655144, 0.04191902279853821, 0.07330700010061264, -0.012864626944065094, -0.03651673346757889, -0.0368928425014019, 0.025814732536673546, -0.05798912048339844, -0.017352286726236343, 0.035114873200654984, -0.0010770384687930346, -0.020856935530900955, 0.012668024748563766, -0.02157496102154255, -0.020532114431262016, 0.003758949926123023, -0.007270009722560644, 0.008338500745594501, 0.008107706904411316, -0.06383590400218964, -0.024566736072301865, 0.02810557559132576, -0.01642056368291378, 0.053339049220085144, 0.05501444265246391, 0.00009663161472417414, -0.07699970155954361, 0.025267664343118668, -0.008966772817075253, 0.0225836168974638, 0.05744205415248871, 0.039423029869794846, 0.030498994514346123, -0.024224817752838135, -0.01389037724584341, -0.0427396222949028, 0.04215836524963379, 0.01662571355700493, -0.007270009722560644, 0.011445671319961548, -0.030208365991711617, -0.06862273812294006, 0.009411265142261982, 0.10004491358995438, -0.019027680158615112, -0.017018917948007584, 0.05251844972372055, 0.03610643371939659, 0.0506037138402462, -0.03545679152011871, -0.01050539966672659, -0.008821458555758, -0.07193933427333832, -0.010240414179861546, -0.02812267281115055, -0.011958546936511993, -0.04622717574238777, 0.010975535027682781, 0.03309756517410278, -0.045474957674741745, -0.03415750712156296, -0.045919451862573624, 0.022463945671916008, -0.0425344742834568, 0.04831286892294884, -0.0021775837522000074, -0.01664280891418457, -0.00994123611599207, -0.02338712103664875, 0.02677210047841072, -0.02066888101398945, -0.09621544182300568, -0.027609797194600105, 0.017377931624650955, 0.00008621383312856779, -0.004276099149137735, 0.01084731612354517, 0.03465328738093376, -0.041440337896347046, 0.06404104828834534, 0.05340743437409401, -0.023746134713292122, 0.005068919155746698, 0.021044990047812462, -0.016813768073916435, 0.07166580110788345, 0.06869111955165863, -0.010582330636680126, -0.01112939789891243, -0.04646651819348335, 0.014941772446036339, -0.04903089627623558, -0.003220430575311184, 0.0489967055618763, -0.04629556089639664, -0.013616844080388546, 0.003154184203594923, -0.047731611877679825, -0.025558294728398323, 0.0005021905526518822, -0.002406240673735738, 0.004709906410425901, -0.06595578789710999, 0.057168520987033844, 0.00227802200242877, 0.010240414179861546, -0.08308582752943039, 0.016608618199825287, 0.02113047055900097, 0.023130683228373528, 0.03060157038271427, 0.008889841847121716, -0.06564806401729584, -0.008778718300163746 ]
7,438
pathlib
is_file
Whether this path is a regular file (also True for symlinks pointing to regular files).
def is_file(self): """ Whether this path is a regular file (also True for symlinks pointing to regular files). """ try: return S_ISREG(self.stat().st_mode) except OSError as e: if not _ignore_error(e): raise # Path doesn't exist or is a broken symlink # (see http://web.archive.org/web/20200623061726/https://bitbucket.org/pitrou/pathlib/issues/12/ ) return False except ValueError: # Non-encodable path return False
(self)
[ 0.06549825519323349, -0.00341174378991127, 0.025632107630372047, 0.05173386633396149, 0.029425442218780518, -0.027257822453975677, 0.0722540020942688, 0.011090989224612713, -0.021351058036088943, -0.0213329941034317, 0.0756499394774437, 0.025541789829730988, 0.04443621262907982, -0.013529562391340733, -0.03731919452548027, 0.02295870892703533, 0.011867719702422619, 0.003843009937554598, 0.011596767231822014, 0.023500613868236542, -0.04407494142651558, 0.001220415229909122, 0.021784581243991852, -0.003987517673522234, -0.003190465969964862, 0.0641254261136055, 0.0020964951254427433, 0.001533139613457024, 0.05242028087377548, -0.033471666276454926, -0.02846807800233364, 0.0036939859855920076, 0.04956624656915665, 0.011533545330166817, -0.02059239149093628, -0.00184021913446486, -0.018045436590909958, 0.037174686789512634, -0.05025266110897064, -0.0776730552315712, -0.06567888706922531, 0.07463838905096054, -0.047109611332416534, 0.0417628139257431, -0.014974642544984818, -0.02230842411518097, -0.08143026381731033, 0.020357565954327583, -0.021296868100762367, -0.011560640297830105, 0.02422315441071987, 0.014152753166854382, -0.012987657450139523, -0.005703550297766924, -0.0035833469592034817, -0.019905978813767433, 0.030852459371089935, 0.045664530247449875, -0.05314281955361366, -0.015254626981914043, 0.019635025411844254, -0.006263519171625376, 0.027420394122600555, -0.08482620120048523, 0.006949931848794222, -0.021296868100762367, -0.03589217737317085, -0.08345337212085724, -0.019309882074594498, 0.04038998857140541, -0.042413100600242615, 0.06470345705747604, -0.0159771665930748, 0.025234710425138474, 0.02601144090294838, -0.016916468739509583, 0.0034862556494772434, 0.011027767322957516, 0.02792617306113243, 0.009203353896737099, -0.05187837406992912, -0.052709296345710754, 0.01034135464578867, -0.00682348757982254, -0.004396204371005297, -0.009636878035962582, 0.06647368520498276, -0.014125658199191093, -0.01309603825211525, 0.04924110323190689, 0.004554260056465864, 0.0036397953517735004, -0.02601144090294838, -0.06282485276460648, -0.001024539233185351, 0.0029285450000315905, 0.034284524619579315, -0.036542464047670364, -0.0011504192370921373, -0.06398092210292816, -0.018379611894488335, 0.011118085123598576, 0.0011684827040880919, -0.0046287719160318375, 0.021351058036088943, 0.02910030074417591, -0.013366990722715855, -0.005066812038421631, -0.03332715854048729, -0.07185661047697067, -0.0580199658870697, -0.018569279462099075, -0.0037865613121539354, 0.05874250456690788, 0.026264330372214317, -0.040245480835437775, 0.012138673104345798, -0.05321507528424263, -0.014215975068509579, -0.02673398144543171, 0.048193421214818954, 0.04201570153236389, 0.0002974832896143198, -0.015462356619536877, 0.08092448115348816, -0.010440703481435776, 0.011262592859566212, -0.014532086439430714, 0.00401912909001112, 0.000782939896453172, -0.02431347221136093, 0.023970264941453934, -0.01242768857628107, 0.06781037896871567, -0.06499247997999191, 0.02666172757744789, -0.01860540546476841, 0.029064172878861427, -0.006159653887152672, 0.013285704888403416, 0.05245640501379967, -0.03955906629562378, -0.03180982545018196, -0.00840855948626995, -0.035639286041259766, 0.03170144557952881, -0.007622797507792711, 0.01634746789932251, 0.03414001688361168, 0.02601144090294838, 0.032568491995334625, -0.03426646068692207, 0.0019632766488939524, 0.036994051188230515, 0.018912484869360924, -0.023879949003458023, -0.013267641887068748, 0.020303374156355858, -0.02492763102054596, 0.01734999194741249, -0.0019373104441910982, -0.03352585807442665, 0.008006647229194641, -0.00971816387027502, 0.0037797875702381134, 0.019111184403300285, -0.04075125977396965, -0.03460966795682907, 0.0016449075192213058, 0.04353303834795952, 0.019635025411844254, 0.02485537715256214, 0.02106204256415367, 0.030400872230529785, 0.03692179545760155, 0.030834395438432693, 0.028594521805644035, 0.05332345515489578, 0.00715766241773963, 0.010232972912490368, 0.030509253963828087, -0.04880758002400398, -0.0012508974177762866, 0.0348806194961071, 0.02095366083085537, 0.056683264672756195, -0.03630763664841652, -0.04161830618977547, 0.07550543546676636, 0.0657150149345398, -0.05592459812760353, 0.04046224057674408, 0.015697183087468147, 0.004491038154810667, -0.016835182905197144, -0.030147982761263847, 0.022922582924365997, 0.001497012679465115, -0.06791876256465912, 0.036885667592287064, -0.0027230726554989815, -0.036686971783638, -0.012816053815186024, 0.013890832662582397, -0.055346567183732986, 0.018289294093847275, 0.0025266322772949934, 0.012039323337376118, -0.01193094253540039, 0.06781037896871567, -0.03887265548110008, -0.09660360217094421, -0.015561706386506557, 0.08540423214435577, 0.0319543331861496, 0.032839443534612656, -0.028847411274909973, 0.07825108617544174, -0.05675552040338516, 0.04685672000050545, 0.06470345705747604, 0.0559968538582325, 0.004904240369796753, -0.015769436955451965, 0.03150274604558945, -0.02955188788473606, 0.02727588638663292, 0.04797665774822235, -0.0004958995268680155, 0.017458373680710793, 0.0007710856734775007, -0.039703574031591415, 0.004601676948368549, 0.05292605608701706, -0.013249577954411507, -0.0034433549735695124, 0.06445056945085526, -0.007582154590636492, -0.019002802670001984, -0.008015678264200687, -0.004364593420177698, -0.018858294934034348, -0.035621222108602524, -0.02158588357269764, -0.055707838386297226, -0.0607294887304306, 0.04049836844205856, 0.023735439404845238, -0.06445056945085526, -0.05231189727783203, 0.03264074772596359, 0.04353303834795952, -0.026444965973496437, -0.04461684823036194, -0.000903739535715431, -0.0357837937772274, -0.037174686789512634, -0.00839952751994133, 0.02826937846839428, 0.049819134175777435, -0.039053287357091904, 0.01582362689077854, -0.003052731743082404, -0.00845371838659048, -0.0027117831632494926, -0.07658924162387848, -0.010368449613451958, 0.022452931851148605, 0.019526643678545952, 0.004506843630224466, 0.07890137284994125, -0.02122461423277855, -0.023554805666208267, -0.008711122907698154, -0.015019801445305347, -0.009952989406883717, 0.004994558170437813, -0.015525579452514648, 0.04754313454031944, 0.027510711923241615, -0.03692179545760155, 0.0381501130759716, 0.018343485891819, 0.0022432610858231783, -0.029425442218780518, 0.003863331163302064, -0.03558509796857834, 0.03433871641755104, -0.03406776115298271, 0.04010097309947014, 0.03312845900654793, 0.00036776158958673477, -0.023699313402175903, -0.006403510924428701, 0.04739862680435181, 0.04978301003575325, 0.010964545421302319, -0.05256478860974312, 0.009022718295454979, -0.08562099188566208, -0.03739144653081894, 0.018406707793474197, -0.0037955930456519127, 0.0005159387364983559, -0.03558509796857834, -0.024728933349251747, -0.030129918828606606, -0.011741275899112225, -0.03757208213210106, 0.034537412226200104, 0.03052731603384018, -0.0334174782037735, 0.005599685478955507, 0.017304833978414536, 0.06929159164428711, 0.05278154835104942, 0.009943957440555096, -0.02964220568537712, -0.041148655116558075, 0.045411642640829086, -0.03757208213210106, 0.08164702355861664, -0.007017670199275017, -0.02203747071325779, -0.03115953877568245, 0.005703550297766924, 0.03589217737317085, -0.033652301877737045, -0.006674463395029306, 0.04374979808926582, 0.012834117747843266, -0.004344271961599588, 0.056141361594200134, -0.02023112028837204, -0.05130034312605858, 0.005879669450223446, -0.030744079500436783, -0.051806122064590454, -0.0012113834964111447, 0.006728654261678457, 0.002926287241280079, -0.02655334584414959, 0.00774472625926137, -0.02792617306113243, -0.01869572326540947, 0.0009584944928064942, -0.00449555367231369, 0.02882934734225273, 0.05274542421102524, 0.013421181589365005, -0.01779254898428917, 0.018587343394756317, -0.07185661047697067, -0.03459160402417183, -0.08070772141218185, 0.00971816387027502, -0.019291818141937256, 0.05563558265566826, -0.002517600543797016, 0.06723234802484512, 0.1117769405245781, 0.02061045542359352, -0.044038813561201096, -0.04100414738059044, 0.00569451879709959, -0.016013294458389282, 0.052384153008461, 0.042774371802806854, 0.020032422617077827, -0.015137214213609695, 0.013312799856066704, -0.0016844214405864477, -0.008720154874026775, -0.07073666900396347, 0.04443621262907982, -0.04129316285252571, 0.041148655116558075, -0.0666181892156601, -0.007374424487352371, 0.05491304397583008, 0.011127116158604622, 0.012201895006000996, -0.004682962782680988, 0.010440703481435776, 0.005495820194482803, 0.016211992129683495, 0.015778468921780586, -0.05263704061508179, 0.0040642875246703625, -0.05393761396408081, 0.007925361394882202, -0.021748455241322517, 0.03386906534433365, 0.00485908193513751, -0.04573678597807884, -0.006159653887152672, 0.06296936422586441, 0.005437113810330629, -0.04461684823036194, 0.027709409594535828, 0.024981820955872536, 0.041690561920404434, -0.042774371802806854, 0.033110398799180984, -0.007216368801891804, 0.04284662380814552, 0.05932053551077843, 0.03901716321706772, -0.005915796384215355, -0.01851508766412735, 0.02203747071325779, -0.04288275167346001, -0.033561985939741135, -0.03941455855965614, 0.002260195557028055, 0.046928975731134415, -0.05097519978880882, -0.05588847026228905, 0.06213844195008278, -0.02801649086177349, -0.02944350615143776, -0.006724138278514147, -0.03908941522240639, 0.03339941427111626, 0.0415460504591465, -0.02176651917397976, -0.012816053815186024, -0.01016071904450655, 0.028702903538942337, 0.05296218395233154, -0.029678331688046455, -0.0014371772995218635, 0.026535283774137497, -0.017277738079428673, -0.010232972912490368, -0.060476601123809814, -0.04071513190865517, -0.03442903235554695, -0.053431835025548935, 0.008191797882318497, -0.04172668606042862, 0.04118478298187256, -0.018018342554569244, 0.020628517493605614, 0.0397397018969059, -0.02422315441071987, 0.009817512705922127, 0.03869201987981796, 0.06741298735141754, -0.00785310659557581, -0.05653875693678856, 0.025957250967621803, 0.036379892379045486, -0.010007179342210293, -0.06419768184423447, -0.0051345499232411385, -0.011723211966454983, 0.01570621319115162, 0.016510039567947388, 0.008151154965162277, -0.045122627168893814, 0.08359788358211517, 0.03775271773338318, -0.09494175761938095, 0.06314999610185623, -0.01959889940917492, -0.009952989406883717, 0.019743407145142555, 0.027781665325164795, 0.014739817008376122, 0.0015455583343282342, -0.012346402741968632, -0.032568491995334625, 0.01923762820661068, 0.014161785133183002, 0.03525995463132858, -0.022976772859692574, 0.02621014043688774, -0.029696395620703697, -0.009009171277284622, -0.0010759072611108422, -0.08374238759279251, -0.0281068067997694, -0.005450661294162273, 0.03605474904179573, -0.04194344952702522, -0.02882934734225273, 0.014243070967495441, -0.033381350338459015, -0.029678331688046455, 0.06712397187948227, 0.005857090000063181, -0.01427919790148735, 0.004093640949577093, 0.027312014251947403, 0.030057664960622787, -0.053178947418928146, 0.09226836264133453, -0.0011227595387026668, 0.005870637949556112, 0.029949285089969635, -0.041329290717840195, 0.0036578590516000986, 0.051264215260744095, -0.0031633705366402864, 0.03502512723207474, 0.023825757205486298, -0.05372085049748421, -0.015615896321833134, -0.01669970713555813, -0.03027442842721939, 0.0462786890566349, 0.004673930816352367, 0.06986962258815765, 0.03321877866983414, 0.02772747352719307, 0.0550936795771122, -0.0029082235414534807, 0.039053287357091904, 0.010521989315748215, -0.004696510266512632, -0.07362683117389679, 0.0023369654081761837, -0.05964567884802818, -0.02991315722465515, 0.006900257430970669, -0.01842477172613144, 0.0045339385978877544, 0.005170677322894335, 0.013032816350460052, 0.036723095923662186, 0.013782450929284096, 0.032297540456056595, -0.009144647046923637, 0.028124870732426643, 0.06961673498153687, 0.03063569776713848, 0.02919061668217182, -0.039161670953035355, -0.021459439769387245, 0.0025356640107929707, 0.028034552931785583, 0.003621731884777546, -0.026679791510105133, 0.017458373680710793, -0.051806122064590454, 0.015507515519857407, -0.07919038832187653, 0.05512980371713638, -0.025884997099637985, 0.0005086004384793341, 0.0037278549280017614, 0.03321877866983414, 0.05155323073267937, 0.06755749136209488, 0.0478682778775692, 0.0578032024204731, -0.024349600076675415, -0.022976772859692574, -0.019309882074594498, -0.08424817025661469, -0.006308677606284618, -0.012084482237696648, -0.005635812412947416, -0.04111252725124359, 0.0004340885207056999, 0.016491975635290146, 0.0031295015942305326, 0.0397397018969059, -0.027944235131144524, 0.02574048936367035, -0.002368576591834426, 0.008236956782639027, -0.03955906629562378, 0.04002871736884117, 0.001184288295917213, 0.011190338991582394, 0.0408596396446228, -0.007505384739488363, -0.02321159839630127, 0.02232648804783821, -0.0657150149345398, -0.024060582742094994, 0.003226592903956771, -0.03330909460783005, -0.044761355966329575, -0.02052013762295246, 0.06513698399066925, -0.0569000281393528, -0.014360482804477215, -0.007284106686711311, -0.07261527329683304, 0.04017322510480881, -0.02899191901087761, 0.017666103318333626, 0.0052519626915454865, 0.045158751308918, -0.05964567884802818, 0.022543249651789665, 0.02077302522957325, -0.01934600993990898, -0.026517219841480255, -0.007532479707151651, -0.044147197157144547, -0.02095366083085537, 0.007053797133266926, 0.033002015203237534, 0.05382923409342766, -0.021206550300121307, -0.000043006653868360445, -0.0041794427670538425, 0.046676088124513626, 0.00707186060026288, -0.015290753915905952, 0.048915959894657135, 0.06943609565496445, -0.01476691197603941, -0.02187489904463291, -0.007478289306163788, 0.020809153094887733, -0.017313865944743156, -0.013502467423677444, 0.04342465475201607, 0.004177184775471687, -0.03025636449456215, -0.00916271097958088, 0.01241865660995245, 0.01251800637692213, -0.049819134175777435, -0.041148655116558075, 0.01724161207675934, -0.02718556858599186, -0.0030391840264201164, -0.007040249649435282, 0.013023784384131432, -0.11813529580831528, -0.03343554213643074, 0.0007998744258657098, 0.051011327654123306, 0.036379892379045486, -0.05476853623986244, -0.10635789483785629, -0.025614043697714806, -0.008196313865482807, -0.04678446799516678, -0.003666890785098076, 0.009456242434680462, -0.04302725940942764, 0.09017299860715866, -0.020122740417718887, 0.02574048936367035, 0.04082351177930832, -0.00257630692794919, -0.06340289115905762, 0.02819712460041046, 0.014035340398550034, 0.04284662380814552, -0.0498913899064064, -0.02014080435037613, -0.003983002156019211, 0.02655334584414959, -0.04183506965637207, -0.04353303834795952, -0.0014021792449057102, 0.03264074772596359, 0.02052013762295246, -0.008331789635121822, -0.018045436590909958, 0.012084482237696648, -0.005726129747927189, -0.03168338164687157, 0.04743475466966629, -0.016744865104556084, -0.04526713490486145, 0.035368334501981735, 0.0275468397885561, -0.0002719403710216284, -0.01770223118364811, 0.0562136135995388, -0.01088325958698988, -0.04830180108547211, 0.043858181685209274, -0.010061370208859444, 0.03778884559869766, 0.012951530516147614, 0.011768370866775513, -0.017187420278787613, 0.017639009281992912, 0.03786109760403633, -0.03619925677776337, -0.022254232317209244, -0.017738357186317444, -0.005671939346939325, 0.006746717728674412, -0.038258496671915054, -0.006688011344522238, 0.028431950137019157, 0.0993492528796196, -0.016600357368588448, -0.0029217712581157684, 0.04129316285252571, 0.015751373022794724, 0.035169634968042374, -0.04468910023570061, 0.02817906066775322, -0.0541905015707016, -0.06824390590190887, 0.0005819834186695516, 0.0023143859580159187, 0.01346633955836296, -0.029858967289328575, 0.00844468642026186, 0.022001344710588455, -0.07442162185907364, 0.02276001125574112, -0.05816447362303734, -0.030310554429888725, -0.06416155397891998, 0.04985526204109192, -0.04118478298187256, -0.014794006943702698, -0.06744911521673203, -0.028323570266366005, 0.05137259513139725, -0.053540218621492386, -0.01708807237446308, -0.03000347502529621, -0.013529562391340733, 0.024421853944659233, 0.004800375550985336, 0.01205738727003336, 0.03045506216585636, -0.04136541858315468, 0.0535040907561779, -0.022561313584446907, -0.011542577296495438, -0.012147704139351845, 0.03840300440788269, 0.006593178026378155, 0.07456613332033157, 0.030581507831811905, 0.003734628902748227, -0.0408596396446228, -0.07781755924224854, 0.015941038727760315, -0.005464209243655205, 0.03908941522240639, 0.04407494142651558, -0.01184062473475933, 0.03079826943576336, 0.0016189413145184517, -0.03679535165429115, -0.018271232023835182, 0.02765521965920925, 0.026083694770932198, 0.017133230343461037, -0.051444850862026215, 0.014830133877694607, 0.05321507528424263, -0.020158866420388222, -0.05245640501379967, 0.010874227620661259, -0.007130566984415054, 0.000308208487695083, -0.018569279462099075, 0.018984738737344742, -0.09067877382040024, 0.0016257150564342737 ]
7,439
pathlib
is_mount
Check if this path is a POSIX mount point
def is_mount(self): """ Check if this path is a POSIX mount point """ # Need to exist and be a dir if not self.exists() or not self.is_dir(): return False try: parent_dev = self.parent.stat().st_dev except OSError: return False dev = self.stat().st_dev if dev != parent_dev: return True ino = self.stat().st_ino parent_ino = self.parent.stat().st_ino return ino == parent_ino
(self)
[ 0.08025059849023819, 0.013398482464253902, 0.06558942794799805, 0.06639614701271057, 0.04643872007727623, 0.03386449068784714, 0.03047979436814785, 0.03612679988145828, -0.06071406602859497, -0.016318440437316895, 0.03456598147749901, -0.008637110702693462, 0.030883152037858963, -0.03735440969467163, 0.015029449947178364, -0.010417144745588303, -0.01591508276760578, -0.026621591299772263, 0.011486918665468693, -0.013775533996522427, 0.012188410386443138, 0.025288758799433708, 0.051559604704380035, -0.059416308999061584, -0.03267195448279381, 0.08607297390699387, 0.020395858213305473, -0.004932360257953405, 0.027270471677184105, -0.007286740001291037, -0.014731315895915031, 0.025060774758458138, 0.052050650119781494, -0.01643243245780468, 0.04696483910083771, 0.025095848366618156, -0.009171998128294945, 0.006949147675186396, -0.01999250054359436, -0.021868988871574402, -0.021746227517724037, 0.003095329971984029, -0.037003662437200546, 0.033952176570892334, -0.013065273873507977, 0.017581123858690262, -0.005410251207649708, 0.04528125748038292, -0.002262309193611145, 0.014547174796462059, 0.028989125043153763, 0.013933369889855385, -0.04363275319337845, 0.007093830034136772, -0.043211858719587326, 0.024639880284667015, 0.05590885132551193, 0.03335590660572052, -0.0929475873708725, -0.020308170467615128, -0.0027029335033148527, 0.035372696816921234, 0.005248031113296747, -0.04843796789646149, 0.00637918571010232, -0.0533834844827652, -0.04219469800591469, -0.05362900346517563, -0.03686336427927017, 0.0647476390004158, -0.07302523404359818, 0.005765381269156933, -0.01717776618897915, 0.003678444540128112, 0.05355885624885559, -0.007703250739723444, 0.016344746574759483, 0.03051486797630787, 0.06127525866031647, -0.023412270471453667, -0.07702373713254929, -0.02211451157927513, -0.007229743991047144, 0.02713017351925373, 0.020834289491176605, 0.06018794700503349, 0.04671931639313698, 0.04977080225944519, -0.04363275319337845, 0.01567832939326763, -0.005068274214863777, 0.029638005420565605, 0.012565461918711662, 0.008045227266848087, 0.009277221746742725, 0.00654140580445528, -0.016835790127515793, -0.008496812544763088, -0.04310663789510727, -0.046543944627046585, -0.02283353917300701, 0.03816112130880356, 0.009952406398952007, -0.03026934713125229, 0.011872739531099796, 0.03186523914337158, -0.0219566747546196, 0.008474891074001789, -0.050858113914728165, -0.012854826636612415, -0.05815362185239792, -0.03139173239469528, 0.012258559465408325, 0.03816112130880356, -0.009812108241021633, -0.024973087012767792, 0.026007788255810738, -0.01740575022995472, -0.0047876774333417416, -0.08109238743782043, 0.0273581575602293, 0.06506331264972687, 0.018659666180610657, -0.03025180846452713, 0.039178285747766495, 0.03291747719049454, 0.029848452657461166, 0.01787048950791359, -0.05099841207265854, 0.04493051394820213, 0.010259308852255344, 0.02812979742884636, 0.0266917422413826, 0.035372696816921234, -0.039213359355926514, 0.03717903420329094, 0.007317430339753628, 0.017931869253516197, -0.045632004737854004, 0.011311545968055725, 0.029602929949760437, -0.04457976669073105, -0.02905927412211895, -0.005041968077421188, -0.05422527343034744, 0.11090576648712158, -0.07032449543476105, 0.014082436449825764, -0.0002334650489501655, 0.03325068578124046, -0.019571606069803238, -0.050367068499326706, 0.04173872992396355, 0.01346863154321909, 0.0006976549630053341, 0.0013975020265206695, -0.047736477106809616, -0.005335717462003231, 0.026007788255810738, -0.020623842254281044, -0.057066310197114944, -0.052717067301273346, 0.013363407924771309, -0.02860330417752266, -0.007444575894623995, -0.003053678898140788, -0.07113121449947357, -0.04924468323588371, 0.01284605823457241, 0.024587268009781837, 0.026533905416727066, 0.08410879969596863, 0.03451336920261383, 0.0026503214612603188, -0.001154172234237194, -0.024902937933802605, 0.014792696572840214, 0.010662666521966457, -0.023763015866279602, -0.043211858719587326, 0.026551442220807076, -0.04454469308257103, 0.023517493158578873, 0.027007412165403366, 0.012214715592563152, 0.06071406602859497, -0.004417202435433865, -0.032286133617162704, 0.0734461322426796, 0.05783795192837715, -0.06516853719949722, 0.07772523164749146, -0.03812604770064354, 0.0006461392040364444, 0.013907063752412796, 0.03184770047664642, 0.04447454586625099, -0.007931235246360302, -0.046368569135665894, 0.019571606069803238, -0.024183910340070724, -0.027288008481264114, -0.01057498063892126, -0.020395858213305473, 0.006883382797241211, 0.0037858604919165373, -0.005256799980998039, 0.03140927106142044, -0.026972338557243347, 0.02407868579030037, -0.01743205636739731, -0.05738198384642601, -0.000469944323413074, 0.1005236953496933, 0.0528222881257534, -0.03211076185107231, 0.00915446039289236, 0.0600125752389431, -0.00439747329801321, 0.012723296880722046, 0.05236632004380226, 0.01618690975010395, 0.048192448914051056, 0.03161971643567085, -0.07204315066337585, -0.010732815600931644, 0.013801840133965015, 0.041808877140283585, -0.0037420173175632954, 0.0032290518283843994, -0.010697741061449051, -0.08186402916908264, -0.000041822302591754124, 0.0632394328713417, -0.007462113164365292, -0.03451336920261383, 0.03047979436814785, 0.03097083792090416, 0.028392856940627098, -0.027095098048448563, -0.02809472382068634, -0.014897920191287994, 0.008900170214474201, -0.024639880284667015, 0.009487668983638287, -0.05738198384642601, -0.00714205764234066, -0.011995499953627586, -0.009899795055389404, -0.021518243476748466, -0.008167988620698452, 0.043667830526828766, -0.019010411575436592, -0.06818494945764542, 0.019834663718938828, -0.03216337412595749, -0.10157593339681625, 0.03707381337881088, -0.0070368340238928795, 0.019010411575436592, -0.009373676963150501, 0.007992615923285484, 0.005068274214863777, 0.005449709948152304, -0.0016704259905964136, -0.040125299245119095, 0.05008647218346596, 0.002230522921308875, -0.030637629330158234, 0.0013152960455045104, 0.07898791134357452, -0.016002768650650978, -0.03686336427927017, 0.010154085233807564, 0.017563587054610252, -0.019624216482043266, 0.010399607941508293, -0.003172055585309863, 0.002499062567949295, 0.018694741651415825, -0.029445094987750053, 0.0297256913036108, -0.012644379399716854, -0.0019367734203115106, -0.04549170657992363, -0.014529637061059475, 0.008606420829892159, -0.0013701000716537237, -0.040160372853279114, 0.04594767466187477, -0.011644754558801651, -0.009312296286225319, -0.024938013404607773, -0.03207568824291229, 0.0008165796170942485, 0.056540194898843765, -0.021342869848012924, -0.0628536120057106, -0.03851186856627464, -0.08172372728586197, -0.01666918583214283, 0.005142807494848967, -0.03197046369314194, 0.052717067301273346, -0.020185410976409912, 0.030532406643033028, -0.0031172516755759716, 0.011820127256214619, 0.021395482122898102, 0.013644004240632057, 0.004132221918553114, 0.0371088869869709, -0.023973463103175163, -0.002959416015073657, 0.03661784157156944, 0.08817745000123978, -0.019150709733366966, -0.018238771706819534, -0.04100216180086136, 0.05429542064666748, -0.02667420357465744, 0.09056251496076584, 0.009347370825707912, 0.05780287832021713, -0.007821626961231232, 0.023640254512429237, 0.05643497034907341, -0.0029506473802030087, -0.011074792593717575, 0.1062057688832283, -0.06979838013648987, 0.0047262972220778465, 0.012048112228512764, -0.03402232378721237, -0.014819002710282803, -0.01132908370345831, -0.037249185144901276, -0.07653269171714783, -0.02593763917684555, -0.00032909802393987775, 0.04198424890637398, 0.012582998722791672, 0.025832414627075195, -0.06429167091846466, -0.015424038283526897, 0.03161971643567085, 0.05134915933012962, 0.034373071044683456, 0.040826790034770966, 0.04668424278497696, -0.025867488235235214, 0.04626334831118584, -0.04566707834601402, -0.05096333846449852, -0.027305545285344124, -0.021325333043932915, -0.026779428124427795, 0.037494707852602005, 0.016520118340849876, 0.04229992255568504, 0.08144313097000122, -0.022465256974101067, -0.006409876048564911, -0.03809097409248352, -0.05675064027309418, -0.060643915086984634, -0.0014534021029248834, -0.040896937251091, 0.004375551361590624, 0.032040610909461975, -0.01010147389024496, -0.054435718804597855, 0.017774034291505814, -0.06460734456777573, 0.053243182599544525, -0.009207072667777538, 0.06692226231098175, -0.048718564212322235, -0.006383570376783609, 0.0202555600553751, -0.02402607537806034, 0.005664541851729155, 0.03565329313278198, 0.0273581575602293, -0.0399499237537384, -0.004515849985182285, -0.013617698103189468, -0.045596931129693985, -0.004752602893859148, -0.0025034467689692974, 0.004564077127724886, -0.0014939571265131235, 0.00306244776584208, 0.02478017844259739, -0.05461109057068825, 0.003338659880682826, 0.06145063042640686, -0.01367907878011465, 0.00785231776535511, 0.0009946926729753613, 0.033478669822216034, -0.023499956354498863, -0.03781037777662277, 0.06239764392375946, 0.01667795330286026, 0.00208035996183753, 0.030549943447113037, -0.044614844024181366, -0.04885886237025261, -0.03479396551847458, -0.0012210331624373794, -0.03837157040834427, 0.00999625027179718, 0.03135665878653526, 0.01464362908154726, 0.03851186856627464, -0.049665577709674835, 0.031812626868486404, 0.03756485506892204, 0.0029287259094417095, -0.028883900493383408, -0.03693351149559021, -0.055593181401491165, 0.000607228372246027, 0.061766304075717926, -0.02214958518743515, -0.024464506655931473, -0.0077865528874099255, 0.008203063160181046, 0.012898669578135014, 0.0009744151611812413, 0.047490958124399185, -0.0033956558909267187, 0.025288758799433708, 0.003945888020098209, -0.05099841207265854, -0.005462863016873598, -0.0202555600553751, -0.057522282004356384, -0.02288615144789219, 0.002088032430037856, 0.035688366740942, -0.024657417088747025, 0.011013411916792393, 0.053488705307245255, -0.0031676713842898607, -0.022780926898121834, -0.002015691250562668, 0.0477014034986496, -0.003145749680697918, -0.005041968077421188, -0.01972944103181362, 0.0287786778062582, 0.0005225561908446252, -0.04885886237025261, -0.052261095494031906, -0.04142305627465248, 0.021062273532152176, -0.013328333385288715, 0.011285239830613136, -0.06544913351535797, 0.05096333846449852, -0.007212206721305847, -0.05969690531492233, 0.010706509463489056, 0.00834336131811142, 0.001625486765988171, 0.053664080798625946, 0.02334212139248848, 0.019852202385663986, 0.017344370484352112, -0.032040610909461975, -0.030409645289182663, 0.019676828756928444, 0.009934869594871998, 0.010443450883030891, -0.02616562321782112, -0.005484784487634897, -0.02690218947827816, -0.013424788601696491, -0.07021927088499069, -0.045105885714292526, -0.022710777819156647, 0.022026823833584785, -0.011916582472622395, -0.04938498139381409, -0.04328200966119766, 0.02169361710548401, -0.021027199923992157, -0.0552775077521801, 0.02881375141441822, 0.0014939571265131235, 0.013424788601696491, 0.0008324728114530444, 0.06383570283651352, 0.024604804813861847, -0.009969944134354591, 0.019817126914858818, 0.012547924183309078, -0.01837906986474991, 0.011355388909578323, 0.03837157040834427, 0.031532030552625656, 0.04531633481383324, -0.005712768994271755, 0.05120886117219925, -0.017931869253516197, -0.034618593752384186, -0.004222100134938955, -0.003358389250934124, -0.005945138167589903, -0.0027906198520213366, 0.04587752744555473, 0.07926850765943527, -0.003803397761657834, 0.05383945256471634, 0.030883152037858963, -0.03451336920261383, 0.03174247965216637, -0.005401482339948416, 0.01321434136480093, -0.044895440340042114, -0.033496204763650894, -0.07491926103830338, -0.02926972135901451, 0.03361896798014641, -0.011942888610064983, 0.038897689431905746, 0.009171998128294945, 0.007606795523315668, 0.0233771950006485, 0.027726441621780396, 0.008847557939589024, 0.02002757415175438, 0.04191410169005394, 0.07576104998588562, -0.03886261582374573, -0.008474891074001789, -0.06387078016996384, -0.055137209594249725, 0.012828520499169827, -0.04738573357462883, 0.05594392493367195, -0.001154172234237194, 0.0480872243642807, 0.008830021135509014, 0.018764890730381012, -0.08593267947435379, 0.05166482925415039, 0.005046352744102478, 0.051314081996679306, 0.0011366349644958973, 0.02288615144789219, -0.022447720170021057, 0.032058149576187134, 0.017572354525327682, 0.046999912708997726, -0.03170740231871605, -0.030848076567053795, -0.011600911617279053, -0.03191785141825676, -0.013424788601696491, 0.0499812513589859, 0.02546413242816925, 0.0013843490742146969, -0.0660804733633995, 0.0068702297285199165, -0.01488038245588541, 0.03328575938940048, -0.021290259435772896, -0.017914332449436188, 0.01955406740307808, 0.017738958820700645, -0.013372176326811314, 0.02718278579413891, 0.03430292010307312, 0.020062649622559547, 0.05759242922067642, -0.04531633481383324, -0.05639989674091339, -0.008132914081215858, -0.03602157533168793, -0.03714396059513092, 0.013240646570920944, -0.02383316494524479, -0.05029692128300667, -0.015257433988153934, 0.029357407242059708, -0.0700438991189003, -0.06232749670743942, -0.010706509463489056, -0.032040610909461975, 0.0897207260131836, -0.00915446039289236, 0.001364619703963399, -0.012547924183309078, 0.025323834270238876, -0.04682454094290733, 0.01813354901969433, 0.016581498086452484, -0.005033199675381184, -0.007497187703847885, 0.022956300526857376, -0.02884882688522339, 0.02144809439778328, -0.018642129376530647, -0.0011163575109094381, 0.021974213421344757, -0.07302523404359818, -0.026305921375751495, 0.033969711512327194, 0.06218719854950905, -0.03502194955945015, 0.013302027247846127, 0.07172747701406479, 0.020658915862441063, -0.01761619932949543, -0.016967318952083588, 0.04566707834601402, 0.014959300868213177, 0.00565138878300786, -0.007804090157151222, 0.04198424890637398, -0.02979584038257599, -0.04791185259819031, -0.012819752097129822, 0.019887275993824005, 0.030076436698436737, -0.0007667079917155206, -0.0619066022336483, 0.041563354432582855, -0.03854694217443466, -0.0021527011413127184, -0.017563587054610252, -0.038476794958114624, -0.06523868441581726, -0.039423808455467224, -0.049911100417375565, 0.03146188333630562, 0.06695733964443207, -0.02716524712741375, -0.052296172827482224, 0.011285239830613136, -0.02572719007730484, 0.0017898987280204892, -0.0880371481180191, 0.02955031767487526, 0.007085061632096767, 0.022763390094041824, 0.019010411575436592, 0.0022053129505366087, 0.06404615193605423, 0.0019948657136410475, -0.07309538871049881, 0.04128275811672211, -0.015125904232263565, -0.0053094117902219296, -0.047280509024858475, -0.020097723230719566, -0.011180016212165356, -0.005221725441515446, -0.02214958518743515, -0.05692601203918457, 0.03239135816693306, 0.04721035808324814, -0.03759992867708206, -0.004748218692839146, -0.009549049660563469, -0.03384695202112198, 0.006418644916266203, 0.004013845231384039, 0.036337245255708694, -0.03791560232639313, -0.005690847523510456, -0.030129048973321915, -0.019939888268709183, 0.0011070407927036285, -0.018712278455495834, 0.03149695694446564, 0.004149759188294411, -0.002639360725879669, 0.046579018235206604, -0.014257809147238731, 0.014748852699995041, 0.0006247656419873238, 0.024850327521562576, 0.05099841207265854, -0.0109783373773098, 0.009689347818493843, -0.0490342378616333, 0.020571229979395866, -0.04138798266649246, 0.039879776537418365, 0.0804610475897789, -0.07498941570520401, -0.029182035475969315, 0.05720660835504532, 0.09442071616649628, -0.048017073422670364, -0.004800830502063036, 0.049139462411403656, 0.019466381520032883, -0.007308661937713623, -0.008830021135509014, 0.0123988576233387, -0.011863970197737217, -0.06765882670879364, -0.007102598901838064, 0.01932608336210251, 0.0133458711206913, 0.026814501732587814, -0.009610429406166077, 0.06120511144399643, -0.06786927580833435, 0.055417805910110474, -0.03903798758983612, 0.005712768994271755, -0.026849577203392982, 0.06979838013648987, -0.03735440969467163, -0.032005537301301956, -0.04794692620635033, 0.05029692128300667, 0.010969568975269794, -0.01664287969470024, -0.02977830357849598, -0.001412847195751965, 0.0011958233080804348, 0.004338284954428673, 0.017256684601306915, -0.08572223037481308, 0.020851826295256615, -0.016809483990073204, 0.032496582716703415, -0.0059626754373312, 0.013521243818104267, -0.000629149959422648, 0.026761891320347786, -0.05885511264204979, 0.032987624406814575, 0.04317678511142731, -0.002194352215155959, -0.016800714656710625, -0.04117753356695175, -0.043492455035448074, 0.03139173239469528, -0.01275837142020464, 0.030321957543492317, -0.018291383981704712, 0.0024179525207728148, 0.05927601084113121, -0.060117799788713455, -0.04710513725876808, -0.008786177262663841, 0.03949395567178726, 0.01644119992852211, -0.0609595887362957, 0.016335977241396904, 0.0480872243642807, -0.01616060361266136, -0.0262182354927063, -0.036091722548007965, -0.05829392001032829, 0.05236632004380226, -0.0008954973891377449, 0.010311921127140522, -0.06678196787834167, 0.020921975374221802 ]
7,440
pathlib
is_relative_to
Return True if the path is relative to another path or False.
def is_relative_to(self, *other): """Return True if the path is relative to another path or False. """ try: self.relative_to(*other) return True except ValueError: return False
(self, *other)
[ 0.007534189615398645, -0.014067880809307098, -0.003603969933465123, 0.057419922202825546, -0.042769141495227814, -0.048998333513736725, 0.05004233121871948, 0.062117915600538254, 0.012388782575726509, 0.0029231959488242865, 0.06037791818380356, -0.04489193856716156, 0.07012190669775009, 0.0308675579726696, -0.08658228069543839, 0.007821288891136646, 0.04854593425989151, 0.005929041653871536, 0.0017769725527614355, -0.009456886909902096, -0.013980880379676819, 0.023663967847824097, 0.011318684555590153, -0.0038062448147684336, -0.002438171533867717, 0.10391265898942947, 0.008156239055097103, 0.010822785086929798, -0.0026665462646633387, 0.011962483637034893, -0.011205584742128849, -0.005546242464333773, 0.044822338968515396, 0.017617475241422653, 0.01978377252817154, 0.015981877222657204, -0.03262495622038841, 0.06702470779418945, -0.07033070176839828, -0.045344337821006775, -0.05129512771964073, 0.014267980121076107, 0.033181753009557724, 0.018182974308729172, 0.00999628659337759, -0.03135475516319275, -0.09312467277050018, 0.00702089024707675, -0.03883674740791321, 0.032311756163835526, 0.041168343275785446, -0.003912819549441338, 0.00210104719735682, -0.012797682546079159, -0.0554015226662159, 0.046597134321928024, 0.020323172211647034, 0.08999267220497131, -0.04189914092421532, -0.0028383710887283087, 0.015894878655672073, -0.0018835474038496614, 0.009230687282979488, -0.06660711020231247, 0.0008857675129547715, -0.0610739141702652, -0.03758394718170166, -0.060203917324543, -0.013058681972324848, 0.09395986795425415, -0.10293825715780258, 0.07377589493989944, -0.0414467416703701, 0.013041282072663307, 0.022672168910503387, -0.015729578211903572, 0.02811836078763008, 0.06866030395030975, 0.052060727030038834, -0.007455889601260424, -0.06987830251455307, -0.05223472788929939, -0.004571843892335892, -0.03521754965186119, -0.010039785876870155, 0.027613762766122818, -0.014615979976952076, -0.023507367819547653, 0.04015914350748062, 0.009195887483656406, -0.05000752955675125, -0.024916766211390495, 0.0016943226801231503, -0.03908034786581993, 0.03189415484666824, 0.020236171782016754, 0.028448959812521935, -0.03185935690999031, -0.02867516130208969, -0.016347277909517288, -0.008443338796496391, 0.011031584814190865, 0.0431867390871048, -0.01750437542796135, 0.013276182115077972, -0.0042673442512750626, -0.021297570317983627, -0.037479549646377563, -0.008208438754081726, -0.029771359637379646, -0.08985347300767899, -0.07760389149188995, -0.023959767073392868, 0.027126561850309372, -0.012545382604002953, -0.03138955682516098, -0.02747456170618534, -0.02141937054693699, 0.0031102458015084267, -0.012754182331264019, 0.06037791818380356, 0.07739509642124176, 0.011249084025621414, -0.015964478254318237, 0.08484227955341339, 0.01693887636065483, 0.0012506232596933842, 0.02352476678788662, -0.022080568596720695, -0.07133989781141281, 0.017991574481129646, -0.011040284298360348, -0.06375351548194885, 0.01509447954595089, -0.0004861118213739246, 0.06737270951271057, -0.0025338714476674795, 0.048058733344078064, -0.00034935888834297657, 0.02609996311366558, 0.0650063082575798, -0.015581678599119186, 0.04541393741965294, 0.0199055727571249, -0.05835951864719391, 0.06559790670871735, -0.03509575128555298, 0.024499166756868362, -0.004532693885266781, 0.07941348850727081, -0.002351171802729368, -0.05296552553772926, 0.007816939614713192, -0.010309485718607903, -0.026952562853693962, -0.047014735639095306, -0.027370162308216095, -0.006977390497922897, 0.03608755022287369, -0.008182338438928127, -0.006964340340346098, -0.03253795579075813, 0.03319915384054184, 0.02460356615483761, -0.010370385833084583, 0.010422585532069206, -0.011353484354913235, -0.040681142359972, -0.01094458531588316, 0.040820345282554626, 0.03761874884366989, -0.021488970145583153, 0.01599927805364132, -0.013163081370294094, -0.0017008476424962282, -0.04374353960156441, 0.004854593425989151, 0.01987077295780182, -0.005976891610771418, 0.047501932829618454, 0.04743233323097229, -0.02183697000145912, 0.026726363226771355, -0.002318546874448657, 0.03831474855542183, 0.024586165323853493, -0.005002493038773537, -0.01408528070896864, 0.04903313145041466, 0.03387775272130966, -0.06709430366754532, 0.020444972440600395, 0.023576967418193817, 0.05251312628388405, 0.0015768727753311396, -0.032102957367897034, 0.02703956328332424, -0.014233180321753025, -0.002425121609121561, 0.08247588574886322, -0.004624043591320515, -0.01754787564277649, 0.003001495962962508, 0.011797184124588966, 0.01646907813847065, 0.0365399494767189, -0.018252573907375336, 0.016825776547193527, -0.005228692665696144, 0.018217774108052254, -0.03629634901881218, -0.09228947013616562, 0.016155878081917763, -0.010187685489654541, 0.02206316962838173, 0.027457162737846375, -0.0016725726891309023, -0.006246591452509165, -0.02042757160961628, 0.06465831398963928, 0.10043266415596008, 0.003875844646245241, 0.04965953156352043, -0.001879197428934276, 0.05129512771964073, -0.007412389852106571, -0.015146679244935513, 0.015425078570842743, -0.02493416517972946, -0.01509447954595089, 0.02735276147723198, -0.0399155430495739, 0.021575970575213432, 0.019679373130202293, 0.010848885402083397, 0.008504237979650497, -0.015425078570842743, 0.013632881455123425, 0.014885679818689823, 0.023315967991948128, -0.026221763342618942, 0.013363181613385677, -0.0080431392416358, -0.03462595120072365, -0.009474286809563637, -0.09806626290082932, 0.019244372844696045, -0.01246708258986473, -0.03462595120072365, -0.02154117077589035, -0.0035060951486229897, 0.05491432547569275, -0.08734788000583649, -0.04346514120697975, -0.013928680680692196, 0.035495951771736145, -0.017269475385546684, -0.02463836595416069, 0.02703956328332424, 0.043499939143657684, -0.0031341707799583673, 0.007203590124845505, 0.04631873592734337, 0.001175585901364684, -0.05021633207798004, -0.04102914407849312, -0.013902580365538597, -0.028153160586953163, -0.028535960242152214, -0.0007046990212984383, 0.010109386406838894, 0.021123571321368217, -0.0060160416178405285, 0.04958993196487427, 0.0008901175460778177, 0.012893382459878922, 0.012797682546079159, -0.022654768079519272, -0.006933890283107758, 0.020131772384047508, -0.014120080508291721, 0.017513075843453407, -0.01594707742333412, -0.03340795263648033, -0.031319957226514816, -0.029945358633995056, -0.004234719090163708, -0.015625178813934326, -0.04182954132556915, 0.0576983205974102, 0.07266230136156082, -0.0010195298818871379, -0.002786171156913042, -0.0030623958446085453, -0.001956409774720669, 0.0635795146226883, 0.0650063082575798, -0.06841670721769333, 0.0029231959488242865, -0.012893382459878922, 0.0019052973948419094, -0.008808737620711327, -0.05808112025260925, -0.006120441481471062, -0.018652774393558502, -0.023890167474746704, 0.034034352749586105, 0.0248123649507761, -0.0034952200949192047, 0.005955141969025135, -0.04162074252963066, 0.004650143440812826, -0.0235595665872097, 0.03198115527629852, 0.053209125995635986, 0.0032907703425735235, 0.047153934836387634, -0.001192985801026225, -0.04123794287443161, 0.043151941150426865, -0.04652753472328186, 0.09437747299671173, -0.01926177367568016, -0.009378586895763874, -0.056445520371198654, -0.009978885762393475, -0.013424081727862358, 0.03387775272130966, 0.012867282144725323, 0.05564512312412262, -0.0021510720252990723, 0.014528979547321796, 0.06573710590600967, 0.0048632933758199215, -0.015703478828072548, 0.023246368393301964, -0.01373728085309267, 0.02314196713268757, 0.07026110589504242, 0.038941144943237305, 0.047571536153554916, 0.011831983923912048, -0.010109386406838894, -0.039532747119665146, 0.039323944598436356, -0.007490689866244793, -0.02425556629896164, 0.044265538454055786, 0.07287109643220901, 0.02872736006975174, -0.062291912734508514, 0.04266474023461342, -0.026134764775633812, -0.06542391330003738, -0.0633707121014595, 0.0569327212870121, -0.0023011467419564724, 0.012058183550834656, 0.05380072444677353, 0.00995278637856245, 0.1213822290301323, -0.009700486436486244, -0.01934877410531044, -0.026900362223386765, -0.044404737651348114, 0.0038236447144299746, 0.018200375139713287, -0.018287375569343567, -0.04638833552598953, -0.006529340986162424, 0.008182338438928127, -0.03177235648036003, 0.04029834270477295, -0.08024869114160538, 0.014259280636906624, 0.0024947214405983686, 0.009143687784671783, -0.0042673442512750626, -0.0000878834689501673, 0.02498636581003666, 0.04760633409023285, 0.05651512369513512, -0.033268753439188004, 0.03349495306611061, -0.005246092565357685, 0.003210295457392931, 0.047536734491586685, -0.010091986507177353, -0.018931174650788307, 0.03170275688171387, 0.014163580723106861, -0.04764113575220108, 0.009300286881625652, -0.04196874052286148, -0.041133541613817215, -0.08512068539857864, 0.06027351692318916, 0.019209573045372963, -0.025229964405298233, -0.03869754821062088, 0.05675872042775154, 0.007068740203976631, -0.05303512513637543, 0.04468313977122307, 0.04148154333233833, 0.04430034011602402, 0.0005665867356583476, 0.041690342128276825, -0.04433513805270195, 0.015233678743243217, -0.03433015197515488, -0.050285931676626205, -0.02296796813607216, 0.03744474798440933, -0.03170275688171387, -0.001771535025909543, -0.04196874052286148, -0.026430564001202583, 0.053000327199697495, -0.01537287887185812, -0.0059638419188559055, -0.03744474798440933, -0.0128150824457407, 0.00924808718264103, 0.047536734491586685, -0.00870433822274208, -0.015503378584980965, -0.025142965838313103, 0.025316964834928513, 0.042595140635967255, -0.03460855036973953, -0.021523769944906235, 0.03699234873056412, -0.002860120963305235, 0.01724337600171566, -0.014033081009984016, -0.0010940234642475843, -0.018652774393558502, 0.007542889565229416, 0.006403191015124321, -0.012971682474017143, -0.004993793088942766, -0.018374374136328697, 0.012701982632279396, -0.04684073477983475, -0.04997273162007332, -0.029562558978796005, 0.019766373559832573, -0.010178986005485058, 0.0034277953673154116, -0.048824332654476166, 0.025943364948034286, -0.00017807788390200585, -0.018983373418450356, -0.06984350085258484, -0.03526975214481354, -0.029701758176088333, 0.02507336623966694, -0.027961760759353638, 0.044822338968515396, 0.0029449458234012127, 0.018844174221158028, 0.030258558690547943, -0.05505352467298508, 0.021784769371151924, 0.026221763342618942, 0.03509575128555298, -0.003392995335161686, -0.0077125392854213715, 0.01681707613170147, 0.05675872042775154, -0.07203590124845505, -0.03212035447359085, 0.01128388475626707, 0.025003764778375626, 0.017904575914144516, -0.0027731212321668863, 0.055714722722768784, -0.008073588833212852, -0.013702481053769588, -0.04781513288617134, -0.05306992679834366, -0.011014184914529324, 0.03013675846159458, 0.027022162452340126, -0.05895111709833145, -0.05306992679834366, 0.011570983566343784, -0.008834837935864925, -0.03161575645208359, 0.04795433208346367, -0.017321676015853882, -0.01345888152718544, 0.028744760900735855, 0.009883186779916286, -0.021019170060753822, -0.02536916546523571, 0.024794965982437134, -0.014824779704213142, -0.013345781713724136, 0.0187049750238657, 0.027613762766122818, 0.018948573619127274, 0.04008954390883446, -0.00009318502998212352, 0.06966950744390488, 0.0012190857669338584, -0.00989188626408577, -0.06117831543087959, 0.0015692603774368763, 0.007534189615398645, 0.026308763772249222, 0.023663967847824097, 0.06921710073947906, 0.0706787034869194, 0.03031075745820999, -0.015155378729104996, 0.03300775587558746, 0.0668507069349289, -0.027752961963415146, 0.026343563571572304, -0.042247142642736435, 0.025595365092158318, -0.06479751318693161, -0.020705971866846085, -0.03185935690999031, -0.03834954649209976, 0.013293582014739513, -0.018931174650788307, -0.019366173073649406, 0.019574973732233047, 0.008969687856733799, 0.031754955649375916, 0.01740867644548416, 0.04339554160833359, 0.10760144889354706, -0.04920713230967522, 0.013937381096184254, -0.04691033437848091, 0.06152631342411041, 0.01578177884221077, -0.024864565581083298, 0.023072367534041405, 0.005385292693972588, 0.04193394258618355, 0.007168790325522423, -0.03196375444531441, -0.03372115269303322, 0.02472536638379097, 0.027839962393045425, 0.01650387793779373, -0.0016399477608501911, -0.0022706969175487757, 0.10781025141477585, 0.05223472788929939, 0.018182974308729172, -0.023750966414809227, 0.033477552235126495, -0.010970684699714184, 0.02954516001045704, -0.011396984569728374, -0.026726363226771355, 0.0065771909430623055, -0.0025599715299904346, -0.06855590641498566, -0.020705971866846085, -0.020740771666169167, 0.007464589551091194, 0.03615714982151985, 0.005198242608457804, -0.025734564289450645, 0.059925518929958344, -0.06378830969333649, -0.01767837628722191, 0.0046457936987280846, 0.034504152834415436, 0.017147677019238472, -0.012754182331264019, -0.03316435590386391, 0.003893244545906782, 0.003503920044749975, -0.04979873076081276, 0.012893382459878922, 0.010057185776531696, 0.002218496985733509, -0.020096972584724426, 0.011553583666682243, 0.06034311652183533, -0.013345781713724136, -0.048615533858537674, -0.03299035504460335, -0.03354715183377266, 0.043708737939596176, -0.01926177367568016, 0.02902315929532051, -0.028483761474490166, 0.036922749131917953, -0.06876470148563385, 0.06392750889062881, -0.008117089048027992, -0.013015181757509708, -0.05912511795759201, 0.00797353871166706, 0.005920341704040766, -0.0038301697932183743, 0.01214518304914236, -0.007181840017437935, -0.021210569888353348, -0.06584151089191437, 0.009656986221671104, 0.04743233323097229, 0.018774574622511864, 0.033477552235126495, -0.030902357771992683, -0.014067880809307098, -0.019505372270941734, -0.04527473822236061, -0.024968964979052544, -0.026952562853693962, 0.05004233121871948, -0.011127284727990627, -0.018252573907375336, -0.01719987578690052, 0.013319681398570538, -0.09075827151536942, 0.022585168480873108, 0.035234950482845306, -0.00961348693817854, -0.031111156567931175, -0.06037791818380356, 0.036365948617458344, -0.02502116560935974, 0.028222760185599327, -0.017252076417207718, -0.025438765063881874, -0.10272945463657379, 0.019018173217773438, -0.025177765637636185, 0.014720379374921322, 0.023402968421578407, -0.05950791761279106, -0.032102957367897034, -0.1017550602555275, -0.01047478523105383, -0.037862349301576614, 0.01023118570446968, -0.020566770806908607, -0.04795433208346367, 0.02846636064350605, -0.02081037126481533, 0.007943089120090008, 0.05905551835894585, -0.008051838725805283, -0.0013767731143161654, 0.009126286953687668, 0.035878751426935196, -0.017304275184869766, -0.0035300201270729303, 0.0171215757727623, 0.014528979547321796, 0.02510816603899002, -0.02589116431772709, 0.041725143790245056, 0.016155878081917763, 0.00041297756251879036, 0.04249074310064316, -0.0033690703567117453, -0.05623672157526016, 0.0301019586622715, -0.013902580365538597, -0.04356953874230385, 0.017321676015853882, -0.0472235344350338, -0.037653546780347824, 0.018931174650788307, 0.006002991925925016, -0.022811368107795715, -0.04781513288617134, -0.027596361935138702, -0.04837193340063095, -0.0415511429309845, 0.04468313977122307, -0.03398215398192406, 0.02636096440255642, 0.04249074310064316, 0.03925434499979019, 0.001378948101773858, 0.015024879015982151, 0.05588872358202934, 0.006285741459578276, 0.01776537485420704, -0.033947352319955826, -0.01049218513071537, 0.04158594086766243, 0.026221763342618942, 0.01382428128272295, -0.04510073736310005, -0.01861797459423542, -0.03453895077109337, -0.00904798787087202, 0.06458871066570282, -0.008839188143610954, -0.018600573763251305, 0.00700784008949995, -0.005228692665696144, -0.027126561850309372, -0.00952648650854826, 0.006498890928924084, 0.014676880091428757, 0.03100675716996193, -0.057941921055316925, 0.004989442881196737, 0.03873234614729881, -0.12026863545179367, 0.018513575196266174, -0.0684863030910492, 0.02098437026143074, 0.00006096788274589926, 0.033738553524017334, -0.04492673650383949, -0.027544161304831505, -0.038558345288038254, 0.02834456041455269, -0.03481735289096832, -0.013598081655800343, -0.02618696354329586, -0.01987077295780182, -0.06089991703629494, 0.004341294057667255, 0.0022119719069451094, -0.04196874052286148, 0.01905297301709652, -0.012049483135342598, 0.05352232605218887, 0.025647563859820366, -0.0049154930748045444, -0.03220735490322113, 0.03800154849886894, 0.013450181111693382, -0.0029819209594279528, 0.04008954390883446, -0.005811592098325491, -0.0035343701019883156, -0.08470308035612106, 0.037166349589824677, -0.0005578867276199162, 0.017138976603746414, 0.0069382404908537865, -0.026517562568187714, -0.014476779848337173, 0.04064634442329407, -0.014163580723106861, 0.02794436179101467, -0.027230963110923767, 0.047710735350847244, 0.02089737169444561, -0.046423137187957764, 0.009857086464762688, 0.017573975026607513, -0.01621677726507187, -0.061595916748046875, -0.0009956049034371972, 0.005359192378818989, 0.015703478828072548, 0.06180471554398537, 0.03109375759959221, -0.034591153264045715, 0.0652151107788086 ]
7,441
pathlib
is_reserved
Return True if the path contains one of the special names reserved by the system, if any.
def is_reserved(self): """Return True if the path contains one of the special names reserved by the system, if any.""" return self._flavour.is_reserved(self._parts)
(self)
[ 0.06812002509832382, 0.027363747358322144, -0.002891381038352847, 0.04070667549967766, 0.036209430545568466, -0.03614329546689987, 0.032092466950416565, 0.007188150659203529, 0.06127495691180229, -0.02513165958225727, 0.017030006274580956, 0.003056720830500126, 0.037432946264743805, -0.010127066634595394, -0.044608697295188904, -0.009143294766545296, 0.00040146586252376437, 0.04464176297187805, -0.002341625979170203, -0.04358359053730965, -0.061572566628456116, 0.024552971124649048, 0.04374893009662628, -0.021229639649391174, 0.0014787584077566862, 0.08399265259504318, 0.04146723821759224, 0.009961727075278759, 0.007184017449617386, -0.06259767711162567, -0.02493325248360634, -0.0046005817130208015, 0.037333741784095764, 0.014847519807517529, 0.06964115053415298, 0.03726760670542717, 0.002998851938173175, -0.009407838806509972, 0.01246662624180317, -0.04675811529159546, -0.004468310158699751, 0.05522351711988449, -0.04398040473461151, -0.013615737669169903, -0.008845683187246323, -0.03042253479361534, 0.013946417719125748, 0.025991426780819893, 0.00928383320569992, 0.0980796068906784, 0.05667850747704506, -0.01610410399734974, 0.007560165598988533, -0.01813778281211853, 0.012590630911290646, 0.02460257150232792, 0.035647276788949966, 0.08994489163160324, -0.016947336494922638, -0.00890355184674263, 0.015260869637131691, 0.03683772310614586, -0.009837722405791283, -0.05813349783420563, 0.04639436677098274, 0.003048453712835908, 0.02324678562581539, -0.06084506958723068, -0.00808925274759531, 0.06749173253774643, -0.011019902303814888, -0.02678505890071392, -0.009672381915152073, 0.043385181576013565, 0.030058788135647774, -0.03462217003107071, -0.06590446829795837, -0.017311085015535355, 0.024784445762634277, -0.0137893445789814, 0.005695958621799946, -0.07288181036710739, -0.030951622873544693, -0.023825474083423615, -0.03647397458553314, 0.03723453730344772, -0.012202082201838493, -0.006795468740165234, 0.044112678617239, 0.018782608211040497, 0.01431016530841589, 0.07043478637933731, -0.031860992312431335, 0.02579301968216896, 0.039747703820466995, -0.050891611725091934, 0.03706919774413109, -0.01671585999429226, 0.01969197764992714, -0.05158603936433792, -0.01077189203351736, -0.0005776561447419226, -0.009093692526221275, 0.014177893288433552, 0.03716840222477913, 0.009391304105520248, -0.016947336494922638, -0.01997305639088154, -0.005212339572608471, -0.05466135963797569, -0.028471525758504868, -0.017873240634799004, -0.024569503962993622, 0.01242529135197401, -0.021031230688095093, -0.012094611302018166, 0.039846908301115036, -0.0380612388253212, -0.011788732372224331, -0.010995101183652878, 0.03070361353456974, 0.025015922263264656, -0.05433068051934242, 0.005848897621035576, 0.05413227155804634, 0.01841886155307293, -0.004931261762976646, 0.05304102972149849, -0.02824004925787449, 0.023511329665780067, 0.01381414569914341, 0.040078382939100266, -0.05426454544067383, -0.033563993871212006, -0.025247398763895035, -0.0023374923039227724, -0.000788464501965791, 0.01334292721003294, 0.013673607259988785, -0.0007326622726395726, -0.02579301968216896, 0.009854256175458431, -0.023709736764431, -0.008076852187514305, -0.007117881439626217, 0.06719411909580231, -0.0012958511942997575, -0.007101347204297781, 0.011978873051702976, -0.009209430776536465, 0.007919779978692532, 0.0011945805745199323, -0.05413227155804634, -0.013037048280239105, -0.03630863502621651, 0.019592775031924248, -0.009407838806509972, -0.01724494807422161, -0.02126270718872547, -0.004410441033542156, 0.046262096613645554, -0.08214084804058075, -0.039317820221185684, 0.002042980631813407, -0.007940446957945824, -0.006902939639985561, -0.027694428339600563, -0.04391426965594292, 0.032191671431064606, 0.0020047458820044994, 0.02961236983537674, 0.06891365349292755, -0.04609675705432892, 0.031232701614499092, -0.0061299754306674, 0.0628291517496109, -0.013673607259988785, -0.03019106015563011, -0.013425596989691257, -0.017790568992495537, 0.05400000140070915, -0.052313532680273056, -0.042624618858098984, 0.024834048002958298, 0.04011145234107971, -0.01564115099608898, -0.02380894124507904, -0.030620943754911423, 0.05280955508351326, 0.07837110012769699, 0.005452082026749849, 0.06335823982954025, 0.036440905183553696, 0.039317820221185684, 0.0069649419747292995, -0.039185550063848495, 0.028802204877138138, 0.0015304271364584565, -0.023560931906104088, -0.020138395950198174, -0.003095989115536213, -0.018997550010681152, -0.04761788249015808, 0.038524188101291656, 0.019989589229226112, 0.0036478107795119286, 0.03928475081920624, -0.05148683488368988, 0.023792406544089317, 0.003759415354579687, -0.016294244676828384, -0.03488671034574509, 0.05214819312095642, 0.04672504588961601, 0.03310104086995125, 0.03491977974772453, -0.023825474083423615, 0.01097856741398573, 0.012507961131632328, 0.01889834739267826, -0.03627556562423706, 0.028355786576867104, 0.03878873214125633, -0.0036126761697232723, -0.029728109017014503, -0.03902021050453186, 0.005567820277065039, 0.07850337028503418, -0.01344213169068098, 0.027132272720336914, -0.010614819824695587, 0.0048775263130664825, -0.04222780093550682, -0.0053735459223389626, -0.009936925955116749, 0.05449602007865906, -0.022734232246875763, 0.014698714017868042, 0.037995100021362305, -0.020667484030127525, -0.011400183662772179, -0.008126454427838326, -0.02546234056353569, -0.023709736764431, 0.061804041266441345, -0.0617048405110836, -0.01569901965558529, 0.0424262098968029, 0.03315064311027527, -0.017592161893844604, 0.017823638394474983, 0.031348440796136856, -0.026553582400083542, -0.01729455031454563, -0.009556644596159458, -0.022320881485939026, -0.07195591181516647, -0.02078322134912014, -0.002263089409098029, 0.019195958971977234, -0.08346356451511383, 0.07837110012769699, -0.022403551265597343, 0.05400000140070915, 0.01752602681517601, 0.04533619061112404, 0.061572566628456116, 0.007646969053894281, -0.05823270231485367, -0.0562155544757843, 0.0008912852499634027, 0.023577464744448662, -0.06385425478219986, -0.003990890923887491, 0.0036209430545568466, -0.02342865988612175, 0.0583980418741703, -0.0320097990334034, -0.038524188101291656, 0.052776485681533813, 0.023362522944808006, 0.05700918659567833, 0.015864361077547073, 0.05955541878938675, -0.02045254223048687, -0.017592161893844604, 0.00473698740825057, -0.08352970331907272, -0.04563380405306816, -0.01053215004503727, -0.03439069166779518, 0.012979179620742798, 0.07850337028503418, -0.00895315408706665, 0.07473362237215042, 0.030505206435918808, -0.015541947446763515, -0.03584568202495575, -0.009391304105520248, -0.005836497526615858, 0.02324678562581539, 0.02739681676030159, -0.029695039615035057, -0.024834048002958298, -0.03139803931117058, -0.007171616889536381, 0.0043029701337218285, 0.02323025092482567, -0.019427433609962463, 0.03197672963142395, -0.024007348343729973, -0.00347213726490736, 0.02030373550951481, 0.009631047025322914, 0.03465523570775986, 0.015285670757293701, 0.018501531332731247, 0.028636865317821503, -0.030951622873544693, 0.05211512744426727, 0.03017452545464039, 0.04784935712814331, -0.018733007833361626, -0.024023883044719696, -0.03371280059218407, 0.017228413373231888, 0.013946417719125748, -0.00674173329025507, -0.01813778281211853, -0.0045881811529397964, -0.029976118355989456, -0.059819962829351425, -0.01808818243443966, -0.02490018494427204, -0.01861726865172386, -0.006687997840344906, -0.003598208772018552, -0.05525658279657364, 0.02739681676030159, 0.0011325781233608723, 0.0015355939976871014, 0.007808175403624773, -0.028471525758504868, 0.003986757714301348, 0.006464788690209389, -0.005311543121933937, -0.0004239417612552643, 0.0220563393086195, -0.008006582967936993, -0.013673607259988785, -0.035779546946287155, 0.008887018077075481, -0.023792406544089317, 0.004460042808204889, 0.029513167217373848, -0.002312691416591406, -0.000231475816690363, 0.05482669919729233, 0.012789038941264153, 0.038755666464567184, 0.08214084804058075, -0.022932639345526695, -0.011896203272044659, -0.032753828912973404, -0.03159644827246666, -0.07440294325351715, 0.01775750145316124, 0.004956062417477369, -0.04490630701184273, -0.0694427415728569, -0.04054133594036102, -0.01831965707242489, -0.016781996935606003, -0.05082547664642334, 0.018336191773414612, -0.03670544922351837, 0.03660624846816063, -0.04480710253119469, 0.009556644596159458, 0.030339865013957024, -0.0076304348185658455, 0.026619719341397285, 0.016591856256127357, -0.0032799297478049994, 0.004154164344072342, 0.0024697643239051104, 0.011036436073482037, -0.016922535374760628, -0.0029306490905582905, -0.022320881485939026, 0.04457562789320946, -0.01757562719285488, 0.02215554192662239, 0.06385425478219986, -0.004654317162930965, -0.016567055135965347, -0.01289650984108448, -0.01908022165298462, -0.0016017300076782703, 0.060580529272556305, -0.00984598882496357, -0.016451315954327583, -0.09126760810613632, 0.04556766897439957, -0.0012121478794142604, -0.03888793662190437, 0.031860992312431335, 0.01818738505244255, -0.0007879477925598621, 0.01587262749671936, -0.05879485607147217, -0.02805817499756813, -0.022370483726263046, -0.06259767711162567, -0.005803429521620274, 0.018766075372695923, -0.0027363747358322144, -0.049469687044620514, 0.0655737891793251, 0.007130281999707222, -0.009333435446023941, -0.007981781847774982, 0.020436007529497147, 0.05889406055212021, 0.022122474387288094, -0.030505206435918808, -0.03994611278176308, -0.016368646174669266, 0.048907533288002014, 0.0005611222004517913, -0.05866258591413498, -0.04077281057834625, 0.004654317162930965, -0.040640540421009064, -0.0016626990400254726, -0.04169871658086777, -0.008754746057093143, -0.04083894565701485, -0.06263074278831482, -0.005452082026749849, -0.024123087525367737, 0.03683772310614586, -0.01594703085720539, -0.004786589182913303, 0.05945621803402901, -0.022932639345526695, -0.011755664832890034, 0.046262096613645554, 0.07222045212984085, -0.02172565832734108, -0.06884752213954926, 0.03485364466905594, -0.0761224776506424, -0.06183711066842079, -0.010639620944857597, 0.018055113032460213, 0.002932715928182006, -0.020006123930215836, -0.05323943868279457, -0.00074402941390872, -0.05502510815858841, 0.09192896634340286, -0.06692957878112793, 0.020865891128778458, 0.058596450835466385, 0.011548989452421665, -0.062233924865722656, 0.010598285123705864, 0.024437231943011284, 0.027132272720336914, -0.03650704398751259, -0.007502296473830938, 0.044112678617239, -0.03859032690525055, 0.018964482471346855, 0.002936849370598793, -0.060812003910541534, 0.08306674659252167, 0.0286699328571558, 0.0029389162082225084, -0.006014237646013498, -0.043815065175294876, -0.006237446330487728, 0.016186773777008057, 0.03432455658912659, -0.014591243118047714, -0.05300796031951904, 0.007266687229275703, -0.033183712512254715, -0.03235701099038124, 0.04675811529159546, -0.02668585442006588, -0.05036252364516258, 0.04457562789320946, 0.03258848935365677, 0.04070667549967766, -0.002494565211236477, 0.0358126163482666, 0.0064565218053758144, 0.006497856695204973, 0.01803858019411564, -0.010044396854937077, 0.009713716804981232, -0.003871019696816802, 0.005051132757216692, -0.05757134035229683, -0.0008628674549981952, -0.02154378406703472, 0.0402437224984169, 0.0119954077526927, -0.007828842848539352, -0.033696264028549194, 0.08782853931188583, 0.01922902651131153, 0.0011976807145401835, 0.06871525198221207, -0.04374893009662628, -0.010490814223885536, 0.044939376413822174, 0.07804042100906372, -0.017079608514904976, -0.047419473528862, 0.0308524202555418, -0.08081812411546707, -0.03146417811512947, -0.04586527869105339, -0.050097979605197906, -0.03829271346330643, 0.015269136987626553, 0.0294800978153944, 0.009110226295888424, 0.030571341514587402, 0.029579302296042442, 0.0017030006274580956, 0.06378812342882156, 0.0634574443101883, -0.002616503508761525, -0.02427189238369465, 0.0020078460220247507, 0.006460655480623245, 0.049105942249298096, -0.016492651775479317, 0.07632088661193848, 0.031811390072107315, 0.01719534583389759, 0.008680342696607113, 0.041070424020290375, -0.08009063452482224, 0.0294800978153944, -0.0006789268227294087, -0.02986038103699684, -0.02007226087152958, -0.015451010316610336, -0.044707901775836945, 0.09893937408924103, -0.03156338259577751, 0.027181874960660934, 0.0064565218053758144, -0.03505205363035202, 0.041301898658275604, -0.017774036154150963, 0.011813533492386341, 0.041169628500938416, -0.016781996935606003, -0.06306062638759613, -0.0330679751932621, -0.016476117074489594, -0.04374893009662628, 0.04708879441022873, 0.020287202671170235, -0.014252296648919582, -0.006005970761179924, 0.057042255997657776, 0.013872015289962292, -0.03495284914970398, -0.019146356731653214, 0.0628291517496109, 0.03488671034574509, -0.04219473525881767, -0.040739744901657104, 0.01997305639088154, -0.011243111453950405, -0.062233924865722656, -0.035018984228372574, -0.04781629145145416, -0.03164605051279068, 0.021180037409067154, 0.04341825097799301, -0.011284446343779564, -0.012954378500580788, 0.022750765085220337, -0.026520514860749245, 0.06706184893846512, -0.08187630027532578, 0.0020491809118539095, 0.015781691297888756, 0.03371280059218407, -0.04113655909895897, -0.01889834739267826, 0.03164605051279068, 0.028967544436454773, -0.0048899264074862, 0.058497246354818344, 0.005042865872383118, 0.041070424020290375, 0.02956276759505272, 0.011755664832890034, 0.029397428035736084, -0.04050826653838158, -0.034688305109739304, -0.006543325260281563, 0.023676669225096703, -0.025991426780819893, -0.009688916616141796, 0.012772505171597004, 0.07433680444955826, 0.010623086243867874, -0.04030986130237579, 0.0022816902492195368, 0.043715860694646835, -0.08147948980331421, -0.043815065175294876, 0.005220606457442045, -0.02574341744184494, -0.009688916616141796, -0.028686467558145523, 0.023180648684501648, 0.032753828912973404, 0.009614513255655766, -0.061572566628456116, -0.043285977095365524, -0.04288916289806366, -0.004323637578636408, -0.00714268209412694, 0.012722902931272984, -0.050230253487825394, -0.003420468419790268, -0.042293939739465714, -0.003751148236915469, 0.03070361353456974, -0.04034292697906494, 0.02172565832734108, -0.07757746428251266, 0.04457562789320946, -0.093714639544487, 0.0369369275867939, -0.004654317162930965, -0.013781078159809113, 0.03290263190865517, -0.012838641181588173, 0.002920315368101001, 0.05912553519010544, 0.02678505890071392, -0.021080832928419113, 0.0046005817130208015, 0.039516229182481766, -0.025280466303229332, -0.022072872146964073, -0.018451929092407227, -0.031910594552755356, 0.01828658953309059, -0.04484017193317413, -0.0017691366374492645, -0.007436160463839769, 0.0490398034453392, 0.005224739667028189, 0.03273729234933853, -0.020898958668112755, -0.00563395582139492, 0.017410287633538246, -0.032819963991642, -0.01584782637655735, 0.025677282363176346, -0.06630128622055054, -0.04384813457727432, 0.0004479677008930594, -0.0047989897429943085, -0.002630970673635602, 0.08511696755886078, 0.02281690202653408, -0.05638089403510094, -0.02650398015975952, -0.004608848597854376, -0.04474096745252609, 0.04067360609769821, 0.07466748356819153, -0.0805535838007927, 0.026553582400083542, 0.015575015917420387, -0.015128597617149353, -0.03849112242460251, -0.04447642341256142, 0.02900061197578907, 0.10852909088134766, -0.023560931906104088, 0.00793631374835968, 0.08253765851259232, 0.04642743617296219, -0.015955297276377678, -0.03151378035545349, 0.02361053228378296, 0.03488671034574509, -0.008721677586436272, -0.01719534583389759, -0.0294800978153944, -0.008266993798315525, -0.027942437678575516, -0.01645958423614502, -0.03650704398751259, 0.025611145421862602, -0.02187446504831314, -0.03139803931117058, 0.05681077763438225, -0.05323943868279457, 0.032803431153297424, -0.09027557075023651, 0.01615370437502861, -0.05261114612221718, 0.07975995540618896, -0.030290264636278152, 0.01643478311598301, 0.030240662395954132, -0.018435394391417503, 0.01813778281211853, -0.02890140935778618, 0.007878445088863373, -0.04487324133515358, -0.04447642341256142, 0.022122474387288094, 0.04252541437745094, -0.03465523570775986, 0.035878751426935196, -0.07301408797502518, 0.08862216770648956, 0.026388242840766907, -0.018253521993756294, -0.015045927837491035, 0.0749320313334465, -0.010821494273841381, 0.057174526154994965, 0.022783834487199783, 0.0418640561401844, 0.017311085015535355, -0.05148683488368988, -0.06957501918077469, 0.026388242840766907, -0.010060930624604225, 0.03723453730344772, 0.0013103184755891562, 0.0129461120814085, 0.06851684302091599, -0.0012410824419930577, -0.015434476546943188, 0.0035279393196105957, 0.0025669015012681484, -0.01615370437502861, 0.020865891128778458, -0.007130281999707222, 0.011367116123437881, 0.006109307985752821, -0.04391426965594292, -0.01088763028383255, -0.009730251505970955, 0.03518432378768921, 0.0012720836093649268, -0.013607471249997616, -0.005154470447450876, 0.015169932506978512 ]
7,442
pathlib
is_socket
Whether this path is a socket.
def is_socket(self): """ Whether this path is a socket. """ try: return S_ISSOCK(self.stat().st_mode) except OSError as e: if not _ignore_error(e): raise # Path doesn't exist or is a broken symlink # (see http://web.archive.org/web/20200623061726/https://bitbucket.org/pitrou/pathlib/issues/12/ ) return False except ValueError: # Non-encodable path return False
(self)
[ 0.044879250228405, 0.007180337328463793, 0.0034703537821769714, 0.03882003575563431, 0.022593671455979347, -0.0037827284540981054, 0.03214463219046593, 0.022747719660401344, 0.006760985124856234, -0.029868150129914284, 0.06137947738170624, 0.011356743983924389, 0.01181032881140709, -0.05775079503655434, 0.008104624226689339, 0.016679950058460236, -0.0036051457282155752, -0.017142092809081078, 0.00368858827278018, -0.026975475251674652, -0.03370222821831703, 0.014215185306966305, 0.0411478690803051, -0.0690818652510643, -0.02101896144449711, 0.09044315665960312, -0.013393597677350044, 0.007805086672306061, 0.035191357135772705, -0.027403386309742928, -0.04398919641971588, 0.000753657310269773, 0.059804767370224, -0.008909096010029316, 0.01927308738231659, 0.030826669186353683, -0.02498997002840042, 0.0158583614975214, -0.021001845598220825, -0.10571099817752838, -0.03628680855035782, 0.03871733695268631, -0.06072905287146568, 0.041969459503889084, 0.01961541548371315, 0.006808055564761162, -0.07038271427154541, 0.07407985627651215, -0.0018378754612058401, -0.013573319651186466, -0.016508786007761955, 0.016388971358537674, -0.020984729751944542, 0.013855740427970886, -0.013984113931655884, -0.01786954142153263, 0.029149260371923447, 0.04097670689225197, -0.08373352140188217, -0.032812174409627914, -0.013453505001962185, -0.007133267354220152, 0.003654355416074395, -0.030723970383405685, -0.031168997287750244, -0.06271455436944962, -0.030535690486431122, -0.057408466935157776, -0.04234601929783821, 0.038238078355789185, -0.010261292569339275, 0.05347169190645218, -0.020111791789531708, 0.04036051407456398, 0.034404002130031586, -0.008096066303551197, 0.0017758284229785204, 0.0638442412018776, 0.009790590964257717, 0.019546950235962868, -0.005853815004229546, -0.027557434514164925, -0.026085421442985535, -0.002993233734741807, -0.0014228023355826735, -0.02368912287056446, 0.05754539743065834, 0.05946243926882744, -0.03108341619372368, 0.013598994351923466, -0.02950870618224144, 0.04707014933228493, -0.0318194217979908, -0.06473429501056671, 0.018845176324248314, 0.01797224022448063, 0.009568077512085438, -0.039436228573322296, 0.011904468759894371, -0.09982295334339142, -0.04594046622514725, 0.0308095533400774, -0.021977480500936508, -0.018810944631695747, 0.010723436251282692, 0.04368110001087189, 0.009182958863675594, -0.005849536042660475, -0.08681447058916092, -0.06709636002779007, 0.003018908202648163, 0.005892327055335045, 0.029987964779138565, 0.05744269862771034, 0.016705624759197235, -0.03967585787177086, 0.0073343850672245026, -0.02663314715027809, -0.004933807533234358, -0.01209274958819151, -0.0023813217412680387, 0.08140568435192108, 0.002533229999244213, -0.0020603889133781195, 0.01632906310260296, 0.04409189522266388, 0.00402663741260767, -0.010526597499847412, 0.014300767332315445, 0.004805434495210648, -0.004454548005014658, 0.014215185306966305, 0.03115188144147396, 0.0653504878282547, -0.035122890025377274, 0.03522558882832527, -0.0784616619348526, 0.03984702378511429, -0.03012489713728428, -0.024835923686623573, 0.021446872502565384, -0.017886657267808914, -0.025280950590968132, -0.008596721105277538, -0.010552272200584412, 0.09776898473501205, -0.030672620981931686, -0.03525982052087784, 0.02290176786482334, -0.00005465887443278916, 0.018057821318507195, -0.028070926666259766, -0.0005188414361327887, 0.041010938584804535, -0.022747719660401344, 0.014121045358479023, -0.033034685999155045, -0.037450723350048065, 0.003091653110459447, -0.03532828763127327, -0.058366987854242325, -0.044228825718164444, 0.02475034072995186, -0.05747693404555321, -0.016705624759197235, -0.03380492702126503, -0.059154342859983444, -0.07757160812616348, 0.032076168805360794, 0.04696745052933693, 0.0010590783786028624, 0.07209435105323792, 0.03339413180947304, 0.011545023880898952, 0.04347570240497589, 0.008155973628163338, 0.010389666073024273, 0.028533069416880608, -0.0352940559387207, 0.003036024747416377, 0.03635527193546295, -0.035533685237169266, -0.015729987993836403, 0.00732154818251729, -0.012563451193273067, 0.059599369764328, -0.026427749544382095, -0.02702682465314865, 0.08736220002174377, 0.06671980023384094, -0.052821267396211624, 0.08154261857271194, 0.030090663582086563, 0.007107592653483152, 0.002205878496170044, 0.002856302307918668, 0.02283330261707306, 0.007899227552115917, -0.03652643784880638, 0.05816159024834633, 0.04097670689225197, 0.005995025392621756, -0.0465908907353878, 0.01875959523022175, -0.06966382265090942, -0.008797839283943176, 0.009277098812162876, 0.0178010743111372, -0.014959749765694141, 0.06250915676355362, -0.013530529104173183, -0.0948934257030487, -0.023928752169013023, 0.07195742428302765, 0.0705881118774414, 0.05025380477309227, -0.015943944454193115, 0.061242543160915375, -0.020984729751944542, 0.009217191487550735, 0.051075391471385956, 0.02832767181098461, 0.03306892141699791, -0.005075017921626568, -0.03322296962141991, -0.011801770888268948, 0.0021705757826566696, 0.007158942054957151, 0.019204622134566307, 0.03344548121094704, 0.017193442210555077, -0.04501618072390556, 0.01932443678379059, 0.07305287569761276, 0.014908400364220142, -0.00005094808875583112, 0.017338931560516357, 0.026581797748804092, 0.039881255477666855, -0.03498595952987671, -0.03594448044896126, -0.034797679632902145, -0.009610868990421295, -0.04224332049489021, 0.02346660941839218, -0.049603380262851715, 0.03683453053236008, 0.012726057320833206, -0.03608141094446182, -0.02170361764729023, 0.012229681015014648, 0.04190099239349365, -0.0522393099963665, -0.08845765143632889, -0.020950496196746826, -0.08099488914012909, -0.08113182336091995, -0.03464363142848015, 0.00032307239598594606, 0.03662913665175438, -0.08647214621305466, 0.03792998194694519, 0.003085234435275197, 0.01995774358510971, -0.0541563481092453, -0.062098365277051926, -0.01622636429965496, 0.030997833237051964, 0.019358668476343155, 0.008960445411503315, 0.02312428131699562, -0.027899762615561485, -0.020847797393798828, -0.006594100035727024, -0.0028755583334714174, -0.03154556080698967, 0.027283571660518646, -0.0011542884167283773, 0.03834077715873718, -0.0233467947691679, -0.004281244240701199, 0.06202990189194679, 0.01927308738231659, -0.003021047916263342, -0.03334278240799904, 0.004873900208622217, -0.014685886912047863, -0.004390361253172159, -0.03301757201552391, 0.025126902386546135, -0.0009296354837715626, -0.03413013741374016, -0.016799764707684517, 0.009859057143330574, 0.015165146440267563, 0.048405230045318604, 0.007099034730345011, -0.03147709369659424, 0.01769837737083435, -0.08626674860715866, -0.016654275357723236, 0.048405230045318604, -0.008459789678454399, 0.05025380477309227, 0.02764301560819149, 0.009550961665809155, -0.030347410589456558, -0.02459629252552986, -0.030450107529759407, 0.05340322479605675, -0.007971972227096558, -0.014420582912862301, -0.0007333315443247557, -0.014805701561272144, 0.07531224191188812, 0.0840073823928833, -0.03159691020846367, -0.024853039532899857, -0.07031424343585968, 0.08298039436340332, -0.026581797748804092, 0.05956513434648514, -0.007578294258564711, -0.03127169609069824, -0.034113023430109024, 0.03481479361653328, 0.05025380477309227, -0.03375357761979103, -0.008857746608555317, 0.07647615671157837, -0.017835307866334915, -0.008682303130626678, 0.0316653735935688, -0.04505041241645813, -0.005361718125641346, -0.00781792402267456, -0.05145195499062538, -0.053677089512348175, -0.013607552275061607, -0.03291487321257591, 0.010466690175235271, -0.018588431179523468, 0.030347410589456558, -0.028926746919751167, 0.021566687151789665, 0.01809205487370491, -0.03882003575563431, 0.049158353358507156, 0.03000508062541485, 0.03755342215299606, -0.016833998262882233, 0.034335535019636154, -0.07072503864765167, -0.024544943124055862, -0.05737423524260521, 0.04614586383104324, -0.016662834212183952, 0.033890508115291595, 0.04837099835276604, 0.04741247743368149, 0.0763392224907875, 0.008960445411503315, -0.009713567793369293, -0.028584418818354607, -0.006649728398770094, 0.002608114155009389, 0.0692872628569603, -0.0016592227621003985, 0.032760825008153915, -0.002558904467150569, -0.02057393454015255, -0.02651333250105381, -0.012683265842497349, -0.05453290790319443, 0.0012880105059593916, -0.01703939400613308, 0.04936375096440315, -0.035876013338565826, -0.004467385355383158, 0.01181888673454523, 0.016876788809895515, -0.002558904467150569, 0.058640848845243454, 0.0016870369436219335, 0.014300767332315445, -0.01127971988171339, -0.026410633698105812, -0.03868310526013374, 0.00026035678456537426, -0.023141397163271904, -0.0013468482065945864, -0.012032842263579369, 0.029491588473320007, 0.00400096271187067, -0.059804767370224, 0.004831109195947647, 0.030843785032629967, 0.04111363738775253, 0.0008520766859874129, 0.05484100431203842, -0.00397742772474885, 0.026034072041511536, 0.014223743230104446, 0.05648418143391609, -0.010843250900506973, 0.05538873001933098, 0.03577331453561783, 0.020813563838601112, -0.02182343415915966, -0.012820197269320488, 0.0004608060698956251, -0.037621889263391495, -0.05336899310350418, -0.01706506870687008, 0.00818592682480812, 0.0487133264541626, -0.019084805622696877, -0.006465726997703314, 0.05730576813220978, 0.015071006491780281, -0.002062528394162655, -0.01843438297510147, -0.011373859830200672, 0.04244871810078621, 0.019803695380687714, -0.016534460708498955, -0.04272257909178734, -0.02396298572421074, 0.029525822028517723, 0.04097670689225197, -0.017227675765752792, 0.006063491106033325, 0.022679254412651062, -0.0012270332081243396, 0.016149340197443962, -0.02933754026889801, -0.004362547304481268, -0.021173009648919106, -0.056107617914676666, -0.02459629252552986, -0.0012741034151986241, 0.024562060832977295, -0.04313337430357933, 0.046830520033836365, 0.04703591763973236, -0.02832767181098461, 0.016851114109158516, 0.0356021486222744, 0.05388248339295387, 0.016628600656986237, -0.035533685237169266, -0.027745714411139488, 0.008048995397984982, 0.012880104593932629, -0.061584874987602234, -0.015439009293913841, -0.011801770888268948, 0.04470808431506157, -0.013213874772191048, 0.0036757509224116802, -0.053334761410951614, 0.039025433361530304, 0.023261211812496185, -0.049158353358507156, 0.00450589694082737, -0.009114492684602737, 0.005254740361124277, 0.015901152044534683, 0.056792277842760086, 0.03036452643573284, 0.019427135586738586, -0.0015244310488924384, 0.00015164076467044652, 0.01153646595776081, 0.014625979587435722, -0.0018303870456293225, -0.0015961059834808111, 0.03974432498216629, -0.029183493927121162, 0.007090476341545582, -0.044742316007614136, -0.058640848845243454, -0.03594448044896126, 0.008267230354249477, 0.02177208475768566, -0.07086197286844254, -0.06350190937519073, -0.01265759114176035, -0.005087855271995068, 0.012905779294669628, 0.058709315955638885, 0.005122088361531496, -0.020933380350470543, -0.052718568593263626, 0.11331068724393845, 0.021053194999694824, -0.061071380972862244, 0.05443020910024643, -0.025144018232822418, -0.002631649374961853, -0.015173705294728279, -0.018468614667654037, 0.02781417965888977, 0.01995774358510971, 0.006987778004258871, 0.017818192020058632, 0.013171084225177765, -0.04070284217596054, 0.017783958464860916, -0.0009997058659791946, -0.006166189908981323, 0.054738305509090424, 0.0352940559387207, 0.07668155431747437, 0.02368912287056446, 0.01740739680826664, 0.04279104620218277, -0.01865689642727375, 0.021669385954737663, -0.017142092809081078, 0.03255542740225792, -0.04559813812375069, 0.00863095372915268, -0.034113023430109024, -0.03782728314399719, -0.010175710543990135, 0.032418496906757355, 0.027061058208346367, -0.006645449437201023, 0.003722820896655321, 0.049329519271850586, 0.05935974046587944, 0.04200369119644165, 0.028584418818354607, 0.06076328456401825, 0.0727105438709259, 0.00002702856363612227, -0.012221123091876507, -0.12104731053113937, -0.02160092070698738, -0.005340322386473417, 0.006422935985028744, -0.002817790489643812, -0.050904229283332825, -0.014052579179406166, -0.019307319074869156, 0.013453505001962185, -0.051246557384729385, 0.03019336238503456, -0.048028670251369476, -0.0005324810626916587, 0.019307319074869156, 0.007030569016933441, 0.005434462800621986, 0.04991147667169571, 0.02023160643875599, 0.051691584289073944, -0.03618410974740982, -0.03365087881684303, -0.013042710721492767, -0.07620229572057724, -0.03758765384554863, -0.013222433626651764, 0.010577946901321411, -0.020437004044651985, -0.017835307866334915, 0.02351795881986618, -0.04077130928635597, 0.03140862658619881, -0.002494717948138714, -0.005216228310018778, 0.000530074059497565, 0.035636384040117264, -0.030963601544499397, 0.04939798265695572, 0.020762216299772263, 0.006482843309640884, 0.041866760700941086, -0.0158583614975214, 0.016876788809895515, 0.02413414977490902, -0.03334278240799904, -0.06528201699256897, 0.027146639302372932, 0.006812334526330233, -0.034215718507766724, -0.03940199688076973, 0.024014335125684738, -0.06740445643663406, -0.0466935895383358, 0.0001370650716125965, -0.030484341084957123, 0.04686475172638893, -0.0486106276512146, 0.01560161542147398, 0.0024091359227895737, 0.046043165028095245, -0.042825277894735336, 0.028635768219828606, -0.00836137030273676, -0.0039966837503015995, -0.0035195634700357914, 0.02769436500966549, -0.042654115706682205, 0.013230991549789906, -0.023843171074986458, -0.020830681547522545, 0.05826428905129433, -0.0253151822835207, -0.008399882353842258, 0.0034553769510239363, 0.05449867621064186, -0.020676633343100548, 0.006157631520181894, 0.06004439666867256, 0.061927203088998795, 0.014112486504018307, 0.010064453817903996, 0.005340322386473417, 0.019769463688135147, 0.031066298484802246, 0.001449546660296619, 0.05432751029729843, -0.03448958322405815, -0.053437456488609314, 0.02538364939391613, 0.00403947476297617, 0.027968227863311768, -0.03868310526013374, -0.04080554097890854, 0.04713861644268036, -0.01983792893588543, 0.02894386276602745, -0.016756974160671234, -0.04754941165447235, -0.06497392058372498, -0.024408012628555298, 0.009063143283128738, 0.04063437879085541, 0.06278302520513535, -0.01080046035349369, -0.04583776742219925, 0.015986735001206398, -0.021669385954737663, -0.02928619273006916, 0.010398223996162415, 0.06199566647410393, -0.02889251336455345, 0.016363296657800674, 0.00822443887591362, 0.00019349575450178236, 0.009961755946278572, 0.01743307150900364, -0.05364285409450531, 0.06014709547162056, 0.008660907857120037, 0.029029445722699165, -0.04385226219892502, -0.003012489527463913, -0.040565911680459976, 0.0017148511251434684, -0.03435265272855759, -0.014600304886698723, 0.04210638999938965, -0.005340322386473417, 0.012614800594747066, -0.005276136100292206, -0.037724584341049194, 0.00212029623799026, -0.007449921220541, 0.006679682061076164, 0.0391281321644783, -0.04388649761676788, -0.018674012273550034, 0.0010285897878929973, 0.04131903499364853, -0.022199993953108788, -0.015053889714181423, 0.008365649729967117, -0.041798293590545654, -0.033086035400629044, 0.010261292569339275, -0.03601294383406639, 0.0015886175679042935, 0.01797224022448063, 0.021977480500936508, 0.07134123146533966, 0.0035709128715097904, 0.013855740427970886, -0.05295819789171219, 0.030142012983560562, 0.010577946901321411, 0.005716883577406406, 0.06993768364191055, -0.026752961799502373, -0.06418656557798386, 0.015610173344612122, 0.06870530545711517, -0.013111176900565624, -0.025914257392287254, 0.07811933010816574, 0.039538927376270294, 0.027043940499424934, -0.020077558234333992, -0.0027600224129855633, -0.022645020857453346, -0.10167152434587479, -0.005254740361124277, 0.033616647124290466, 0.05066459998488426, -0.0233981441706419, -0.04922682046890259, 0.03532828763127327, -0.06788371503353119, -0.019358668476343155, -0.03103206679224968, 0.01877671107649803, -0.028361905366182327, 0.030176246538758278, 0.0018432242795825005, -0.014916958287358284, -0.028413254767656326, -0.0051434836350381374, -0.0006172608118504286, -0.013684576377272606, -0.05710037052631378, -0.006114840507507324, 0.03305180370807648, 0.012691824696958065, 0.0026637425180524588, -0.025589045137166977, -0.009713567793369293, -0.038306545466184616, 0.06962958723306656, -0.01797224022448063, -0.010526597499847412, -0.0010344735346734524, 0.043715331703424454, -0.032024819403886795, 0.0615164078772068, 0.06719905883073807, 0.0045187342911958694, -0.01757856085896492, -0.04200369119644165, -0.0077237836085259914, -0.05747693404555321, -0.010244176723062992, 0.057066138833761215, -0.00396459037438035, -0.004116498399525881, 0.04012088477611542, -0.0372110940515995, -0.030313177034258842, -0.019872162491083145, -0.003622262040153146, -0.018793826922774315, -0.08914230763912201, 0.014471931383013725, 0.052205074578523636, 0.019923511892557144, -0.04190099239349365, 0.02266213856637478, -0.005947955418378115, 0.011776096187531948, -0.03488326072692871, -0.01990639418363571, -0.07914631813764572, 0.0010339386062696576 ]
7,443
pathlib
is_symlink
Whether this path is a symbolic link.
def is_symlink(self): """ Whether this path is a symbolic link. """ try: return S_ISLNK(self.lstat().st_mode) except OSError as e: if not _ignore_error(e): raise # Path doesn't exist return False except ValueError: # Non-encodable path return False
(self)
[ 0.04923790693283081, 0.01680511236190796, 0.010382776148617268, 0.02788364142179489, 0.03644675761461258, -0.004709713160991669, 0.005900521297007799, 0.011827802285552025, 0.013379866257309914, 0.020676353946328163, 0.024547595530748367, -0.011676163412630558, 0.09262435883283615, -0.03054177574813366, -0.023512884974479675, -0.0026782031636685133, -0.003438625717535615, 0.0135939447209239, 0.02106883004307747, 0.025778543204069138, -0.01695675030350685, 0.018464215099811554, 0.01566336303949356, -0.03628619760274887, -0.014815972186625004, 0.1016869843006134, 0.01180996187031269, 0.0045937541872262955, 0.0084649957716465, 0.014691093005239964, -0.020926110446453094, 0.00971378292888403, 0.058764372020959854, 0.01910644955933094, 0.019195647910237312, -0.00557494442909956, -0.03637539595365524, -0.0021385487634688616, -0.0759262815117836, -0.060691073536872864, -0.02324528805911541, 0.09669183194637299, -0.06311728805303574, 0.033859983086586, 0.012550314888358116, -0.024708153679966927, -0.10711029171943665, 0.003512214869260788, -0.03455573692917824, -0.044421155005693436, -0.0054010059684515, -0.003034999594092369, 0.001718197832815349, -0.007782622240483761, -0.010917970910668373, -0.031754884868860245, 0.04078183323144913, 0.043315086513757706, -0.05330538749694824, -0.022888490930199623, 0.019498925656080246, -0.002892281161621213, 0.005780102219432592, -0.013308507390320301, 0.0271878894418478, -0.06236801669001579, -0.02890051156282425, -0.053234029561281204, -0.015431446023285389, 0.036714352667331696, -0.03332478925585747, 0.0414954274892807, -0.04120998829603195, -0.012987390160560608, 0.016225317493081093, -0.029328666627407074, 0.03123752772808075, -0.0037463626358658075, 0.015386846847832203, -0.026866771280765533, -0.048774074763059616, -0.06490126997232437, -0.025082789361476898, 0.008625553920865059, -0.04181654378771782, 0.024387037381529808, 0.09112580865621567, -0.000299931998597458, -0.03218303993344307, 0.03603643923997879, -0.0210331492125988, -0.014093459583818913, 0.0030060100834816694, -0.06436607986688614, -0.018678294494748116, 0.032700393348932266, 0.010998249985277653, -0.06693501025438309, 0.04723984748125076, -0.05715879052877426, 0.019588124006986618, 0.008625553920865059, 0.01588636077940464, 0.03528716787695885, 0.005668603349477053, 0.029096748679876328, -0.053483787924051285, -0.011872401461005211, -0.05587432160973549, -0.0519852414727211, -0.05066509544849396, 0.0033583464100956917, 0.01258599478751421, 0.003476535202935338, 0.030184978619217873, -0.011310447007417679, 0.05344810709357262, -0.029988741502165794, -0.01072173286229372, -0.009276707656681538, 0.037820421159267426, 0.04841727763414383, 0.012068639509379864, -0.05469689518213272, 0.057372868061065674, 0.02627805806696415, 0.008772732689976692, 0.007595304399728775, 0.021818101406097412, 0.033859983086586, -0.005681983195245266, 0.037534985691308975, -0.017295707017183304, 0.09612096101045609, -0.05637383833527565, 0.019159968942403793, -0.036054279655218124, 0.0461694598197937, 0.0009354756912216544, -0.005048669409006834, 0.0245119147002697, -0.036964111030101776, -0.026474295184016228, -0.01715298928320408, -0.043279409408569336, 0.047453925013542175, -0.02652781456708908, 0.022906331345438957, 0.048024799674749374, -0.003840021789073944, 0.08798599988222122, -0.055196408182382584, 0.007653283420950174, 0.056766312569379807, -0.027491165325045586, 0.036999791860580444, -0.06293889135122299, -0.000006672511517535895, 0.009446186013519764, 0.019588124006986618, -0.017598984763026237, -0.05005853995680809, -0.009847581386566162, -0.038355618715286255, -0.024779513478279114, -0.015261967666447163, -0.009660263545811176, -0.05797941982746124, 0.013727743178606033, 0.03325342759490013, 0.02365560457110405, 0.013210387900471687, 0.03657163679599762, 0.021746743470430374, 0.0396757647395134, 0.03041689656674862, 0.041673824191093445, 0.04542018845677376, 0.00998138077557087, -0.014173738658428192, -0.006569514516741037, -0.04713280871510506, -0.011435326188802719, 0.013745582662522793, -0.003848941531032324, 0.04281557351350784, -0.04131702706217766, -0.037035468965768814, 0.0461694598197937, 0.055945683270692825, -0.040282316505908966, 0.03771338239312172, 0.00977622251957655, 0.014450255781412125, -0.03344966471195221, -0.042173340916633606, 0.013397706672549248, -0.010008140467107296, -0.07778162509202957, 0.05391194298863411, 0.01332634687423706, 0.0017215427942574024, -0.06108355149626732, 0.03171920403838158, -0.00813049916177988, -0.03717818856239319, -0.005244907457381487, 0.010935810394585133, 0.004497865214943886, 0.023352326825261116, -0.026509976014494896, -0.07928016781806946, 0.003454235615208745, 0.07371414452791214, 0.009107229299843311, 0.047703683376312256, -0.018143098801374435, 0.0705743357539177, -0.008687993511557579, 0.0135939447209239, 0.05252043530344963, 0.003538974793627858, 0.014378896914422512, 0.018116340041160583, 0.011016090400516987, -0.03041689656674862, 0.04806048050522804, 0.02738412655889988, 0.01996276155114174, -0.0013246068265289068, -0.005048669409006834, -0.01563660427927971, -0.005204767920076847, 0.023049049079418182, 0.034502215683460236, -0.01873181387782097, 0.02119370922446251, 0.019445406273007393, -0.022763613611459732, 0.00029547204030677676, -0.027598204091191292, -0.0019568055868148804, 0.0009181933128274977, 0.0013011919800192118, 0.0037173728924244642, -0.01230055745691061, 0.022478176280856133, 0.02046227641403675, -0.06718476861715317, -0.0810641497373581, -0.0052805873565375805, 0.018027139827609062, 0.00535194668918848, -0.04809616133570671, -0.016002319753170013, -0.07096680998802185, -0.05605272203683853, 0.0007565199630334973, 0.0110874492675066, 0.025600144639611244, -0.034413017332553864, -0.00009756152576301247, -0.008442696183919907, -0.01514600869268179, -0.0031464986968785524, -0.05776534229516983, 0.025939101353287697, 0.049059510231018066, 0.02242465689778328, 0.014673253521323204, 0.09198211878538132, -0.011729682795703411, -0.06500831246376038, 0.01832149736583233, -0.005182468332350254, 0.008625553920865059, 0.039176248013973236, -0.014254017733037472, 0.048845432698726654, -0.004901491105556488, -0.022656572982668877, 0.02378048188984394, 0.014789212495088577, -0.006788052152842283, -0.011105288751423359, -0.012371916323900223, -0.01623423770070076, 0.010070579126477242, -0.03414541855454445, 0.03227223828434944, 0.06818380206823349, 0.008451615460216999, 0.0014717853628098965, 0.02476167306303978, 0.10068795830011368, 0.06661389768123627, 0.01740274578332901, -0.031308889389038086, 0.005753342527896166, -0.05591000244021416, -0.029542746022343636, 0.009160748682916164, 0.016207478940486908, 0.009107229299843311, -0.06579326093196869, -0.004388596396893263, 0.0014405655674636364, 0.005588324274867773, 0.011390726082026958, 0.03803449869155884, 0.008103739470243454, 0.004013959784060717, 0.01645723544061184, 0.033271268010139465, 0.028115559369325638, 0.03262903541326523, 0.0005831391899846494, 0.006542754825204611, -0.054625533521175385, 0.07571220397949219, -0.030684493482112885, 0.07621172070503235, 0.008910991251468658, -0.026991650462150574, -0.058478936553001404, -0.008398096077144146, 0.052984271198511124, -0.029096748679876328, -0.013040909543633461, 0.03305719047784805, 0.027687404304742813, -0.0315764844417572, 0.029346507042646408, -0.013397706672549248, -0.08213453739881516, 0.0077157230116426945, -0.0339135006070137, -0.06326001137495041, -0.013308507390320301, -0.02242465689778328, 0.005904980935156345, -0.006542754825204611, 0.026545654982328415, -0.02210353873670101, 0.005035289563238621, 0.029542746022343636, -0.029542746022343636, 0.029043229296803474, -0.011908081360161304, 0.05023694038391113, 0.00020822416990995407, 0.06375952064990997, -0.052092280238866806, -0.0026135339867323637, -0.03509093075990677, 0.0007464850787073374, -0.027366286143660545, -0.009972460567951202, 0.01730462722480297, 0.030024420469999313, 0.08384716510772705, 0.030934251844882965, -0.04395732283592224, -0.03227223828434944, 0.021050989627838135, -0.0112301679328084, 0.022406816482543945, 0.018392857164144516, 0.04399299994111061, -0.006078919395804405, -0.008366876281797886, -0.02800852060317993, 0.005293967202305794, -0.0637238472700119, 0.054054658859968185, -0.02033739723265171, 0.08377580344676971, -0.04213766008615494, 0.004076399374753237, 0.024048080667853355, 0.012273797765374184, -0.0050219097174704075, 0.008112658746540546, 0.009945700876414776, 0.035483404994010925, 0.010034900158643723, 0.01369206327944994, -0.04231605678796768, 0.018838852643966675, -0.014798132702708244, -0.014298616908490658, -0.012639514170587063, 0.025475265458226204, -0.012675193138420582, -0.01100717019289732, -0.010802011936903, 0.04759664461016655, 0.03464493528008461, -0.03988984227180481, 0.04392164200544357, 0.014592974446713924, 0.021604023873806, -0.03903353214263916, 0.03814154118299484, -0.011604804545640945, 0.02845451608300209, 0.024012399837374687, 0.05219931900501251, -0.032361436635255814, 0.005869301501661539, 0.014289697632193565, -0.0006383311119861901, -0.048774074763059616, -0.03489468991756439, 0.005566024221479893, 0.05669495463371277, -0.013112269341945648, -0.02394104190170765, -0.008268757723271847, -0.004134378861635923, -0.012389756739139557, -0.03300366923213005, -0.0437789224088192, 0.04891679063439369, 0.030327698215842247, -0.032575514167547226, -0.005356406327337027, 0.03871241211891174, 0.002270117402076721, 0.0495947040617466, 0.02369128353893757, -0.014441335573792458, 0.08206318318843842, -0.036714352667331696, -0.028133399784564972, -0.02431567758321762, 0.012309476733207703, -0.06800539791584015, -0.07835249602794647, -0.010748492553830147, 0.014129138551652431, 0.014013180509209633, -0.03608996048569679, 0.02238897606730461, 0.021425625309348106, -0.030470415949821472, 0.008509594947099686, 0.024422716349363327, 0.063045933842659, 0.009749462828040123, -0.06193986162543297, 0.02254953421652317, 0.020105479285120964, -0.002580084139481187, -0.07289351522922516, -0.02615317888557911, -0.01566336303949356, 0.004549154546111822, -0.055160731077194214, 0.04645489528775215, -0.04145974665880203, 0.035483404994010925, -0.010980410501360893, -0.06500831246376038, 0.03485901281237602, 0.004807832185178995, -0.008090359158813953, 0.025243347510695457, -0.007845061831176281, 0.01231839694082737, -0.0041009290143847466, 0.005909441038966179, 0.01486057136207819, 0.05694471299648285, 0.02037307620048523, 0.005597244016826153, -0.015957720577716827, -0.011051769368350506, -0.04203062132000923, 0.0024440556298941374, -0.02849019505083561, -0.08648745715618134, -0.004522394854575396, 0.0081795584410429, 0.04488499090075493, -0.03653595596551895, -0.035358525812625885, 0.02172890305519104, -0.01114988885819912, -0.012487875297665596, 0.05858597531914711, 0.018874531611800194, 0.019730843603610992, -0.033592384308576584, 0.033717263489961624, 0.011283687315881252, -0.03771338239312172, 0.0799224004149437, 0.0005915015935897827, 0.001641263603232801, 0.026456456631422043, -0.009990300051867962, -0.007127008866518736, 0.004883651155978441, -0.003001549979671836, 0.06682797521352768, 0.015716882422566414, -0.03732090815901756, -0.03227223828434944, -0.005008529871702194, -0.023352326825261116, 0.043850284069776535, 0.04517043009400368, 0.08391851931810379, 0.014066699892282486, 0.028062039986252785, 0.012131079100072384, -0.003913611173629761, 0.03903353214263916, 0.018874531611800194, 0.0027361826505512, -0.07185880094766617, -0.005120028741657734, -0.0900554209947586, -0.055374808609485626, 0.006065539550036192, -0.016849711537361145, 0.011444245465099812, -0.004589294083416462, -0.00670331297442317, 0.022817132994532585, 0.01613611914217472, -0.017206508666276932, -0.0011595884570851922, 0.04823887720704079, 0.10061659663915634, 0.003860091557726264, 0.03250415623188019, -0.021907301619648933, -0.003333816770464182, -0.012594914063811302, -0.0397828035056591, -0.04310100898146629, -0.02340584620833397, 0.007198368199169636, -0.013825861737132072, 0.016162877902388573, -0.042779892683029175, 0.028793472796678543, -0.03225439786911011, -0.011970520950853825, 0.028829151764512062, 0.026046140119433403, 0.025100629776716232, 0.023762643337249756, 0.0198378823697567, 0.07018186151981354, -0.013174708932638168, 0.008331197313964367, 0.014512695372104645, -0.0742136612534523, -0.04677601158618927, -0.012389756739139557, -0.03735658898949623, 0.011925920844078064, -0.028597233816981316, 0.033806461840867996, -0.022478176280856133, 0.048274558037519455, 0.010034900158643723, 0.015484965406358242, 0.006199338007718325, 0.01064145378768444, -0.03434165567159653, 0.00685495138168335, -0.00549466535449028, 0.022817132994532585, -0.00953538529574871, 0.014423496089875698, -0.005954040680080652, 0.0029591803904622793, -0.010650373995304108, -0.04702576994895935, 0.035608284175395966, 0.001207532943226397, -0.04345780611038208, -0.01626099832355976, 0.05808645859360695, -0.060084521770477295, -0.04420707747340202, -0.07135928422212601, -0.019481085240840912, 0.007461505476385355, -0.045277468860149384, 0.018874531611800194, -0.027812281623482704, 0.043208047747612, -0.061440348625183105, 0.007158228661864996, 0.0420662984251976, -0.013281747698783875, -0.043350767344236374, -0.007938721217215061, -0.033396147191524506, 0.0011149888159707189, 0.0009304581908509135, 0.03177272155880928, -0.002981480211019516, -0.06493695080280304, -0.03846265748143196, -0.01797362044453621, 0.04834591597318649, -0.0009109459351748228, -0.0397828035056591, 0.04256581515073776, 0.013923981226980686, 0.0029056610073894262, -0.034751974046230316, 0.00963350385427475, 0.020515795797109604, 0.022870652377605438, -0.03931896761059761, 0.03594724088907242, 0.007037809584289789, -0.07168040424585342, 0.006337596569210291, 0.035679642111063004, 0.04809616133570671, -0.038105860352516174, -0.07046729326248169, 0.005262747406959534, 0.006020939908921719, 0.01717974804341793, -0.004397516138851643, 0.008897610940039158, -0.08170638233423233, -0.009927860461175442, -0.015592004172503948, 0.09084037691354752, 0.04349348694086075, -0.08891367167234421, -0.03742794692516327, -0.01942756585776806, -0.0029145809821784496, -0.020694194361567497, 0.022228417918086052, 0.036964111030101776, -0.047453925013542175, 0.06629277765750885, 0.01486057136207819, -0.01730462722480297, 0.03205816075205803, 0.015779322013258934, -0.02627805806696415, 0.06664957851171494, 0.03509093075990677, -0.005271667614579201, -0.0607624351978302, -0.016162877902388573, -0.02918594889342785, 0.01092689111828804, -0.044992029666900635, -0.060084521770477295, 0.00942834559828043, 0.020694194361567497, 0.014146978966891766, -0.005365326534956694, -0.023441525176167488, 0.003909151069819927, -0.007483805529773235, -0.026545654982328415, 0.03874809294939041, -0.012800072319805622, -0.025082789361476898, 0.01853557489812374, 0.027598204091191292, -0.003969360608607531, -0.019855720922350883, 0.061725784093141556, -0.05227067694067955, -0.10033115744590759, 0.011595884338021278, -0.0030104699544608593, 0.029132429510354996, -0.021532665938138962, 0.010935810394585133, 0.04513474926352501, 0.01853557489812374, 0.021265067160129547, -0.028383156284689903, -0.01508356910198927, -0.00010731767542893067, 0.019124289974570274, 0.05269883573055267, -0.048595674335956573, -0.04267285391688347, 0.008317817002534866, 0.07471317797899246, 0.0010497620096430182, -0.03960440307855606, 0.06629277765750885, 0.04053207486867905, 0.014744612388312817, -0.04866703599691391, 0.0210331492125988, -0.04813183844089508, -0.07007481902837753, -0.042530134320259094, -0.03660731390118599, 0.03757066652178764, -0.03127320855855942, -0.017821982502937317, 0.031130488961935043, -0.09669183194637299, 0.030720174312591553, -0.0934806689620018, -0.031469445675611496, -0.041923582553863525, 0.05633815750479698, -0.03187976032495499, 0.02898970991373062, -0.050165578722953796, -0.014441335573792458, 0.077068030834198, -0.04431411623954773, -0.04602674022316933, -0.03394918143749237, 0.00950862467288971, 0.023066889494657516, -0.014664333313703537, -0.019820041954517365, 0.04980878159403801, -0.03311070799827576, 0.10097339004278183, 0.006556134670972824, 0.008175098337233067, -0.0028588315472006798, 0.06108355149626732, 0.02119370922446251, 0.06393792480230331, 0.08848551660776138, 0.00955322477966547, -0.025849901139736176, -0.07678259164094925, 0.027990680187940598, -0.022692253813147545, -0.02292417176067829, 0.044135719537734985, 0.01463757362216711, -0.022870652377605438, 0.045812662690877914, -0.04367188364267349, -0.0326647125184536, -0.004236957523971796, 0.06425903737545013, 0.00680589210242033, -0.04848863556981087, 0.007595304399728775, 0.025653664022684097, 0.001365861389786005, -0.038962170481681824, 0.013745582662522793, -0.019445406273007393, -0.0022121379151940346, -0.0009683678508736193, -0.01266627386212349, -0.09398018568754196, -0.011970520950853825 ]
7,444
pathlib
iterdir
Iterate over the files in this directory. Does not yield any result for the special paths '.' and '..'.
def iterdir(self): """Iterate over the files in this directory. Does not yield any result for the special paths '.' and '..'. """ for name in self._accessor.listdir(self): if name in {'.', '..'}: # Yielding a path object for these makes little sense continue yield self._make_child_relpath(name)
(self)
[ 0.01564945839345455, -0.02720598317682743, -0.03837358579039574, 0.02063135802745819, -0.000739066512323916, 0.00429897103458643, 0.020186876878142357, 0.025039134547114372, 0.015325358137488365, -0.009991577826440334, 0.021242519840598106, -0.00809790100902319, 0.011704684235155582, 0.07822877168655396, -0.053634122014045715, 0.01875157095491886, 0.016769923269748688, 0.052893318235874176, -0.024853933602571487, -0.01137132290750742, -0.034762170165777206, 0.04537416994571686, 0.04815218225121498, 0.00408367533236742, -0.029669152572751045, 0.04285544157028198, -0.004505007062107325, 0.0075608184561133385, 0.043448083102703094, -0.021909242495894432, -0.04967082664370537, -0.007732129190117121, 0.04596681520342827, -0.036503057926893234, -0.014177113771438599, -0.017140325158834457, -0.07026514410972595, 0.008468301966786385, -0.046374253928661346, 0.03241012245416641, 0.056338053196668625, 0.0053893402218818665, -0.002363623818382621, 0.01764962635934353, 0.02757638320326805, -0.015121636912226677, 0.008847963064908981, -0.037040140479803085, -0.009380415081977844, -0.010269378311932087, 0.03185452148318291, 0.038040224462747574, 0.007755279075354338, -0.05811597779393196, 0.016297660768032074, 0.066264808177948, -0.012871448881924152, -0.0011621343437582254, 0.025483615696430206, 0.02953951060771942, -0.009936017915606499, -0.06293119490146637, -0.029613591730594635, -0.010537919588387012, 0.010852760635316372, -0.03228048235177994, -0.05944942310452461, -0.045670490711927414, -0.026539260521531105, 0.050819072872400284, -0.08897041529417038, 0.015510558150708675, 0.042225759476423264, 0.035817816853523254, -0.037040140479803085, 0.018168188631534576, -0.0318174809217453, 0.018677489832043648, 0.058190058916807175, -0.041484955698251724, -0.05996798723936081, -0.021872201934456825, -0.028909828513860703, -0.020297996699810028, 0.027113381773233414, 0.042410958558321, 0.03439176827669144, -0.0667833685874939, -0.0016992164310067892, 0.08348847180604935, -0.017890388146042824, -0.0078849196434021, 0.027280062437057495, 0.0069774361327290535, -0.03546593338251114, -0.0006464662146754563, -0.015982819721102715, 0.029335791245102882, -0.012093605473637581, 0.00764878885820508, 0.003456308040767908, 0.039262548089027405, 0.04259616136550903, 0.013825232163071632, 0.029280230402946472, -0.0551527664065361, -0.06007910519838333, -0.05004122853279114, 0.06396832317113876, -0.015492038801312447, -0.08148830384016037, -0.00568566145375371, 0.012676987797021866, 0.005810671951621771, -0.03985518962144852, -0.041484955698251724, -0.0015105431666597724, 0.011149082332849503, 0.026909662410616875, -0.018140409141778946, 0.05270811915397644, 0.023798290640115738, -0.01864045113325119, 0.008232170715928078, 0.031410038471221924, -0.03172488138079643, 0.025520656257867813, 0.015325358137488365, -0.04807810112833977, 0.008931303396821022, 0.0206869188696146, 0.03191008046269417, 0.014667895622551441, -0.003995704930275679, 0.034280650317668915, 0.025631776079535484, 0.024057570844888687, -0.020501717925071716, -0.0034586230758577585, 0.035336293280124664, 0.05255995690822601, 0.006810755934566259, 0.023927930742502213, 0.04100343585014343, 0.0036484538577497005, 0.025594737380743027, -0.011547263711690903, 0.038410626351833344, -0.0032340672332793474, -0.008903523907065392, -0.048967063426971436, 0.0056439912877976894, 0.07837693393230438, 0.056708455085754395, -0.012260286137461662, 0.009241514839231968, -0.03761426359415054, 0.03166931867599487, -0.041484955698251724, -0.030132154002785683, -0.013788191601634026, -0.02476133406162262, 0.003092851722612977, -0.0007431178237311542, -0.0041809058748185635, 0.019020112231373787, -0.04852258414030075, -0.01693660393357277, -0.01317702978849411, 0.023890890181064606, 0.03985518962144852, -0.026224419474601746, -0.00757007859647274, -0.03191008046269417, -0.04211463779211044, 0.030298834666609764, 0.01248252671211958, 0.0315396785736084, 0.014612334780395031, 0.054004523903131485, 0.018168188631534576, -0.040855273604393005, 0.013751151971518993, -0.03266940265893936, 0.0012211671564728022, 0.0392255075275898, 0.010213818401098251, -0.0020210025832057, 0.0604495070874691, 0.008088640868663788, -0.05344892293214798, 0.0038128194864839315, -0.023298248648643494, 0.003759574145078659, -0.017232924699783325, 0.023557528853416443, -0.00364613882265985, -0.0031437817960977554, 0.011102781631052494, 0.04337400197982788, -0.058819741010665894, -0.002110130386427045, 0.025909578427672386, -0.01662176288664341, -0.03881806507706642, 0.04518897086381912, -0.04311472177505493, -0.00032699498115107417, -0.009778596460819244, 0.007403397932648659, 0.0004699467681348324, -0.04322584345936775, 0.03787354379892349, -0.034910332411527634, 0.0026483701076358557, 0.008102530613541603, -0.027002261951565742, -0.0365956574678421, -0.014936435967683792, 0.034706611186265945, 0.013584471307694912, -0.009310965426266193, -0.018408948555588722, -0.07041330635547638, -0.004981898702681065, -0.0445222482085228, 0.027372663840651512, 0.009973057545721531, -0.039632949978113174, -0.02539101615548134, -0.01529757771641016, -0.014547514729201794, 0.009685996919870377, -0.0002708560205064714, 0.005028198938816786, -0.047485459595918655, 0.0005448951851576567, -0.0007888392428867519, -0.021724041551351547, 0.010704600252211094, -0.02852090820670128, 0.008898893371224403, -0.021075839176774025, -0.001389005221426487, -0.04026263207197189, -0.04144791513681412, 0.05344892293214798, 0.04437408596277237, 0.014491954818367958, 0.03515109419822693, -0.00418322067707777, -0.01309368945658207, -0.05737517774105072, 0.00973229669034481, 0.05137467384338379, -0.040373753756284714, -0.018149668350815773, 0.03203972056508064, 0.020427636802196503, 0.04648537561297417, 0.022557444870471954, -0.0015823084395378828, -0.035706695169210434, 0.026279978454113007, 0.002111288020387292, -0.013556690886616707, 0.028669068589806557, -0.04755954071879387, 0.01397339254617691, 0.024242771789431572, 0.10941657423973083, -0.025205815210938454, -0.010436058975756168, 0.044411126524209976, 0.004544361960142851, 0.033539846539497375, -0.022557444870471954, 0.006060692947357893, -0.07345059514045715, 0.011186121962964535, -0.0064264643006026745, 0.026742981746792793, -0.08541455864906311, -0.01402895338833332, -0.047707699239254, -0.03070627525448799, -0.06352383643388748, 0.05956054478883743, -0.04974490776658058, 0.024298332631587982, 0.07889549434185028, -0.005903272423893213, -0.01648286171257496, -0.021927762776613235, 0.019205313175916672, -0.06478320807218552, -0.026205899193882942, -0.03298424556851387, 0.01876083016395569, -0.022298164665699005, -0.024465011432766914, 0.0082831010222435, -0.014436394907534122, 0.02539101615548134, -0.07111706584692001, -0.012556607834994793, 0.010000837966799736, 0.02735414355993271, -0.04448520764708519, 0.009047053754329681, 0.00184274697676301, -0.03896622732281685, 0.026576301082968712, 0.00026246410561725497, 0.027983825653791428, -0.05981982499361038, 0.03620673716068268, 0.008398851379752159, -0.04581865295767784, 0.029187630861997604, -0.06730193644762039, 0.09230402857065201, 0.0011245155474171042, 0.010806460864841938, -0.040744151920080185, 0.040855273604393005, 0.02911354973912239, 0.06533880531787872, 0.007820099592208862, -0.004701782949268818, 0.00865350291132927, -0.04655945673584938, -0.03196563944220543, 0.02461317367851734, -0.00820902083069086, 0.07352467626333237, 0.013788191601634026, 0.006157923024147749, 0.05163395404815674, -0.004363791551440954, 0.027613423764705658, 0.015640199184417725, -0.017519986256957054, -0.0230574868619442, -0.02265004627406597, -0.00184274697676301, 0.042707279324531555, 0.010186037980020046, 0.058560460805892944, -0.00693113636225462, 0.0599309466779232, 0.028817228972911835, 0.01648286171257496, 0.002130965469405055, -0.01693660393357277, 0.017575547099113464, -0.022205563262104988, 0.018825650215148926, -0.026594819501042366, 0.06107918918132782, 0.03315092623233795, 0.03728090226650238, -0.016862522810697556, -0.03670677915215492, -0.016464341431856155, -0.09156322479248047, -0.00033046750468201935, 0.002077720360830426, 0.015279057435691357, 0.009760077111423016, -0.010787940584123135, -0.015167937614023685, 0.0018543220357969403, -0.08200687170028687, 0.03409544751048088, -0.052522920072078705, 0.01622358150780201, -0.009273924864828587, 0.022705605253577232, 0.08096974343061447, 0.003426212817430496, 0.033965807408094406, 0.05370820313692093, 0.012269546277821064, 0.023742729797959328, -0.059634625911712646, 0.09341523051261902, 0.0031553569715470076, -0.02396497130393982, -0.036391936242580414, -0.014621594920754433, -0.04470744729042053, 0.0008953296346589923, 0.006338493898510933, -0.044892650097608566, -0.11097225546836853, 0.10356423258781433, -0.03578077629208565, -0.04592977464199066, -0.09097058326005936, 0.05433788523077965, 0.01277884840965271, -0.057449255138635635, 0.055708371102809906, 0.02274264581501484, -0.03253976255655289, 0.05870862305164337, 0.0062458934262394905, -0.01690882444381714, -0.0009543623309582472, -0.03239160403609276, -0.021353639662265778, 0.009246144443750381, 0.017492206767201424, 0.027854185551404953, -0.0007847879896871746, -0.03224344179034233, -0.017964467406272888, 0.0667833685874939, 0.038781024515628815, 0.011954705230891705, -0.11319466680288315, 0.021668482571840286, 0.03266940265893936, 0.019501633942127228, -0.03429916873574257, 0.01514015719294548, -0.022020362317562103, -0.010139738209545612, 0.01773296669125557, -0.041596077382564545, -0.015890220180153847, -0.012732547707855701, -0.017112543806433678, 0.05870862305164337, -0.04618905484676361, -0.07645084708929062, -0.01727922447025776, -0.04581865295767784, 0.012121385894715786, -0.03296572342514992, 0.005125429481267929, 0.024187210947275162, -0.03487329185009003, 0.013621511869132519, -0.0011511381017044187, 0.010621259920299053, 0.05441196635365486, 0.01627914234995842, -0.0025580846704542637, -0.013047389686107635, -0.00640331394970417, 0.06856130063533783, -0.03235456347465515, -0.03765130043029785, -0.01357521116733551, -0.0032479572109878063, 0.010148998349905014, -0.019020112231373787, -0.020983239635825157, -0.00812568049877882, -0.0027710655704140663, 0.10349015146493912, -0.03822542354464531, 0.041707199066877365, -0.017936687916517258, 0.01829782873392105, 0.014232673682272434, -0.03518813103437424, -0.041707199066877365, 0.03128039836883545, -0.00836644135415554, -0.02587253786623478, -0.02237224392592907, -0.01001935824751854, -0.014510475099086761, -0.08511824160814285, -0.00780620938166976, -0.004525842145085335, -0.10141590237617493, -0.011843584477901459, -0.058671582490205765, 0.04600385203957558, -0.019390512257814407, -0.023631609976291656, -0.06393127888441086, 0.021112879738211632, 0.030502555891871452, -0.024742813780903816, -0.0694502592086792, 0.05174507573246956, 0.019797954708337784, -0.028391266241669655, 0.018408948555588722, -0.0153809180483222, 0.017436645925045013, -0.022446325048804283, 0.03403988853096962, -0.007509888149797916, -0.033280566334724426, -0.009917497634887695, -0.04744841903448105, 0.003062756499275565, 0.015464258380234241, -0.012362146750092506, 0.0874888077378273, -0.01909419149160385, -0.019316432997584343, -0.017862606793642044, -0.002842830726876855, 0.0418923981487751, -0.009361895732581615, -0.046263135969638824, -0.021298080682754517, 0.04259616136550903, -0.04655945673584938, 0.02026095613837242, 0.020798038691282272, 0.02953951060771942, 0.030669236555695534, -0.013121469877660275, -0.08497007936239243, -0.02433537133038044, 0.025261376053094864, -0.0031947121024131775, 0.03837358579039574, -0.019797954708337784, 0.008134940639138222, 0.004889298230409622, 0.022983407601714134, -0.005218029487878084, 0.004755028057843447, 0.02550213597714901, 0.015408698469400406, -0.009685996919870377, -0.02020539715886116, 0.05059682950377464, 0.005190249532461166, -0.01914975233376026, 0.04922634735703468, 0.04496673122048378, 0.04433704912662506, 0.03811430558562279, -0.0019133547320961952, 0.030724795535206795, -0.0196127537637949, -0.023242687806487083, -0.038040224462747574, 0.09830453246831894, 0.03765130043029785, 0.02174256183207035, -0.027928264811635017, -0.06270895898342133, 0.07830285280942917, 0.023872369900345802, -0.01636248268187046, -0.012260286137461662, -0.011621343903243542, -0.025631776079535484, 0.020001675933599472, -0.015510558150708675, 0.066264808177948, -0.045411210507154465, -0.041966479271650314, 0.08926673978567123, 0.03218788281083107, 0.023742729797959328, 0.01611246168613434, 0.023779770359396935, 0.013612251728773117, 0.023261208087205887, 0.029039470478892326, -0.036391936242580414, -0.008917413651943207, 0.03283608332276344, 0.05815301835536957, -0.034225087612867355, -0.01719588413834572, -0.005273589864373207, -0.08985938131809235, -0.002295331098139286, -0.07948814332485199, 0.058671582490205765, 0.000749484053812921, -0.05200435593724251, -0.03715125843882561, -0.013075169175863266, 0.0641535222530365, 0.008426631800830364, 0.00905168429017067, -0.0000774081054260023, -0.1034160703420639, -0.00429897103458643, -0.014204893261194229, 0.023779770359396935, -0.012825148180127144, -0.027335623279213905, -0.058671582490205765, 0.022075923159718513, 0.0009995050495490432, 0.020798038691282272, 0.031095197424292564, 0.0033475025556981564, 0.06730193644762039, -0.03113223798573017, -0.04259616136550903, 0.07652492821216583, 0.00988971721380949, -0.014954956248402596, 0.0731913149356842, -0.018936771899461746, 0.028169026598334312, 0.04544825106859207, -0.03085443563759327, -0.0015880960272625089, 0.019575713202357292, -0.031169278547167778, 0.0006117410375736654, -0.0035118681844323874, -0.010982401669025421, -0.0864516869187355, -0.06619072705507278, -0.05637509375810623, 0.039373669773340225, -0.06193111464381218, -0.04104047641158104, 0.057078856974840164, 0.00901001412421465, 0.0047087278217077255, 0.013269630260765553, -0.016205061227083206, -0.017918167635798454, -0.015038296580314636, -0.044411126524209976, 0.03207676112651825, -0.056226931512355804, -0.019057152792811394, -0.036929018795490265, -0.05626397207379341, -0.022983407601714134, 0.0008449782035313547, -0.018121888861060143, -0.004426296800374985, -0.040373753756284714, -0.04322584345936775, -0.024853933602571487, -0.02205740287899971, -0.009389675222337246, 0.030298834666609764, -0.05404156446456909, 0.014853095635771751, 0.047633618116378784, -0.019501633942127228, -0.0291691105812788, -0.05530092865228653, 0.025094695389270782, -0.023742729797959328, -0.029872871935367584, 0.0355214923620224, 0.033595405519008636, 0.058301180601119995, -0.005551390815526247, 0.0010550651932135224, -0.06385719776153564, 0.018066328018903732, 0.011065742000937462, -0.015066077001392841, -0.003041921416297555, 0.007602488622069359, -0.03166931867599487, -0.009500795975327492, 0.08497007936239243, -0.03407692909240723, -0.07141339033842087, -0.026428138837218285, -0.022353723645210266, 0.001194544485770166, 0.0005668877856805921, 0.03366948664188385, -0.0010683765867725015, -0.07504332065582275, 0.061745911836624146, 0.009125764481723309, 0.06722785532474518, 0.03203972056508064, -0.00796825997531414, -0.00905168429017067, -0.03276200219988823, 0.06985770165920258, -0.029558030888438225, -0.02800234593451023, 0.01349187083542347, 0.011834324337542057, -0.0033127774950116873, -0.04404072463512421, 0.05759741738438606, 0.06952434033155441, -0.018010767176747322, -0.0074126580730080605, -0.011167601682245731, 0.05544909089803696, 0.002882185857743025, 0.0013403900666162372, -0.006630185060203075, 0.062375593930482864, 0.0030789615120738745, 0.026798540726304054, 0.04437408596277237, -0.001424887916073203, 0.042707279324531555, -0.006847796030342579, 0.052522920072078705, -0.058560460805892944, -0.021649962291121483, 0.02885426953434944, -0.03911438584327698, 0.04522601142525673, -0.007153376936912537, 0.07948814332485199, -0.025854017585515976, 0.05974574387073517, -0.052300676703453064, -0.025650296360254288, 0.021279560402035713, -0.03789206221699715, 0.016492122784256935, 0.0014364629751071334, 0.00003293461486464366, 0.010621259920299053, 0.08548863977193832, -0.017566286027431488, -0.030669236555695534, 0.0180200282484293, 0.040855273604393005, -0.006940396036952734, -0.016121720895171165, 0.022946367040276527, 0.0604495070874691, -0.0008901208639144897, 0.011149082332849503, 0.0061208829283714294, 0.013047389686107635, -0.004590662196278572, -0.022668564692139626, -0.005889382213354111, 0.022761166095733643, 0.04155903682112694, 0.0082831010222435, 0.0064496141858398914, 0.022520404309034348, 0.040966395288705826, -0.046263135969638824, -0.006218113470822573, 0.02142772078514099, -0.02316860668361187, 0.02815050631761551, 0.004055895376950502, -0.036021534353494644, 0.0019480799091979861, 0.005935682449489832, -0.010269378311932087, -0.044670406728982925, 0.03583633527159691, 0.023150088265538216, 0.040225591510534286, 0.06819089502096176, 0.014723455533385277, 0.01213990617543459 ]
7,445
pathlib
joinpath
Combine this path with one or several arguments, and return a new path representing either a subpath (if all arguments are relative paths) or a totally different path (if one of the arguments is anchored).
def joinpath(self, *args): """Combine this path with one or several arguments, and return a new path representing either a subpath (if all arguments are relative paths) or a totally different path (if one of the arguments is anchored). """ return self._make_child(args)
(self, *args)
[ -0.06312806159257889, 0.0003072628751397133, -0.023002827540040016, 0.02234560437500477, -0.03881078585982323, -0.05292380228638649, -0.003504472319036722, 0.06060294061899185, 0.036839116364717484, -0.010489636100828648, 0.04507170617580414, 0.012798566371202469, 0.029557770118117332, 0.06790158152580261, -0.04157804325222969, 0.0018462795997038484, 0.052820026874542236, -0.00663709407672286, 0.025060975924134254, 0.030941398814320564, 0.030491719022393227, 0.024853432551026344, 0.04157804325222969, 0.003889294108375907, -0.0063171302899718285, 0.045348431915044785, 0.004397345241159201, 0.02677321620285511, -0.006498731207102537, -0.031564030796289444, 0.030509013682603836, -0.006070671137422323, 0.020598772913217545, 0.017494255676865578, 0.041474271565675735, 0.050018180161714554, -0.0446220263838768, 0.0707034319639206, 0.009365437552332878, -0.006014461163431406, 0.0255279503762722, -0.03881078585982323, 0.03038794733583927, -0.026115993037819862, 0.029056204482913017, -0.013300132006406784, 0.021394360810518265, 0.010956610552966595, -0.04244281351566315, -0.005283732432872057, 0.04036736860871315, 0.01803906075656414, 0.015929026529192924, -0.0332762710750103, -0.0453830249607563, 0.0624016597867012, 0.011734901927411556, 0.052647076547145844, -0.026288947090506554, -0.0036471590865403414, 0.052820026874542236, -0.01988966390490532, 0.03019769862294197, 0.03957178443670273, -0.00014957784151192755, -0.017381835728883743, -0.043895624577999115, 0.00446220301091671, -0.007718054112046957, 0.052647076547145844, -0.055483512580394745, 0.021013861522078514, -0.02616787888109684, -0.04233904182910919, 0.015513937920331955, 0.026704035699367523, -0.0019478899193927646, 0.053235117346048355, 0.0729864165186882, -0.0014960486441850662, -0.06454627960920334, -0.04849619045853615, -0.08142655342817307, -0.046316973865032196, 0.006036080420017242, 0.05582942068576813, -0.04873832315206528, -0.060118671506643295, -0.047942738980054855, -0.005564781837165356, -0.026064107194542885, 0.01400924101471901, -0.018523329868912697, -0.01479618065059185, 0.0450025275349617, -0.05012195184826851, 0.007609958294779062, -0.012098103761672974, 0.0017608838388696313, -0.01501237228512764, -0.02232830971479416, -0.04444907605648041, -0.015133439563214779, -0.026202470064163208, 0.04583270475268364, -0.027309373021125793, 0.0036990451626479626, -0.03305143117904663, -0.011440880596637726, -0.006096614524722099, -0.043100036680698395, -0.017364541068673134, -0.011890559457242489, -0.0253377016633749, -0.08377872407436371, 0.013421199284493923, -0.026064107194542885, -0.03652780130505562, 0.038257334381341934, -0.016076037660241127, -0.005452362354844809, 0.05451497435569763, -0.002527284435927868, 0.0010679884580895305, 0.06122557446360588, 0.01702728122472763, -0.056659597903490067, 0.006010137498378754, -0.029090795665979385, -0.07305560261011124, -0.006727894768118858, 0.03391620144248009, -0.03673534467816353, -0.03476367145776749, 0.02454211562871933, 0.015142087824642658, -0.01145817618817091, -0.011406289413571358, 0.032342322170734406, 0.07464677095413208, 0.030578196048736572, -0.05192067101597786, 0.020840909332036972, 0.030318764969706535, -0.02962695062160492, 0.03121812455356121, 0.02843357063829899, -0.011293869465589523, -0.019180553033947945, 0.059565220028162, -0.014822123572230339, -0.00002192321881011594, 0.0389491505920887, -0.006420902442187071, 0.025251224637031555, -0.08059637993574142, -0.0030266880057752132, 0.024421047419309616, 0.050018180161714554, -0.02493990957736969, 0.03977932780981064, -0.057074688374996185, 0.038637835532426834, 0.020131798461079597, 0.01490859966725111, 0.01093931496143341, 0.043065447360277176, 0.012686146423220634, 0.011821378022432327, -0.006468464620411396, 0.05721304938197136, -0.015142087824642658, 0.003056954825296998, -0.023366030305624008, -0.09221886098384857, -0.03715043142437935, -0.03593975678086281, 0.027240192517638206, -0.0007334313704632223, -0.031166238710284233, 0.02720560133457184, -0.03127001225948334, 0.06001489982008934, -0.021809449419379234, 0.03632025420665741, 0.03211748227477074, -0.01184732187539339, 0.020200980827212334, 0.03749633952975273, -0.006459816824644804, -0.024836136028170586, 0.009512447752058506, 0.036839116364717484, 0.04220067709684372, -0.016871623694896698, -0.038257334381341934, -0.016352763399481773, -0.041889362037181854, -0.0015944159822538495, 0.1279856562614441, -0.02962695062160492, -0.0019532947335392237, 0.028450867161154747, -0.003270984860137105, 0.07948947697877884, 0.0024710744619369507, 0.021844038739800453, 0.03673534467816353, -0.025700904428958893, 0.014424329623579979, 0.016491126269102097, -0.014761589467525482, 0.03770388290286064, -0.04489875212311745, -0.011345756240189075, 0.01035992056131363, -0.026652149856090546, 0.015505289658904076, 0.0012506707571446896, 0.05005276948213577, 0.012348886579275131, -0.011743549257516861, 0.06530728191137314, 0.03652780130505562, -0.05396152287721634, -0.04548679664731026, 0.004131428897380829, 0.020010732114315033, 0.029782610014081, -0.03312061354517937, 0.02251855842769146, -0.010913372039794922, 0.0019305945606902242, -0.026115993037819862, -0.03663157299160957, -0.0007339718285948038, -0.023590870201587677, 0.011510062031447887, 0.0019035704899579287, 0.0008782799704931676, -0.006420902442187071, -0.010074547491967678, 0.02127329260110855, -0.036181893199682236, 0.05759354680776596, -0.02234560437500477, 0.016741909086704254, -0.047181740403175354, 0.03967555612325668, -0.023625461384654045, -0.04728551208972931, 0.0933949425816536, -0.04133591055870056, 0.025078272446990013, -0.012954224832355976, 0.03815356269478798, -0.030560901388525963, -0.04316921904683113, -0.029142681509256363, 0.002046257257461548, 0.02071984112262726, -0.013317426666617393, 0.030906807631254196, -0.018350375816226006, -0.04687042534351349, -0.018384966999292374, -0.043895624577999115, -0.04465661942958832, -0.03867242485284805, 0.013265540823340416, 0.0005377776105888188, -0.0174423698335886, -0.002838600892573595, 0.026098698377609253, 0.002237587235867977, 0.04648992791771889, -0.020235570147633553, 0.009002234786748886, -0.01968211866915226, 0.02999015338718891, -0.00020876039343420416, 0.019595643505454063, -0.04133591055870056, -0.0624016597867012, -0.017710449174046516, -0.006083642598241568, 0.029073499143123627, 0.02715371549129486, -0.026894284412264824, 0.03946801275014877, 0.059530626982450485, 0.03708125278353691, -0.04015982523560524, 0.02047770656645298, -0.0123834777623415, 0.012599669396877289, 0.02497449889779091, -0.031339190900325775, 0.05174771696329117, -0.04579811170697212, 0.01822930946946144, -0.014778885059058666, -0.013057996518909931, 0.011881912127137184, 0.011120916344225407, -0.05077917501330376, 0.032152075320482254, 0.025839267298579216, 0.014372443780303001, 0.02758609876036644, -0.04666288197040558, -0.06471923738718033, -0.037600111216306686, 0.01491724792867899, 0.024697773158550262, 0.015237212181091309, 0.018575215712189674, -0.015055610798299313, -0.0559677854180336, -0.01643059216439724, -0.07810584455728531, 0.028710296377539635, -0.021446246653795242, 0.0442415289580822, -0.009045473299920559, 0.035178761929273605, -0.0022873112466186285, 0.05793945491313934, 0.00974593497812748, 0.03144296258687973, -0.003266660962253809, 0.04261576756834984, 0.03218666464090347, 0.019924255087971687, -0.042269859462976456, 0.018938418477773666, 0.01430326234549284, -0.007804531138390303, 0.015280450694262981, 0.02471506968140602, 0.07706812024116516, 0.009157893247902393, -0.031546737998723984, 0.002440807642415166, 0.055864013731479645, 0.007882360368967056, 0.04192395135760307, 0.04728551208972931, 0.05662500858306885, -0.03545548766851425, 0.0007631577318534255, 0.01644788682460785, -0.023383326828479767, -0.03220396116375923, 0.023072009906172752, 0.06108720973134041, -0.04763142019510269, 0.01074041798710823, 0.02030475251376629, -0.01964752934873104, 0.07769075781106949, 0.0021121958270668983, -0.012020274996757507, 0.0102561479434371, -0.029644247144460678, 0.006788428872823715, -0.0012441849103197455, 0.03715043142437935, -0.051436398178339005, 0.0022483968641608953, 0.020322047173976898, -0.04036736860871315, 0.10529415309429169, -0.01340390369296074, 0.037046659737825394, 0.037219613790512085, 0.0006047970964573324, -0.004120619501918554, -0.0031239744275808334, 0.00945191364735365, -0.030578196048736572, -0.02151542715728283, 0.014164899475872517, 0.009106006473302841, -0.014545397832989693, 0.0453830249607563, 0.07623794674873352, -0.02857193350791931, 0.029903676360845566, 0.026479195803403854, 0.0040449523366987705, -0.003703368827700615, 0.03656239062547684, -0.052266575396060944, -0.05185148864984512, -0.047769784927368164, 0.09747664630413055, 0.010878780856728554, -0.014675112441182137, -0.016101980581879616, 0.04285790026187897, -0.022674215957522392, -0.0009690806036815047, 0.033760543912649155, -0.012175933457911015, -0.016698669642210007, 0.030526310205459595, 0.024853432551026344, 0.004535708110779524, -0.04604024812579155, -0.05603696405887604, -0.042892493307590485, -0.08121901005506516, 0.04524466022849083, 0.03080303594470024, -0.021636495366692543, 0.00002418648000457324, -0.003448262345045805, 0.026081401854753494, 0.024905318394303322, -0.06478841602802277, 0.0008399059297516942, -0.033760543912649155, 0.036839116364717484, 0.02677321620285511, -0.04015982523560524, -0.031529441475868225, 0.007882360368967056, 0.053650204092264175, 0.012297000735998154, -0.030474424362182617, -0.04192395135760307, -0.022553149610757828, 0.014277319423854351, 0.015349632129073143, 0.02862382121384144, 0.043930213898420334, -0.021636495366692543, 0.059150129556655884, 0.0056080203503370285, -0.040021464228630066, -0.039052922278642654, -0.03998687118291855, 0.0012301324168220162, -0.017598029226064682, -0.08377872407436371, -0.033795133233070374, -0.045521385967731476, 0.00170899776276201, 0.0026569997426122427, 0.02068524993956089, 0.0028126579709351063, 0.020218275487422943, 0.026323538273572922, -0.03146025910973549, -0.07520022243261337, -0.0014971295604482293, -0.01802176423370838, 0.010411806404590607, 0.03043983317911625, 0.02435186691582203, 0.008777394890785217, 0.10681614279747009, -0.005430743098258972, -0.01660354621708393, -0.004509765189141035, 0.04804651066660881, -0.014337853528559208, -0.04157804325222969, -0.031961824744939804, 0.042927082628011703, -0.035801395773887634, -0.06437332928180695, 0.015557176433503628, 0.0807347372174263, 0.008967643603682518, -0.00821529608219862, -0.0189038272947073, -0.013170416466891766, -0.047977328300476074, -0.06928521394729614, -0.044137757271528244, 0.00882495753467083, 0.031736984848976135, 0.0021046290639787912, -0.014268672093749046, 0.006412254646420479, 0.05012195184826851, 0.01883464679121971, -0.015289098024368286, 0.09201131016016006, 0.024075141176581383, -0.054272837936878204, -0.018090946599841118, -0.025873858481645584, 0.03301684185862541, -0.03770388290286064, -0.006464140489697456, -0.07900520414113998, -0.010472340509295464, 0.038049791008234024, -0.050018180161714554, 0.0130925877019763, 0.01561770960688591, -0.02110033854842186, 0.08246427774429321, -0.026323538273572922, -0.017796924337744713, -0.047147151082754135, 0.00410764804109931, -0.008146114647388458, -0.020979272201657295, -0.011579243466258049, 0.013490380719304085, 0.021792152896523476, 0.021584609523415565, -0.03746175020933151, 0.02573549561202526, 0.04029818996787071, -0.010878780856728554, -0.001831146189942956, 0.037842247635126114, 0.024265389889478683, -0.00401036161929369, -0.04033277928829193, -0.014363796450197697, 0.004492469597607851, 0.05579483136534691, 0.0127639751881361, 0.048357825726270676, -0.04299626499414444, 0.05109049379825592, -0.004687042441219091, 0.03711584210395813, 0.05026031658053398, 0.08737615495920181, -0.08633843809366226, 0.01766720972955227, 0.051401808857917786, 0.016724612563848495, 0.008323391899466515, 0.02369464375078678, -0.010870133526623249, -0.03227313980460167, -0.031097056344151497, -0.008370954543352127, 0.031097056344151497, 0.002842924790456891, 0.08889815211296082, -0.014986429363489151, -0.011510062031447887, 0.0038201126735657454, 0.013464437797665596, 0.14680300652980804, 0.006200386676937342, 0.0007134336046874523, -0.030751150101423264, -0.035196058452129364, -0.04476039111614227, 0.01828119531273842, -0.019958844408392906, -0.012037570588290691, 0.0005993922823108733, 0.022189946845173836, 0.002756447996944189, 0.003368271281942725, 0.012660203501582146, 0.019526461139321327, 0.01700998656451702, -0.03753092885017395, -0.04479498043656349, 0.0312873050570488, -0.1026652529835701, -0.06734813004732132, -0.015747424215078354, -0.031166238710284233, 0.013862230814993382, -0.010757713578641415, 0.0020851718727499247, 0.0023219019640237093, -0.0352652370929718, 0.01924973540008068, -0.026600264012813568, 0.012340239249169827, 0.005063216667622328, 0.008029370568692684, 0.03249797970056534, 0.042304448783397675, 0.013784402050077915, -0.04092082008719444, 0.0025099890772253275, -0.00984105933457613, 0.04908423125743866, 0.002933725481852889, 0.04078245908021927, -0.033604882657527924, -0.034953922033309937, -0.029748018831014633, -0.0003496905555948615, -0.03348381817340851, 0.023798415437340736, -0.02838168479502201, 0.014130309224128723, 0.06101802736520767, -0.04182017967104912, -0.010947962291538715, 0.0057982695288956165, -0.024870727211236954, -0.06129475310444832, 0.024403752759099007, 0.03957178443670273, 0.03953719139099121, 0.02414432168006897, 0.032152075320482254, -0.038015201687812805, -0.024023255333304405, -0.04946472868323326, -0.014035184867680073, -0.0030245259404182434, 0.022847170010209084, -0.06319724768400192, -0.02839898131787777, -0.020633364096283913, 0.016880271956324577, -0.07360905408859253, 0.0021121958270668983, 0.009901593439280987, -0.020391229540109634, 0.008565526455640793, -0.032359618693590164, 0.015773368999361992, -0.047458466142416, 0.006425226107239723, -0.019803186878561974, 0.006196062546223402, -0.08052719384431839, -0.0002033555938396603, -0.03891456127166748, 0.00952109508216381, -0.018990304321050644, -0.05292380228638649, -0.011406289413571358, -0.10584760457277298, -0.06765944510698318, -0.04559056833386421, -0.026704035699367523, -0.020045321434736252, -0.05686714127659798, -0.03870701417326927, -0.04725092276930809, 0.013533619232475758, -0.001746831345371902, -0.0034763673320412636, 0.01529774535447359, 0.026634853333234787, 0.05409988388419151, 0.06063752993941307, -0.027897415682673454, -0.009754583239555359, 0.0588042214512825, 0.02781093865633011, -0.034798264503479004, 0.08267182111740112, 0.006356044672429562, -0.0410245917737484, -0.004946473054587841, 0.023573575541377068, -0.02414432168006897, 0.014744293875992298, -0.006624122615903616, -0.02288176119327545, -0.040851641446352005, -0.0620211586356163, 0.0022040773183107376, -0.02295094169676304, -0.0506754033267498, 0.00715595530346036, -0.03199641406536102, -0.010697180405259132, -0.026911579072475433, -0.023158486932516098, -0.051228854805231094, -0.011328460648655891, -0.028277913108468056, 0.07215624302625656, 0.0446220263838768, 0.042269859462976456, 0.03246339038014412, 0.0011209554504603148, -0.02535499818623066, 0.028865955770015717, -0.027741756290197372, 0.011933797970414162, 0.023227667436003685, -0.007069478277117014, 0.0457635223865509, -0.0123834777623415, -0.03389890491962433, -0.0014290290419012308, -0.006330101750791073, 0.025510655716061592, 0.06139852851629257, -0.012400773353874683, -0.03332815691828728, 0.02288176119327545, -0.024023255333304405, 0.05088294669985771, 0.0007112716557458043, 0.0378076545894146, 0.010264796204864979, -0.03929505869746208, 0.04223527014255524, 0.0743008628487587, -0.019145963713526726, 0.05233575776219368, -0.08177246153354645, 0.01703592948615551, -0.0017814220627769828, -0.044518254697322845, -0.011743549257516861, -0.012980167753994465, -0.02047770656645298, 0.09747664630413055, -0.09125031530857086, 0.010083194822072983, -0.04071327671408653, -0.012400773353874683, -0.004096838179975748, 0.031148942187428474, 0.0007588338921777904, -0.11048275977373123, 0.01802176423370838, 0.05309675261378288, 0.03555925935506821, 0.03960637375712395, -0.007891007699072361, 0.0039217229932546616, 0.0034266430884599686, -0.012469954788684845, -0.02922915853559971, -0.009460561908781528, 0.0007485647802241147, 0.033362749963998795, -0.06430415064096451, 0.023279555141925812, -0.018177423626184464, 0.009962127543985844, 0.010282091796398163, -0.0348847396671772, -0.004596241749823093, 0.03998687118291855, 0.037185024470090866, 0.022172650322318077, -0.02921186201274395, 0.03773847594857216, -0.029730724170804024, 0.0016722450964152813, -0.003227746579796076, -0.0039044274017214775, -0.0538923405110836, -0.04316921904683113, 0.024697773158550262, -0.007372146937996149, 0.016370058059692383, 0.08571580052375793, 0.05510301515460014, -0.007242431864142418, 0.029332930222153664 ]
7,446
pathlib
lchmod
Like chmod(), except if the path points to a symlink, the symlink's permissions are changed, rather than its target's.
def lchmod(self, mode): """ Like chmod(), except if the path points to a symlink, the symlink's permissions are changed, rather than its target's. """ self.chmod(mode, follow_symlinks=False)
(self, mode)
[ 0.018641185015439987, 0.050590336322784424, 0.05333217978477478, 0.03601175919175148, -0.0015318372752517462, 0.012146027758717537, 0.012137668207287788, 0.03601175919175148, -0.00009652351582190022, -0.010716591961681843, 0.0004137841460760683, -0.020095698535442352, 0.0637645572423935, 0.021566931158304214, -0.019844921305775642, -0.01246368046849966, -0.028856219723820686, -0.002610184019431472, -0.014745762571692467, 0.031464315950870514, 0.04998847097158432, -0.04353510960936546, 0.026866713538765907, -0.06523578613996506, -0.009496137499809265, 0.09803758561611176, -0.010089646093547344, 0.06627234071493149, 0.04851723834872246, -0.037951111793518066, -0.036647066473960876, 0.029591836035251617, 0.023539720103144646, -0.007983108051121235, -0.030043236911296844, -0.005103338044136763, -0.02765248529613018, 0.06222644820809364, -0.047547560185194016, -0.019527267664670944, -0.019711172208189964, 0.03388850390911102, -0.03724893182516098, -0.0006008229684084654, 0.019811483100056648, -0.013659057207405567, -0.012823129072785378, 0.009880663827061653, 0.019778046756982803, -0.07349475473165512, -0.01768822781741619, 0.03805142268538475, -0.00847630575299263, -0.030394326895475388, 0.00046890313387848437, 0.01571543887257576, 0.002511962316930294, 0.06637264788150787, -0.047848496586084366, -0.04597601667046547, 0.0017763461219146848, 0.014779199846088886, -0.031397439539432526, -0.01621699519455433, 0.02425861917436123, -0.09910757839679718, -0.05333217978477478, 0.005228727124631405, 0.016559725627303123, 0.017353856936097145, -0.07904531061649323, -0.01775510236620903, 0.018206503242254257, -0.018239939585328102, 0.0009320592507719994, 0.01807275414466858, -0.024175025522708893, 0.016785426065325737, 0.026866713538765907, 0.019778046756982803, -0.0402248352766037, -0.050389714539051056, 0.022302547469735146, 0.05801337584853172, -0.062025826424360275, 0.014720684848725796, 0.06610515713691711, -0.03457396477460861, 0.02195145934820175, -0.05179407447576523, -0.034975212067365646, 0.0015318372752517462, -0.03902110084891319, -0.07804220169782639, -0.02096506394445896, 0.03258445858955383, -0.026749683544039726, -0.004493110813200474, 0.005312319844961166, 0.006043756380677223, -0.018591029569506645, -0.01603309065103531, 0.017404012382030487, -0.033437103033065796, 0.028722472488880157, -0.01027354970574379, -0.02011241763830185, 0.008175372146070004, -0.05724432319402695, -0.039756715297698975, -0.03828548267483711, 0.050690650939941406, 0.06567047536373138, -0.00850974302738905, -0.008702006191015244, 0.05420154333114624, 0.015539893880486488, -0.110141821205616, -0.0004937197081744671, -0.003044866258278489, 0.010206676088273525, 0.029341058805584908, -0.0025077827740460634, -0.04112763702869415, 0.053800299763679504, 0.08118528872728348, -0.001354202744551003, 0.01057448424398899, 0.020496943965554237, -0.018708059564232826, -0.0402248352766037, 0.013249452225863934, -0.011276663281023502, 0.06831200420856476, 0.013424997217953205, -0.049654100090265274, -0.029591836035251617, -0.00813775509595871, 0.025880318135023117, 0.019644297659397125, -0.023288942873477936, 0.00072516716318205, 0.06490141898393631, 0.007761587854474783, -0.027384987100958824, 0.008133575320243835, 0.004706272389739752, 0.013500230386853218, 0.014394673518836498, 0.02511126548051834, 0.08526461571455002, -0.0028860399033874273, -0.003671811893582344, 0.03514239564538002, 0.0017627623165026307, 0.05871555581688881, -0.04911910369992256, 0.019209615886211395, 0.03345382213592529, -0.0010793914552778006, -0.03514239564538002, -0.02246973291039467, -0.021449901163578033, -0.011903609149158001, 0.0005112219951115549, -0.04236480966210365, 0.03410584479570389, -0.03734924644231796, 0.014051943086087704, 0.02715092897415161, 0.037516430020332336, 0.0011608944041654468, 0.09121642261743546, 0.016718551516532898, 0.05079096183180809, 0.0297088660299778, -0.016225354745984077, -0.017905568704009056, 0.013725930824875832, 0.0022423758637160063, 0.008334198035299778, -0.01255563274025917, 0.005755361635237932, -0.0007998782093636692, 0.03194915130734444, 0.04443791136145592, -0.03285195305943489, 0.005466966424137354, -0.013717572204768658, 0.011067681014537811, -0.022369422018527985, -0.001704247435554862, 0.019209615886211395, -0.03106306865811348, -0.03193243220448494, 0.025696413591504097, -0.006390666589140892, -0.03348726034164429, -0.03905453532934189, 0.09904070198535919, -0.007669635582715273, 0.04895192012190819, 0.023740343749523163, 0.0272178016602993, 0.05349936708807945, -0.0020584717858582735, 0.053432490676641464, 0.04156231880187988, -0.006110630929470062, 0.02153349481523037, 0.07182289659976959, -0.01246368046849966, 0.03922172263264656, 0.04119451344013214, 0.03246742859482765, 0.022135362029075623, -0.12070794403553009, 0.05049002543091774, 0.01432779897004366, 0.045942582190036774, -0.045808833092451096, 0.020129136741161346, -0.03738268092274666, 0.0004197923990432173, 0.007230773568153381, -0.027000460773706436, 0.03477458655834198, -0.02648218534886837, 0.02944136969745159, 0.02785310707986355, 0.008154473267495632, -0.004401159007102251, -0.02327222377061844, 0.0021713220048695803, 0.00226536369882524, -0.048283178359270096, 0.03173181042075157, 0.04443791136145592, -0.05848149582743645, 0.03333679214119911, -0.02944136969745159, -0.006846246775239706, 0.06710826605558395, 0.04731350019574165, 0.017521042376756668, 0.036780815571546555, -0.01169462688267231, -0.0047020926140248775, -0.00965496338903904, -0.04651101306080818, -0.01867462322115898, 0.010248471982777119, -0.06212613731622696, 0.010917214676737785, 0.001097154919989407, -0.0761028453707695, 0.009312232956290245, -0.011702986434102058, -0.05513778328895569, -0.0008270458783954382, -0.024827050045132637, -0.0309460386633873, -0.02195145934820175, -0.08526461571455002, 0.026582498103380203, -0.03457396477460861, -0.00010945426765829325, 0.013909835368394852, -0.03069526143372059, 0.013500230386853218, 0.04731350019574165, -0.04283292964100838, -0.019577424973249435, 0.05594027414917946, -0.024526115506887436, 0.009964256547391415, 0.004317565821111202, 0.053164996206760406, 0.02079787850379944, -0.025161420926451683, 0.02487720549106598, 0.031029632315039635, -0.005203649401664734, 0.00860169529914856, -0.07931280881166458, 0.002911117859184742, -0.010039490647614002, 0.036346130073070526, -0.04684538394212723, 0.008029084652662277, 0.06172489374876022, 0.05186094716191292, -0.005132595542818308, 0.017972443252801895, 0.0896783098578453, 0.03348726034164429, -0.010883777402341366, -0.03166493773460388, 0.03258445858955383, -0.029474806040525436, -0.06450017541646957, -0.04246512055397034, 0.007105384487658739, 0.026147814467549324, 0.009119969792664051, -0.044270724058151245, 0.04263230785727501, -0.051560014486312866, -0.0045599848963320255, 0.09041392803192139, 0.03701487556099892, -0.02698374353349209, -0.06256081908941269, 0.04534071311354637, 0.02735155075788498, 0.05102502182126045, 0.025997348129749298, 0.019778046756982803, -0.004334284458309412, 0.002175501547753811, -0.052496254444122314, -0.0032747462391853333, 0.0017982892459258437, -0.0025098726619035006, -0.032266806811094284, -0.008777239359915257, 0.05145970359444618, 0.017554478719830513, -0.013241092674434185, -0.010683154687285423, -0.01326617132872343, 0.05115876719355583, 0.01862446591258049, 0.008910988457500935, -0.0952957421541214, 0.046678196638822556, -0.00030250128475017846, -0.05440216884016991, -0.012563991360366344, 0.0040333508513867855, 0.0327850803732872, 0.054903723299503326, -0.01745416782796383, -0.03005995601415634, 0.03151446953415871, 0.07356163114309311, 0.03470771387219429, 0.03407241031527519, 0.010975729674100876, 0.014227488078176975, 0.06302893906831741, 0.01757119782269001, -0.07075291126966476, -0.036346130073070526, -0.054669663310050964, 0.0125305550172925, -0.016467774286866188, -0.020814597606658936, -0.017855413258075714, -0.022971291095018387, 0.031832121312618256, -0.03454052656888962, -0.008819036185741425, -0.015381067991256714, 0.013316326774656773, 0.024609709158539772, -0.019209615886211395, -0.011962124146521091, 0.05553903058171272, -0.012045716866850853, 0.020496943965554237, -0.02524501271545887, 0.01930992677807808, 0.03087916597723961, 0.004135751631110907, 0.012655943632125854, 0.026515623554587364, -0.005094978492707014, -0.031397439539432526, 0.037951111793518066, 0.030711980536580086, -0.0383523590862751, 0.04520696401596069, -0.00995589792728424, -0.02696702443063259, 0.024158308282494545, 0.018022598698735237, -0.03701487556099892, 0.035978324711322784, 0.02634843811392784, 0.021500058472156525, 0.008910988457500935, 0.03520927205681801, -0.026833275333046913, -0.0002127696934621781, 0.0346408411860466, 0.015790672972798347, 0.05811368674039841, -0.000419269927078858, 0.01849071867763996, -0.02822091616690159, 0.0340389721095562, -0.04664475843310356, 0.04156231880187988, -0.024208463728427887, 0.08386025577783585, 0.016467774286866188, 0.055472154170274734, -0.008961143903434277, -0.028137322515249252, -0.001031325664371252, 0.0767047181725502, -0.028789347037672997, -0.012664303183555603, 0.06583765894174576, 0.009579730220139027, 0.045808833092451096, -0.06292863190174103, 0.03433990478515625, 0.013600542210042477, 0.037282370030879974, -0.055472154170274734, -0.015431223437190056, 0.008016545325517654, 0.02593047358095646, -0.023305661976337433, 0.01645941473543644, 0.037148620933294296, -0.013533667661249638, 0.0730266347527504, 0.0037742131389677525, 0.04189668968319893, 0.017111437395215034, 0.012070794589817524, -0.035543642938137054, -0.007657096721231937, 0.02982589602470398, 0.0008510787738487124, -0.03878704085946083, -0.02945808880031109, 0.045942582190036774, -0.02648218534886837, -0.013483512215316296, -0.061658021062612534, 0.005170212127268314, -0.003935128916054964, 0.008635131642222404, 0.03698143735527992, 0.00838435348123312, 0.06720858067274094, -0.01930992677807808, 0.04751412570476532, 0.026515623554587364, 0.044705405831336975, -0.05637495592236519, -0.028170760720968246, -0.06767670065164566, -0.03781736269593239, -0.01258907001465559, 0.0048692780546844006, -0.003795111319050193, -0.015673642978072166, 0.05680963769555092, -0.04821630194783211, -0.007723970804363489, 0.023523002862930298, 0.009579730220139027, 0.014561858959496021, -0.017671508714556694, -0.03982359170913696, 0.019878357648849487, -0.046745069324970245, 0.018089473247528076, 0.010683154687285423, 0.011402052827179432, 0.03178196772933006, -0.02295457199215889, -0.02820419706404209, -0.004355182871222496, -0.0011452208273112774, -0.016116684302687645, -0.07188977301120758, 0.03440678119659424, 0.005508762784302235, -0.008192090317606926, -0.05784618854522705, -0.021550213918089867, -0.00209608837030828, -0.046310387551784515, -0.005546379368752241, 0.03301914036273956, 0.015615127049386501, 0.0014869061997160316, -0.04273261874914169, 0.02778623253107071, 0.027685921639204025, -0.06516891717910767, 0.009922460652887821, -0.06653983891010284, 0.010281909257173538, -0.02302144654095173, -0.0210319384932518, -0.06593796610832214, -0.012120950035750866, -0.019961951300501823, 0.13762712478637695, 0.004961230326443911, -0.07142165303230286, -0.0028212557081133127, 0.00017214883700944483, -0.007527527865022421, 0.051325954496860504, 0.0014628733042627573, 0.06205926463007927, 0.01308226678520441, 0.025295168161392212, 0.017061281949281693, 0.03798454999923706, 0.009136688895523548, -0.02215208113193512, 0.018206503242254257, -0.06610515713691711, -0.019042430445551872, -0.021884584799408913, -0.020329758524894714, -0.01048253197222948, 0.031581345945596695, -0.02091490849852562, 0.045875705778598785, 0.0066665224730968475, 0.03892078995704651, 0.015799030661582947, -0.01659316197037697, 0.006411564536392689, 0.027736077085137367, 0.07469849288463593, -0.040993887931108475, 0.013684134930372238, 0.005278882570564747, 0.0046561164781451225, -0.06112302467226982, -0.032383836805820465, 0.0012403075816109776, 0.03086244687438011, -0.02375706285238266, -0.014110458083450794, -0.04911910369992256, -0.0816534087061882, 0.07864406704902649, -0.018540874123573303, -0.03644644469022751, 0.019443675875663757, 0.0061440677382051945, 0.05871555581688881, -0.006281995680183172, -0.051994696259498596, 0.06961604952812195, -0.06690764427185059, -0.0025077827740460634, 0.01745416782796383, -0.07001729309558868, -0.018139628693461418, 0.035543642938137054, -0.03149775043129921, 0.03042776510119438, -0.01101752556860447, 0.04366885870695114, 0.033621009439229965, 0.011376974172890186, -0.06222644820809364, 0.0046393983066082, 0.05995272845029831, -0.003770033363252878, 0.002478525275364518, 0.02863887883722782, -0.027451861649751663, 0.03818517178297043, -0.040124524384737015, 0.015849187970161438, 0.015857545658946037, -0.05881586670875549, 0.008242245763540268, -0.014160613529384136, 0.03617894649505615, 0.003956027328968048, -0.00862677302211523, 0.022937852889299393, 0.06837888062000275, -0.05557246506214142, -0.00909489206969738, -0.03273492306470871, -0.006424103397876024, -0.024776894599199295, -0.08446212112903595, 0.003786752000451088, -0.03134728595614433, -0.02059725672006607, -0.048416927456855774, 0.014520062133669853, 0.06837888062000275, -0.004127392545342445, -0.07289288938045502, -0.013500230386853218, 0.03141415864229202, -0.07509973645210266, 0.005069900769740343, 0.029290903359651566, 0.001083571114577353, -0.027334831655025482, 0.036413006484508514, -0.07021791487932205, 0.052629999816417694, 0.032768361270427704, -0.028070447966456413, 0.011577596887946129, -0.007201516069471836, -0.021984895691275597, -0.016367461532354355, 0.018173065036535263, -0.026833275333046913, -0.08272339403629303, -0.04875129833817482, -0.00581805594265461, -0.009111611172556877, -0.06018678843975067, 0.013216014951467514, -0.03316960856318474, 0.026147814467549324, -0.025194857269525528, -0.006925660185515881, -0.04938660189509392, -0.027301395311951637, 0.03654675558209419, 0.02048022672533989, 0.005295601207762957, -0.09228640794754028, -0.03571082651615143, -0.003937218803912401, 0.06516891717910767, 0.0014043583068996668, -0.03348726034164429, -0.03290211036801338, 0.02302144654095173, -0.06038741022348404, -0.06730888783931732, 0.04774818569421768, 0.031765248626470566, -0.008685288019478321, -0.02778623253107071, -0.05617433413863182, -0.015932779759168625, -0.012923440895974636, 0.013767727650702, 0.04263230785727501, 0.06426611542701721, 0.023222068324685097, 0.007991467602550983, -0.06704138964414597, 0.03571082651615143, -0.07449786365032196, 0.007218234706670046, -0.0027460220735520124, 0.018223222345113754, 0.01689409650862217, 0.050590336322784424, 0.007786665577441454, 0.004944511689245701, -0.036279257386922836, -0.02183442935347557, 0.014804277569055557, -0.007322725839912891, -0.0076779951341450214, -0.03855298087000847, 0.004852559883147478, 0.012647584080696106, 0.023924248293042183, 0.009613167494535446, 0.00031686879810877144, 0.026749683544039726, -0.023523002862930298, -0.0606549046933651, 0.015615127049386501, 0.009997693821787834, -0.016843941062688828, -0.011987201869487762, 0.06854606419801712, 0.010465813800692558, 0.057946499437093735, -0.009922460652887821, -0.05450247973203659, 0.006390666589140892, 0.02394096553325653, -0.0032245907932519913, -0.012739536352455616, -0.04503978043794632, -0.04313386231660843, -0.005082439631223679, 0.02746858075261116, 0.016919175162911415, -0.0029675429686903954, 0.06396517902612686, 0.05981897935271263, 0.00392885971814394, -0.08553211390972137, -0.002432549372315407, -0.07316038012504578, 0.007381240837275982, -0.03427303209900856, -0.010816902853548527, -0.005040643271058798, -0.019477112218737602, 0.04025827348232269, 0.021065374836325645, -0.025913754478096962, 0.042231060564517975, -0.06543641537427902, -0.024091433733701706, -0.04300011694431305, -0.019410239532589912, -0.027084054425358772, 0.02698374353349209, -0.026866713538765907, -0.004706272389739752, 0.024325493723154068, 0.006277816370129585, -0.07683846354484558, -0.018858525902032852, 0.06934855133295059, -0.011452208273112774, -0.0272178016602993, -0.00553802028298378, 0.00977199338376522, -0.005864032078534365, 0.015916060656309128, 0.012881644070148468, 0.037215497344732285, -0.01782197691500187, 0.03131384775042534, -0.01961086131632328, 0.03654675558209419, -0.01296523679047823, 0.005103338044136763, -0.06781044602394104, -0.01547301933169365, 0.03507552295923233, -0.02412487007677555, -0.0606214702129364, 0.07764095813035965, 0.0023238786961883307, 0.01154415961354971, 0.010415657423436642, 0.0005250670365057886, -0.02684999443590641, -0.031163381412625313, 0.03348726034164429, -0.022135362029075623, -0.0022507349494844675, -0.005107517819851637, -0.007247492205351591, 0.0037198776844888926, -0.03420615568757057, 0.00021916977129876614, -0.045006342232227325, -0.026131097227334976, 0.02220223657786846, -0.014871152117848396, -0.000973855669144541, -0.011535800993442535 ]
7,447
pathlib
link_to
Make the target path a hard link pointing to this path. Note this function does not make this path a hard link to *target*, despite the implication of the function and argument names. The order of arguments (target, link) is the reverse of Path.symlink_to, but matches that of os.link. Deprecated since Python 3.10 and scheduled for removal in Python 3.12. Use `hardlink_to()` instead.
def link_to(self, target): """ Make the target path a hard link pointing to this path. Note this function does not make this path a hard link to *target*, despite the implication of the function and argument names. The order of arguments (target, link) is the reverse of Path.symlink_to, but matches that of os.link. Deprecated since Python 3.10 and scheduled for removal in Python 3.12. Use `hardlink_to()` instead. """ warnings.warn("pathlib.Path.link_to() is deprecated and is scheduled " "for removal in Python 3.12. " "Use pathlib.Path.hardlink_to() instead.", DeprecationWarning, stacklevel=2) self._accessor.link(self, target)
(self, target)
[ 0.023837819695472717, 0.02282608672976494, -0.039759282022714615, 0.01980864256620407, -0.020997870713472366, -0.01056993380188942, -0.022329095751047134, 0.04898911342024803, -0.0004537261847872287, 0.01911640353500843, 0.03164767846465111, -0.04391270503401756, 0.12751369178295135, -0.022524341940879822, -0.003410157049074769, 0.025879032909870148, 0.01452811248600483, 0.01402224600315094, 0.04050476849079132, 0.08271350711584091, 0.05239705368876457, -0.0061192018911242485, -0.010782930068671703, -0.030476199463009834, -0.026961762458086014, 0.13511055707931519, -0.06947224587202072, 0.04199574142694473, -0.004193361848592758, -0.03961728513240814, -0.030742444097995758, -0.03961728513240814, 0.0638633444905281, 0.05193556100130081, 0.04646866023540497, 0.05111907422542572, -0.005063096061348915, 0.021743357181549072, -0.0429542250931263, -0.02011038549244404, -0.004484012722969055, 0.033103153109550476, -0.00855978298932314, 0.01695094257593155, 0.03869429975748062, 0.016391828656196594, 0.005719834007322788, 0.03145243227481842, -0.024263810366392136, -0.04252823069691658, -0.01205203216522932, -0.006895750295370817, -0.010889427736401558, 0.007716672960668802, -0.05669247359037399, 0.029162723571062088, 0.020305633544921875, 0.00984219741076231, -0.017909426242113113, -0.005387027747929096, 0.04437419772148132, -0.0013134762411937118, 0.04494218900799751, 0.029996957629919052, 0.025843532755970955, -0.0260032806545496, -0.01663144864141941, -0.0005885128048248589, 0.00868403073400259, 0.05903543159365654, -0.0377713181078434, 0.009904321283102036, -0.017847301438450813, -0.018095796927809715, 0.02286158688366413, 0.005901768337935209, -0.004058020189404488, -0.008355661295354366, 0.010534434579312801, -0.058751437813043594, -0.047675639390945435, -0.05296504124999046, -0.0073128677904605865, -0.02772499807178974, -0.03720332682132721, 0.021299615502357483, 0.055130504071712494, 0.017341436818242073, -0.0069489991292357445, -0.049947597086429596, -0.028204239904880524, 0.030369700863957405, -0.0039315540343523026, -0.013880249112844467, 0.01193665899336338, -0.022258097305893898, -0.00033003310090862215, -0.021512610837817192, 0.025257794186472893, -0.003279253141954541, 0.013365508057177067, 0.006407634355127811, -0.008999086916446686, 0.04075326398015022, 0.02238234505057335, -0.023553824052214622, -0.02816873975098133, -0.011918909847736359, -0.05882243812084198, -0.023713571950793266, -0.0900263711810112, 0.016143333166837692, 0.000614582619164139, -0.035215362906455994, -0.033067651093006134, -0.0208203736692667, 0.035339612513780594, -0.02928697131574154, 0.01799817383289337, -0.021743357181549072, -0.050480086356401443, 0.013365508057177067, -0.03187842294573784, -0.07160220295190811, 0.011688163504004478, -0.010871678590774536, -0.01589483767747879, 0.005023159086704254, 0.007579112891107798, -0.05477550998330116, -0.04859862104058266, 0.018850158900022507, -0.01899215579032898, 0.058751437813043594, 0.0035299675073474646, -0.014829857274889946, -0.044622693210840225, 0.027636250481009483, 0.029659714549779892, 0.023837819695472717, 0.0015342378756031394, -0.05179356411099434, -0.010445686057209969, -0.0031816300470381975, 0.03780681639909744, -0.0039559598080813885, -0.018619412556290627, 0.025062546133995056, 0.02342957630753517, 0.023039083927869797, 0.047888632863759995, -0.03289015591144562, 0.07220569252967834, 0.05754445865750313, 0.00038106340798549354, 0.04206673800945282, -0.043025221675634384, -0.005577836651355028, 0.04334471747279167, -0.002074493793770671, 0.0061768884770572186, -0.046646155416965485, 0.03812631219625473, 0.03317414969205856, 0.007397178560495377, -0.004148987587541342, -0.0002838562068063766, -0.05190006271004677, 0.03904929384589195, 0.03347589448094368, -0.009753448888659477, -0.02554178796708584, 0.0055645243264734745, 0.006665004417300224, -0.015601967461407185, -0.01522034965455532, 0.043380215764045715, 0.013658378273248672, 0.03471837192773819, -0.009425079450011253, -0.0080849789083004, -0.0029508841689676046, 0.008297975175082684, -0.025080297142267227, -0.024920549243688583, 0.04717864841222763, -0.025967780500650406, 0.004690352827310562, -0.011705913580954075, -0.008231413550674915, 0.008204788900911808, 0.036919333040714264, 0.03610284626483917, 0.03391963616013527, -0.0030951001681387424, -0.07951856404542923, 0.006904625333845615, -0.024973798543214798, -0.05147406831383705, 0.09513828158378601, 0.016320830211043358, 0.02882547862827778, -0.021406112238764763, 0.011350919492542744, 0.0687977597117424, -0.015752840787172318, 0.044729191809892654, 0.03301440179347992, -0.011022550985217094, 0.0418892428278923, -0.00047369455569423735, -0.03312090039253235, -0.038410305976867676, 0.006234574597328901, 0.0012568990932777524, 0.030564947053790092, -0.04515518248081207, 0.046539656817913055, 0.004712539725005627, 0.04409020394086838, 0.05676347389817238, -0.027441004291176796, 0.000507252523675561, 0.02614527754485607, 0.006270074285566807, -0.021796606481075287, 0.03848130255937576, -0.008222538977861404, 0.09023936837911606, -0.0452616810798645, 0.02545304037630558, -0.03445212543010712, -0.024973798543214798, -0.013711626641452312, 0.08782541006803513, -0.06936574727296829, -0.0012213997542858124, -0.015149351209402084, -0.021299615502357483, 0.013480881229043007, -0.043273717164993286, -0.007095434237271547, 0.04440969601273537, 0.03597860038280487, 0.03943978622555733, 0.03143468126654625, -0.022080600261688232, -0.012504649348556995, 0.020447630435228348, -0.059567924588918686, -0.014829857274889946, 0.008999086916446686, -0.011244421824812889, 0.008564219810068607, 0.0024538931902498007, 0.000361927057383582, 0.00048173737013712525, -0.018459666520357132, -0.04093075916171074, 0.03562360629439354, -0.009691325016319752, -0.0077699217945337296, -0.035233113914728165, -0.03706132993102074, -0.001667360425926745, -0.016808945685625076, -0.052503552287817, 0.020305633544921875, -0.020731624215841293, 0.013906873762607574, 0.11771587282419205, -0.04412570223212242, -0.01711956597864628, 0.04614916443824768, -0.007641236763447523, -0.0117680374532938, -0.024920549243688583, 0.015743965283036232, -0.006141388788819313, 0.011785786598920822, -0.017394686117768288, -0.03235766664147377, 0.00288432277739048, 0.001779405283741653, -0.007698923349380493, -0.018228920176625252, -0.06002941355109215, 0.046078167855739594, -0.021086618304252625, -0.014235242269933224, 0.02554178796708584, 0.0262517761439085, -0.02094462141394615, 0.04128575325012207, 0.028346236795186996, 0.05087057873606682, -0.057757455855607986, 0.007290680892765522, 0.028647981584072113, -0.0626208707690239, -0.0015519876033067703, -0.0056887720711529255, -0.058325447142124176, 0.062159374356269836, -0.04249273240566254, -0.005546774715185165, 0.07075022161006927, -0.004969910252839327, 0.05509500205516815, 0.01722606271505356, 0.01413761917501688, -0.05903543159365654, 0.035925351083278656, 0.028523733839392662, 0.02046537958085537, 0.022559842094779015, -0.022524341940879822, 0.006003828719258308, -0.013622879050672054, -0.006318885833024979, -0.05765095725655556, 0.0520065613090992, -0.027742749080061913, -0.016267580911517143, -0.03551710769534111, -0.016498327255249023, 0.031026439741253853, 0.020731624215841293, -0.020412130281329155, 0.03979478031396866, 0.016791196539998055, 0.03395513445138931, 0.04082426056265831, 0.004424107726663351, -0.08782541006803513, 0.021548110991716385, 0.017758553847670555, -0.026322774589061737, 0.004131237976253033, 0.009682449512183666, 0.02543528936803341, 0.010782930068671703, 0.007681173738092184, -0.0112532963976264, -0.001868153689429164, 0.02364257164299488, -0.05055108666419983, -0.0117680374532938, -0.010223815217614174, 0.0062035126611590385, 0.0016174395568668842, 0.05970992147922516, -0.033653389662504196, -0.016533825546503067, -0.004109050612896681, -0.02092687226831913, -0.02161910943686962, -0.013427631929516792, -0.00243392470292747, -0.03569460287690163, 0.0005119672860018909, 0.03450537472963333, -0.03541060909628868, -0.0319671705365181, 0.03445212543010712, 0.03191392123699188, -0.044161200523376465, 0.03516211360692978, 0.02376681938767433, 0.02680201455950737, -0.0016895475564524531, -0.10209615528583527, 0.08569545298814774, 0.04242173209786415, 0.0766076147556305, 0.00554233742877841, 0.013214635662734509, -0.008022855035960674, -0.013897998258471489, 0.02566603571176529, 0.049592602998018265, -0.03244641423225403, 0.04284772649407387, -0.003616497153416276, 0.013161387294530869, -0.016888819634914398, 0.06876225769519806, -0.030351951718330383, 0.05655047670006752, 0.008444409817457199, 0.04593617096543312, -0.016720198094844818, 0.006665004417300224, 0.025364290922880173, 0.036812834441661835, -0.018113547936081886, 0.03367114067077637, 0.03099093958735466, -0.012620021589100361, 0.012637771666049957, 0.013161387294530869, 0.04128575325012207, -0.11750287562608719, 0.033422645181417465, -0.0070066857151687145, 0.026606768369674683, 0.028683481737971306, 0.05907093361020088, 0.007587987929582596, 0.049592602998018265, -0.014705609530210495, 0.03164767846465111, -0.06563831120729446, -0.004690352827310562, 0.053000543266534805, 0.0540655218064785, -0.0016451734118163586, -0.04313172027468681, 0.0025759220588952303, -0.059567924588918686, -0.012478024698793888, -0.016329703852534294, -0.0488826148211956, 0.03876530006527901, 0.04000777751207352, -0.07028873264789581, -0.006736003328114748, 0.040540266782045364, -0.006434258539229631, 0.0626208707690239, 0.03961728513240814, 0.008111603558063507, 0.0418892428278923, -0.0020256820134818554, 0.009655825793743134, 0.011457418091595173, 0.043380215764045715, -0.03770031780004501, 0.010889427736401558, -0.02138836309313774, -0.0011903378181159496, -0.04859862104058266, -0.008657406084239483, -0.04039826989173889, 0.0005100259440951049, -0.06365034729242325, -0.04288322478532791, 0.029162723571062088, -0.005116344895213842, 0.017483433708548546, 0.03617384657263756, -0.01833541877567768, 0.02012813650071621, 0.010321438312530518, -0.021015619859099388, -0.05857394263148308, -0.03830380737781525, -0.025879032909870148, 0.017163939774036407, 0.07174420356750488, 0.0013855843571946025, 0.0208203736692667, 0.05917742848396301, -0.062159374356269836, -0.03361789137125015, 0.03880079835653305, 0.0025847970973700285, -0.006620630156248808, -0.015042852610349655, -0.01664919964969158, 0.04895361512899399, -0.03706132993102074, -0.005511275492608547, 0.053888026624917984, 0.008262475952506065, 0.003303658915683627, 0.001678453991189599, 0.0032304415944963694, -0.028878727927803993, -0.03406163305044174, -0.01205203216522932, -0.08221651613712311, 0.028523733839392662, 0.043380215764045715, 0.0004603822890203446, -0.01141304336488247, 0.03812631219625473, 0.0488826148211956, -0.041214752942323685, -0.010774055495858192, 0.038836296647787094, 0.013711626641452312, -0.038871798664331436, -0.02023463323712349, -0.003387969918549061, 0.02183210477232933, -0.04852762073278427, 0.036386843770742416, -0.07103421539068222, -0.019844140857458115, 0.017101814970374107, -0.0339018851518631, -0.04898911342024803, -0.0023806756362318993, 0.00111712038051337, 0.08313949406147003, 0.010871678590774536, -0.003265941049903631, -0.04771113768219948, 0.007698923349380493, 0.017723053693771362, 0.03667083755135536, 0.015690715983510017, 0.07419365644454956, 0.03551710769534111, 0.009300831705331802, -0.09265332669019699, 0.006163576152175665, 0.05655047670006752, 0.002322989283129573, -0.016471702605485916, -0.00864409375935793, 0.011741412803530693, -0.06578031182289124, -0.023323077708482742, -0.02815099060535431, -0.010703056119382381, 0.05168706551194191, 0.021193116903305054, 0.027192508801817894, 0.004961035214364529, 0.02362482249736786, -0.008546470664441586, -0.014465988613665104, 0.008266912773251534, 0.09038136899471283, 0.008040604181587696, -0.017075190320611, -0.003416813211515546, -0.027636250481009483, -0.008905901573598385, -0.028683481737971306, -0.10380012542009354, -0.05296504124999046, 0.004592729266732931, -0.01245140004903078, -0.009141084738075733, -0.014430489391088486, 0.04852762073278427, -0.05488200858235359, -0.016746822744607925, 0.040646765381097794, 0.033884137868881226, 0.08193251490592957, -0.018246669322252274, -0.03367114067077637, 0.04895361512899399, -0.018459666520357132, 0.022240348160266876, 0.012877392582595348, -0.10081817954778671, -0.03656433895230293, 0.008502095937728882, 0.0164184533059597, 0.035108864307403564, -0.006003828719258308, 0.0244413074105978, -0.018406417220830917, 0.00828466285020113, -0.04739164188504219, -0.011847910471260548, 0.04025627300143242, -0.00017846748232841492, -0.0012923985486850142, -0.009930945001542568, 0.018743660300970078, 0.02476080134510994, -0.02465430460870266, 0.032215666025877, -0.007246306631714106, -0.06634829938411713, 0.0669872909784317, -0.0029353532008826733, 0.030493948608636856, -0.004448513500392437, -0.0639343410730362, 0.004992097150534391, 0.027103759348392487, -0.025808032602071762, -0.07632362097501755, -0.05765095725655556, -0.04820812866091728, -0.02376681938767433, -0.037167828530073166, -0.024689802899956703, -0.04547467827796936, -0.04022077098488808, -0.03823280707001686, 0.041676245629787445, 0.03425687924027443, 0.01980864256620407, -0.03278365731239319, -0.01097817625850439, 0.03943978622555733, 0.009762323461472988, 0.01277976855635643, -0.0034966866951435804, -0.05598248913884163, -0.06471533328294754, 0.002635827288031578, -0.06538981944322586, 0.04760463908314705, -0.00755248824134469, -0.006678316742181778, -0.021867604926228523, -0.039297789335250854, 0.003115068655461073, -0.044516194611787796, -0.014430489391088486, 0.026553519070148468, -0.020305633544921875, -0.03961728513240814, 0.008821590803563595, 0.03537511080503464, -0.05690547078847885, -0.02907397411763668, 0.007215244695544243, 0.0009024602477438748, -0.05179356411099434, 0.01680007204413414, -0.0504445880651474, -0.04433869943022728, 0.05236155167222023, 0.03979478031396866, -0.042705729603767395, -0.07231219112873077, 0.016329703852534294, 0.003858336480334401, 0.06365034729242325, 0.012620021589100361, -0.03519761189818382, 0.01833541877567768, -0.06198187917470932, -0.028328487649559975, -0.03576560318470001, -0.02183210477232933, 0.020199134945869446, -0.031026439741253853, 0.019968388602137566, 0.018113547936081886, -0.016959818080067635, 0.024015314877033234, -0.021122118458151817, 0.011457418091595173, 0.09684225171804428, 0.04267022758722305, 0.03858780115842819, -0.06144938990473747, -0.01057880837470293, 0.021690107882022858, 0.01356962975114584, -0.011022550985217094, 0.004819037858396769, -0.022755088284611702, 0.0009362955461256206, 0.017048567533493042, 0.023358577862381935, -0.012699895538389683, -0.08093853294849396, 0.05296504124999046, 0.011306545697152615, -0.041356753557920456, -0.06453783065080643, -0.03823280707001686, 0.0018648256082087755, -0.03383088856935501, 0.010481185279786587, -0.022524341940879822, 0.0015231443103402853, -0.03876530006527901, -0.04671715572476387, -0.00001255824463441968, -0.0501960925757885, 0.025488538667559624, -0.04025627300143242, 0.03372438997030258, 0.06922374665737152, 0.034558624029159546, -0.01029481366276741, -0.045510176569223404, 0.017359185963869095, -0.0052583422511816025, 0.026624519377946854, 0.04898911342024803, -0.0817195251584053, 0.0037740254774689674, 0.006696066353470087, -0.02905622497200966, 0.04930860921740532, -0.014430489391088486, 0.0864054411649704, 0.07788559049367905, 0.008342348970472813, -0.04465819150209427, -0.011741412803530693, -0.030742444097995758, -0.010951551608741283, -0.051403071731328964, -0.05711846798658371, 0.007206369657069445, 0.025967780500650406, 0.015522094443440437, 0.05115457624197006, -0.02454780600965023, 0.075045645236969, -0.11984582990407944, -0.019631145521998405, -0.041214752942323685, -0.027991244569420815, -0.006336635444313288, 0.0244413074105978, -0.046752654016017914, 0.01957789622247219, -0.010774055495858192, 0.026322774589061737, -0.00040380519931204617, -0.04242173209786415, 0.013835874386131763, 0.034097135066986084, -0.04625566303730011, -0.023234330117702484, 0.021991852670907974, -0.0042887660674750805, 0.006469758227467537, -0.0011969939805567265, -0.02227584645152092, 0.01080955471843481, 0.031132936477661133, 0.02792024426162243, 0.019506897777318954, 0.02973071299493313, 0.003609840990975499, -0.05765095725655556, -0.06166238337755203, 0.0657448098063469, -0.050941579043865204, -0.01069418154656887, 0.022879336029291153, -0.010782930068671703, 0.0205718781799078, 0.008280225098133087, -0.011350919492542744, 0.006940124556422234, -0.012522398494184017, 0.07525864243507385, -0.023731321096420288, 0.0018049204954877496, -0.03951078653335571, 0.02339407615363598, -0.059425923973321915, -0.03979478031396866, 0.03629809245467186, 0.014714484103024006, -0.02905622497200966, 0.03244641423225403, 0.030919941142201424, -0.055378999561071396, 0.008089416660368443 ]
7,448
pathlib
lstat
Like stat(), except if the path points to a symlink, the symlink's status information is returned, rather than its target's.
def lstat(self): """ Like stat(), except if the path points to a symlink, the symlink's status information is returned, rather than its target's. """ return self.stat(follow_symlinks=False)
(self)
[ 0.032464612275362015, 0.0023248959332704544, 0.030685268342494965, 0.05663681402802467, 0.07318805903196335, 0.007432113401591778, 0.012018956243991852, 0.006756466347724199, 0.013269532471895218, -0.01117964368313551, -0.01358007825911045, -0.03874266892671585, 0.05539463087916374, -0.03471396863460541, -0.015904974192380905, 0.037601206451654434, -0.027646956965327263, -0.0054933009669184685, -0.017407342791557312, -0.01927061751484871, 0.025750111788511276, 0.030450262129306793, 0.03981699049472809, -0.06936079263687134, -0.024826867505908012, 0.048377979546785355, 0.03229675069451332, -0.047840818762779236, 0.029845956712961197, -0.006110196001827717, -0.04381211847066879, 0.02103317342698574, 0.005808043293654919, -0.04586004093289375, -0.020680662244558334, 0.02462543174624443, -0.019707059487700462, 0.008212674409151077, -0.06922650337219238, -0.02333289012312889, -0.01843130588531494, 0.022963592782616615, -0.04381211847066879, 0.04213349148631096, 0.06130339205265045, -0.005476514808833599, -0.07258375734090805, -0.04045486822724342, -0.024575073271989822, -0.06126981973648071, 0.009484232403337955, 0.039615556597709656, -0.012253964319825172, -0.008947072550654411, 0.01180912833660841, 0.002748748753219843, 0.021973203867673874, 0.027025865390896797, -0.04159633442759514, 0.008695278316736221, 0.0182634424418211, -0.021100319921970367, -0.0032880071084946394, -0.029594162479043007, 0.013512932695448399, -0.06882363557815552, -0.01920347288250923, -0.018683098256587982, -0.02360147051513195, 0.03669474646449089, -0.033992160111665726, 0.02410505898296833, -0.010541766881942749, -0.020898884162306786, 0.013185600750148296, -0.00021087728964630514, 0.01925383135676384, 0.02408827282488346, 0.027663743123412132, -0.00998781993985176, -0.030097750946879387, -0.018884534016251564, 0.027378378435969353, 0.0238196924328804, -0.01876703090965748, -0.025716539472341537, 0.08406554907560349, -0.06137053668498993, -0.030450262129306793, 0.04844512417912483, -0.04028700664639473, 0.05730826407670975, 0.0034390834625810385, -0.04458428546786308, -0.006357793230563402, -0.012648440897464752, -0.03773549571633339, 0.014410997740924358, 0.041159890592098236, -0.02742873691022396, -0.003770611947402358, -0.0004904732923023403, 0.004859620239585638, 0.020193861797451973, 0.03686261177062988, 0.011120892129838467, -0.011120892129838467, -0.03572114557027817, -0.04085773974657059, -0.007218088489025831, -0.05818115174770355, -0.02027779258787632, 0.0057702744379639626, -0.009266011416912079, 0.048680130392313004, 0.018783817067742348, 0.023165028542280197, -0.05468960851430893, -0.040152717381715775, -0.006513066124171019, 0.01473832968622446, 0.06348560750484467, 0.012119674123823643, -0.05156736820936203, 0.023047523573040962, 0.0461621955037117, 0.001958745764568448, -0.0274623092263937, 0.06543280929327011, -0.00033388903830200434, 0.014369032345712185, 0.0073271989822387695, 0.012782731093466282, 0.09769599139690399, -0.003447476541623473, -0.016886970028281212, 0.00400142278522253, 0.05109735205769539, 0.0036635994911193848, 0.046061474829912186, 0.01513280626386404, -0.02799946814775467, 0.004490322433412075, -0.02131853997707367, 0.010592125356197357, 0.045322880148887634, 0.005690539721399546, 0.020395295694470406, 0.039380546659231186, 0.017390556633472443, 0.07681389153003693, -0.10219470411539078, 0.06190769746899605, 0.02049601450562477, -0.03264926001429558, 0.031239215284585953, -0.05260811373591423, -0.0044147842563688755, 0.008162315003573895, -0.03429431468248367, -0.043778546154499054, -0.03679546341300011, -0.007104781456291676, -0.07573956996202469, -0.03253175690770149, -0.004532288294285536, -0.014713150449097157, -0.012371468357741833, -0.005568839143961668, 0.023282531648874283, 0.04183134064078331, -0.002320699393749237, 0.05287669599056244, 0.02588440105319023, 0.03029918484389782, 0.03830622881650925, 0.011322326958179474, 0.07312091439962387, 0.020328151062130928, 0.021385684609413147, 0.007285233587026596, -0.024541500955820084, -0.021469617262482643, -0.014864226803183556, -0.026253698393702507, 0.08513987064361572, -0.0100213922560215, -0.02588440105319023, 0.0067354836501181126, 0.07466524839401245, -0.03389144316315651, -0.0008340668864548206, 0.014595646411180496, -0.004372818861156702, -0.032699618488550186, 0.00378320156596601, -0.04021986201405525, 0.009828350506722927, -0.03541899099946022, 0.05522676929831505, 0.007688103709369898, -0.0021045764442533255, -0.034814685583114624, 0.01817951165139675, -0.00949262548238039, -0.008678492158651352, -0.02952701784670353, 0.026874789968132973, -0.04136132448911667, 0.02979559823870659, 0.013882230967283249, -0.02645513415336609, -0.04361068457365036, 0.05472318083047867, 0.0003194633754901588, -0.013168814592063427, -0.02543117292225361, 0.07285233587026596, -0.01903560943901539, -0.0009715043706819415, 0.04213349148631096, -0.05905403569340706, 0.006563424598425627, 0.008128742687404156, -0.020093144848942757, 0.0005090955528430641, 0.0636870414018631, -0.009903889149427414, 0.023534325882792473, -0.0064920829609036446, 0.007818196900188923, -0.0225607231259346, 0.0287212785333395, 0.021721409633755684, 0.002400434110313654, -0.013563292101025581, 0.001200217055156827, 0.05495819076895714, -0.02383647859096527, -0.01767592318356037, -0.0825212150812149, 0.00160623446572572, 0.05468960851430893, 0.049888741225004196, 0.0020269399974495173, -0.05730826407670975, -0.028805209323763847, 0.027076225727796555, -0.05482390150427818, -0.059188324958086014, -0.020177075639367104, 0.021385684609413147, -0.026874789968132973, -0.058919746428728104, 0.00762515515089035, -0.0804397240281105, -0.06556709855794907, -0.00060168222989887, -0.040387723594903946, 0.012211998924612999, 0.03619116172194481, -0.04851226881146431, -0.03854123502969742, -0.054521746933460236, -0.002352173672989011, -0.023668615147471428, 0.02870449237525463, 0.008628133684396744, -0.00998781993985176, 0.049687307327985764, 0.05267525836825371, -0.059691913425922394, -0.07681389153003693, -0.005669556558132172, -0.042704224586486816, 0.01794450357556343, 0.016601603478193283, -0.0001585513964528218, 0.05485747382044792, -0.02232571505010128, -0.015871401876211166, 0.03053419291973114, -0.02595154568552971, -0.009341549128293991, -0.04827726259827614, 0.004397998098284006, -0.037567634135484695, -0.012413433752954006, -0.10676056146621704, 0.026102622970938683, 0.09346584975719452, 0.018145939335227013, -0.03056776523590088, -0.028654132038354874, 0.09689024835824966, 0.028889140114188194, -0.021251395344734192, -0.007709086406975985, 0.015099233947694302, 0.002637539990246296, -0.0709722712635994, -0.03211209923028946, -0.025296881794929504, 0.020865311846137047, -0.05609965696930885, -0.0074405064806342125, 0.03155815601348877, -0.04693436250090599, -0.0031872896943241358, 0.03058455139398575, 0.011465010233223438, 0.01025640033185482, -0.0029312993865460157, 0.022460006177425385, 0.03191066533327103, 0.0018548808293417096, -0.021217823028564453, 0.02539760060608387, -0.047605812549591064, 0.051164496690034866, -0.050190895795822144, 0.06778288632631302, 0.04035415127873421, -0.00947583932429552, -0.012396647594869137, 0.003306891769170761, 0.06469421833753586, 0.03410966321825981, 0.016458921134471893, 0.040656302124261856, 0.008611347526311874, -0.0457257516682148, 0.02361825667321682, -0.018582381308078766, -0.06936079263687134, 0.04539002478122711, 0.00512820016592741, -0.04021986201405525, -0.006588603835552931, -0.02333289012312889, 0.030735628679394722, 0.010441049002110958, -0.02410505898296833, 0.007885342463850975, 0.02439042553305626, 0.019690273329615593, 0.028049828484654427, 0.0012369370087981224, 0.002473874017596245, -0.011666445061564445, 0.024793295189738274, 0.04569217935204506, -0.12045814841985703, 0.0022598491050302982, -0.010583732277154922, 0.024256134405732155, -0.021503189578652382, -0.0161819476634264, 0.02155354805290699, 0.034747540950775146, -0.02897307090461254, 0.020613517612218857, -0.03224639222025871, -0.04750509560108185, 0.0478072464466095, -0.02237607352435589, 0.021872486919164658, -0.021906059235334396, 0.028821995481848717, 0.004998106509447098, -0.03723190724849701, -0.044785719364881516, -0.009459053166210651, -0.03867552429437637, 0.0461621955037117, -0.02106674574315548, 0.05586464703083038, -0.03226317837834358, -0.033270351588726044, 0.008837961591780186, -0.010063358582556248, 0.006882363464683294, 0.00006062066677259281, -0.009450660087168217, 0.01283308956772089, 0.025498317554593086, -0.01153215579688549, -0.031457435339689255, -0.006622176617383957, 0.01053337287157774, -0.013966161757707596, -0.024239348247647285, -0.021083533763885498, 0.004377015400677919, -0.003235550131648779, -0.009719240479171276, 0.0739266574382782, 0.04256993532180786, 0.0018024238524958491, -0.0305006206035614, 0.022745372727513313, 0.010600518435239792, -0.05445460230112076, 0.027025865390896797, -0.04790796339511871, 0.02128496766090393, 0.019052395597100258, 0.055327486246824265, -0.05267525836825371, -0.02235928736627102, -0.01371436845511198, 0.05002303048968315, -0.050190895795822144, -0.024591859430074692, 0.0146208256483078, 0.036056868731975555, 0.00022504069784190506, 0.023047523573040962, 0.04878085106611252, 0.03357250615954399, 0.006294844672083855, -0.05878545716404915, -0.004767295438796282, 0.026371201500296593, 0.03390822932124138, -0.02408827282488346, 0.0020405787508934736, 0.012421826831996441, -0.04441642388701439, 0.04646434634923935, 0.06996510177850723, 0.04596075788140297, 0.024474356323480606, -0.0009888152126222849, -0.03139029070734978, -0.010449442081153393, 0.02360147051513195, -0.04575932398438454, -0.060128357261419296, 0.004228037316352129, 0.03676189109683037, 0.0394812636077404, 0.007868555374443531, 0.046565063297748566, 0.03572114557027817, -0.014729936607182026, -0.028872353956103325, -0.0415627621114254, 0.05099663510918617, -0.004507108591496944, -0.05395101383328438, -0.006047247443348169, 0.06949508190155029, 0.03723190724849701, -0.1196524053812027, -0.028033040463924408, -0.10105323791503906, 0.010264793410897255, -0.05881902948021889, 0.01742413081228733, -0.04851226881146431, 0.04035415127873421, -0.019153114408254623, -0.07399380207061768, -0.0018800602992996573, -0.07674674689769745, 0.029107362031936646, -0.003722351510077715, -0.025599034503102303, -0.015090840868651867, 0.040924884378910065, -0.022275356575846672, -0.04904942959547043, 0.04602790251374245, 0.014679577201604843, 0.004406391177326441, -0.04226778447628021, -0.01903560943901539, 0.0016870183171704412, -0.03521755710244179, -0.02183891460299492, -0.017373770475387573, 0.027915537357330322, -0.006324220448732376, 0.03209531307220459, -0.036829039454460144, -0.01977420598268509, 0.029896315187215805, -0.020177075639367104, -0.03053419291973114, 0.043509967625141144, 0.034814685583114624, 0.027093011885881424, -0.06257914751768112, 0.0018024238524958491, 0.03776906803250313, 0.0036531081423163414, 0.012488971464335918, -0.0002562526206020266, 0.008930286392569542, 0.008346963673830032, -0.03157494217157364, 0.013806692324578762, 0.04485286772251129, -0.026270484551787376, 0.10011320561170578, 0.03830622881650925, -0.04032057896256447, -0.014192776754498482, 0.016752678900957108, -0.001059632166288793, 0.05546177923679352, 0.00938351545482874, 0.09541305899620056, -0.0001281918812310323, 0.007432113401591778, 0.021217823028564453, 0.034512534737586975, 0.048612985759973526, -0.010399083606898785, -0.024021126329898834, -0.02151997573673725, 0.012883448973298073, -0.08366268128156662, -0.05932261422276497, 0.0022682424169033766, -0.015980511903762817, 0.02005957067012787, -0.008888320997357368, 0.0207813810557127, 0.05176880210638046, -0.024239348247647285, -0.009845136664807796, -0.023467181250452995, 0.06267986446619034, 0.07312091439962387, -0.018380945548415184, -0.005543659906834364, -0.0816483348608017, -0.014553681015968323, 0.017843786627054214, -0.06314988434314728, 0.017877358943223953, 0.034747540950775146, -0.01769270934164524, -0.010197647847235203, -0.027093011885881424, -0.023735761642456055, 0.042502790689468384, -0.04179776832461357, 0.015468531288206577, -0.021872486919164658, -0.01715555042028427, 0.0008534759981557727, 0.011196429841220379, 0.040421295911073685, 0.04075701907277107, -0.033992160111665726, -0.019639914855360985, 0.0015988905215635896, -0.04330853000283241, -0.031709231436252594, -0.005568839143961668, 0.004746312741190195, 0.01770949549973011, -0.003776906756684184, 0.07802250236272812, 0.025599034503102303, 0.03951483964920044, -0.012564510107040405, 0.03686261177062988, 0.057106830179691315, -0.04518859088420868, -0.047068651765584946, 0.04233492910861969, 0.016081228852272034, 0.051231641322374344, 0.006538245361298323, 0.036291878670454025, 0.03342142701148987, -0.0036111425142735243, -0.0313231460750103, -0.00518695218488574, 0.06536566466093063, -0.038843389600515366, 0.009349942207336426, -0.036291878670454025, 0.06086695194244385, -0.041193462908267975, -0.0001006519451038912, -0.05022446811199188, -0.042200639843940735, 0.0013880132464691997, -0.020663876086473465, 0.00526668643578887, -0.03746691346168518, -0.003892312292009592, -0.062041986733675, -0.018145939335227013, 0.07647816836833954, 0.023265745490789413, -0.0354861356317997, -0.004267904441803694, 0.010113717056810856, -0.04847869649529457, -0.02365182898938656, 0.04770652949810028, -0.008195887319743633, -0.05677110701799393, 0.027512667700648308, -0.02492758445441723, 0.036560457199811935, -0.001943008741363883, -0.0354861356317997, 0.05495819076895714, 0.01630784384906292, 0.033723581582307816, 0.011960204690694809, 0.01632463000714779, 0.04253636300563812, 0.006626373156905174, -0.016358202323317528, 0.013445788063108921, 0.028385553508996964, -0.03229675069451332, 0.02385326474905014, 0.0271601565182209, 0.05512605234980583, -0.0005054235807619989, -0.029845956712961197, -0.03204495459794998, 0.015762291848659515, 0.016014084219932556, 0.0006394513184204698, 0.013076490722596645, -0.0952787697315216, -0.0033740366343408823, -0.021906059235334396, 0.06942793726921082, 0.04391283541917801, -0.07211373746395111, -0.01665196195244789, 0.021754983812570572, -0.059926919639110565, -0.02054637297987938, 0.020663876086473465, 0.00558142876252532, 0.014839046634733677, 0.07372522354125977, 0.0037727102171629667, 0.010088537819683552, 0.014797081239521503, 0.026858003810048103, 0.020982814952731133, 0.009702453389763832, 0.028889140114188194, -0.01851523667573929, -0.03369000926613808, 0.006387169007211924, -0.030970634892582893, -0.04488644003868103, -0.0461621955037117, -0.003193584503605962, 0.017793428152799606, 0.04753866791725159, -0.005170165561139584, -0.008111956529319286, 0.011246789246797562, 0.009190472774207592, -0.04048844054341316, 0.0020311365369707346, 0.0718451589345932, -0.0068278079852461815, 0.008523219265043736, -0.04431570693850517, -0.00961012952029705, 0.012447006069123745, -0.0100213922560215, 0.035049695521593094, -0.01116285752505064, -0.05035875737667084, 0.02799946814775467, -0.03535184636712074, 0.006819414906203747, -0.0014708953676745296, 0.07761962711811066, 0.030601337552070618, 0.003917491529136896, 0.04545717313885689, -0.005484907887876034, -0.0739266574382782, -0.00693272240459919, 0.03897767886519432, 0.04126060754060745, -0.048680130392313004, -0.038641951978206635, 0.009635308757424355, 0.033992160111665726, 0.03645974025130272, -0.04602790251374245, 0.07338949292898178, 0.00807418767362833, 0.017004473134875298, -0.041965629905462265, 0.013378643430769444, -0.05482390150427818, -0.03261568769812584, -0.0472029410302639, -0.04750509560108185, 0.027311231940984726, -0.01947205327451229, -0.003976243548095226, 0.03484826162457466, -0.04925086349248886, 0.06835362315177917, -0.048680130392313004, -0.022762158885598183, -0.0697636678814888, 0.02643834799528122, 0.033992160111665726, 0.027630170807242393, -0.0570061132311821, 0.02742873691022396, 0.07083798199892044, -0.028687704354524612, 0.0106508769094944, 0.028939498588442802, -0.0007385950884781778, -0.00825463980436325, 0.0020521192345768213, -0.04085773974657059, -0.0029375941958278418, -0.021352112293243408, 0.025985118001699448, 0.009710847400128841, 0.07755248248577118, -0.0017331806011497974, 0.03108813986182213, 0.02158712036907673, 0.05781185254454613, 0.0666414201259613, 0.0192202590405941, -0.041965629905462265, -0.04028700664639473, 0.024541500955820084, -0.06382133066654205, -0.026337629184126854, 0.05176880210638046, 0.0049015856347978115, -0.020160289481282234, 0.037869784981012344, -0.05291026830673218, -0.013294711709022522, -0.026102622970938683, 0.04925086349248886, 0.006315827369689941, -0.011322326958179474, -0.002010153606534004, 0.03328713774681091, 0.010214434936642647, 0.0024172202683985233, -0.029409514740109444, -0.04475214704871178, 0.014839046634733677, -0.007230678107589483, 0.02005957067012787, -0.10071751475334167, 0.025716539472341537 ]
7,449
pathlib
match
Return True if this path matches the given pattern.
def match(self, path_pattern): """ Return True if this path matches the given pattern. """ cf = self._flavour.casefold path_pattern = cf(path_pattern) drv, root, pat_parts = self._flavour.parse_parts((path_pattern,)) if not pat_parts: raise ValueError("empty pattern") if drv and drv != cf(self._drv): return False if root and root != cf(self._root): return False parts = self._cparts if drv or root: if len(pat_parts) != len(parts): return False pat_parts = pat_parts[1:] elif len(pat_parts) > len(parts): return False for part, pat in zip(reversed(parts), reversed(pat_parts)): if not fnmatch.fnmatchcase(part, pat): return False return True
(self, path_pattern)
[ 0.10540812462568283, -0.021675819531083107, 0.028145164251327515, 0.024681955575942993, 0.00979191530495882, -0.06455280631780624, 0.08424212038516998, -0.003992798738181591, -0.046129241585731506, -0.004366368055343628, 0.010969758033752441, 0.057661548256874084, 0.03856994956731796, -0.021130848675966263, 0.0052343676798045635, -0.020638614892959595, 0.04229685664176941, 0.008231713436543941, -0.0397653728723526, 0.03429807350039482, -0.05425107851624489, 0.07559288293123245, 0.029586704447865486, 0.0031533660367131233, -0.012701362371444702, 0.0484849251806736, 0.0005801314255222678, -0.03102824278175831, 0.04714886471629143, 0.003254449460655451, -0.04939907044172287, 0.02476985566318035, -0.01064453274011612, 0.015971194952726364, -0.01634036935865879, -0.016270050778985023, 0.012297028675675392, -0.006750620435923338, -0.0007031896384432912, -0.03137983754277229, 0.015804186463356018, 0.05934920534491539, 0.004913537763059139, 0.029481224715709686, -0.015083417296409607, 0.016472216695547104, -0.03512432053685188, 0.020533137023448944, 0.0015074628172442317, 0.02362717129290104, 0.020146382972598076, -0.0361439473927021, -0.04416031017899513, -0.053618207573890686, 0.017878595739603043, 0.03628458455204964, 0.01425716932862997, 0.07566320151090622, -0.01826534979045391, -0.0005007479339838028, -0.012191549874842167, -0.01653374545276165, 0.008860189467668533, 0.0035071582533419132, -0.06560759246349335, -0.046797268092632294, 0.011040077544748783, -0.07840564101934433, -0.01653374545276165, 0.032311562448740005, -0.09007859230041504, 0.021886777132749557, 0.006526478566229343, 0.03712841123342514, -0.0018019233830273151, 0.016384318470954895, -0.03364762291312218, 0.06265419721603394, 0.0361439473927021, 0.04521509259939194, -0.025912538170814514, -0.03408711776137352, 0.010662112385034561, -0.06476376205682755, -0.02039249986410141, 0.02879561483860016, -0.0068033598363399506, -0.013017797842621803, 0.029973458498716354, 0.02717828005552292, -0.023099780082702637, 0.030887603759765625, -0.010143510065972805, 0.031168879941105843, 0.023416215553879738, 0.015848135575652122, 0.06265419721603394, -0.015083417296409607, -0.02385570853948593, 0.05263374373316765, -0.03512432053685188, 0.020972630009055138, 0.043879032135009766, -0.014872460626065731, 0.002825943287461996, 0.027459554374217987, -0.01314085628837347, 0.022168053314089775, -0.07200662046670914, -0.020251860842108727, 0.004370762966573238, 0.00036175810964778066, 0.06420121341943741, 0.04735982045531273, -0.03825351595878601, -0.015364693477749825, -0.006082590203732252, -0.05530586466193199, -0.07270980626344681, -0.002909447066485882, 0.014485706575214863, 0.056852880865335464, 0.021429704502224922, -0.01865210570394993, 0.06005239486694336, -0.03440355136990547, -0.017720378935337067, -0.03744484856724739, -0.03426291421055794, 0.04310552403330803, 0.00015629488916601986, 0.03674165904521942, -0.02058587595820427, -0.033717941492795944, -0.043386802077293396, 0.0697564110159874, 0.001144880661740899, -0.04349227994680405, -0.010758801363408566, 0.07524129003286362, 0.03493094444274902, 0.036671340465545654, 0.01282442081719637, -0.029481224715709686, -0.020673776045441628, 0.06827971339225769, 0.05175475776195526, 0.029657023027539253, 0.04852008447051048, 0.027863889932632446, -0.017588529735803604, -0.05203603208065033, 0.04271877184510231, 0.03793708235025406, 0.001898612012155354, -0.029569124802947044, 0.00005823289029649459, 0.0089832479134202, -0.012147600762546062, -0.0064210002310574055, 0.03730421140789986, -0.04943422973155975, -0.05080544948577881, 0.04676210880279541, 0.004566337447613478, 0.03382342308759689, -0.0401872880756855, -0.040222447365522385, -0.018001655116677284, 0.00022345499019138515, -0.0071110050193965435, 0.016287630423903465, -0.03730421140789986, 0.02840886078774929, 0.0014745007501915097, 0.05186023563146591, -0.00923815369606018, 0.009282102808356285, 0.022748185321688652, 0.03023715503513813, 0.03345424681901932, -0.026615727692842484, -0.023152519017457962, 0.0330674909055233, 0.008508594706654549, 0.049047477543354034, -0.028233064338564873, -0.014476916752755642, 0.0644473284482956, 0.030887603759765625, -0.06458796560764313, -0.00577933993190527, 0.028778035193681717, -0.004961881786584854, -0.023398634046316147, -0.02324041724205017, 0.029446065425872803, -0.012349767610430717, 0.020849572494626045, 0.007471389602869749, 0.022379010915756226, -0.08543754369020462, 0.0027644142974168062, 0.04746529832482338, -0.00027303534443490207, 0.019337715581059456, 0.042050741612911224, 0.06483408063650131, 0.027354076504707336, -0.0016041513299569488, -0.09471964091062546, -0.07622575759887695, 0.011901484802365303, 0.024787435308098793, 0.026844264939427376, 0.010451155714690685, -0.03821835666894913, 0.009290892630815506, -0.042050741612911224, 0.04067952185869217, 0.051578957587480545, 0.07664766907691956, 0.0023974371142685413, -0.013316653668880463, -0.03406953811645508, -0.033946480602025986, 0.03218850493431091, 0.04728950187563896, -0.05175475776195526, -0.02070893533527851, -0.016911711543798447, -0.029551545158028603, 0.07981202006340027, 0.01602393388748169, -0.021359385922551155, 0.016586486250162125, 0.03521222248673439, 0.058083463460206985, 0.005207998212426901, 0.012648623436689377, 0.019654151052236557, 0.010178670287132263, -0.006333101540803909, -0.04830912873148918, -0.027828728780150414, -0.051895394921302795, 0.0032412647269666195, -0.025525784119963646, 0.0309403445571661, 0.005401375237852335, -0.053125977516174316, 0.020146382972598076, -0.032417040318250656, -0.0401872880756855, -0.019636569544672966, -0.07425682246685028, -0.016401898115873337, 0.04008181020617485, 0.028057266026735306, 0.06831487268209457, -0.02373264916241169, 0.07404586672782898, 0.052704062312841415, 0.0309403445571661, -0.028338542208075523, -0.00014015723718330264, 0.009132674895226955, 0.004390540067106485, 0.010451155714690685, -0.044582221657037735, -0.028654977679252625, -0.01917949691414833, -0.04282424971461296, 0.05347757041454315, -0.03162595257163048, -0.021904356777668, 0.004728950094431639, -0.046621471643447876, 0.00403015548363328, -0.007743875961750746, -0.005832078866660595, 0.008759105578064919, 0.00011728983372449875, -0.004693790804594755, -0.003463208908215165, 0.011839955113828182, -0.0069747623056173325, -0.007691136561334133, -0.013641878962516785, 0.01815987192094326, -0.025508204475045204, -0.03969505429267883, 0.01172568742185831, 0.009545799344778061, -0.021957095712423325, 0.06086106225848198, 0.07369427382946014, -0.0780540481209755, -0.032311562448740005, -0.03540559858083725, -0.04110143333673477, 0.009493060410022736, 0.07176050543785095, 0.019214656203985214, 0.0026479484513401985, 0.0024677561596035957, -0.04595344141125679, 0.039906010031700134, -0.026035595685243607, 0.035370439291000366, -0.02041007950901985, 0.006781384814530611, -0.027441974729299545, -0.014969149604439735, -0.03649554029107094, 0.02963944338262081, 0.011743267066776752, 0.008170184679329395, -0.03378826007246971, 0.012050912715494633, -0.012938689440488815, 0.06493956595659256, -0.030254734680056572, 0.014828511513769627, -0.025930117815732956, 0.02070893533527851, 0.005977111868560314, -0.020374920219182968, 0.001102579408325255, 0.010319307446479797, 0.03684713691473007, 0.0044476743787527084, 0.04623471945524216, 0.04939907044172287, 0.008693181909620762, -0.02262512594461441, -0.03034263290464878, -0.05600905418395996, 0.023592012003064156, 0.0667678564786911, 0.04852008447051048, 0.013422132469713688, -0.04676210880279541, -0.06641626358032227, 0.04771141707897186, -0.0022348244674503803, -0.01997058466076851, 0.043808713555336, 0.004654236603528261, -0.02645750902593136, -0.0034566165413707495, -0.0574154332280159, -0.03730421140789986, -0.019742049276828766, -0.028180323541164398, 0.04503929615020752, -0.0312567800283432, 0.007418650668114424, 0.0008669009548611939, 0.0724988505244255, 0.13262157142162323, -0.009018407203257084, -0.06156425178050995, -0.06448248773813248, -0.02556094340980053, 0.0030456900130957365, -0.02311735972762108, 0.026105914264917374, -0.021429704502224922, -0.018405988812446594, 0.008354771882295609, 0.01602393388748169, 0.014239589683711529, -0.03589783236384392, 0.021042950451374054, -0.025947697460651398, 0.013808886520564556, -0.033717941492795944, 0.023381054401397705, 0.053829167038202286, 0.03294443339109421, 0.04725434258580208, 0.04430094733834267, -0.011435621418058872, -0.018212610855698586, -0.0038345810025930405, 0.00679896492511034, -0.008653627708554268, -0.029850399121642113, -0.006816544570028782, -0.009967712685465813, 0.04071468114852905, -0.02041007950901985, -0.06810391694307327, -0.025297246873378754, -0.003990601282566786, 0.05600905418395996, 0.03113372065126896, -0.018423568457365036, 0.027371656149625778, -0.012094861827790737, -0.013782517053186893, -0.06138845533132553, 0.04830912873148918, 0.02870771661400795, 0.03649554029107094, 0.07021348178386688, 0.042648449540138245, -0.035036422312259674, -0.025824639946222305, -0.001181138795800507, -0.04110143333673477, -0.05256342515349388, -0.03765580430626869, -0.04212106019258499, -0.015188896097242832, 0.009413951076567173, -0.02638719044625759, 0.04391419142484665, 0.01726330630481243, 0.0017645665211603045, 0.01895095966756344, 0.023802969604730606, 0.01715782657265663, 0.07140890508890152, -0.009405161254107952, -0.00852177944034338, -0.0030017406679689884, 0.07348331809043884, 0.027213439345359802, -0.09261007606983185, 0.009141465649008751, -0.07650703191757202, 0.038991864770650864, -0.014265960082411766, -0.015083417296409607, -0.014327488839626312, -0.030606329441070557, -0.018634526059031487, -0.07481937855482101, -0.07003768533468246, 0.02596527710556984, -0.030465690419077873, 0.0034983684308826923, 0.00042603403562679887, -0.03691745549440384, 0.03178417310118675, -0.042050741612911224, 0.0033093863166868687, 0.001976622035726905, -0.06704913079738617, 0.04349227994680405, -0.09078177809715271, -0.030201993882656097, -0.038183197379112244, 0.0076296073384583, 0.05752091109752655, 0.019724469631910324, -0.001829391811043024, -0.04187494143843651, 0.005999086424708366, 0.010670902207493782, 0.03104582242667675, -0.04292972758412361, 0.012472826056182384, -0.03449144959449768, 0.03927313908934593, 0.006790175102651119, 0.03579235076904297, -0.0031577609479427338, -0.028971413150429726, -0.013887994922697544, -0.0326455794274807, -0.003933466970920563, 0.0631464272737503, 0.030166834592819214, -0.011470780707895756, 0.03878090903162956, -0.05326661467552185, 0.008187764324247837, -0.03807771950960159, -0.00907114613801241, 0.0225372277200222, 0.021253906190395355, -0.011330142617225647, -0.07028380036354065, -0.018388409167528152, 0.005542013328522444, -0.02385570853948593, -0.13902059197425842, 0.047641098499298096, 0.015584439970552921, -0.011646578088402748, 0.02271302416920662, 0.03421017527580261, 0.003450024174526334, -0.043351639062166214, 0.03994116932153702, -0.03519464284181595, 0.017527000978589058, -0.010987337678670883, 0.02009364403784275, -0.02415456436574459, 0.05154379829764366, -0.049961622804403305, 0.008886558935046196, 0.042648449540138245, -0.04771141707897186, 0.023205257952213287, 0.039800532162189484, 0.011690527200698853, 0.018212610855698586, -0.021640660241246223, 0.00907993596047163, 0.033717941492795944, 0.05927888676524162, 0.0057881297543644905, -0.04127722978591919, -0.026211393997073174, 0.017175406217575073, -0.021851617842912674, -0.0693344995379448, -0.012402507476508617, -0.0399763323366642, -0.00044224035809747875, 0.0011932249180972576, -0.017483051866292953, -0.04250781238079071, 0.05590357631444931, -0.029850399121642113, -0.003366520395502448, 0.027828728780150414, 0.03072938695549965, 0.07467874139547348, 0.04089047759771347, 0.007866933941841125, 0.010969758033752441, -0.015092207118868828, -0.11511214077472687, 0.031608372926712036, -0.038394153118133545, -0.004821243695914745, -0.03378826007246971, -0.007146164774894714, 0.04577764496207237, -0.02375023066997528, 0.020462818443775177, -0.1239723339676857, 0.037374529987573624, 0.006139724515378475, 0.01673591323196888, -0.003300596261397004, -0.005102519877254963, 0.03552865609526634, 0.07098699361085892, 0.0722878947854042, 0.014169271104037762, -0.0014964754227548838, -0.03326087072491646, -0.03421017527580261, -0.03965989500284195, 0.01197180338203907, -0.022343849763274193, -0.009501850232481956, -0.023996345698833466, -0.07770245522260666, 0.011743267066776752, -0.004194965586066246, 0.024594057351350784, 0.03702293336391449, 0.011057657189667225, 0.039413779973983765, 0.0395544171333313, 0.020849572494626045, -0.017913755029439926, -0.021939516067504883, 0.0073966761119663715, 0.029797660186886787, 0.021271485835313797, -0.01877516321837902, 0.01725451648235321, -0.03528254106640816, 0.025314826518297195, 0.008952482603490353, -0.043562598526477814, -0.007809799630194902, -0.02100778929889202, 0.05228215083479881, -0.06936965882778168, -0.07467874139547348, -0.011242244392633438, -0.04198041930794716, 0.02026944048702717, -0.02930542826652527, -0.020937470719218254, 0.003311583772301674, 0.011681737378239632, -0.0097831254824996, 0.09521187841892242, -0.02476985566318035, 0.0032170924823731184, 0.01724572479724884, 0.015364693477749825, -0.0650802031159401, 0.014037422835826874, 0.021552762016654015, 0.011163135059177876, -0.01916191726922989, -0.006513293832540512, 0.04595344141125679, 0.013422132469713688, 0.0322236642241478, 0.06268935650587082, 0.004190570674836636, 0.0009954528650268912, 0.046410515904426575, -0.0265805684030056, -0.025297246873378754, -0.011303773149847984, 0.006029851268976927, -0.0034676038194447756, 0.014652714133262634, 0.04110143333673477, -0.020744094625115395, 0.0267915241420269, 0.06177520751953125, -0.019829947501420975, -0.048238810151815414, -0.014072582125663757, -0.02800452709197998, 0.03878090903162956, -0.029762500897049904, -0.027529874816536903, -0.0022150473669171333, -0.0035335279535502195, -0.09401645511388779, -0.02832096256315708, -0.017904965206980705, 0.0043421960435807705, -0.0006987946690060198, -0.05228215083479881, -0.06413089483976364, -0.044898658990859985, -0.004838823806494474, -0.008737131021916866, -0.0036280190106481314, -0.000892721232958138, -0.038991864770650864, 0.0652911588549614, -0.013000218197703362, 0.029446065425872803, 0.024383099749684334, -0.01024019904434681, 0.05470815300941467, 0.0286022387444973, 0.01634036935865879, 0.009739176370203495, -0.017377573996782303, 0.0025073105935007334, 0.012921109795570374, -0.06588886678218842, 0.014265960082411766, -0.00797241274267435, -0.04271877184510231, 0.020779253914952278, -0.0015887690242379904, 0.07770245522260666, -0.06300579011440277, -0.01877516321837902, 0.04676210880279541, -0.03152047470211983, 0.01979478821158409, 0.014090161770582199, -0.03043053112924099, -0.011242244392633438, 0.018511466681957245, 0.011400462128221989, -0.026352031156420708, 0.023187678307294846, -0.015883294865489006, 0.00963369756937027, 0.01845872774720192, 0.010934598743915558, 0.007031896151602268, 0.06866646558046341, 0.07545224577188492, -0.04345712065696716, -0.005621122196316719, 0.02443584054708481, -0.06047431007027626, 0.0023996345698833466, -0.04577764496207237, 0.02770567126572132, -0.012033332139253616, -0.014178060926496983, 0.06641626358032227, 0.048555243760347366, 0.05688804015517235, 0.004808058962225914, -0.05769670754671097, 0.010899439454078674, 0.03944893926382065, 0.008341587148606777, -0.01713145710527897, 0.01583055593073368, 0.023767810314893723, -0.039097342640161514, -0.011338932439684868, -0.007844959385693073, 0.04795753210783005, -0.05748575180768967, 0.0063550760969519615, 0.030254734680056572, -0.06156425178050995, 0.034139856696128845, -0.027441974729299545, -0.020322179421782494, -0.0245588980615139, 0.0644473284482956, -0.033524565398693085, -0.00030187712400220335, -0.06546695530414581, -0.012912319973111153, -0.028672557324171066, -0.02415456436574459, 0.0035511075984686613, -0.01166415773332119, 0.012885949574410915, 0.04433610662817955, 0.033436667174100876, -0.04426578804850578, 0.04472285881638527, -0.017940126359462738, 0.03888638690114021, -0.00796362292021513, -0.0025358775164932013, -0.0395544171333313, -0.054919108748435974, 0.017597321420907974, 0.026809103786945343, -0.022396590560674667, 0.01227944903075695, 0.0018524652114138007, -0.0527392216026783, 0.024998391047120094, 0.043175842612981796, -0.024084245786070824, 0.031063402071595192, -0.004513598512858152, -0.0029709762893617153, 0.001562399440445006, -0.04718402400612831, -0.012877159751951694, -0.039413779973983765, -0.010714852251112461, -0.010415996424853802, -0.008882164023816586, -0.01694687083363533, 0.028057266026735306, 0.00763400224968791, -0.05952500179409981, 0.042050741612911224, 0.01997058466076851, 0.006943997461348772, 0.012789261527359486, 0.013184805400669575, -0.00692202290520072, 0.04644567519426346 ]
7,450
pathlib
mkdir
Create a new directory at this given path.
def mkdir(self, mode=0o777, parents=False, exist_ok=False): """ Create a new directory at this given path. """ try: self._accessor.mkdir(self, mode) except FileNotFoundError: if not parents or self.parent == self: raise self.parent.mkdir(parents=True, exist_ok=True) self.mkdir(mode, parents=False, exist_ok=exist_ok) except OSError: # Cannot rely on checking for EEXIST, since the operating system # could give priority to other errors like EACCES or EROFS if not exist_ok or not self.is_dir(): raise
(self, mode=511, parents=False, exist_ok=False)
[ -0.024146579205989838, 0.08999920636415482, -0.008085866458714008, -0.023628491908311844, 0.023258429020643234, 0.01399761438369751, -0.00015669835556764156, 0.05791478604078293, 0.019946370273828506, 0.003323623910546303, 0.056989628821611404, 0.040669869631528854, 0.08444827049970627, -0.02836529165506363, -0.012619132176041603, -0.04925532266497612, 0.03260250762104988, -0.03411976620554924, -0.047553032636642456, 0.0002875212230719626, 0.020982544869184494, 0.017688987776637077, 0.046072784811258316, -0.05162372067570686, -0.008830617181956768, 0.05184575915336609, -0.043038271367549896, 0.062244515866041183, 0.0181700699031353, 0.015320587903261185, -0.03661768510937691, 0.04166904091835022, 0.013192729093134403, 0.02427610196173191, 0.009279318153858185, 0.032732028514146805, -0.08133973926305771, 0.013016949407756329, -0.03819045051932335, -0.06061623990535736, 0.006346572190523148, -0.029382964596152306, -0.06698131561279297, -0.005967258010059595, 0.014728488400578499, -0.06698131561279297, 0.03256550058722496, 0.029734523966908455, -0.03489689528942108, -0.0356370210647583, -0.01742994412779808, 0.03632163628935814, 0.03367568925023079, -0.050920601934194565, -0.017568718641996384, 0.032380469143390656, 0.003686747746542096, -0.0035526002757251263, 0.00814137514680624, -0.014460192993283272, 0.002525676740333438, 0.060764264315366745, 0.0035340969916433096, 0.016458529978990555, -0.06712934374809265, -0.0076140365563333035, -0.06198547035455704, -0.05069856345653534, 0.032824546098709106, 0.02610791102051735, -0.08022955805063248, -0.03367568925023079, 0.04388941451907158, 0.008173756301403046, 0.07275429368019104, 0.065093994140625, -0.05117964744567871, -0.04129897803068161, 0.07504867762327194, 0.006929420866072178, -0.08622457087039948, -0.03671020269393921, -0.015033789910376072, -0.03911560773849487, 0.005079108290374279, 0.09643829613924026, -0.030844710767269135, 0.017661234363913536, 0.04425947740674019, 0.012915181927382946, -0.017244912683963776, -0.013118715956807137, -0.004628094378858805, -0.040669869631528854, -0.0019347331253811717, 0.05158671364188194, 0.005370532162487507, 0.010056449100375175, 0.010158216580748558, -0.02077900990843773, -0.005564815364778042, 0.019002709537744522, -0.030067579820752144, -0.07534472644329071, -0.0028517942409962416, -0.03265801817178726, -0.03495240584015846, -0.05502829700708389, 0.015320587903261185, -0.00985291413962841, -0.05373307690024376, -0.004535578656941652, 0.011897509917616844, 0.004628094378858805, -0.05199378356337547, 0.018401358276605606, 0.05650854855775833, -0.0763809010386467, -0.03491539880633354, -0.04881124570965767, 0.007322612218558788, -0.011203642934560776, 0.016051461920142174, -0.0561014786362648, 0.06631520390510559, 0.0522158220410347, -0.0021706479601562023, -0.018327346071600914, 0.025996891781687737, 0.009686386212706566, -0.019243251532316208, 0.034637853503227234, 0.030178599059581757, -0.025534313172101974, 0.0019890861585736275, -0.008298652246594429, 0.008751978166401386, -0.013766326010227203, -0.017614975571632385, 0.010380254127085209, 0.033490657806396484, -0.056249503046274185, 0.00213595456443727, 0.04777507111430168, 0.005500053986907005, 0.05902497097849846, -0.016023706644773483, 0.013692312873899937, -0.004362111911177635, 0.032010406255722046, -0.0005215568817220628, 0.01193451602011919, 0.05758172646164894, 0.08437425643205643, 0.02353597618639469, 0.008113620802760124, -0.0024932962842285633, 0.01890094392001629, 0.04215012118220329, 0.032750532031059265, -0.03234346583485603, 0.006230927538126707, 0.04085490107536316, 0.015274330973625183, 0.006508474703878164, 0.05558339133858681, -0.029234938323497772, 0.0007354992558248341, -0.001152397831901908, 0.00116107112262398, 0.057729754596948624, 0.043038271367549896, 0.06242954730987549, -0.010556033812463284, -0.030826207250356674, -0.06613016873598099, 0.025164252147078514, -0.007271728478372097, -0.041409995406866074, 0.0003923240874428302, 0.03761685639619827, 0.0028263526037335396, 0.004292725119739771, -0.0024562899488955736, 0.018466120585799217, 0.055139314383268356, 0.02153763920068741, 0.029808536171913147, 0.030937226489186287, 0.010500524193048477, -0.05636052042245865, 0.039226628839969635, 0.016606556251645088, 0.017633479088544846, 0.023017888888716698, 0.03139980509877205, 0.02571934461593628, -0.015376097522675991, 0.00614303769543767, 0.060394205152988434, -0.017226411029696465, 0.09355180710554123, 0.03232496231794357, -0.013387011364102364, 0.04126197099685669, 0.008335658349096775, -0.08030356466770172, 0.022832857444882393, -0.06872060894966125, -0.037672363221645355, 0.018826929852366447, 0.011323913000524044, 0.06886863708496094, 0.022037222981452942, -0.012776408344507217, -0.0005707058007828891, -0.002812475198879838, 0.05543536692857742, -0.005384409800171852, 0.029623504728078842, -0.03737631440162659, 0.022592317312955856, -0.008395793847739697, -0.01080582570284605, -0.0446295402944088, -0.04929232597351074, -0.01059303991496563, -0.04659087210893631, -0.02085302211344242, -0.012406346388161182, -0.002028405200690031, 0.02758816070854664, -0.026348451152443886, -0.008497560396790504, -0.03380521014332771, -0.053214989602565765, 0.08296801894903183, 0.010352498851716518, -0.03706176206469536, -0.022055726498365402, -0.016467781737446785, -0.04455552622675896, 0.02917942963540554, 0.06054222956299782, 0.064908966422081, 0.016143977642059326, 0.05595345422625542, -0.016458529978990555, 0.03188088536262512, -0.0299010518938303, -0.07120002806186676, 0.026718514040112495, -0.0712740421295166, 0.009172924794256687, 0.03930063918232918, -0.027421632781624794, -0.016810089349746704, 0.027551155537366867, 0.02040894888341427, 0.03737631440162659, -0.02806924283504486, -0.04969939589500427, -0.006392830051481724, -0.01196227129548788, -0.009584619663655758, -0.029401468113064766, 0.0073503670282661915, -0.00501434737816453, -0.03930063918232918, 0.03210292384028435, 0.12345285713672638, 0.026329947635531425, 0.02494221366941929, -0.04237215965986252, 0.048996277153491974, -0.026755521073937416, -0.019113728776574135, -0.0151725634932518, -0.03232496231794357, 0.0378388911485672, -0.02459065429866314, -0.022203750908374786, -0.03406425565481186, -0.01078732218593359, -0.056989628821611404, 0.023961547762155533, 0.017679736018180847, 0.06394680589437485, -0.017596472054719925, 0.005601821467280388, -0.04403743892908096, -0.01044501457363367, -0.07231021672487259, -0.00299056782387197, 0.02758816070854664, -0.02272183820605278, -0.04836717247962952, -0.014515702612698078, -0.006721260491758585, -0.059247009456157684, 0.020612481981515884, 0.022462794557213783, -0.029790032655000687, 0.049107298254966736, 0.02608940750360489, 0.024350114166736603, -0.016208738088607788, 0.013581294566392899, 0.027495644986629486, 0.03297257050871849, -0.04651685804128647, 0.027902714908123016, 0.03989274054765701, 0.047145966440439224, 0.02536778524518013, 0.06239254027605057, 0.008516063913702965, -0.019076723605394363, -0.03674720972776413, 0.017337428405880928, 0.0021590834949165583, 0.01437692902982235, -0.04684991389513016, 0.012785660102963448, -0.03780188784003258, -0.01745769940316677, 0.040336813777685165, 0.04588775336742401, -0.02657048963010311, 0.030863214284181595, -0.050217483192682266, 0.027181092649698257, 0.055842433124780655, 0.021408116444945335, -0.07182913273572922, 0.02571934461593628, 0.0041632032953202724, -0.05710064619779587, 0.04418546333909035, -0.00427190912887454, 0.04496259614825249, -0.02657048963010311, -0.051697734743356705, -0.03724679350852966, 0.051327671855688095, 0.012360088527202606, 0.035081926733255386, 0.04081789776682854, 0.033897727727890015, 0.05958006531000137, 0.011582956649363041, 0.049810416996479034, -0.0020977919921278954, -0.04773806408047676, 0.005106862634420395, -0.010759567841887474, -0.02157464437186718, -0.027791695669293404, -0.025904376059770584, -0.05869191512465477, 0.03025261126458645, -0.013858841732144356, 0.027958223596215248, 0.02840229868888855, -0.04048483818769455, -0.03365718573331833, -0.02379501983523369, 0.005583318416029215, -0.009806657209992409, 0.01974283531308174, 0.07530771940946579, -0.06409482657909393, 0.01974283531308174, 0.006642622407525778, 0.050994616001844406, 0.0423351526260376, 0.06831353902816772, -0.0031085251830518246, -0.0052456362172961235, -0.0046951682306826115, -0.013164973817765713, -0.053992122411727905, 0.014858010224997997, -0.022943876683712006, 0.043297313153743744, -0.01710614003241062, 0.10406158119440079, 0.032380469143390656, -0.0021521449089050293, 0.010611542500555515, -0.02651497907936573, -0.009593870490789413, 0.027828700840473175, -0.02684803493320942, -0.008659463375806808, -0.02884637378156185, 0.062244515866041183, 0.049033284187316895, -0.010158216580748558, 0.01628275029361248, 0.013525784946978092, -0.0629846379160881, 0.0012824978912249207, 0.02843930386006832, -0.03489689528942108, 0.025312276557087898, 0.02581186033785343, 0.010824328288435936, 0.037653859704732895, -0.03256550058722496, 0.020760508254170418, 0.027107080444693565, -0.0047298613935709, -0.007082071620970964, -0.012221314944326878, 0.03362017869949341, 0.001098044915124774, -0.042224135249853134, 0.026644501835107803, -0.016874851658940315, -0.028198763728141785, -0.061874452978372574, 0.019779842346906662, 0.05258588492870331, 0.008474431931972504, 0.03300957754254341, -0.018734415993094444, -0.0026551985647529364, 0.011619962751865387, -0.0026181922294199467, 0.0046951682306826115, -0.0037977665197104216, -0.013562791049480438, -0.013377760536968708, -0.014395431615412235, 0.008062737062573433, -0.048330165445804596, 0.032787539064884186, -0.05647154152393341, 0.0712740421295166, 0.01894720084965229, -0.06531603634357452, 0.00815062690526247, 0.038523510098457336, -0.008677965961396694, -0.024368617683649063, 0.017272667959332466, 0.01668982021510601, 0.028938889503479004, 0.027551155537366867, 0.07530771940946579, 0.038005419075489044, 0.07675096392631531, 0.04740500822663307, -0.0453326590359211, 0.011444183066487312, -0.05029149726033211, -0.026829533278942108, 0.0071190777234733105, 0.017661234363913536, 0.05162372067570686, 0.0590989850461483, 0.04947735741734505, 0.006961801089346409, -0.04026280343532562, 0.0008494091453030705, 0.001669907127507031, -0.015699902549386024, 0.004283473826944828, -0.04729399085044861, -0.007331863511353731, -0.039226628839969635, 0.0052641392685472965, 0.04670188948512077, -0.04459253326058388, -0.038375481963157654, -0.018003541976213455, -0.07134805619716644, 0.013923602178692818, -0.009154421277344227, 0.0058146072551608086, -0.025238264352083206, 0.013683062046766281, -0.019187740981578827, -0.017929529771208763, -0.03182537853717804, 0.00021784540149383247, 0.05262289196252823, -0.022074230015277863, 0.0024146579671651125, 0.0020457517821341753, -0.022129738703370094, -0.009926927275955677, 0.008414296433329582, 0.010963101871311665, 0.01551487110555172, -0.020223917439579964, -0.018401358276605606, -0.11190690845251083, -0.06205948442220688, 0.0189194455742836, -0.019428282976150513, 0.0033490657806396484, 0.0012651511933654547, -0.043297313153743744, 0.02954949252307415, -0.010417260229587555, -0.06394680589437485, -0.00987141765654087, -0.044074445962905884, -0.01859564147889614, -0.00746138533577323, -0.02614491619169712, -0.03411976620554924, 0.00814137514680624, 0.01972433179616928, 0.004787683952599764, -0.04044783487915993, -0.03859752044081688, -0.057766757905483246, 0.02533078007400036, -0.036229122430086136, 0.04610979184508324, 0.015450110659003258, -0.029419969767332077, 0.07786115258932114, 0.03204741328954697, 0.019058220088481903, 0.039189621806144714, 0.006809150334447622, -0.002147519029676914, -0.02882787026464939, 0.022222254425287247, 0.06346572190523148, 0.008344910107553005, -0.009936179034411907, -0.01851237751543522, 0.019002709537744522, -0.03893057629466057, -0.0025511186104267836, 0.033860720694065094, -0.033897727727890015, -0.03223244473338127, 0.03978171944618225, 0.05254887789487839, -0.029068410396575928, 0.008483683690428734, -0.013516533188521862, 0.03696924448013306, -0.03130728751420975, 0.02655198611319065, 0.04326030984520912, -0.019557803869247437, 0.04759003967046738, 0.06235553324222565, 0.012138050980865955, 0.02159314788877964, -0.0590989850461483, 0.0022909182589501143, 0.01172173023223877, -0.014858010224997997, -0.031270284205675125, -0.022499801591038704, -0.034267790615558624, 0.06246655434370041, -0.04063286632299423, -0.005157746374607086, 0.006712008733302355, 0.025127245113253593, -0.04958837851881981, -0.006693505682051182, 0.0629846379160881, -0.017772251740098, -0.058506883680820465, 0.029697516933083534, 0.01812381111085415, -0.029790032655000687, 0.026774022728204727, 0.0037491959519684315, -0.01937277242541313, -0.06705532968044281, -0.043704383075237274, -0.0800815299153328, -0.008909255266189575, -0.014996783807873726, -0.039152614772319794, 0.005745220463722944, 0.03030811995267868, -0.02307339757680893, 0.0009031838271766901, -0.005356654990464449, 0.01586643047630787, 0.03822745755314827, -0.035729534924030304, 0.04425947740674019, -0.029234938323497772, -0.039559684693813324, -0.04496259614825249, -0.014830255880951881, 0.008095117285847664, -0.026625998318195343, -0.010685555636882782, -0.005018972791731358, 0.02618192322552204, -0.007803693413734436, 0.000230421734158881, 0.03302808105945587, 0.03362017869949341, -0.0400407649576664, -0.03517444431781769, -0.004611904267221689, -0.015228073112666607, -0.0022712587378919125, -0.009057280607521534, -0.014885764569044113, -0.0021752738393843174, -0.0501064658164978, -0.0379314087331295, 0.011129630729556084, -0.04229814559221268, -0.08533641695976257, -0.10339546948671341, -0.03293556347489357, -0.001513786963187158, -0.064908966422081, -0.05295594781637192, 0.012998445890843868, 0.004702107049524784, -0.008566947653889656, -0.04348234459757805, 0.03215843439102173, 0.022425789386034012, -0.0439264215528965, -0.033527664840221405, 0.013581294566392899, 0.01310021337121725, -0.017596472054719925, -0.019946370273828506, 0.06365075707435608, 0.00163405726198107, -0.054288171231746674, -0.02003888599574566, -0.03930063918232918, -0.011083372868597507, -0.016551045700907707, -0.09081334620714188, 0.038375481963157654, -0.012017779983580112, -0.0014409309951588511, -0.01888244040310383, 0.009760399349033833, -0.0004313541285227984, -0.026625998318195343, -0.03443431854248047, 0.03970770910382271, 0.0446295402944088, -0.008978641591966152, -0.05573141574859619, -0.03856051340699196, 0.0037723248824477196, 0.008807487785816193, -0.04962538555264473, -0.024146579205989838, 0.03471186384558678, 0.010065700858831406, 0.048737235367298126, 0.01285967230796814, -0.022222254425287247, -0.022129738703370094, -0.03698774799704552, -0.012406346388161182, -0.04518463462591171, -0.023221423849463463, 0.023628491908311844, 0.02007589116692543, 0.024091070517897606, 0.020704997703433037, -0.00597188388928771, -0.004288099240511656, 0.04459253326058388, -0.04437049478292465, 0.017550215125083923, -0.0018688157433643937, -0.014700734056532383, 0.02573784813284874, 0.02647797390818596, 0.08459629118442535, -0.006217050366103649, -0.00854381825774908, -0.07971146702766418, 0.0031316541135311127, 0.03874554485082626, 0.014423186890780926, 0.0453326590359211, -0.05314097926020622, -0.024794189259409904, 0.04422247037291527, 0.05314097926020622, 0.028161758556962013, -0.011814245954155922, 0.03141830861568451, 0.04063286632299423, -0.01252661645412445, -0.04914430156350136, -0.0005021864199079573, -0.02651497907936573, 0.00014339922927320004, 0.0364326536655426, 0.07238423079252243, -0.04666488245129585, -0.008428174071013927, 0.029771529138088226, 0.05029149726033211, -0.05935802683234215, -0.029345957562327385, -0.03108525089919567, 0.07208818197250366, 0.01735593192279339, -0.0009621625649742782, -0.05373307690024376, 0.03517444431781769, -0.04744201526045799, -0.021389612928032875, -0.0575077161192894, -0.058876946568489075, -0.08319005370140076, -0.03204741328954697, -0.01623649336397648, 0.038412488996982574, -0.02803223580121994, -0.02464616298675537, 0.026996061205863953, -0.02011289820075035, 0.029605001211166382, 0.007873079739511013, 0.0022157493513077497, 0.004609591327607632, 0.06905366480350494, -0.00569433718919754, -0.013340753503143787, 0.017568718641996384, 0.02201871946454048, 0.02277734875679016, -0.08570647984743118, 0.04292725399136543, 0.025626828894019127, 0.027828700840473175, 0.053992122411727905, -0.03632163628935814, 0.05047652870416641, 0.031584836542606354, -0.0378388911485672, 0.01933576725423336, 0.028494814410805702, -0.0005646344507113099, -0.0324544832110405, -0.0014513389905914664, 0.00462346849963069, 0.00774818379431963, -0.023758014664053917, -0.0269035454839468, -0.04215012118220329, -0.01823483034968376, 0.013858841732144356, 0.02427610196173191, 0.011545950546860695, 0.0287538580596447, 0.03178837150335312 ]
7,451
pathlib
open
Open the file pointed by this path and return a file object, as the built-in open() function does.
def open(self, mode='r', buffering=-1, encoding=None, errors=None, newline=None): """ Open the file pointed by this path and return a file object, as the built-in open() function does. """ if "b" not in mode: encoding = io.text_encoding(encoding) return self._accessor.open(self, mode, buffering, encoding, errors, newline)
(self, mode='r', buffering=-1, encoding=None, errors=None, newline=None)
[ 0.014490148983895779, -0.05991632118821144, -0.06702805310487747, 0.026188943535089493, 0.01589471474289894, -0.02019731141626835, 0.008405175060033798, 0.01966393180191517, 0.005524924956262112, -0.0012034379178658128, 0.02014397270977497, -0.008138485252857208, -0.02204636111855507, 0.05404914543032646, 0.02517552301287651, 0.022117478772997856, -0.015583577565848827, -0.05198674276471138, -0.06489453464746475, 0.08704756945371628, -0.007858460769057274, 0.021672995761036873, -0.008445179089903831, -0.01959281414747238, 0.0025002174079418182, 0.06930380314588547, -0.04672406241297722, -0.0017057039076462388, 0.004322598222643137, -0.01724594458937645, 0.02332647331058979, -0.004153694491833448, -0.0012501087039709091, 0.014436811208724976, -0.012943347916007042, 0.0028935850132256746, -0.03264283761382103, 0.02122851274907589, 0.003584756050258875, -0.05099109932780266, -0.038083311170339584, -0.00510711083188653, 0.029229208827018738, 0.014365693554282188, -0.027397938072681427, -0.033585142344236374, -0.017974896356463432, -0.0042848167940974236, 0.02602892927825451, 0.0051026660948991776, 0.017139267176389694, 0.03669652342796326, -0.013201147317886353, -0.03826110437512398, -0.04501724615693092, 0.015032418072223663, -0.01776154339313507, 0.04622624069452286, -0.05020881071686745, -0.027380159124732018, -0.03836778178811073, -0.016792571172118187, 0.0577472448348999, -0.01752152293920517, -0.022437507286667824, 0.0006439448916353285, -0.049710988998413086, -0.02414432168006897, 0.012578871101140976, 0.03388739004731178, 0.050528839230537415, 0.03818998858332634, -0.000594496144913137, -0.02816244773566723, 0.02384207211434841, 0.0407857671380043, -0.08199824392795563, 0.021406305953860283, 0.05252012237906456, 0.027006791904568672, -0.020108414813876152, 0.0007895131129771471, -0.0008489626925438643, -0.001672367681749165, 0.009787517599761486, -0.05810283124446869, 0.03338956832885742, -0.020339546725153923, 0.013387830927968025, 0.016641447320580482, 0.0020801809150725603, 0.008965224027633667, -0.05252012237906456, -0.018970537930727005, 0.005582707468420267, -0.07346416264772415, -0.012783333659172058, 0.04715076461434364, 0.0013656743103638291, 0.01300557516515255, -0.09501270204782486, 0.014312355779111385, -0.022668637335300446, -0.014161230996251106, 0.010916505008935928, 0.015708032995462418, 0.022739754989743233, 0.033851832151412964, 0.028820283710956573, -0.031682755798101425, -0.06706360727548599, 0.042812611907720566, -0.003786996006965637, 0.07353528589010239, -0.0504932776093483, -0.003975901287049055, -0.013761196285486221, -0.02464214339852333, -0.0006495009292848408, -0.021406305953860283, -0.0344918891787529, 0.021388527005910873, -0.005987187381833792, 0.023148680105805397, 0.07773119956254959, 0.05671604350209236, -0.0016834797570481896, -0.055542606860399246, 0.08398952335119247, -0.015254659578204155, 0.019557256251573563, 0.00848073698580265, 0.0754554495215416, 0.00029224762693047523, 0.024357672780752182, 0.012934457510709763, 0.002096849028021097, 0.04405716434121132, -0.04295484721660614, 0.0905323177576065, 0.06564126163721085, -0.07865572720766068, 0.029833704233169556, -0.032785072922706604, -0.03918562829494476, 0.026935676112771034, 0.07673556357622147, -0.0773756131529808, -0.008311834186315536, 0.043950486928224564, 0.07502874732017517, -0.031096037477254868, 0.030953802168369293, 0.05511590465903282, 0.04931984469294548, -0.0328739695250988, 0.01273888535797596, 0.028518034145236015, -0.01300557516515255, 0.01801934465765953, -0.03322955593466759, 0.041532501578330994, -0.022721976041793823, -0.004769303370267153, 0.027149027213454247, 0.023415369912981987, -0.06923268735408783, -0.03520306199789047, 0.05127556994557381, -0.0855541080236435, 0.012089939787983894, 0.026917895302176476, -0.0004586509894579649, 0.028322461992502213, -0.01882830448448658, -0.0004928206326439977, -0.019486138597130775, 0.012543313205242157, 0.04000347852706909, 0.0037292130291461945, 0.004529282916337252, -0.04327487200498581, -0.016116956248879433, -0.0161969643086195, 0.0143390242010355, 0.07630885392427444, 0.0017734875436872244, -0.004658182617276907, 0.05284015089273453, 0.0339229479432106, 0.027735745534300804, 0.019717270508408546, 0.024873273447155952, -0.03552308678627014, -0.06286768615245819, -0.06816592812538147, 0.00022224154963623732, -0.021032940596342087, -0.01087205670773983, 0.11762800812721252, 0.0033091765362769365, 0.07086838036775589, 0.01220550574362278, 0.034847475588321686, -0.02869582735002041, 0.06336551159620285, 0.016072507947683334, -0.012303291819989681, -0.020535118877887726, 0.0756688043475151, -0.029033634811639786, -0.04519503936171532, -0.039114512503147125, 0.032447267323732376, 0.024357672780752182, 0.06315215677022934, -0.05220009386539459, 0.04366602003574371, -0.020837366580963135, 0.04722188413143158, 0.08726091682910919, -0.012658878229558468, -0.033834051340818405, 0.016054728999733925, -0.005924959667026997, 0.0013012242270633578, 0.014010107144713402, -0.031096037477254868, -0.048430878669023514, 0.025406653061509132, -0.008302943781018257, -0.0077606746926903725, 0.0009339700918644667, -0.003091380000114441, 0.01142321527004242, 0.005658269859850407, 0.005324907600879669, 0.025086626410484314, -0.08398952335119247, -0.022241933271288872, 0.022135257720947266, -0.039612334221601486, 0.011334318667650223, 0.044981688261032104, -0.038581132888793945, -0.07559768110513687, -0.017459295690059662, 0.00821404717862606, 0.023984307423233986, -0.03826110437512398, 0.0361098051071167, 0.04903537407517433, -0.0600229948759079, 0.018721627071499825, -0.0011789913987740874, -0.013894541189074516, -0.04700853303074837, -0.06567682325839996, 0.002742460696026683, 0.027753524482250214, 0.0030624885112047195, 0.016588108614087105, 0.021015159785747528, -0.03669652342796326, 0.036980994045734406, -0.025388874113559723, -0.05678715929389, -0.04779082164168358, 0.062227632850408554, -0.028766945004463196, -0.0349719300866127, 0.0642189159989357, -0.012392188422381878, -0.00026155050727538764, -0.05323129519820213, -0.0668858140707016, -0.00996531080454588, 0.016081398352980614, 0.014676831662654877, 0.014374583028256893, -0.072041817009449, 0.038545574992895126, -0.016259191557765007, -0.004084799438714981, -0.03184276819229126, 0.009991980157792568, -0.04594177380204201, 0.032447267323732376, -0.013761196285486221, -0.005524924956262112, 0.020090635865926743, 0.026331178843975067, -0.015219100750982761, 0.025886695832014084, 0.08107371628284454, 0.0030358193907886744, -0.05170227214694023, -0.046297360211610794, 0.07179290801286697, -0.06464561820030212, -0.019041655585169792, -0.050244368612766266, 0.03178942948579788, 0.03267839550971985, -0.009063010104000568, -0.041781410574913025, 0.03127383068203926, -0.024588804692029953, -0.011627677828073502, 0.060343023389577866, 0.020766250789165497, -0.03765660896897316, 0.0011400991352275014, 0.025566667318344116, -0.016001392155885696, -0.023770956322550774, -0.03740769624710083, 0.016383646056056023, 0.04675962030887604, -0.0036714302841573954, -0.013698969036340714, 0.01446347963064909, 0.0023068671580404043, -0.03900783509016037, -0.004831531085073948, 0.01074760127812624, 0.06816592812538147, 0.03712322935461998, -0.015841377899050713, 0.05906291306018829, -0.016917025670409203, 0.030100394040346146, 0.011245422065258026, 0.035665322095155716, -0.0838472917675972, 0.013227816671133041, -0.0018834971124306321, -0.03666096553206444, 0.04501724615693092, -0.01751263439655304, 0.05511590465903282, -0.004698186181485653, -0.0398256853222847, -0.03154052048921585, -0.027753524482250214, 0.004002570174634457, 0.04722188413143158, -0.01566358469426632, 0.06233431026339531, -0.025691121816635132, -0.02307756245136261, -0.0493554025888443, -0.03504304587841034, -0.06933936476707458, -0.08164265751838684, -0.013174478895962238, -0.004813751671463251, 0.040465742349624634, 0.0188638623803854, -0.0004761525196954608, -0.05436917021870613, 0.01300557516515255, -0.05230677127838135, -0.013565624132752419, 0.0010912059806287289, -0.025691121816635132, 0.0262956190854311, 0.07289522886276245, -0.04828864336013794, 0.031167155131697655, 0.009227468632161617, -0.004631513729691505, -0.006151645909994841, 0.05148892104625702, 0.007925133220851421, 0.010614256374537945, 0.03269617632031441, -0.035665322095155716, -0.008382950909435749, 0.0302070714533329, 0.00941415224224329, 0.013716747984290123, 0.01694369502365589, -0.006276101339608431, -0.013227816671133041, -0.020055076107382774, -0.04160361737012863, 0.014650162309408188, 0.021015159785747528, -0.019788386300206184, 0.01618807390332222, -0.004464832600206137, 0.061409782618284225, 0.012161057442426682, -0.043345991522073746, -0.0006595017621293664, 0.09259472042322159, 0.011067628860473633, 0.0029802590142935514, 0.042883727699518204, -0.004551507066935301, 0.03184276819229126, -0.04171029478311539, 0.038581132888793945, -0.022473065182566643, 0.030029278248548508, 0.05511590465903282, 0.033300671726465225, 0.012667767703533173, -0.04928428679704666, 0.0037469924427568913, 0.004555951803922653, -0.02279309369623661, 0.0094319311901927, 0.019788386300206184, 0.04331043362617493, -0.012161057442426682, -0.04697297140955925, 0.05497366935014725, 0.004604844842106104, -0.03315844014286995, 0.003786996006965637, -0.034367430955171585, -0.02887362241744995, 0.0032113902270793915, -0.019166110083460808, 0.017823772504925728, 0.02149520255625248, 0.033282894641160965, 0.02521108090877533, -0.004955986514687538, -0.023450927808880806, -0.003584756050258875, -0.008138485252857208, 0.0074539813213050365, -0.023824293166399002, -0.04956875368952751, 0.007836236618459225, 0.013263375498354435, 0.00007729838398518041, 0.04092800244688988, -0.005991632118821144, 0.03634093701839447, 0.025851136073470116, -0.02604670822620392, -0.06493008881807327, 0.02465992234647274, 0.005142669193446636, 0.064787857234478, -0.0032113902270793915, 0.03260727971792221, -0.013085582293570042, 0.06564126163721085, 0.009089679457247257, -0.10155549645423889, -0.016019171103835106, -0.004791527520865202, -0.03522083908319473, 0.01645476371049881, -0.0042848167940974236, -0.002729126252233982, 0.04160361737012863, 0.06695692986249924, -0.12281956523656845, -0.032980646938085556, -0.011272091418504715, -0.012098829261958599, 0.023664278909564018, -0.009183020330965519, -0.06130310893058777, -0.006200538948178291, -0.004671517293900251, -0.06951715797185898, -0.019841725006699562, 0.04025238752365112, 0.010347566567361355, -0.0007083949167281389, -0.029335884377360344, 0.034118521958589554, -0.048430878669023514, -0.021388527005910873, -0.07573992013931274, 0.0010767602361738682, 0.018757186830043793, 0.012018823064863682, -0.0170059222728014, 0.021406305953860283, 0.020855147391557693, -0.019486138597130775, 0.035131942480802536, 0.07239740341901779, 0.06980162113904953, -0.06553458422422409, -0.04398604482412338, 0.014650162309408188, 0.11492554843425751, -0.0037358803674578667, -0.012525533325970173, -0.08519852161407471, -0.013725637458264828, -0.014027886092662811, -0.04754191264510155, -0.007471760734915733, 0.01834826171398163, -0.04238590598106384, 0.038545574992895126, -0.03932786360383034, -0.06571237742900848, 0.022970886901021004, -0.0377277247607708, -0.0007784010376781225, 0.021833010017871857, -0.03100714087486267, 0.01567247323691845, -0.01721927523612976, 0.0076673333533108234, -0.027753524482250214, -0.003478080267086625, -0.04931984469294548, -0.0017890444723889232, 0.05657380819320679, 0.0019868393428623676, 0.024731040000915527, -0.0701216533780098, -0.02890918031334877, -0.024019865319132805, 0.021299630403518677, 0.024019865319132805, 0.010285338386893272, 0.002569112228229642, 0.029815925285220146, -0.04412828013300896, 0.000555048231035471, 0.06877042353153229, 0.020055076107382774, 0.0119565948843956, -0.042314790189266205, 0.045763980597257614, -0.042350348085165024, 0.030864905565977097, 0.020268429070711136, 0.029264766722917557, -0.047613028436899185, -0.016623668372631073, 0.017717095091938972, -0.05959629267454147, -0.0031780540011823177, -0.03655428811907768, 0.08733204007148743, -0.04796861484646797, 0.040679093450307846, -0.048430878669023514, 0.0064983428455889225, 0.028304683044552803, 0.019735049456357956, 0.0398256853222847, 0.02729126252233982, -0.02073069103062153, -0.01154767069965601, -0.06297436356544495, 0.019432799890637398, -0.00007632608321728185, -0.055329255759716034, 0.030669333413243294, -0.004658182617276907, 0.01808157190680504, 0.06023634970188141, 0.044697221368551254, -0.002037954982370138, -0.01060536690056324, 0.034047406166791916, 0.0626898929476738, -0.015556908212602139, -0.017565971240401268, 0.055862635374069214, -0.014516817405819893, -0.010178662836551666, 0.038083311170339584, -0.01563691534101963, 0.007814012467861176, -0.028233565390110016, -0.06951715797185898, -0.0657479390501976, -0.026384515687823296, -0.00807181280106306, 0.021566320210695267, -0.04793305695056915, 0.026882337406277657, -0.015734700486063957, -0.033016204833984375, 0.014063444919884205, -0.05433361232280731, 0.014143452048301697, -0.048715345561504364, 0.015752481296658516, 0.01112985610961914, -0.02012619376182556, -0.04242146760225296, 0.024339893832802773, -0.015183541923761368, -0.018703848123550415, -0.045230600982904434, -0.04466165974736214, 0.02889140136539936, -0.03241170570254326, 0.020108414813876152, 0.01220550574362278, 0.05653825029730797, -0.0006567237433046103, 0.052911266684532166, -0.011174305342137814, -0.012970016337931156, 0.014525707811117172, 0.02227749302983284, 0.0008161820587702096, 0.03872336819767952, 0.00011042627011192963, 0.008547409437596798, -0.014827955514192581, 0.00368254235945642, 0.004147027153521776, -0.005449362564831972, 0.04803973063826561, 0.04722188413143158, -0.050031017512083054, 0.007231739815324545, 0.010738711804151535, -0.034082964062690735, 0.011103187687695026, 0.01937946304678917, 0.0091474624350667, 0.005182672757655382, 0.01087205670773983, 0.019823946058750153, -0.02277531288564205, -0.028980297967791557, 0.00341585255227983, 0.0328739695250988, 0.038865599781274796, 0.032749515026807785, -0.06674358248710632, -0.03525639697909355, -0.0009934196714311838, -0.05579151585698128, -0.056111544370651245, -0.025797799229621887, -0.0038892270531505346, 0.0013601182727143168, 0.09465711563825607, -0.024037646129727364, -0.0016990365693345666, -0.0052271210588514805, -0.010018648579716682, -0.011005401611328125, 0.020606236532330513, -0.06930380314588547, 0.09885303676128387, -0.035985350608825684, 0.018508275970816612, 0.03315844014286995, 0.011120966635644436, -0.047897499054670334, 0.016774792224168777, -0.0075873262248933315, -0.017859330400824547, -0.019201669842004776, -0.018117131665349007, -0.005898290779441595, -0.016579220071434975, 0.038865599781274796, -0.01642809435725212, 0.035932011902332306, -0.011601008474826813, 0.016925916075706482, -0.007965137250721455, 0.01856161467730999, 0.0047648586332798, -0.0008272941340692341, 0.03676764294505119, 0.04167473316192627, 0.0006250543519854546, 0.03641205653548241, 0.012516643851995468, -0.030847126618027687, 0.01959281414747238, 0.012356629595160484, 0.013654520735144615, 0.052377887070178986, 0.011289870366454124, -0.02702457271516323, 0.0239131897687912, 0.02412654273211956, -0.019788386300206184, -0.01939724199473858, -0.030847126618027687, 0.019681710749864578, 0.03422519937157631, 0.020303986966609955, 0.04384381324052811, 0.000614497868809849, 0.027149027213454247, 0.007885130122303963, 0.06386332958936691, -0.08256717771291733, -0.01805490255355835, -0.03495414927601814, -0.02524663880467415, 4.253842007528874e-7, -0.02254418283700943, -0.001994617749005556, -0.0032936197239905596, 0.020624015480279922, 0.03522083908319473, -0.030420422554016113, 0.060094114392995834, 0.034616343677043915, -0.03282063081860542, 0.028980297967791557, -0.0365898497402668, -0.009609724394977093, -0.019806167110800743, -0.04775526374578476, -0.00010660649422788993, 0.0031113815493881702, 0.015014639124274254, -0.009547497145831585, -0.057213861495256424, 0.019290566444396973, 0.013885651715099812, 0.0005639379378408194, 0.012996685691177845, -0.0215307604521513, -0.03397628664970398, -0.07588215172290802, -0.018668290227651596, -0.027166806161403656, 0.00004608039671438746, 0.006605018861591816, 0.06187204644083977, 0.051844507455825806, -0.003927008248865604, 0.03529195860028267, -0.02789575792849064, -0.016650335863232613, 0.03552308678627014, -0.02599337138235569, 0.038581132888793945, 0.016081398352980614, -0.05625377967953682, 0.04715076461434364, -0.005058217793703079, -0.02252640388906002, 0.06482341140508652, 0.03719434514641762, 0.0032691732048988342, -0.022135257720947266, -0.022650858387351036, -0.006422780454158783, 0.029300324618816376, 0.014303465373814106, -0.07758896797895432, -0.00002689469874894712, -0.008174044080078602, 0.06983718276023865, -0.0689837783575058, 0.05163115635514259, -0.029264766722917557, 0.005973852705210447 ]
7,452
pathlib
owner
Return the login name of the file owner.
def owner(self): """ Return the login name of the file owner. """ return self._accessor.owner(self)
(self)
[ 0.02414020150899887, 0.0032573852222412825, 0.0023986005689948797, 0.07278039306402206, 0.051775507628917694, -0.03479684144258499, 0.031113276258111, 0.03287795931100845, 0.020285308361053467, -0.00035711308009922504, 0.004411711823195219, -0.05989648401737213, -0.007105854339897633, 0.002820497378706932, -0.02559649385511875, -0.0095001719892025, -0.0001778872829163447, 0.029828311875462532, -0.02287236973643303, 0.008951920084655285, 0.00988566130399704, 0.011547548696398735, 0.02784089930355549, -0.09231185913085938, -0.03465977683663368, 0.054688092321157455, 0.0051998235285282135, -0.002148032421246171, 0.017595447599887848, -0.04050208255648613, -0.014040379785001278, -0.048040542751550674, 0.06256920844316483, 0.013851918280124664, 0.029348591342568398, 0.04272935539484024, -0.0006135705625638366, 0.07312305271625519, -0.05417410656809807, -0.07860556989908218, -0.02455138973891735, 0.016541777178645134, 0.039611175656318665, -0.021741600707173347, 0.004484526347368956, 0.03536222502589226, 0.04368879646062851, -0.028183557093143463, 0.024671319872140884, 0.007105854339897633, 0.032329708337783813, 0.03435138612985611, -0.039885301142930984, -0.015539505518972874, -0.010596674866974354, 0.016798770055174828, 0.036972712725400925, -0.02455138973891735, -0.03909718990325928, 0.03885732963681221, 0.005996501538902521, -0.028509080410003662, 0.07853703200817108, -0.06901116669178009, -0.009465905837714672, 0.019342999905347824, 0.007538458798080683, -0.0024371494073420763, -0.022718174383044243, 0.016867302358150482, -0.02013111114501953, -0.01944579742848873, 0.03503670170903206, 0.013149471022188663, 0.023677613586187363, -0.07798878103494644, -0.03102761134505272, 0.030941946431994438, -0.0014316646847873926, -0.03411152586340904, -0.003411581041291356, -0.03501956909894943, -0.03133600205183029, 0.02009684592485428, 0.037658028304576874, -0.014888456091284752, 0.02532236836850643, -0.01941153220832348, -0.023317823186516762, 0.026624465361237526, 0.020576566457748413, 0.018657686188817024, 0.0025378051213920116, 0.010879366658627987, -0.027943696826696396, -0.054413966834545135, -0.02578495629131794, 0.01558233704417944, 0.00255707954056561, 0.011230590753257275, -0.03390593081712723, 0.040981803089380264, 0.026213277131319046, 0.05972515419125557, -0.015051218681037426, 0.016567476093769073, -0.029674114659428596, -0.005653844214975834, -0.009140381589531898, -0.007902531884610653, -0.07476780563592911, -0.030787751078605652, 0.00956870336085558, 0.03854893893003464, 0.09381955116987228, -0.043346140533685684, -0.015205414034426212, 0.015993526205420494, 0.04574473947286606, -0.041975509375333786, 0.0004663350700866431, 0.06729787588119507, -0.03539649024605751, -0.02026817388832569, 0.012078667059540749, 0.026932857930660248, -0.0039170002564787865, -0.022032858803868294, -0.014023247174918652, -0.01672167330980301, 0.010708038695156574, -0.01567656733095646, -0.02282097190618515, -0.005208389833569527, 0.05050767585635185, 0.02773810178041458, 0.040330756455659866, 0.029708381742239, -0.035327959805727005, 0.07750906050205231, -0.011701744049787521, 0.013158037327229977, -0.009474472142755985, -0.006917392835021019, -0.0033130671363323927, 0.06599578261375427, -0.0022229887545108795, 0.024225866422057152, 0.03772655874490738, -0.04810907319188118, 0.03438565135002136, -0.02910873107612133, 0.00384418573230505, 0.028029361739754677, -0.020987754687666893, 0.012729715555906296, -0.04372306168079376, 0.002610619645565748, -0.023883208632469177, -0.046669915318489075, -0.009560136124491692, -0.02578495629131794, 0.012566953897476196, -0.05074753612279892, -0.0040519218891859055, -0.021878663450479507, 0.0050499108619987965, -0.009328843094408512, -0.012352792546153069, 0.009063283912837505, -0.02688146010041237, -0.0018289329018443823, -0.0317985899746418, 0.039748236536979675, -0.015025518834590912, 0.007504193112254143, 0.01757831498980522, 0.003979106899350882, -0.0011104235891252756, 0.011290555819869041, -0.013646324165165424, 0.006150697357952595, -0.0031631544698029757, 0.07093004882335663, 0.02559649385511875, 0.03034229762852192, 0.037966419011354446, -0.0005985793541185558, 0.0968349277973175, 0.007624123245477676, -0.035002436488866806, 0.02869754284620285, -0.04259229451417923, 0.013397897593677044, 0.02946852147579193, -0.0691482275724411, 0.007105854339897633, 0.011547548696398735, -0.050267815589904785, -0.010442478582262993, 0.011838806793093681, 0.02345488779246807, -0.03347761183977127, -0.010134086944162846, 0.02583635412156582, 0.031130408868193626, 0.039062924683094025, -0.00507989339530468, -0.07202655076980591, 0.05434543639421463, 0.022649642080068588, -0.03125033900141716, -0.03577341511845589, 0.02691572532057762, 0.007589857559651136, -0.03817201405763626, -0.03001677244901657, -0.007157252635806799, -0.01995978318154812, 0.0884740948677063, 0.006107864901423454, 0.0553048774600029, -0.003435138612985611, -0.03563635051250458, -0.02787516452372074, -0.04824613779783249, 0.01798950508236885, -0.0098428288474679, 0.016661707311868668, -0.06219228729605675, 0.006746063940227032, -0.05448249727487564, -0.032826561480760574, 0.040707677602767944, 0.021930063143372536, 0.04687550663948059, -0.0342143252491951, -0.016653141006827354, -0.04481956362724304, -0.010014157742261887, -0.04906851425766945, -0.013963282108306885, 0.10622373968362808, 0.0428321547806263, 0.004152577370405197, -0.05475662276148796, -0.008506465703248978, 0.032363973557949066, 0.01762971468269825, -0.05736082047224045, 0.04382585734128952, 0.025545096024870872, -0.053968511521816254, 0.011127793230116367, -0.005581029690802097, -0.032723765820264816, -0.04738949239253998, -0.002739116083830595, 0.024534257128834724, 0.019702790305018425, -0.006887410301715136, -0.026230409741401672, 0.036013275384902954, -0.02910873107612133, -0.012721149250864983, -0.023334957659244537, -0.017561182379722595, -0.011804541572928429, -0.044305577874183655, -0.019120272248983383, 0.12808527052402496, 0.0801817923784256, -0.0359790101647377, -0.04512795805931091, -0.048040542751550674, -0.11855939775705338, -0.01345786266028881, 0.03015383519232273, -0.07223214209079742, 0.005422550719231367, -0.0004955144831910729, 0.009620101191103458, 0.004732952918857336, 0.00038388316170312464, -0.014468701556324959, -0.060479000210762024, -0.029451388865709305, -0.04632725566625595, -0.045813269913196564, -0.017749644815921783, -0.00021389305766206235, 0.0007784743793308735, -0.02059369906783104, -0.040810476988554, -0.04046781733632088, -0.005525347776710987, -0.043209075927734375, -0.014408736489713192, -0.007349997293204069, 0.004311056341975927, -0.05557900294661522, 0.030376562848687172, -0.03303215652704239, -0.003235969226807356, -0.012772548012435436, 0.016481813043355942, -0.009114681743085384, -0.026179011911153793, 0.01032254844903946, 0.019257336854934692, 0.023334957659244537, 0.010768002830445766, 0.022769572213292122, 0.07373983412981033, 0.005872288253158331, 0.028046494349837303, 0.004574473947286606, -0.020199643447995186, 0.03779509291052818, 0.07014193385839462, -0.03322061896324158, 0.07154683023691177, -0.019394399598240852, -0.029074465855956078, 0.020285308361053467, 0.011744576506316662, -0.02770383656024933, 0.08340276777744293, -0.0718209519982338, 0.08107269555330276, -0.058560118079185486, -0.031730059534311295, 0.009029017761349678, 0.023934606462717056, -0.03604754060506821, 0.03618460148572922, 0.009208912961184978, -0.06198669224977493, 0.06788039952516556, -0.035739149898290634, 0.014794225804507732, -0.0635971799492836, -0.023249292746186256, -0.03621886670589447, -0.04605313017964363, 0.009363108314573765, 0.04780068248510361, -0.000023373639123747125, 0.060479000210762024, -0.054516762495040894, 0.0063691409304738045, 0.0787426307797432, -0.07017619907855988, -0.05879997834563255, -0.025819221511483192, -0.0110678281635046, -0.027172718197107315, 0.011222024448215961, -0.004874298814684153, 0.057292286306619644, 0.008052445016801357, -0.06928528845310211, 0.016927266493439674, -0.037692293524742126, -0.0359790101647377, 0.008326570503413677, -0.018297895789146423, 0.02378041110932827, 0.028029361739754677, -0.03666432201862335, -0.04248949512839317, -0.027001388370990753, 0.03529369458556175, -0.041838448494672775, -0.018966076895594597, 0.04190697893500328, 0.012858211994171143, -0.04118739813566208, -0.08031885325908661, -0.032912224531173706, 0.0300681721419096, 0.03452271595597267, 0.013826219365000725, 0.03858320415019989, -0.06668109446763992, -0.011419052258133888, -0.04711536690592766, -0.009071850217878819, -0.0017090028850361705, 0.03909718990325928, 0.04341467097401619, -0.053317464888095856, 0.007932514883577824, 0.01872621662914753, 0.005778057500720024, -0.03457411378622055, -0.0002516389067750424, -0.011736010201275349, -0.0162590853869915, -0.04433984309434891, 0.05479089170694351, -0.03274089843034744, -0.004000523127615452, 0.0022465463262051344, -0.007157252635806799, -0.00015031408111099154, 0.004454543814063072, -0.014323071576654911, -0.024294396862387657, -0.026367472484707832, -0.03902865946292877, -0.02026817388832569, 0.030582157894968987, -0.008780591189861298, 0.0704503282904625, 0.03926851600408554, -0.007439944893121719, -0.058834243565797806, 0.061609767377376556, -0.0005803756648674607, -0.006690382491797209, 0.047218166291713715, -0.010622373782098293, 0.052323758602142334, -0.026761529967188835, -0.025819221511483192, -0.004720103461295366, -0.0110678281635046, 0.010965031571686268, 0.055647533386945724, -0.02287236973643303, 0.04310628026723862, 0.031730059534311295, 0.048760123550891876, 0.025476563721895218, -0.0196856576949358, 0.008849122561514378, -0.023112230002880096, -0.06253494322299957, 0.07915382087230682, -0.018486356362700462, -0.012387058697640896, 0.015231113880872726, 0.008026745170354843, 0.030924813821911812, 0.005683826748281717, -0.06925102323293686, 0.05215242877602577, 0.014571498148143291, 0.048177607357501984, -0.005868005100637674, 0.02583635412156582, 0.0016479670302942395, -0.03515662997961044, -0.07209508121013641, 0.008763458579778671, -0.053968511521816254, -0.023968873545527458, 0.013432162813842297, -0.012515555135905743, -0.05540767312049866, 0.0566755048930645, 0.08970765769481659, -0.08107269555330276, 0.018657686188817024, -0.061575502157211304, 0.02372901327908039, -0.008330853655934334, 0.014794225804507732, 0.03594474121928215, 0.05623004958033562, -0.00859641283750534, -0.06109578162431717, -0.0035957591608166695, -0.009937059134244919, 0.01817796565592289, 0.007786885369569063, 0.044305577874183655, -0.04046781733632088, -0.03303215652704239, -0.08196360617876053, -0.00797963049262762, -0.028731808066368103, 0.05694963037967682, 0.021056286990642548, -0.011787408962845802, -0.022769572213292122, -0.03260383382439613, 0.017526917159557343, -0.04951396957039833, 0.05999927967786789, 0.048211872577667236, -0.08737759292125702, -0.004062629770487547, 0.013423596508800983, 0.01971992291510105, 0.03215838223695755, 0.06791466474533081, -0.05657270923256874, -0.024722719565033913, -0.009046150371432304, -0.020028315484523773, 0.0483831986784935, -0.027172718197107315, -0.007525609340518713, -0.022666774690151215, -0.03758949786424637, -0.05962235853075981, 0.00814239215105772, -0.021073419600725174, 0.038754530251026154, -0.0054867989383637905, -0.02204999327659607, -0.004017655737698078, 0.009200346656143665, 0.02455138973891735, -0.04632725566625595, 0.014597197994589806, 0.017561182379722595, -0.00521695613861084, -0.006257777567952871, -0.08333423733711243, 0.003846327308565378, -0.008318004198372364, -0.02259824424982071, 0.013286533765494823, -0.02186153084039688, 0.06527619808912277, -0.04447690770030022, 0.056058723479509354, -0.004998512100428343, -0.016250519081950188, -0.010236884467303753, -0.023129362612962723, -0.006523336749523878, 0.07963354140520096, -0.046635646373033524, -0.025939151644706726, -0.037966419011354446, 0.029074465855956078, 0.008022462017834187, -0.0024135918356478214, 0.02023390866816044, -0.009003318846225739, 0.04276362061500549, -0.04673844575881958, -0.030667820945382118, -0.06685242801904678, 0.057326555252075195, -0.010630940087139606, 0.09443633258342743, -0.030085304751992226, 0.028577612712979317, -0.05023355036973953, 0.016027791425585747, 0.02797796204686165, 0.04800627753138542, -0.014777093194425106, -0.012309961020946503, -0.013269401155412197, 0.024380061775445938, -0.01776677742600441, 0.014100344851613045, 0.014580064453184605, 0.022444048896431923, -0.019068874418735504, 0.024534257128834724, 0.002899736864492297, 0.0016286926111206412, 0.019805587828159332, -0.04105033725500107, 0.07007340341806412, 0.06969647854566574, -0.005778057500720024, -0.00781258475035429, 0.015333910472691059, 0.03748669847846031, 0.08998178690671921, -0.001113635953515768, -0.03556782007217407, 0.0217758659273386, -0.05146711319684982, 0.05705242604017258, -0.004227533470839262, -0.09772583842277527, 0.010990730486810207, -0.022701041772961617, 0.04495662823319435, -0.009097549133002758, 0.0016329758800566196, -0.015822196379303932, -0.012241429649293423, -0.027344046160578728, -0.03171292692422867, 0.02787516452372074, -0.020285308361053467, 0.004737236071377993, -0.06363144516944885, 0.05955382436513901, 0.008168091997504234, 0.020490901544690132, -0.0031909954268485308, -0.011581813916563988, 0.06606431305408478, -0.024431459605693817, -0.04714963585138321, -0.02460278943181038, -0.002129828790202737, -0.002443574368953705, 0.01913740672171116, -0.02916012890636921, 0.00405834661796689, -0.023163627833127975, -0.011676045134663582, 0.0049813794903457165, 0.07990766316652298, 0.027823766693472862, -0.02532236836850643, 0.011196324601769447, 0.03659579157829285, -0.04523075371980667, 0.047903478145599365, -0.014280240051448345, 0.0059451027773320675, -0.03289509192109108, -0.013397897593677044, 0.011256289668381214, 0.07428808510303497, 0.02023390866816044, -0.021810133010149002, -0.018195098266005516, -0.014460135251283646, 0.013192303478717804, -0.014151743613183498, 0.028509080410003662, -0.002889028750360012, -0.022889502346515656, -0.04852026328444481, -0.05862865224480629, -0.008772024884819984, 0.022803837433457375, -0.037658028304576874, -0.008630678988993168, 0.02169020287692547, -0.04978809505701065, -0.017972370609641075, -0.010245450772345066, 0.0023000866640359163, 0.02647027000784874, -0.04961676523089409, -0.0160963237285614, 0.004011231008917093, 0.04248949512839317, -0.004929980728775263, 0.04135872796177864, -0.02838915027678013, -0.01812656782567501, 0.0007233279757201672, -0.017732512205839157, -0.027206983417272568, -0.02013111114501953, -0.06411116570234299, 0.02569929137825966, 0.008831989951431751, 0.04605313017964363, -0.014862757176160812, -0.034008730202913284, -0.023437753319740295, -0.01840069331228733, 0.026230409741401672, -0.0039641158655285835, 0.05270067974925041, 0.01798950508236885, -0.04505942389369011, 0.01587359607219696, -0.04341467097401619, 0.06113005056977272, 0.03298075869679451, 0.035327959805727005, 0.008369402959942818, -0.004111886490136385, -0.0167816374450922, -0.0030218083411455154, -0.07709787786006927, 0.04012516140937805, 0.05489368736743927, 0.03529369458556175, 0.011804541572928429, 0.0442027822136879, -0.057018160820007324, -0.08689787238836288, -0.0153767429292202, 0.0449223630130291, 0.0669894888997078, -0.024722719565033913, 0.013500694185495377, 0.05886851251125336, 0.07846850156784058, 0.0013856200966984034, 0.034368518739938736, 0.031044743955135345, 0.05533914268016815, 0.04358599707484245, -0.015248246490955353, 0.01688443496823311, -0.04728669673204422, 0.021381810307502747, -0.0002559221175033599, -0.022478314116597176, 0.01724422536790371, 0.007953930646181107, -0.0034586964175105095, 0.03378600254654884, 0.009654367342591286, 0.06393983960151672, -0.02103915438055992, -0.05540767312049866, 0.050130750983953476, -0.00039459121762774885, -0.007679805159568787, -0.04105033725500107, 0.009877094067633152, 0.02784089930355549, -0.014134610071778297, 0.07661815732717514, 0.03861746937036514, -0.027361178770661354, -0.017732512205839157, -0.03143880143761635, 0.07147829979658127, 0.02811502479016781, 0.0013256551465019584, -0.017398420721292496, 0.0387202650308609, 0.00892622023820877, -0.0025999117642641068, 0.0269671231508255, -0.02414020150899887, -0.03991956636309624, 0.03957691043615341, -0.0007511688745580614, 0.026264676824212074, -0.06469368189573288, 0.03416292369365692, -0.015325344167649746, 0.003548643784597516, 0.003983390051871538, -0.0027005672454833984, 0.01768111251294613, 0.05982794985175133, 0.03370033949613571, 0.018075168132781982, -0.007799734827131033, 0.002792656421661377, -0.024260131642222404, -0.021073419600725174, 0.038754530251026154, -0.0015344618586823344, 0.025339500978589058, 0.027720969170331955, 0.016276217997074127, -0.03325488418340683, 0.013723421841859818, -0.019531462341547012, 0.036561526358127594, -0.014305938966572285, -0.04101606830954552, -0.020696496590971947 ]
7,453
pathlib
read_bytes
Open the file in bytes mode, read it, and close the file.
def read_bytes(self): """ Open the file in bytes mode, read it, and close the file. """ with self.open(mode='rb') as f: return f.read()
(self)
[ 0.02918911725282669, -0.0943247377872467, -0.05005341395735741, 0.07690879702568054, 0.00872538611292839, -0.04942644014954567, -0.016135869547724724, 0.08380550891160965, 0.04308703914284706, -0.06579742580652237, 0.04949610307812691, 0.0029302320908755064, -0.011381317861378193, 0.03828023746609688, -0.0029062852263450623, 0.03953418508172035, -0.04239039868116379, -0.003851099871098995, -0.015369568020105362, 0.044619642198085785, -0.03901170939207077, 0.02621099166572094, 0.014246239326894283, -0.010257989168167114, -0.011485813185572624, 0.07426157593727112, -0.0056906589306890965, -0.03467513993382454, 0.009491687640547752, -0.02507895417511463, -0.005233490373939276, -0.046570226550102234, 0.04287804663181305, 0.06739969551563263, -0.010075122117996216, 0.019488437101244926, 0.005808216519653797, 0.025793008506298065, -0.03573751077055931, 0.03401333466172218, -0.047057874500751495, 0.0027364797424525023, 0.051446691155433655, -0.016196824610233307, -0.016571268439292908, -0.007519332692027092, 0.007471438497304916, -0.018164826557040215, -0.026907628402113914, 0.0305998083204031, 0.05015790835022926, 0.03268972039222717, -0.012182450853288174, 0.005847402382642031, 0.014742594212293625, 0.027395274490118027, -0.03800158202648163, 0.014803550206124783, -0.05186467245221138, 0.06774801015853882, -0.011302946135401726, -0.058238908648490906, 0.035093121230602264, -0.10275404900312424, -0.011390025727450848, 0.014063372276723385, -0.0072624473832547665, -0.02265813946723938, 0.03577234223484993, 0.037513937801122665, 0.045420773327350616, 0.04280838370323181, -0.014672930352389812, 0.03279421851038933, -0.03268972039222717, 0.02183959074318409, -0.03584200516343117, 0.02161318250000477, 0.013558310456573963, 0.020585643127560616, 0.02892787754535675, 0.007841527462005615, 0.03786225616931915, 0.028300903737545013, -0.00006765685247955844, -0.056950125843286514, 0.06635473668575287, 0.003851099871098995, -0.04064880684018135, 0.05430290475487709, 0.008694908581674099, 0.05813441053032875, -0.0437140129506588, 0.029136870056390762, 0.04716236889362335, -0.10672488808631897, -0.004493312910199165, 0.06032881885766983, -0.06057264283299446, 0.011668680235743523, -0.10170909762382507, 0.07154468446969986, 0.014942876994609833, -0.02756943553686142, -0.0006966376677155495, -0.03901170939207077, 0.005285738036036491, -0.01435073558241129, 0.01282684039324522, -0.017921002581715584, -0.01853056065738201, -0.03413524478673935, -0.021996334195137024, 0.0403701514005661, -0.03169701248407364, -0.03873305395245552, 0.003785790177062154, 0.026419982314109802, 0.0155785595998168, -0.008220324292778969, 0.03960385173559189, 0.03636448457837105, -0.011816715821623802, -0.0074366070330142975, 0.05433773621916771, 0.0851987823843956, -0.014028540812432766, -0.021369360387325287, 0.0448286309838295, 0.022483980283141136, 0.024086246266961098, -0.0005709163378924131, 0.0170240830630064, -0.0008011332829482853, -0.012600433081388474, 0.020010916516184807, 0.048485979437828064, 0.02429523691534996, -0.013175159692764282, 0.06036365032196045, 0.06315020471811295, -0.0044563040137290955, 0.070325568318367, -0.03148801997303963, -0.020812049508094788, 0.027726178988814354, 0.028544727712869644, -0.06712103635072708, -0.06879296898841858, -0.000022569291104446165, 0.013767301104962826, 0.006861880887299776, -0.018129995092749596, 0.019558101892471313, 0.0386982224881649, -0.021648013964295387, 0.00004925445682602003, -0.007419190835207701, -0.06280188262462616, -0.028544727712869644, -0.05862205848097801, 0.057507436722517014, -0.005899650044739246, -0.044062331318855286, 0.008207262493669987, 0.01737240143120289, -0.06691204756498337, -0.008520749397575855, 0.009796466678380966, -0.06032881885766983, -0.04751068726181984, 0.024451980367302895, -0.044619642198085785, 0.02290196157991886, 0.046256739646196365, 0.015073496848344803, 0.005960606038570404, -0.014315903186798096, 0.024225573986768723, 0.0031980022322386503, -0.020968792960047722, -0.05242198333144188, -0.025845255702733994, 0.013140327297151089, 0.09125953167676926, 0.037479106336832047, 0.02704695612192154, 0.0311571191996336, 0.048764634877443314, -0.02077721804380417, -0.03390883654356003, -0.005782092455774546, -0.019174950197339058, 0.009064997546374798, 0.013053247705101967, -0.06799183040857315, 0.021230032667517662, 0.01830415427684784, -0.01674542762339115, 0.051446691155433655, -0.029032373800873756, 0.0035811527632176876, 0.033142536878585815, -0.023894671350717545, -0.05604449659585953, 0.0375836007297039, 0.018112579360604286, 0.017659764736890793, -0.04866014048457146, 0.04124094918370247, -0.04144993796944618, -0.040230825543403625, -0.023685680702328682, 0.023825006559491158, 0.06983792036771774, -0.06743452697992325, -0.03446614742279053, -0.01705891452729702, -0.006078163627535105, 0.056114163249731064, 0.08422349393367767, 0.0721716582775116, -0.07885938137769699, -0.01912270300090313, 0.00613041128963232, -0.005059330724179745, -0.0155785595998168, -0.029328444972634315, -0.05813441053032875, 0.0186002254486084, -0.02617616020143032, 0.003341683652251959, 0.019453605636954308, 0.01215632725507021, 0.043783675879240036, 0.02619357593357563, 0.0038227990735322237, 0.013479938730597496, -0.05597483366727829, -0.018129995092749596, -0.009030165150761604, -0.01420269999653101, -0.010318945161998272, 0.06482212990522385, -0.03761843219399452, -0.0807403028011322, 0.040021833032369614, 0.05235232040286064, -0.029694179072976112, -0.015953002497553825, 0.058552395552396774, -0.048764634877443314, -0.016997957602143288, -0.041345443576574326, 0.024957044050097466, -0.028997542336583138, -0.01244368962943554, -0.09648431092500687, -0.003559382865205407, 0.047371361404657364, 0.007501916494220495, -0.0068226950243115425, 0.04399266839027405, -0.006535331718623638, 0.010571476072072983, 0.020672721788287163, -0.009657138958573341, -0.0204637311398983, 0.03821057453751564, -0.003711772384122014, 0.052805133163928986, 0.011816715821623802, -0.041066788136959076, 0.016135869547724724, -0.017494313418865204, -0.08115828782320023, 0.05001858249306679, 0.010310237295925617, -0.005986729636788368, -0.0005703720962628722, -0.03488412871956825, 0.034553226083517075, 0.034553226083517075, 0.017685888335108757, 0.00225101038813591, -0.007266801316291094, -0.036712802946567535, -0.019732261076569557, -0.03761843219399452, 0.000742354488465935, -0.0071100578643381596, 0.004998375196009874, -0.02161318250000477, -0.02070755325257778, 0.06311537325382233, 0.0008114739903248847, -0.09091120958328247, -0.01448135543614626, 0.04977475851774216, -0.03411782905459404, -0.05001858249306679, 0.007663013879209757, -0.026001999154686928, 0.04441064968705177, -0.037513937801122665, -0.007336465176194906, 0.008155014365911484, -0.04016115888953209, -0.05186467245221138, 0.03185375779867172, 0.026681222021579742, -0.0074932086281478405, 0.03309028968214989, 0.04388817027211189, -0.011520644649863243, -0.020968792960047722, 0.014707761816680431, 0.0673300251364708, 0.050123076885938644, 0.014002416282892227, -0.046221908181905746, 0.0052987998351454735, 0.018495729193091393, -0.005007083062082529, 0.037513937801122665, 0.004906941205263138, 0.019558101892471313, 0.03035598434507847, -0.017659764736890793, 0.05409391224384308, 0.026698637753725052, 0.009439440444111824, 0.021996334195137024, -0.0033177367877215147, -0.056671470403671265, -0.023877255618572235, -0.002732125809416175, -0.017651056870818138, -0.0021628420799970627, -0.04886912927031517, 0.046291571110486984, -0.017511729151010513, 0.06691204756498337, -0.002099709352478385, -0.03639931604266167, 0.0066049955785274506, -0.014002416282892227, -0.04071846976876259, 0.025496937334537506, -0.01763364113867283, 0.013244823552668095, -0.05196916684508324, -0.011137493886053562, -0.011564184911549091, -0.06893229484558105, -0.003973011393100023, 0.011024290695786476, 0.03793191909790039, 0.03309028968214989, 0.008721032179892063, -0.003979542758315802, 0.011781884357333183, -0.033699847757816315, -0.024782884865999222, -0.029624516144394875, -0.012269530445337296, -0.045490436255931854, 0.03911620378494263, -0.00913466140627861, 0.045176949352025986, -0.02619357593357563, -0.02239689975976944, -0.03765326365828514, 0.003457064274698496, 0.0054729594849050045, -0.050401732325553894, -0.0319930836558342, -0.0054729594849050045, -0.015047373250126839, 0.060189493000507355, 0.024190742522478104, 0.025200866162776947, -0.035650432109832764, 0.011990875005722046, -0.007484500762075186, -0.03253297880291939, -0.032062746584415436, -0.009038873016834259, -0.016414524987339973, -0.0085120415315032, -0.0057908003218472, 0.026541894301772118, -0.0383150689303875, 0.006805278826504946, -0.034762218594551086, -0.013897920958697796, 0.02542727440595627, 0.011816715821623802, 0.01240885816514492, 0.009770343080163002, -0.023981750011444092, 0.023563768714666367, -0.04831182211637497, 0.053048957139253616, -0.026402566581964493, 0.05461639165878296, 0.014167867600917816, -0.007314695045351982, -0.008120182901620865, -0.029955418780446053, -0.0029563559219241142, 0.03883754834532738, 0.0007831730763427913, -0.010414732620120049, 0.04775451123714447, 0.016719304025173187, -0.012060538865625858, -0.04493312910199165, 0.0684446468949318, 0.013941461220383644, -0.014080788008868694, 0.0656580999493599, 0.0022020279429852962, 0.017886171117424965, 0.0015053903916850686, -0.033456023782491684, 0.0321846604347229, 0.027377858757972717, 0.02102104015648365, 0.04064880684018135, 0.007993916980922222, -0.0083248196169734, -0.041101619601249695, -0.0020714085549116135, 0.021996334195137024, -0.010136078111827374, -0.05186467245221138, -0.0366431400179863, -0.0022020279429852962, 0.0638120099902153, 0.025061538442969322, 0.014934169128537178, 0.051446691155433655, -0.039464522153139114, 0.014028540812432766, -0.05632315203547478, -0.02870147116482258, 0.01594429463148117, 0.04263422265648842, -0.041101619601249695, -0.025026706978678703, -0.02319803275167942, 0.02211824432015419, -0.06739969551563263, -0.04970509558916092, -0.0035876838956028223, 0.02725594863295555, -0.02234465256333351, -0.0015358682721853256, -0.01735498569905758, -0.041066788136959076, 0.04535111039876938, 0.012652681209146976, -0.1281813234090805, 0.013549602590501308, -0.055278196930885315, -0.03740943968296051, 0.030791383236646652, 0.00114400964230299, 0.005068039055913687, 0.03190600499510765, -0.01337544247508049, -0.04698820784687996, -0.054999541491270065, 0.0375836007297039, 0.017285320907831192, 0.030181825160980225, 0.051725346595048904, -0.019453605636954308, -0.04099712520837784, -0.014986417256295681, -0.05517370253801346, -0.03692179545760155, 0.015256363898515701, -0.022274987772107124, -0.042181409895420074, 0.018687304109334946, -0.005216074176132679, 0.03192342072725296, -0.022762635722756386, -0.0004068255075253546, 0.056880462914705276, -0.06060747429728508, 0.003694356419146061, 0.03338635712862015, 0.05249164626002312, -0.00028926788945682347, -0.012330486439168453, -0.045176949352025986, -0.01350606232881546, -0.05545235797762871, -0.01761622354388237, -0.005346694029867649, 0.00613041128963232, -0.010980750434100628, 0.006831402890384197, -0.01008382998406887, -0.037513937801122665, 0.043261196464300156, -0.024451980367302895, -0.027238531038165092, 0.04660505801439285, -0.02807449735701084, 0.0067704468965530396, 0.001838470227085054, 0.03845439851284027, -0.045455604791641235, 0.027743594720959663, -0.023354776203632355, 0.030791383236646652, 0.023354776203632355, 0.003875046968460083, 0.0013617088552564383, 0.004811153747141361, -0.021386776119470596, -0.030425649136304855, -0.024748051539063454, -0.03183634206652641, -0.007593350484967232, 0.00839883740991354, 0.018513144925236702, -0.03227173909544945, 0.05155118554830551, -0.06726036220788956, -0.0045847464352846146, 0.0007145978161133826, -0.02102104015648365, -0.014873214066028595, -0.05736811086535454, 0.012356610037386417, 0.032062746584415436, -0.00786765106022358, 0.02568851225078106, -0.0474410243332386, -0.039673514664173126, -0.0034244093112647533, -0.014429107308387756, -0.06370751559734344, 0.07878971844911575, -0.0067704468965530396, 0.014150451868772507, -0.01908787153661251, 0.014629390090703964, -0.025479521602392197, 0.08840331435203552, -0.017659764736890793, -0.016083622351288795, -0.02021990716457367, -0.02243173122406006, -0.017311444506049156, 0.02730819582939148, 0.01202570740133524, -0.041624099016189575, 0.03716561943292618, -0.057681597769260406, 0.04287804663181305, 0.025549186393618584, 0.06001533195376396, 0.01648418791592121, -0.03275938332080841, 0.028004832565784454, 0.06576259434223175, 0.03338635712862015, 0.023581184446811676, 0.0651007890701294, 0.01910528726875782, -0.004780675750225782, 0.038663387298583984, 0.005699366796761751, -0.06785250455141068, 0.008864713832736015, -0.06412549316883087, -0.04120611771941185, -0.019244614988565445, -0.0360858291387558, -0.004147171042859554, -0.012478522025048733, 0.005629702936857939, 0.01661480776965618, -0.024991875514388084, 0.028196409344673157, -0.0660412460565567, 0.03518019989132881, -0.06144344061613083, 0.03817574307322502, 0.012722345069050789, -0.023093538358807564, -0.029537435621023178, -0.019540686160326004, -0.006792217027395964, 0.012722345069050789, -0.0045716846361756325, -0.022274987772107124, 0.025009291246533394, 0.03295096009969711, 0.08220323920249939, -0.05437256768345833, 0.04747585579752922, 0.0015249833231791854, 0.0611996166408062, -0.025200866162776947, -0.041902754455804825, 0.024957044050097466, -0.013732469640672207, 0.005468605551868677, 0.023285113275051117, -0.034831881523132324, -0.05123769864439964, -0.01640581712126732, 0.04963543266057968, 0.0009747484582476318, 0.02725594863295555, 0.0009029076900333166, 0.07224132120609283, -0.059667013585567474, 0.009639723226428032, -0.018338985741138458, -0.0025579663924872875, -0.01962776482105255, -0.01063243206590414, -0.002840975299477577, -0.0025449043605476618, 0.03605099767446518, 0.05430290475487709, 0.012400150299072266, -0.04169376194477081, -0.01458585076034069, 0.022274987772107124, 0.020411482080817223, 0.030704304575920105, 0.06670305132865906, -0.012670096941292286, -0.029537435621023178, -0.038907211273908615, -0.04646573215723038, -0.015630807727575302, 0.013131619431078434, -0.03183634206652641, 0.0392555296421051, -0.037513937801122665, -0.03786225616931915, 0.04486346244812012, 0.01403724867850542, 0.017555268481373787, 0.0035071352031081915, -0.07363460212945938, 0.10108212381601334, -0.0013540894724428654, -0.005020144861191511, 0.03188858926296234, 0.004567330703139305, -0.013436398468911648, -0.018948543816804886, -0.023598600178956985, 0.027238531038165092, -0.024086246266961098, -0.037026289850473404, 0.044340986758470535, 0.01244368962943554, -0.031261615455150604, -0.005172534380108118, 0.11390025168657303, -0.020306987687945366, -0.028753718361258507, -0.005890942178666592, 0.018443481996655464, 0.034500978887081146, -0.02870147116482258, 0.07433123886585236, 0.048207323998212814, 0.022797467187047005, 0.04559493437409401, -0.024660972878336906, -0.007249385584145784, 0.015056081116199493, 0.03956901654601097, -0.04921744763851166, 0.01214761845767498, -0.01322740688920021, -0.08868197351694107, -0.053083788603544235, 0.0040230825543403625, -0.012643973343074322, 0.010057706385850906, -0.038907211273908615, 0.04500279203057289, 0.0026385150849819183, -0.001588116167113185, 0.004430179949849844, 0.03415266051888466, 0.012043123133480549, -0.059109702706336975, 0.05186467245221138, 0.0029411171562969685, 0.01802549883723259, -0.026594141498208046, -0.055034372955560684, 0.014838381670415401, -0.03167959675192833, 0.03140094131231308, 0.013349318876862526, 0.012861672788858414, -0.02535760961472988, -0.044375818222761154, 0.036190327256917953, 0.06907162070274353, -0.08324819803237915, 0.027935169637203217, -0.01529990416020155, 0.006038977764546871, -0.06144344061613083, 0.00927398819476366, 0.02673346921801567, 0.036190327256917953, -0.01021444983780384, -0.0051333485171198845, -0.0768391340970993, 0.020010916516184807, -0.03737460821866989, 0.03570267930626869, 0.056671470403671265, -0.0656580999493599, -0.02507895417511463, -0.022187909111380577, -0.05670630559325218, -0.0278132576495409, -0.008451085537672043, -0.01711116172373295, 0.033699847757816315, 0.014420399442315102, -0.00783281959593296, 0.03141835704445839, -0.0463264025747776, 0.01964518241584301, 0.023267697542905807, -0.03768809512257576, 0.04942644014954567, 0.02758685126900673, 0.01934911124408245, 0.03080879896879196, 0.019488437101244926, -0.0033199137542396784, 0.014629390090703964, 0.10038548707962036, 0.01799066737294197, 0.03133127838373184, -0.05102870613336563, -0.009866130538284779, 0.007737031672149897, 0.009613599628210068, -0.01131165400147438, 0.0014161337167024612, -0.014376859180629253, 0.05127253010869026, -0.027882922440767288, 0.06353335082530975, -0.004719720222055912, 0.05235232040286064 ]
7,454
pathlib
read_text
Open the file in text mode, read it, and close the file.
def read_text(self, encoding=None, errors=None): """ Open the file in text mode, read it, and close the file. """ encoding = io.text_encoding(encoding) with self.open(mode='r', encoding=encoding, errors=errors) as f: return f.read()
(self, encoding=None, errors=None)
[ 0.0015093828551471233, -0.06972431391477585, 0.023538509383797646, 0.0692000687122345, 0.01516809593886137, 0.002481416566297412, -0.01728254370391369, -0.009182989597320557, 0.13050155341625214, -0.04138024523854256, 0.020270727574825287, -0.01330703403800726, -0.02465689368546009, -0.003182591637596488, 0.010327585972845554, 0.048160452395677567, -0.08422836661338806, 0.007029224187135696, -0.009812080301344395, 0.011856628581881523, -0.05368248000741005, -0.023223962634801865, -0.021459011361002922, 0.013901175931096077, -0.011734304949641228, 0.028413968160748482, -0.010013040155172348, -0.06532067060470581, -0.001250537927262485, -0.013892438262701035, 0.004362138453871012, -0.02671891637146473, -0.004993414040654898, 0.03760569542646408, -0.05871521309018135, 0.020026080310344696, -0.014504055492579937, -0.07409300655126572, 0.0247617419809103, 0.019274666905403137, -0.06514592468738556, 0.06598471105098724, 0.05899480730295181, 0.004276948980987072, -0.038689129054546356, -0.050117626786231995, -0.021546386182308197, -0.021126991137862206, -0.029462454840540886, 0.019449414685368538, 0.03199629485607147, 0.04211418330669403, -0.020515374839305878, -0.004126228857785463, -0.029707100242376328, -0.04501499608159065, -0.04889439418911934, 0.016758300364017487, -0.018331028521060944, -0.019571736454963684, 0.0015530698001384735, -0.03122740611433983, 0.061790771782398224, -0.026264572516083717, -0.00036150921368971467, 0.013874963857233524, 0.043302468955516815, -0.03994731232523918, 0.07206593453884125, 0.000743223587051034, 0.05123601108789444, 0.0287459883838892, -0.01866304874420166, -0.04246367886662483, 0.019099919125437737, -0.006334602367132902, -0.050327323377132416, 0.023223962634801865, -0.001204666681587696, 0.024097701534628868, -0.010266425088047981, 0.06238491088151932, 0.05536005645990372, 0.045399438589811325, 0.006880688946694136, -0.08961059898138046, 0.043127719312906265, 0.00013222117559053004, -0.010991627350449562, 0.020812446251511574, 0.03370882198214531, -0.03942307084798813, -0.017964059486985207, 0.045539237558841705, 0.0011719014728441834, -0.043022871017456055, 0.005618136841803789, 0.0014525898732244968, -0.06042774021625519, -0.010231475345790386, -0.07332411408424377, 0.08681463450193405, 0.0008464339189231396, -0.019362039864063263, 0.04158994182944298, -0.04200933501124382, -0.012127486988902092, -0.014303095638751984, 0.07660937309265137, 0.00950627215206623, -0.02913043461740017, -0.04242873191833496, 0.026072349399328232, 0.023293862119317055, 0.010790667496621609, -0.06074228510260582, -0.03402336686849594, 0.02200073003768921, -0.04498004540801048, -0.043442267924547195, 0.02827417105436325, 0.000706635823007673, -0.028553767129778862, -0.021092042326927185, 0.052703890949487686, 0.06297905743122101, -0.018016483634710312, -0.022158002480864525, 0.10177303105592728, -0.005054575856775045, 0.03346417471766472, -0.024324873462319374, 0.07940533012151718, -0.0414501428604126, 0.02671891637146473, 0.0022717195097357035, 0.008173821493983269, 0.03440781310200691, 0.0077544269151985645, 0.05179520323872566, 0.07066795229911804, -0.027977099642157555, 0.01608552224934101, -0.04463054984807968, -0.06822148710489273, 0.020410526543855667, 0.020393051207065582, -0.09576171636581421, -0.05336793512105942, 0.013298296369612217, 0.054905712604522705, -0.016400067135691643, -0.048195403069257736, -0.017300017178058624, 0.02455204539000988, -0.009497535414993763, 0.016522390767931938, 0.017745623365044594, -0.052494194358587265, 0.030895385891199112, -0.03388357162475586, 0.04033175855875015, -0.004390534944832325, -0.0010987258283421397, 0.001505014137364924, 0.03054589033126831, -0.020305678248405457, -0.06560026854276657, -0.010406223125755787, -0.05895985662937164, -0.02916538342833519, -0.007841801270842552, -0.027592655271291733, 0.045189741998910904, -0.014626378193497658, 0.0058540464378893375, 0.022437598556280136, 0.041065700352191925, 0.01834850385785103, 0.032590437680482864, -0.0421491339802742, -0.06465663015842438, -0.0414501428604126, 0.011201324872672558, 0.05906470865011215, 0.014809863641858101, -0.0012374317739158869, 0.008807281963527203, 0.03224094212055206, -0.019711535423994064, 0.038409534841775894, -0.06130147725343704, -0.031017707660794258, 0.00933152437210083, -0.01707284525036812, -0.06399258971214294, 0.03931822255253792, 0.01701168343424797, -0.038444485515356064, 0.01869799941778183, 0.008807281963527203, 0.0158059261739254, 0.0475313626229763, 0.02200073003768921, -0.05053701996803284, 0.07416290044784546, -0.019816383719444275, -0.0012483535101637244, -0.03785034269094467, 0.06332854926586151, -0.008505841717123985, -0.043162669986486435, -0.04728671535849571, 0.04676247388124466, 0.04197438806295395, -0.010790667496621609, -0.022699719294905663, -0.02252497337758541, 0.01848830096423626, 0.031699225306510925, 0.07031845301389694, 0.03232831507921219, -0.045294590294361115, 0.0019386067287996411, 0.0022182029206305742, 0.007374350912868977, -0.0020751284901052713, 0.008990766480565071, 0.00035304485936649144, 0.017579613253474236, -0.0006345524452626705, 0.007584047969430685, 0.0011314910370856524, 0.006037531420588493, 0.033586498349905014, 0.00326341250911355, -0.016898097470402718, -0.04057640582323074, -0.015613703057169914, -0.038549333810806274, -0.030248818919062614, -0.033970944583415985, -0.03370882198214531, 0.07171643525362015, -0.03435538709163666, -0.038409534841775894, -0.006325865164399147, 0.07140189409255981, 0.025600532069802284, -0.043162669986486435, 0.055290158838033676, -0.004414562601596117, -0.0035954329650849104, 0.0016087705735117197, -0.013708953745663166, -0.02131921425461769, -0.006474400404840708, -0.07772775739431381, 0.015491379424929619, 0.026299521327018738, 0.04644792526960373, 0.03199629485607147, -0.004215787164866924, 0.028588715940713882, 0.01508072204887867, -0.020585274323821068, -0.04204428568482399, 0.04442085325717926, 0.020882343873381615, -0.011271223425865173, 0.017361178994178772, 0.06091703101992607, -0.03554367274045944, -0.022804569453001022, -0.04588873311877251, -0.038898829370737076, 0.034862156957387924, 0.009532484225928783, 0.012625518254935741, -0.0002476501977071166, -0.057526927441358566, 0.06269945949316025, 0.021196890622377396, -0.02544325776398182, 0.030039122328162193, -0.025285985320806503, -0.026334472000598907, -0.04864974692463875, -0.03023134358227253, 0.011009101755917072, 0.012433295138180256, -0.02014840394258499, -0.008357306942343712, -0.001877445145510137, 0.0635731965303421, 0.000056758857681415975, -0.06734774261713028, -0.02338123694062233, 0.016269005835056305, -0.08073341846466064, -0.020375575870275497, -0.019309615716338158, -0.054835814982652664, 0.015762237831950188, -0.06913017481565475, -0.013595367781817913, -0.02228032611310482, -0.019344564527273178, -0.0006689558504149318, 0.01607678458094597, -0.0018359425012022257, -0.031314779072999954, 0.03683680668473244, 0.07912573963403702, -0.05805116891860962, -0.002826543292030692, -0.006203541532158852, 0.012677942402660847, 0.05378732830286026, -0.023223962634801865, -0.007282608654350042, -0.04707701876759529, 0.03750084713101387, -0.050467122346162796, 0.01516809593886137, -0.011384809389710426, 0.03126235678792, -0.0054783388040959835, 0.02093476802110672, 0.03806003928184509, 0.02675386518239975, 0.008973292075097561, 0.015928247943520546, -0.023992853239178658, -0.0672079473733902, -0.04131034389138222, 0.02809942327439785, -0.07290472090244293, 0.015264207497239113, -0.03402336686849594, 0.045294590294361115, -0.039003677666187286, 0.010886779054999352, -0.011900315061211586, -0.001542148063890636, 0.06364309787750244, 0.022961841896176338, -0.056827936321496964, 0.04470045119524002, -0.03328942880034447, 0.014399206265807152, -0.028151847422122955, -0.00861069094389677, -0.02809942327439785, -0.09009989351034164, 0.000682061945553869, -0.005443389527499676, 0.04728671535849571, 0.0036019859835505486, -0.025373360142111778, -0.052564095705747604, 0.008933973498642445, -0.029899323359131813, 0.010310111567378044, 0.0026867452543228865, -0.0068763201124966145, 0.004761873744428158, 0.08562634885311127, -0.016522390767931938, 0.06388774514198303, 0.004639550112187862, -0.004062883090227842, -0.018750423565506935, 0.043442267924547195, -0.012223598547279835, -0.0077151088044047356, -0.016207844018936157, -0.033079732209444046, -0.04910409078001976, 0.07241542637348175, -0.00809081643819809, 0.020410526543855667, -0.0641673356294632, -0.024866590276360512, 0.0003273788024671376, -0.03732609748840332, -0.0803140178322792, -0.009654807858169079, -0.0018457721453160048, -0.02596750110387802, 0.009462585672736168, 0.008925236761569977, 0.015421480871737003, 0.005832202732563019, -0.04910409078001976, 0.040401656180620193, 0.028728514909744263, 0.005058944690972567, 0.02902558445930481, 0.03033619187772274, -0.04599358141422272, 0.029637202620506287, -0.038619231432676315, 0.036032967269420624, -0.01009167730808258, 0.08674473315477371, -0.007894225418567657, -0.0020128744654357433, -0.008300513960421085, 0.02596750110387802, 0.024709317833185196, 0.038898829370737076, 0.04200933501124382, -0.025128712877631187, -0.01473996415734291, 0.013272084295749664, -0.04382671043276787, -0.035106804221868515, 0.01625153236091137, 0.017509715631604195, -0.03819983825087547, 0.03309720382094383, -0.036417409777641296, 0.021983254700899124, 0.023922953754663467, -0.020672647282481194, 0.021668709814548492, 0.0035648520570248365, 0.014731227420270443, 0.024045277386903763, 0.012066325172781944, -0.0558493509888649, -0.057387128472328186, -0.011489658616483212, -0.013787589967250824, 0.013542942702770233, -0.06532067060470581, 0.011131425388157368, -0.010572233237326145, 0.0061598545871675014, 0.04033175855875015, 0.022018203511834145, 0.05357763171195984, 0.028693564236164093, 0.052284497767686844, -0.036347512155771255, -0.0033901045098900795, 0.005412808619439602, -0.013455569744110107, -0.0448402464389801, -0.010851829312741756, 0.01770193688571453, -0.0045609138906002045, -0.03136720508337021, -0.021913355216383934, 0.008042761124670506, 0.06423723697662354, -0.00017365548410452902, 0.0006957140867598355, 0.06304895132780075, -0.052529145032167435, 0.06035783886909485, 0.016443753615021706, -0.11701102554798126, 0.0351242795586586, -0.027365483343601227, -0.06119662895798683, 0.06434208899736404, -0.02703346125781536, -0.007614628877490759, -0.004884196911007166, 0.0378153920173645, -0.059414200484752655, -0.03680185601115227, 0.00015181202616076916, 0.026946088299155235, -0.03935317322611809, 0.017404865473508835, -0.0061948043294250965, 0.006111799273639917, 0.0036085390020161867, -0.04421115666627884, 0.013805064372718334, -0.005727354437112808, -0.04138024523854256, -0.016242794692516327, 0.05672308802604675, -0.043547116219997406, -0.005032732617110014, -0.012975012883543968, 0.04270832613110542, 0.029147908091545105, 0.002811252838000655, -0.028151847422122955, -0.00888154935091734, 0.024359822273254395, -0.025460733100771904, 0.003824789309874177, -0.02930518239736557, 0.009785868227481842, -0.0081956647336483, -0.0027151417452841997, 0.0034512660931795835, 0.05700268596410751, 0.016312694177031517, 0.025058813393115997, -0.0130536500364542, 0.008326726034283638, 0.08255079388618469, -0.029497403651475906, -0.01289637666195631, 0.045783884823322296, 0.011411021463572979, 0.0212493147701025, 0.024534570053219795, -0.017614563927054405, -0.05326308310031891, 0.036312561482191086, -0.02483164146542549, 0.03536892682313919, -0.050152577459812164, 0.012127486988902092, -0.029829423874616623, -0.040856000036001205, 0.014006024226546288, -0.02689366415143013, -0.06734774261713028, 0.004600232001394033, -0.03320205584168434, 0.0022870099637657404, 0.00544775789603591, -0.017640775069594383, 0.026806289330124855, -0.025146188214421272, -0.03931822255253792, -0.02362588234245777, -0.02788972482085228, 0.04001721367239952, 0.0013466491363942623, 0.06004329398274422, 0.020515374839305878, 0.02320648916065693, -0.002933576237410307, -0.012372134253382683, -0.0033464175648987293, -0.04386166110634804, 0.006260334514081478, -0.040890950709581375, 0.041065700352191925, 0.050432171672582626, -0.011463445611298084, -0.021493962034583092, -0.0020128744654357433, -0.00817819032818079, 0.09093867987394333, 0.016749562695622444, -0.009445110335946083, 0.0565483421087265, -0.00834856927394867, -0.02923528291285038, 0.04172974079847336, -0.0009321694960817695, -0.04585378244519234, 0.021756082773208618, -0.017203906551003456, 0.05389217659831047, 0.0005602846504189074, 0.07220572978258133, -0.03337680175900459, -0.01669713854789734, 0.03669700771570206, 0.025373360142111778, 0.015823399648070335, -0.008300513960421085, 0.03157690167427063, -0.007033593021333218, 0.04910409078001976, 0.052459247410297394, -0.014058448374271393, 0.0016524575185030699, 0.031314779072999954, -0.04232387989759445, -0.029654676094651222, 0.0007317558047361672, 0.025915076956152916, 0.028571240603923798, -0.006028794217854738, 0.020532850176095963, -0.002540393965318799, -0.014766177162528038, 0.02654416859149933, -0.047985706478357315, 0.048824492841959, -0.04606348276138306, 0.05612894520163536, 0.033044781535863876, 0.0075534675270318985, -0.019781434908509254, -0.010720768943428993, -0.015639914199709892, -0.02327638678252697, -0.000961658195592463, -0.015010823495686054, 0.018156280741095543, 0.010633395053446293, 0.07898593693971634, -0.00038389876135624945, 0.02561800554394722, 0.006898163817822933, 0.0565483421087265, -0.030930334702134132, -0.08737383037805557, -0.004853616002947092, -0.06846612691879272, 0.03732609748840332, 0.006055006291717291, 0.021668709814548492, -0.04288307577371597, 0.0628742054104805, 0.02200073003768921, 0.08122271299362183, 0.028151847422122955, 0.006133642513304949, 0.0628742054104805, -0.03456508740782738, 0.06364309787750244, -0.020567798987030983, -0.038409534841775894, -0.047566309571266174, -0.01776309870183468, -0.014678803272545338, 0.0006159854819998145, 0.020602747797966003, 0.029986698180437088, -0.005635611712932587, 0.010205263271927834, -0.03388357162475586, -0.005425914656370878, 0.02179103158414364, 0.014748701825737953, -0.023154065012931824, -0.018068907782435417, -0.05371742695569992, -0.031017707660794258, -0.03690670430660248, -0.0053647528402507305, -0.03143710270524025, -0.004189575091004372, 0.06745259463787079, -0.0428481251001358, -0.020602747797966003, 0.05563965439796448, 0.029724575579166412, 0.0127915283665061, 0.024953965097665787, -0.03299235552549362, 0.0882825180888176, -0.02200073003768921, 0.016164157539606094, 0.01701168343424797, 0.015928247943520546, 0.012651730328798294, -0.00003989843753515743, -0.01783299818634987, 0.04767116159200668, -0.04138024523854256, -0.062105316668748856, 0.042987924069166183, 0.04704206809401512, -0.007003012113273144, 0.018715472891926765, 0.08094311505556107, 0.031943872570991516, 0.005827834364026785, 0.010196525603532791, 0.03037114255130291, 0.07612007856369019, -0.05459116771817207, 0.09086877852678299, 0.016775773838162422, 0.01855820044875145, 0.05203985050320625, -0.027627604082226753, -0.024919016286730766, -0.026089824736118317, 0.009995565749704838, -0.03963276743888855, 0.02235022559762001, 0.054661065340042114, -0.03274771198630333, -0.055290158838033676, 0.015884561464190483, -0.027837300673127174, 0.021616283804178238, 0.022856993600726128, 0.02554810605943203, 0.007985968142747879, -0.030982758849859238, 0.030633263289928436, 0.04204428568482399, 0.015360319055616856, -0.0695495679974556, 0.043372366577386856, -0.06046268716454506, 0.009462585672736168, -0.04927883669734001, -0.0394580215215683, -0.011454708874225616, -0.04878954589366913, -0.01608552224934101, -0.004213602747768164, -0.0030275031458586454, 0.022507498040795326, -0.036312561482191086, 0.06633421033620834, 0.02004355564713478, -0.033044781535863876, 0.030930334702134132, -0.0010118981590494514, -0.012398346327245235, -0.04036670923233032, -0.0008382426458410919, -0.003920900635421276, 0.04120549559593201, -0.019571736454963684, 0.06947966665029526, -0.06245481222867966, -0.008501472882926464, -0.01635638065636158, 0.0060419002547860146, 0.03217104449868202, -0.0127041544765234, -0.03687175363302231, -0.027470331639051437, -0.07730836421251297, -0.018086381256580353, -0.003840079763904214, -0.01876789890229702, 0.020480424165725708, 0.00517253065481782, -0.03785034269094467, 0.012581830844283104, -0.07465219497680664, -0.027487805113196373, 0.04347721487283707, -0.025390833616256714, 0.033796194940805435, 0.01534284371882677, -0.01662723906338215, 0.034110743552446365, 0.01908244378864765, -0.004235446453094482, -0.0029685257468372583, 0.08499725908041, -0.013778852298855782, 0.05172530561685562, -0.0055919247679412365, -0.006867582909762859, 0.0016950522549450397, 0.040716204792261124, -0.02675386518239975, 0.02345113456249237, -0.0007426775409840047, 0.056932784616947174, -0.03119245544075966, 0.004919146653264761, -0.012669204734265804, 0.03722124919295311 ]
7,455
pathlib
readlink
Return the path to which the symbolic link points.
def readlink(self): """ Return the path to which the symbolic link points. """ path = self._accessor.readlink(self) return self._from_parts((path,))
(self)
[ 0.012669295072555542, 0.026093941181898117, -0.02423989772796631, 0.048136454075574875, 0.03148439899086952, -0.007227335125207901, 0.012274452485144138, 0.043364010751247406, 0.04655708372592926, -0.004300350323319435, 0.03294359892606735, 0.005193037446588278, 0.06736356765031815, 0.04799911752343178, -0.005995598156005144, 0.018300093710422516, 0.02547592669725418, 0.03635984659194946, -0.01637738198041916, 0.061526767909526825, -0.0054634190164506435, 0.0027553141117095947, 0.03543282672762871, -0.06990429759025574, -0.03656585142016411, 0.0916721373796463, -0.005703757982701063, -0.014360250905156136, -0.015716450288891792, -0.03490064665675163, -0.021304329857230186, -0.046831756830215454, 0.040273938328027725, 0.014059827663004398, 0.020257137715816498, 0.013587732799351215, -0.04078894853591919, -0.009347467683255672, -0.07986119389533997, -0.0017070501344278455, -0.010798084549605846, 0.04418803006410599, 0.015252938494086266, -0.006540652364492416, 0.027450138702988625, -0.03862589970231056, -0.03098655492067337, -0.04387902095913887, -0.025012416765093803, -0.03306376934051514, 0.021458832547068596, 0.022729195654392242, -0.01824859157204628, -0.006918327882885933, -0.04030827060341835, -0.032153915613889694, -0.004278891254216433, 0.004053573589771986, -0.055998969823122025, 0.05222221463918686, 0.009347467683255672, -0.05579296499490738, -0.0006882920861244202, 0.023639051243662834, 0.02878917008638382, -0.02806815318763256, 0.015390275046229362, -0.03263459354639053, -0.02085798606276512, 0.017664911225438118, -0.02092665433883667, 0.02499524876475334, -0.004025677219033241, -0.05692599341273308, -0.002772481180727482, -0.02554459497332573, 0.018609100952744484, -0.010557745583355427, -0.00038169900653883815, -0.03440280258655548, -0.04435969889163971, 0.0045063551515340805, -0.025613263249397278, -0.014995432458817959, -0.05472860857844353, 0.007660803385078907, 0.10389508306980133, -0.016076957806944847, -0.03526115417480469, -0.017939584329724312, -0.013072720728814602, 0.044565703719854355, -0.034986481070518494, 0.015802284702658653, 0.001947389100678265, -0.07031630724668503, -0.018557598814368248, 0.021441666409373283, 0.06458250433206558, -0.00829598493874073, -0.018694935366511345, 0.03363028168678284, -0.014823761768639088, 0.05424793064594269, 0.0016265795566141605, 0.008326027542352676, -0.04284899681806564, 0.015235771425068378, -0.02278069779276848, -0.03721820190548897, -0.08226457983255386, 0.03763021156191826, 0.01731298677623272, 0.011956862173974514, 0.0100599005818367, 0.02758747525513172, 0.03738987073302269, -0.020342973992228508, 0.023381544277071953, -0.01155343558639288, -0.02830849215388298, 0.04260865971446037, -0.017973918467760086, -0.053492579609155655, -0.0012886029435321689, 0.05407625809311867, -0.03625684604048729, -0.00976806040853262, 0.024754909798502922, -0.04199064522981644, 0.03611950948834419, 0.004132971167564392, -0.004836820997297764, 0.057887349277734756, -0.024205563589930534, 0.035570163279771805, 0.0032617426477372646, 0.03268609568476677, -0.008707994595170021, 0.07683978974819183, 0.03529549017548561, -0.01078950148075819, 0.016557635739445686, -0.0184889305382967, -0.02278069779276848, 0.0032295542769134045, 0.02708963118493557, 0.019106945022940636, 0.032565925270318985, -0.017330152913928032, 0.0830199345946312, -0.04508071765303612, 0.04126962646842003, 0.06705456227064133, 0.007330337539315224, 0.02399955876171589, -0.07464240491390228, 0.012265869416296482, -0.025922270491719246, -0.02245452255010605, -0.03179340809583664, -0.044085025787353516, 0.023141205310821533, -0.03366461768746376, -0.029184013605117798, -0.005944096948951483, 0.005429084878414869, -0.07491707801818848, 0.03290926665067673, 0.03050587698817253, -0.0020739962346851826, -0.007459090556949377, -0.023330044001340866, -0.004145846702158451, -0.034351300448179245, -0.0025257046800106764, 0.00412009609863162, 0.056822989135980606, 0.031518734991550446, -0.03380195423960686, -0.021269995719194412, -0.04288333281874657, -0.007502008229494095, 0.027690477669239044, 0.003259596647694707, 0.08315727114677429, -0.01759624294936657, -0.004113658331334591, 0.06073708087205887, 0.024291399866342545, -0.02384505607187748, 0.05538095533847809, -0.007227335125207901, 0.01351048145443201, -0.038660235702991486, -0.08892540633678436, -0.020239971578121185, 0.01582803577184677, -0.058780036866664886, 0.07869382947683334, 0.005660840310156345, 0.026643287390470505, -0.04494338110089302, 0.02724413387477398, -0.007609302178025246, -0.025098251178860664, 0.015596279874444008, 0.037767548114061356, -0.01817992329597473, 0.07519175112247467, -0.029561689123511314, -0.029647523537278175, -0.004411936271935701, 0.00681532546877861, 0.03163890540599823, 0.0073732552118599415, -0.10588646680116653, 0.04614507406949997, 0.01929578371345997, 0.0381108894944191, 0.04820512235164642, -0.028737669810652733, 0.03042004257440567, -0.001226372318342328, -0.0317419059574604, -0.0670202299952507, 0.0415099672973156, -0.014832345768809319, 0.030935054644942284, -0.02846299670636654, 0.01463492400944233, -0.05362991616129875, 0.017973918467760086, -0.02635144628584385, 0.06908027827739716, 0.0054548354819417, -0.029716191813349724, 0.040685947984457016, -0.0137422364205122, 0.025338590145111084, -0.07402439415454865, -0.004982741083949804, 0.04823945835232735, 0.06897727400064468, 0.014566255733370781, 0.03615384176373482, 0.031930744647979736, 0.010471910238265991, -0.01746748946607113, -0.0830199345946312, 0.04381035268306732, 0.025338590145111084, -0.005441959947347641, 0.029132511466741562, 0.01415424607694149, -0.004019239451736212, -0.039140909910202026, -0.053732916712760925, -0.04655708372592926, 0.037664543837308884, 0.024600407108664513, -0.01637738198041916, -0.013596316799521446, -0.08604133874177933, 0.001264998223632574, -0.008866789750754833, -0.007497716229408979, 0.03495214879512787, 0.017750747501850128, 0.00408790772780776, 0.07663378864526749, 0.01890094019472599, -0.06835925579071045, 0.036394182592630386, -0.004298204090446234, -0.03862589970231056, 0.005197329446673393, 0.03787054866552353, 0.0019441703334450722, -0.025613263249397278, -0.055998969823122025, 0.044565703719854355, -0.010944005101919174, 0.015321606770157814, -0.039449919015169144, -0.044737376272678375, -0.013132805936038494, 0.01702973060309887, -0.048788804560899734, -0.0020900904200971127, 0.08762070536613464, 0.0006636144244112074, -0.01228303648531437, -0.01387098990380764, 0.09256482124328613, 0.011776607483625412, -0.05012783408164978, -0.027295636013150215, 0.002141591627150774, -0.03016253560781479, -0.036394182592630386, -0.041235294193029404, -0.02944151870906353, 0.05678865686058998, -0.06647088378667831, -0.014059827663004398, 0.0459047369658947, -0.0058196354657411575, -0.0008073885692283511, 0.010798084549605846, -0.00981956161558628, -0.029166845604777336, 0.025338590145111084, 0.0651661828160286, -0.05424793064594269, 0.0012564146891236305, -0.004961282014846802, 0.06760390847921371, 0.014909597113728523, 0.028085321187973022, -0.06417049467563629, 0.06677988916635513, 0.002901234198361635, -0.008120022714138031, -0.02003396674990654, 0.032308418303728104, -0.0031608862336724997, 0.015158520080149174, -0.023913724347949028, 0.031604569405317307, 0.04298633337020874, 0.010351740755140781, 0.0029548814054578543, 0.005673715379089117, -0.07100299000740051, 0.03522682189941406, 0.022591859102249146, -0.047827448695898056, -0.017450323328375816, -0.05026517063379288, 0.03033420629799366, -0.024514570832252502, 0.026145441457629204, -0.018557598814368248, -0.001946316217072308, 0.05249688774347305, 0.011338847689330578, 0.0007183344569057226, -0.015630614012479782, -0.010883919894695282, 0.006931202951818705, 0.043604347854852676, -0.05232521891593933, 0.005647964775562286, -0.02789648249745369, 0.019450286403298378, -0.054694272577762604, 0.013673568144440651, 0.004167305305600166, 0.0055235037580132484, 0.01874643750488758, 0.0007934403838589787, -0.06997296214103699, -0.04940681904554367, 0.02593943662941456, -0.020703481510281563, -0.036291178315877914, 0.03927824646234512, 0.052428219467401505, 0.036771856248378754, -0.04484037682414055, -0.06592153757810593, 0.05067718029022217, -0.020960988476872444, 0.04435969889163971, -0.03951858729124069, 0.01609412580728531, -0.04281466454267502, -0.011785191483795643, 0.02789648249745369, 0.006506318226456642, 0.005055700894445181, 0.009948315098881721, 0.007467674091458321, 0.007858225144445896, 0.010918254032731056, -0.0027402930427342653, -0.019845128059387207, 0.04885747283697128, 0.009810978546738625, 0.016016872599720955, 0.010094234719872475, 0.028033819049596786, 0.01338172797113657, -0.015115601941943169, -0.04041127488017082, 0.04370735213160515, 0.01915844716131687, -0.011888193897902966, -0.009407552890479565, 0.022488856688141823, 0.051398199051618576, -0.06097742170095444, 0.02944151870906353, -0.01637738198041916, 0.008514865301549435, 0.0391065776348114, 0.06073708087205887, -0.02125282771885395, -0.043432679027318954, -0.022162683308124542, 0.054144926369190216, -0.045458391308784485, -0.015682116150856018, 0.04329534247517586, 0.05198187753558159, 0.0357074998319149, -0.039793260395526886, 0.019330117851495743, 0.0049398234114050865, -0.02133866399526596, -0.027123965322971344, -0.056994661688804626, 0.0246519073843956, 0.04556139558553696, -0.036394182592630386, -0.002733855275437236, 0.07210168242454529, -0.007334629073739052, 0.0668828934431076, 0.05002483353018761, -0.021184159442782402, 0.021029656752943993, 0.007240210194140673, -0.012806631624698639, 0.012643544934689999, 0.010085651651024818, -0.04446270316839218, -0.025767767801880836, -0.026797790080308914, 0.024617573246359825, -0.02020563744008541, 0.02295236848294735, -0.008892540819942951, 0.0042917667888104916, -0.05668565258383751, -0.013055553659796715, 0.03472897410392761, -0.014557672664523125, -0.029716191813349724, 0.010772334411740303, -0.022694861516356468, 0.051947541534900665, -0.0005024049314670265, -0.08823872357606888, -0.0459047369658947, -0.040033597499132156, -0.01890094019472599, -0.0031995121389627457, 0.0246519073843956, -0.022179849445819855, 0.0449090451002121, 0.053801584988832474, -0.07841915637254715, 0.004974157549440861, 0.020154135301709175, -0.02863466739654541, 0.005544962361454964, -0.0580933541059494, -0.0285488311201334, 0.03955291956663132, -0.01752757467329502, -0.03835122659802437, 0.010978339239954948, 0.029235513880848885, 0.01423149835318327, -0.019690625369548798, -0.02741580456495285, -0.047003429383039474, -0.04892614111304283, -0.05671998858451843, -0.11378331482410431, 0.01321864128112793, 0.03869456797838211, 0.0109096709638834, -0.015132769010961056, -0.019827961921691895, 0.060874417424201965, -0.0059097628109157085, -0.028840672224760056, 0.050162170082330704, 0.12607493996620178, -0.023398712277412415, 0.013767987489700317, 0.008115730248391628, 0.044085025787353516, 0.0017134877853095531, 0.04387902095913887, -0.013287309557199478, -0.0047209435142576694, -0.01290105003863573, -0.050162170082330704, -0.006729490123689175, 0.034505803138017654, -0.013373144902288914, 0.08466797322034836, -0.032806262373924255, -0.01842026226222515, -0.009828145615756512, -0.01403407659381628, 0.0320165790617466, 0.05764700844883919, 0.014660675078630447, 0.06671121716499329, 0.003957008942961693, 0.0014838783536106348, -0.022351520135998726, 0.04779311269521713, 0.022677695378661156, 0.03738987073302269, -0.0011952570639550686, -0.023381544277071953, -0.021956678479909897, -0.08020453155040741, -0.06677988916635513, -0.02951018698513508, -0.02530425600707531, 0.040926285088062286, -0.009707976132631302, 0.04339834302663803, 0.028359994292259216, 0.011253012344241142, -0.01653188467025757, -0.005051409360021353, 0.017089813947677612, 0.09641024470329285, -0.012506208382546902, 0.03611950948834419, -0.010403241962194443, -0.008527739904820919, 0.00580246839672327, -0.03405946120619774, -0.03690919280052185, -0.016145626083016396, 0.00681532546877861, -0.012943968176841736, 0.011793774552643299, -0.027192633599042892, 0.06571552902460098, -0.020943820476531982, 0.0009522357140667737, -0.02676345594227314, 0.01759624294936657, -0.006300313398241997, 0.04937248304486275, -0.010969755239784718, 0.017939584329724312, -0.03074621595442295, -0.021785007789731026, -0.027467306703329086, -0.04161296784877777, -0.010034150443971157, 0.012772297486662865, 0.016171377152204514, 0.06338080763816833, 0.00014605418255086988, 0.025767767801880836, -0.020789317786693573, 0.01759624294936657, -0.02473774366080761, 0.010557745583355427, 0.0624881237745285, 0.006733781658113003, 0.0025707681197673082, 0.02042880840599537, 0.014772260561585426, 0.04710642993450165, -0.010145735926926136, 0.026248443871736526, -0.001342250034213066, 0.027947984635829926, 0.0123259536921978, 0.010368907824158669, 0.0342826321721077, -0.04525238648056984, -0.013682152144610882, -0.014428919181227684, 0.04779311269521713, -0.04875446856021881, -0.07265102863311768, -0.02611110731959343, -0.06382715702056885, -0.038488563150167465, -0.010772334411740303, 0.025201253592967987, -0.07498575001955032, -0.005257414188235998, -0.05623931065201759, -0.01233453769236803, 0.04435969889163971, 0.008695119060575962, -0.030608879402279854, 0.007317462004721165, 0.02441156841814518, -0.010068484582006931, 0.002319699851796031, 0.017132733017206192, -0.03563883155584335, -0.07007596641778946, 0.007673678919672966, -0.04353567957878113, 0.02556176297366619, -0.018866606056690216, -0.02051464468240738, -0.00269522937014699, -0.007879683747887611, 0.010583496652543545, -0.07333771139383316, 0.0016276524402201176, 0.045458391308784485, 0.025596097111701965, -0.06437650322914124, 0.008047062903642654, 0.05393892154097557, -0.06338080763816833, 0.006742365192621946, 0.03529549017548561, 0.042471323162317276, -0.002635144628584385, 0.02547592669725418, 0.0027531683444976807, 0.0003200048522558063, 0.062419455498456955, 0.0018197090830653906, 0.02231718599796295, -0.0658871978521347, 0.03263459354639053, -0.009828145615756512, 0.04559572786092758, 0.023879390209913254, -0.05623931065201759, -0.009785227477550507, -0.05263422429561615, -0.053973257541656494, -0.037767548114061356, 0.01119292713701725, 0.023227041587233543, -0.019896630197763443, 0.05205054581165314, 0.016119875013828278, -0.025819268077611923, 0.05304623395204544, 0.01915844716131687, 0.03083205223083496, 0.08123455941677094, -0.015630614012479782, 0.054385267198085785, -0.04669442027807236, -0.03907224163413048, -0.008373236283659935, 0.001187746413052082, -0.015029766596853733, -0.005673715379089117, -0.03316677361726761, -0.01674647256731987, -0.0015096289571374655, -0.010197237133979797, 0.039140909910202026, -0.012823798693716526, 0.023553214967250824, -0.028772003948688507, 0.021630503237247467, -0.03601650521159172, -0.045458391308784485, -0.002418410498648882, -0.006862534675747156, 0.03900357335805893, -0.05538095533847809, 0.07354371249675751, -0.01761341094970703, -0.061114758253097534, 0.020875152200460434, -0.030437208712100983, 0.013287309557199478, 0.00494840694591403, 0.009356051683425903, 0.07629044353961945, 0.0435013473033905, 0.015956789255142212, -0.044771708548069, -0.024377234280109406, -0.005823927465826273, 0.03793921694159508, -0.0002730636624619365, -0.055998969823122025, 0.007098582107573748, 0.01463492400944233, -0.014016909524798393, 0.026488782837986946, -0.00847194716334343, 0.09043610841035843, 0.04470304027199745, 0.045939069241285324, -0.0702819675207138, 0.03129556402564049, -0.033218272030353546, -0.02708963118493557, -0.0296131893992424, -0.09895097464323044, 0.02490941435098648, 0.004197347909212112, -0.009287383407354355, 0.02944151870906353, -0.02085798606276512, 0.09126012772321701, -0.08631601184606552, -0.055518291890621185, -0.0020160572603344917, -0.037286870181560516, 0.008725161664187908, 0.01139034889638424, -0.04937248304486275, 0.05459127202630043, 0.034179627895355225, 0.01403407659381628, 0.024377234280109406, -0.06461683660745621, -0.005768134258687496, -0.03721820190548897, 0.024051060900092125, -0.026299946010112762, 0.006171560380607843, -0.010926838032901287, 0.030059533193707466, 0.012986885383725166, 0.0026093940250575542, 0.017407406121492386, 0.03074621595442295, 0.03352728113532066, 0.02310687117278576, 0.024136895313858986, 0.016403131186962128, -0.024531738832592964, -0.016034040600061417, 0.028085321187973022, -0.022094015032052994, -0.03787054866552353, 0.013999742455780506, 0.011579186655580997, -0.009956898167729378, 0.03448863700032234, -0.02360471710562706, -0.0037703169509768486, -0.018918108195066452, 0.01228303648531437, -0.022746363654732704, -0.029218347743153572, -0.01160493679344654, 0.022506024688482285, 0.017106981948018074, -0.019930964335799217, 0.02643728256225586, -0.028943674638867378, 0.006617904175072908, 0.03220541775226593, -0.009175796993076801, -0.11323396861553192, -0.023639051243662834 ]
7,456
pathlib
relative_to
Return the relative path to another path identified by the passed arguments. If the operation is not possible (because this is not a subpath of the other path), raise ValueError.
def relative_to(self, *other): """Return the relative path to another path identified by the passed arguments. If the operation is not possible (because this is not a subpath of the other path), raise ValueError. """ # For the purpose of this method, drive and root are considered # separate parts, i.e.: # Path('c:/').relative_to('c:') gives Path('/') # Path('c:/').relative_to('/') raise ValueError if not other: raise TypeError("need at least one argument") parts = self._parts drv = self._drv root = self._root if root: abs_parts = [drv, root] + parts[1:] else: abs_parts = parts to_drv, to_root, to_parts = self._parse_args(other) if to_root: to_abs_parts = [to_drv, to_root] + to_parts[1:] else: to_abs_parts = to_parts n = len(to_abs_parts) cf = self._flavour.casefold_parts if (root or drv) if n == 0 else cf(abs_parts[:n]) != cf(to_abs_parts): formatted = self._format_parsed_parts(to_drv, to_root, to_parts) raise ValueError("{!r} is not in the subpath of {!r}" " OR one path is relative and the other is absolute." .format(str(self), str(formatted))) return self._from_parsed_parts('', root if n == 1 else '', abs_parts[n:])
(self, *other)
[ 0.007094819098711014, -0.0026335082948207855, -0.03040505200624466, 0.046703338623046875, -0.03557998687028885, -0.06611394882202148, 0.053148988634347916, 0.04935526102781296, 0.016095709055662155, -0.03394095227122307, 0.046150851994752884, -0.011068101972341537, 0.04290961101651192, 0.032928064465522766, -0.070607490837574, 0.038158249109983444, 0.06486165523529053, -0.0025299175176769495, -0.00012150337715866044, 0.006155595649033785, 0.042357128113508224, -0.012734762392938137, -0.0004581015382427722, 0.0024654611479490995, -0.000749882310628891, 0.07340674102306366, -0.011639001779258251, -0.007315812632441521, -0.009539562277495861, -0.07631649821996689, 0.032173000276088715, 0.007209919858723879, 0.028268778696656227, 0.0031468584202229977, 0.009304756298661232, 0.007960377261042595, -0.00048687675734981894, 0.04935526102781296, -0.03797408565878868, -0.03233874589204788, -0.04895010590553284, -0.028784431517124176, 0.055764079093933105, 0.010073630139231682, 0.01939219795167446, -0.004723740741610527, -0.02917117066681385, 0.027145395055413246, -0.037034861743450165, 0.04534054175019264, 0.02543269284069538, 0.012808427214622498, -0.025782600045204163, -0.023830488324165344, -0.04769780859351158, 0.056169234216213226, 0.01955794356763363, 0.0598892942070961, -0.025874679908156395, -0.023977817967534065, 0.0204787515103817, -0.0007832615519873798, -0.006657435558736324, 0.0018243491649627686, -0.006537730805575848, -0.04541420936584473, -0.008351720869541168, -0.04062601178884506, -0.049318429082632065, 0.08235698938369751, -0.07233861088752747, 0.03127061203122139, -0.059705134481191635, -0.05440128594636917, 0.037440016865730286, 0.03793725371360779, 0.03101278468966484, 0.054843273013830185, 0.06883954256772995, 0.0005357946502044797, -0.029668405652046204, -0.0322282500565052, -0.03963153809309006, -0.07543252408504486, 0.006436442025005817, 0.03952104225754738, -0.04416190832853317, -0.030110392719507217, 0.03812141716480255, -0.0017806107643991709, -0.03151002153754234, -0.002753213280811906, 0.0031491604167968035, 0.014493504539132118, 0.044198743999004364, -0.03569048270583153, -0.011325927451252937, -0.03709011152386665, -0.02134430967271328, -0.03169418126344681, -0.029907815158367157, 0.01623382978141308, -0.0070073422975838184, 0.00038645125459879637, 0.04883961006999016, -0.02287284843623638, 0.005092063453048468, -0.01090235635638237, 0.009732931852340698, -0.03294647857546806, -0.09362766891717911, -0.043830420821905136, -0.0578266866505146, 0.014115973375737667, -0.029318498447537422, 0.011445632204413414, -0.019152788445353508, -0.014548752456903458, 0.04165731370449066, -0.043425265699625015, 0.02103123441338539, 0.07852642983198166, -0.02287284843623638, -0.020718161016702652, 0.04806613177061081, -0.0029903212562203407, -0.003662510309368372, 0.012246734462678432, -0.027955705299973488, -0.0777897834777832, 0.02283601649105549, -0.004076873417943716, -0.05421712249517441, 0.013655569404363632, 0.026390332728624344, 0.05797401815652847, -0.002872918266803026, 0.048544950783252716, -0.03302014246582985, 0.05867382884025574, 0.062062401324510574, -0.02655607834458351, 0.023167507722973824, 0.023278003558516502, -0.029594741761684418, 0.049060605466365814, 0.005989850498735905, -0.01565372198820114, -0.006929073482751846, 0.05469594523310661, -0.04132582247257233, -0.033756788820028305, 0.02206253819167614, -0.001964772120118141, 0.011869204230606556, -0.05889482423663139, -0.006266092415899038, -0.02758738212287426, 0.04766097664833069, -0.002893636468797922, -0.0217494647949934, -0.0701286718249321, 0.07749512791633606, 0.005156519822776318, 0.02983415126800537, 0.039742037653923035, -0.02957632578909397, -0.03569048270583153, 0.003485254943370819, 0.015414311550557613, 0.034622348845005035, 0.008374741300940514, -0.008232016116380692, -0.03198884055018425, -0.04703482985496521, -0.06611394882202148, 0.018812090158462524, 0.0036579063162207603, -0.004585619550198317, -0.013434575870633125, 0.06412500888109207, -0.011592961847782135, 0.036058805882930756, -0.018646344542503357, 0.0062799048610031605, 0.04018402472138405, 0.009981549344956875, 0.020276173949241638, 0.04567203298211098, 0.001323660253547132, -0.030478715896606445, 0.05163886398077011, 0.044198743999004364, 0.056684888899326324, 0.013673986308276653, -0.037789925932884216, 0.014751330018043518, -0.02882126346230507, 0.0017495335778221488, 0.09598493576049805, -0.047329485416412354, 0.0017518355743959546, 0.027145395055413246, 0.013572697527706623, 0.024530302733182907, 0.020349837839603424, 0.02283601649105549, 0.022909682244062424, -0.007173087447881699, 0.021786296740174294, -0.01816752552986145, -0.04961308836936951, 0.0018749935552477837, -0.04626135155558586, -0.003568127751350403, -0.016666609793901443, -0.00040198987699113786, 0.03383045271039009, 0.021731048822402954, 0.05727420374751091, 0.056021906435489655, -0.0015791842015460134, 0.05572724714875221, -0.01059849001467228, 0.017384838312864304, -0.03627980127930641, -0.007067194674164057, 0.007771612145006657, 0.012430896051228046, -0.00036544533213600516, 0.025101201608777046, -0.08464059233665466, -0.006049702875316143, 0.0012891299556940794, 0.02108648419380188, 0.02220986783504486, -0.021068066358566284, -0.03261498734354973, 0.032062504440546036, -0.011998116970062256, -0.01786365918815136, 0.00982501171529293, -0.010193334892392159, -0.012983380816876888, -0.012559809722006321, -0.079852394759655, 0.005759648513048887, -0.030975952744483948, 0.0273848045617342, -0.03189675882458687, -0.0053406814113259315, 0.07734780013561249, -0.04150998592376709, -0.01064453087747097, 0.0075782425701618195, 0.021123316138982773, -0.04081017151474953, -0.017937323078513145, -0.0017092482885345817, 0.05388563498854637, -0.0007516088080592453, 0.011703458614647388, 0.0036556043196469545, -0.035800982266664505, -0.025764184072613716, -0.061399418860673904, -0.04902377352118492, -0.03320430591702461, -0.0031031200196594, 0.017053348943591118, -0.04069967567920685, 0.01797415502369404, -0.0217494647949934, 0.056021906435489655, -0.02001834660768509, 0.03434610739350319, -0.01976052112877369, 0.021786296740174294, 0.007002738304436207, 0.0050183990970253944, -0.01837010309100151, 0.010156502947211266, -0.049981411546468735, -0.01872921735048294, 0.010764235630631447, -0.011583753861486912, 0.001080221845768392, -0.06357252597808838, -0.034935422241687775, 0.0434989295899868, 0.06791873276233673, -0.005073647480458021, -0.009999965317547321, -0.02666657418012619, -0.017633456736803055, 0.041436322033405304, 0.02977890335023403, -0.0875135064125061, 0.01694285124540329, -0.022136203944683075, -0.0030156434513628483, 0.022596606984734535, -0.043683089315891266, 0.04519321396946907, -0.011998116970062256, -0.03204408660531044, 0.05108638107776642, -0.0029742070473730564, 0.010147294960916042, -0.018968626856803894, -0.05948413908481598, -0.0302024744451046, 0.007886713370680809, 0.022191451862454414, 0.023664742708206177, 0.058526501059532166, 0.040552347898483276, -0.002182313008233905, -0.03239399567246437, 0.02974206954240799, -0.046298183500766754, 0.12788169085979462, -0.022817600518465042, 0.0176610816270113, -0.03848973661661148, -0.006855409126728773, -0.012265151366591454, 0.06324103474617004, 0.03353579714894295, 0.043830420821905136, -0.02257819101214409, 0.04232029616832733, 0.012955755926668644, 0.0053406814113259315, -0.01396864466369152, 0.02718222700059414, 0.015266981907188892, 0.0063950056210160255, 0.04887644201517105, 0.024548718705773354, 0.09819487482309341, 0.01688760332763195, 0.005649151746183634, -0.04232029616832733, 0.02436455711722374, -0.007978794164955616, 0.027053313329815865, 0.049576256424188614, 0.03598514199256897, -0.003936450462788343, -0.05701637640595436, -0.015230149962008, -0.04688749834895134, -0.05845283716917038, -0.013425367884337902, 0.0475873127579689, -0.02476971223950386, 0.0031261402182281017, 0.05830550938844681, -0.024272475391626358, 0.09436431527137756, 0.011537712998688221, -0.012136237695813179, -0.03666653856635094, -0.05797401815652847, -0.03270706906914711, 0.010073630139231682, -0.006335153244435787, -0.06327786296606064, 0.005220976658165455, -0.007265168242156506, -0.04755048081278801, 0.0998154953122139, -0.05860016494989395, 0.014208054170012474, 0.03714536130428314, 0.011169390752911568, -0.021491639316082, -0.012909715995192528, 0.023775240406394005, 0.06710842251777649, 0.03244924172759056, -0.027550550177693367, 0.0409575030207634, -0.0108747323974967, 0.0033149055670946836, 0.06968668103218079, -0.036206137388944626, 0.027347972616553307, 0.03162051737308502, -0.01623382978141308, -0.0095948101952672, 0.07259643077850342, 0.010561658069491386, -0.0007147765136323869, -0.051823023706674576, 0.050791721791028976, -0.0013317173579707742, -0.01601283624768257, -0.05546942353248596, 0.03742160275578499, -0.025469524785876274, -0.03819508105516434, 0.04357259348034859, 0.04062601178884506, -0.0009334682254120708, 0.04902377352118492, 0.034014616161584854, -0.05742153152823448, 0.011740290559828281, -0.07587450742721558, -0.048544950783252716, -0.02491704188287258, 0.023517414927482605, -0.0036533023230731487, 0.01616937294602394, -0.05134420469403267, -0.021012818440794945, 0.0332779698073864, -0.014511920511722565, -0.050902217626571655, -0.035193249583244324, -0.02727430686354637, 0.02563527040183544, 0.09657425433397293, -0.017219092696905136, -0.04254128783941269, -0.0273848045617342, 0.02974206954240799, 0.02031300589442253, -0.004203484393656254, 0.012679514475166798, -0.032173000276088715, -0.024346141144633293, -0.003017945447936654, 0.006813972722738981, 0.038821227848529816, 0.01499994844198227, 0.05915265157818794, -0.019631607457995415, -0.04475122690200806, -0.020754992961883545, -0.015773426741361618, 0.01760583184659481, -0.0322282500565052, -0.07734780013561249, -0.05502743273973465, 0.00133401935454458, -0.07874742895364761, -0.0161141250282526, 0.008204391226172447, -0.005520238541066647, 0.024640798568725586, 0.0011832371819764376, -0.04935526102781296, -0.06699793040752411, -0.026740239933133125, 0.029097504913806915, -0.029502660036087036, 0.05639022961258888, 0.03025772236287594, 0.04493538662791252, 0.0788210928440094, -0.02324117161333561, -0.01251376885920763, 0.03394095227122307, 0.07904208451509476, 0.004981566686183214, -0.0332595519721508, -0.00982501171529293, 0.05712687596678734, -0.07631649821996689, -0.010653738863766193, 0.05966830253601074, 0.03340688347816467, 0.008255035616457462, -0.010893148370087147, 0.00704877870157361, -0.006293716840445995, -0.0409575030207634, -0.0353221632540226, -0.02467763051390648, 0.0024493469391018152, 0.039594706147909164, 0.015515600331127644, -0.026243003085255623, -0.02937374822795391, 0.046961162239313126, -0.04007352516055107, -0.019594775512814522, 0.028268778696656227, 0.056169234216213226, -0.04073650762438774, 0.023278003558516502, -0.02502753771841526, 0.014281718991696835, -0.027458468452095985, 0.007426309399306774, -0.023554246872663498, -0.025414276868104935, 0.037642594426870346, -0.03871073201298714, 0.004401457961648703, 0.03878439590334892, -0.022596606984734535, 0.06692425906658173, -0.028471356257796288, 0.028637101873755455, -0.023259587585926056, -0.002546031726524234, -0.011574545875191689, -0.013333287090063095, 0.04633501544594765, 0.03944737836718559, 0.020405085757374763, 0.0006808217731304467, -0.01878446526825428, 0.00859573483467102, 0.04136265814304352, -0.014346174895763397, -0.033701542764902115, -0.009106782265007496, 0.013701610267162323, -0.05215451493859291, -0.01724671758711338, -0.03233874589204788, -0.03819508105516434, 0.03373837471008301, 0.007196107879281044, 0.00268645491451025, 0.000416377471992746, 0.033756788820028305, 0.06272538006305695, 0.025101201608777046, 0.07926307618618011, 0.09230170398950577, -0.07539568841457367, -0.011141765862703323, -0.058526501059532166, 0.04320427030324936, -0.001840463257394731, 0.01652848720550537, -0.019871018826961517, -0.008185975253582, 0.04081017151474953, -0.019263286143541336, 0.008425385691225529, -0.011464049108326435, 0.025561606511473656, 0.008637171238660812, 0.016574528068304062, -0.004583317320793867, 0.05053389444947243, 0.1289130002260208, -0.03418036177754402, 0.0006249978323467076, -0.005709004122763872, -0.011528505012392998, -0.013977852649986744, -0.011270679533481598, -0.031546853482723236, 0.010138086974620819, 0.023885736241936684, 0.03261498734354973, -0.03162051737308502, 0.015856299549341202, 0.01955794356763363, 0.006335153244435787, -0.0011441028909757733, -0.02953949198126793, -0.03871073201298714, 0.058231841772794724, -0.05557991936802864, -0.020386669784784317, -0.019576359540224075, 0.042246632277965546, 0.01616937294602394, -0.029300082474946976, -0.009705306962132454, 0.03674020618200302, 0.009880260564386845, -0.017274342477321625, 0.019981514662504196, 0.029189586639404297, -0.002453950932249427, 0.001095760497264564, 0.0250827856361866, 0.04257812350988388, -0.05046023055911064, -0.0737014040350914, -0.0204787515103817, -0.05469594523310661, 0.05093904957175255, 0.038305576890707016, 0.006491690408438444, -0.046040356159210205, -0.02635350078344345, -0.04662967473268509, 0.061399418860673904, -0.04898693785071373, -0.01077344361692667, -0.01981576904654503, 0.03690594807267189, 0.05388563498854637, 0.04364625737071037, -0.0063673811964690685, 0.005644547753036022, -0.04007352516055107, -0.051675695925951004, 0.03414352983236313, 0.05462227761745453, 0.03609563782811165, 0.0024125147610902786, -0.004337001591920853, -0.011215430684387684, -0.026795487850904465, -0.041436322033405304, -0.048139795660972595, -0.007734779734164476, 0.017025724053382874, -0.02856343798339367, -0.00042414679774083197, -0.021381141617894173, 0.011353552341461182, -0.08427226543426514, 0.014723706059157848, 0.013333287090063095, -0.018618719652295113, -0.027605798095464706, -0.035395827144384384, 0.03874756395816803, -0.03081020712852478, 0.013941019773483276, 0.0006025531911291182, -0.029797319322824478, -0.07532202452421188, 0.01653769612312317, -0.011869204230606556, -0.005810292903333902, 0.04688749834895134, -0.022633438929915428, -0.020349837839603424, -0.08022071421146393, -0.0038420676719397306, -0.02957632578909397, -0.02543269284069538, -0.044603899121284485, -0.05941047519445419, 0.01143642421811819, 0.008130727335810661, 0.013425367884337902, 0.0680660605430603, -0.015847090631723404, -0.013296455144882202, -0.0070856111124157906, 0.052743833512067795, 0.022743936628103256, -0.0440145805478096, 0.020073596388101578, 0.03456709906458855, 0.010985229164361954, -0.025266947224736214, 0.05557991936802864, 0.01760583184659481, -0.030533963814377785, 0.03408828005194664, 0.027476884424686432, -0.035395827144384384, 0.005161123815923929, -0.018351685255765915, -0.024659214541316032, -0.03497225418686867, -0.04850811883807182, -0.0111325578764081, -0.017182260751724243, -0.009327775798738003, 0.024033065885305405, -0.03338846564292908, -0.01597600430250168, -0.03552474081516266, 0.00066700967727229, 0.03128902614116669, -0.032320331782102585, -0.00898707751184702, 0.04559836909174919, 0.030699709430336952, 0.03348054736852646, 0.03782675787806511, 0.020405085757374763, -0.045782528817653656, 0.04176781326532364, -0.011795539408922195, 0.015055196359753609, 0.04412507638335228, -0.028379276394844055, 0.0018070839578285813, -0.012532184831798077, -0.08058904111385345, -0.05753203108906746, -0.007546014618128538, 0.06228339299559593, 0.006560750771313906, -0.023554246872663498, -0.03141793981194496, 0.006675851531326771, 0.0027048708871006966, 0.006537730805575848, -0.00992630049586296, 0.014686874113976955, 0.027826791629195213, -0.024456636980175972, 0.018720008432865143, 0.03661129251122475, -0.0972372367978096, 0.04825029522180557, -0.05738469958305359, 0.019668441265821457, -0.011114141903817654, 0.0007124745170585811, 0.0073066046461462975, -0.030055144801735878, -0.0660034567117691, 0.11071784794330597, -0.07296475768089294, 0.013701610267162323, 0.02278076857328415, 0.013038628734648228, -0.02718222700059414, 0.0029903212562203407, 0.0021213095169514418, -0.06721892207860947, -0.0019728292245417833, 0.013075461611151695, 0.03081020712852478, 0.0445302315056324, -0.015027572400867939, -0.0022283531725406647, -0.010110462084412575, 0.01044195331633091, 0.0011274132411926985, 0.025874679908156395, 0.008678607642650604, -0.031104864552617073, -0.05395929887890816, -0.0016896810848265886, 0.019079124554991722, 0.006450254004448652, -0.017486127093434334, -0.015690553933382034, 0.00852207001298666, 0.012292775325477123, -0.030276138335466385, 0.03567206859588623, -0.012034948915243149, 0.014143597334623337, 0.0038420676719397306, -0.029042256996035576, 0.02697964943945408, -0.0032711673993617296, -0.024033065885305405, -0.04994457960128784, 0.03357262909412384, -0.004327793605625629, 0.05686904862523079, 0.0527070015668869, 0.029152754694223404, -0.040405016392469406, 0.04648234322667122 ]
7,457
pathlib
rename
Rename this path to the target path. The target path may be absolute or relative. Relative paths are interpreted relative to the current working directory, *not* the directory of the Path object. Returns the new Path instance pointing to the target path.
def rename(self, target): """ Rename this path to the target path. The target path may be absolute or relative. Relative paths are interpreted relative to the current working directory, *not* the directory of the Path object. Returns the new Path instance pointing to the target path. """ self._accessor.rename(self, target) return self.__class__(target)
(self, target)
[ 0.020855797454714775, -0.0011272956617176533, -0.011364642530679703, 0.009058132767677307, -0.06493576616048813, -0.051750656217336655, 0.02956927940249443, 0.11361107230186462, 0.04909949749708176, -0.001909940387122333, 0.024196259677410126, -0.04252461716532707, 0.10788456350564957, 0.05525019019842148, -0.039732061326503754, 0.009862317703664303, 0.06666785478591919, 0.031124627217650414, -0.031336721032857895, 0.01896463707089424, 0.034465089440345764, -0.013123244978487492, 0.03959066793322563, -0.046943217515945435, -0.06299157440662384, 0.06861203908920288, -0.017267893999814987, 0.06461762636899948, 0.055886466056108475, -0.0827869102358818, -0.017939520999789238, -0.01908835768699646, -0.003044416196644306, 0.05503809452056885, 0.011302781291306019, 0.07684831321239471, -0.03764648362994194, 0.026317188516259193, 0.011453013867139816, -0.04567066207528114, -0.015518127009272575, -0.029852069914340973, -0.01654324308037758, -0.013918593525886536, 0.06627901643514633, 0.024337654933333397, -0.028332071378827095, 0.005297902971506119, 0.011223247274756432, 0.01331766415387392, 0.011391153559088707, 0.00024081376614049077, -0.032732997089624405, -0.02796090766787529, 0.0008251737453974783, 0.06839994341135025, 0.07317203283309937, 0.03842415660619736, -0.02856183797121048, -0.03264462575316429, 0.031796254217624664, -0.020838122814893723, 0.04086322337388992, -0.022906027734279633, -0.007502784952521324, -0.03725764527916908, -0.000319243932608515, -0.03144276514649391, -0.0037049970123916864, 0.024408353492617607, -0.03343997523188591, 0.001842556637711823, 0.01595115102827549, 0.004274996463209391, 0.005072554107755423, 0.043266940861940384, -0.06376925110816956, 0.006742785219103098, 0.033280905336141586, -0.06730413436889648, -0.058290187269449234, -0.03831810876727104, -0.03966136276721954, -0.06634971499443054, -0.04397391900420189, 0.0033912763465195894, 0.02757207117974758, -0.09360364824533463, -0.025928352028131485, -0.026105094701051712, -0.04118136316537857, -0.0019519170746207237, -0.03354601934552193, -0.0022645331919193268, -0.000985900405794382, -0.039944153279066086, -0.019565565511584282, -0.03382880985736847, 0.014926034957170486, 0.005810460541397333, -0.0008737783646211028, 0.027253931388258934, -0.008686969988048077, 0.04026229307055473, 0.05387158691883087, 0.022853005677461624, 0.003974531777203083, -0.019671611487865448, 0.006468832027167082, -0.047013916075229645, -0.0847664475440979, 0.02575160749256611, -0.032255787402391434, -0.0051653445698320866, 0.01317626889795065, -0.04079252481460571, 0.03831810876727104, -0.045140430331230164, 0.006893017794936895, -0.02423160895705223, 0.015429755672812462, 0.042807407677173615, -0.024302305653691292, 0.017002778127789497, 0.045211125165224075, -0.0011720339534804225, 0.02409021370112896, 0.018469752743840218, 0.03077113814651966, -0.04478694126009941, -0.07486877590417862, 0.027377652004361153, -0.03644462302327156, 0.04885205253958702, 0.07133390009403229, 0.040686480700969696, -0.01615440659224987, 0.03849485144019127, -0.01981300674378872, 0.028932999819517136, 0.02216370403766632, -0.020307891070842743, 0.024408353492617607, 0.01628696359694004, 0.04998321458697319, 0.009058132767677307, 0.027854861691594124, 0.050018563866615295, -0.03082416206598282, 0.05592181533575058, -0.026812070980668068, -0.004860461223870516, 0.08519063144922256, -0.011488363146781921, 0.030718116089701653, -0.03298043832182884, -0.04899344965815544, 0.0054260422475636005, 0.016030684113502502, 0.004126973450183868, 0.036868806928396225, -0.03195532411336899, -0.02089114673435688, -0.002903020940721035, 0.00745859881862998, -0.018734868615865707, 0.004078368656337261, -0.015995336696505547, -0.03351067006587982, 0.032255787402391434, 0.021792540326714516, -0.012195339426398277, 0.004917902871966362, 0.020378587767481804, -0.0071669709868729115, -0.015509289689362049, 0.03966136276721954, 0.04093392193317413, 0.018257660791277885, 0.0063406927511096, 0.05245763435959816, -0.01114371232688427, 0.002726276870816946, 0.010374875739216805, -0.0021474401000887156, 0.060305070132017136, -0.039272528141736984, 0.06914226710796356, 0.010807898826897144, 0.0407218299806118, 0.022075330838561058, 0.026865094900131226, 0.04531717300415039, 0.03009951114654541, 0.01580975577235222, -0.06440553069114685, -0.010498596355319023, -0.025186026468873024, -0.003758020233362913, 0.10272364318370819, -0.022799981757998466, 0.060835301876068115, 0.0276957917958498, 0.013900918886065483, 0.03190230205655098, 0.00041672930819913745, 0.032732997089624405, 0.03711624816060066, -0.050619494169950485, 0.013821383938193321, 0.0226939357817173, 0.019901379942893982, 0.0141748720780015, -0.0290213730186224, 0.0025804631877690554, 0.004710228648036718, -0.034730203449726105, 0.016401847824454308, 0.04298415035009384, 0.04436275735497475, -0.003188020782545209, 0.07246506214141846, -0.01317626889795065, 0.012990687042474747, -0.010852084495127201, -0.05712367594242096, -0.016516730189323425, -0.019053008407354355, 0.015465104021131992, -0.0834231898188591, 0.004336857236921787, -0.05613390728831291, -0.015208825469017029, -0.0387069471180439, 0.0447162427008152, -0.01829300820827484, -0.004091624636203051, -0.016773009672760963, -0.022004634141921997, 0.003819880774244666, -0.04892275109887123, -0.014625569805502892, 0.03658601641654968, 0.021386029198765755, 0.008810690604150295, -0.03370508924126625, -0.014678592793643475, -0.02216370403766632, 0.01961858943104744, -0.0007285168394446373, 0.03478322923183441, 0.011850688606500626, -0.05454321205615997, 0.030470672994852066, -0.0005343745579011738, 0.012752083130180836, -0.052280887961387634, 0.0012338943779468536, -0.03810601681470871, 0.029410209506750107, -0.05567437410354614, -0.06970784813165665, 0.004058485385030508, -0.028986023738980293, -0.004900228697806597, -0.018540451303124428, -0.028667883947491646, -0.010454410687088966, -0.025062305852770805, -0.03195532411336899, 0.09240178763866425, 0.023012075573205948, -0.06012832373380661, 0.011329293251037598, 0.023312538862228394, -0.026246489956974983, -0.07218226790428162, -0.0032542997505515814, -0.0043103452771902084, -0.005306739825755358, 0.023719051852822304, -0.06330971419811249, 0.001449301140382886, -0.00554092600941658, -0.023047422990202904, 0.01331766415387392, -0.028720907866954803, 0.05620460584759712, 0.010754874907433987, 0.023931143805384636, 0.03768182918429375, 0.020131146535277367, -0.06574878841638565, 0.008589760400354862, -0.0005117292748764157, 0.008426272310316563, -0.09431062638759613, -0.014970220625400543, -0.022446494549512863, -0.017904171720147133, 0.00478976359590888, -0.014466499909758568, -0.0840594694018364, 0.017108824104070663, -0.011912548914551735, -0.027271606028079987, 0.042878106236457825, 0.006420227698981762, 0.01662277802824974, 0.042206477373838425, -0.009826969355344772, -0.028614861890673637, -0.09657294303178787, 0.007286273408681154, 0.078757144510746, 0.012186502106487751, 0.007069761864840984, 0.022146029397845268, -0.00018986176291946322, 0.0026599979028105736, -0.08031249791383743, 0.028119977563619614, -0.06592553108930588, -0.03048834763467312, -0.025009281933307648, -0.005187437869608402, -0.03962601348757744, 0.05546228215098381, 0.004385461565107107, 0.004749996121972799, -0.0413581058382988, 0.0018281962256878614, 0.04231252521276474, -0.016163242980837822, -0.06111809238791466, -0.032856717705726624, 0.012124641798436642, -0.004396507982164621, 0.0333516001701355, 0.039060432463884354, 0.04913484305143356, -0.004608600866049528, -0.05019531026482582, -0.03511904180049896, -0.0008329063421115279, 0.042277175933122635, -0.011788828298449516, 0.0013885453809052706, 0.06313297152519226, -0.020537657663226128, -0.014148361049592495, 0.031124627217650414, -0.017179520800709724, -0.05217484384775162, -0.008483714424073696, 0.0011256386060267687, -0.03236183524131775, -0.0055188327096402645, -0.021262308582663536, -0.048286471515893936, -0.01228371076285839, -0.02529207244515419, 0.005187437869608402, -0.026794398203492165, 0.013432547450065613, -0.024938585236668587, -0.06111809238791466, 0.009252551011741161, -0.006345111411064863, -0.0012294757179915905, 0.0038242992013692856, -0.0333516001701355, 0.024708816781640053, 0.026653002947568893, 0.01167394407093525, 0.03750508651137352, 0.028809279203414917, -0.015155801549553871, -0.015518127009272575, 0.011709293350577354, 0.05885576829314232, -0.025999048724770546, -0.023330213502049446, 0.03391718119382858, -0.001226161839440465, -0.0002548980410210788, 0.08356458693742752, -0.01921207830309868, 0.017992543056607246, 0.015164638869464397, -0.003769066883251071, -0.03849485144019127, 0.013538594357669353, -0.0029449977446347475, 0.00957952719181776, -0.024814864620566368, -0.007635342888534069, 0.014837662689387798, -0.009499992243945599, -0.015898127108812332, 0.00592092564329505, 0.04849856719374657, -0.048604611307382584, 0.058961812406778336, 0.0021076728589832783, -0.011170223355293274, 0.08533202856779099, 0.07331342995166779, 0.015562313608825207, 0.013715337961912155, -0.017674405127763748, -0.019919054582715034, -0.04499903321266174, -0.008187668398022652, 0.021386029198765755, 0.05464925989508629, 0.026405559852719307, -0.08589760959148407, 0.06843529641628265, -0.003296276554465294, -0.03177857771515846, 0.0333516001701355, -0.01922975294291973, 0.004482670687139034, 0.03831810876727104, -0.06267344206571579, -0.021067889407277107, 0.010427898727357388, -0.011532548815011978, 0.060092974454164505, -0.025610212236642838, 0.01649021916091442, -0.0008632842218503356, 0.02014882117509842, 0.025398120284080505, -0.044468801468610764, 0.010295340791344643, -0.00914650410413742, -0.037469737231731415, 0.01594231277704239, 0.008010923862457275, -0.013715337961912155, -0.002125347265973687, -0.032732997089624405, -0.007538133766502142, -0.05238693580031395, -0.0180102176964283, 0.012849291786551476, 0.00787836592644453, -0.011691618710756302, 0.0021143006160855293, 0.013273477554321289, 0.022181378677487373, 0.004568833392113447, 0.00012834655353799462, -0.06380460411310196, -0.03301578760147095, -0.049417633563280106, 0.07288924604654312, 0.01648138277232647, -0.04651903361082077, 0.03545485436916351, 0.09664364159107208, -0.03990880399942398, -0.03617950528860092, 0.032202765345573425, 0.05100833252072334, -0.017453474923968315, 0.036338575184345245, -0.06376925110816956, 0.08695807307958603, -0.08002970367670059, -0.010145108215510845, 0.019530216231942177, -0.016993939876556396, -0.0360381118953228, -0.04312554746866226, 0.049028798937797546, 0.023666027933359146, 0.0007992144674062729, 0.00277046300470829, -0.017506496980786324, 0.03518974035978317, 0.015076267533004284, 0.004219763912260532, 0.005483483895659447, 0.044892989099025726, 0.02522137574851513, -0.001711103250272572, -0.006168367341160774, 0.048746008425951004, 0.06154227629303932, -0.03651532158255577, -0.013494407758116722, -0.03259160369634628, 0.022252075374126434, -0.03969671204686165, 0.017206033691763878, -0.037540435791015625, -0.008890225552022457, 0.02182788960635662, -0.054826002568006516, 0.00279476516880095, 0.016719987615942955, 0.006773715373128653, 0.04899344965815544, -0.02336556278169155, -0.044892989099025726, -0.028332071378827095, 0.0019651728216558695, -0.02790788561105728, 0.04574136063456535, -0.016260452568531036, 0.034942299127578735, 0.0026555792428553104, 0.01608370803296566, -0.09388643503189087, 0.06051716208457947, 0.0540483295917511, -0.013026036322116852, -0.03729299455881119, -0.051361821591854095, 0.029339510947465897, -0.044079966843128204, -0.04266601428389549, -0.03096555732190609, 0.011974409222602844, 0.04977112263441086, 0.022658586502075195, 0.06596087664365768, -0.035348810255527496, 0.010410224087536335, 0.023383237421512604, 0.028066953644156456, 0.011965571902692318, 0.09621945768594742, -0.025115329772233963, -0.03451811149716377, 0.00762208690866828, -0.005876739509403706, -0.015005569905042648, 0.0024832538329064846, -0.05157391354441643, 0.009173016063869, -0.013512082397937775, -0.008673714473843575, -0.017568357288837433, -0.022234400734305382, 0.0740911066532135, -0.019123705103993416, -0.022464167326688766, 0.0015520337037742138, -0.027943233028054237, 0.05966879054903984, -0.013927430845797062, 0.0002504794392734766, 0.030665092170238495, -0.018116265535354614, -0.011735804378986359, 0.03458881005644798, -0.06214320659637451, -0.012610687874257565, 0.10272364318370819, 0.02476184070110321, 0.06818785518407822, 0.05599251389503479, 0.003826508531346917, 0.05461391061544418, 0.06719808280467987, -0.06546599417924881, 0.044292058795690536, 0.03598508611321449, 0.05079624056816101, 0.02295905165374279, -0.013662314973771572, 0.049028798937797546, 0.08625109493732452, -0.024443700909614563, 0.015111615881323814, 0.008620690554380417, 0.010410224087536335, 0.03156648576259613, 0.0023749980609863997, 0.000011883620572916698, -0.06818785518407822, -0.029145093634724617, -0.021792540326714516, 0.0460594967007637, 0.0009494469268247485, -0.03715159744024277, -0.06903622299432755, -0.02896834909915924, -0.0031394162215292454, -0.03252090513706207, 0.005390693433582783, -0.04563531279563904, -0.02716556005179882, -0.07868644595146179, 0.04793298617005348, 0.03750508651137352, -0.0031725557055324316, -0.02709486149251461, 0.02188091352581978, 0.05157391354441643, -0.04973577335476875, 0.0017917427467182279, 0.004257322289049625, -0.0333516001701355, -0.02523905038833618, 0.031601835042238235, -0.019936729222536087, 0.011426502838730812, 0.025327421724796295, -0.026193467900156975, -0.00984464306384325, -0.0025009282398968935, -0.005046042613685131, -0.04574136063456535, -0.07437389343976974, -0.014740453101694584, -0.07119250297546387, -0.020908821374177933, 0.005218368023633957, -0.006075576413422823, -0.04022694379091263, -0.019671611487865448, 0.03789392486214638, 0.0015199987683445215, -0.050230659544467926, -0.05418972298502922, -0.017312079668045044, -0.09070504456758499, 0.0025517421308904886, -0.032273463904857635, -0.025680910795927048, -0.010286503471434116, -0.003479648381471634, -0.010153945535421371, 0.02310044690966606, -0.01114371232688427, -0.022411145269870758, 0.007029994390904903, -0.017055800184607506, -0.009835805743932724, -0.07151064276695251, -0.05461391061544418, 0.02488556131720543, -0.04199438542127609, -0.0003289096348453313, -0.005023949313908815, -0.007052087225019932, 0.02697114087641239, -0.02315347082912922, 0.03303346037864685, 0.09819899499416351, -0.00037668575532734394, 0.0014625570038333535, -0.050760891288518906, 0.008479295298457146, 0.008488132618367672, 0.017798125743865967, -0.017444636672735214, 0.020802773535251617, 0.004568833392113447, 0.06560739129781723, 0.015129290521144867, 0.004405345302075148, -0.02629951387643814, -0.02690044417977333, 0.010224643163383007, -0.009455806575715542, -0.039272528141736984, -0.0346948578953743, -0.06444087624549866, -0.012831618078052998, -0.030983231961727142, 0.07387901097536087, -0.006566041149199009, 0.015624173916876316, 0.009756271727383137, -0.04630694165825844, 0.00880627240985632, -0.039873458445072174, -0.010003712959587574, 0.04050973430275917, 0.057618558406829834, 0.04065113142132759, 0.03732834383845329, 0.017771614715456963, -0.0253627710044384, 0.011850688606500626, -0.0006025867187418044, -0.0022910446859896183, 0.06564273685216904, -0.03821206092834473, 0.03188462555408478, -0.0028963929507881403, -0.0507255420088768, -0.0407218299806118, -0.004639531020075083, 0.04842786863446236, 0.04323159530758858, 0.021668819710612297, -0.06967250257730484, 0.019653938710689545, -0.042948804795742035, -0.023277191445231438, -0.019318124279379845, 0.02656462974846363, -0.022128354758024216, 0.01071068923920393, 0.002013777382671833, 0.05373018980026245, 0.020926494151353836, 0.07953482121229172, -0.048286471515893936, 0.0006683134124614298, -0.06118878722190857, -0.03437671810388565, 0.011868362314999104, 0.0048913913778960705, -0.05093763396143913, 0.054437167942523956, -0.014643244445323944, -0.017586031928658485, -0.016048358753323555, 0.007334877736866474, -0.004281624685972929, -0.010003712959587574, 0.013326501473784447, -0.04301949962973595, 0.03644462302327156, -0.010118596255779266, -0.035278111696243286, 0.013573942705988884, -0.04093392193317413, -0.00468813581392169, 0.02562788687646389, 0.036939505487680435, 0.07578784972429276, -0.027253931388258934, 0.02817300148308277, -0.021810214966535568, -0.014616732485592365, 0.006194878835231066, -0.005023949313908815, -0.016163242980837822, 0.029180442914366722, -0.004820693749934435, 0.032856717705726624, 0.01787766069173813, -0.009270225651562214, 0.028279047459363937, 0.00740557536482811, 0.014466499909758568, -0.07394970953464508, -0.004107089713215828, 0.0063406927511096, 0.0553915835916996, -0.0186818465590477, -0.008859295397996902, 0.018434403464198112, 0.012805106118321419, 0.0014128476614132524, 0.029852069914340973, 0.054755304008722305, 0.007083017844706774, 0.004811856430023909 ]
7,458
pathlib
replace
Rename this path to the target path, overwriting if that path exists. The target path may be absolute or relative. Relative paths are interpreted relative to the current working directory, *not* the directory of the Path object. Returns the new Path instance pointing to the target path.
def replace(self, target): """ Rename this path to the target path, overwriting if that path exists. The target path may be absolute or relative. Relative paths are interpreted relative to the current working directory, *not* the directory of the Path object. Returns the new Path instance pointing to the target path. """ self._accessor.replace(self, target) return self.__class__(target)
(self, target)
[ 0.05267772078514099, -0.008984341286122799, 0.00045596191193908453, 0.0015606344677507877, -0.056117039173841476, -0.04095596447587013, 0.020793836563825607, 0.09938927739858627, 0.041131436824798584, 0.017275555059313774, 0.02702321484684944, -0.04481642320752144, 0.08233306556940079, 0.05674875155091286, -0.03885025903582573, 0.009879265911877155, 0.06524176150560379, 0.020934216678142548, -0.027900591492652893, 0.003246295265853405, 0.03737626597285271, 0.004413206595927477, 0.015792787075042725, -0.04028915613889694, -0.048150453716516495, 0.05204600840806961, -0.03132236376404762, 0.061381302773952484, 0.03420015797019005, -0.08268401771783829, 0.00851933192461729, -0.032620880752801895, 0.005101947579532862, 0.05590646713972092, 0.02628621831536293, 0.049589354544878006, -0.03695512190461159, 0.04376357048749924, 0.041166532784700394, -0.04934368655085564, -0.019144367426633835, -0.03369127959012985, -0.021127240732312202, -0.018284538760781288, 0.04720288887619972, 0.05176524817943573, 0.002377691911533475, 0.016073549166321754, 0.0140468068420887, 0.01030040718615055, 0.02223273552954197, 0.00714623648673296, -0.03941177949309349, -0.01279215794056654, -0.009958229959011078, 0.05811745673418045, 0.05843331292271614, 0.041763149201869965, -0.009054531343281269, -0.042605429887771606, 0.04320204630494118, -0.029620250687003136, 0.021074598655104637, -0.023197850212454796, -0.014590781182050705, -0.025566767901182175, -0.021267620846629143, -0.013880105689167976, 0.016810545697808266, 0.013406322337687016, -0.054116617888212204, -0.009677469730377197, 0.008238570764660835, 0.004336436279118061, 0.008378950878977776, 0.05804726853966713, -0.03758683428168297, 0.01707375794649124, 0.05050182715058327, -0.07489290833473206, -0.048782166093587875, -0.03681474179029465, -0.01690705679357052, -0.05987221375107765, -0.05344981327652931, 0.015792787075042725, 0.05018597096204758, -0.08015716820955276, -0.0017032083123922348, -0.054572854191064835, -0.036218125373125076, 0.01251139771193266, -0.023127660155296326, -0.02656697854399681, 0.016345534473657608, -0.01898644119501114, 0.008058708161115646, -0.05853860080242157, 0.043166954070329666, -0.01581033505499363, 0.005553796887397766, 0.03462129831314087, -0.003336226334795356, 0.01933739148080349, 0.05997749790549278, 0.030831031501293182, 0.022144997492432594, -0.010414466261863708, 0.004275019746273756, -0.02953251264989376, -0.08212249726057053, 0.02021476812660694, -0.031111791729927063, 0.0027132886461913586, 0.007251521572470665, -0.04506208747625351, -0.002064029686152935, -0.04499189555644989, 0.01944267563521862, -0.0040030330419540405, -0.010081063024699688, 0.041868433356285095, -0.036463793367147446, 0.025707148015499115, 0.06962864845991135, -0.0037749148905277252, 0.018793417140841484, 0.033252593129873276, 0.03863968700170517, -0.05738046020269394, -0.0520109124481678, 0.02981327287852764, -0.04527265951037407, 0.03702531382441521, 0.05243205651640892, 0.04593946412205696, -0.021969523280858994, 0.0036169870290905237, -0.0056283739395439625, 0.03449846804141998, 0.019951555877923965, -0.035235464572906494, 0.02346106432378292, 0.025145627558231354, 0.05731027200818062, 0.010221443139016628, 0.030620461329817772, 0.0582929328083992, -0.03193652629852295, 0.048747070133686066, -0.027742663398385048, 0.0007940262439660728, 0.09552881866693497, -0.011958649381995201, 0.021144788712263107, -0.017354518175125122, -0.047904789447784424, 0.027532093226909637, 0.01616128534078598, -0.02607564628124237, 0.0586438849568367, -0.02802342362701893, -0.003432737896218896, 0.005659082438796759, 0.005685403477400541, -0.016213929280638695, 0.02356634847819805, -0.01094089262187481, -0.0026803871151059866, 0.035796985030174255, -0.0035073149483650923, -0.019003987312316895, -0.0031432034447789192, 0.01905663125216961, -0.007970971055328846, 0.00938793458044529, 0.030813483521342278, 0.016152512282133102, 0.027374165132641792, 0.029023634269833565, 0.05664346367120743, 0.008067482151091099, 0.0005404094699770212, 0.0059705511666834354, -0.008457914926111698, 0.048782166093587875, -0.04541303962469101, 0.04418471083045006, 0.002428141189739108, 0.04400923475623131, 0.035761889070272446, 0.041517484933137894, 0.06976902484893799, 0.026654716581106186, 0.023057470098137856, -0.06489080935716629, -0.020583266392350197, -0.024970151484012604, -0.035691700875759125, 0.10584677010774612, -0.026619620621204376, 0.032269928604364395, 0.05215129256248474, 0.012467528693377972, 0.03126971796154976, 0.006593488622456789, 0.03369127959012985, 0.028953444212675095, -0.06829503178596497, 0.03758683428168297, 0.01724923402070999, 0.028777968138456345, 0.025707148015499115, -0.054151713848114014, 0.009817849844694138, 0.014810125343501568, -0.03158557415008545, 0.035832080990076065, 0.010081063024699688, 0.05327433720231056, -0.008207862265408039, 0.043131858110427856, -0.001319355797022581, 0.012546492740511894, -0.014353889040648937, -0.048641785979270935, -0.024952605366706848, -0.028777968138456345, 0.009335292503237724, -0.08703580498695374, 0.015696275979280472, -0.05962654575705528, -0.016819318756461143, -0.03885025903582573, 0.048115361481904984, -0.0397978238761425, -0.003502927953377366, -0.006782124750316143, -0.0029085050337016582, 0.021267620846629143, -0.041973721235990524, -0.020232316106557846, 0.034744132310152054, 0.013546702452003956, -0.0002533426450099796, -0.009940682910382748, -0.030251963064074516, -0.03525301069021225, 0.04074539244174957, -0.004334243014454842, 0.027409261092543602, 0.009940682910382748, -0.06976902484893799, 0.03793778643012047, 0.019740983843803406, 0.006163574289530516, -0.019705889746546745, 0.0012667131377384067, -0.02303992211818695, 0.032831449061632156, -0.055134374648332596, -0.055520422756671906, 0.013353679329156876, -0.02335577830672264, -0.0072339740581810474, -0.015213718637824059, -0.03312975913286209, -0.009466898627579212, -0.011440997011959553, -0.015380420722067356, 0.06783879548311234, 0.012888669036328793, -0.043342430144548416, 0.006676839664578438, 0.025215817615389824, 0.021267620846629143, -0.07222568243741989, 0.009396708570420742, 0.015187397599220276, 0.01181826926767826, 0.03358599543571472, -0.061135634779930115, 0.0019313263474032283, -0.009958229959011078, -0.02558431588113308, 0.024935057386755943, -0.049203306436538696, 0.05436228588223457, 0.007435770705342293, 0.032550688832998276, 0.041973721235990524, 0.02017967402935028, -0.08843961358070374, 0.020477982237935066, -0.012239410541951656, 0.013186977244913578, -0.08591276407241821, -0.00917736440896988, -0.009607278741896152, -0.022425757721066475, -0.005759980529546738, -0.019670793786644936, -0.060995254665613174, 0.042008813470602036, 0.022531043738126755, -0.032269928604364395, 0.0450269915163517, 0.003891167463734746, 0.008677259087562561, 0.062118299305438995, -0.010695226490497589, -0.0429212860763073, -0.07405062764883041, -0.00833069533109665, 0.08752714097499847, 0.010510977357625961, -0.0007693500374443829, 0.012467528693377972, -0.005330065730959177, -0.021285168826580048, -0.07134830206632614, 0.020706098526716232, -0.08752714097499847, -0.02544393576681614, -0.041798245161771774, -0.0177142433822155, -0.024689391255378723, 0.06468024104833603, -0.006172347813844681, 0.0009514057892374694, -0.041973721235990524, 0.0013906427193433046, 0.03288409486413002, -0.0014531557681038976, -0.05176524817943573, -0.025286007672548294, 0.001867716433480382, -0.009431803598999977, 0.04306166619062424, 0.04439527913928032, 0.035235464572906494, 0.008721128106117249, -0.05253734067082405, -0.03155048191547394, -0.007975357584655285, 0.024408631026744843, -0.008049935102462769, 0.005588891915977001, 0.06324134021997452, -0.024320892989635468, -0.0031453969422727823, 0.008514944463968277, -0.00040002912282943726, -0.042675621807575226, -0.010975987650454044, -0.004518492147326469, -0.01975853182375431, 0.026654716581106186, -0.021583477035164833, -0.05938088148832321, -0.009800301864743233, -0.014266151934862137, -0.017591411247849464, -0.01422228291630745, 0.016152512282133102, -0.020986860617995262, -0.07320834696292877, 0.0140468068420887, -0.017556315287947655, -0.02677754871547222, 0.018214348703622818, -0.042640525847673416, 0.03976273164153099, 0.014599555172026157, 0.026689810678362846, 0.02876042015850544, 0.004772931337356567, -0.013818689621984959, -0.006172347813844681, 0.007097980473190546, 0.06899693608283997, 0.00047076764167286456, -0.027146046981215477, 0.01633676141500473, -0.012695646844804287, -0.015125981532037258, 0.06513647735118866, -0.0027132886461913586, 0.028462111949920654, -0.00022674714273307472, 0.007097980473190546, -0.05232676863670349, 0.02233802154660225, -0.018688132986426353, 0.0031366231851279736, -0.03146274387836456, -0.015529574826359749, 0.016775449737906456, -0.013037823140621185, -0.012818478979170322, 0.015529574826359749, 0.05692422389984131, -0.02858494594693184, 0.036779649555683136, 0.007690210361033678, -0.01835472881793976, 0.09868737310171127, 0.07517366856336594, 0.02318030223250389, -0.0035709247458726168, -0.03539339080452919, -0.027391713112592697, -0.03990311175584793, -0.011423449963331223, 0.03232257068157196, 0.020951764658093452, 0.03811326250433922, -0.05741555616259575, 0.055274758487939835, -0.0057512070052325726, -0.02946232259273529, 0.027883043512701988, -0.0390959233045578, -0.00014654939877800643, 0.029093824326992035, -0.042184289544820786, -0.009159816429018974, -0.01923210546374321, -0.015784014016389847, 0.05888954922556877, -0.029444774612784386, -0.0028492819983512163, -0.003336226334795356, 0.03923630341887474, 0.023618990555405617, -0.04625532031059265, 0.02153083309531212, -0.01785462349653244, -0.03779740631580353, 0.010353049263358116, 0.000752899213694036, -0.035832080990076065, -0.007966583594679832, -0.009379161521792412, -0.027216237038373947, -0.03448091819882393, -0.04407942667603493, 0.027286427095532417, 0.016380630433559418, -0.0027132886461913586, 0.02160102315247059, 0.0028909575194120407, -0.0004375918360892683, 0.02003929205238819, -0.013406322337687016, -0.06275001168251038, -0.01979362778365612, -0.048711977899074554, 0.07148868590593338, 0.035761889070272446, -0.027760211378335953, 0.03358599543571472, 0.10739095509052277, -0.04004349187016487, -0.05327433720231056, 0.017968682572245598, 0.0471326969563961, -0.036077745258808136, 0.01724923402070999, -0.07113773375749588, 0.06815465539693832, -0.09244044870138168, -0.014090675860643387, 0.0038385246880352497, -0.02900608628988266, -0.02512807957828045, -0.008177154697477818, 0.05323924124240875, 0.027374165132641792, -0.004900150932371616, -0.008387724868953228, -0.016749128699302673, 0.014266151934862137, 0.009230007417500019, 0.01577524095773697, 0.0017306263325735927, 0.04372847452759743, 0.02240821160376072, 0.01258158776909113, 0.02007438801229, 0.05113353580236435, 0.055871374905109406, -0.061626967042684555, -0.016845639795064926, -0.025496577844023705, 0.005496767349541187, -0.04916821047663689, 0.017635280266404152, -0.041763149201869965, -0.026093194261193275, 0.023478610441088676, -0.07945527136325836, -0.004536039661616087, 0.011502414010465145, 0.011906007304787636, 0.027514545246958733, -0.010695226490497589, -0.02812870964407921, -0.026760000735521317, 0.026830190792679787, -0.01573137193918228, 0.05387095361948013, -0.011704210191965103, 0.015073338523507118, 0.021372906863689423, 0.013818689621984959, -0.08507048338651657, 0.03432299196720123, 0.0450269915163517, -0.03162067010998726, -0.03828873485326767, -0.04365828260779381, 0.0294974185526371, -0.04351790249347687, -0.03892044723033905, -0.04035934805870056, 0.02639150246977806, 0.04102615267038345, 0.02484731934964657, 0.036042649298906326, -0.017845850437879562, 0.011256747879087925, 0.01233592163771391, 0.022355567663908005, 0.02481222338974476, 0.10633810609579086, 0.006593488622456789, -0.05418680980801582, 0.012309600599110126, -0.015906846150755882, -0.018863607197999954, 0.022846899926662445, -0.0652768537402153, 0.00494840694591403, -0.0216361191123724, -0.0036740165669471025, -0.0294974185526371, -0.027321523055434227, 0.0684003159403801, -0.031252171844244, -0.04720288887619972, 0.014599555172026157, 0.005514314863830805, 0.0659787580370903, -0.016284119337797165, -0.027742663398385048, 0.015713823959231377, -0.0025751017965376377, -0.018828513100743294, 0.04976482689380646, -0.06685613095760345, -0.012800931930541992, 0.09812585264444351, 0.016222702339291573, 0.07292758673429489, 0.03793778643012047, -0.01416963990777731, 0.05952126160264015, 0.06453985720872879, -0.056011755019426346, 0.036779649555683136, 0.02702321484684944, 0.04439527913928032, 0.019039083272218704, -0.027286427095532417, 0.048922546207904816, 0.07931488752365112, -0.021355358883738518, 0.012002518400549889, 0.005167751107364893, -0.02184668928384781, 0.029128920286893845, 0.010414466261863708, -0.031076695770025253, -0.04706250876188278, -0.04478132724761963, 0.0003229844442103058, 0.07741975784301758, 0.014538138173520565, -0.048641785979270935, -0.06253943592309952, -0.006470656022429466, 0.00458868220448494, -0.03846421092748642, -0.002450075466185808, -0.02219763956964016, -0.01746857725083828, -0.07257663458585739, 0.05151958391070366, 0.036218125373125076, -0.005075626540929079, -0.01831963285803795, 0.02219763956964016, 0.05257243663072586, -0.06260962784290314, -0.0018084935145452619, 0.0010923345107585192, -0.042008813470602036, -0.02540883980691433, 0.006804059259593487, -0.007707757875323296, 0.015792787075042725, 0.03218219056725502, -0.01683686673641205, 0.004974727984517813, 0.00004380030804895796, -0.012037613429129124, -0.035937365144491196, -0.09166835993528366, -0.017336972057819366, -0.07882355898618698, -0.026531882584095, -0.015292682684957981, -0.012783383950591087, -0.042745813727378845, 0.0013369033113121986, 0.035059988498687744, -0.0020749967079609632, -0.04987011477351189, -0.01860039494931698, -0.002961147576570511, -0.09728357195854187, -0.009414256550371647, -0.00439346581697464, -0.0561872273683548, -0.022425757721066475, 0.0040841903537511826, -0.001921455841511488, 0.01947777159512043, -0.008848347701132298, -0.018144158646464348, -0.012520170770585537, -0.019986649975180626, -0.0034458984155207872, -0.07791108638048172, -0.06861089169979095, 0.02363653853535652, -0.03758683428168297, -0.028251541778445244, 0.00020261926692910492, -0.021092144772410393, 0.0051194955594837666, -0.018863607197999954, 0.007734078913927078, 0.08605314791202545, 0.010510977357625961, 0.024005036801099777, -0.04457075521349907, 0.0206008143723011, 0.018617941066622734, 0.004768544342368841, -0.0018688131822273135, -0.005615213420242071, 0.030708197504281998, 0.06976902484893799, 0.03549867868423462, 0.007756013423204422, -0.022004617378115654, -0.024794677272439003, 0.004667646251618862, -0.009036984294652939, -0.05032635107636452, -0.05029125511646271, -0.062293775379657745, -0.024233154952526093, -0.04569379985332489, 0.04530775174498558, 0.003913101740181446, 0.02046043425798416, 0.00989681389182806, -0.03449846804141998, -0.0033537738490849733, -0.03383165970444679, -0.005773141048848629, 0.025005247443914413, 0.062258679419755936, 0.02551412582397461, 0.036920029670000076, 0.020477982237935066, -0.048325929790735245, 0.012476302683353424, -0.029304394498467445, -0.0038582656998187304, 0.04625532031059265, -0.030743293464183807, 0.027058308944106102, -0.0029962428379803896, -0.055695898830890656, 0.0017964296275749803, 0.0013676115777343512, 0.05997749790549278, 0.06938298046588898, 0.00982662383466959, -0.06976902484893799, 0.01774933934211731, -0.036744553595781326, -0.019705889746546745, -0.023847108706831932, 0.006137252785265446, -0.018723227083683014, 0.022917089983820915, 0.015599764883518219, 0.04344771429896355, 0.013888879679143429, 0.08128021657466888, -0.026093194261193275, -0.008076256141066551, -0.10535544157028198, -0.042008813470602036, 0.00583894457668066, 0.0038977477233856916, -0.049308594316244125, 0.03937668353319168, -0.021162334829568863, 0.0025948428083211184, 0.001937906607054174, -0.004264052491635084, -0.019039083272218704, 0.01673158071935177, 0.018512656912207603, -0.04056991636753082, 0.05987221375107765, -0.014722387306392193, -0.041938625276088715, 0.018547751009464264, -0.025777338072657585, -0.024619201198220253, 0.014204734936356544, 0.016591200605034828, 0.04457075521349907, -0.02212744951248169, 0.03376147150993347, -0.022987280040979385, -0.014941731467843056, 0.03225238248705864, -0.010809285566210747, -0.006975147873163223, 0.035130180418491364, -0.0206008143723011, 0.05692422389984131, 0.007856911979615688, -0.004584295209497213, 0.02533864974975586, 0.041657865047454834, 0.031638216227293015, -0.07278720289468765, -0.0008971180650405586, 0.015573443844914436, 0.06450476497411728, -0.010370597243309021, -0.03790269047021866, 0.006896183826029301, 0.025145627558231354, -0.007084819953888655, 0.027409261092543602, 0.05980202183127403, 0.0018172672716900706, -0.006378531455993652 ]
7,459
pathlib
resolve
Make the path absolute, resolving all symlinks on the way and also normalizing it (for example turning slashes into backslashes under Windows).
def resolve(self, strict=False): """ Make the path absolute, resolving all symlinks on the way and also normalizing it (for example turning slashes into backslashes under Windows). """ def check_eloop(e): winerror = getattr(e, 'winerror', 0) if e.errno == ELOOP or winerror == _WINERROR_CANT_RESOLVE_FILENAME: raise RuntimeError("Symlink loop from %r" % e.filename) try: s = self._accessor.realpath(self, strict=strict) except OSError as e: check_eloop(e) raise p = self._from_parts((s,)) # In non-strict mode, realpath() doesn't raise on symlink loops. # Ensure we get an exception by calling stat() if not strict: try: p.stat() except OSError as e: check_eloop(e) return p
(self, strict=False)
[ 0.04005591943860054, 0.028533224016427994, -0.017592841759324074, 0.06190139055252075, -0.008368510752916336, 0.0056642950512468815, 0.022657180204987526, 0.02570989914238453, 0.036315012723207474, -0.018263380974531174, 0.02496877685189247, 0.013110813684761524, 0.019498584792017937, 0.00558047741651535, -0.02018677070736885, 0.0406205840408802, 0.0005900307442061603, 0.06119555979967117, -0.05011401325464249, 0.05960744246840477, 0.03645617887377739, -0.01149622444063425, -0.023592406883835793, -0.05660765990614891, -0.027933267876505852, 0.02736860327422619, 0.003866631304845214, 0.004861412104219198, -0.029715491458773613, -0.018986858427524567, 0.014804808422923088, 0.062466055154800415, 0.0743946060538292, 0.0135078439489007, 0.032291773706674576, -0.03569741174578667, -0.04662014916539192, -0.0009710692684166133, -0.07044194638729095, -0.07827667146921158, -0.0019542700611054897, 0.04729068651795387, 0.00034023268381133676, 0.031144799664616585, 0.05212562903761864, -0.012281461618840694, -0.02041616663336754, 0.006414240691810846, -0.02417471632361412, -0.0015131254913285375, 0.019304482266306877, 0.0257981289178133, -0.04499673470854759, -0.014125445857644081, 0.027950912714004517, 0.0596427321434021, -0.029450803995132446, 0.030880112200975418, -0.03349168971180916, -0.060489729046821594, 0.025145234540104866, -0.05230208858847618, -0.003341669449582696, 0.015616513788700104, -0.012219701893627644, -0.025215817615389824, 0.0141783831641078, -0.057101741433143616, -0.010852154344320297, 0.005593711975961924, -0.07968834042549133, 0.03702084347605705, -0.014019571244716644, -0.08935822546482086, 0.0679362490773201, 0.017469320446252823, 0.025251109153032303, 0.026451023295521736, 0.06253664195537567, 0.017398737370967865, -0.09246388077735901, -0.0008431373862549663, -0.009193451143801212, -0.032644689083099365, -0.0428086593747139, 0.03492099791765213, 0.021968994289636612, -0.020486749708652496, 0.02449234016239643, -0.007530336268246174, 0.00924638845026493, 0.03712671995162964, 0.004486439283937216, 0.014451893046498299, 0.00708036869764328, 0.0015506228664889932, -0.011857963167130947, -0.013049053028225899, 0.026415729895234108, -0.017778122797608376, -0.031974151730537415, 0.03776196762919426, -0.04806710034608841, 0.012404982931911945, 0.05463133007287979, 0.020486749708652496, 0.028250891715288162, -0.017451675608754158, 0.005355493631213903, -0.02899201400578022, -0.0794060081243515, -0.023415949195623398, -0.0005922364653088152, 0.012828481383621693, -0.02172195352613926, -0.02334536612033844, 0.0007223740685731173, -0.04174991324543953, 0.07418285310268402, -0.014107800088822842, -0.0251275897026062, 0.05904277414083481, -0.029715491458773613, -0.03384460508823395, 0.02899201400578022, 0.025374630466103554, -0.024774674326181412, -0.0229924488812685, 0.03920891880989075, -0.01852806843817234, 0.03885600343346596, 0.018104568123817444, -0.011840317398309708, 0.036914970725774765, -0.013040230609476566, 0.008187641389667988, -0.032256484031677246, 0.026292210444808006, -0.003610767424106598, 0.018316319212317467, 0.016763489693403244, -0.01574885845184326, -0.007349466904997826, 0.021774891763925552, 0.021298455074429512, -0.01613706536591053, 0.024121779948472977, 0.006471589207649231, -0.0332975834608078, 0.013798998668789864, 0.05688999220728874, -0.038538381457328796, 0.03846779838204384, 0.071465402841568, 0.004909937735646963, -0.003835751209408045, -0.017910465598106384, 0.01062275841832161, -0.006361303385347128, 0.0027130385860800743, -0.05798402801156044, -0.03416222706437111, -0.015298889949917793, -0.017372269183397293, -0.01167268306016922, -0.028409704566001892, 0.024633506312966347, -0.06772449612617493, 0.015616513788700104, 0.030368385836482048, -0.017592841759324074, -0.002988753840327263, 0.006868619471788406, 0.02389238402247429, -0.016569387167692184, 0.010040448047220707, 0.013516666367650032, 0.01718698814511299, -0.0023160085547715425, -0.002690981375053525, 0.001555034308694303, -0.04365565627813339, 0.03507980704307556, -0.06320717930793762, 0.013119636103510857, 0.09514603763818741, -0.006017210427671671, -0.009643417783081532, 0.049514055252075195, -0.008862592279911041, -0.06377184391021729, 0.05173742398619652, 0.03966771066188812, 0.03199179843068123, 0.027827393263578415, -0.04665543884038925, 0.0037144364323467016, 0.032768212258815765, -0.04365565627813339, 0.05064338445663452, -0.05096101015806198, -0.023451240733265877, 0.005884867161512375, 0.006555406842380762, -0.0022421167232096195, -0.00754357036203146, -0.021916057914495468, 0.02669806405901909, 0.00822734460234642, 0.01840454712510109, -0.031144799664616585, -0.0020050015300512314, -0.04407915472984314, -0.016216469928622246, -0.008381744846701622, 0.03966771066188812, -0.005399608518928289, 0.031815338879823685, 0.028339121490716934, 0.048208266496658325, -0.008108234964311123, -0.029450803995132446, 0.03850308805704117, -0.015590045601129532, -0.052831459790468216, -0.039950042963027954, -0.009131690487265587, 0.0024858491960912943, 0.05632532760500908, 0.021421974524855614, 0.015616513788700104, -0.05491366237401962, -0.012378513813018799, -0.004515113774687052, 0.11377998441457748, -0.0371973030269146, 0.010666873306035995, 0.029168471693992615, 0.031021278351545334, 0.02488054893910885, -0.06546583771705627, -0.008500853553414345, -0.0009495634585618973, 0.05043163523077965, -0.0011370498687028885, 0.0029159649275243282, -0.001980738714337349, -0.023521823808550835, 0.03649147227406502, -0.04206753522157669, 0.00881847832351923, 0.0711124911904335, 0.004640839993953705, 0.022216035053133965, 0.021351391449570656, -0.07188890129327774, -0.022180743515491486, -0.006767156068235636, -0.005289322230964899, 0.062466055154800415, 0.03804429993033409, 0.01604001224040985, -0.015157723799347878, -0.051560964435338974, -0.010331603698432446, -0.047820061445236206, -0.06119555979967117, -0.016048835590481758, -0.04605548083782196, 0.03257410600781441, -0.029256701469421387, -0.012952001765370369, -0.035256266593933105, 0.044220320880413055, -0.021192580461502075, 0.05724290758371353, 0.0002773695741780102, 0.014919506385922432, 0.03920891880989075, -0.012607908807694912, -0.0784178376197815, 0.02689216658473015, 0.009969864971935749, -0.005898101720958948, 0.013357854448258877, -0.028233246877789497, -0.030474260449409485, -0.006136319600045681, -0.042279284447431564, 0.015122432261705399, 0.055513620376586914, -0.012281461618840694, -0.012554971501231194, -0.04577314853668213, 0.010790393687784672, 0.03151535987854004, -0.03455043584108353, -0.030985986813902855, 0.004243809729814529, -0.0524432547390461, -0.054843079298734665, -0.018139859661459923, 0.0035622415598481894, 0.08519382029771805, -0.019480939954519272, -0.05639591068029404, 0.005778992548584938, -0.038573671132326126, 0.03447985276579857, 0.019975021481513977, 0.008042063564062119, -0.02812737226486206, -0.00628189742565155, 0.08117058128118515, 0.008703780360519886, 0.03188592195510864, 0.006727453321218491, 0.022586597129702568, 0.020010313019156456, -0.011487402021884918, -0.049514055252075195, 0.061760224401950836, 0.03885600343346596, 0.013640186749398708, -0.026045169681310654, 0.04679660499095917, 0.022657180204987526, 0.033915188163518906, 0.025145234540104866, 0.030050761997699738, 0.019622106105089188, -0.008496442809700966, -0.03068600967526436, 0.023557115346193314, -0.04372623935341835, 0.04474969580769539, 0.015563576482236385, -0.06059560552239418, 0.023962967097759247, -0.04662014916539192, 0.06994786858558655, 0.04626723378896713, -0.0059995646588504314, -0.03437397629022598, -0.0121050039306283, 0.04662014916539192, -0.0016664232825860381, -0.019375065341591835, 0.0012583646457642317, -0.030086053535342216, -0.002885084832087159, -0.051172759383916855, -0.06987728178501129, -0.01449600700289011, -0.04559669271111488, 0.04510261118412018, -0.010455124080181122, 0.00811705831438303, -0.00025145235122181475, -0.00837292242795229, -0.011805025860667229, -0.04972580447793007, -0.039279501885175705, -0.03822075575590134, 0.023962967097759247, -0.0018880983116105199, -0.012987293303012848, 0.017275217920541763, -0.02274540811777115, 0.04838472604751587, -0.03638559579849243, -0.021598434075713158, 0.09182862937450409, -0.06666575372219086, 0.0347621850669384, 0.014875391498208046, 0.03617384657263756, -0.02544521354138851, 0.022780699655413628, -0.0066171670332551, 0.04474969580769539, 0.0013245362788438797, -0.016781136393547058, -0.019569167867302895, 0.004175432492047548, -0.010516883805394173, 0.054843079298734665, -0.004768771585077047, 0.029486095532774925, -0.01356960367411375, -0.014804808422923088, -0.038608964532613754, 0.07051253318786621, -0.028886139392852783, 0.0015660629142075777, -0.025780482217669487, 0.0906287208199501, 0.04849059879779816, -0.01821044459939003, -0.007349466904997826, -0.02666277252137661, -0.031815338879823685, 0.006039267871528864, 0.03239765018224716, -0.024280590936541557, 0.005889278836548328, 0.06288955360651016, 0.062148433178663254, -0.024068841710686684, 0.013181396760046482, -0.028497932478785515, -0.008002360351383686, -0.004949640948325396, -0.03273291885852814, 0.014010747894644737, 0.027121562510728836, -0.035256266593933105, -0.08272340893745422, 0.054207831621170044, -0.04337332397699356, -0.015448879450559616, -0.04774947836995125, -0.08731131255626678, 0.001658703200519085, 0.024668797850608826, -0.028886139392852783, -0.0034321038983762264, 0.04774947836995125, -0.034621018916368484, 0.027033332735300064, 0.02595693990588188, 0.019339773803949356, 0.007248003501445055, -0.042208701372146606, 0.023363010957837105, -0.0215278510004282, 0.03432103991508484, 0.02223368175327778, -0.03518568351864815, -0.02488054893910885, 0.044185031205415726, -0.0005486734444275498, -0.018510421738028526, 0.017363445833325386, 0.0215278510004282, -0.04803181067109108, -0.03917362913489342, 0.0028100903145968914, -0.08039417117834091, 0.02860380709171295, -0.026909813284873962, -0.007225946523249149, 0.0515962578356266, -0.014204852283000946, -0.11399172991514206, -0.0215278510004282, -0.021316099911928177, -0.022427784278988838, -0.05632532760500908, 0.060489729046821594, 0.009802229702472687, -0.008478797040879726, 0.10389834642410278, -0.03815017268061638, -0.035962097346782684, -0.04104408249258995, 0.0031674173660576344, 0.014222498051822186, -0.04397328197956085, -0.03832663223147392, 0.043937988579273224, -0.06680691987276077, -0.009030227549374104, 0.044926151633262634, -0.016798781231045723, -0.015731211751699448, -0.03469160199165344, 0.02315126173198223, 0.015634160488843918, -0.053219668567180634, -0.07460635155439377, -0.045914314687252045, 0.04199695214629173, 0.04894939064979553, 0.033632855862379074, -0.03460337221622467, 0.03638559579849243, -0.031215382739901543, -0.0374443419277668, -0.0027549471706151962, 0.0572076141834259, 0.07552393525838852, -0.012652023695409298, 0.039279501885175705, -0.0322035476565361, 0.03502687066793442, -0.046231940388679504, 0.007102426141500473, -0.013216688297688961, -0.07333585619926453, 0.028392057865858078, -0.03045661374926567, -0.015095964074134827, 0.03338581323623657, -0.026239272207021713, 0.10629817098379135, -0.0004676131356973201, -0.004316598642617464, -0.0007968171848915517, 0.01382546778768301, -0.016604678705334663, 0.013260803185403347, -0.0006948025547899306, 0.03973829373717308, 0.017804590985178947, 0.01626940816640854, 0.00720830075442791, -0.014787162654101849, 0.0014888625591993332, -0.013887227512896061, -0.024157071486115456, -0.031233027577400208, -0.029044952243566513, -0.0428086593747139, -0.05007871985435486, 0.013640186749398708, 0.015537108294665813, 0.04806710034608841, 0.020645560696721077, -0.028974369168281555, 0.020945539698004723, -0.0018517038552090526, -0.007764142472296953, -0.016048835590481758, 0.08914647251367569, 0.07368877530097961, 0.0034938640892505646, -0.00880083255469799, -0.06645400077104568, 0.003445338224992156, -0.02121022529900074, 0.02172195352613926, -0.046867188066244125, 0.024192363023757935, 0.050502218306064606, -0.05558420345187187, -0.011046257801353931, -0.029521387070417404, 0.0322035476565361, -0.026998041197657585, -0.007746496703475714, -0.002891702111810446, 0.028815556317567825, 0.06546583771705627, -0.03839721530675888, -0.029891949146986008, 0.03125067427754402, -0.03239765018224716, -0.043937988579273224, -0.013754884712398052, -0.04379682242870331, 0.017239926382899284, -0.0060966163873672485, -0.007530336268246174, -0.0018461896106600761, -0.02121022529900074, 0.04877293109893799, 0.040585290640592575, 0.02346888557076454, 0.006401006132364273, -0.004579079803079367, 0.0513492152094841, -0.0031982974614948034, -0.01951623149216175, 0.024068841710686684, 0.00820969883352518, 0.06723041832447052, -0.048172976821660995, 0.06694808602333069, 0.015140078030526638, 0.02069849893450737, -0.01900450326502323, -0.03594445064663887, 0.041291121393442154, -0.030050761997699738, -0.026521606370806694, 0.06398359686136246, 0.1026984304189682, -0.01581944152712822, -0.10347484797239304, -0.048561181873083115, -0.0695243701338768, 0.009069929830729961, 0.032291773706674576, 0.010790393687784672, -0.05960744246840477, -0.05399608239531517, -0.03453278914093971, 0.038891296833753586, 0.008774363435804844, 0.008461151272058487, -0.019975021481513977, 0.008655254729092121, 0.05858398601412773, -0.022180743515491486, 0.0022851284593343735, 0.02082201838493347, -0.013754884712398052, -0.04065587371587753, 0.05632532760500908, -0.011999129317700863, 0.002918170765042305, 0.04972580447793007, -0.018545713275671005, -0.015898846089839935, 0.014134269207715988, -0.04778476804494858, -0.02382180094718933, -0.056148868054151535, 0.04372623935341835, 0.013957810588181019, -0.020839665085077286, -0.02653925120830536, 0.014663642272353172, -0.06437180191278458, 0.054207831621170044, 0.007675913628190756, 0.03578563779592514, -0.030509551987051964, 0.022974804043769836, 0.020116187632083893, 0.0020193387754261494, 0.015228306874632835, 0.039950042963027954, -0.021121997386217117, -0.06797154247760773, 0.021474912762641907, 0.0074200499802827835, 0.06320717930793762, 0.030033115297555923, -0.039879459887742996, -0.039844170212745667, -0.04513790085911751, 0.01923389919102192, -0.02484525740146637, 0.013887227512896061, 0.008893472142517567, -0.04167933017015457, 0.02519817277789116, 0.01060511264950037, 0.022586597129702568, 0.0513492152094841, 0.004561434034258127, 0.011760911904275417, 0.07079486548900604, 0.06003094092011452, 0.021704308688640594, -0.10178085416555405, -0.004451147746294737, 0.03684438765048981, -0.00902581587433815, 0.014540121890604496, -0.04033825173974037, 0.010472769849002361, 0.02720979042351246, 0.04711423069238663, 0.004001180175691843, -0.0003675284970086068, -0.03807958960533142, -0.01833396404981613, -0.00764503376558423, -0.01382546778768301, -0.04898468032479286, -0.004786417353898287, -0.02424529939889908, 0.005240796133875847, 0.001722669112496078, 0.007102426141500473, 0.01595178432762623, 0.015960607677698135, -0.0141783831641078, -0.010022802278399467, -0.03222119063138962, 0.014257789589464664, -0.009687532670795918, 0.04333803430199623, 0.06274838745594025, 0.03188592195510864, 0.014548944309353828, -0.04990226402878761, 0.03839721530675888, 0.02350417710840702, 0.027597997337579727, 0.03416222706437111, -0.0401265025138855, -0.03093305043876171, 0.02720979042351246, 0.014275435358285904, 0.058195777237415314, -0.0044952621683478355, 0.07481810450553894, 0.010931559838354588, 0.017654601484537125, -0.09556953608989716, 0.03271527215838432, -0.010640404187142849, -0.033632855862379074, 0.02108670584857464, -0.1139211505651474, 0.04838472604751587, 0.006877442356199026, -0.002113081980496645, 0.036914970725774765, -0.022286618128418922, 0.08519382029771805, -0.06412476301193237, -0.00605250196531415, -0.046161357313394547, -0.0019355213735252619, -0.005108452867716551, 0.012652023695409298, -0.05456074699759483, 0.03546801581978798, 0.0011183011811226606, 0.009511074982583523, 0.030315447598695755, -0.005368728190660477, 0.0318329855799675, 0.01706346869468689, 0.013137281872332096, -0.031233027577400208, 0.009016992524266243, 0.018475130200386047, 0.021421974524855614, 0.01141681894659996, 0.015890024602413177, 0.061760224401950836, 0.04774947836995125, -0.020910248160362244, 0.028339121490716934, 0.045561399310827255, -0.033915188163518906, -0.07954717427492142, -0.01581944152712822, -0.029715491458773613, -0.019975021481513977, -0.029556678608059883, 0.01438130997121334, -0.00016267201863229275, 0.018933920189738274, -0.002598340855911374, -0.011346235871315002, 0.005333436653017998, 0.028409704566001892, 0.01109919510781765, -0.07566510140895844, -0.03435632959008217, 0.010411009192466736, 0.005329024977982044, -0.027227437123656273, -0.051878590136766434, 0.00753474747762084, -0.03290937840938568, 0.06186610087752342, -0.01473422534763813, 0.004084997810423374, -0.051808007061481476, 0.011046257801353931 ]
7,460
pathlib
rglob
Recursively yield all existing files (of any kind, including directories) matching the given relative pattern, anywhere in this subtree.
def rglob(self, pattern): """Recursively yield all existing files (of any kind, including directories) matching the given relative pattern, anywhere in this subtree. """ sys.audit("pathlib.Path.rglob", self, pattern) drv, root, pattern_parts = self._flavour.parse_parts((pattern,)) if drv or root: raise NotImplementedError("Non-relative patterns are unsupported") selector = _make_selector(("**",) + tuple(pattern_parts), self._flavour) for p in selector.select_from(self): yield p
(self, pattern)
[ 0.05032836273312569, -0.05130764842033386, -0.004094206728041172, -0.0026034172624349594, 0.008463838137686253, -0.003276677103713155, 0.04791511967778206, -0.0019389010267332196, 0.022733449935913086, -0.02582869678735733, 0.04186452180147171, 0.024744486436247826, -0.010623516514897346, 0.020215284079313278, -0.060680825263261795, 0.016735317185521126, 0.04189949855208397, 0.029483536258339882, -0.04441766440868378, 0.01956825517117977, -0.028923943638801575, 0.058897122740745544, 0.027210190892219543, 0.06365366280078888, -0.017032600939273834, -0.008953481912612915, -0.04221426695585251, -0.0016088287811726332, 0.028574198484420776, -0.01981307566165924, -0.03581392765045166, -0.032718680799007416, 0.0034318766556680202, -0.0242023803293705, -0.09303227066993713, -0.03805229812860489, -0.02009287290275097, 0.10065672546625137, -0.004404605831950903, 0.01986553706228733, 0.043158579617738724, 0.022785911336541176, -0.011331750079989433, -0.006855009589344263, 0.0405704639852047, -0.01577351614832878, 0.028993893414735794, -0.01011638529598713, -0.04322852939367294, -0.015065282583236694, 0.030445335432887077, 0.07680408656597137, -0.054944999516010284, -0.050922926515340805, 0.0080310283228755, 0.02159677818417549, -0.047005780041217804, 0.07610459625720978, 0.0840088427066803, 0.01991800032556057, -0.009163329377770424, -0.018484042957425117, -0.03973107412457466, 0.02813701704144478, -0.01974312774837017, -0.05207708850502968, -0.05749814212322235, -0.057113420218229294, -0.008778609335422516, 0.04578167200088501, -0.10548321157693863, 0.03413514792919159, 0.031249750405550003, -0.0011049768654629588, -0.037142958492040634, 0.014628101140260696, 0.027017831802368164, 0.010614772327244282, 0.04588659480214119, 0.01565985009074211, -0.028941430151462555, 0.021369442343711853, 0.02602105587720871, 0.011620290577411652, 0.03833209350705147, 0.004262521862983704, 0.008227759972214699, -0.022593552246689796, 0.05718336999416351, 0.014094739221036434, 0.003869058331474662, 0.01621069945394993, 0.009591767564415932, 0.034904588013887405, -0.011725214309990406, -0.007668167818337679, 0.002476634457707405, 0.04536197707056999, 0.020425129681825638, 0.004463625606149435, -0.03009559027850628, 0.008424491621553898, -0.0007044090889394283, -0.010431156493723392, 0.023397967219352722, 0.010221309028565884, -0.004312797915190458, -0.002522538648918271, 0.046970807015895844, 0.01628939062356949, -0.03945127874612808, 0.05246180668473244, 0.04651613533496857, -0.006701996084302664, -0.05400068685412407, 0.009722921997308731, -0.02771732211112976, 0.002262415364384651, 0.008057259023189545, -0.04592156782746315, 0.018519017845392227, 0.01958574168384075, -0.021299494430422783, 0.05347606912255287, 0.056833624839782715, -0.027297627180814743, 0.021631751209497452, -0.01508277002722025, -0.03355807065963745, 0.013517659157514572, 0.004686587955802679, 0.04221426695585251, -0.020425129681825638, -0.005722709000110626, -0.025426490232348442, 0.031004928052425385, 0.022908322513103485, -0.0790424570441246, 0.007860527373850346, 0.00981035828590393, 0.04417284205555916, -0.0027039689011871815, 0.009915282018482685, 0.016438033431768417, -0.010203821584582329, -0.01806434988975525, 0.018728865310549736, 0.01500407699495554, 0.0064834048971533775, 0.017565961927175522, -0.023048220202326775, 0.002026337431743741, 0.06026113033294678, 0.08764619380235672, 0.016945164650678635, 0.002701783087104559, -0.010675977915525436, 0.07169780135154724, -0.02754244953393936, -0.01974312774837017, 0.039101533591747284, 0.01590467058122158, -0.0072484733536839485, 0.03331324830651283, -0.0010361206950619817, 0.03756265342235565, -0.02971087023615837, -0.016542956233024597, -0.04371817409992218, 0.008516300469636917, 0.0066014439798891544, -0.021089646965265274, -0.021544314920902252, -0.03602377325296402, 0.002171700354665518, 0.03966112807393074, 0.0018022817093878984, 0.07218744605779648, 0.03581392765045166, 0.054385408759117126, 0.032631244510412216, -0.03927640616893768, 0.022873347625136375, -0.00799605343490839, 0.006535866763442755, 0.03180934116244316, 0.025443976745009422, -0.024569613859057426, 0.036653317511081696, -0.00911086704581976, -0.07281699031591415, 0.014383278787136078, 0.005766427144408226, -0.015021564438939095, 0.009268253110349178, 0.017539730295538902, -0.05358099192380905, 0.006269186269491911, -0.037038035690784454, 0.078342966735363, -0.06403838098049164, -0.032928526401519775, -0.004651613533496857, 0.006111800670623779, 0.008424491621553898, -0.0023564095608890057, -0.003058086149394512, 0.027280140668153763, 0.007112946826964617, -0.02808455377817154, -0.05994635820388794, 0.020460104569792747, 0.03780747577548027, -0.05340611934661865, 0.014208406209945679, -0.017207473516464233, -0.07806316763162613, 0.00042734513408504426, -0.04238913953304291, 0.0315994955599308, -0.010929543524980545, -0.022960783913731575, -0.04634126275777817, -0.044697459787130356, 0.012433448806405067, -0.007672539446502924, 0.014488202519714832, 0.018414095044136047, -0.026248391717672348, -0.04997861385345459, -0.0018940898589789867, -0.01764465495944023, 0.08058133721351624, -0.03787742555141449, -0.009792870841920376, -0.03373294323682785, 0.030812568962574005, -0.005456028040498495, 0.04815993830561638, 0.030200514942407608, -0.03994092345237732, 0.02591613307595253, -0.0006552261183969676, -0.010702208615839481, -0.040535490959882736, -0.01298429723829031, 0.03014805167913437, 0.03913651034235954, 0.03581392765045166, 0.010300002060830593, -0.0645979717373848, 0.02595110796391964, -0.036968085914850235, -0.003565217135474086, 0.07019390165805817, -0.05858235061168671, -0.007073600310832262, 0.04140985384583473, 0.00348652433604002, 0.05613413453102112, 0.035114437341690063, 0.040535490959882736, -0.02196400985121727, 0.030480310320854187, 0.00043964089127257466, -0.03355807065963745, -0.01974312774837017, -0.058932095766067505, -0.020407643169164658, 0.01604457013309002, 0.017364857718348503, -0.006540238857269287, -0.007580731064081192, 0.05344109609723091, 0.0035346143413335085, 0.025269104167819023, -0.04120000824332237, 0.037003062665462494, -0.01790696382522583, -0.029046354815363884, -0.04557182267308235, 0.0323864221572876, 0.0322115495800972, 0.002404499566182494, -0.007703142240643501, 0.012354755774140358, -0.03626859560608864, 0.08736639469861984, -0.04403294250369072, 0.01815178617835045, 0.05525977164506912, -0.020739901810884476, -0.015546182170510292, -0.005154372658580542, 0.01205747202038765, 0.013972328044474125, 0.06571716070175171, -0.006295416969805956, -0.0056877341121435165, 0.003689813893288374, -0.036478444933891296, 0.00994151271879673, 0.03528930991888046, 0.04165467619895935, -0.0477052703499794, -0.025583874434232712, -0.010973261669278145, -0.022628527134656906, -0.04158472642302513, 0.0322115495800972, 0.002754244953393936, -0.03735280781984329, 0.030620208010077477, -0.0049795000813901424, -0.012319780886173248, -0.05774296447634697, 0.05823260545730591, 0.02595110796391964, -0.035254333168268204, -0.020879799500107765, -0.06180001050233841, 0.02383514866232872, -0.014479459263384342, -0.02208642102777958, -0.044487614184617996, 0.01773209124803543, -0.030777594074606895, 0.037212908267974854, 0.015170206315815449, -0.00688561238348484, 0.006199236959218979, -0.01574728637933731, -0.006474661640822887, 0.05805773288011551, 0.003473408753052354, 0.04746044799685478, 0.04623633995652199, -0.020442618057131767, 0.013447710312902927, 0.006894356105476618, 0.048824455589056015, 0.03464227914810181, -0.024814434349536896, 0.004371817223727703, -0.008468209765851498, 0.007147921249270439, 0.044872332364320755, 0.006330391392111778, 0.03955620154738426, -0.007947963662445545, 0.07309678196907043, -0.018938712775707245, -0.020617490634322166, 0.01806434988975525, 0.03345314785838127, 0.03574397787451744, -0.010509848594665527, 0.05819763243198395, -0.046935830265283585, 0.06582207977771759, 0.06498268991708755, 0.056798651814460754, -0.0021629566326737404, -0.05431545898318291, -0.025129206478595734, 0.002070055576041341, -0.018956199288368225, 0.05396571382880211, -0.014531920664012432, -0.038751788437366486, -0.005718336906284094, 0.03633854538202286, 0.009687947109341621, -0.04808999225497246, 0.03509695082902908, -0.07288693636655807, -0.03444992005825043, -0.052566733211278915, 0.009757895953953266, 0.08554772287607193, 0.0052724117413163185, 0.015152718871831894, 0.04371817409992218, -0.04189949855208397, -0.0027105268090963364, -0.03563905507326126, 0.05407063663005829, -0.0032395166344940662, -0.03152954578399658, -0.02951851114630699, 0.005198090802878141, -0.030532771721482277, 0.03640849515795708, -0.0005038519739173353, -0.05379084125161171, -0.09548048675060272, 0.10009712725877762, -0.005303014535456896, -0.046691007912158966, -0.03147708624601364, 0.03784245252609253, 0.0038734301924705505, -0.07309678196907043, -0.00804414413869381, 0.025548899546265602, -0.028346862643957138, 0.05812768265604973, 0.03233396261930466, -0.006041851360350847, -0.07169780135154724, -0.04371817409992218, -0.06557726114988327, 0.0065795849077403545, 0.02810204215347767, 0.02586367167532444, -0.030882516875863075, -0.00642219977453351, -0.006701996084302664, 0.012415961362421513, 0.019305944442749023, -0.004485484678298235, -0.09715926647186279, -0.003899661125615239, 0.029466047883033752, 0.054630231112241745, 0.028241939842700958, 0.004404605831950903, -0.0016831497196108103, -0.012958066537976265, 0.08240001648664474, -0.072257399559021, 0.0029859512578696012, -0.030305437743663788, -0.008302081376314163, 0.05620408430695534, -0.052636679261922836, -0.028958918526768684, -0.046830907464027405, -0.028294401243329048, 0.0012896860716864467, 0.010885825380682945, 0.02196400985121727, 0.03850696608424187, -0.00806600321084261, 0.0108595946803689, -0.022960783913731575, 0.03011307865381241, 0.020320206880569458, -0.003250446170568466, -0.03640849515795708, 0.008105349726974964, -0.018571479246020317, 0.05802275985479355, -0.031127339228987694, -0.03973107412457466, -0.024744486436247826, 0.024639561772346497, 0.013097965158522129, -0.0361286997795105, -0.09450120478868484, 0.037107985466718674, 0.0028985149692744017, 0.10044687241315842, -0.03198421373963356, 0.03791239857673645, -0.07428591698408127, 0.0592818446457386, -0.03574397787451744, -0.02609100565314293, -0.06131036579608917, 0.015126488171517849, -0.03394278883934021, -0.07610459625720978, -0.03338319808244705, 0.010151360183954239, -0.0322115495800972, -0.042703911662101746, -0.005963158793747425, -0.023397967219352722, -0.06617182493209839, -0.016586674377322197, -0.036758240312337875, 0.027437524870038033, -0.02621341682970524, -0.04574669525027275, -0.072257399559021, 0.02801460586488247, -0.01977810077369213, -0.04966384544968605, -0.09806860983371735, 0.028714096173644066, 0.051062826067209244, -0.03749270364642143, -0.01183888129889965, -0.009548049420118332, 0.013369017280638218, -0.019428355619311333, 0.04980374127626419, 0.008669313974678516, -0.05382581427693367, -0.020215284079313278, -0.03980102390050888, -0.01621944271028042, 0.03749270364642143, -0.03735280781984329, 0.03609372302889824, 0.04815993830561638, -0.005862607154995203, -0.019113585352897644, 0.017417320981621742, 0.026405775919556618, 0.014392022974789143, -0.03980102390050888, 0.02960594743490219, 0.03794737532734871, -0.03602377325296402, 0.06026113033294678, -0.004450510255992413, -0.007029882166534662, 0.020495079457759857, -0.03591885045170784, -0.019445843994617462, -0.01956825517117977, -0.00031586381373926997, 0.03189677745103836, -0.024359766393899918, 0.00274112937040627, -0.007388371508568525, -0.006242955103516579, 0.011987523175776005, 0.023170631378889084, -0.008538159541785717, 0.020774876698851585, 0.014636844396591187, 0.0393463559448719, -0.032946016639471054, 0.06998404860496521, 0.010745926760137081, -0.05417555943131447, 0.020302720367908478, -0.012520885095000267, 0.05774296447634697, 0.0033597415313124657, -0.01799440011382103, -0.005324873607605696, 0.008131580427289009, 0.017513500526547432, -0.060995593667030334, 0.0961100310087204, 0.010090154595673084, 0.07183770090341568, -0.052636679261922836, -0.05011851340532303, 0.09925773739814758, 0.00013183761620894074, -0.0315120592713356, -0.02995569258928299, -0.010046436451375484, -0.027437524870038033, -0.02025025710463524, -0.008564390242099762, 0.056973524391651154, -0.04392801970243454, -0.0015672965673729777, 0.0591069720685482, 0.021351955831050873, -0.014287099242210388, 0.060855697840452194, 0.012162395752966404, 0.008428864181041718, 0.03006061539053917, 0.012861886993050575, 0.020687440410256386, -0.029116302728652954, 0.01183888129889965, -0.013753737322986126, -0.02390509657561779, -0.04588659480214119, 0.012249832041561604, -0.04161969944834709, 0.011567828245460987, -0.060715798288583755, 0.045012231916189194, -0.015415027737617493, -0.02570628561079502, 0.020617490634322166, 0.029221227392554283, 0.07050866633653641, -0.051167748868465424, 0.028714096173644066, 0.04955892264842987, -0.05333616957068443, 0.014680562540888786, -0.003307279897853732, -0.024412227794528008, -0.014330817386507988, 0.006138031370937824, -0.03254380822181702, 0.015257642604410648, 0.0005186068592593074, 0.020617490634322166, 0.06578710675239563, -0.017496012151241302, 0.02226129360496998, -0.04903430491685867, -0.030392874032258987, 0.05830255523324013, -0.02589864656329155, 0.003222029423341155, 0.08414874225854874, -0.013779968023300171, 0.03924143314361572, 0.05442038178443909, 0.004734678193926811, -0.036933112889528275, 0.05732326954603195, -0.0591069720685482, 0.0017443550750613213, -0.018623942509293556, -0.016385572031140327, -0.07008897513151169, -0.012372243218123913, 0.018361633643507957, 0.023153144866228104, -0.044592536985874176, 0.01205747202038765, -0.02390509657561779, -0.034852128475904465, -0.038716815412044525, 0.06375858187675476, -0.016691599041223526, 0.005141257308423519, -0.02589864656329155, 0.005858235061168671, 0.02177165076136589, -0.052531756460666656, -0.040990158915519714, -0.05354601889848709, -0.056693725287914276, -0.02780475839972496, -0.05165739357471466, -0.07358642667531967, -0.012555859051644802, -0.03336571156978607, -0.01196129247546196, -0.025129206478595734, 0.002030709059908986, 0.025304079055786133, -0.011751445010304451, -0.05431545898318291, 0.042668938636779785, 0.018886251375079155, -0.018886251375079155, 0.012818168848752975, -0.02820696495473385, 0.10142616182565689, -0.04767029732465744, -0.028504248708486557, 0.06256944686174393, 0.039031583815813065, 0.01776706613600254, -0.011559084989130497, -0.04196944460272789, -0.011288031935691833, -0.0437881238758564, 0.02205144613981247, -0.014392022974789143, -0.023100683465600014, -0.004795883782207966, 0.017015112563967705, -0.016420545056462288, 0.06309406459331512, -0.038681838661432266, -0.0356040820479393, -0.006129288114607334, -0.01587844081223011, -0.031039902940392494, 0.010168846696615219, -0.004358701873570681, -0.005005730781704187, -0.010247539728879929, 0.06575213372707367, 0.026563161984086037, 0.06012123078107834, 0.04238913953304291, 0.04997861385345459, -0.05525977164506912, 0.014593126252293587, 0.07047369331121445, -0.023188119754195213, -0.01099949236959219, 0.01963820308446884, 0.0023345504887402058, -0.005604669917374849, -0.037038035690784454, 0.08904517441987991, 0.036583367735147476, -0.003154266159981489, 0.034659769386053085, -0.03009559027850628, 0.0400458462536335, 0.04399796947836876, -0.020617490634322166, -0.02007538452744484, 0.03424007445573807, 0.007077972404658794, -0.011270545423030853, 0.023485403507947922, -0.03208914026618004, 0.04242411628365517, -0.06882989406585693, 0.03808727115392685, -0.018484042957425117, -0.04420781508088112, 0.008345799520611763, -0.04564177244901657, 0.02965840883553028, -0.030620208010077477, 0.034712228924036026, -0.02983328141272068, 0.004778396338224411, -0.054630231112241745, -0.0018514646217226982, -0.007239729631692171, -0.026405775919556618, 0.07071851938962936, 0.0014416067861020565, -0.017321139574050903, 0.02383514866232872, 0.027559936046600342, -0.023118169978260994, -0.005644015967845917, 0.009801614098250866, 0.0011268359376117587, 0.034607306122779846, -0.016411801800131798, -0.021177083253860474, 0.014549408107995987, -0.038856711238622665, -0.021439392119646072, -0.03191426768898964, 0.015415027737617493, -0.048754505813121796, 0.00039237059536390007, 0.015843465924263, -0.006435315124690533, 0.0439629964530468, 0.028644146397709846, -0.036933112889528275, 0.000005345229965314502, -0.005604669917374849, -0.06966928392648697, 0.03637351840734482, 0.031249750405550003, -0.054840076714754105, 0.03446740657091141, 0.005845119711011648, 0.012494653463363647, -0.002268973272293806, 0.0241149440407753, -0.0318618044257164, -0.011532854288816452, 0.005757683422416449, 0.016306878998875618, 0.022348729893565178, 0.04235416650772095, -0.006736970506608486, -0.0009732758044265211 ]
7,461
pathlib
rmdir
Remove this directory. The directory must be empty.
def rmdir(self): """ Remove this directory. The directory must be empty. """ self._accessor.rmdir(self)
(self)
[ -0.012258918955922127, 0.07143723964691162, 0.017042048275470734, -0.04783128947019577, 0.042394351214170456, -0.02205745130777359, -0.04944860562682152, 0.07467187196016312, -0.000300558574963361, 0.045147232711315155, -0.00017313034913968295, 0.005458444822579622, 0.07714946568012238, 0.04655808210372925, -0.025894276797771454, -0.017136678099632263, 0.018134597688913345, 0.02499959245324135, -0.007699461188167334, -0.041121143847703934, 0.01040932722389698, 0.03490995988249779, 0.05185737833380699, -0.0045078410767018795, -0.043736379593610764, 0.04277287423610687, 0.03195061534643173, -0.007123077288269997, -0.0005844493280164897, -0.013540728949010372, -0.010830862447619438, 0.03778328001499176, -0.01002220343798399, -0.0017097966047003865, 0.006882200017571449, 0.015880675986409187, -0.011889000423252583, -0.0005774595774710178, -0.08107231557369232, 0.003352921921759844, -0.011312616057693958, 0.016749555245041847, 0.03609713912010193, -0.013342865742743015, 0.06080423668026924, 0.012499796226620674, 0.045147232711315155, 0.0004903567605651915, -0.008525324985384941, -0.009437216445803642, 0.008086585439741611, 0.06565618515014648, -0.012465384788811207, -0.022504793480038643, -0.010830862447619438, 0.017265720292925835, 0.015579580329358578, -0.01889164000749588, 0.032260313630104065, 0.010985711589455605, 0.0591525100171566, 0.02444901503622532, -0.021197175607085228, -0.02321022003889084, 0.003744347020983696, -0.053405873477458954, -0.0357530303299427, 0.04869156703352928, 0.037611223757267, 0.021162765100598335, -0.14590264856815338, -0.015054812654852867, 0.008981270715594292, 0.028354663401842117, 0.02068101055920124, 0.013317056931555271, 0.013351468369364738, 0.013385878875851631, 0.04132761061191559, -0.09662608802318573, 0.0018657214241102338, -0.03310338407754898, -0.006366034969687462, 0.03062579035758972, 0.00390994967892766, 0.04545693099498749, 0.04975830763578415, -0.01132982224225998, -0.01510642934590578, -0.00656819948926568, -0.009136120788753033, 0.003626059042289853, -0.022177889943122864, -0.04903567582368851, 0.013119193725287914, 0.006933816708624363, -0.02136923186480999, -0.0150204012170434, -0.036613304167985916, -0.05956543982028961, 0.009781327098608017, 0.024431809782981873, 0.02682337537407875, 0.010813657194375992, 0.014168729074299335, -0.0023055369965732098, -0.004813238512724638, -0.0724695697426796, -0.01609574630856514, 0.059909552335739136, -0.06954462826251984, 0.0037292921915650368, 0.00958346389234066, 0.030711818486452103, -0.015605388209223747, -0.004060497973114252, -0.041430845856666565, -0.05543612316250801, 0.022504793480038643, -0.04208465293049812, 0.006637021899223328, -0.008748997002840042, -0.049723897129297256, -0.05939338728785515, 0.10020483285188675, 0.030574174597859383, 0.0022883315104991198, 0.034238945692777634, -0.013403085060417652, 0.002516304375603795, -0.03021285869181156, 0.029920365661382675, 0.0043637449853122234, -0.027477184310555458, 0.05571141093969345, -0.003473360324278474, 0.06152686849236488, -0.061836566776037216, 0.00981573760509491, 0.06613793969154358, 0.017962541431188583, -0.008938257582485676, 0.03860914334654808, 0.021111149340867996, 0.03933177515864372, 0.03626919537782669, -0.017635637894272804, 0.04573221877217293, -0.013721385970711708, 0.004765923600643873, -0.06042571738362312, -0.012465384788811207, 0.09277205914258957, -0.033000148832798004, -0.015355909243226051, 0.04187818616628647, -0.056055519729852676, -0.008684475906193256, 0.0008134975796565413, -0.05075622722506523, 0.00302601745352149, -0.007850009016692638, 0.01637963578104973, -0.012560015544295311, -0.03453144058585167, -0.020801449194550514, 0.03220869600772858, 0.012043850496411324, -0.07288249582052231, 0.025601783767342567, 0.037852101027965546, 0.013317056931555271, 0.02049175091087818, 0.003684127703309059, -0.057122260332107544, 0.017368951812386513, 0.004976690746843815, 0.035064809024333954, -0.028044965118169785, -0.003649716731160879, 0.02687499113380909, 0.004559457767754793, 0.014323579147458076, -0.012852508574724197, 0.047900114208459854, 0.04043292626738548, -0.041293200105428696, 0.01449563354253769, 0.01710226759314537, 0.020096024498343468, -0.060838647186756134, -0.013437495566904545, 0.005983212497085333, 0.019252954050898552, 0.001653878716751933, 0.0005855246563442051, 0.016999034211039543, -0.03284529969096184, 0.030608585104346275, -0.01646566390991211, -0.0440116710960865, 0.03477231413125992, 0.0545758455991745, -0.005075622349977493, 0.006770364474505186, -0.01031469739973545, -0.037163879722356796, 0.00862425658851862, -0.047211892902851105, 0.026117948815226555, 0.0353056862950325, -0.026530880481004715, 0.038540318608284, 0.0005344458622857928, 0.036338016390800476, -0.09139561653137207, 0.0006694014882668853, 0.0011947068851441145, -0.01003940962255001, 0.021197175607085228, -0.06242155283689499, 0.035890672355890274, 0.023605946451425552, -0.01985514722764492, -0.040295280516147614, -0.04328903928399086, -0.038265030831098557, -0.006830583326518536, -0.014177331700921059, -0.053130585700273514, 0.04593868553638458, -0.013910646550357342, 0.042807284742593765, -0.036165960133075714, -0.011071739718317986, -0.052614420652389526, -0.025120031088590622, 0.0007941413787193596, -0.016035526990890503, -0.010676012374460697, -0.049827128648757935, -0.07295132428407669, 0.043495506048202515, 0.066929392516613, 0.034411001950502396, 0.06228391081094742, 0.03657889366149902, 0.01696462370455265, 0.05209825560450554, -0.05347469449043274, -0.04752159118652344, -0.02993757091462612, -0.04559457674622536, 0.016895800828933716, 0.05130680277943611, -0.055057600140571594, -0.032071053981781006, 0.0550231896340847, -0.02530929073691368, 0.039228539913892746, -0.004069100599735975, -0.08045291900634766, 0.021937012672424316, 0.014839744195342064, 0.001877550152130425, 0.013437495566904545, 0.04304816201329231, 0.06104511395096779, 0.052992939949035645, 0.03183017671108246, 0.08120995759963989, -0.010392121970653534, 0.02838907577097416, -0.048725977540016174, 0.00737255671992898, 0.07212545722723007, -0.046386029571294785, -0.05763842537999153, 0.002944291103631258, 0.017119472846388817, 0.03109033964574337, -0.05103151500225067, -0.027047045528888702, 0.043495506048202515, -0.018994871526956558, 0.03946941718459129, 0.004337936639785767, -0.03774886578321457, 0.004503539763391018, 0.08313697576522827, 0.03902207314968109, -0.015794649720191956, -0.04256640747189522, 0.033223818987607956, 0.04411490261554718, -0.026152359321713448, -0.094492606818676, -0.01444401778280735, 0.0321054644882679, 0.0022797288838773966, -0.039090897887945175, 0.024517837911844254, -0.06035689264535904, 0.03380880877375603, -0.0020861669909209013, -0.03167532756924629, 0.03434217721223831, 0.05970308557152748, 0.030023597180843353, 0.03160650283098221, -0.008929654955863953, 0.027477184310555458, -0.04865715280175209, 0.023950057104229927, 0.07714946568012238, 0.0020205709151923656, -0.0026345921214669943, -0.005914390552788973, -0.036062728613615036, 0.025240467861294746, -0.050928279757499695, 0.022315533831715584, -0.004675594624131918, 0.0320882573723793, -0.041430845856666565, -0.01631941646337509, -0.002696962095797062, 0.08265522122383118, -0.06472709029912949, 0.0389876626431942, -0.02737395092844963, -0.00618107570335269, 0.052992939949035645, -0.0005941273993812501, -0.0038346757646650076, -0.014237551018595695, 0.054507024586200714, -0.04149966686964035, 0.028922446072101593, 0.04590427502989769, 0.019476626068353653, -0.002066810615360737, -0.011699739843606949, -0.007841406390070915, -0.017773281782865524, 0.026857785880565643, 0.060976292937994, -0.00024423745344392955, 0.06885641068220139, -0.00926516205072403, 0.06933816522359848, 0.10983991622924805, -0.005174553953111172, -0.0005952027859166265, 0.030470941215753555, -0.014874154701828957, -0.04304816201329231, 0.05323381721973419, 0.005088526755571365, -0.058498699218034744, 0.03754240274429321, 0.02494797483086586, -0.028457896783947945, -0.013222427107393742, -0.028027759864926338, -0.07480951398611069, -0.109151691198349, -0.00307763391174376, 0.018908845260739326, -0.016207581385970116, 0.05388762801885605, -0.07288249582052231, 0.019476626068353653, 0.011037328280508518, 0.055057600140571594, 0.04604191705584526, 0.04607632756233215, -0.02348550781607628, 0.004387402441352606, 0.003598100272938609, -0.02806217037141323, 0.020096024498343468, 0.04504400119185448, -0.02054336667060852, -0.03146886080503464, 0.015940895304083824, 0.014693496748805046, -0.002815250074490905, -0.024707097560167313, 0.035787440836429596, 0.005596088711172342, -0.003062579082325101, -0.022212300449609756, -0.016069937497377396, -0.06875317543745041, -0.022762876003980637, 0.03692300245165825, -0.013024563901126385, -0.016026923432946205, -0.022023040801286697, 0.06992315500974655, 0.0019388447981327772, -0.022952137514948845, 0.049276553094387054, 0.0019173378823325038, -0.007600529585033655, 0.003419593209400773, -0.01458166167140007, -0.007600529585033655, -0.051616501063108444, 0.025567373260855675, 0.04063939303159714, 0.026014715433120728, 0.046386029571294785, 0.04215347394347191, 0.012069658376276493, 0.006254199426621199, -0.03387762978672981, 0.08403166383504868, 0.059083689004182816, -0.0068908026441931725, 0.01820341870188713, -0.015011798590421677, 0.052580010145902634, -0.005441239569336176, 0.001458166167140007, 0.010899684391915798, -0.036888591945171356, -0.018719583749771118, 0.018513118848204613, -0.011613712646067142, -0.021197175607085228, -0.05953102931380272, -0.001997988671064377, -0.05598669871687889, 0.029524637386202812, -0.0394350066781044, -0.005075622349977493, -0.05013682693243027, 0.05003359541296959, -0.04752159118652344, -0.05237354338169098, 0.02412211149930954, -0.018358267843723297, -0.002421674085780978, -0.0035529357846826315, 0.006860692985355854, 0.000513476668857038, 0.006249898113310337, 0.0206293947994709, -0.004350841045379639, -0.003524976782500744, 0.009987792931497097, -0.004337936639785767, -0.07536008954048157, -0.04525046423077583, -0.05626198649406433, 0.018306652083992958, -0.016620513051748276, -0.01153628807514906, 0.01710226759314537, 0.089881531894207, 0.03654448315501213, -0.04931096360087395, -0.011734151281416416, 0.03466908261179924, 0.08114113658666611, 0.0015517210122197866, -0.007381159346550703, -0.010581382550299168, 0.006804775446653366, -0.06438298523426056, -0.010607190430164337, 0.04242876172065735, -0.034411001950502396, 0.030419323593378067, -0.03229472413659096, 0.0029787023086100817, -0.023950057104229927, -0.036854181438684464, -0.021541286259889603, -0.028905240818858147, 0.03456585109233856, 0.012671850621700287, 0.008112393319606781, -0.013876236043870449, -0.018994871526956558, -0.0063703362829983234, 0.042944926768541336, -0.04851951077580452, -0.003744347020983696, -0.01428916770964861, -0.021386437118053436, -0.045009586960077286, 0.04535369947552681, -0.03365395963191986, -0.05750077962875366, 0.006125158164650202, -0.016388239338994026, -0.016981828957796097, 0.030642995610833168, -0.019338982179760933, -0.066929392516613, -0.015278483740985394, 0.011476068757474422, 0.03564979508519173, -0.006004719529300928, 0.0013538578059524298, -0.05984073132276535, -0.039090897887945175, -0.013514920137822628, 0.028371870517730713, -0.009032887406647205, 0.007368255406618118, 0.05426614731550217, 0.0295762550085783, -0.04452783614397049, 0.03695741295814514, 0.005325102247297764, 0.001032329979352653, -0.047349534928798676, -0.03387762978672981, -0.0026517976075410843, 0.016259197145700455, -0.0531994067132473, 0.018444295972585678, -0.047624822705984116, 0.020474545657634735, 0.0545758455991745, 0.040570568293333054, 0.015940895304083824, 0.026169566437602043, -0.024775920435786247, -0.003200222970917821, 0.00011028994777007028, 0.02351991832256317, -0.07419011741876602, -0.046386029571294785, 0.04882920905947685, 0.018581939861178398, 0.008129598572850227, -0.01208686362951994, 0.03181296959519386, 0.024638276547193527, -0.043495506048202515, -0.0009097408037632704, -0.0022990850266069174, -0.023399479687213898, 0.01728292554616928, 0.04549134150147438, -0.03274206817150116, -0.003929306287318468, 0.014065496623516083, 0.04063939303159714, 0.0320882573723793, -0.001492577139288187, -0.0008221003226935863, -0.042669638991355896, 0.03456585109233856, 0.005312198307365179, -0.05753519386053085, -0.009669491089880466, 0.060012783855199814, 0.023864028975367546, 0.10763760656118393, 0.013179413042962551, 0.010882479138672352, -0.021799368783831596, 0.03726711496710777, -0.015837663784623146, -0.03809297829866409, 0.012181494385004044, -0.003327113576233387, -0.018788406625390053, -0.0398823507130146, 0.059049274772405624, 0.013308454304933548, -0.011914809234440327, -0.04463106766343117, -0.028492309153079987, -0.034737903624773026, -0.04366755858063698, 0.021885396912693977, -0.04105232283473015, -0.048588331788778305, -0.055952288210392, 0.010263080708682537, 0.03401527553796768, -0.11486391723155975, 0.01456445548683405, -0.00769085856154561, -0.002703414298593998, 0.02966228313744068, -0.08031527698040009, 0.02899126708507538, -0.038265030831098557, 0.005703623406589031, -0.07625477761030197, -0.00940280593931675, 0.03463467210531235, 0.0316581204533577, -0.037439167499542236, 0.03960706293582916, 0.047211892902851105, -0.014306372962892056, 0.03490995988249779, -0.030746228992938995, -0.02737395092844963, -0.06675734370946884, -0.019648680463433266, -0.04318580403923988, -0.005634801462292671, 0.00590578792616725, 0.02971389889717102, 0.03764563426375389, -0.017265720292925835, -0.006331623997539282, -0.05185737833380699, -0.008099488914012909, 0.00082102493615821, -0.043082572519779205, -0.08788569271564484, -0.04714307188987732, 0.008533927612006664, -0.03282809257507324, 0.0046110739931464195, 0.0011613712413236499, 0.04975830763578415, -0.009187737479805946, 0.01254280935972929, -0.004718608222901821, -0.061148349195718765, 0.009032887406647205, -0.000013231769116828218, -0.013790207915008068, -0.029042884707450867, -0.053405873477458954, -0.04370196908712387, 0.03453144058585167, -0.024500632658600807, 0.0495174303650856, -0.02128320373594761, -0.037439167499542236, -0.00036265968810766935, -0.05932456627488136, -0.04621397331357002, -0.008809216320514679, -0.020302489399909973, -0.00496378680691123, -0.018444295972585678, -0.052717652171850204, 0.013592344708740711, 0.016259197145700455, -0.013575139455497265, 0.027976144105196, -0.01442681159824133, 0.031107544898986816, -0.016250595450401306, -0.05884281173348427, 0.01834106259047985, -0.015553772449493408, -0.02417372725903988, 0.0014646182535216212, 0.02164451964199543, 0.027494389563798904, 0.004641183651983738, 0.015398922376334667, 0.04566339775919914, -0.023812411352992058, -0.03480672836303711, 0.021885396912693977, 0.01806577481329441, -0.02117997035384178, -0.03375719115138054, -0.021438052877783775, -0.002355002798140049, 0.029679488390684128, -0.03494437038898468, -0.010142642073333263, 0.029954776167869568, -0.07191899418830872, 0.041155558079481125, -0.020646600052714348, 0.010357711464166641, 0.005621897056698799, 0.016112951561808586, 0.03477231413125992, 0.02228112332522869, -0.034376587718725204, -0.060563359409570694, -0.05516083166003227, -0.004232552833855152, 0.004710005596280098, 0.001150617841631174, -0.04848510026931763, -0.00046884987386874855, 0.04690219461917877, -0.021352024748921394, 0.042635228484869, -0.033912040293216705, 0.05416291579604149, 0.015398922376334667, -0.008443599566817284, -0.026307210326194763, 0.023967262357473373, -0.004580964334309101, 0.029541844502091408, 0.013454700820147991, 0.00866727065294981, 0.027528800070285797, 0.07212545722723007, 0.07687417417764664, 0.017670048400759697, -0.04370196908712387, 0.05557376518845558, -0.02737395092844963, -0.009781327098608017, -0.02668573148548603, 0.009660888463258743, -0.03356793150305748, 0.013420290313661098, -0.044596657156944275, 0.030780639499425888, -0.011458863504230976, 0.012499796226620674, -0.03177855908870697, 0.00014759093755856156, 0.021214380860328674, -0.01784210279583931, 0.027546005323529243, -0.05333704873919487, -0.006877898704260588, 0.007032748311758041, 0.06355711817741394, 0.035890672355890274, -0.011321218684315681, 0.018840022385120392, 0.0417405441403389, 0.06386681646108627, 0.0073768580332398415, 0.006976830307394266, 0.013265440240502357, 0.041396431624889374, -0.06345388293266296, 0.06699822098016739, 0.021214380860328674, -0.0062800077721476555, 0.05185737833380699, 0.0007081138901412487, -0.026496469974517822, 0.05264883115887642, -0.05254559591412544, -0.02155849151313305, 0.04394284635782242, 0.004122868180274963, -0.04504400119185448, -0.008262941613793373, -0.014452620409429073, 0.00013670307816937566, 0.013454700820147991, 0.012250316329300404, -0.06214626505970955, 0.004580964334309101, -0.03919412940740585, 0.040467336773872375, 0.057948123663663864, 0.009050092659890652, -0.024500632658600807 ]
7,462
pathlib
samefile
Return whether other_path is the same or not as this file (as returned by os.path.samefile()).
def samefile(self, other_path): """Return whether other_path is the same or not as this file (as returned by os.path.samefile()). """ st = self.stat() try: other_st = other_path.stat() except AttributeError: other_st = self._accessor.stat(other_path) return os.path.samestat(st, other_st)
(self, other_path)
[ 0.07458117604255676, -0.04324307292699814, 0.009716561064124107, 0.09664039313793182, 0.0033811007160693407, -0.04166741669178009, -0.00013862238847650588, 0.030970444902777672, 0.02379244565963745, 0.01565154269337654, 0.0273114163428545, -0.05598840117454529, 0.04485374689102173, 0.03151317313313484, -0.05472787469625473, 0.00006059173392714001, 0.027468981221318245, 0.020273473113775253, -0.030235137790441513, 0.02247939631342888, 0.01119592972099781, 0.005348485428839922, 0.0066659110598266125, -0.009217603132128716, 0.007698842789977789, 0.061205580830574036, -0.006630896590650082, -0.006705302745103836, 0.055323123931884766, 0.006460200063884258, -0.04422348365187645, -0.07374082505702972, 0.046114273369312286, 0.01741102710366249, -0.00914757326245308, 0.04243773967027664, -0.04219263419508934, 0.029272235929965973, -0.04166741669178009, -0.06134564056992531, -0.006337649188935757, -0.022636961191892624, 0.032721176743507385, 0.007423102855682373, -0.018995439633727074, 0.016150500625371933, -0.07640193402767181, 0.0163868498057127, -0.020185938104987144, 0.019678225740790367, 0.05367743596434593, 0.00878867320716381, -0.03963656723499298, 0.060680363327264786, -0.012684051878750324, 0.010311810299754143, 0.02484288439154625, 0.07724228501319885, -0.05546318367123604, -0.013296808116137981, 0.02921971306204796, -0.05304717272520065, 0.029902499169111252, -0.0559183731675148, -0.021481478586792946, -0.028011707589030266, -0.03778079152107239, -0.04114219546318054, 0.00936641450971365, 0.035487331449985504, -0.06341150403022766, 0.07458117604255676, -0.02760903909802437, 0.025788279250264168, -0.002571387216448784, 0.039776626974344254, 0.005335355177521706, 0.03757070377469063, 0.046744536608457565, -0.03767574951052666, -0.0462893471121788, -0.05836939811706543, 0.02153400145471096, -0.029272235929965973, -0.041912518441677094, 0.016815777868032455, 0.07006428390741348, -0.02708381973206997, 0.030882908031344414, 0.024807868525385857, 0.016378095373511314, 0.026313498616218567, 0.009935403242707253, -0.04660448059439659, 0.05409761145710945, -0.0606103353202343, -0.025438131764531136, -0.020045878365635872, 0.008206555619835854, -0.029062148183584213, -0.025963352993130684, 0.03676536679267883, 0.02312716655433178, 0.0041207848116755486, 0.03426181897521019, 0.022041713818907738, 0.011931236833333969, -0.007978959940373898, -0.012990429997444153, -0.02977994829416275, -0.10889551788568497, -0.03417428582906723, -0.002231088699772954, 0.06064534932374954, 0.04194753244519234, -0.016150500625371933, 0.008022728376090527, -0.00275740260258317, -0.0005821182858198881, -0.0011992512736469507, 0.05374746397137642, 0.07514140754938126, 0.025648219510912895, -0.014767422340810299, 0.06246611103415489, 0.006219474598765373, 0.05570828542113304, -0.03212592750787735, -0.0012375485384836793, 0.03589000180363655, 0.0072611598297953606, 0.0038625518791377544, 0.025753263384103775, 0.06288628280162811, 0.016780763864517212, 0.043523192405700684, -0.007488755043596029, 0.07619185000658035, -0.0025276190135627985, 0.08025354146957397, 0.048880431801080704, -0.027451474219560623, 0.023512328043580055, 0.02794167958199978, 0.000639564183074981, 0.04516888037323952, -0.05479790270328522, 0.03652026504278183, 0.028764523565769196, 0.047409817576408386, -0.0038100299425423145, -0.025420624762773514, 0.025683235377073288, 0.010784507729113102, 0.004383394494652748, -0.04506383463740349, -0.031740766018629074, 0.02130640484392643, -0.013130487874150276, -0.03279120475053787, -0.014145912602543831, -0.03331642597913742, 0.04082706570625305, -0.0580192506313324, 0.02592833712697029, -0.01565154269337654, -0.06432188302278519, 0.020483560860157013, -0.014802437275648117, 0.012386427260935307, -0.009611517190933228, -0.005195296369493008, 0.028029216453433037, -0.019415615126490593, 0.007768872193992138, -0.01124845165759325, 0.013130487874150276, 0.01772615872323513, 0.05094629526138306, 0.008066496811807156, 0.011265958659350872, -0.054237671196460724, -0.00926137063652277, 0.05871954187750816, 0.02409006841480732, 0.07206012308597565, 0.018575264140963554, -0.03244106099009514, 0.0863460898399353, 0.0580192506313324, -0.01712215691804886, 0.05784417688846588, -0.04576412960886955, -0.01473240740597248, 0.0352422297000885, -0.05612846091389656, 0.008031481876969337, -0.01674574986100197, -0.01109088584780693, 0.07160492986440659, -0.023162180557847023, -0.0398116409778595, -0.015896644443273544, 0.015100061893463135, -0.004210509825497866, 0.007129854988306761, 0.012325151823461056, 0.038270995020866394, -0.05070119351148605, 0.06607262045145035, -0.04464365914463997, -0.0842452123761177, 0.01885538175702095, 0.007830147631466389, 0.03125056251883507, -0.003140375018119812, -0.01623803749680519, 0.022987108677625656, -0.07626187801361084, 0.04292794317007065, 0.09117811173200607, -0.010311810299754143, -0.03181079775094986, 0.03093543089926243, -0.0006258866051211953, -0.02335476130247116, 0.007436233107000589, 0.01167738065123558, -0.027048805728554726, -0.019240541383624077, 0.03373660147190094, 0.012123817577958107, 0.049965884536504745, -0.010530651547014713, -0.0012878820998594165, -0.034524429589509964, 0.013034198433160782, -0.003871305612847209, -0.03788583725690842, -0.01665821298956871, -0.03918137773871422, 0.006324518471956253, 0.041702430695295334, 0.044993806630373, 0.011064624413847923, -0.12864376604557037, -0.0061319381929934025, 0.010040447115898132, -0.04282289743423462, 0.0011346930405125022, 0.029254727065563202, 0.038060907274484634, -0.08389506489038467, -0.04016178846359253, 0.024142591282725334, -0.034734517335891724, -0.0780126079916954, -0.014215941540896893, 0.02365238592028618, 0.054447758942842484, 0.023862473666667938, 0.017262214794754982, -0.0004759801959153265, -0.07016932964324951, -0.033771615475416183, -0.03494460508227348, -0.022041713818907738, 0.002492604311555624, -0.01841769739985466, -0.01686830073595047, 0.04972078278660774, -0.024772854521870613, -0.026821210980415344, -0.004621931817382574, -0.03032267466187477, -0.03501463681459427, 0.006473330780863762, 0.0044118440710008144, 0.03520721569657326, 0.024072561413049698, -0.02668115124106407, 0.0339466892182827, -0.019555673003196716, -0.035364780575037, -0.06544235348701477, 0.009646532125771046, -0.04142231494188309, -0.055428165942430496, -0.01833016239106655, 0.020851215347647667, 0.020431039854884148, 0.002145740669220686, -0.02377493679523468, 0.0033942312002182007, -0.018050044775009155, 0.044083427637815475, -0.0013141430681571364, -0.050175972282886505, -0.0035890000872313976, 0.0070204343646764755, -0.05577831342816353, 0.024667810648679733, -0.06890880316495895, 0.011528568342328072, -0.012088802643120289, -0.010049200616776943, -0.004827642813324928, 0.01413715910166502, 0.0042892927303910255, 0.047724947333335876, -0.015721570700407028, 0.0025254306383430958, -0.02451024390757084, 0.027468981221318245, 0.06432188302278519, 0.04317304491996765, -0.0004122426325920969, 0.012403934262692928, -0.006648404058068991, 0.040441904217004776, -0.06159074231982231, 0.080603688955307, -0.057248927652835846, 0.009655285626649857, 0.02247939631342888, -0.04891544580459595, 0.03125056251883507, 0.021481478586792946, 0.008425396867096424, 0.06859367340803146, -0.010784507729113102, -0.006998550146818161, 0.04551902413368225, -0.0017627680208534002, -0.02988499216735363, 0.041702430695295334, -0.017822450026869774, -0.029709918424487114, 0.05266201123595238, 0.0037575080059468746, 0.03235352411866188, -0.05668869614601135, -0.0013228966854512691, -0.08830691128969193, 0.005549819674342871, -0.014592349529266357, -0.010110476054251194, 0.03576745092868805, 0.046744536608457565, -0.05458781495690346, -0.03503214195370674, 0.049195561558008194, -0.009340154007077217, -0.009865373373031616, -0.010101722553372383, 0.0470946840941906, -0.03235352411866188, 0.030340181663632393, 0.0014027737779542804, 0.04541398212313652, 0.03032267466187477, 0.02997252717614174, -0.01739352010190487, -0.053187232464551926, 0.0014563900185748935, 0.010049200616776943, -0.025980859994888306, 0.003877870971336961, -0.051016323268413544, 0.004976455122232437, -0.03865615651011467, -0.03032267466187477, 0.004164553247392178, -0.09124813973903656, 0.029079655185341835, -0.03417428582906723, -0.014574841596186161, -0.018995439633727074, -0.0070204343646764755, -0.022549424320459366, 0.05248693749308586, 0.017962507903575897, -0.030042557045817375, 0.06712305545806885, -0.022461889311671257, 0.011230944655835629, 0.0074712480418384075, -0.046534448862075806, 0.02612091787159443, -0.012500224635004997, -0.0018371741753071547, -0.023197196424007416, -0.0005750059499405324, 0.0182076096534729, -0.009777836501598358, 0.0002757402544375509, 0.003967595752328634, 0.03802589327096939, -0.0512264110147953, -0.014636117964982986, 0.023512328043580055, 0.03263363987207413, -0.05045608803629875, 0.022742005065083504, -0.05000089854001999, 0.03062029927968979, 0.04646442085504532, 0.057984236627817154, -0.017945000901818275, 0.012894139625132084, -0.046534448862075806, -0.015660295262932777, -0.009865373373031616, 0.010749492794275284, -0.006552113685756922, 0.04079205170273781, -0.017130909487605095, -0.034314341843128204, 0.09334901720285416, 0.041492342948913574, -0.03974161297082901, 0.022094234824180603, -0.009567748755216599, -0.010373085737228394, 0.0005832125316374004, -0.0460442453622818, -0.021183853968977928, 0.02921971306204796, -0.04569409787654877, 0.034436892718076706, 0.002569198841229081, 0.009515226818621159, 0.03718554228544235, 0.015555251389741898, 0.03342146798968315, -0.03708050027489662, -0.01840019039809704, -0.0972706601023674, 0.004273973871022463, 0.021604029461741447, -0.0017999710980802774, 0.02218177169561386, 0.0068059698678553104, -0.004195190966129303, -0.05514805018901825, -0.060470275580883026, -0.022146757692098618, 0.00704231858253479, 0.0738808810710907, 0.004044190514832735, -0.015196351334452629, 0.03149566426873207, -0.010425607673823833, -0.01413715910166502, -0.07346070557832718, -0.0213239137083292, -0.03788583725690842, -0.01864529401063919, -0.009751575998961926, 0.014496059156954288, -0.07192005962133408, 0.044608645141124725, 0.0533272884786129, -0.07346070557832718, 0.010723232291638851, -0.0324060432612896, -0.02120136097073555, 0.0072611598297953606, 0.006517099216580391, 0.025893323123455048, 0.01959068886935711, -0.05815931037068367, -0.07241026312112808, -0.006534606218338013, 0.008876210078597069, -0.007795133162289858, -0.02473784051835537, 0.04303298518061638, -0.0279591865837574, 0.02549065463244915, -0.028221795335412025, -0.04100213944911957, -0.060785405337810516, -0.008959369733929634, 0.06082042306661606, -0.04254278168082237, -0.01990582048892975, 0.009620270691812038, -0.026751181110739708, -0.047059670090675354, 0.022321829572319984, 0.008749281987547874, -0.049965884536504745, -0.019958341494202614, 0.00556732714176178, 0.04541398212313652, -0.023950010538101196, 0.04506383463740349, -0.038481082767248154, -0.015826614573597908, 0.00006206207035575062, -0.04292794317007065, -0.03321138024330139, 0.07034440338611603, -0.02323221042752266, 0.037010468542575836, -0.047374799847602844, -0.07304053008556366, -0.0424027219414711, 0.0024094446562230587, -0.018505234271287918, 0.02293458580970764, -0.008018351159989834, 0.06754323095083237, 0.054237671196460724, 0.0017343186773359776, -0.026943761855363846, -0.041702430695295334, 0.004414032679051161, -0.029254727065563202, -0.017612362280488014, -0.05556822568178177, 0.0041207848116755486, -0.0377107635140419, -0.08144403994083405, -0.004818889312446117, -0.0015942601021379232, 0.008031481876969337, 0.021796610206365585, -0.03974161297082901, -0.023109659552574158, -0.03125056251883507, 0.014067130163311958, 0.007690089289098978, 0.03032267466187477, 0.05857948586344719, -0.022742005065083504, -0.016947083175182343, -0.023057136684656143, -0.016360588371753693, -0.012403934262692928, -0.01896042563021183, 0.011747410520911217, 0.0235473420470953, -0.00741872563958168, 0.0036655946169048548, -0.043418146669864655, -0.032721176743507385, 0.06302634626626968, 0.008031481876969337, -0.008386004716157913, 0.006490838248282671, 0.04271785542368889, -0.033473990857601166, 0.03415677696466446, 0.02774909883737564, 0.011869961395859718, -0.007795133162289858, 0.05182166025042534, -0.010898305103182793, 0.03237102925777435, -0.010399346239864826, 0.03020012378692627, 0.010574419982731342, 0.00581242935732007, -0.02697877585887909, 0.02760903909802437, 0.02431766502559185, 0.01939810812473297, -0.001067946432158351, 0.03704548254609108, 0.05325726047158241, -0.02591083012521267, -0.04912553355097771, 0.03687041252851486, 0.004112031310796738, 0.008530440740287304, 0.027574025094509125, -0.027171356603503227, -0.0021796610672026873, -0.02099127322435379, -0.01676325686275959, 0.04425849765539169, 0.03459446132183075, -0.04411844164133072, -0.011528568342328072, -0.030690327286720276, 0.039461493492126465, -0.006560867186635733, 0.008442903868854046, -0.05570828542113304, -0.029394786804914474, 0.03543481230735779, -0.0424027219414711, 0.012780342251062393, 0.01617676205933094, 0.04818013682961464, -0.05794922262430191, 0.04947568103671074, 0.028834551572799683, -0.0020308487582951784, -0.05612846091389656, -0.018592771142721176, -0.0326511487364769, -0.03708050027489662, -0.007646320853382349, -0.012438949197530746, -0.03188082575798035, 0.00691101374104619, 0.06428687274456024, 0.000030312963644973934, 0.028081737458705902, 0.008386004716157913, -0.05868452787399292, 0.05560323968529701, 0.07353073358535767, -0.04495879262685776, -0.013130487874150276, -0.062080949544906616, 0.05255696922540665, -0.024247635155916214, 0.012570254504680634, -0.00099299312569201, 0.010635695420205593, -0.03953152149915695, 0.011055870912969112, 0.03559237718582153, 0.04103715345263481, -0.010040447115898132, -0.05154154449701309, -0.004002610687166452, -0.043313104659318924, 0.037850819528102875, -0.031635724008083344, 0.006337649188935757, -0.07990340143442154, -0.037430644035339355, 0.011537322774529457, 0.01365570817142725, 0.080603688955307, 0.03118053264915943, -0.050596147775650024, -0.021376434713602066, 0.006722810212522745, -0.09138819575309753, -0.0349971279501915, 0.030812880024313927, -0.017130909487605095, 0.07465120404958725, -0.02645355649292469, -0.0030725342221558094, 0.049545709043741226, -0.009305139072239399, -0.03317636623978615, 0.028554435819387436, -0.06747320294380188, 0.039356451481580734, -0.03200337663292885, 0.014154666103422642, -0.007698842789977789, 0.05255696922540665, -0.005466660019010305, -0.006123184226453304, -0.007773248944431543, 0.054867934435606, -0.00704231858253479, 0.03652026504278183, -0.027574025094509125, 0.02547314763069153, -0.016001688316464424, -0.05108635127544403, 0.037535689771175385, -0.016456877812743187, -0.02999003604054451, -0.002304400783032179, -0.026068396866321564, 0.061940889805555344, 0.032511088997125626, 0.021674059331417084, -0.004306800197809935, -0.02389748953282833, 0.06145068630576134, -0.018137581646442413, -0.04646442085504532, 0.03541730344295502, 0.060365229845047, 0.009839112870395184, 0.006840984337031841, 0.020623620599508286, -0.031320590525865555, -0.0509813092648983, -0.057143885642290115, 0.010268041864037514, 0.03107548877596855, -0.027819128707051277, 0.007436233107000589, 0.02034350298345089, 0.07899301499128342, -0.07118475437164307, -0.005287209991365671, 0.0033679702319204807, -0.00015400968550238758, 0.036345191299915314, -0.016185514628887177, 0.01596667431294918, -0.02837936207652092, -0.041912518441677094, 0.0073574502021074295, 0.032283492386341095, -0.00706857955083251, -0.028081737458705902, -0.018680308014154434, 0.047724947333335876, 0.01055691298097372, 0.028869567438960075, -0.010040447115898132, -0.03662530705332756, -0.025017956271767616, 0.048775386065244675, -0.00038981137913651764, -0.05493796244263649, -0.04467867314815521, 0.0033767239656299353, 0.021586522459983826, -0.058089278638362885, 0.016693226993083954, 0.026190947741270065, -0.04989585652947426, -0.011476046405732632, 0.04079205170273781, -0.04583415761590004, 0.013585678301751614, -0.019660716876387596, 0.051996733993291855, -0.012228861451148987, 0.04026683047413826, -0.0009809569455683231, 0.02997252717614174, 0.03482205420732498, 0.06852363795042038, 0.026733674108982086, 0.01709589548408985, -0.008679253049194813, -0.017218446359038353, 0.024702824652194977, -0.04453861713409424, 0.03834102675318718, 0.03802589327096939, -0.05420265719294548, 0.033263903111219406, 0.03687041252851486, -0.026401035487651825, 0.01622053049504757, 0.000593607488553971, 0.029062148183584213, 0.05087626352906227, -0.020325995981693268, -0.010968334972858429, 0.06022517383098602, 0.005895589012652636, -0.00449500372633338, -0.008823688142001629, 0.0011073378846049309, 0.03319387510418892, 0.04222765192389488, 0.012491471134126186, -0.04902048781514168, 0.06565244495868683 ]
7,463
pathlib
stat
Return the result of the stat() system call on this path, like os.stat() does.
def stat(self, *, follow_symlinks=True): """ Return the result of the stat() system call on this path, like os.stat() does. """ return self._accessor.stat(self, follow_symlinks=follow_symlinks)
(self, *, follow_symlinks=True)
[ 0.042175889015197754, -0.044703781604766846, 0.01757883094251156, 0.05594624951481819, 0.0735749751329422, -0.0006439265562221408, 0.0330621711909771, 0.008847623132169247, 0.009778952226042747, -0.0002458250673953444, 0.03312869742512703, -0.003186890622600913, 0.07497196644544601, -0.032147474586963654, -0.021021421998739243, 0.03327837213873863, 0.018144279718399048, 0.011001321487128735, -0.02276766300201416, 0.032430198043584824, 0.019740844145417213, 0.018360482528805733, 0.022967232391238213, -0.07470587641000748, -0.018609944730997086, 0.0604698471724987, 0.03911580890417099, -0.04057932645082474, 0.04413833096623421, -0.013271435163915157, -0.020589018240571022, 0.0047980062663555145, -0.0025528387632220984, -0.021969381719827652, -0.004802164155989885, 0.017362629994750023, -0.030168401077389717, 0.04264155402779579, -0.08554920554161072, -0.019092239439487457, -0.029503164812922478, 0.007271848618984222, 0.01924191787838936, 0.02082185074687004, 0.06851918995380402, 0.010094938799738884, -0.05408359318971634, -0.010993005707859993, -0.0266093946993351, -0.07118012756109238, 0.04177675023674965, 0.03951495140790939, -0.013354589231312275, -0.019308442249894142, 0.01859331503510475, 0.027773555368185043, 0.024846522137522697, 0.038184478878974915, -0.022401783615350723, -0.00693923095241189, 0.056744534522295, -0.030018722638487816, 0.00659414054825902, -0.03855035826563835, 0.007292637135833502, -0.0399140901863575, -0.02571132779121399, -0.046932317316532135, -0.04533575475215912, 0.015350294299423695, -0.03489156812429428, 0.028837930411100388, -0.008365328423678875, -0.022069165483117104, 0.00566696934401989, -0.0007696975371800363, 0.01772850938141346, -0.01033608615398407, 0.04297417029738426, 0.007683462463319302, -0.03397687152028084, -0.033295005559921265, 0.028837930411100388, -0.021703287959098816, 0.004552701022475958, 0.012090643867850304, 0.04596772789955139, -0.07942903786897659, -0.04616729915142059, 0.05917264148592949, -0.030118508264422417, 0.050890468060970306, 0.010677019134163857, 0.0015477105043828487, 0.014435596764087677, -0.013296381570398808, -0.028488682582974434, -0.006510986015200615, 0.021936118602752686, -0.02286744862794876, -0.03459221124649048, 0.004573489539325237, 0.02591089718043804, -0.006303100381046534, 0.04087868332862854, 0.007438157219439745, -0.008523321710526943, -0.030966682359576225, -0.019541272893548012, -0.002677570329979062, -0.07271017134189606, -0.01216548215597868, 0.013105127029120922, -0.02775692380964756, 0.048029955476522446, 0.019142132252454758, 0.01247315388172865, -0.05142265558242798, -0.01821080408990383, -0.01482642162591219, 0.014260971918702126, 0.050358276814222336, 0.04643339291214943, -0.03080037422478199, 0.04320700466632843, 0.034858305007219315, -0.00816159974783659, -0.02043934166431427, 0.040047138929367065, 0.019275179132819176, 0.012714301235973835, 0.0066398754715919495, 0.010419241152703762, 0.07683462649583817, 0.024364225566387177, 0.014751582406461239, 0.030717220157384872, 0.030667327344417572, -0.04630034416913986, 0.05970482900738716, 0.04673274978995323, -0.044936615973711014, 0.019857259467244148, -0.025262294337153435, -0.009662535972893238, 0.04510292410850525, 0.0023449528962373734, 0.008739522658288479, 0.02793986350297928, 0.02167002484202385, 0.04284112527966499, -0.05621234327554703, 0.04101172834634781, 0.009712428785860538, -0.02186959609389305, 0.010394294746220112, -0.017528938129544258, 0.01642298512160778, -0.005305247846990824, -0.01230684481561184, -0.05281964689493179, -0.02358257584273815, -0.014111294411122799, -0.05903959274291992, -0.01473495177924633, 0.026642655953764915, -0.02238515205681324, 0.0331619568169117, -0.015275455079972744, 0.021753178909420967, 0.05564689636230469, -0.011857811361551285, 0.021038051694631577, 0.023649098351597786, 0.05265333876013756, 0.021420562639832497, 0.018377112224698067, 0.06356319040060043, 0.047497767955064774, -0.0023615837562829256, 0.0037939175963401794, -0.041178036481142044, -0.00972074456512928, -0.03934864327311516, -0.010036731138825417, 0.10051698982715607, 0.020688803866505623, 0.005812489427626133, 0.035955943167209625, 0.07237755507230759, -0.019025716930627823, 0.032446831464767456, 0.02404823899269104, 0.016788864508271217, -0.003336568595841527, -0.03499135375022888, -0.022850817069411278, -0.0024946306366473436, -0.047797124832868576, 0.05617908388376236, -0.0012275661574676633, -0.02428107149899006, -0.008257227949798107, 0.0028521944768726826, 0.01318828109651804, 0.007093066815286875, -0.010568918660283089, 0.03080037422478199, -0.06559215486049652, 0.008847623132169247, 0.009687482379376888, -0.05138939246535301, -0.017878185957670212, 0.033710777759552, 0.013529214076697826, 0.00013285207387525588, 0.02499619871377945, 0.05148917809128761, -0.008282174356281757, 0.0167057104408741, 0.06150096282362938, -0.033012278378009796, 0.03141571581363678, 0.02481326088309288, -0.003972699400037527, -0.0337606705725193, 0.03555680438876152, -0.01570785790681839, -0.00400388240814209, -0.042275674641132355, 0.011758025735616684, -0.043040696531534195, 0.030218293890357018, 0.036288559436798096, 0.001577853923663497, -0.030018722638487816, 0.035723112523555756, 0.027075057849287987, -0.02291734144091606, -0.027158213779330254, -0.06938399374485016, -0.0033656726591289043, 0.04254176840186119, 0.03791838511824608, -0.021503716707229614, -0.06785395741462708, -0.007587835192680359, -0.006930915638804436, -0.030733849853277206, -0.07264364510774612, 0.0069350735284388065, 0.04144413024187088, -0.03998061642050743, -0.04087868332862854, -0.006045321933925152, -0.03712010383605957, -0.06762111932039261, 0.007134643848985434, -0.02256809175014496, 0.06013723090291023, 0.025594910606741905, -0.024979569017887115, -0.0028397212736308575, -0.04809647798538208, -0.0009910960216075182, -0.021320777013897896, 0.017944710329174995, 0.006843603681772947, -0.04390550032258034, 0.0283223744481802, 0.011691502295434475, -0.044703781604766846, -0.05661148577928543, -0.007783247623592615, -0.06665652990341187, 0.02015661634504795, 0.009088771417737007, -0.004756429232656956, 0.02371562272310257, -0.020422710105776787, -0.016007212921977043, 0.020638911053538322, -0.04633360728621483, -0.029303595423698425, -0.03988083079457283, 0.0002749291015788913, -0.00867299921810627, 0.02191948890686035, -0.09067150950431824, 0.025561649352312088, 0.08515006303787231, 0.0018907221965491772, -0.027058428153395653, -0.04164370149374008, 0.06170053407549858, 0.022451676428318024, -0.03625530004501343, -0.038051433861255646, 0.014776528812944889, -0.022351890802383423, -0.07078098505735397, -0.02960295043885708, -0.0437391921877861, 0.038716670125722885, -0.05508144572377205, 0.00028220508829690516, 0.035290710628032684, -0.014576958492398262, 0.002130830427631736, 0.03522418439388275, 0.010144831612706184, -0.013911724090576172, -0.006444462575018406, 0.07171231508255005, 0.01064375787973404, -0.016023844480514526, -0.028438789770007133, 0.01844363659620285, -0.024846522137522697, 0.05587972700595856, -0.0435396209359169, 0.07776595652103424, 0.040279969573020935, -0.007779090199619532, -0.019707582890987396, 0.00881436187773943, 0.043938763439655304, 0.04477030411362648, 0.017745139077305794, 0.06655674427747726, -0.008431851863861084, -0.027407675981521606, 0.042508505284786224, -0.00601205974817276, -0.05032501742243767, 0.04443768784403801, -0.013961616903543472, -0.04776386171579361, -0.00520546268671751, 0.005392559804022312, 0.029436642304062843, 0.0330621711909771, -0.006756291259080172, -0.00108724320307374, 0.007899663411080837, -0.005995429120957851, 0.0470653660595417, 0.009546119719743729, 0.01782829314470291, -0.04367266967892647, 0.01816091127693653, 0.04862866923213005, -0.11402125656604767, 0.002390687819570303, -0.009870422072708607, 0.008431851863861084, -0.012581254355609417, 0.02010672353208065, 0.024014977738261223, 0.013504267670214176, -0.03768555447459221, 0.02798975631594658, -0.02276766300201416, -0.0639955922961235, 0.03588942065834999, -0.056544963270425797, 0.01330469734966755, 0.0032679662108421326, 0.0012805770384147763, 0.003976857289671898, -0.012298529036343098, -0.030218293890357018, 0.021038051694631577, -0.07350844889879227, 0.04653317853808403, 0.015799326822161674, 0.05298595502972603, -0.02053912542760372, -0.02670917846262455, -0.0022306155879050493, -0.019308442249894142, 0.028837930411100388, -0.021503716707229614, -0.004951842129230499, 0.01857668347656727, 0.021986011415719986, -0.03151550143957138, -0.026343300938606262, -0.022501569241285324, 0.006003744434565306, -0.031349193304777145, -0.037053581327199936, -0.02276766300201416, -0.027124950662255287, -0.0300852470099926, -0.012464838102459908, 0.11275731027126312, 0.02419791743159294, -0.033810559660196304, -0.03568984940648079, 0.045502062886953354, -0.03445916622877121, -0.033245112746953964, 0.041377607733011246, -0.04107825085520744, 0.014169502072036266, 0.01949138194322586, 0.048828236758708954, -0.059538520872592926, -0.008452639915049076, -0.02975262887775898, 0.017279475927352905, -0.03136582300066948, 0.03018503077328205, -0.02020650915801525, 0.04530249163508415, -0.045801419764757156, 0.0016765997279435396, 0.038051433861255646, 0.03964799642562866, -0.021270884200930595, -0.06891833245754242, -0.0365879163146019, 0.046932317316532135, 0.061002034693956375, -0.029453273862600327, 0.0038833084981888533, 0.0008881924441084266, -0.019508011639118195, 0.045601848512887955, 0.062332507222890854, 0.03602246567606926, -0.007650200743228197, -0.0021266727708280087, -0.0027898286934942007, -0.011683187447488308, 0.02509598433971405, -0.041178036481142044, -0.027058428153395653, 0.018792884424328804, -0.001113228965550661, 0.04277460277080536, 0.011949281208217144, 0.034858305007219315, -0.008988985791802406, -0.01642298512160778, -0.03161528706550598, -0.03502461314201355, 0.04610077664256096, -0.035290710628032684, -0.029968829825520515, -0.006631560157984495, 0.073375403881073, 0.00490610720589757, -0.10577233880758286, -0.04101172834634781, -0.052254196256399155, 0.015134093351662159, -0.04520270973443985, 0.004752271343022585, -0.0431404784321785, 0.05484861508011818, 0.01487631443887949, -0.09566076844930649, -0.03479178249835968, -0.08362001925706863, 0.030550910159945488, 0.025212401524186134, -0.022800924256443977, -0.01591574400663376, 0.055447325110435486, -0.037053581327199936, -0.07829814404249191, 0.04407180845737457, 0.025411970913410187, 0.0009375653462484479, -0.047597553580999374, -0.030584173277020454, -0.042608290910720825, -0.05621234327554703, -0.03615551441907883, -0.022218843922019005, 0.023682361468672752, 0.001882406766526401, 0.03041786327958107, -0.04583468288183212, -0.00046410525101237, 0.003633845364674926, -0.012340106070041656, -0.04630034416913986, 0.07916294783353806, 0.058008480817079544, 0.009371495805680752, -0.061866842210292816, -0.006835287902504206, 0.04473704472184181, -0.005883170757442713, 0.024896414950489998, 0.002311691176146269, -0.0150426235049963, 0.014244341291487217, -0.04876171424984932, 0.026359930634498596, 0.03998061642050743, -0.04407180845737457, 0.08887537568807602, 0.035190925002098083, -0.050591111183166504, -0.007126328535377979, 0.01390340831130743, -0.014202764257788658, 0.037818603217601776, -0.01900908537209034, 0.08182388544082642, 0.02542860247194767, -0.006814499385654926, 0.02527892403304577, 0.010519025847315788, 0.03098331391811371, -0.02371562272310257, -0.014294234104454517, -0.046799272298812866, 0.004336499609053135, -0.0667230561375618, -0.04121129959821701, 0.0002814255130942911, -0.025345448404550552, 0.018759623169898987, -0.018510159105062485, 0.015716172754764557, 0.0500921830534935, -0.012523045763373375, -0.02670917846262455, -0.023116910830140114, 0.07676810026168823, 0.07789900153875351, 0.0038645986933261156, 0.006415358744561672, -0.08847623318433762, 0.01487631443887949, 0.04240872338414192, -0.045502062886953354, -0.00015227642143145204, 0.020888375118374825, 0.01614025980234146, -0.04257503151893616, -0.028255850076675415, -0.07370802015066147, 0.09566076844930649, -0.013911724090576172, -0.00652345921844244, -0.04157717898488045, -0.030451124534010887, 0.06971661001443863, 0.0504913255572319, 0.03469199687242508, 0.01801123283803463, -0.06206641346216202, -0.04320700466632843, 0.013080180622637272, -0.03788512572646141, -0.03425959497690201, -0.016896964982151985, 0.004768902435898781, 0.007238586898893118, 0.00016500942001584917, 0.05820804834365845, 0.03535723313689232, 0.02300049550831318, -0.04842909798026085, 0.03299564868211746, 0.10696976631879807, -0.029918937012553215, -0.06466082483530045, 0.019641058519482613, 0.01060218084603548, 0.02675907127559185, 0.03349457308650017, 0.042142629623413086, 0.01211558934301138, -0.023017125204205513, -0.051588963717222214, -0.0018886433681473136, 0.06609108299016953, -0.04134434461593628, -0.0002689523680601269, -0.004494492895901203, 0.06013723090291023, -0.04630034416913986, -0.011849495582282543, -0.0568443164229393, -0.09146979451179504, 0.020073462277650833, 0.006910127121955156, 0.008444325067102909, -0.033727407455444336, -0.011741395108401775, -0.07643548399209976, 0.015724489465355873, 0.029253702610731125, 0.017179690301418304, -0.02353268302977085, 0.021503716707229614, 0.03199779614806175, -0.03625530004501343, -0.002027926966547966, 0.04057932645082474, -0.00197907374240458, -0.051123298704624176, 0.024447381496429443, -0.04024671018123627, 0.04297417029738426, 0.015383555553853512, 0.0032284678891301155, 0.045502062886953354, 0.06020375341176987, 0.013362905010581017, 0.0037315518129616976, -0.011375515721738338, 0.04566837102174759, 0.0006865431787446141, -0.01378699205815792, -0.018027864396572113, 0.03036797046661377, -0.04729819670319557, 0.02647634781897068, 0.009629274718463421, 0.05242050811648369, 0.002001941204071045, -0.036288559436798096, -0.005604603793472052, -0.0034945618826895952, 0.014369072392582893, 0.005068257916718721, 0.01649782434105873, -0.11335601657629013, -0.039947353303432465, -0.021520348265767097, 0.023915192112326622, 0.044504210352897644, -0.03974778205156326, -0.024464011192321777, 0.010061677545309067, -0.013645630329847336, -0.009379811584949493, -0.010294509120285511, -0.02857183665037155, -0.00047449953854084015, 0.08654705435037613, 0.010319455526769161, 0.0033656726591289043, 0.025794481858611107, 0.009454650804400444, 0.004702378995716572, 0.016331516206264496, 0.002382372273132205, -0.010610495693981647, -0.062332507222890854, -0.01395330112427473, -0.018643205985426903, -0.06649022549390793, -0.02946990355849266, -0.020971529185771942, 0.004989261273294687, 0.021520348265767097, -0.02576121874153614, -0.020073462277650833, 0.007421526126563549, 0.012439891695976257, -0.030018722638487816, 0.011824549175798893, 0.0876779556274414, -0.00610768748447299, -0.0016526927938684821, -0.03632182255387306, 0.009770636446774006, 0.020805219188332558, -0.0021765653509646654, 0.040279969573020935, -0.009961891919374466, -0.0076044658198952675, 0.006078583654016256, -0.01816091127693653, 0.015849219635128975, 0.0027461727149784565, 0.03482504561543465, 0.04064584895968437, 0.003521587001159787, 0.0368872731924057, -0.020356185734272003, -0.07616939395666122, -0.029453273862600327, 0.04380571469664574, 0.01495115365833044, -0.04620056226849556, -0.005908117163926363, 0.02195275016129017, 0.04413833096623421, 0.05175527185201645, -0.05062437057495117, 0.0603700615465641, 0.014502120204269886, 0.02594415843486786, -0.0727766901254654, 0.03070058859884739, -0.03469199687242508, -0.038616884499788284, -0.02614372968673706, -0.03314532712101936, 0.02932022698223591, -0.01739589124917984, 0.01492620725184679, 0.026925381273031235, -0.040279969573020935, 0.05295269563794136, -0.020273031666874886, -0.00886425469070673, -0.0438389778137207, 0.015574811026453972, 0.027823448181152344, -0.006070267874747515, -0.053119003772735596, 0.05025849491357803, 0.026409823447465897, -0.03934864327311516, 0.006889338605105877, 0.028405528515577316, -0.004511123988777399, 0.008253069594502449, 0.011624978855252266, -0.044603995978832245, -0.029885675758123398, -0.01145867072045803, 0.03898276388645172, -0.009363180957734585, 0.07843118906021118, 0.0017607935005798936, -0.0015840905252844095, 0.022651245817542076, 0.06439473479986191, 0.06023701652884483, 0.03489156812429428, -0.054349686950445175, -0.06203315034508705, 0.02443074993789196, -0.058008480817079544, -0.02067217230796814, 0.03622203692793846, 0.0032201523426920176, -0.012448207475244999, 0.03302891179919243, -0.03161528706550598, -0.0033199377357959747, -0.012780824676156044, 0.06802026182413101, 0.012722617015242577, -0.03284597024321556, 0.02424781024456024, 0.024131394922733307, -0.003180654253810644, -0.029253702610731125, -0.022651245817542076, -0.03425959497690201, 0.012897240929305553, 0.03304554149508476, 0.04174348711967468, -0.0767015814781189, 0.03188138082623482 ]
7,464
pathlib
symlink_to
Make this path a symlink pointing to the target path. Note the order of arguments (link, target) is the reverse of os.symlink.
def symlink_to(self, target, target_is_directory=False): """ Make this path a symlink pointing to the target path. Note the order of arguments (link, target) is the reverse of os.symlink. """ self._accessor.symlink(target, self, target_is_directory)
(self, target, target_is_directory=False)
[ 0.01938869059085846, 0.02771623246371746, -0.011794334277510643, 0.016492154449224472, -0.006693714763969183, -0.00728659937158227, -0.009277968667447567, 0.04670665040612221, -0.004688768181949854, 0.045656654983758926, 0.025018833577632904, -0.05496177822351456, 0.12071315944194794, -0.038596346974372864, -0.0035324166528880596, 0.01070813275873661, 0.042325638234615326, 0.0017447106074541807, 0.03385327011346817, 0.0929788202047348, 0.050616975873708725, 0.010300807654857635, 0.009594776667654514, -0.04341183975338936, -0.040623921900987625, 0.099640853703022, -0.08935815095901489, 0.03414292261004448, 0.0161934494972229, -0.023624874651432037, -0.03707566484808922, -0.03512050583958626, 0.06886515021324158, 0.04105840250849724, 0.045910101383924484, 0.045656654983758926, -0.016854221001267433, 0.03417912870645523, -0.051956623792648315, -0.021162819117307663, -0.00394879374653101, 0.01978696510195732, -0.0076079340651631355, 0.05619280785322189, 0.03410671651363373, 0.012762864120304585, -0.02500073052942753, -0.021343853324651718, -0.02308177389204502, -0.02921881154179573, -0.004924111999571323, 0.004652561619877815, -0.00584285706281662, -0.003125091316178441, -0.030051564797759056, 0.032531723380088806, 0.034722231328487396, 0.004272391088306904, -0.0463445819914341, -0.009047150611877441, 0.012219763360917568, 0.007426900323480368, 0.034559302031993866, 0.0011925583239644766, 0.024240389466285706, -0.028313644230365753, -0.016926635056734085, 0.023715391755104065, 0.014437424018979073, 0.04681526869535446, -0.06379621475934982, -0.003079832997173071, 0.0030096822883933783, -0.029617084190249443, -0.0060193645767867565, 0.020348168909549713, 0.014048201963305473, -0.02503693662583828, -0.003102462040260434, -0.03707566484808922, -0.08552023768424988, -0.040623921900987625, -0.022466260939836502, -0.001900852075777948, -0.03251362219452858, 0.03374464809894562, 0.05677211284637451, 0.009721500799059868, -0.008132930845022202, -0.06846687942743301, -0.05601177364587784, 0.0038062299136072397, 0.019443001598119736, 0.0028580669313669205, -0.019931791350245476, 0.0035324166528880596, -0.035898949950933456, -0.013505101203918457, 0.034722231328487396, 0.019678344950079918, 0.008141983300447464, 0.011631404049694538, 0.026448998600244522, 0.048589397221803665, 0.03254982829093933, -0.000031875337299425155, -0.05550488084554672, -0.008517627604305744, -0.026973996311426163, -0.03573601692914963, -0.11072010546922684, 0.03678601235151291, 0.006132510956376791, -0.03512050583958626, -0.024946419522166252, -0.014147770591080189, 0.07820648699998856, -0.05011007934808731, -0.0084678428247571, 0.004951267037540674, -0.020655926316976547, 0.007870432920753956, 0.03186190128326416, -0.07668580114841461, 0.027209339663386345, 0.00571160763502121, 0.004075517412275076, 0.006286389194428921, 0.028223127126693726, -0.049277327954769135, -0.04420838877558708, 0.011640455573797226, -0.024964522570371628, 0.05014628544449806, 0.012056833133101463, 0.0018691711593419313, -0.034686025232076645, 0.018230076879262924, 0.012074936181306839, 0.04370149224996567, 0.009210080839693546, -0.032821379601955414, -0.005091567989438772, -0.0076124598272144794, -0.0015093670226633549, 0.010662875138223171, -0.029436051845550537, 0.0695168748497963, 0.01444647554308176, 0.005729711148887873, 0.03754635527729988, -0.036677394062280655, 0.06984273344278336, 0.05449109151959419, -0.019986102357506752, 0.050580766052007675, -0.04735837131738663, 0.00975770689547062, 0.05536005273461342, 0.018492575734853745, 0.0025978311896324158, -0.03586274012923241, -0.019859377294778824, 0.003500735852867365, -0.0042226072400808334, -0.013930530287325382, -0.0038990096654742956, -0.04156529903411865, 0.023914529010653496, 0.041673917323350906, 0.020963681861758232, -0.030703285709023476, 0.04283253103494644, 0.02869381383061409, -0.003908061422407627, -0.03434206172823906, 0.07187031209468842, 0.009621932171285152, 0.030920526012778282, -0.0018985890783369541, 0.006141562480479479, 0.005566780921071768, 0.002439426723867655, -0.0012423426378518343, -0.024276595562696457, 0.030413633212447166, -0.04018944129347801, 0.029761912301182747, -0.010056412778794765, 0.008300387300550938, 0.029128294438123703, 0.013604669831693172, 0.03218775987625122, 0.007535520475357771, -0.021524885669350624, -0.04047909751534462, 0.007811596617102623, -0.0282412301748991, -0.07161686569452286, 0.09587535262107849, 0.005575832445174456, 0.03003346174955368, -0.02206798642873764, 0.009558570571243763, 0.07187031209468842, -0.03593515604734421, 0.009857275523245335, 0.04015323519706726, -0.010735288262367249, -0.0007812728290446103, 0.03787221387028694, -0.04189115762710571, -0.010119774378836155, 0.03722049295902252, 0.009938741102814674, 0.00944995041936636, -0.041311852633953094, 0.04348425194621086, 0.0017628140049055219, 0.0282412301748991, 0.025145556777715683, -0.017831802368164062, -0.002197294495999813, 0.031843796372413635, -0.026159344241023064, -0.017180081456899643, 0.05047214776277542, -0.02101799286901951, 0.07581683993339539, -0.03512050583958626, -0.003869591746479273, -0.038596346974372864, -0.01343268807977438, -0.005992209538817406, 0.06690999120473862, -0.0830581858754158, 0.023280911147594452, -0.011287440545856953, -0.018809383735060692, 0.033183444291353226, -0.04971180483698845, 0.012880535796284676, 0.07842372357845306, 0.033708442002534866, 0.007960949093103409, 0.022955050691962242, -0.01906283013522625, -0.01922576129436493, -0.007241341285407543, -0.057604867964982986, -0.025706760585308075, 0.013586565852165222, -0.015786124393343925, 0.005399324931204319, 0.008915901184082031, -0.018845589831471443, 0.030612768605351448, 0.01648310199379921, -0.03917565569281578, 0.041999779641628265, 0.008363748900592327, -0.04120323061943054, -0.019443001598119736, -0.06738068163394928, -0.010771495290100574, -0.018592143431305885, -0.02653951570391655, 0.006417638622224331, -0.0032789697870612144, 0.01599431224167347, 0.1529371291399002, -0.017605511471629143, -0.029490360990166664, 0.033708442002534866, -0.020945578813552856, -0.01946110464632511, -0.016926635056734085, 0.028295541182160378, -0.0008135194075293839, -0.010119774378836155, -0.004292757716029882, -0.03504808992147446, 0.013224499300122261, -0.02056540921330452, -0.0036478256806731224, -0.004788336809724569, -0.032495517283678055, 0.08124784380197525, 0.008436162024736404, 0.005702556110918522, 0.03193431347608566, 0.015921898186206818, -0.0315360389649868, 0.04341183975338936, 0.01622060313820839, 0.04420838877558708, -0.07252202928066254, 0.014718025922775269, -0.018175765872001648, -0.06557034701108932, -0.02043868601322174, -0.011875799857079983, -0.04272391274571419, 0.05937899649143219, -0.09384778141975403, 0.007893062196671963, 0.08870642632246017, -0.0014912636252120137, 0.05373075231909752, 0.016166293993592262, 0.030123978853225708, -0.024602456018328667, -0.023461945354938507, 0.025905897840857506, 0.010518047958612442, 0.02791536971926689, -0.007268496323376894, 0.01251846831291914, -0.02519986778497696, -0.000810690748039633, -0.06441172957420349, 0.03714808076620102, -0.015306384302675724, -0.03499378263950348, -0.010889166966080666, 0.017089564353227615, 0.015252074226737022, 0.0157680194824934, -0.029979152604937553, 0.03531964123249054, 0.03691273555159569, 0.03751014545559883, 0.03946530818939209, 0.020293857902288437, -0.0829857662320137, 0.008762022480368614, -0.0091059859842062, -0.05941520258784294, 0.02405935525894165, 0.010155980475246906, 0.022701604291796684, 0.0021475101821124554, -0.0060374680906534195, -0.02210419438779354, 0.020583512261509895, 0.025453314185142517, -0.0712909996509552, -0.006032942328602076, 0.02052920125424862, 0.005539625883102417, 0.01772318221628666, 0.08544782549142838, -0.03823428228497505, -0.021271439269185066, -0.03222396969795227, -0.012744760140776634, -0.044606659561395645, -0.04898767173290253, -0.020999889820814133, -0.03725669905543327, -0.016664136201143265, 0.03921186178922653, -0.014862852171063423, -0.03772738575935364, 0.04945835843682289, 0.01861024647951126, -0.05612039193511009, 0.0024959996808320284, 0.03790841996669769, 0.03397999331355095, 0.018003784120082855, -0.08841677755117416, 0.07436857372522354, 0.04616354778409004, 0.07559960335493088, -0.012283124960958958, 0.000052966450311942026, -0.03244120627641678, -0.03186190128326416, 0.02011282555758953, 0.040696337819099426, -0.0382704883813858, 0.000008923503628466278, 0.012654243968427181, 0.027263648808002472, -0.0157680194824934, 0.05644625425338745, -0.046923890709877014, 0.04084116220474243, 0.013405532576143742, 0.04051530361175537, -0.004213555250316858, 0.028114506974816322, 0.005643720272928476, 0.024982627481222153, -0.03698515146970749, 0.007653192151337862, 0.028295541182160378, -0.0035935156047344208, 0.018456367775797844, 0.008200818672776222, 0.05318764969706535, -0.08342024683952332, 0.03888600319623947, -0.007576253265142441, 0.013152086175978184, 0.007603408303111792, 0.08443403989076614, -0.014165873639285564, 0.0314636267721653, -0.009115038439631462, 0.024819696322083473, -0.050942834466695786, -0.01719818450510502, 0.016048621386289597, 0.06339794397354126, 0.022701604291796684, -0.05930658429861069, 0.007241341285407543, -0.04113081842660904, 0.007983578369021416, -0.015514573082327843, -0.015912847593426704, 0.015233971178531647, 0.03837910667061806, -0.04518596827983856, 0.01674560084939003, 0.036351531744003296, -0.0050236801616847515, 0.06977032124996185, 0.02487400732934475, 0.01193010900169611, 0.04022565111517906, 0.011432267725467682, 0.012174504809081554, 0.008046939969062805, 0.0497480146586895, -0.03374464809894562, -0.013803806155920029, -0.026756756007671356, 0.02194126322865486, -0.049929045140743256, -0.02308177389204502, -0.024077458307147026, -0.017967578023672104, -0.04156529903411865, -0.03202483057975769, 0.010554254986345768, 0.025507623329758644, 0.04105840250849724, 0.0021644821390509605, -0.0028716442175209522, 0.03881358727812767, 0.03213345259428024, -0.02634037844836712, -0.0398273766040802, -0.04087737202644348, -0.0548531599342823, 0.015433108434081078, 0.04985663294792175, -0.0033536460250616074, 0.0008757496834732592, 0.07422374933958054, -0.058582451194524765, -0.025127453729510307, 0.029598981142044067, 0.010671926662325859, -0.025344694033265114, -0.014600354246795177, -0.024240389466285706, 0.06861170381307602, -0.028675710782408714, 0.047973886132240295, 0.06419448554515839, 0.022466260939836502, 0.004417218267917633, -0.010400376282632351, -0.023787805810570717, -0.02954467199742794, -0.030504148453474045, -0.010554254986345768, -0.05213765427470207, 0.031101560220122337, 0.015288281254470348, 0.002314966171979904, -0.0021724023390561342, 0.024620559066534042, 0.03235069289803505, -0.03188000246882439, -0.02536279708147049, 0.0448601096868515, 0.04084116220474243, 0.004516786430031061, -0.04109461233019829, -0.014111563563346863, 0.0044104293920099735, -0.030594665557146072, 0.05481695383787155, -0.0463445819914341, -0.013124930672347546, 0.02101799286901951, -0.011251233518123627, -0.045910101383924484, -0.006295440718531609, -0.035500675439834595, 0.10463737696409225, -0.028223127126693726, -0.03823428228497505, -0.07147203385829926, 0.008526679128408432, 0.015885692089796066, 0.06100829690694809, -0.025742966681718826, 0.0647013857960701, 0.012029677629470825, -0.007019575219601393, -0.057858314365148544, 0.01129649206995964, 0.06227553263306618, -0.01387622021138668, -0.019443001598119736, -0.014718025922775269, -0.009993051178753376, -0.06386862695217133, -0.029363637790083885, -0.012418899685144424, -0.016338275745511055, 0.06017554551362991, 0.015559831634163857, 0.020004205405712128, 0.00859909225255251, -0.011323647573590279, -0.02043868601322174, -0.001664377050474286, 0.004193189088255167, 0.07885820418596268, -0.008549308404326439, -0.0023919055238366127, 0.005109671503305435, -0.014871904626488686, -0.013595618307590485, -0.027372268959879875, -0.09210985898971558, -0.044280800968408585, -0.01603051833808422, 0.0041162497363984585, -0.030866216868162155, -0.024149872362613678, 0.07056687027215958, -0.038704968988895416, -0.017831802368164062, 0.05221007019281387, 0.022665398195385933, 0.09160296618938446, -0.014672767370939255, -0.006417638622224331, 0.06473758816719055, -0.00011123661533929408, 0.03609808534383774, 0.025670554488897324, -0.08892367035150528, -0.0630720779299736, 0.03483084961771965, 0.025308487936854362, 0.07473064213991165, 0.002987053245306015, 0.008508576080203056, -0.0059107448905706406, 0.030214495956897736, -0.035337746143341064, -0.0023025202099233866, 0.02634037844836712, -0.013133982196450233, 0.011495629325509071, 0.007340909447520971, 0.013957684859633446, 0.04844457283616066, -0.02548952028155327, 0.02921881154179573, -0.011251233518123627, -0.060899678617715836, 0.0463445819914341, 0.012373642064630985, 0.020963681861758232, -0.011459422297775745, -0.05079800635576248, -0.007757286541163921, 0.03658687695860863, -0.017180081456899643, -0.053585924208164215, -0.05210144817829132, -0.015758968889713287, -0.03606187924742699, -0.03035932220518589, -0.022303329780697823, -0.05832900106906891, -0.020655926316976547, -0.061551399528980255, 0.07100135087966919, 0.051920413970947266, 0.003364960663020611, -0.03443257510662079, -0.026448998600244522, 0.025380900129675865, -0.019569724798202515, -0.0009843697771430016, -0.00634975079447031, -0.06310828775167465, -0.07074790447950363, -0.0028829588554799557, -0.05680832266807556, 0.03856014087796211, -0.008074095472693443, -0.01335122250020504, -0.00842258520424366, -0.026847271248698235, 0.00680686067789793, -0.037944626063108444, -0.022574881091713905, 0.013269757851958275, -0.012681398540735245, -0.04985663294792175, 0.009721500799059868, 0.011577093973755836, -0.07165306806564331, -0.02194126322865486, 0.019605930894613266, 0.053875576704740524, -0.03133690357208252, -0.02458435297012329, -0.0355730876326561, -0.023824011906981468, 0.04286874085664749, -0.002665718784555793, -0.017868008464574814, -0.07132720947265625, 0.008698660880327225, -0.011912005953490734, 0.06900998204946518, -0.02921881154179573, -0.027444683015346527, -0.0031431945972144604, -0.017017152160406113, -0.019768862053751945, -0.030250702053308487, -0.032857585698366165, 0.024656767025589943, -0.011468473821878433, 0.0047430782578885555, 0.015224919654428959, -0.030920526012778282, 0.007263970095664263, -0.006861170753836632, 0.023986943066120148, 0.0695892870426178, 0.015469314530491829, 0.017379218712449074, -0.04645320400595665, 0.006010313052684069, 0.01847447082400322, -0.007956423796713352, -0.011468473821878433, -0.016591722145676613, -0.035211022943258286, 0.028585193678736687, -0.017343012616038322, 0.025580037385225296, -0.03617049753665924, -0.06209449842572212, 0.05543246492743492, -0.002296862890943885, -0.009929688647389412, -0.05097904056310654, -0.03235069289803505, 0.027734335511922836, -0.022611087188124657, 0.01393958181142807, -0.02503693662583828, 0.028874848037958145, -0.0514497272670269, -0.09377536922693253, 0.011513732373714447, -0.012663295492529869, 0.019642136991024017, -0.020637821406126022, 0.016890428960323334, 0.0677427425980568, 0.011721921153366566, 0.01632017269730568, -0.0256886575371027, -0.01385811623185873, 0.010952528566122055, 0.009395640343427658, 0.03910324349999428, -0.07994440943002701, 0.0032291854731738567, -0.021108509972691536, -0.005679926835000515, 0.010083567351102829, -0.007263970095664263, 0.07712028175592422, 0.08269611746072769, 0.024204183369874954, -0.05800314247608185, 0.006376905832439661, -0.061551399528980255, -0.017804646864533424, -0.05597556754946709, -0.02706451155245304, 0.0018793543567880988, 0.030920526012778282, 0.006643930450081825, 0.04822733253240585, -0.021977469325065613, 0.0597410649061203, -0.09370295703411102, -0.04848077893257141, -0.016238708049058914, -0.018175765872001648, -0.011712869629263878, 0.03953772410750389, -0.06354276835918427, 0.00944995041936636, -0.009839172475039959, -0.006526258774101734, -0.04507734999060631, -0.038704968988895416, 0.02252057008445263, 0.022303329780697823, -0.04319459944963455, -0.024294698610901833, 0.028929157182574272, -0.00977581087499857, 0.004810966085642576, -0.015559831634163857, 0.004661613143980503, -0.028060195967555046, 0.03856014087796211, 0.029888635501265526, 0.016139138489961624, 0.03287568688392639, -0.005304282531142235, -0.04417217895388603, -0.044679075479507446, 0.04685147851705551, -0.0364239439368248, -0.04685147851705551, 0.02650330774486065, 0.003853751113638282, 0.019298173487186432, 0.01302536204457283, -0.01837490312755108, -0.009802965447306633, -0.04409976676106453, 0.047611817717552185, -0.003568623447790742, 0.020004205405712128, -0.04337563365697861, 0.03039553016424179, -0.039935994893312454, 0.01674560084939003, 0.022466260939836502, 0.015623193234205246, -0.040334269404411316, 0.04775664582848549, 0.03177138417959213, -0.07914786040782928, -0.011776231229305267 ]
7,465
pathlib
touch
Create this file with the given access mode, if it doesn't exist.
def touch(self, mode=0o666, exist_ok=True): """ Create this file with the given access mode, if it doesn't exist. """ self._accessor.touch(self, mode, exist_ok)
(self, mode=438, exist_ok=True)
[ 0.04476990923285484, 0.038970697671175, -0.0036969969514757395, 0.015326485969126225, 0.05891998112201691, -0.026792354881763458, -0.035888832062482834, 0.08357491344213486, -0.04533325880765915, -0.005703938193619251, 0.03370169922709465, 0.005140586290508509, 0.07051840424537659, -0.028316717594861984, -0.008371574804186821, -0.008342579007148743, 0.020529206842184067, -0.01609695330262184, -0.08330980688333511, 0.04129038006067276, 0.0402630940079689, -0.021324526518583298, -0.0139429597184062, -0.06123966723680496, 0.01564130000770092, 0.06568020582199097, -0.01593954488635063, 0.045730918645858765, 0.06707201898097992, -0.036021385341882706, -0.039600323885679245, -0.012633995153009892, 0.03449701890349388, 0.023014582693576813, -0.0015626802342012525, 0.038109101355075836, -0.04307985305786133, 0.06985563784837723, 0.002412885893136263, -0.013976098038256168, 0.016502896323800087, 0.006652523297816515, -0.013644714839756489, -0.004283131565898657, 0.0006482689059339464, -0.010306025855243206, 0.00010802324686665088, 0.029559405520558357, 0.0008636682177893817, -0.037148088216781616, 0.02545025199651718, 0.060013547539711, 0.0015502533642575145, -0.03777771815657616, -0.04211883991956711, 0.019468778744339943, 0.041555486619472504, 0.06872893124818802, -0.030901508405804634, -0.022683199495077133, 0.01757989265024662, 0.03391709923744202, 0.03174653649330139, -0.03141515329480171, -0.027852781116962433, 0.005728791933506727, -0.05984785780310631, -0.02192101627588272, 0.05272310972213745, 0.031365446746349335, 0.01595611497759819, -0.021738756448030472, 0.059251364320516586, 0.027786504477262497, 0.04182059317827225, 0.041986286640167236, -0.053452156484127045, 0.008446136489510536, 0.03757888823747635, -0.02825044095516205, -0.027339136227965355, -0.07403106987476349, 0.02114226669073105, 0.046062301844358444, -0.01996585540473461, 0.05935078114271164, 0.03290637955069542, -0.04934300109744072, -0.029940497130155563, 0.015591592527925968, 0.010769963264465332, 0.0409921370446682, -0.049773797392845154, -0.078670434653759, 0.03820851445198059, -0.045730918645858765, -0.01692541129887104, 0.0216062031686306, 0.014489742927253246, 0.033966805785894394, -0.030189035460352898, -0.019949285313487053, -0.00633356673642993, -0.03549117222428322, 0.006312855053693056, 0.002054577460512519, -0.012940525077283382, -0.0022078424226492643, -0.005459542851895094, -0.014332335442304611, -0.06959053128957748, 0.04235081002116203, 0.02112569659948349, -0.04066075384616852, -0.03691611811518669, -0.006341851316392422, 0.052325449883937836, -0.03791027143597603, -0.013984383083879948, -0.04692390188574791, 0.041522350162267685, -0.03549117222428322, 0.0018764589913189411, -0.03342002257704735, 0.04109155014157295, 0.016246074810624123, -0.010040919296443462, 0.044604215770959854, 0.08324352651834488, -0.011233899742364883, -0.04433910921216011, 0.008814800530672073, 0.060212377458810806, -0.0033304039388895035, -0.014332335442304611, -0.03595510870218277, 0.034430742263793945, -0.00982552021741867, -0.06157105043530464, 0.03496095538139343, 0.0033573289401829243, -0.08768406510353088, -0.00713717145845294, 0.02177189476788044, -0.02694147638976574, 0.027968766167759895, -0.045399535447359085, 0.03131574019789696, 0.024704638868570328, 0.051828376948833466, 0.02225240133702755, 0.03317148610949516, -0.05302135646343231, 0.037678301334381104, 0.024422962218523026, -0.009974642656743526, 0.009875227697193623, -0.005890341475605965, -0.0014498027740046382, -0.01902141235768795, -0.016320636495947838, 0.03857303783297539, 0.015268493443727493, 0.0067063733004033566, 0.02013154700398445, 0.02631184831261635, -0.04158862680196762, 0.0648186057806015, 0.04725528508424759, 0.012460018508136272, 0.030735816806554794, 0.05090050399303436, 0.07575426250696182, 0.004299700725823641, 0.02965882048010826, -0.017149094492197037, 0.01138302218168974, -0.05285566300153732, 0.018789444118738174, -0.006590388715267181, 0.03139858320355415, -0.03413249924778938, -0.01691712625324726, 0.03189565986394882, 0.05381667613983154, 0.06524940580129623, -0.029228022322058678, 0.011457583867013454, 0.018955135717988014, 0.008479274809360504, 0.0030093761160969734, 0.00863253977149725, 0.0017501190304756165, -0.0020390439312905073, 0.013686137273907661, 0.0025806487537920475, -0.03704867139458656, -0.03192879632115364, -0.019601332023739815, 0.05616949871182442, -0.013180777430534363, 0.03963346406817436, 0.04407400265336037, 0.013934675604104996, 0.035226061940193176, 0.015218785963952541, 0.07005446404218674, 0.0037073525600135326, -0.05752817168831825, 0.00078082230174914, 0.05043656378984451, -0.021821601316332817, 0.03161398321390152, 0.04162176325917244, 0.029890790581703186, 0.014655434526503086, -0.01119247730821371, 0.03794340789318085, -0.07416362315416336, 0.06826499849557877, -0.033287469297647476, 0.04374261945486069, -0.04092586040496826, -0.017861569300293922, 0.006743653677403927, -0.006172017194330692, -0.006151305977255106, -0.05093364045023918, -0.03728064149618149, 0.007650815881788731, 0.01138302218168974, 0.01953505538403988, -0.027786504477262497, -0.022981444373726845, -0.026974614709615707, -0.04278160631656647, 0.03096778690814972, 0.0012167986715212464, -0.04115782678127289, -0.006635954137891531, -0.013205631636083126, 0.028316717594861984, 0.0631616935133934, 0.06614413857460022, 0.07926692813634872, -0.045730918645858765, 0.019733885303139687, -0.008139606565237045, -0.015160794369876385, -0.0518946535885334, 0.04546581208705902, 0.0015336842043325305, -0.09782440215349197, 0.03681670501828194, 0.013992667198181152, -0.04019681736826897, -0.0021167120430618525, 0.0016952336300164461, 0.0002720968914218247, 0.03532547876238823, -0.032674409449100494, -0.01660231314599514, 0.01152386050671339, -0.0335194393992424, 0.03171340003609657, -0.03138201683759689, 0.0016652019694447517, 0.00879823137074709, -0.07933320105075836, 0.025367405265569687, -0.016494613140821457, 0.00830115657299757, -0.010678832419216633, -0.0300067737698555, -0.005882056895643473, -0.024787483736872673, 0.017960984259843826, 0.0067809345200657845, 0.02452237717807293, 0.043941449373960495, 0.01645318977534771, 0.016212936490774155, 0.03254185616970062, 0.010190041735768318, -0.06326110661029816, -0.004198214504867792, -0.026361554861068726, 0.04367634281516075, -0.011117915622889996, -0.02694147638976574, 0.00003838093834929168, 0.04917730763554573, -0.04599602520465851, -0.011739259585738182, 0.023113997653126717, -0.00778336962684989, -0.08099012076854706, -0.013147639110684395, 0.03585569187998772, -0.04947555437684059, -0.017679309472441673, 0.011838674545288086, -0.09954759478569031, 0.035690002143383026, -0.0024688069242984056, -0.013537014834582806, -0.002383889863267541, 0.002276190323755145, -0.008371574804186821, 0.05302135646343231, 0.021887877956032753, -0.03277382627129555, -0.019750455394387245, 0.07476010918617249, 0.031829383224248886, 0.03993171080946922, -0.001553360023535788, 0.01063740998506546, 0.011838674545288086, 0.017513616010546684, -0.02513543702661991, 0.001336925197392702, -0.035690002143383026, -0.01079481653869152, 0.006760222837328911, -0.01087766233831644, 0.040859583765268326, 0.048746511340141296, -0.051033057272434235, 0.05414805933833122, -0.05341901630163193, 0.04301357641816139, 0.08085756748914719, 0.02869780920445919, -0.119298055768013, 0.01820952259004116, -0.005654230713844299, -0.051033057272434235, 0.05679912865161896, 0.03721436485648155, -0.020529206842184067, 0.01756332442164421, -0.04964124411344528, -0.03515978530049324, 0.04172118008136749, 0.014373758807778358, 0.06581275910139084, 0.04158862680196762, 0.05988099426031113, 0.0016382770845666528, -0.0057495031505823135, 0.04019681736826897, -0.015608161687850952, -0.008118894882500172, 0.015591592527925968, -0.06617727875709534, 0.017977554351091385, -0.013520445674657822, 0.0027608387172222137, -0.05729620158672333, -0.03777771815657616, 0.015500462613999844, 0.015152509324252605, -0.04510129243135452, -0.004647653084248304, -0.05050284042954445, -0.05166268348693848, 0.030768955126404762, -0.02385961078107357, -0.04533325880765915, 0.016701728105545044, -0.06737025827169418, 0.016560889780521393, 0.017314786091446877, 0.044107139110565186, -0.041190966963768005, 0.01627921313047409, 0.005111590027809143, -0.02033037692308426, 0.03406622260808945, 0.02674264647066593, -0.02873094752430916, -0.006963195279240608, 0.001026771031320095, 0.0022326961625367403, 0.004274846985936165, -0.004606230184435844, 0.011631560511887074, 0.04884592443704605, 0.02064519003033638, 0.03305550292134285, 0.018325505778193474, -0.021970724686980247, 0.005811637733131647, 0.006627669557929039, 0.041853733360767365, 0.019733885303139687, 0.04516756907105446, -0.027985334396362305, 0.062333233654499054, 0.00926216784864664, 0.0009604942752048373, -0.011250468902289867, 0.044272832572460175, -0.017994122579693794, 0.03290637955069542, 0.006234151776880026, -0.029708528891205788, 0.04036250710487366, -0.007369140163064003, -0.022683199495077133, 0.040892720222473145, -0.005679084453731775, 0.010007780976593494, 0.029161745682358742, 0.08185172080993652, -0.00008213391265599057, -0.048150017857551575, 0.0005726720555685461, 0.0017231940291821957, 0.007721235044300556, -0.0019272019853815436, -0.01483769528567791, 0.0760856494307518, -0.013354754075407982, 0.0041526490822434425, -0.011333314701914787, 0.022368384525179863, -0.011822105385363102, 0.04752039164304733, 0.022666629403829575, 0.0033304039388895035, -0.044736769050359726, 0.048150017857551575, 0.003794340882450342, -0.03966660052537918, -0.007418847642838955, -0.05113247036933899, -0.05560614913702011, 0.05563928559422493, 0.0204960685223341, -0.0037094238214194775, 0.052159760147333145, -0.01594782993197441, -0.03979915753006935, -0.018739735707640648, -0.006478547118604183, 0.01428262796252966, 0.07840532809495926, 0.00854969397187233, 0.08284586668014526, 0.04771922156214714, 0.03625335171818733, 0.029609113931655884, -0.07833905518054962, -0.040229953825473785, -0.06965680420398712, -0.061372220516204834, 0.016544319689273834, -0.021639341488480568, -0.0053559853695333, 0.07489266246557236, 0.007650815881788731, -0.08748523890972137, 0.0013048223918303847, -0.03708181157708168, -0.014390327967703342, -0.026974614709615707, 0.01728164777159691, -0.01492054108530283, 0.008723669685423374, -0.08112267404794693, -0.007928350009024143, 0.0009630832355469465, -0.03661787509918213, 0.009046768769621849, 0.008640823885798454, -0.005016317591071129, 0.03612079843878746, 0.0013648857129737735, 0.014440035447478294, -0.03320462629199028, -0.04901161789894104, 0.04897847771644592, 0.02530112862586975, -0.01072025578469038, -0.0172650795429945, -0.0067395116202533245, -0.035226061940193176, -0.021987292915582657, -0.007526547182351351, -0.05573870241641998, -0.02969195879995823, -0.04241708666086197, -0.007895211689174175, 0.026013603433966637, -0.03950091078877449, 0.01723194122314453, -0.092323437333107, -0.05719678848981857, -0.014912256971001625, -0.031365446746349335, 0.007298721000552177, -0.0030176606960594654, -0.058290354907512665, 0.053949229419231415, 0.024472670629620552, -0.07197649031877518, -0.003050799248740077, -0.03320462629199028, 0.002646925626322627, 0.01500338688492775, -0.005057740490883589, 0.02480405382812023, 0.049442414194345474, 0.007418847642838955, -0.03171340003609657, -0.05752817168831825, -0.03575627878308296, -0.06793361157178879, 0.026394693180918694, -0.04374261945486069, 0.059748440980911255, -0.015757285058498383, -0.006867922376841307, -0.01579870656132698, 0.012078927829861641, 0.009974642656743526, 0.05401550605893135, 0.02001556195318699, 0.007485124282538891, -0.04301357641816139, 0.020081838592886925, -0.03973287716507912, 0.02276604436337948, 0.0059980410151183605, 0.00862425472587347, -0.019286518916487694, -0.03665101155638695, -0.014961964450776577, 0.021639341488480568, -0.009369867853820324, 0.014688572846353054, -0.02289859764277935, -0.006432981695979834, -0.03353600949048996, -0.03628649190068245, -0.12128635495901108, 0.08496672660112381, -0.021208543330430984, 0.005285566672682762, 0.012650564312934875, 0.029708528891205788, 0.04311298951506615, 0.03365199267864227, -0.018806012347340584, 0.030884940177202225, -0.0760856494307518, 0.014903971925377846, 0.014464888721704483, -0.04496873915195465, -0.02066176012158394, 0.010653979144990444, -0.017033111304044724, 0.020396653562784195, 0.041853733360767365, 0.002392174443230033, 0.01225290447473526, 0.046062301844358444, -0.0609414204955101, 0.01774558611214161, 0.047155868262052536, 0.03532547876238823, -0.031531136482954025, 0.049773797392845154, 0.00024077080888673663, 0.02997363545000553, 0.06551451236009598, 0.017679309472441673, -0.030404433608055115, -0.05954961106181145, -0.03050384856760502, -0.03608766198158264, -0.04692390188574791, -0.01321391575038433, -0.05855546146631241, 0.012609140947461128, 0.04138979688286781, -0.04258277639746666, 0.0016444905195385218, -0.03916952759027481, 0.007377424743026495, 0.02467150054872036, -0.09835461527109146, -0.016154944896697998, -0.014332335442304611, 0.008516555652022362, -0.0768146887421608, -0.013586722314357758, 0.006743653677403927, -0.017165664583444595, -0.023760195821523666, -0.023180274292826653, -0.0009092334075830877, -0.055208489298820496, 0.014348904602229595, -0.03993171080946922, 0.031348876655101776, -0.005430546589195728, 0.022202692925930023, -0.012708556838333607, -0.008147891610860825, 0.0012665062677115202, 0.01820952259004116, 0.03156427666544914, 0.05891998112201691, -0.01580699160695076, 0.011126200668513775, 0.006598673295229673, 0.0128328250721097, -0.09046769142150879, -0.04659251868724823, -0.01804383099079132, 0.012617425993084908, -0.07807394862174988, -0.009485851973295212, 0.017165664583444595, 0.04563150554895401, -0.02225240133702755, -0.03403308242559433, -0.00047947047278285027, -0.002651067916303873, 0.0074975513853132725, 0.007841361686587334, 0.012294326908886433, -0.04404086247086525, -0.043444372713565826, -0.019435640424489975, 0.049442414194345474, 0.043941449373960495, -0.00713717145845294, -0.0716451108455658, 0.021871309727430344, -0.03979915753006935, -0.07118117064237595, -0.04109155014157295, 0.03857303783297539, -0.016204651445150375, 0.003881328972056508, -0.0002689901739358902, -0.004436396528035402, -0.06243264675140381, -0.01870659738779068, -0.005331131629645824, 0.03115004673600197, 0.0021933442912995815, 0.008591116406023502, -0.051364440470933914, -0.046526242047548294, 0.020363515242934227, -0.013023370876908302, -0.015691008418798447, -0.020545775070786476, 0.03139858320355415, 0.04447166249155998, 0.029890790581703186, -0.015434185042977333, -0.014614011161029339, -0.05597066879272461, 0.03255842626094818, -0.020612051710486412, 0.015111086890101433, 0.01966760866343975, 0.019800161942839622, 0.040727030485868454, -0.01661059632897377, 0.03310520946979523, 0.038606174290180206, 0.04324554279446602, 0.03628649190068245, 0.007932491600513458, 0.020694898441433907, 0.03368512913584709, -0.0845690667629242, 0.01743077114224434, 0.04241708666086197, 0.03694925829768181, 0.018905427306890488, -0.009005346335470676, -0.07873671501874924, -0.028101319447159767, 0.016030676662921906, -0.03254185616970062, 0.012070642784237862, -0.05563928559422493, -0.03413249924778938, 0.008657393045723438, 0.1054462194442749, 0.011623275466263294, -0.01984987035393715, 0.004032522905617952, 0.08238193392753601, 0.029708528891205788, -0.016842564567923546, -0.018424920737743378, -0.025599373504519463, -0.05176210030913353, -0.02291516773402691, 0.04351064935326576, -0.06919287145137787, -0.022136416286230087, 0.02223583124577999, 0.058124661445617676, -0.008814800530672073, 0.026510678231716156, -0.05643460527062416, -0.0029327438678592443, 0.0011650200467556715, 0.020264100283384323, 0.016809426248073578, 0.004643511027097702, 0.005811637733131647, -0.010943938978016376, -0.047984328120946884, -0.03744633123278618, -0.07814022153615952, -0.04980693757534027, -0.03227674961090088, -0.0008222452597692609, 0.020744604989886284, 0.013644714839756489, -0.011672982946038246, -0.02738884463906288, 0.0216062031686306, 0.011672982946038246, 0.014241204597055912, -0.02480405382812023, 0.015757285058498383, -0.008031907491385937, 0.043610066175460815, -0.0338011160492897, 0.011880097910761833, -0.05129816383123398, -0.044239696115255356, 0.03535861894488335, 0.014241204597055912, 0.029145177453756332, 0.05772700160741806, -0.03065297193825245, 0.06369190663099289, 0.0248371921479702, -0.011308461427688599, 0.007920064963400364, 0.043477512896060944, 0.04712273180484772, -0.006192728877067566, 0.007770942524075508, 0.008731954731047153, 0.03325433284044266, 0.002733913715928793, -0.0045233843848109245, -0.010985362343490124, -0.040229953825473785, -0.0028996055480092764, 0.02289859764277935, 0.03139858320355415, -0.011366453021764755, 0.03562372550368309 ]
7,466
pathlib
unlink
Remove this file or link. If the path is a directory, use rmdir() instead.
def unlink(self, missing_ok=False): """ Remove this file or link. If the path is a directory, use rmdir() instead. """ try: self._accessor.unlink(self) except FileNotFoundError: if not missing_ok: raise
(self, missing_ok=False)
[ 0.021585553884506226, 0.03884352743625641, -0.01625460386276245, 0.023557396605610847, 0.014431086368858814, -0.01992781274020672, -0.025599036365747452, 0.07503467053174973, -0.005928611382842064, 0.056084051728248596, 0.02807692624628544, -0.00566249992698431, 0.08550462126731873, -0.004824903793632984, -0.05374576151371002, 0.02264999970793724, 0.00377572700381279, 0.03189845755696297, -0.010286729782819748, -0.05168667063117027, -0.0066833202727139, 0.022231202572584152, -0.020992256700992584, -0.003291491651907563, 0.013035092502832413, 0.08871540427207947, 0.023487595841288567, -0.0030341052915900946, 0.0002511152997612953, 0.015015658922493458, 0.0010655359365046024, 0.014422360807657242, 0.0214983057230711, 0.0226150993257761, 0.022178851068019867, 0.040239520370960236, 0.0003432726953178644, 0.0017635328695178032, -0.056014250963926315, -0.01652507670223713, -0.003557603107765317, 0.042822111397981644, 0.020241910591721535, -0.016734475269913673, 0.056642450392246246, -0.003188973292708397, -0.044985901564359665, 0.014736459590494633, -0.04959268122911453, -0.0042054313234984875, 0.014675385318696499, 0.027221878990530968, 0.006901444401592016, 0.008114214055240154, 0.019299615174531937, -0.02376679517328739, 0.010836401954293251, 0.03423674777150154, -0.0005845724372193217, -0.0045806048437952995, 0.08731941133737564, 0.00786555279046297, -0.03565019369125366, -0.03741263598203659, 0.06201702728867531, -0.013794164173305035, -0.0042708683758974075, -0.0041618067771196365, 0.030519915744662285, -0.0021681529469788074, -0.059818334877491, 0.02238825149834156, 0.004759466275572777, 0.009283359162509441, 0.0526987686753273, 0.014937133528292179, 0.02455204166471958, -0.011673998087644577, 0.06843859702348709, -0.05695654824376106, 0.01914256624877453, -0.04837118461728096, -0.007241718005388975, -0.00805313978344202, -0.009108860045671463, -0.008912548422813416, 0.08264283090829849, -0.05880624055862427, 0.020276810973882675, 0.006718220189213753, 0.001010459614917636, -0.043869104236364365, -0.023679545149207115, -0.08431802690029144, 0.021149305626749992, -0.020678158849477768, -0.002536782529205084, -0.029542719945311546, 0.027344029396772385, -0.08452742546796799, 0.027675578370690346, -0.03772673383355141, -0.03106086328625679, 0.02526748739182949, 0.031113212928175926, 0.018252618610858917, -0.001107524731196463, -0.08117704093456268, -0.00572793697938323, 0.03174141049385071, -0.103163942694664, -0.018479468300938606, -0.017842546105384827, 0.03046756610274315, 0.024813789874315262, -0.032613907009363174, 0.006883994676172733, -0.06711240112781525, 0.021445954218506813, -0.02739637903869152, 0.005749749485403299, -0.05566525459289551, -0.04742889106273651, -0.07531386613845825, 0.08375962823629379, 0.0012007728219032288, 0.010810227133333683, 0.0019576631020754576, 0.024203043431043625, -0.023033898323774338, -0.018706317991018295, -0.0021670623682439327, -0.02003251202404499, -0.013523690402507782, -0.02333054691553116, 0.010443778708577156, 0.01652507670223713, -0.010583378374576569, 0.028321225196123123, 0.004362480714917183, 0.002316477242857218, -0.018252618610858917, 0.007254805415868759, 0.02929842099547386, 0.05957403779029846, 0.011255200020968914, -0.031340062618255615, 0.00004590829121298157, -0.021847303956747055, -0.02343524619936943, -0.0233654472976923, 0.0007879730546846986, 0.041775114834308624, 0.0014930589823052287, -0.003555421717464924, 0.04833628609776497, -0.04694029316306114, 0.024464791640639305, -0.07747765630483627, -0.030136017128825188, 0.06986948847770691, 0.026593683287501335, 0.04264761134982109, -0.0036623026244342327, -0.0020231003873050213, -0.02071305923163891, 0.032893106341362, -0.007342054974287748, 0.0006271065794862807, 0.05311756581068039, -0.024831240996718407, 0.006757482420653105, 0.04418320581316948, 0.002175787230953574, -0.006905807182192802, 0.00723299290984869, 0.02291174791753292, 0.006888356991112232, -0.003716833656653762, -0.002040550345554948, -0.0008730414556339383, -0.02369699440896511, 0.021428504958748817, -0.042333513498306274, 0.010976001620292664, 0.06972989439964294, -0.05262896791100502, -0.01797342114150524, 0.004659129306674004, -0.001764623448252678, -0.017510997131466866, 0.04215901345014572, 0.029821917414665222, 0.04892958328127861, 0.029141370207071304, -0.03554549440741539, -0.0214983057230711, 0.0384945310652256, 0.0015574055723845959, 0.010923651978373528, -0.008615899831056595, 0.012380720116198063, 0.0008119667181745172, 0.027727928012609482, -0.029996417462825775, -0.019526463001966476, -0.0009237552876584232, -0.01512035820633173, -0.03950662538409233, 0.0725218802690506, 0.03800593316555023, -0.003631765255704522, 0.03727303445339203, -0.0110283512622118, 0.011970646679401398, -0.02268490009009838, -0.03472534567117691, 0.015574055723845959, -0.015748554840683937, 0.042891908437013626, -0.0325092077255249, 0.03046756610274315, 0.05402496084570885, -0.005069202743470669, 0.02216140180826187, -0.00977195706218481, -0.0005633053369820118, 0.02683798037469387, 0.02530238777399063, -0.04910408332943916, 0.03982072323560715, 0.025389637798070908, 0.019386863335967064, -0.01319214142858982, 0.039681125432252884, -0.07245208323001862, -0.02425539307296276, 0.007215543184429407, -0.03076421469449997, -0.008807848207652569, -0.059190139174461365, -0.007071581203490496, -0.006788020022213459, 0.040797919034957886, 0.06491371244192123, 0.017031123861670494, 0.03106086328625679, -0.009649807587265968, -0.002098353113979101, -0.11391309648752213, 0.009065235033631325, 0.008362875320017338, -0.004443186800926924, 0.03420184925198555, 0.03409714996814728, -0.051267873495817184, -0.05510685592889786, -0.03566764295101166, -0.005658137612044811, 0.05353636294603348, 0.02706483006477356, -0.02795477584004402, 0.008873285725712776, 0.03681933879852295, -0.004755103960633278, -0.009937730617821217, 0.026593683287501335, 0.05929483845829964, 0.016568701714277267, 0.009614907205104828, 0.07684946060180664, -0.05091887339949608, 0.02594803459942341, -0.07384807616472244, 0.010339079424738884, 0.04104221984744072, -0.04247311130166054, -0.061353929340839386, 0.05276856571435928, 0.046067796647548676, 0.0066833202727139, -0.046137597411870956, 0.047638289630413055, 0.039716023951768875, -0.009030334651470184, 0.019910361617803574, -0.029176270589232445, 0.011089425534009933, -0.013087442144751549, 0.07377827167510986, 0.057061247527599335, -0.05528135597705841, -0.03779653459787369, 0.055002156645059586, 0.025808434933423996, 0.0207479577511549, -0.08815701305866241, 0.03072931431233883, 0.028042025864124298, -0.010155854746699333, -0.032875653356313705, 0.013157241977751255, -0.037656933069229126, 0.044427502900362015, -0.0005254062707535923, -0.07573266327381134, 0.05095377564430237, 0.012057896703481674, 0.010461228899657726, 0.030711865052580833, 0.026209784671664238, -0.05402496084570885, -0.023313097655773163, 0.03873882815241814, 0.07398767024278641, -0.018304968252778053, 0.0016544708050787449, 0.00022575836919713765, -0.04432280361652374, -0.026227233931422234, -0.04687049239873886, 0.01418678741902113, -0.03411459922790527, 0.01652507670223713, -0.015539156273007393, -0.009361883625388145, -0.026977580040693283, 0.06030693277716637, -0.05932973697781563, 0.050709474831819534, 0.024499692022800446, 0.03957642614841461, 0.04833628609776497, -0.019823111593723297, -0.07573266327381134, 0.004279593471437693, 0.05301286652684212, -0.04324090853333473, 0.03982072323560715, 0.04051871970295906, -0.0489644818007946, 0.018322419375181198, -0.011359899304807186, -0.00557961268350482, -0.05454845726490021, 0.041251618415117264, -0.004100732039660215, -0.001206225948408246, 0.026262134313583374, -0.035231392830610275, 0.04379930719733238, 0.0953463762998581, -0.04358990862965584, 0.010400153696537018, -0.007813203148543835, 0.024360092356801033, -0.011543123982846737, 0.04324090853333473, 0.028495723381638527, -0.04983697831630707, 0.035126693546772, 0.0057671996764838696, -0.028844721615314484, -0.040728118270635605, 0.006748757790774107, -0.030781663954257965, -0.051861170679330826, 0.015068008564412594, -0.01197937224060297, -0.016839176416397095, 0.01940431445837021, -0.07496486604213715, 0.016795551404356956, 0.0030668238177895546, 0.08068844676017761, 0.029839368537068367, 0.04174021631479263, -0.010024980641901493, 0.006827282253652811, -0.005985323339700699, -0.03859923034906387, 0.024063443765044212, 0.009501483291387558, -0.049697380512952805, 0.01497203391045332, -0.0007808840600773692, -0.03898312896490097, 0.02100970782339573, 0.01950901374220848, 0.011394799686968327, 0.010182029567658901, -0.03996032476425171, 0.012947842478752136, -0.011359899304807186, -0.04781278967857361, -0.03982072323560715, 0.04219391196966171, 0.006517546251416206, -0.014282762072980404, -0.03128771111369133, 0.01697004958987236, 0.031148111447691917, -0.08690061420202255, 0.03985562548041344, -0.005967873614281416, 0.04540469869971275, -0.00817092601209879, 0.03898312896490097, 0.005762836895883083, -0.0474637895822525, 0.0022750336211174726, 0.02938566915690899, 0.004338487051427364, 0.022039253264665604, 0.040344223380088806, 0.06557680666446686, 0.006430296692997217, -0.05685184895992279, 0.043869104236364365, 0.014265311881899834, -0.005605787504464388, 0.027867525815963745, -0.027797726914286613, 0.02189965359866619, -0.01101090107113123, -0.003330754116177559, -0.0034943469800055027, 0.0006870907382108271, -0.041775114834308624, 0.053850460797548294, 0.026663482189178467, -0.049208782613277435, 0.021847303956747055, -0.0010475406888872385, -0.04006502404808998, 0.03591194003820419, -0.036051541566848755, -0.030415214598178864, -0.05510685592889786, 0.003937138710170984, -0.016847901046276093, -0.010504853911697865, -0.007957165129482746, 0.0020907188300043344, -0.016202254220843315, -0.03880862891674042, -0.002114712493494153, 0.012005547061562538, 0.0073813172057271, 0.017545897513628006, -0.016167353838682175, -0.020905006676912308, 0.019561363384127617, -0.02497083880007267, -0.06117942929267883, -0.03353875130414963, -0.03566764295101166, -0.0026742005720734596, -0.026593683287501335, 0.036016639322042465, 0.0014952402561903, 0.10037195682525635, 0.024813789874315262, -0.08236363530158997, -0.0017209986690431833, 0.012180046178400517, 0.04425300285220146, -0.024883590638637543, -0.010967276059091091, -0.038215331733226776, 0.0057846494019031525, -0.06037673354148865, -0.009920281358063221, 0.06107473000884056, -0.0314098596572876, 0.04303150996565819, 0.0007034500013105571, 0.023156046867370605, 0.00973705668002367, -0.0437295064330101, 0.017859995365142822, -0.05796864256262779, 0.015617680735886097, 0.003045011544600129, 0.02045130915939808, 0.006090023089200258, -0.014282762072980404, -0.00818401388823986, 0.026593683287501335, -0.053885363042354584, 0.02411579340696335, -0.02470909059047699, -0.01858416758477688, -0.03636563941836357, 0.03570254147052765, -0.009684707038104534, -0.056991446763277054, 0.03301525488495827, -0.015757279470562935, -0.06306402385234833, 0.03540589287877083, -0.03741263598203659, -0.05063967779278755, 0.015757279470562935, 0.03804083168506622, 0.010312904603779316, 0.02399364300072193, 0.004680941812694073, -0.044427502900362015, -0.026331933215260506, -0.05629345029592514, 0.0755232647061348, 0.038703929632902145, 0.052419569343328476, 0.05154707282781601, 0.0007258077384904027, -0.03996032476425171, -0.022370800375938416, 0.03095616213977337, 0.0289668720215559, -0.0166297759860754, -0.04016972333192825, -0.004864166025072336, -0.023156046867370605, -0.02994406782090664, -0.004584967158734798, -0.04980207979679108, 0.06938089430332184, 0.039681125432252884, 0.028722573071718216, 0.029961517080664635, 0.01525123231112957, -0.020573459565639496, -0.04582349583506584, 0.009492757730185986, 0.019858011975884438, -0.014623035676777363, -0.01651635207235813, 0.05901563912630081, -0.025284938514232635, 0.015670031309127808, 0.03573744371533394, 0.012843143194913864, 0.04306640848517418, -0.025703735649585724, -0.035266295075416565, -0.000012184272236481775, -0.011229025200009346, 0.04844098538160324, 0.03489984571933746, -0.03835492953658104, 0.04097241908311844, 0.024360092356801033, 0.031758859753608704, 0.041216716170310974, 0.024918489158153534, -0.02216140180826187, -0.042333513498306274, 0.04735909029841423, -0.03723813593387604, -0.047044992446899414, -0.008288713172078133, 0.05116317421197891, 0.006949431728571653, 0.07733805477619171, -0.008759860880672932, 0.025441987439990044, -0.04802218824625015, 0.07231248170137405, -0.04331070929765701, -0.017668046057224274, -0.014553235843777657, 0.044392604380846024, -0.05112827569246292, -0.002232499420642853, 0.006613520905375481, -0.006264522206038237, -0.016961324959993362, -0.0005234976997599006, -0.022492950782179832, -0.028495723381638527, -0.03643544018268585, 0.029874267056584358, -0.03842473030090332, -0.04212411493062973, -0.07992064952850342, 0.0036688463296741247, 0.036644838750362396, -0.06791509687900543, -0.0017242705216631293, -0.024988289922475815, -0.042228814214468, 0.0035008906852453947, -0.060202233493328094, 0.02594803459942341, -0.002844337373971939, 0.04247311130166054, -0.05011617764830589, -0.04467180371284485, 0.05423435941338539, 0.06334321945905685, -0.07531386613845825, 0.033695802092552185, 0.009562557563185692, -0.040134821087121964, 0.08543482422828674, -0.07049769163131714, -0.04219391196966171, -0.046521496027708054, -0.00007327604544116184, -0.025790985673666, -0.00449335528537631, 0.02490103989839554, 0.00850247498601675, -0.0036950211506336927, 0.02059090882539749, -0.007298430427908897, -0.03397500142455101, -0.04617249593138695, 0.05412966012954712, -0.047498688101768494, -0.12570925056934357, -0.031113212928175926, 0.03334680199623108, -0.05618875101208687, 0.04048382118344307, -0.010147130116820335, 0.044950999319553375, -0.037133436650037766, 0.0646694153547287, -0.0362609401345253, -0.058561939746141434, 0.03908782824873924, 0.04878998547792435, -0.02333054691553116, -0.05678204819560051, 0.016612326726317406, -0.036540139466524124, 0.06662380695343018, 0.0004444277146831155, 0.019334513694047928, -0.05465315654873848, -0.08906440436840057, 0.02758832834661007, -0.06452981382608414, -0.02964741922914982, 0.021812403574585915, -0.027274228632450104, 0.028687672689557076, 0.008768586441874504, -0.019194915890693665, 0.014256587252020836, 0.03334680199623108, -0.06732179969549179, 0.03495219722390175, -0.015478081069886684, 0.04641679301857948, -0.021166756749153137, -0.06271502375602722, 0.04620739445090294, -0.0284084752202034, -0.04903428256511688, -0.008402138017117977, 0.04481140151619911, -0.005139002110809088, -0.011769972741603851, 0.039646223187446594, 0.008864561095833778, -0.06714729964733124, -0.028774922713637352, -0.010356529615819454, -0.008546099998056889, -0.025058088824152946, -0.026262134313583374, 0.002896687248721719, 0.006098748184740543, 0.010592103004455566, -0.026454083621501923, -0.010888751596212387, 0.014692834578454494, -0.06274992227554321, 0.02661113254725933, -0.034969646483659744, 0.02399364300072193, 0.010784052312374115, 0.04526510089635849, 0.04470670223236084, 0.04882488399744034, -0.009370608255267143, -0.045579198747873306, -0.04882488399744034, 0.008646436966955662, 0.019753312692046165, 0.011612923815846443, -0.06110962852835655, -0.017851270735263824, 0.03720323368906975, 0.010827677324414253, 0.02556413784623146, -0.03420184925198555, 0.07915285229682922, 0.010941101238131523, 0.02284194901585579, -0.03221255913376808, -0.0035663279704749584, -0.0313924103975296, -0.019299615174531937, -0.01861906796693802, -0.05248936638236046, 0.0325092077255249, 0.030066216364502907, 0.011054526083171368, 0.023784244433045387, -0.027117179706692696, 0.04899938404560089, -0.012843143194913864, -0.0037146522663533688, -0.030973613262176514, -0.019578812643885612, -0.03046756610274315, 0.019980162382125854, -0.013794164173305035, 0.024045994505286217, 0.0062296222895383835, -0.009824306704103947, -0.032613907009363174, -0.010086055845022202, -0.04156571626663208, -0.024831240996718407, 0.055560555309057236, 0.01678682491183281, 0.006761845201253891, -0.015076733194291592, 0.06163312867283821, -0.0029730305541306734, -0.005274238996207714, 0.05472295731306076, 0.07768705487251282, 0.07245208323001862, -0.0031148111447691917, -0.02444734238088131, 0.026401733979582787, -0.0054051135666668415, -0.0474637895822525, 0.04889468476176262, -0.01512035820633173, 0.0011516949161887169, 0.07032319158315659, -0.020730508491396904, -0.0029926616698503494, 0.01353241503238678, -0.03046756610274315, -0.03020581603050232, 0.07929244637489319, 0.02268490009009838, -0.03901802748441696, -0.02055600844323635, 0.01497203391045332, 0.00471147894859314, -0.017921071499586105, 0.013951213099062443, 0.012310920283198357, -0.002658932004123926, -0.034149497747421265, 0.04352010786533356, 0.01246797014027834, -0.06529761105775833, -0.003409278579056263 ]
7,467
pathlib
with_name
Return a new path with the file name changed.
def with_name(self, name): """Return a new path with the file name changed.""" if not self.name: raise ValueError("%r has an empty name" % (self,)) drv, root, parts = self._flavour.parse_parts((name,)) if (not name or name[-1] in [self._flavour.sep, self._flavour.altsep] or drv or root or len(parts) != 1): raise ValueError("Invalid name %r" % (name)) return self._from_parsed_parts(self._drv, self._root, self._parts[:-1] + [name])
(self, name)
[ 0.004537875298410654, -0.031104139983654022, -0.016566915437579155, 0.05270077660679817, -0.060926370322704315, -0.08254081010818481, 0.013878464698791504, 0.06210145354270935, 0.06580474972724915, 0.0116885332390666, 0.018801357597112656, -0.011563903652131557, 0.01924646645784378, 0.08318176120519638, 0.0018171530682593584, -0.008372480049729347, 0.056795768439769745, 0.06316971033811569, -0.06174536794424057, 0.024391913786530495, 0.03026733733713627, -0.0056083593517541885, 0.024747999384999275, -0.028166428208351135, -0.000875749799888581, 0.07046948373317719, 0.004261908121407032, 0.04824969545006752, -0.03076585754752159, -0.09130053222179413, -0.017457131296396255, -0.011394762434065342, 0.03163826838135719, 0.00802084431052208, 0.019353291019797325, 0.003569765482097864, -0.02918127365410328, 0.007517872378230095, -0.0031446872744709253, -0.019353291019797325, 0.05369781702756882, -0.010736002586781979, -0.028023993596434593, -0.015169276855885983, 0.001330872648395598, 0.008176632225513458, 0.003436232917010784, 0.04226744547486305, -0.017777608707547188, 0.05490851029753685, -0.001368706813082099, 0.012302782386541367, -0.01874794438481331, 0.02108030952513218, 0.01647789403796196, 0.017572859302163124, 0.07349621504545212, 0.051561299711465836, -0.015311711467802525, 0.007460008375346661, 0.006814601831138134, -0.03742467239499092, 0.05177495256066322, -0.00531458854675293, -0.01582803763449192, -0.004190690815448761, 0.029216881841421127, -0.019905226305127144, -0.05437438189983368, 0.051952995359897614, 0.0180357713252306, 0.013299823738634586, -0.02556699700653553, -0.0052656265906989574, 0.012810205109417439, 0.060605891048908234, -0.06587596982717514, -0.0025326639879494905, 0.021187135949730873, -0.003153589554131031, -0.023288045078516006, -0.022789524868130684, -0.034647200256586075, -0.0449737012386322, -0.039703626185655594, 0.011376958340406418, -0.05056425929069519, -0.12106934934854507, 0.022593677043914795, -0.020742028951644897, -0.00023590719501953572, -0.007152883801609278, -0.046148788183927536, 0.06149610877037048, -0.011572805233299732, -0.06341897696256638, 0.022397829219698906, -0.021899309009313583, 0.044724442064762115, 0.029911251738667488, -0.04248109832406044, 0.007419948931783438, -0.03169168159365654, -0.01819601096212864, 0.0297154039144516, -0.015552069991827011, 0.03639202192425728, -0.014706364832818508, -0.005639517214149237, -0.04963843151926994, -0.04105675220489502, -0.012614358216524124, -0.03420209139585495, 0.023537306115031242, 0.0053368438966572285, -0.0107983173802495, 0.026012105867266655, -0.03023172914981842, -0.006244863849133253, -0.012801303528249264, -0.0036075995303690434, 0.017572859302163124, -0.03551961109042168, 0.04718143865466118, 0.007811643648892641, 0.004137278068810701, -0.009213733486831188, -0.0001856934541137889, 0.019299877807497978, -0.011092089116573334, 0.0046246713027358055, 0.06366823613643646, -0.0314958356320858, -0.060000546276569366, 0.05854059010744095, 0.03165607526898384, 0.00666326517239213, 0.03692615032196045, -0.025139695033431053, 0.10668346285820007, -0.007224101107567549, -0.02019009366631508, -0.016602525487542152, 0.018641119822859764, 0.017652979120612144, -0.03057001158595085, 0.03329407051205635, -0.02535334601998329, -0.03475402668118477, 0.00909800548106432, -0.006035663187503815, 0.044190313667058945, 0.04415470361709595, 0.026029910892248154, 0.09080201387405396, -0.07314012944698334, -0.032297030091285706, -0.009160320274531841, -0.061816584318876266, -0.007620247080922127, 0.043442532420158386, -0.0702202245593071, 0.011813163757324219, -0.03007148951292038, -0.0023056589998304844, -0.014109920710325241, -0.02305658906698227, 0.003035635920241475, 0.00998822133988142, 0.04386983439326286, 0.06737153232097626, 0.05081351846456528, -0.014020899310708046, 0.056047987192869186, -0.05900350213050842, 0.03436233103275299, 0.01856990158557892, 0.00778048625215888, 0.056261640042066574, -0.0702202245593071, 0.030926097184419632, -0.015756819397211075, 0.011412566527724266, 0.0594664141535759, 0.03420209139585495, 0.005764147266745567, -0.027614494785666466, 0.04244548827409744, 0.06370384246110916, 0.0297154039144516, -0.03388161212205887, 0.03827928006649017, 0.043300095945596695, -0.034095264971256256, 0.011581707745790482, -0.05430316552519798, -0.023644132539629936, 0.016255341470241547, 0.04468883201479912, 0.010192970745265484, -0.0069125257432460785, 0.0011144388699904084, -0.033205050975084305, 0.001566779799759388, 0.04009531810879707, -0.013166291639208794, 0.062350716441869736, -0.025976497679948807, 0.04764435067772865, 0.031602662056684494, -0.0024191613774746656, 0.026492822915315628, 0.008314616046845913, 0.03902706131339073, -0.02718719094991684, -0.014376984909176826, -0.017314696684479713, 0.020955679938197136, 0.061638541519641876, 0.05494412034749985, -0.05184616893529892, 0.04066505655646324, 0.04611317813396454, 0.011572805233299732, -0.0297154039144516, -0.05109838768839836, -0.005595006514340639, 0.030516598373651505, 0.006182548590004444, -0.0065252818167209625, 0.0027351879980415106, -0.055335815995931625, -0.048000436276197433, -0.053947076201438904, -0.04109236225485802, 0.014163333922624588, -0.03494987264275551, -0.006641009822487831, -0.03094390220940113, -0.04785800352692604, 0.0015745691489428282, -0.011501587927341461, -0.01333543285727501, 0.03026733733713627, -0.002501506358385086, -0.09229757636785507, -0.03439793735742569, -0.007994137704372406, 0.019584747031331062, 0.0188725758343935, 0.0314958356320858, 0.005982250440865755, -0.020439354702830315, 0.07869507372379303, 0.0021209390833973885, -0.0002135126997018233, -0.09657061100006104, -0.011581707745790482, 0.015676699578762054, -0.0063917492516338825, -0.002421387005597353, -0.008118768222630024, -0.034843046218156815, -0.043122053146362305, 0.008688506670296192, -0.050884734839200974, 0.005243371240794659, -0.04764435067772865, 0.012792401015758514, -0.03381039574742317, -0.014154431410133839, 0.02825544960796833, -0.04767995700240135, -0.0015133668202906847, -0.0026929029263556004, -0.028308862820267677, -0.03653445839881897, 0.01928207464516163, -0.03614276275038719, -0.012890324927866459, 0.050136953592300415, -0.03439793735742569, -0.020670810714364052, 0.052665166556835175, -0.01835625059902668, -0.023448284715414047, -0.008737468160688877, -0.02268269844353199, -0.02197052538394928, 0.006347238551825285, 0.02647501789033413, 0.02102689817547798, -0.025958692654967308, -0.024534348398447037, 0.005755245219916105, 0.0004818293091375381, -0.03491426259279251, -0.0013698196271434426, -0.04532979056239128, -0.027828145772218704, 0.03795880079269409, 0.008109865710139275, -0.029216881841421127, 0.032670918852090836, -0.033222854137420654, -0.015098060481250286, -0.04515174403786659, -0.013477867469191551, -0.0016647035954520106, 0.022397829219698906, 0.01250753179192543, -0.01422564871609211, -0.06085515394806862, -0.007086117751896381, 0.05113399401307106, 0.05020816996693611, 0.04479565843939781, -0.020243506878614426, 0.04354935884475708, 0.01503574475646019, -0.04354935884475708, 0.026314780116081238, -0.0880957543849945, -0.02125835418701172, 0.015418537892401218, -0.01568560302257538, 0.010673687793314457, 0.026688670739531517, -0.03731784597039223, 0.020795440301299095, -0.05668894201517105, 0.02394680492579937, -0.017795413732528687, 0.020920071750879288, -0.05024378001689911, -0.0038123491685837507, 0.020385941490530968, -0.01530280988663435, 0.003567539853975177, 0.00117063382640481, 0.08175741881132126, -0.03163826838135719, -0.0540539026260376, -0.037389062345027924, -0.018445271998643875, 0.011991206556558609, 0.017341403290629387, 0.0117063382640481, 0.06160293519496918, 0.012284978292882442, -0.04728826507925987, -0.07314012944698334, -0.05177495256066322, -0.018133696168661118, 0.03192313760519028, 0.016068395227193832, -0.004762654658406973, 0.0004723707679659128, -0.02467678301036358, -0.029608577489852905, 0.027952775359153748, 0.004299742169678211, 0.016584720462560654, -0.016549112275242805, -0.014768680557608604, -0.0683329626917839, 0.0006698874058201909, 0.008194436319172382, -0.06509257853031158, 0.011501587927341461, -0.017928946763277054, -0.007517872378230095, 0.042587924748659134, -0.04775117710232735, 0.015356223098933697, -0.019727181643247604, 0.057650376111269, -0.018320640549063683, -0.01530280988663435, -0.012569847516715527, 0.021204940974712372, 0.043478138744831085, 0.035946913063526154, 0.036819323897361755, 0.0029065546113997698, 0.0023123356513679028, 0.028664948418736458, -0.012276075780391693, 0.03275994211435318, -0.06014297902584076, 0.00597779918462038, 0.03462939336895943, 0.06405992805957794, 0.04550783336162567, -0.008777528069913387, -0.04828530550003052, -0.04913991317152977, -0.024249479174613953, -0.0593595914542675, 0.03113974817097187, -0.012133641168475151, 0.008737468160688877, -0.011483783833682537, 0.033400896936655045, -0.02410704456269741, -0.049602825194597244, 0.08218472450971603, 0.052843209356069565, -0.0019362193997949362, -0.021650047972798347, -0.03220800682902336, -0.01537402719259262, -0.059145938605070114, 0.0030044782906770706, 0.07328256219625473, 0.07520543038845062, 0.06153171509504318, -0.06509257853031158, 0.04116357862949371, 0.042374271899461746, -0.062350716441869736, 0.0360359363257885, -0.0016457864549010992, 0.05092034488916397, 0.028558123856782913, 0.021650047972798347, -0.03348992019891739, 0.0360359363257885, -0.009160320274531841, -0.026955734938383102, -0.04557904973626137, -0.03539498150348663, 0.00916922278702259, 0.016290949657559395, 0.02464117296040058, -0.05077790841460228, 0.024623369798064232, -0.012178151868283749, -0.04280157759785652, -0.033027008175849915, 0.014385887421667576, -0.03181631118059158, -0.01126123033463955, 0.009917004033923149, -0.020065464079380035, -0.08802454173564911, -0.015418537892401218, -0.029127860441803932, -0.008639544248580933, -0.05797085165977478, -0.005768598522990942, 0.02846910059452057, -0.013237508945167065, -0.03381039574742317, 0.0074288509786129, -0.030124902725219727, 0.00117063382640481, -0.030196120962500572, 0.043620575219392776, 0.012578749097883701, -0.07125287503004074, 0.09479017555713654, 0.06270679831504822, 0.010825023986399174, 0.03728223964571953, -0.023893391713500023, 0.038243670016527176, -0.007366535719484091, 0.0026372643187642097, -0.07684342563152313, 0.04123479500412941, -0.041697707027196884, 0.013976387679576874, 0.0647720992565155, 0.01126123033463955, -0.010869534686207771, -0.03546619787812233, 0.048320915549993515, 0.019566943868994713, 0.0035519611556082964, -0.018623314797878265, -0.029412729665637016, -0.009516406804323196, 0.04892626032233238, 0.034130875021219254, -0.0026840006466954947, -0.020207898691296577, 0.028041798621416092, -0.03242165967822075, -0.03345431014895439, 0.010931850410997868, 0.04162649065256119, -0.06024980545043945, 0.05793524533510208, -0.02734742872416973, 0.07577516883611679, 0.030659032985568047, 0.036997370421886444, 0.018836965784430504, -0.01133244764059782, -0.005951092578470707, -0.07306891679763794, 0.007068313658237457, -0.017679685726761818, -0.0031446872744709253, 0.04881943389773369, -0.03927632048726082, -0.03192313760519028, 0.011421469040215015, 0.04262353107333183, -0.057650376111269, -0.02266489528119564, 0.011546098627150059, -0.020617397502064705, 0.0037589361891150475, -0.001680282293818891, -0.05287881940603256, 0.006520830560475588, -0.000728307815734297, -0.008216692134737968, -0.032848961651325226, -0.03491426259279251, -0.0011405890109017491, -0.004713692702353001, -0.03892023488879204, 0.0038346045184880495, 0.01608620025217533, 0.003006703918799758, 0.03562643751502037, 0.06918757408857346, 0.006551988422870636, 0.02540675923228264, 0.03817245364189148, 0.027489863336086273, 0.03767393156886101, 0.016068395227193832, -0.09884956479072571, 0.03003588132560253, -0.045970745384693146, -0.010086145251989365, 0.041662100702524185, 0.013833953998982906, 0.01999424770474434, 0.0023345910012722015, -0.05234469100832939, -0.0009875831892713904, -0.004275261424481869, 0.027507668361067772, 0.06519940495491028, -0.025157498195767403, -0.014982331544160843, -0.008786429651081562, -0.028842991217970848, 0.006409553810954094, 0.0043487041257321835, -0.0360359363257885, -0.03792319446802139, -0.042944010347127914, -0.05077790841460228, -0.0188725758343935, -0.034130875021219254, 0.035751067101955414, 0.06715787947177887, -0.019175248220562935, 0.030107097700238228, 0.013629203662276268, -0.013655910268425941, -0.015213788487017155, 0.033935025334358215, 0.0022834036499261856, 0.06961487233638763, 0.005768598522990942, 0.055193379521369934, 0.04518735408782959, -0.048142869025468826, 0.054623641073703766, 0.09030348807573318, 0.05494412034749985, -0.00028904195642098784, -0.020955679938197136, 0.03042757697403431, -0.0225046556442976, -0.031620465219020844, 0.009213733486831188, -0.0990632176399231, -0.05327051505446434, -0.011822066269814968, 0.05384025350213051, 0.013023857027292252, 0.034843046218156815, -0.05241590738296509, -0.03810123726725578, 0.020279116928577423, -0.03582228347659111, -0.008172181434929371, -0.009667743928730488, -0.04892626032233238, -0.04080749303102493, 0.026884516701102257, 0.040771882981061935, 0.003899145172908902, -0.034843046218156815, 0.0014621794689446688, 0.06195902079343796, -0.02537115104496479, 0.0315670520067215, -0.016967512667179108, 0.020118877291679382, -0.03005368635058403, 0.04273035749793053, 0.050101347267627716, 0.03870658203959465, 0.011029773391783237, 0.030730249360203743, -0.027133777737617493, 0.0630272775888443, 0.01477758213877678, -0.02916347049176693, -0.01908622682094574, 0.0360359363257885, -0.05359099060297012, 0.03767393156886101, 0.012756792828440666, 0.00819888710975647, -0.07691464573144913, -0.09842225909233093, 0.05882545933127403, -0.00010779956937767565, -0.020581789314746857, -0.04657609015703201, -0.016664840281009674, -0.04792921990156174, -0.021507613360881805, -0.056795768439769745, -0.0033427602611482143, -0.0315670520067215, -0.004339802078902721, -0.03097951039671898, -0.010557959787547588, -0.015854744240641594, 0.05530020594596863, -0.02410704456269741, 0.009569820016622543, 0.01233839150518179, -0.057650376111269, -0.017928946763277054, -0.00006687051063636318, -0.0468253530561924, 0.02448093518614769, -0.038635365664958954, 0.024071434512734413, 0.022041743621230125, 0.007602442987263203, -0.011537197045981884, 0.05540703237056732, 0.007495617028325796, 0.009863590821623802, -0.012026815675199032, -0.029021035879850388, 0.029661990702152252, 0.015080255456268787, -0.04586391896009445, 0.023145610466599464, 0.006560890469700098, 0.032297030091285706, 0.018498685210943222, 0.022914154455065727, -0.024178260937333107, -0.03835049644112587, -0.01905061863362789, -0.05052864924073219, 0.021204940974712372, -0.051383256912231445, -0.053021252155303955, 0.020065464079380035, -0.04358496516942978, 0.03201216086745262, -0.006810151040554047, 0.0737810879945755, 0.018267229199409485, -0.05437438189983368, -0.01459063682705164, 0.03803002089262009, -0.024035826325416565, 0.051917385309934616, 0.052309080958366394, -0.015525363385677338, 0.043228879570961, 0.021845895797014236, -0.03984605893492699, -0.0377807579934597, 0.03721101954579353, -0.009765667840838432, 0.018409661948680878, -0.008212240412831306, 0.009890297427773476, 0.05960885062813759, -0.02590527944266796, -0.049958910793066025, -0.008897706866264343, 0.04753752425312996, 0.03671250119805336, 0.005457022693008184, -0.06462966650724411, -0.013014955446124077, -0.0233948715031147, 0.025513585656881332, -0.025976497679948807, -0.014964527450501919, -0.013540182262659073, -0.03984605893492699, 0.011937794275581837, 0.015810232609510422, 0.00962323322892189, 0.0720362663269043, 0.018605509772896767, -0.04483126848936081, -0.059502024203538895, 0.0270269513130188, 0.02432069554924965, 0.00468253530561924, 0.005728538613766432, 0.05177495256066322, 0.010522350668907166, -0.03657006472349167, 0.0028531416319310665, -0.012106934562325478, -0.022362221032381058, 0.013540182262659073, 0.03637421876192093, -0.06512818485498428, 0.04789360985159874, -0.013611399568617344, 0.012053522281348705, 0.020599594339728355, 0.0030044782906770706, 0.05170373246073723, 0.0261367354542017, 0.0036276294849812984, 0.03494987264275551, -0.02773912437260151, 0.034291114658117294, -0.05832694098353386, -0.014733071438968182, -0.0022411183454096317, 0.041662100702524185, 0.051062777638435364, 0.01006834115833044, -0.04048701375722885, 0.06405992805957794, 0.03849293291568756, 0.0062715704552829266, -0.004985208623111248, 0.05540703237056732, -0.004571258090436459, -0.06081954389810562, 0.03475402668118477, 0.039133887737989426, 0.057899635285139084, -0.02035033330321312, -0.002964418614283204, 0.06819052994251251, 0.05134764686226845, 0.01801796816289425, -0.008292360231280327, 0.006084625143557787, -0.01856990158557892, 0.0216144397854805 ]
7,468
pathlib
with_stem
Return a new path with the stem changed.
def with_stem(self, stem): """Return a new path with the stem changed.""" return self.with_name(stem + self.suffix)
(self, stem)
[ 0.056515198200941086, -0.00520931463688612, 0.005602944176644087, 0.027034834027290344, -0.05169114097952843, -0.03128938749432564, -0.00533912843093276, 0.07256189733743668, 0.07349991053342819, 0.035242434591054916, 0.05604619160294533, -0.014195800758898258, -0.0012457966804504395, 0.02678358182311058, -0.011222639121115208, 0.0011484361020848155, 0.04968111589550972, 0.06338278204202652, -0.004116363357752562, 0.004974811337888241, 0.028910858556628227, 0.011515767313539982, -0.012227651663124561, -0.04770458862185478, -0.005184188950806856, 0.03314866125583649, -0.02167476899921894, 0.02072000689804554, 0.04123901203274727, -0.07839097082614899, 0.03400292247533798, -0.04840809851884842, 0.04361753910779953, 0.031590890139341354, 0.040066495537757874, 0.018039973452687263, -0.029446864500641823, 0.05775471404194832, -0.006687520071864128, -0.008710107766091824, 0.042847029864788055, -0.026967832818627357, 0.026431826874613762, 0.04167451709508896, 0.0499156191945076, 0.04472305253148079, -0.02162451669573784, 0.05169114097952843, -0.029731618240475655, 0.06629732251167297, -0.01491605956107378, -0.043718039989471436, -0.0005341745563782752, -0.04971461370587349, -0.050485122948884964, 0.0032872280571609735, 0.04385204240679741, 0.027302836999297142, -0.0006386016611941159, 0.017420215532183647, 0.06767083704471588, -0.03775496780872345, 0.026733331382274628, 0.006210139486938715, -0.04244502633810043, 0.018157225102186203, 0.012981411069631577, -0.014463803730905056, 0.00025544065283611417, 0.06013324484229088, 0.022562529891729355, 0.00003386028402019292, -0.01932973973453045, 0.020887508988380432, 0.022311275824904442, 0.015259439125657082, -0.021306263282895088, 0.0002847535361070186, 0.0392959862947464, -0.014756932854652405, -0.050887130200862885, -0.02380204387009144, -0.06576131284236908, -0.031121885403990746, -0.053935665637254715, 0.027269337326288223, 0.02487405762076378, -0.09406916052103043, 0.0023638729471713305, -0.017520716413855553, -0.05748671293258667, 0.005657382309436798, 0.00467330776154995, -0.004514181055128574, 0.0031155385076999664, -0.06445479393005371, -0.00426920922473073, -0.05953023582696915, 0.03731946274638176, -0.0212392620742321, -0.010192501358687878, 0.08361703157424927, -0.009890997782349586, -0.001124357688240707, 0.06532581150531769, 0.012395153753459454, -0.006695895455777645, -0.06210976839065552, -0.022411776706576347, 0.009313114918768406, -0.0793289840221405, 0.03691745549440384, -0.005900260526686907, 0.005900260526686907, -0.023182285949587822, -0.04278003051877022, 0.019949497655034065, 0.010803883895277977, 0.029128611087799072, -0.000579975952859968, -0.013969672843813896, 0.06525880843400955, -0.05668270215392113, 0.007252839859575033, -0.0033039783593267202, 0.038960982114076614, 0.03015037253499031, 0.026766831055283546, 0.03189239278435707, -0.04009999707341194, -0.028743356466293335, 0.06683332473039627, -0.012169025838375092, -0.028944358229637146, 0.04318203404545784, 0.04921210929751396, -0.023400040343403816, 0.006013324484229088, -0.036548953503370285, 0.10646431893110275, -0.0017776157474145293, 0.0019974622409790754, 0.025761818513274193, -0.010753633454442024, -0.05470617860555649, 0.06378478556871414, -0.022043272852897644, -0.042612526565790176, 0.003994924481958151, 0.05721870809793472, 0.007830722257494926, 0.03395266830921173, 0.10572730749845505, 0.03127263858914375, -0.01608019880950451, -0.040435001254081726, -0.033500414341688156, 0.02324928715825081, 0.009798871353268623, 0.009740245528519154, 0.023785294964909554, -0.04063600301742554, 0.009262864477932453, -0.017168963328003883, -0.02408679760992527, -0.008366728201508522, 0.01121426373720169, 0.0002808276913128793, -0.01242027897387743, 0.010770383290946484, 0.05179164186120033, 0.015988072380423546, -0.027118586003780365, 0.007198401726782322, 0.004870122764259577, 0.01581219583749771, 0.008324853144586086, 0.024187298491597176, 0.01406179927289486, 0.019865745678544044, -0.013375040143728256, -0.007081150077283382, -0.020150499418377876, 0.02658257819712162, 0.03530943766236305, 0.02835809998214245, -0.05092063173651695, 0.0455605648458004, 0.04234452545642853, 0.010879259556531906, -0.022328026592731476, 0.040066495537757874, 0.02757084183394909, 0.011892647482454777, -0.005334941204637289, -0.03078688122332096, 0.01738671585917473, -0.000923355168197304, -0.03819047287106514, 0.022830532863736153, -0.03507493436336517, 0.04646507650613785, -0.017570966854691505, 0.010217626579105854, 0.037654466927051544, -0.016256075352430344, 0.03293090686202049, 0.01079550851136446, -0.06813984364271164, 0.03705145791172981, 0.0032244150061160326, 0.0015211282297968864, 0.048709601163864136, -0.013676544651389122, 0.019279489293694496, -0.06867585331201553, -0.0016854895511642098, 0.03070312924683094, 0.0691448524594307, 0.012252776883542538, -0.01303166151046753, -0.01243702881038189, 0.05051862448453903, 0.05755371227860451, -0.028224099427461624, -0.04599606990814209, 0.03463942930102348, -0.04690058156847954, -0.006524205673485994, -0.031440138816833496, -0.04033450037240982, -0.014522429555654526, -0.018056724220514297, -0.03507493436336517, -0.017018210142850876, 0.027353089302778244, 0.01798972301185131, -0.0026025634724646807, -0.010762007907032967, -0.023383289575576782, -0.013643044047057629, -0.01906173676252365, -0.014045048505067825, 0.002380623249337077, -0.021926021203398705, -0.00569507060572505, 0.032193899154663086, 0.005305628292262554, -0.012495654635131359, 0.0005035530775785446, -0.01775521971285343, 0.037687964737415314, -0.0020529471803456545, 0.06257877498865128, 0.06438779830932617, 0.0004396929289214313, -0.07852496951818466, -0.021658018231391907, 0.005967261269688606, 0.019044985994696617, -0.057788215577602386, 0.002581625711172819, -0.0024811243638396263, 0.032629404217004776, -0.03197614476084709, -0.01188427209854126, -0.02257927879691124, 0.00011038124648621306, -0.058056216686964035, -0.017604468390345573, 0.01874348148703575, 0.02832460030913353, -0.06301427632570267, -0.007684157695621252, 0.02606332302093506, 0.06395228952169418, -0.04596256837248802, 0.0022780282888561487, -0.025460315868258476, 0.03415367379784584, 0.038290973752737045, -0.057151708751916885, -0.008220164105296135, -0.016942834481596947, 0.002895692130550742, 0.02234477736055851, -0.001993274549022317, 0.00792703591287136, -0.011892647482454777, -0.02234477736055851, -0.008827359415590763, -0.014664806425571442, -0.01782222092151642, 0.014890934340655804, 0.0212392620742321, -0.014790432527661324, -0.0049119982868433, -0.006817334331572056, 0.011440391652286053, -0.046331074088811874, -0.0026716580614447594, 0.00360966962762177, -0.025058310478925705, 0.04623057320713997, 0.012947910465300083, -0.02788909524679184, 0.005887697916477919, 0.027068335562944412, 0.04341653734445572, 0.03926248475909233, -0.0636172890663147, -0.01333316508680582, -0.0755099356174469, 0.02376854419708252, 0.027956096455454826, 0.054337672889232635, 0.010762007907032967, 0.00357616925612092, -0.024555804207921028, 0.04355053976178169, -0.028274349868297577, -0.03909498453140259, -0.04659907519817352, -0.0069471485912799835, -0.0093466155230999, -0.025929320603609085, -0.041373010724782944, 0.04274652898311615, -0.041808515787124634, 0.009673244319856167, -0.031356386840343475, 0.011691644787788391, -0.000049269165174337104, 0.008077787235379219, -0.07705095410346985, -0.018827233463525772, 0.05380166694521904, -0.0012437028344720602, 0.03388566896319389, 0.015117062255740166, 0.053466662764549255, -0.04820709675550461, -0.07698395103216171, 0.006113825831562281, 0.028659604489803314, 0.06224377080798149, -0.02567806839942932, -0.018475478515028954, 0.031557388603687286, 0.017336465418338776, 0.0013714232482016087, -0.02780534327030182, -0.03540993854403496, -0.027905846014618874, 0.05621369555592537, 0.033299412578344345, -0.04160751402378082, -0.00467330776154995, -0.05963073670864105, -0.03889398276805878, -0.01267990656197071, 0.002899879589676857, 0.028743356466293335, 0.005410316865891218, 0.019631242379546165, -0.04140651226043701, -0.017688218504190445, 0.042612526565790176, 0.006277140229940414, -0.011306390166282654, -0.001444705412723124, -0.013492291793227196, 0.047805093228816986, -0.0227802824229002, 0.04596256837248802, 0.020971259102225304, -0.009932872839272022, -0.02800634689629078, 0.0036745767574757338, 0.03251215070486069, 0.0002693119167815894, 0.029178861528635025, 0.013023286126554012, 0.021105261519551277, 0.013483916409313679, -0.0009364412981085479, 0.03261265531182289, -0.03792246803641319, 0.05507468059659004, 0.02579532004892826, 0.01684233359992504, -0.030217373743653297, 0.07262890040874481, 0.012939535081386566, -0.02666633017361164, -0.012830658815801144, -0.06830734759569168, -0.05906122922897339, -0.04616357013583183, 0.036314450204372406, 0.020351501181721687, -0.03574494272470474, -0.022311275824904442, 0.06013324484229088, 0.041138507425785065, -0.05534268543124199, 0.04753708839416504, 0.10753633081912994, 0.007428716868162155, 0.03038487583398819, -0.049379609525203705, -0.08770408481359482, -0.02571156807243824, -0.01619745045900345, 0.026431826874613762, 0.00230734096840024, 0.020669756457209587, -0.04877660423517227, 0.04033450037240982, 0.036984458565711975, -0.013098661787807941, -0.006377641577273607, 0.01596294716000557, 0.040032994002103806, 0.059898741543293, 0.00782234687358141, -0.01798972301185131, 0.014237675815820694, -0.0024748430587351322, -0.013718419708311558, 0.00691364798694849, -0.054170168936252594, -0.006620519328862429, 0.003320728661492467, 0.008048474788665771, 0.0033919168636202812, 0.03105488419532776, -0.06378478556871414, -0.033383164554834366, -0.03418717160820961, 0.04040149971842766, 0.0029270986560732126, -0.017889222130179405, -0.004064018838107586, 0.0193799901753664, -0.017604468390345573, -0.007035086862742901, -0.012210900895297527, 0.039798490703105927, -0.03561094030737877, -0.010544255375862122, 0.01877698302268982, -0.01671670749783516, 0.01802322268486023, 0.029011359438300133, -0.02579532004892826, 0.03839147463440895, -0.06867585331201553, -0.027671342715620995, 0.053466662764549255, -0.05882672965526581, 0.0698818638920784, 0.04489055648446083, -0.00716071343049407, 0.05266265198588371, -0.01767146773636341, 0.03284715488553047, -0.01608019880950451, -0.005682507995516062, -0.11644744127988815, 0.04649857431650162, -0.04194251820445061, -0.00835835374891758, 0.003948861267417669, 0.01279715821146965, -0.008492355234920979, -0.0162477008998394, 0.021725019440054893, -0.009019986726343632, -0.016272826120257378, -0.022411776706576347, -0.007964723743498325, -0.05628069490194321, 0.04512505978345871, 0.04251202568411827, -0.0008736280142329633, -0.0012520779855549335, 0.0050711254589259624, 0.011356640607118607, -0.0009097456349991262, 0.05078662931919098, 0.030585877597332, -0.03577844426035881, 0.006046824622899294, -0.02606332302093506, 0.04495755583047867, -0.02167476899921894, 0.035242434591054916, -0.024823807179927826, -0.028073348104953766, -0.021256012842059135, -0.0780559629201889, 0.007684157695621252, 0.007558531127870083, -0.024673055857419968, 0.04777159169316292, -0.07658194750547409, -0.016021573916077614, -0.04100450873374939, -0.012462154030799866, -0.020535754039883614, -0.022947784513235092, -0.006989024113863707, 0.0012834846274927258, -0.0006721020909026265, 0.005519193131476641, -0.09004911780357361, 0.03641495108604431, 0.04793909192085266, 0.008086162619292736, -0.06468930095434189, -0.013559293001890182, 0.00036012945929542184, -0.05721870809793472, 0.00178808462806046, -0.046096570789813995, -0.005121375899761915, 0.010485629551112652, 0.0486426018178463, 0.0315406396985054, -0.010803883895277977, -0.004447179846465588, 0.03326591104269028, 0.046766579151153564, 0.06525880843400955, 0.049982618540525436, -0.06033424660563469, -0.03497443348169327, 0.024689804762601852, -0.0036264199297875166, -0.012495654635131359, -0.021875770762562752, -0.0299493707716465, -0.05510818213224411, -0.01474018208682537, 0.02242852747440338, -0.01569494418799877, -0.051523637026548386, 0.08643107116222382, 0.012470529414713383, -0.07658194750547409, -0.01376867014914751, -0.023316288366913795, 0.01735321432352066, -0.023483790457248688, -0.02031800150871277, -0.05145663768053055, -0.028944358229637146, -0.03688395768404007, 0.018927734345197678, -0.0380229689180851, 0.038726478815078735, 0.11524142324924469, 0.017252713441848755, 0.060434747487306595, 0.032662905752658844, -0.03909498453140259, 0.029446864500641823, 0.028508853167295456, -0.03899448364973068, 0.049178607761859894, 0.017637968063354492, 0.06365078687667847, 0.02242852747440338, -0.024505553767085075, 0.06579481065273285, 0.06515830755233765, -0.04278003051877022, 0.003994924481958151, -0.025527315214276314, -0.0016111605800688267, 0.043316036462783813, -0.04797259345650673, 0.04338303580880165, -0.05641469731926918, -0.014070173725485802, -0.020267751067876816, 0.036347948014736176, -0.04512505978345871, -0.002303153509274125, -0.057386208325624466, 0.0010123406536877155, -0.01231977716088295, -0.0058458223938941956, 0.01592944748699665, -0.06586181372404099, -0.00002964001578220632, -0.07349991053342819, -0.01323266327381134, 0.0007181651308201253, -0.02773834392428398, -0.008668232709169388, 0.007604593876749277, 0.055007681250572205, -0.009815621189773083, 0.001784943975508213, 0.002103197854012251, 0.0030401626136153936, -0.06033424660563469, -0.0027072522789239883, -0.022947784513235092, 0.05664920061826706, 0.029765117913484573, -0.010879259556531906, 0.01604669913649559, 0.0027595965657383204, 0.02507505938410759, -0.07691694796085358, -0.017168963328003883, -0.00800241157412529, -0.04144001379609108, 0.005561068654060364, -0.009078612551093102, -0.0054647549986839294, -0.07664895057678223, -0.00520931463688612, 0.047805093228816986, -0.01703496091067791, -0.044187046587467194, -0.14003172516822815, -0.030853882431983948, -0.046297572553157806, -0.03380191698670387, -0.058458223938941956, 0.031322889029979706, 0.0036431699991226196, -0.041105009615421295, -0.006716832984238863, 0.00321394600905478, -0.030049871653318405, -0.023785294964909554, -0.01655757986009121, -0.025259312242269516, -0.03899448364973068, -0.08442104607820511, -0.01604669913649559, 0.0014300489565357566, -0.018425228074193, -0.025142060592770576, -0.013358290307223797, 0.00321394600905478, 0.014673181809484959, -0.004225239623337984, 0.04468955472111702, 0.07108788192272186, 0.005146501120179892, 0.030552377924323082, -0.04117200896143913, 0.05775471404194832, -0.007135588210076094, 0.044354550540447235, -0.04515855759382248, -0.013115412555634975, -0.021172262728214264, 0.06231077015399933, -0.009539242833852768, 0.030217373743653297, -0.024656305089592934, 0.028341351076960564, -0.02051900327205658, 0.002342935185879469, -0.0069471485912799835, -0.0625452771782875, -0.06981486082077026, -0.04512505978345871, -0.03447192534804344, 0.016649706289172173, 0.03078688122332096, 0.058726225048303604, 0.021658018231391907, -0.04391904175281525, -0.03628094866871834, 0.028190597891807556, 0.037419963628053665, 0.0468335784971714, 0.0767829492688179, 0.02432130090892315, 0.03257915377616882, 0.01533481478691101, -0.026599328964948654, -0.032629404217004776, -0.0430145338177681, -0.038290973752737045, 0.04646507650613785, 0.038927480578422546, 0.04820709675550461, 0.008684982545673847, -0.09882622212171555, -0.02353404089808464, -0.0324954017996788, 0.07001586258411407, 0.056515198200941086, 0.013174038380384445, -0.059329234063625336, -0.01085413433611393, -0.014505679719150066, -0.013643044047057629, -0.04381854087114334, -0.06653182208538055, 0.013693294487893581, -0.036113448441028595, 0.003100882051512599, 0.06140625849366188, 0.026716580614447594, 0.047637589275836945, -0.05494067817926407, 0.004057737533003092, -0.022244274616241455, 0.036582451313734055, -0.010368377901613712, 0.024555804207921028, -0.06123875826597214, 0.07611294090747833, 0.04083700478076935, -0.010561005212366581, -0.03976499289274216, -0.012562655843794346, 0.03832447528839111, -0.001014434383250773, -0.014907684177160263, -0.05614669620990753, 0.00806103739887476, -0.02324928715825081, 0.0165157038718462, 0.018760232254862785, -0.004380179103463888, -0.009957998059689999, 0.031440138816833496, -0.02733633853495121, 0.015988072380423546, 0.014807183295488358, 0.023785294964909554, -0.052394647151231766, 0.00029522241675294936, 0.033500414341688156, 0.019865745678544044, 0.03082038089632988, 0.0036536389961838722, -0.01474018208682537, 0.040435001254081726, 0.0623442716896534, -0.004124738741666079, -0.015577692538499832, 0.040703002363443375, -0.011524142697453499, -0.01479880791157484, 0.04680008068680763, 0.0014939091634005308, 0.018827233463525772, -0.011046761646866798, 0.02484055794775486, -0.008684982545673847, 0.06545981019735336, 0.005745321046561003, 0.07289690524339676, 0.026616079732775688, 0.011021636426448822, -0.002533468883484602 ]
7,469
pathlib
with_suffix
Return a new path with the file suffix changed. If the path has no suffix, add given suffix. If the given suffix is an empty string, remove the suffix from the path.
def with_suffix(self, suffix): """Return a new path with the file suffix changed. If the path has no suffix, add given suffix. If the given suffix is an empty string, remove the suffix from the path. """ f = self._flavour if f.sep in suffix or f.altsep and f.altsep in suffix: raise ValueError("Invalid suffix %r" % (suffix,)) if suffix and not suffix.startswith('.') or suffix == '.': raise ValueError("Invalid suffix %r" % (suffix)) name = self.name if not name: raise ValueError("%r has an empty name" % (self,)) old_suffix = self.suffix if not old_suffix: name = name + suffix else: name = name[:-len(old_suffix)] + suffix return self._from_parsed_parts(self._drv, self._root, self._parts[:-1] + [name])
(self, suffix)
[ 0.016100550070405006, -0.0025290485937148333, -0.019124511629343033, 0.03592429682612419, -0.03912079334259033, -0.04696675017476082, 0.023283593356609344, 0.10853568464517593, 0.07119476050138474, -0.05314180627465248, 0.040392130613327026, 0.007223907392472029, 0.01936061680316925, 0.004617670550942421, -0.00005019361196900718, 0.007264771498739719, 0.05059913545846939, 0.0020897570066154003, -0.025590157136321068, 0.06763502210378647, -0.004081893712282181, 0.007841412909328938, 0.02800569497048855, -0.011569148860871792, 0.025644643232226372, 0.05299650877714157, -0.032764121890068054, 0.020341360941529274, 0.0573916956782341, -0.06334880739450455, 0.009099126793444157, -0.07035931199789047, 0.011659958399832249, 0.035052523016929626, 0.01120590977370739, 0.02922254428267479, -0.008322703652083874, 0.05125296488404274, -0.04231729358434677, -0.020995190367102623, 0.045041583478450775, -0.04493261128664017, 0.014011927880346775, -0.0033758485224097967, 0.019850987941026688, 0.02386477403342724, -0.00906280241906643, 0.039193443953990936, -0.022502630949020386, 0.014929105527698994, 0.033980969339609146, 0.01120590977370739, 0.0013224154245108366, -0.04442407935857773, -0.05593874305486679, 0.021285781636834145, 0.06501970440149307, 0.07925865799188614, -0.02350153587758541, 0.05510329455137253, 0.024718385189771652, -0.044896289706230164, 0.030185125768184662, -0.008195570670068264, -0.0011941468110308051, 0.0047765872441232204, -0.02350153587758541, -0.029149895533919334, -0.0427531823515892, 0.04416980966925621, 0.03252801671624184, -0.03832167014479637, -0.007682496216148138, 0.023919260129332542, -0.006579158827662468, 0.030203288421034813, -0.08434399962425232, 0.00474026333540678, 0.0007015045266598463, -0.011451096273958683, -0.041445523500442505, -0.051289286464452744, -0.01640022173523903, -0.05248797684907913, 0.022629763931035995, -0.02335624024271965, 0.011550987139344215, -0.0560113899409771, 0.013566960580646992, 0.02188512496650219, -0.07598951458930969, -0.02549934759736061, 0.002733370289206505, -0.026734359562397003, -0.022775059565901756, -0.09952737390995026, 0.016073307022452354, -0.002093162387609482, 0.03441685438156128, -0.022884029895067215, -0.011514662764966488, -0.006847047246992588, -0.015909850597381592, 0.01254081167280674, 0.07028666883707047, 0.02720656991004944, 0.004531401209533215, -0.03908447176218033, -0.05659257248044014, -0.04362495243549347, -0.030729984864592552, 0.005643819458782673, 0.014656676910817623, -0.038103725761175156, 0.0009500959422439337, -0.0280420184135437, 0.01107877679169178, -0.01387571357190609, 0.0047765872441232204, -0.027261056005954742, -0.0034825499169528484, 0.03298206254839897, -0.0786774754524231, 0.029549458995461464, 0.007292014546692371, -0.05168884992599487, 0.01447505783289671, 0.03185602277517319, 0.02030503749847412, -0.029168058186769485, 0.0025903452187776566, 0.05099869519472122, -0.012586216442286968, -0.0347437709569931, 0.03853961452841759, -0.0083363251760602, -0.004252161830663681, 0.03897549957036972, -0.036905039101839066, 0.07715187221765518, 0.00433389050886035, -0.003991083707660437, -0.016654489561915398, -0.0015233318554237485, -0.02415536530315876, 0.006165974773466587, 0.01946958713233471, -0.020886218175292015, -0.02789672277867794, 0.005929870065301657, -0.04900088533759117, 0.04061007499694824, 0.02375580370426178, 0.008595133200287819, 0.04097331315279007, -0.06018863245844841, -0.028623200953006744, -0.005112582817673683, -0.006579158827662468, -0.015782715752720833, 0.044787317514419556, -0.01683610863983631, -0.016609083861112595, -0.06251335889101028, 0.007587146013975143, 0.0613873191177845, -0.03643282875418663, 0.009244421496987343, 0.012985778972506523, 0.0467124804854393, 0.05710110440850258, 0.055066969245672226, 0.017689719796180725, 0.03256433829665184, -0.05713742971420288, 0.053577691316604614, 0.053468719124794006, 0.015201535075902939, 0.04071904346346855, 0.0035733594559133053, 0.051289286464452744, -0.01907002553343773, 0.017408208921551704, 0.03014880232512951, 0.028259960934519768, 0.04115493223071098, -0.014983591623604298, 0.008953831158578396, 0.040900662541389465, 0.007414607331156731, -0.0015471692895516753, 0.057319048792123795, 0.03803107887506485, -0.018198253586888313, -0.028350770473480225, -0.050381191074848175, 0.00894474983215332, -0.007092233281582594, 0.014856457710266113, 0.0300216693431139, -0.05256062373518944, 0.04253523796796799, -0.005439497530460358, -0.010297813452780247, 0.02787856198847294, -0.01081542856991291, 0.05285121500492096, 0.01355788018554449, -0.07279301434755325, 0.008813075721263885, 0.0028423417825251818, 0.010506675578653812, 0.0273518655449152, 0.0011532824719324708, 0.0072148265317082405, -0.03995624557137489, -0.03296390175819397, 0.07046828418970108, 0.023029325529932976, 0.04722101613879204, 0.00430210679769516, 0.010679214261472225, 0.012168492190539837, 0.040246833115816116, -0.017281075939536095, -0.006061543710529804, 0.04762057960033417, 0.03991992026567459, 0.057573314756155014, -0.022720573469996452, -0.03243720531463623, -0.016064226627349854, -0.0020761354826390743, -0.05379563570022583, -0.003636926179751754, 0.025444863364100456, 0.025408538058400154, 0.01287680771201849, 0.018779434263706207, -0.019415102899074554, 0.0038821124471724033, -0.004429240245372057, -0.008327244780957699, -0.0020318657625466585, -0.0002586655900813639, -0.04082801565527916, 0.024500442668795586, 0.0042703235521912575, 0.015582934953272343, 0.03828534483909607, 0.02150372415781021, 0.05750066787004471, 0.019560396671295166, 0.07025033980607986, 0.030530203133821487, -0.00826367735862732, -0.09574969112873077, 0.0026629928033798933, 0.007382824085652828, 0.023174621164798737, -0.04456937313079834, -0.019778341054916382, -0.015301425009965897, -0.03407178074121475, -0.018507005646824837, -0.01246816385537386, -0.024010069668293, -0.05361401289701462, 0.015464882366359234, 0.02266608737409115, -0.0010278517147526145, -0.03147462382912636, -0.08790373802185059, -0.0040092458948493, 0.011169586330652237, 0.018870243802666664, -0.052088413387537, -0.0167089756578207, -0.0031215816270560026, -0.0025721832644194365, 0.03083895519375801, -0.02842341922223568, 0.00847708061337471, 0.02615317702293396, 0.008626916445791721, 0.011160505004227161, -0.0467488057911396, -0.022775059565901756, -0.0016266277525573969, -0.006810723338276148, 0.015710068866610527, -0.00473572313785553, -0.023556021973490715, 0.02190328575670719, -0.005130745004862547, -0.029313353821635246, -0.015065319836139679, -0.042644210159778595, 0.02844158001244068, -0.021594533696770668, -0.026516417041420937, 0.01921532116830349, -0.03959300369024277, 0.0653829425573349, 0.01321280375123024, -0.027024950832128525, 0.023174621164798737, -0.025172432884573936, -0.0160369835793972, 0.07540833204984665, -0.012776916846632957, -0.06204114854335785, -0.027170246466994286, -0.02573545277118683, 0.035452086478471756, 0.07137638330459595, -0.0006356675294227898, -0.005444038193672895, -0.014393328689038754, -0.0116872014477849, -0.06342145800590515, 0.05248797684907913, -0.08892080187797546, 0.021649019792675972, -0.035433921962976456, -0.011986873112618923, -0.027569808065891266, 0.07722452282905579, -0.017934905365109444, -0.008903885260224342, -0.048492349684238434, -0.019705692306160927, -0.023683154955506325, 0.02909540943801403, -0.047184690833091736, -0.01572822965681553, 0.04591335728764534, 0.026589063927531242, 0.052124734967947006, 0.0333271399140358, 0.05423152074217796, -0.01883392035961151, -0.06363940238952637, -0.005802736151963472, 0.015147048979997635, 0.00419994629919529, 0.0022395928390324116, 0.013793985359370708, 0.037558868527412415, -0.006887911818921566, -0.0033622272312641144, -0.04841970279812813, -0.03592429682612419, -0.028641361743211746, 0.05365033820271492, -0.024082718417048454, -0.03016696497797966, 0.019015539437532425, -0.014738405123353004, -0.018071118742227554, 0.023011164739727974, 0.026316635310649872, 0.05281488969922066, -0.011015210300683975, 0.051434583961963654, -0.048383377492427826, 0.010479433462023735, 0.019178997725248337, -0.02321094460785389, -0.032782282680273056, 0.012831402942538261, -0.030493879690766335, 0.077442467212677, -0.04416980966925621, 0.028114665299654007, 0.015510287135839462, -0.00623408192768693, -0.025063462555408478, -0.005303283222019672, 0.022048581391572952, 0.03254617750644684, 0.012050439603626728, -0.007855034433305264, 0.03933873772621155, 0.012431840412318707, -0.011060615070164204, 0.039411384612321854, -0.03814005106687546, 0.03547024726867676, -0.012631621211767197, -0.004306647460907698, 0.044896289706230164, 0.04042845591902733, 0.02150372415781021, -0.01946958713233471, -0.05379563570022583, -0.04885558784008026, -0.0373409278690815, -0.01195054966956377, 0.036505475640296936, -0.00025653725606389344, 0.014593110419809818, 0.011750767938792706, 0.08746784925460815, -0.008304541930556297, -0.05296018347144127, 0.07889541983604431, 0.07395537197589874, -0.0032328234519809484, 0.02041400782763958, -0.06047922372817993, -0.04071904346346855, -0.04841970279812813, 0.007423688657581806, 0.0639663115143776, 0.07962189614772797, 0.02295667864382267, -0.06102408096194267, 0.008658699691295624, 0.0022838625591248274, -0.05495799705386162, 0.031674403697252274, -0.004885558970272541, 0.03577899932861328, 0.04631292074918747, -0.011505582369863987, -0.02724289335310459, 0.00657007796689868, -0.033290814608335495, -0.0043838354758918285, -0.02482735738158226, -0.04293480142951012, -0.038357995450496674, 0.022611601278185844, 0.042644210159778595, -0.04605865105986595, 0.0058663031086325645, -0.039447709918022156, -0.050126925110816956, -0.05423152074217796, -0.0439881905913353, 0.007646172307431698, -0.022720573469996452, 0.007723360322415829, -0.008277298882603645, -0.07123108208179474, -0.006928775925189257, -0.0032441746443510056, 0.033835675567388535, -0.0560840368270874, -0.012740593403577805, 0.025662805885076523, 0.01656368002295494, 0.018507005646824837, 0.024718385189771652, -0.062259092926979065, 0.01976017840206623, -0.031420137733221054, 0.008082058280706406, -0.01773512363433838, -0.05938950926065445, 0.07264771312475204, 0.08514312654733658, -0.023574184626340866, 0.0038911933079361916, -0.011741687543690205, 0.09640351682901382, 0.00200462294742465, -0.03537943959236145, -0.04253523796796799, -0.004899180494248867, -0.05484902486205101, -0.012695188634097576, 0.0300216693431139, 0.02682516910135746, 0.0011356881586834788, -0.029549458995461464, 0.015637420117855072, 0.034253399819135666, -0.014702081680297852, 0.01817101053893566, -0.005534847732633352, -0.05688316002488136, 0.04496893659234047, 0.044097162783145905, 0.009643984027206898, 0.020777245983481407, 0.03267331048846245, -0.008781292475759983, -0.029712915420532227, 0.05009059980511665, 0.07598951458930969, -0.05510329455137253, 0.03152910992503166, 0.005530307535082102, 0.06792561709880829, -0.013521555811166763, 0.03327265381813049, -0.015201535075902939, -0.0035983321722596884, 0.01326728891581297, -0.09327966719865799, -0.01448413822799921, 0.014801972545683384, -0.03973830118775368, 0.002238457789644599, -0.07707922905683517, 0.01574639230966568, -0.029712915420532227, -0.013421665877103806, -0.017825933173298836, 0.020105255767703056, 0.000615802884567529, 0.031420137733221054, -0.014811052940785885, 0.031565431505441666, -0.051289286464452744, 0.011741687543690205, 0.04860132187604904, 0.053468719124794006, -0.04242626577615738, -0.05684683844447136, 0.003809464629739523, -0.021558210253715515, -0.02844158001244068, -0.012114007025957108, -0.006156893912702799, 0.019941797479987144, 0.04947309568524361, 0.04097331315279007, -0.01894289255142212, 0.029840050265192986, 0.052633270621299744, 0.021703505888581276, 0.00527604017406702, 0.023556021973490715, -0.024791033938527107, 0.00039417060906998813, 0.031674403697252274, -0.03134749084711075, 0.01333993673324585, 0.05045383796095848, -0.02949497289955616, -0.026352958753705025, -0.04446040093898773, 0.008032113313674927, -0.013957442715764046, 0.015038077719509602, 0.13272738456726074, 0.025808101519942284, -0.009752956219017506, 0.025535672903060913, 0.0120050348341465, 0.017144860699772835, 0.0034462260082364082, -0.0454048216342926, -0.009058262221515179, -0.03723195567727089, -0.04097331315279007, -0.009625822305679321, -0.05361401289701462, 0.01508348248898983, 0.08201926946640015, 0.022375496104359627, 0.01027965173125267, 0.056374628096818924, 0.008545187301933765, -0.007137638051062822, 0.024264337494969368, -0.022484468296170235, 0.039048146456480026, 0.010987967252731323, 0.033436112105846405, -0.015937093645334244, -0.06251335889101028, 0.02936783991754055, 0.05702845752239227, 0.012586216442286968, 0.02322910726070404, 0.023592345416545868, 0.02066827565431595, 0.04119125381112099, -0.015573854558169842, 0.01746269501745701, -0.07028666883707047, -0.012259301729500294, -0.036632612347602844, 0.036233048886060715, -0.025190595537424088, -0.01188698224723339, -0.04228097200393677, 0.045695412904024124, 0.021975934505462646, -0.07006872445344925, 0.019287968054413795, -0.0386849083006382, -0.042498912662267685, -0.044750992208719254, 0.030929764732718468, -0.011296720243990421, 0.02321094460785389, -0.012477245181798935, -0.00022674033243674785, 0.027442675083875656, -0.00737374322488904, -0.017662476748228073, 0.0023201864678412676, 0.006007058080285788, -0.05724640190601349, 0.01020700391381979, -0.010579323396086693, 0.06033392995595932, 0.004429240245372057, -0.0047629657201468945, -0.0280420184135437, 0.005984355695545673, 0.020613789558410645, -0.07649804651737213, -0.04950941726565361, -0.041990380734205246, -0.11013393849134445, 0.03901182487607002, 0.013031183741986752, 0.029258867725729942, -0.06487441062927246, -0.056665219366550446, 0.007864114828407764, 0.007292014546692371, -0.029821887612342834, -0.07555362582206726, -0.04253523796796799, -0.04057374969124794, 0.007523579057306051, -0.03853961452841759, 0.01328545156866312, -0.07598951458930969, -0.021558210253715515, -0.010361380875110626, 0.036741580814123154, -0.013103831559419632, 0.04351598024368286, -0.058517735451459885, -0.03082079440355301, -0.03645099326968193, -0.07780570536851883, -0.02844158001244068, -0.003702763235196471, -0.040355805307626724, -0.003269147127866745, -0.05259694531559944, 0.05713742971420288, 0.008113841526210308, -0.042244646698236465, -0.0020023526158183813, 0.016618164256215096, -0.009643984027206898, 0.0627676248550415, -0.02188512496650219, 0.05168884992599487, 0.021667180582880974, 0.05081707611680031, -0.07094049453735352, -0.03272779658436775, -0.011060615070164204, 0.02682516910135746, -0.02628031186759472, -0.0021283510141074657, -0.0333453007042408, 0.037704166024923325, -0.022084904834628105, 0.008436216041445732, -0.016926918178796768, -0.0800577849149704, -0.0653829425573349, -0.008735887706279755, -0.0894293412566185, 0.03933873772621155, 0.01600066013634205, 0.06690854579210281, 0.02951313555240631, 0.015582934953272343, -0.010406785644590855, 0.019306130707263947, -0.02390109933912754, 0.018325386568903923, 0.03312736004590988, 0.03214661404490471, 0.08223721385002136, 0.02055930346250534, -0.05390460416674614, -0.02682516910135746, 0.01188698224723339, -0.01654551737010479, 0.025317728519439697, -0.009235341101884842, 0.02802385576069355, 0.052524298429489136, -0.0467124804854393, -0.05688316002488136, -0.04565909132361412, 0.03138381242752075, 0.05299650877714157, -0.010697375982999802, -0.046930424869060516, 0.025063462555408478, 0.003825356252491474, -0.022793220356106758, -0.05775493383407593, -0.029422326013445854, 0.010479433462023735, -0.040900662541389465, 0.06785296648740768, 0.03966565430164337, -0.02775142714381218, 0.06327616423368454, -0.021649019792675972, -0.0009608795517124236, -0.07831423729658127, 0.01628216914832592, 0.038648586720228195, -0.024010069668293, -0.04122757911682129, 0.06309454143047333, 0.003568819025531411, -0.04980000853538513, -0.019306130707263947, 0.0011243369663134217, -0.0013008482055738568, 0.008454377762973309, 0.027388188987970352, -0.0426805317401886, 0.03612407669425011, 0.010406785644590855, -0.000010189481145062018, 0.001175984856672585, -0.0427168570458889, -0.006733535323292017, 0.019923636689782143, 0.011823415756225586, 0.03507068380713463, -0.030203288421034813, 0.015828121453523636, -0.0012054980034008622, 0.036505475640296936, 0.010461270809173584, 0.039447709918022156, 0.057718612253665924, 0.01455678604543209, -0.010860833339393139, 0.04555011913180351, 0.015147048979997635, -0.018497925251722336, 0.006274946499615908, 0.06062451750040054, -0.004218108020722866, -0.035433921962976456, 0.040355805307626724, 0.008100220002233982, 0.01402100920677185, -0.03744989633560181, -0.03096608817577362, 0.03803107887506485, 0.045186880975961685, 0.008054815232753754, 0.001457494799979031, 0.041445523500442505, -0.039447709918022156, 0.005593874026089907 ]
7,470
pathlib
write_bytes
Open the file in bytes mode, write to it, and close the file.
def write_bytes(self, data): """ Open the file in bytes mode, write to it, and close the file. """ # type-check for the buffer interface before truncating the file view = memoryview(data) with self.open(mode='wb') as f: return f.write(view)
(self, data)
[ 0.0062534804455935955, -0.040349528193473816, -0.03359559550881386, 0.06785266101360321, 0.0413939505815506, -0.05890543758869171, -0.0642319917678833, 0.08111682534217834, -0.022350644692778587, -0.05761731415987015, 0.05476256087422371, -0.038574010133743286, 0.016562802717089653, 0.0009378045215271413, 0.018660351634025574, 0.04605903849005699, -0.0054875705391168594, -0.038330309092998505, 0.014917836524546146, 0.07867983728647232, 0.02121918648481369, 0.006806154269725084, -0.014099705964326859, -0.024039126932621002, -0.025327248498797417, 0.059323206543922424, -0.03016640804708004, 0.006684304680675268, 0.007324013859033585, -0.0076329889707267284, -0.03157637640833855, -0.10291044414043427, 0.07422363758087158, 0.04055841267108917, 0.022838041186332703, 0.02369098737835884, 0.044875361025333405, 0.05093301087617874, 0.0024848554749041796, 0.008890647441148758, -0.03479668125510216, -0.012228448875248432, 0.012637513689696789, -0.02304692566394806, 0.009086476638913155, -0.0031332678627222776, 0.013264167122542858, 0.058487668633461, 0.005330907180905342, 0.041672464460134506, 0.015614118427038193, 0.011976046487689018, -0.005265630781650543, -0.0035009917337447405, 0.05740842968225479, 0.060472071170806885, 0.018555909395217896, 0.035301484167575836, -0.015622821636497974, 0.0301141869276762, -0.011088287457823753, -0.03846956789493561, 0.0600891150534153, -0.1297869235277176, 0.003568443935364485, 0.045049428939819336, -0.04215985909104347, -0.03084528259932995, -0.0013403423363342881, 0.043447982519865036, 0.005813952535390854, -0.010853291489183903, -0.012802881188690662, 0.0520818755030632, -0.02334284596145153, 0.0610290952026844, -0.042055416852235794, 0.007089018821716309, 0.0014632795937359333, 0.007258737459778786, 0.07095111161470413, -0.06085502728819847, 0.03376966714859009, 0.06364015489816666, 0.009582577273249626, -0.030636398121714592, 0.03641553595662117, 0.040279898792505264, -0.05538921430706978, 0.0039057054091244936, 0.002238980960100889, 0.043726496398448944, -0.020209578797221184, 0.01679779775440693, 0.03556258976459503, -0.11432946473360062, -0.01812073215842247, 0.06534603983163834, -0.10458151996135712, 0.04668569192290306, -0.06019355729222298, 0.04675532132387161, 0.030653804540634155, -0.022333238273859024, 0.0003878507122863084, -0.038574010133743286, -0.0036946451291441917, 0.023012112826108932, -0.05758250132203102, -0.015126721002161503, -0.04069766774773598, 0.00003875787297147326, -0.029957523569464684, -0.02718980237841606, -0.01147124171257019, -0.010548668913543224, 0.01348175574094057, 0.006623380351811647, 0.02896532043814659, 0.00020113294885959476, 0.042577628046274185, -0.0009378045215271413, -0.00966090988367796, 0.006797450594604015, 0.00939980335533619, 0.0293134618550539, 0.028460517525672913, 0.029696417972445488, 0.023551730439066887, 0.013342498801648617, -0.04306502640247345, 0.022698786109685898, 0.026476113125681877, -0.0009193095029331744, -0.013055282644927502, 0.029748639091849327, 0.040349528193473816, 0.005256927106529474, -0.06767858564853668, 0.032255250960588455, 0.011532166972756386, -0.0248398520052433, 0.017555003985762596, 0.015300791710615158, 0.054170720279216766, 0.014369514770805836, 0.011305875144898891, -0.0019659081008285284, -0.04362205043435097, 0.008342325687408447, -0.026650184765458107, 0.025849459692835808, -0.033926330506801605, 0.009434618055820465, 0.038574010133743286, -0.011714940890669823, 0.00017339047917630523, -0.004029730800539255, -0.042577628046274185, -0.02287285588681698, -0.04296058416366577, 0.027450907975435257, -0.03777328506112099, -0.0018679933855310082, 0.01456969603896141, 0.003598906332626939, -0.06726081669330597, 0.019374040886759758, 0.013499163091182709, -0.027833864092826843, 0.007872335612773895, 0.03888733685016632, -0.01834702491760254, 0.042925771325826645, 0.026284636929631233, 0.022333238273859024, -0.010487743653357029, -0.03958361968398094, 0.01954811066389084, -0.009338879026472569, 0.011976046487689018, -0.007132536265999079, -0.04348279535770416, 0.044527217745780945, 0.04748641699552536, -0.03084528259932995, -0.00923443678766489, 0.024578746408224106, 0.011767162010073662, 0.007859280332922935, -0.035353705286979675, -0.001996370265260339, 0.02781645581126213, -0.01589263044297695, -0.003675062209367752, -0.042577628046274185, 0.02247249335050583, -0.028251633048057556, 0.0011575684184208512, 0.05883580818772316, -0.04679013416171074, -0.024857258424162865, 0.061272796243429184, -0.028007933869957924, -0.02861718088388443, 0.007881038822233677, 0.049470819532871246, 0.010531261563301086, -0.06652972102165222, 0.0086469491943717, 0.030723432078957558, 0.017877034842967987, 0.009269250556826591, 0.006540696602314711, 0.05880099534988403, -0.07070741057395935, -0.037355516105890274, -0.0018125084461644292, -0.026232415810227394, 0.03697255998849869, 0.026597963646054268, 0.05740842968225479, -0.0608898401260376, 0.04135913774371147, 0.00977405533194542, -0.010331080295145512, 0.001531819929368794, -0.04442277550697327, -0.018503688275814056, 0.027085360139608383, 0.0030832227785140276, 0.03773847222328186, 0.0017461441457271576, -0.02081882394850254, 0.019025899469852448, -0.021201780065894127, -0.019199969246983528, -0.018782200291752815, -0.0301141869276762, 0.001951764803379774, -0.016327807679772377, -0.02638907916843891, 0.032203029841184616, 0.08264864236116409, 0.017302602529525757, -0.07178664952516556, 0.0097479447722435, 0.007924556732177734, 0.017380934208631516, -0.0006772428168915212, 0.039479177445173264, -0.054170720279216766, -0.06558974087238312, -0.045327942818403244, 0.04215985909104347, -0.016754280775785446, -0.006923651788383722, -0.04835676774382591, 0.016980571672320366, 0.0357888825237751, -0.016014480963349342, 0.0011423372197896242, 0.027224617078900337, -0.032255250960588455, 0.04236874356865883, -0.021201780065894127, -0.03009677864611149, -0.056851405650377274, 0.015065796673297882, 0.05246483162045479, 0.02436986193060875, 0.059044692665338516, -0.04786936938762665, 0.020209578797221184, 0.004025378730148077, -0.05316111072897911, 0.059392835944890976, -0.0018854005029425025, 0.0044235652312636375, 0.0016765159089118242, -0.012811584398150444, 0.01582300290465355, 0.012289373204112053, 0.00762863690033555, 0.02786867693066597, 0.02019217051565647, -0.03451816737651825, 0.01192382536828518, 0.01359490118920803, -0.02981826663017273, -0.022228796035051346, 0.021358443424105644, -0.020000694319605827, 0.0263716708868742, 0.01571856066584587, 0.03321263939142227, -0.06492827087640762, -0.0010710771894082427, 0.06642527878284454, -0.03571925312280655, -0.025362063199281693, 0.01817295327782631, 0.05584179610013962, 0.046198293566703796, -0.010374598205089569, 0.0016068877885118127, -0.018782200291752815, -0.012707142159342766, -0.02746831625699997, 0.020488090813159943, 0.03246413543820381, -0.0570254772901535, -0.024456897750496864, 0.03502297401428223, 0.04264725744724274, -0.012298076413571835, 0.002526197349652648, 0.036206651479005814, 0.001185854896903038, 0.0405932255089283, -0.032829683274030685, -0.03417002782225609, -0.0030070669017732143, -0.0415332056581974, 0.018364431336522102, -0.039026591926813126, 0.045397572219371796, -0.010052568279206753, -0.0043735196813941, 0.006601621396839619, 0.020905859768390656, -0.004282132722437382, 0.043378353118896484, 0.0341874361038208, -0.0227684136480093, -0.04445759207010269, -0.012741955928504467, -0.0227684136480093, 0.04041915759444237, 0.011062176898121834, 0.025779832154512405, 0.03871326521039009, 0.08313604444265366, -0.013307685032486916, -0.026998326182365417, -0.004991469904780388, -0.06921041011810303, -0.020679568871855736, -0.026232415810227394, 0.048774536699056625, 0.0063709779642522335, -0.032881904393434525, 0.006318756844848394, -0.021236592903733253, -0.011915121227502823, -0.045397572219371796, 0.047973811626434326, 0.020174764096736908, 0.013090097345411777, 0.0015829530311748385, 0.023725800216197968, 0.05500625818967819, -0.0129856551066041, -0.023603951558470726, -0.014447846449911594, -0.022524714469909668, -0.04612866789102554, 0.033926330506801605, 0.028582366183400154, -0.0008023559348657727, -0.011218840256333351, -0.07436288893222809, 0.017511487007141113, 0.03933991864323616, 0.04341316595673561, -0.024282826110720634, -0.040523599833250046, 0.008990738540887833, -0.028425702825188637, 0.032829683274030685, 0.03878289461135864, -0.020505497232079506, 0.003733810968697071, -0.009042959660291672, 0.03448335453867912, 0.0004966447013430297, -0.024561339989304543, 0.010670517571270466, -0.02912198379635811, 0.007828817702829838, -0.003224654821678996, 0.03148934245109558, -0.03634590655565262, 0.028756435960531235, -0.02019217051565647, 0.03493593633174896, 0.004071072209626436, 0.029922708868980408, -0.0036772380117326975, 0.0174940787255764, -0.012567886151373386, -0.013499163091182709, -0.0763821080327034, 0.06875782459974289, 0.001978963380679488, 0.030131593346595764, -0.014091001823544502, -0.011540870182216167, 0.0068018026649951935, -0.009530356153845787, -0.016536692157387733, 0.03798216953873634, 0.040523599833250046, -0.0014719831524416804, 0.06795710325241089, 0.044770918786525726, -0.00977405533194542, -0.06715637445449829, 0.05051524192094803, 0.0031397955026477575, -0.007807059213519096, 0.05838322639465332, 0.0527433417737484, 0.046650879085063934, 0.008681762963533401, -0.07979389280080795, -0.023882463574409485, -0.014500067569315434, -0.0012380760163068771, 0.061620935797691345, 0.05149003490805626, -0.04543238505721092, -0.041324321180582047, 0.00594885740429163, 0.03808661177754402, -0.010357190854847431, -0.031454529613256454, -0.06652972102165222, -0.006344867404550314, 0.0814649686217308, 0.053578879684209824, -0.004282132722437382, 0.036728862673044205, -0.0512811504304409, -0.014282479882240295, -0.0437961220741272, -0.024909479543566704, -0.017337415367364883, 0.0528826005756855, 0.008394546806812286, 0.058452852070331573, -0.04386575147509575, 0.005565902218222618, -0.02219398133456707, -0.01817295327782631, -0.04651162028312683, -0.00594885740429163, -0.06137723848223686, 0.0008991826325654984, -0.020157357677817345, -0.012176226824522018, 0.022838041186332703, -0.006336164195090532, -0.09873275458812714, 0.0018582019256427884, -0.033125605434179306, -0.06827042996883392, 0.021584734320640564, 0.030897503718733788, -0.021201780065894127, 0.014395625330507755, -0.011775865219533443, -0.01739834062755108, -0.03296894207596779, 0.03648516535758972, 0.037251073867082596, 0.015431344509124756, 0.04623311012983322, 0.005322203505784273, -0.030775653198361397, 0.001155392499640584, -0.009356286376714706, -0.04511905834078789, 0.011775865219533443, -0.028373481705784798, 0.009495542384684086, 0.02191546931862831, 0.020505497232079506, 0.03157637640833855, 0.008220476098358631, 0.0031898408196866512, 0.012515665031969547, -0.10054308921098709, -0.02654574252665043, 0.02644130028784275, 0.05291741341352463, 0.0035379817709326744, -0.017407044768333435, -0.04651162028312683, -0.04021027311682701, -0.029887894168496132, -0.025205399841070175, 0.013037876226007938, -0.05601586773991585, 0.00001051392246154137, -0.002109516179189086, 0.024787630885839462, -0.02889569289982319, -0.012811584398150444, -0.020314021036028862, -0.038991779088974, 0.022106945514678955, -0.05183817818760872, 0.013890821486711502, -0.011758457869291306, 0.0496797040104866, -0.04626792296767235, -0.04163764789700508, -0.04658124968409538, -0.0043735196813941, -0.025779832154512405, 0.05880099534988403, 0.0316460058093071, -0.025553541257977486, -0.01075755339115858, -0.03704218938946724, -0.06322238594293594, -0.018886642530560493, -0.013177132233977318, 0.016310399398207664, -0.012228448875248432, -0.004878323990851641, 0.07874947041273117, -0.038991779088974, 0.04891379550099373, 0.02654574252665043, -0.004210328683257103, -0.030897503718733788, -0.010104789398610592, -0.008929813280701637, -0.00912129133939743, -0.033630408346652985, 0.009051662869751453, -0.09817572683095932, -0.0731792151927948, 0.02901754155755043, -0.03187229856848717, -0.0586269237101078, 0.0610290952026844, -0.012976950965821743, -0.029104577377438545, 0.01822517439723015, 0.08062943071126938, 0.05013228580355644, 0.03028825670480728, -0.03596295416355133, -0.004388750996440649, 0.012733252719044685, 0.013255463913083076, -0.00869917031377554, 0.0030766951385885477, 0.000860016793012619, 0.019078120589256287, 0.0305145476013422, -0.030009744688868523, 0.062143146991729736, 0.02121918648481369, 0.010374598205089569, 0.0067930989898741245, -0.028234224766492844, 0.037877727299928665, 0.052325572818517685, -0.01043552253395319, -0.005635530687868595, 0.058348409831523895, -0.00011423372779972851, -0.020383648574352264, 0.038399938493967056, 0.014456549659371376, -0.09295361489057541, -0.03074084036052227, -0.0008948308532126248, -0.04480573162436485, -0.03864363953471184, 0.012237152084708214, -0.025588354095816612, 0.005483218934386969, 0.017737777903676033, -0.01909552700817585, -0.019739588722586632, 0.028007933869957924, 0.018782200291752815, 0.015805596485733986, -0.07206515967845917, 0.04003620147705078, 0.003955750726163387, -0.054170720279216766, -0.0055397916585206985, -0.014900430105626583, 0.00966090988367796, 0.013542680069804192, 0.013438237830996513, -0.05263889953494072, 0.016127625480294228, 0.044596847146749496, 0.07693913578987122, -0.08710484951734543, 0.0830664113163948, -0.009956829249858856, 0.01419544406235218, -0.06715637445449829, 0.029487531632184982, 0.04828713834285736, 0.021723991259932518, -0.02832126058638096, 0.015788188204169273, -0.027085360139608383, -0.008542506955564022, -0.049575261771678925, 0.056224752217531204, -0.014909133315086365, 0.040976181626319885, -0.00045639093150384724, 0.03166341409087181, -0.06280461698770523, -0.017111124470829964, 0.008316215127706528, 0.035405926406383514, -0.007341420743614435, -0.04236874356865883, -0.04574571177363396, 0.020209578797221184, 0.001118402578867972, 0.07930649071931839, -0.026075752452015877, -0.03773847222328186, -0.07763541489839554, 0.003836077405139804, 0.05437960475683212, 0.003931816201657057, 0.07666061818599701, 0.011662719771265984, 0.01664983667433262, -0.06482382863759995, -0.018729979172348976, 0.040175456553697586, 0.04104581102728844, -0.020105136558413506, -0.031733039766550064, -0.012254559434950352, -0.04083692654967308, 0.0009127818630076945, 0.018729979172348976, -0.01626688241958618, 0.0690363347530365, 0.016414841637015343, 0.08362343907356262, -0.010496447794139385, -0.004203801043331623, 0.03229006752371788, 0.007106425706297159, -0.037529587745666504, -0.02971382439136505, -0.0616905651986599, 0.024335047230124474, 0.0013055283343419433, -0.019513295963406563, -0.009791462682187557, 0.005988023243844509, -0.021776212379336357, -0.018503688275814056, 0.06750451773405075, -0.037877727299928665, -0.024926887825131416, 0.03303856775164604, -0.033003754913806915, 0.01152346283197403, -0.013777675107121468, -0.016736872494220734, 0.027955712750554085, 0.025657983496785164, 0.022211387753486633, -0.013211946003139019, -0.054901815950870514, -0.005504977889358997, 0.0680963546037674, -0.06534603983163834, 0.030636398121714592, -0.03777328506112099, -0.1041637510061264, -0.007419752422720194, 0.0029178557451814413, -0.014204148203134537, 0.01192382536828518, -0.037877727299928665, 0.020052915439009666, 0.005100263748317957, 0.020314021036028862, 0.002473976230248809, -0.021532513201236725, -0.018138140439987183, -0.0028917451854795218, 0.03697255998849869, 0.002878689905628562, 0.002178056398406625, -0.038330309092998505, -0.014256369322538376, -0.026354264467954636, 0.011714940890669823, -0.03766884282231331, 0.025187993422150612, 0.007881038822233677, 0.007985481061041355, -0.03476186841726303, -0.0069193001836538315, 0.018312210217118263, -0.07098592817783356, -0.009086476638913155, -0.0009492278913967311, -0.0016689003678038716, -0.03223784640431404, 0.03262079879641533, 0.035527776926755905, 0.001244603656232357, -0.06684304773807526, -0.04661606252193451, -0.09775795787572861, -0.01706760749220848, -0.00353362993337214, 0.009295361116528511, 0.02786867693066597, -0.04449240490794182, 0.03448335453867912, -0.029800860211253166, -0.0520818755030632, 0.012628810480237007, -0.06673860549926758, -0.0552847720682621, -0.004134173039346933, 0.049401190131902695, -0.008416306227445602, 0.051072265952825546, -0.0032355342991650105, 0.004921841900795698, 0.02121918648481369, -0.026737218722701073, 0.07192590832710266, 0.04985377565026283, 0.000020517873053904623, 0.03154156357049942, 0.040001388639211655, -0.012315483763813972, -0.03497075289487839, 0.08341455459594727, 0.07227404415607452, 0.05201224610209465, -0.0407324843108654, 0.012237152084708214, 0.03136749193072319, -0.023325439542531967, -0.021706582978367805, -0.00010818205919349566, -0.05253445729613304, 0.01193252857774496, -0.02012254297733307, 0.07450214773416519, -0.007001983467489481, 0.07119481265544891 ]
7,471
pathlib
write_text
Open the file in text mode, write to it, and close the file.
def write_text(self, data, encoding=None, errors=None, newline=None): """ Open the file in text mode, write to it, and close the file. """ if not isinstance(data, str): raise TypeError('data must be str, not %s' % data.__class__.__name__) encoding = io.text_encoding(encoding) with self.open(mode='w', encoding=encoding, errors=errors, newline=newline) as f: return f.write(data)
(self, data, encoding=None, errors=None, newline=None)
[ -0.02506779506802559, -0.04167855530977249, 0.023676130920648575, 0.07018982619047165, 0.018038107082247734, -0.030081354081630707, -0.04653153941035271, 0.029867252334952354, 0.06961888819932938, -0.022659145295619965, 0.03136596828699112, -0.050278324633836746, 0.034024402499198914, -0.023586921393871307, 0.019019410014152527, -0.008247394114732742, -0.0884241983294487, -0.02877889946103096, 0.012944260612130165, 0.04150013625621796, -0.03395303711295128, 0.000036345794796943665, -0.013640092685818672, -0.0007989802397787571, 0.004839600995182991, 0.04888666048645973, 0.00032951662433333695, -0.006931557785719633, -0.0163431316614151, 0.004052329808473587, -0.03985868766903877, -0.06876248121261597, 0.02963530831038952, -0.011356336064636707, 0.005044782534241676, 0.01584356091916561, -0.02050028182566166, -0.0686197429895401, 0.013702538795769215, -0.0059636374935507774, -0.037931766360998154, 0.06779901683330536, 0.01758314110338688, -0.003853839123621583, -0.004284273367375135, -0.028761057183146477, -0.020072078332304955, 0.054845839738845825, 0.0020651938393712044, -0.007761203683912754, -0.0064542884938418865, 0.01053561083972454, -0.020839277654886246, -0.006360618397593498, -0.01939408853650093, 0.004186143632978201, 0.01286397222429514, 0.011534754186868668, -0.005299028474837542, -0.057986002415418625, 0.030081354081630707, -0.022052522748708725, 0.06576505303382874, -0.04553239420056343, -0.012266269885003567, 0.039216380566358566, -0.008376747369766235, -0.030777186155319214, 0.05370396003127098, 0.02258777804672718, 0.040572360157966614, -0.013238650746643543, 0.009014593437314034, -0.01989365927875042, 0.05477447062730789, 0.04471166804432869, -0.05927061662077904, 0.02902868576347828, 0.029778042808175087, 0.03015272133052349, -0.010954894125461578, -0.02091064490377903, 0.03318583592772484, 0.04988580569624901, -0.0007839261670596898, -0.047387946397066116, -0.008470417000353336, 0.014344844967126846, -0.03265058249235153, -0.0356658510863781, 0.0035951321478933096, -0.06369539350271225, -0.0005567214102484286, 0.020535966381430626, 0.01893020048737526, -0.042356546968221664, 0.007645231671631336, -0.028814584016799927, -0.04603196680545807, 0.026727087795734406, -0.030384665355086327, 0.07258063554763794, 0.026120465248823166, -0.02990293689072132, 0.030438192188739777, -0.09013701230287552, -0.021303165704011917, 0.033524829894304276, -0.005160754546523094, 0.008929844945669174, -0.033524829894304276, -0.038752492517232895, -0.010366112925112247, -0.025995571166276932, 0.04778046905994415, -0.04767341539263725, -0.02776191383600235, -0.006168818566948175, 0.020874962210655212, -0.05163430795073509, 0.017600981518626213, -0.011507991701364517, 0.0009188551339320838, -0.013363543897867203, 0.025995571166276932, 0.0015232476871460676, 0.017618823796510696, 0.007801347877830267, 0.07786182314157486, -0.02831501141190529, -0.0006222344236448407, 0.00899675115942955, 0.10983441025018692, -0.04096488282084465, 0.024371962994337082, 0.023836707696318626, -0.007640771102160215, 0.05166998878121376, -0.004311036318540573, -0.0009629022097215056, 0.06044817715883255, -0.09284897148609161, -0.036218948662281036, -0.005932414438575506, -0.0015143267810344696, 0.015691904351115227, 0.0023662750609219074, -0.052276611328125, -0.03584427013993263, 0.01750285178422928, 0.024639591574668884, 0.02893947623670101, -0.05452468618750572, -0.01700328104197979, 0.011552596464753151, -0.01306915283203125, 0.011864828877151012, -0.03177633136510849, -0.03270410746335983, 0.04014415666460991, -0.018252210691571236, 0.02624535746872425, -0.013283255510032177, 0.04182128980755806, 0.007154580671340227, 0.05334712192416191, -0.051741357892751694, -0.02471095882356167, 0.03375677391886711, -0.04517555609345436, 0.016583997756242752, -0.02355123870074749, 0.0029149118345230818, 0.06597915291786194, -0.030670136213302612, 0.01711033098399639, 0.03513059765100479, -0.023212242871522903, 0.030313298106193542, 0.0051339915953576565, -0.03889522701501846, -0.04292748495936394, -0.01994718611240387, 0.029956461861729622, 0.01903725042939186, -0.028850266709923744, -0.021285323426127434, 0.02897516079246998, -0.024032969027757645, 0.00480837794020772, 0.03689694032073021, -0.06587210297584534, -0.0003144625516142696, 0.02374749816954136, -0.015602695755660534, -0.021142588928341866, 0.054738786071538925, -0.011258205398917198, -0.01873393915593624, 0.02861832268536091, 0.01882314868271351, 0.03282899782061577, 0.08349984884262085, 0.005187517032027245, 0.014612472616136074, 0.032864682376384735, 0.025157004594802856, 0.000789501762483269, -0.04446188360452652, 0.00011409025319153443, 0.04064372926950455, 0.01363117154687643, -0.025959888473153114, 0.017047885805368423, 0.05720096081495285, -0.013381385244429111, -0.009438336826860905, -0.010473164729773998, -0.003996573854237795, 0.018858833238482475, 0.011525833047926426, 0.04867256060242653, -0.008314301259815693, 0.052098195999860764, -0.01512096542865038, 0.008247394114732742, 0.005495288874953985, 0.0328468419611454, 0.028136592358350754, -0.0036843414418399334, -0.010696187615394592, 0.04396231099963188, -0.003943048417568207, 0.009581072255969048, -0.03634384274482727, -0.05431058257818222, -0.036718521267175674, -0.04100056365132332, -0.026976874098181725, -0.020393231883645058, -0.03309662640094757, -0.03811018541455269, -0.01228411216288805, 0.0754353329539299, 0.000583205372095108, -0.04706679284572601, 0.008260775357484818, 0.025210529565811157, 0.04071509465575218, -0.04160718619823456, 0.04485440254211426, -0.020625175908207893, -0.05538109317421913, -0.015031756833195686, -0.018805306404829025, 0.0060171629302203655, 0.00768983643501997, -0.053025972098112106, 0.04503282159566879, 0.0037066438235342503, 0.010606978088617325, 0.05163430795073509, -0.03668283671140671, 0.021945472806692123, 0.050992000848054886, -0.059306301176548004, -0.0722951665520668, 0.036165423691272736, 0.00045775488251820207, 0.014621393755078316, 0.014282398857176304, 0.0984869971871376, -0.02207036502659321, -0.0326327383518219, -0.060127027332782745, -0.016030900180339813, 0.03086639568209648, -0.01730659231543541, 0.043070219457149506, -0.034238506108522415, -0.009937909431755543, 0.05613045021891594, 0.010196615941822529, -0.05648728832602501, 0.0653725266456604, -0.02533542364835739, -0.020482441410422325, 0.0037512483540922403, 0.0035371461417526007, -0.024300595745444298, -0.018145158886909485, 0.0059056514874100685, -0.02035754732787609, 0.06451611965894699, 0.016940834000706673, 0.014371608383953571, -0.04460461810231209, -0.012979944236576557, 0.042606331408023834, -0.1286754012107849, 0.01725306548178196, -0.027012556791305542, 0.03857407346367836, -0.004391324706375599, -0.06804880499839783, -0.021303165704011917, -0.009964671917259693, 0.0002863059053197503, -0.011846986599266529, 0.005669246893376112, -0.014460816979408264, -0.04592491686344147, 0.002821242203935981, 0.0812874585390091, 0.002736493246629834, 0.009126105345785618, -0.009456179104745388, -0.024443330243229866, 0.0007225947920233011, -0.010464243590831757, 0.008506100624799728, -0.10169853270053864, 0.03081287071108818, -0.038502708077430725, 0.015094202943146229, -0.05755779892206192, 0.047887519001960754, -0.0361475832760334, 0.021249640733003616, -0.009152867831289768, 0.026227515190839767, -0.004719168413430452, 0.048244357109069824, -0.006775441579520702, -0.03232942894101143, -0.06087638437747955, 0.02374749816954136, -0.05324007198214531, 0.024193545803427696, 0.012721236795186996, -0.006191120948642492, 0.01579003408551216, 0.023586921393871307, -0.03968026861548424, -0.0073196180164813995, 0.04110761731863022, -0.0395018495619297, -0.021249640733003616, 0.00781472958624363, 0.06583641469478607, 0.011311731301248074, 0.001390549005009234, 0.03434555605053902, -0.054738786071538925, -0.02583499439060688, -0.04927918314933777, 0.016200397163629532, 0.01579003408551216, -0.011061944998800755, -0.05277618393301964, 0.004732550121843815, 0.04542534425854683, -0.007324078120291233, 0.017154935747385025, 0.0005609030486084521, -0.008974448777735233, 0.013167283497750759, 0.09284897148609161, 0.011499070562422276, 0.04125035181641579, 0.05969882011413574, -0.04442619904875755, 0.0005031958571635187, 0.03086639568209648, 0.03004567138850689, 0.052098195999860764, 0.015540248714387417, -0.012185981497168541, -0.06936910003423691, -0.009848699904978275, 0.00936696957796812, -0.021196113899350166, -0.06126890331506729, -0.05566656216979027, 0.04699542745947838, -0.017021121457219124, -0.04467598721385002, 0.0035906718112528324, -0.00027529412182047963, -0.01785968989133835, -0.002607139991596341, 0.021303165704011917, 0.04189265891909599, -0.016057662665843964, -0.06283898651599884, 0.05013559013605118, 0.018412785604596138, 0.004357871133834124, 0.007721059489995241, 0.0655866339802742, -0.038966596126556396, 0.00004488339618546888, -0.020643018186092377, 0.04299885034561157, 0.024300595745444298, 0.0812874585390091, -0.058556944131851196, 0.002282641362398863, 0.009714885614812374, 0.03700399026274681, 0.010553453117609024, 0.04581786319613457, 0.05698686093091965, -0.002892609452828765, 0.010856764391064644, 0.04528260976076126, -0.02010776288807392, -0.04146445170044899, -0.003059876849874854, 0.010214457288384438, -0.0681915432214737, -0.002350663300603628, 0.021642161533236504, 0.09691691398620605, 0.026405934244394302, -0.06387381255626678, -0.010464243590831757, -0.052918918430805206, 0.009197472594678402, 0.016762414947152138, 0.043569792062044144, -0.07786182314157486, -0.05498857423663139, 0.014585710130631924, 0.0006556878797709942, -0.014585710130631924, -0.040179841220378876, -0.014621393755078316, -0.018662571907043457, 0.002457714406773448, 0.07151012122631073, -0.02182057872414589, 0.00007269158959388733, 0.028100909665226936, -0.005000177770853043, -0.045853547751903534, 0.01380958966910839, -0.038859542459249496, 0.03325720503926277, 0.026923347264528275, 0.03668283671140671, 0.01878746598958969, -0.0057584564201533794, 0.0010916980681940913, -0.006655008997768164, -0.02390807494521141, 0.04506850615143776, -0.0949186310172081, -0.006124214269220829, 0.020785752683877945, -0.029885094612836838, 0.08385667949914932, 0.01755637861788273, -0.051491569727659225, 0.014425133354961872, -0.014683840796351433, -0.0685126930475235, 0.027369393035769463, 0.02207036502659321, -0.023337136954069138, -0.009804095141589642, 0.06676419079303741, -0.028564797714352608, 0.017342275008559227, 0.017547456547617912, 0.04328432306647301, -0.057486433535814285, -0.022016840055584908, -0.030188405886292458, -0.017092490568757057, 0.01783292554318905, 0.018751781433820724, 0.039608899503946304, -0.016887309029698372, -0.021053379401564598, -0.005035861395299435, 0.08164429664611816, -0.03427418693900108, 0.020286180078983307, 0.032811157405376434, 0.06605052202939987, -0.019162144511938095, 0.007386524695903063, -0.053882379084825516, -0.04071509465575218, 0.021535109728574753, -0.027529969811439514, -0.015647299587726593, -0.0523836649954319, -0.045496709644794464, -0.01568298414349556, 0.02893947623670101, 0.0028792282100766897, 0.007270552683621645, 0.040072787553071976, 0.02893947623670101, 0.023943759500980377, 0.031437333673238754, 0.049921490252017975, 0.008974448777735233, -0.04785183444619179, 0.014862258918583393, 0.013889878056943417, 0.004393554758280516, 0.03757493197917938, -0.042463596910238266, -0.05013559013605118, -0.029171420261263847, -0.05645160377025604, 0.009911146014928818, -0.0819297656416893, 0.05049242824316025, -0.00018873329099733382, -0.06148300692439079, 0.023230085149407387, 0.01200756337493658, -0.07290178537368774, 0.0010353847173973918, -0.04542534425854683, 0.033275045454502106, -0.021552952006459236, -0.013060232624411583, 0.027476444840431213, -0.007373143453150988, -0.016191476956009865, 0.00014015607303008437, -0.021909788250923157, 0.061340272426605225, 0.055559512227773666, 0.04785183444619179, 0.012658790685236454, -0.00858192890882492, -0.033881668001413345, -0.05109905079007149, -0.01587032340466976, -0.03523764759302139, 0.01804702915251255, -0.04182128980755806, 0.01785968989133835, 0.05345417559146881, -0.012301953509449959, -0.004284273367375135, 0.014924705028533936, 0.04000142216682434, 0.04521124064922333, 0.04485440254211426, -0.02264130488038063, 0.05655865743756294, 0.010473164729773998, -0.004054559860378504, 0.00008453969348920509, -0.01609334722161293, 0.0036129741929471493, -0.019661715254187584, 0.0033944114111363888, 0.051741357892751694, 0.013113757595419884, 0.011329572647809982, -0.03893091157078743, -0.012239507399499416, 0.06637167185544968, 0.032953891903162, 0.021749211475253105, -0.04977875575423241, -0.006400762591511011, -0.040679413825273514, 0.019465455785393715, 0.05384669452905655, -0.01964387483894825, -0.04481872171163559, -0.04071509465575218, 0.0034077928867191076, -0.04828003793954849, -0.005816442426294088, 0.040179841220378876, 0.0034568579867482185, 0.0013169513549655676, 0.03131244331598282, -0.036718521267175674, 0.01579003408551216, 0.010473164729773998, 0.01322080846875906, 0.053061652928590775, -0.07293747365474701, 0.050777897238731384, 0.01994718611240387, 0.01172209344804287, -0.019483298063278198, 0.01730659231543541, 0.0090101333335042, -0.015549169853329659, 0.0228375643491745, -0.05720096081495285, 0.04217812791466713, 0.04506850615143776, 0.07629173994064331, -0.04496145620942116, 0.054381951689720154, -0.01157043781131506, 0.030527401715517044, -0.04960033670067787, -0.014246715232729912, 0.005093847401440144, -0.06701397895812988, 0.008015450090169907, 0.006815585773438215, 0.036718521267175674, -0.02572794444859028, 0.047994568943977356, 0.021106906235218048, 0.07850413024425507, 0.021695686504244804, 0.008720203302800655, 0.02801170013844967, -0.0716528594493866, 0.03313231095671654, -0.02107122167944908, -0.013996928930282593, -0.05031400918960571, -0.09192119538784027, -0.05648728832602501, 0.023997284471988678, -0.01528154220432043, 0.037182409316301346, -0.026727087795734406, 0.008622072637081146, -0.06444475054740906, -0.020678700879216194, 0.04574649780988693, -0.02025049738585949, 0.0034501671325415373, 0.003691032063215971, -0.009813016280531883, -0.04446188360452652, -0.010910289362072945, 0.028707532212138176, -0.01736011728644371, -0.02767270617187023, 0.009572151117026806, -0.07247358560562134, -0.05598771572113037, 0.008073436096310616, 0.042356546968221664, 0.001072183484211564, 0.09434768557548523, 0.031187549233436584, 0.08785325288772583, -0.01730659231543541, 0.02360476367175579, -0.0023395123425871134, 0.017458247020840645, 0.018287893384695053, 0.008068975061178207, -0.04110761731863022, 0.01264094840735197, -0.016985438764095306, -0.02563873492181301, -0.012623107060790062, 0.03238295391201973, -0.023925917223095894, 0.010366112925112247, 0.04503282159566879, -0.0067709810100495815, 0.020946329459547997, 0.0391806960105896, -0.0022670298349112272, 0.018091633915901184, -0.05373964458703995, 0.015950610861182213, 0.011195759288966656, 0.0000380184683308471, 0.008622072637081146, -0.01020553708076477, -0.09734512120485306, -0.00628033047541976, 0.06701397895812988, -0.01909077726304531, 0.03304310142993927, 0.02720881812274456, -0.03434555605053902, -0.01719954051077366, 0.016575075685977936, -0.06608620285987854, -0.010169853456318378, 0.06901226192712784, -0.03050955943763256, 0.0030219629406929016, -0.017476089298725128, 0.03420282155275345, -0.0003696607891470194, 0.0000729006715118885, -0.005878888536244631, 0.02533542364835739, -0.04581786319613457, -0.0068468088284134865, -0.0750071257352829, -0.0005218740552663803, -0.055095624178647995, 0.019501138478517532, -0.048958029597997665, -0.0163431316614151, -0.000861426698975265, 0.04435483366250992, -0.0424279123544693, 0.0033899510744959116, -0.012792604975402355, 0.00936696957796812, -0.0008134767413139343, 0.0015355140203610063, -0.021392375230789185, -0.0030621071346104145, 0.017672350630164146, 0.02371181547641754, -0.04974307119846344, -0.03134812414646149, 0.006619325373321772, -0.062125314027071, -0.04806593805551529, 0.023105192929506302, -0.011070866137742996, -0.000553933612536639, -0.00234174239449203, 0.0016782487509772182, -0.00949186272919178, -0.0587710440158844, 0.020286180078983307, -0.028243644163012505, -0.050635162740945816, -0.001179792103357613, 0.04792320355772972, -0.013559804297983646, 0.050421059131622314, -0.024907218292355537, -0.091350257396698, 0.07272336632013321, 0.008109119720757008, 0.0455680787563324, 0.02405080944299698, -0.025603050366044044, 0.022801881656050682, 0.03282899782061577, -0.005191977601498365, -0.0519554577767849, 0.08457035571336746, 0.04456893354654312, 0.04960033670067787, 0.016414498910307884, 0.027690546587109566, 0.0246752742677927, 0.015593774616718292, -0.010089565068483353, 0.053525540977716446, -0.004741470795124769, 0.05006422474980354, -0.013729301281273365, 0.06162574142217636, -0.00879157055169344, 0.047887519001960754 ]
7,472
gruut_lang_de
get_lang_dir
Get directory with language resources
def get_lang_dir() -> Path: """Get directory with language resources""" return _DIR
() -> pathlib.Path
[ -0.008269443176686764, -0.03895905986428261, 0.01665472984313965, -0.002613161923363805, 0.024024158716201782, -0.00907589215785265, 0.036998629570007324, 0.038816481828689575, 0.0055114771239459515, -0.030564861372113228, 0.045089855790138245, -0.03714120760560036, 0.008371920324862003, 0.03974322974681854, -0.03220449388027191, 0.0011272463016211987, -0.0354481115937233, -0.0006098491721786559, -0.011112065054476261, 0.013393290340900421, 0.0069996207021176815, -0.04405617341399193, 0.03614317253232002, -0.04398488625884056, -0.027962839230895042, 0.0503295436501503, 0.051897887140512466, -0.016084425151348114, -0.048369117081165314, -0.07720523327589035, -0.020441921427845955, 0.03322035074234009, 0.03263222426176071, 0.034147098660469055, -0.05065034329891205, 0.04715721681714058, 0.001471435185521841, -0.04427003860473633, -0.08198155462741852, -0.08953811228275299, 0.005489199422299862, 0.04612353444099426, 0.02643013931810856, 0.006277826614677906, 0.02495090663433075, 0.0138655761256814, -0.056032609194517136, -0.037640225142240524, 0.007948646321892738, 0.052004821598529816, 0.04672948643565178, 0.005662965122610331, -0.030867837369441986, -0.043485868722200394, -0.02208155393600464, 0.027642041444778442, -0.012653674930334091, -0.046800773590803146, -0.0037805079482495785, 0.07877358049154282, 0.03477087244391441, -0.026804404333233833, 0.047442369163036346, 0.030511396005749702, -0.02550339139997959, 0.046159178018569946, -0.01656562089920044, -0.03580455109477043, 0.006349114701151848, 0.02794501557946205, -0.013651710934937, 0.03910163789987564, -0.014008152298629284, -0.016743840649724007, 0.04109770804643631, -0.04266605153679848, -0.02635885216295719, 0.012760606594383717, 0.0033928777556866407, 0.007097641937434673, -0.07118137180805206, -0.02368553914129734, -0.019176553934812546, -0.014328950084745884, 0.0983065739274025, 0.02653707191348076, 0.027143022045493126, -0.035002559423446655, -0.028747009113430977, -0.0266618262976408, -0.028426213189959526, -0.02070925384759903, 0.013339824043214321, 0.003894123714417219, 0.0266618262976408, -0.03314906358718872, 0.0023391474969685078, 0.02186768874526024, 0.005916929338127375, 0.01594184711575508, 0.007676859386265278, 0.026162808761000633, 0.008425386622548103, -0.018080497160553932, 0.06462284922599792, -0.04223832115530968, -0.007561015896499157, 0.0026844502426683903, 0.012965560890734196, -0.050080034881830215, -0.022651860490441322, -0.02717866748571396, -0.021172627806663513, 0.02295483462512493, 0.014266572892665863, 0.051755309104919434, -0.052325617522001266, -0.0008081197738647461, -0.026376673951745033, 0.04181059077382088, -0.03027970902621746, 0.07549431920051575, -0.047941386699676514, -0.05004439130425453, 0.035091668367385864, -0.015425007790327072, 0.01613789051771164, -0.0011439545778557658, -0.040206603705883026, 0.01828545145690441, 0.020531032234430313, 0.06815162301063538, 0.005667420569807291, -0.062412913888692856, 0.03049357421696186, 0.01471212413161993, 0.028818298131227493, 0.04587402567267418, 0.03345203772187233, 0.11206521838903427, 0.028533145785331726, 0.017438901588320732, 0.005609498824924231, -0.045731447637081146, 0.02252710424363613, 0.02231324091553688, 0.0019103038357570767, 0.05585438758134842, -0.05364445224404335, 0.033095598220825195, 0.016120068728923798, -0.048083964735269547, 0.008781827986240387, -0.02283008024096489, 0.02593112178146839, -0.051755309104919434, -0.05628211796283722, 0.03179458528757095, 0.002695589093491435, -0.04430568218231201, -0.0004413748683873564, 0.013446756638586521, -0.08176768571138382, -0.011022954247891903, 0.004179276991635561, 0.04705028235912323, 0.006326837465167046, 0.003152279881760478, -0.00033499934943392873, -0.024933084845542908, -0.036606546491384506, -0.07421112805604935, -0.036998629570007324, -0.0038495685439556837, -0.03265004605054855, 0.01679730787873268, 0.043699733912944794, 0.05884849652647972, 0.038174889981746674, -0.015362630598247051, 0.017028994858264923, 0.043165069073438644, -0.017073549330234528, 0.05478506535291672, 0.01071997918188572, 0.02625191956758499, 0.01677948608994484, 0.030137130990624428, -0.01508638821542263, 0.007872902788221836, -0.09146289527416229, 0.03229360282421112, -0.01878446899354458, -0.017171571031212807, -0.07314180582761765, -0.008781827986240387, 0.06733180582523346, -0.016645818948745728, -0.029869800433516502, -0.028390567749738693, 0.013411113061010838, 0.034057989716529846, 0.06462284922599792, -0.001172915450297296, -0.019408240914344788, -0.025146950036287308, -0.055177148431539536, 0.026786580681800842, -0.07246456295251846, 0.029994554817676544, 0.04676513001322746, -0.02749946527183056, -0.009214013814926147, 0.010595224797725677, -0.017394347116351128, -0.03441442921757698, -0.053038500249385834, 0.03803231194615364, -0.05107807368040085, 0.058991074562072754, -0.0037181307561695576, -0.05621083080768585, 0.0039008071180433035, -0.06390997022390366, 0.04166801646351814, -0.07998547703027725, 0.023418208584189415, -0.01353586744517088, -0.02336474321782589, -0.041275929659605026, -0.011593260802328587, -0.03910163789987564, 0.05193353071808815, -0.010220960713922977, 0.004669384099543095, -0.0034953549038618803, 0.01189623586833477, 0.03092130273580551, 0.017501279711723328, 0.010434825904667377, -0.0025062295608222485, -0.06911401450634003, 0.01656562089920044, 0.0516127347946167, 0.02771332859992981, 0.04491163417696953, 0.04384230822324753, -0.012938827276229858, 0.05328800901770592, 0.008483308367431164, 0.0008237141300924122, -0.016218090429902077, -0.04822653904557228, -0.06284064054489136, 0.013286358676850796, -0.004500074312090874, -0.01997854746878147, 0.002368108369410038, 0.0005753189325332642, -0.028604432940483093, -0.014854701235890388, 0.0038874405436217785, -0.05236126109957695, 0.0006755681242793798, -0.02295483462512493, -0.020851830020546913, 0.040955133736133575, -0.006861499510705471, -0.022562749683856964, -0.0009651768486946821, 0.13402201235294342, 0.07406855374574661, -0.03386194631457329, -0.028657900169491768, 0.04259476438164711, 0.01880229078233242, -0.009855608455836773, 0.022152841091156006, -0.01464974693953991, 0.04195316880941391, -0.01513985451310873, 0.016743840649724007, 0.026733115315437317, 0.03895905986428261, -0.020352812483906746, -0.007271407172083855, -0.039458077400922775, -0.05670984834432602, -0.06843677163124084, 0.026002410799264908, 0.06868628412485123, 0.008532319217920303, -0.027107378467917442, -0.016939884051680565, 0.053038500249385834, -0.03015495464205742, -0.02728560008108616, -0.04872555658221245, 0.06045248359441757, -0.06184260547161102, -0.04601660370826721, 0.04120464250445366, 0.0007128830766305327, 0.008536774665117264, -0.11484546214342117, 0.006843677256256342, -0.028105415403842926, -0.04102642089128494, 0.024041982367634773, -0.00007048770930850878, -0.01923002116382122, -0.019693395122885704, 0.1100691482424736, 0.002633211901411414, 0.005662965122610331, 0.05293156951665878, 0.011762570589780807, -0.017242860049009323, 0.0035399100743234158, 0.030511396005749702, -0.045196786522865295, 0.07392597198486328, 0.054000891745090485, -0.04655126482248306, -0.006179804913699627, -0.006456047296524048, 0.037747159600257874, 0.024612288922071457, 0.07075364142656326, -0.04473341256380081, -0.02664400450885296, -0.0018145102076232433, -0.016218090429902077, -0.03992145135998726, 0.010042740032076836, 0.046373043209314346, 0.06683278828859329, -0.020103301852941513, 0.03555504232645035, -0.034147098660469055, 0.06576346606016159, -0.06476542353630066, -0.04915328696370125, -0.0014558408875018358, 0.007302595768123865, 0.04544629529118538, 0.0001911696163006127, 0.005662965122610331, 0.048903778195381165, -0.016173534095287323, -0.008550141006708145, 0.0236677173525095, 0.009802142158150673, -0.027784617617726326, -0.08661529421806335, -0.0550345741212368, -0.05385831743478775, 0.011005132459104061, -0.005729797761887312, 0.05556923523545265, -0.06170003116130829, 0.034877803176641464, 0.02019241265952587, 0.03781844675540924, -0.01098731067031622, 0.009855608455836773, 0.02846185676753521, -0.02486179769039154, 0.0134378457441926, 0.032347068190574646, 0.01708246022462845, 0.03430749848484993, -0.0016117841005325317, 0.018098318949341774, -0.019051799550652504, -0.04697899520397186, 0.015291341580450535, 0.013250714167952538, -0.011415040120482445, 0.03963629901409149, 0.021636001765727997, 0.051790956407785416, -0.00541345588862896, 0.022580571472644806, 0.0031723296269774437, -0.061022792011499405, 0.04066997766494751, -0.020584499463438988, -0.026394495740532875, -0.010087295435369015, 0.018534960225224495, -0.008764006197452545, 0.018205251544713974, -0.0019749088678508997, -0.02985197864472866, -0.04740672558546066, -0.028444034978747368, -0.010336804203689098, 0.0563177615404129, 0.010844733566045761, 0.06890014559030533, 0.028960874304175377, 0.024184558540582657, 0.01243089884519577, -0.027321243658661842, 0.01503292191773653, 0.018338916823267937, 0.018223073333501816, -0.04059869050979614, 0.03156289830803871, -0.013580422848463058, -0.009022426791489124, 0.04437696933746338, -0.022135019302368164, -0.023525141179561615, -0.017260681837797165, -0.02400633692741394, -0.02197462134063244, 0.026893513277173042, 0.007627849001437426, -0.030457928776741028, -0.06501493602991104, 0.04459083452820778, 0.015638872981071472, 0.025645967572927475, -0.008429842069745064, -0.016173534095287323, -0.011112065054476261, -0.030244063585996628, -0.020655786618590355, 0.02218848466873169, -0.043378934264183044, 0.03314906358718872, -0.06544266641139984, 0.013785376213490963, -0.012092279270291328, -0.012689318507909775, -0.029887622222304344, -0.09003712981939316, -0.014391327276825905, -0.0044443802908062935, -0.005872374400496483, 0.02516477182507515, 0.06804469227790833, -0.003163418732583523, 0.00785508006811142, -0.040313538163900375, 0.022010264918208122, -0.01763494499027729, -0.03122427873313427, -0.02209937572479248, 0.029816335067152977, 0.06840112805366516, 0.006527335848659277, 0.012903183698654175, -0.03821053355932236, -0.05827819183468819, -0.044769056141376495, -0.042951203882694244, -0.018624071031808853, 0.030956948176026344, 0.01848149299621582, 0.08989455550909042, -0.016182444989681244, 0.004439924843609333, -0.053573161363601685, -0.011263552121818066, 0.011691282503306866, 0.001835673931054771, -0.002501774113625288, -0.014337860979139805, 0.03156289830803871, -0.038709551095962524, 0.013936864212155342, -0.021796399727463722, -0.015442829579114914, -0.045089855790138245, 0.03166982904076576, -0.06868628412485123, -0.020317167043685913, -0.0135447783395648, 0.006937243510037661, -0.007828347384929657, -0.01093384437263012, -0.02929949387907982, -0.03006584383547306, -0.031295567750930786, 0.072179414331913, -0.022170662879943848, 0.016930973157286644, 0.06130794435739517, 0.09545504301786423, -0.030529217794537544, -0.023614251986145973, -0.03653525561094284, -0.008590240962803364, 0.007418439257889986, 0.05022261291742325, 0.006358026061207056, -0.008590240962803364, 0.023293454200029373, -0.08133995532989502, -0.005297612398862839, 0.04216703400015831, -0.007926369085907936, -0.02707173489034176, -0.0360897071659565, -0.016387399286031723, 0.03689169883728027, -0.009312035515904427, 0.0069461544044315815, -0.00406566122546792, 0.00026398952468298376, -0.06825855374336243, 0.04523243010044098, 0.02154689095914364, 0.0053421673364937305, 0.08982326835393906, 0.02411326952278614, 0.009040248580276966, -0.0584564134478569, -0.02707173489034176, 0.032240137457847595, 0.012297232635319233, -0.03284608572721481, 0.05171966552734375, -0.005244146101176739, -0.025325171649456024, -0.008416475728154182, 0.06843677163124084, -0.02370336279273033, -0.051470156759023666, 0.022598393261432648, 0.026002410799264908, -0.019158732146024704, 0.05949009209871292, -0.08012805879116058, -0.02081618644297123, -0.04822653904557228, 0.004110216628760099, 0.004054522607475519, -0.052183039486408234, 0.031063878908753395, -0.014320038259029388, -0.007823891937732697, 0.019497351720929146, -0.007021898403763771, -0.006589713040739298, 0.04523243010044098, 0.05257512629032135, 0.040634334087371826, -0.025645967572927475, -0.051149360835552216, 0.018338916823267937, 0.029139095917344093, -0.020334988832473755, 0.006041684187948704, 0.02794501557946205, 0.013339824043214321, 0.008737273514270782, -0.02632320672273636, -0.004515668842941523, -0.06063070520758629, 0.0038740739692002535, 0.026501428335905075, 0.01751019060611725, -0.009525899775326252, -0.001982706133276224, 0.012288321740925312, 0.034574829041957855, 0.04045611247420311, 0.03835310786962509, 0.006153072230517864, -0.06647634506225586, 0.0068926881067454815, 0.046586908400058746, 0.04394924268126488, -0.002052880357950926, 0.033077772706747055, 0.021582534536719322, -0.023721184581518173, 0.014008152298629284, 0.0469077043235302, 0.013357646763324738, 0.003593376139178872, -0.022152841091156006, 0.04633739963173866, 0.04373537749052048, 0.023542962968349457, 0.030850015580654144, -0.04430568218231201, 0.025253882631659508, 0.04876120388507843, -0.013963596895337105, 0.04223832115530968, -0.04159672558307648, -0.017225036397576332, -0.054214756935834885, 0.02029934525489807, 0.01216356735676527, -0.03272133320569992, 0.017866631969809532, -0.0266618262976408, 0.055925678461790085, -0.010354626923799515, -0.03207973763346672, 0.02049538865685463, -0.01701117306947708, -0.05089985206723213, 0.05036518722772598, -0.051363226026296616, -0.04672948643565178, 0.01310813706368208, -0.04309378191828728, 0.026715293526649475, -0.002046197187155485, 0.01987161487340927, -0.019675573334097862, -0.015326986089348793, -0.0018891401123255491, -0.07927259802818298, -0.011931880377233028, -0.013981419615447521, -0.006393670104444027, 0.01455172523856163, -0.004647106397897005, 0.015122031792998314, 0.009058070369064808, -0.061022792011499405, 0.005275334697216749, 0.0005814452306367457, -0.0002694196882657707, 0.03259657695889473, -0.03428967669606209, -0.0069728875532746315, 0.003865162841975689, 0.006683278828859329, -0.03145596385002136, 0.05079291760921478, -0.002421574667096138, -0.02571725659072399, 0.060595061630010605, -0.0053956336341798306, -0.026590539142489433, -0.026715293526649475, 0.058991074562072754, -0.04451954737305641, 0.016815129667520523, -0.03231142461299896, -0.03124210052192211, -0.010755623690783978, -0.028729187324643135, 0.007899635471403599, -0.004691661801189184, -0.03348768129944801, 0.028319280594587326, 0.05827819183468819, 0.025307349860668182, 0.016619086265563965, -0.03291737660765648, 0.02537863701581955, 0.007574382703751326, -0.03441442921757698, -0.040955133736133575, 0.0025708344765007496, 0.005529299378395081, -0.02953118085861206, -0.017358703538775444, 0.03995709493756294, -0.03079654835164547, 0.0335233248770237, 0.05945444852113724, -0.003838429693132639, -0.06348223984241486, 0.0013711859937757254, 0.02516477182507515, -0.014017063193023205, -0.030778726562857628, 0.051470156759023666, 0.03760458156466484, -0.08854007720947266, 0.06943481415510178, -0.04886813461780548, 0.0631614401936531, -0.03134903311729431, 0.06088021397590637, 0.02486179769039154, 0.051577091217041016, 0.06045248359441757, -0.02837274596095085, -0.07770425826311111, 0.04345022141933441, -0.028853941708803177, -0.023507319390773773, 0.04580273851752281, -0.03370154649019241, 0.025645967572927475, -0.004976815078407526, -0.023329097777605057, 0.004384230822324753, 0.052004821598529816, -0.04209574684500694, 0.016859684139490128, -0.005685242358595133, 0.05621083080768585, -0.013143781572580338, 0.024826152250170708, 0.0068392218090593815, -0.07528045028448105, 0.0558900311589241, 0.044448260217905045, -0.03674912080168724, -0.022473638877272606, -0.048404760658741, 0.01614680141210556, -0.037533294409513474, -0.02357860840857029, 0.03555504232645035, 0.019408240914344788, -0.06854370981454849, 0.004435469396412373, -0.04608789086341858, 0.012903183698654175, -0.023845938965678215, 0.026091519743204117, 0.01901615597307682, 0.013981419615447521, -0.021279560402035713, -0.020976584404706955, 0.013366557657718658, -0.05414346978068352, 0.0007858421886339784, 0.025735078379511833, 0.021190449595451355, 0.011860592290759087, -0.008095677942037582, 0.014222017489373684, 0.014908167533576488, -0.011798215098679066, -0.0020539944525808096, 0.06002475321292877, 0.03644614666700363, 0.018641892820596695, -0.042951203882694244, 0.03621445968747139, 0.03853132948279381, 0.024612288922071457, -0.04024225100874901, 0.0007045289967209101, 0.014373504556715488, 0.016645818948745728, 0.01205663476139307, -0.03222231566905975, 0.047299791127443314, -0.04066997766494751, -0.06127230077981949, 0.004132493864744902, -0.044127460569143295, -0.04352151229977608, 0.021689467132091522, 0.015122031792998314, -0.07435370236635208, 0.03813924267888069, 0.013910130597651005, 0.032560933381319046, 0.0021687240805476904, -0.015460651367902756, -0.022241951897740364 ]
7,473
orjson
Fragment
null
from orjson import Fragment
null
[ 0.001657427055761218, -0.03829523175954819, -0.04977326840162277, 0.021745091304183006, -0.0011106187012046576, 0.028800399973988533, -0.007788042537868023, 0.07539702206850052, -0.011732521466910839, 0.0003142639761790633, 0.04791291430592537, -0.00681398855522275, -0.055880848318338394, 0.01471610926091671, 0.0004768804938066751, 0.012864530086517334, -0.033854950219392776, 0.035048384219408035, -0.017848877236247063, -0.0023737074807286263, -0.04879043996334076, -0.015172422863543034, 0.00671307323500514, 0.07539702206850052, -0.007191324606537819, -0.014119391329586506, -0.009810739196836948, -0.010530310682952404, 0.04879043996334076, -0.016804620623588562, 0.01615525223314762, -0.11127028614282608, 0.009240347892045975, 0.05051039159297943, -0.04162982851266861, -0.0021510354708880186, 0.01150436419993639, 0.04777251183986664, -0.02665923722088337, -0.049141451716423035, -0.05577554553747177, 0.0025755385868251324, -0.07518641650676727, -0.008064462803304195, 0.03246845677495003, -0.018270090222358704, 0.03311782702803612, -0.020270848646759987, 0.03910255432128906, -0.05844322592020035, 0.05567024275660515, -0.0067437863908708096, -0.03553979843854904, 0.016690542921423912, -0.0041441163048148155, -0.02037615142762661, -0.05328337103128433, 0.0998273491859436, 0.0007321856683120131, 0.07883692532777786, -0.03381984680891037, -0.02462337724864483, -0.013575325720012188, -0.003034045919775963, 0.0056512667797505856, 0.031994596123695374, -0.016655441373586655, -0.004306458402425051, 0.0012998352758586407, -0.0037404540926218033, -0.01977943442761898, 0.04071720317006111, 0.025395600125193596, 0.06648135930299759, 0.019533727318048477, -0.024325018748641014, -0.061005599796772, -0.0013448084937408566, -0.02009534277021885, -0.014110616408288479, 0.044929325580596924, -0.0360487625002861, -0.04384119436144829, 0.0062128836289048195, -0.02213120274245739, -0.018550897017121315, -0.03131012246012688, -0.038646239787340164, -0.02827388420701027, -0.028115930035710335, -0.054687414318323135, 0.0005758763873018324, -0.09119249135255814, 0.008705057203769684, -0.009319324977695942, 0.020253296941518784, 0.012399440631270409, -0.025009488686919212, -0.04707048833370209, -0.01124988216906786, 0.018463144078850746, 0.01757684350013733, -0.09828290343284607, -0.0017627301858738065, -0.007476520724594593, 0.04131392017006874, 0.027378808706998825, 0.009091168642044067, 0.007511621806770563, 0.013197989203035831, -0.015497107058763504, -0.009837065823376179, 0.00405416963621974, 0.014277346432209015, 0.0517389290034771, 0.01853334717452526, 0.040120482444763184, 0.009328099898993969, 0.04875534027814865, -0.008187316358089447, 0.04998387396335602, -0.013943886384367943, -0.04292856901884079, 0.02283322438597679, 0.05567024275660515, 0.032591313123703, -0.023622997105121613, 0.003538623219355941, 0.036575280129909515, -0.038049522787332535, 0.05875913426280022, -0.012689024209976196, -0.061532117426395416, -0.07427379488945007, 0.019744332879781723, 0.03822502866387367, -0.006151456385850906, -0.0125924963504076, -0.013601651415228844, 0.04275306314229965, -0.051458120346069336, 0.013987762853503227, 0.010337254963815212, -0.010328480042517185, -0.11155109107494354, -0.035101037472486496, -0.028484491631388664, 0.029309365898370743, -0.034170858561992645, -0.016830947250127792, 0.060373783111572266, -0.0012735094642266631, 0.0535992830991745, 0.024518074467778206, -0.05840812250971794, -0.02162223868072033, -0.024430321529507637, -0.03450431674718857, 0.0166378915309906, 0.0015883218729868531, 0.02832653559744358, -0.06627075374126434, 0.028063278645277023, 0.03087136149406433, 0.007652025669813156, 0.01153069082647562, 0.037452805787324905, -0.049597762525081635, -0.05005407705903053, -0.01252229418605566, 0.013952662236988544, 0.053072765469551086, -0.037171997129917145, 0.014189593493938446, 0.04524523392319679, 0.05598615109920502, -0.026904944330453873, 0.007463357876986265, 0.004659662488847971, -0.036013662815093994, -0.012144958600401878, 0.007336116395890713, 0.002674260176718235, 0.010512759909033775, 0.045806851238012314, -0.05310786888003349, 0.017392562702298164, -0.034539420157670975, 0.08368086814880371, -0.005962788593024015, -0.021745091304183006, -0.011372735723853111, -0.01499691791832447, -0.05788160860538483, -0.01030215434730053, -0.019481075927615166, 0.02209610305726528, -0.007454582490026951, -0.023184234276413918, -0.0457366518676281, -0.06356797367334366, -0.03625937178730965, -0.026220474392175674, 0.03353904187679291, -0.005585452541708946, 0.06419979780912399, 0.028537143021821976, 0.010521535761654377, 0.0016903342911973596, -0.030783608555793762, -0.036154069006443024, -0.018796604126691818, 0.010618063621222973, 0.026395978406071663, 0.04303387179970741, -0.04882553964853287, -0.055600039660930634, -0.009205246344208717, 0.061005599796772, -0.0022190436720848083, 0.0378740169107914, -0.05198463425040245, -0.006028602831065655, -0.01383858360350132, -0.018638649955391884, -0.03854093700647354, -0.02951997146010399, -0.05665307119488716, -0.022061001509428024, -0.017708472907543182, 0.006063703913241625, -0.020112894475460052, 0.0031261860858649015, -0.017102979123592377, -0.0055328006856143475, 0.00548892468214035, 0.002740074647590518, -0.0063532874919474125, -0.009178920648992062, -0.05531923472881317, 0.06090029701590538, 0.03868134319782257, -0.03129257261753082, -0.01658524014055729, -0.018428044393658638, 0.017550518736243248, 0.039523765444755554, -0.0256413072347641, -0.018077034503221512, -0.05795181170105934, -0.02860734425485134, 0.02920406125485897, 0.03234560415148735, 0.010258277878165245, 0.037452805787324905, -0.0605492889881134, 0.06121620535850525, 0.04275306314229965, 0.040085382759571075, -0.03136277571320534, -0.007428256794810295, -0.13829807937145233, 0.008450574241578579, 0.025027038529515266, 0.016971351578831673, -0.019340671598911285, -0.01717318221926689, -0.0010064125526696444, -0.003990549128502607, -0.0109778493642807, 0.15009203553199768, -0.03738260269165039, 0.04552604258060455, -0.028800399973988533, -0.02102551981806755, -0.0015005692839622498, -0.014584480784833431, 0.009003415703773499, -0.011723745614290237, 0.002038053935393691, -0.019990039989352226, -0.04177023470401764, 0.005756570026278496, 0.04819372296333313, 0.023728299885988235, -0.02130632847547531, 0.048509631305933, 0.019533727318048477, 0.013759606517851353, -0.022605067119002342, 0.046508874744176865, 0.014935490675270557, -0.06139171123504639, 0.024711130186915398, 0.0179103035479784, 0.03146807849407196, 0.02167489007115364, 0.04570154845714569, 0.01321553997695446, -0.0041770231910049915, 0.015751589089632034, -0.03243335708975792, 0.06942985206842422, 0.005940850358456373, -0.013241865672171116, -0.0013546806294471025, 0.01862110011279583, -0.0406470000743866, -0.014724885113537312, 0.009450954385101795, -0.015856893733143806, -0.005098425317555666, 0.006050541065633297, 0.022763021290302277, -0.04103311151266098, 0.037593208253383636, -0.02855469286441803, 0.04829902574419975, 0.010854995809495449, 0.052054837346076965, -0.08417228609323502, -0.03682098537683487, 0.04496442899107933, 0.005238829646259546, 0.05510862544178963, -0.03146807849407196, -0.00919647142291069, 0.013197989203035831, 0.03625937178730965, 0.025027038529515266, -0.041840434074401855, -0.041384123265743256, 0.02532539702951908, 0.0522303432226181, -0.017919078469276428, 0.00552402576431632, -0.01598852127790451, -0.054125797003507614, -0.01044255867600441, -0.04187553748488426, 0.07013186812400818, -0.06858742237091064, 0.025676408782601357, 0.0448240227997303, -0.008024974726140499, -0.01890190877020359, 0.04643867164850235, -0.016760744154453278, 0.06118110567331314, 0.00671307323500514, -0.043455082923173904, -0.019990039989352226, 0.06293615698814392, 0.005804833956062794, 0.007616925053298473, -0.02249976433813572, 0.02411441132426262, -0.023026280105113983, -0.04415710270404816, 0.03225785121321678, 0.03632957115769386, -0.034539420157670975, -0.01935822144150734, 0.012101082131266594, 0.0046991510316729546, -0.022482214495539665, 0.024202164262533188, 0.019428422674536705, 0.09568542242050171, -0.042296748608350754, -0.00684908963739872, -0.03501328453421593, 0.00995991937816143, 0.04412200301885605, -0.016848497092723846, 0.0054011717438697815, 0.04117351397871971, 0.022938527166843414, -0.06939474493265152, -0.031222371384501457, -0.0196390300989151, 0.0443677082657814, -0.006857865024358034, -0.04268286004662514, -0.013873684220016003, -0.014970592223107815, -0.028449390083551407, -0.016453610733151436, -0.07107959687709808, 0.013575325720012188, -0.009872166439890862, -0.025887014344334602, -0.05110710859298706, -0.017647046595811844, -0.05651266872882843, 0.016997676342725754, -0.04949245974421501, -0.018831705674529076, 0.0024066148325800896, 0.04513993114233017, 0.055705346167087555, -0.05033488571643829, 0.015444455668330193, 0.046368468552827835, 0.005379233974963427, -0.05626695975661278, 0.05784650892019272, -0.0018976497231051326, 0.03383740037679672, -0.03364434465765953, 0.016901148483157158, -0.04233184829354286, -0.07237833738327026, -0.0026172210928052664, 0.015225074253976345, 0.0125924963504076, 0.05988236889243126, -0.004030037671327591, -0.059531357139348984, 0.04836922883987427, 0.030888911336660385, 0.0452803373336792, 0.015374253503978252, 0.027010247111320496, -0.042717959731817245, -0.030994214117527008, -0.02241201139986515, 0.009047292172908783, 0.008358433842658997, 0.025220094248652458, -0.004462219309061766, -0.02513234131038189, 0.009091168642044067, -0.08529552072286606, 0.009301774203777313, 0.037733614444732666, 0.009494829922914505, -0.04770230874419212, 0.02207855135202408, -0.009529931470751762, 0.08887582272291183, 0.06318186223506927, -0.012452092953026295, -0.019428422674536705, 0.05022958293557167, -0.014417750760912895, -0.06778009980916977, 0.061110902577638626, 0.03566265106201172, -0.03811972588300705, -0.001051934203132987, 0.04320937395095825, 0.02051655575633049, -0.051212411373853683, -0.030888911336660385, -0.06862252205610275, 0.044894225895404816, 0.004510483238846064, 0.0028936415910720825, 0.03022199124097824, -0.04384119436144829, -0.01927046850323677, 0.0035298478323966265, -0.04601745679974556, 0.04033109173178673, 0.017778674140572548, -0.052195239812135696, -0.017331136390566826, -0.042577557265758514, -0.005822384264320135, -0.00863046757876873, 0.016225453466176987, -0.02966037578880787, -0.0360487625002861, 0.05531923472881317, 0.07883692532777786, 0.057039182633161545, -0.04808842018246651, 0.0656389370560646, -0.019147615879774094, -0.036294471472501755, -0.017383787781000137, -0.037031594663858414, 0.023816052824258804, 0.01296105794608593, 0.02383360266685486, -0.011355184949934483, -0.03346883878111839, -0.0012000167043879628, -0.022148754447698593, -0.004381048027426004, 0.002446103375405073, -0.047983117401599884, 0.0037404540926218033, 0.06384878605604172, 0.021709991618990898, 0.03608386591076851, 0.01518119778484106, -0.004909757524728775, -0.04443791136145592, 0.042717959731817245, -0.00988971721380949, 0.029818329960107803, -0.04777251183986664, -0.023043829947710037, -0.023219335824251175, 0.04510483145713806, -0.009924817830324173, -0.044016700237989426, 0.01619035378098488, -0.021920597180724144, 0.03797931969165802, 0.0628308579325676, 0.017269710078835487, 0.001379909459501505, 0.02906365878880024, 0.009828289970755577, 0.05963665992021561, -0.0030735344626009464, -0.002314474666491151, 0.012908405624330044, 0.01321553997695446, 0.04356038570404053, -0.0388217456638813, -0.00919647142291069, 0.01862110011279583, -0.06465610861778259, 0.004751802887767553, 0.0024197776801884174, 0.023482592776417732, -0.004909757524728775, 0.00051554647507146, 0.025290297344326973, -0.028115930035710335, 0.024886634200811386, 0.029783228412270546, 0.028765298426151276, -0.005721468944102526, 0.035329192876815796, 0.0029835880268365145, 0.02578171156346798, -0.002148841507732868, -0.021639788523316383, -0.038330331444740295, 0.00946850422769785, 0.0014204951003193855, 0.018006831407546997, 0.014549379236996174, 0.03159093111753464, 0.05767100304365158, -0.022991178557276726, 0.00824874360114336, 0.047386400401592255, 0.012399440631270409, -0.009766863659024239, -0.06384878605604172, -0.06430509686470032, -0.012101082131266594, 0.06346267461776733, -0.026553934440016747, 0.041840434074401855, 0.0452803373336792, -0.07364197075366974, 0.07743288576602936, -0.0251849927008152, 0.0716412141919136, 0.010030120611190796, 0.03511858731508255, -0.0316435843706131, 0.02116592414677143, 0.01748909056186676, -0.0024548787623643875, 0.07086899131536484, -0.004242837894707918, 0.0688682347536087, -0.001328354817815125, -0.01853334717452526, 0.009135045111179352, 0.06356797367334366, -0.04454321414232254, -0.022061001509428024, -0.009249122813344002, 0.038646239787340164, -0.061567217111587524, 0.013759606517851353, 0.027203302830457687, -0.020183095708489418, 0.05212504044175148, 0.1450374871492386, 0.0066999103873968124, -0.014066739939153194, 0.009573807939887047, 0.008516388945281506, -0.04306897148489952, 0.05524903163313866, 0.03826012834906578, -0.04513993114233017, -0.02846693992614746, -0.06591974943876266, -0.0279579758644104, 0.005967176053673029, 0.03045014850795269, 0.005032611079514027, -0.03808462247252464, 0.03238070756196976, 0.02569395862519741, -0.03129257261753082, 0.0526866540312767, -0.014540604315698147, 0.0031700623221695423, 0.011074377223849297, -0.04935205727815628, -0.012136183679103851, -0.012838204391300678, -0.04524523392319679, -0.013268191367387772, 0.014698558486998081, 0.04629826545715332, -0.00988971721380949, 0.04240205138921738, -0.00010016135638579726, 0.07083389163017273, -0.025307847186923027, 0.04173513129353523, -0.05988236889243126, 0.016936250030994415, 0.007099184673279524, 0.01981453411281109, -0.00933687575161457, -0.025027038529515266, 0.000563810404855758, -0.025536004453897476, 0.030783608555793762, -0.043174274265766144, -0.008665568195283413, -0.028519591316580772, 0.017954180017113686, -0.002926548942923546, 0.02213120274245739, 0.044297508895397186, 0.0004028392431791872, -0.03266151249408722, -0.016550138592720032, 0.010951523669064045, -0.04264776036143303, 0.05696898326277733, 0.007928446866571903, -0.003154705511406064, -0.011679870076477528, -0.02009534277021885, -0.010802343487739563, -0.011741296388208866, 0.015470781363546848, 0.012065981514751911, -0.0168660469353199, 0.02462337724864483, 0.023587895557284355, -0.04745659977197647, 0.009275448508560658, 0.020200645551085472, -0.0018537734868004918, -0.029870981350541115, -0.014584480784833431, -0.026834741234779358, 0.0203235000371933, -0.008165378123521805, -0.03797931969165802, -0.005440660752356052, 0.031397875398397446, -0.00981951504945755, -0.020112894475460052, 0.006809601094573736, 0.03713689744472504, -0.01783132553100586, -0.03225785121321678, -0.006625320762395859, -0.013715730048716068, 0.025448251515626907, 0.04689498245716095, 0.0007497362093999982, 0.027519213035702705, -0.030485250055789948, 0.020639408379793167, -0.017366237938404083, -0.025430699810385704, 0.09357935935258865, -0.08157480508089066, 0.0013448084937408566, 0.05272175744175911, -0.03797931969165802, -0.017673371359705925, -0.04542073979973793, -0.05781140550971031, 0.01416326779872179, 0.02892325446009636, -0.040225788950920105, 0.014681008644402027, -0.0018142848275601864, 0.023465042933821678, 0.05802201107144356, 0.05724978819489479, -0.028238782659173012, 0.01266269851475954, -0.03969927132129669, 0.02962527424097061, 0.0038282067980617285, -0.00660776998847723, -0.014172043651342392, -0.06167251989245415, -0.038927048444747925, -0.000605492852628231, 0.016874823719263077, -0.007410706486552954, 0.0256413072347641, 0.002529468387365341, 0.016058724373579025, -0.05802201107144356, 0.07150080800056458, 0.039664171636104584, -0.0011150063946843147, -0.009863391518592834, -0.0015729651786386967, -0.02629067562520504, 0.0415947288274765, 0.06465610861778259, 0.01252229418605566, -0.03369699418544769, 0.02762451581656933, -0.01612892560660839, 0.0020325693767517805, -0.0420510396361351, -0.031204821541905403, -0.05984726548194885, -0.027554312720894814, -0.0203235000371933, -0.014180818572640419, -0.019463524222373962, 0.015584859997034073, -0.04412200301885605, -0.008595366030931473, 0.0012998352758586407, 0.020481454208493233, -0.021060621365904808, 0.01927046850323677, 0.010723366402089596, -0.0005671011167578399, 0.06437530368566513, -0.03713689744472504, -0.07616924494504929, 0.0406470000743866, 0.024553174152970314, 0.06409449130296707, 0.01981453411281109, 0.07729247957468033, 0.007147448603063822, 0.009529931470751762, 0.010653164237737656, 0.05423109978437424, -0.048544734716415405, -0.044753819704055786, -0.054406605660915375, -0.009837065823376179, -0.030695855617523193, -0.04643867164850235, -0.0015905157197266817, 0.023184234276413918, 0.01700645126402378, -0.005787283182144165 ]
7,474
orjson
JSONDecodeError
null
from orjson import JSONDecodeError
(msg, doc, pos)
[ -0.0331827811896801, -0.03616182878613472, 0.008213900960981846, 0.056205812841653824, -0.012957988306879997, -0.0021105161868035793, -0.046321578323841095, 0.07390788942575455, 0.0754232406616211, -0.03685062378644943, 0.051694195717573166, 0.016333092004060745, -0.02560601755976677, -0.03192572668194771, -0.012673859484493732, 0.06736432015895844, -0.046390458941459656, 0.08052033931016922, 0.007873808033764362, 0.020801661536097527, -0.0699128657579422, -0.036506228148937225, -0.014507780782878399, 0.07246141880750656, 0.0012333766790106893, -0.00046816651592962444, 0.021765977144241333, -0.008717583492398262, 0.016651660203933716, -0.026105396449565887, 0.003256716998293996, -0.04890456795692444, 0.03502531349658966, 0.07500996440649033, -0.0233329888433218, 0.014912448823451996, 0.002763796830549836, 0.04890456795692444, -0.08176016807556152, -0.03564523160457611, -0.10097759962081909, 0.0036549277137964964, -0.07466556876897812, -0.02045726217329502, 0.04776805266737938, -0.017908714711666107, -0.003607572754845023, 0.022902490571141243, -0.0027164421044290066, -0.04487510770559311, -0.00958288460969925, -0.036368466913700104, 0.008312915451824665, 0.020629461854696274, -0.01696161925792694, -0.013818983919918537, -0.039915770292282104, 0.08975021541118622, -0.024727802723646164, 0.006014056503772736, -0.07969377934932709, -0.018941910937428474, -0.05992531403899193, 0.01914854906499386, 0.009858403354883194, 0.021214939653873444, -0.03431929647922516, -0.026949172839522362, 0.019114108756184578, -0.027672408148646355, -0.027879048138856888, 0.059133198112249374, -0.025950416922569275, 0.06705436110496521, 0.05796224623918533, -0.027155810967087746, -0.06188838556408882, -0.0004358791920822114, -0.04077676683664322, 0.008334440179169178, 0.04060456529259682, -0.010994917713105679, 0.0059236520901322365, 0.047595854848623276, 0.012759959325194359, -0.03557635098695755, 0.014748860150575638, -0.0038163643330335617, -0.045426145195961, 0.0026217326521873474, -0.04129336401820183, -0.031236931681632996, -0.06943070888519287, 0.022420333698391914, -0.0055964733473956585, 0.036953944712877274, 0.021146059036254883, -0.02329854853451252, -0.006057106424123049, -0.05834108218550682, 0.04735477641224861, 0.02500332146883011, -0.05617137253284454, -0.013216286897659302, 0.009496784768998623, 0.013147407211363316, 0.015885375440120697, 0.02393568679690361, -0.024624483659863472, 0.005893516819924116, -0.04484066739678383, 0.01749543659389019, 0.014766080304980278, -0.00994450319558382, 0.06429917365312576, 0.01134792622178793, 0.06502240896224976, -0.028774483129382133, 0.05438050255179405, 0.022368673235177994, 0.04859460890293121, 0.013259337283670902, -0.00015053975221235305, 0.025778217241168022, 0.05940871685743332, 0.03263174369931221, -0.020853320136666298, 0.004296369384974241, 0.04831909015774727, 0.016711929813027382, 0.015540976077318192, 0.01252749003469944, -0.03829709812998772, -0.040019091218709946, 0.02806846611201763, 0.011967843398451805, -0.0386759378015995, -0.0038142118137329817, -0.018373653292655945, 0.005940871778875589, 0.003108195262029767, 0.033544398844242096, 0.03843485563993454, -0.035886310040950775, -0.057480085641145706, 0.004576193168759346, -0.041706640273332596, -0.0008534622029401362, -0.02285083197057247, -0.03736722096800804, 0.04301535710692406, -0.011873133480548859, -0.004320046864449978, 0.027276350185275078, -0.048629049211740494, -0.01046110037714243, -0.02044004201889038, -0.05317510664463043, -0.015093258582055569, 0.047423653304576874, 0.010521369986236095, -0.031891290098428726, 0.054001662880182266, 0.008287085220217705, -0.0018619037000462413, 0.005368309561163187, 0.04563278332352638, -0.05964979529380798, -0.04070788621902466, -0.008420540019869804, 0.0036829099990427494, 0.017452387139201164, 0.013534856028854847, -0.021456018090248108, 0.026501454412937164, 0.02982489764690399, 0.00936763547360897, 0.035851869732141495, -0.051625315099954605, -0.0005165975308045745, -0.005863382015377283, 0.02689751237630844, 0.0047742221504449844, 0.02030228264629841, 0.03733278438448906, -0.011855913326144218, 0.0007587526342831552, -0.007361514959484339, 0.032941702753305435, 0.011545955203473568, 0.02090498059988022, 0.03037593513727188, -0.0297215785831213, -0.02748299017548561, 0.02090498059988022, -0.03547303006052971, 0.05479377880692482, 0.009668984450399876, -0.006702853366732597, -0.015394606627523899, -0.08210457116365433, -0.014783299528062344, -0.013371266424655914, 0.027896268293261528, -0.0535883866250515, 0.010090871714055538, -0.0035602180287241936, 0.009815352968871593, 0.03616182878613472, -0.04711369797587395, -0.013044088147580624, -0.019699586555361748, -0.014688590541481972, 0.03977801278233528, 0.04218880087137222, -0.006905187387019396, -0.031116392463445663, -0.02966991998255253, 0.06912074983119965, 0.009462345391511917, -0.005859076976776123, 0.004261929541826248, 0.010271681472659111, -0.07562988251447678, 0.026621993631124496, 0.002638952573761344, -0.038262657821178436, -0.011511514894664288, 0.02627759426832199, 0.0006064639892429113, -0.02629481442272663, 0.01804647408425808, 0.01081410888582468, -0.001662798342294991, 0.05441494286060333, 0.005768672563135624, 0.029394401237368584, -0.04673485830426216, -0.019355187192559242, -0.031030291691422462, 0.032442327588796616, -0.03898589313030243, -0.06936182826757431, -0.035955190658569336, -0.03023817576467991, 0.0409834049642086, 0.06078631058335304, -0.002100829966366291, 0.002290249103680253, -0.058100003749132156, 0.025967637076973915, 0.06237054243683815, 0.04432407021522522, 0.013586515560746193, 0.011003527790307999, -0.10662573575973511, 0.06949958950281143, -0.047526974231004715, 0.05086763948202133, -0.012846059165894985, -0.041052285581827164, -0.0569634884595871, -0.01690995879471302, 0.06023527309298515, -0.028154566884040833, -0.027121370658278465, 0.01167510449886322, 0.031047511845827103, 0.03030705638229847, 0.0187180507928133, 0.10049544274806976, -0.05131535604596138, 0.04094896465539932, -0.04945560544729233, -0.02562323771417141, 0.028206225484609604, 0.004800052382051945, -0.02162821777164936, -0.005704097915440798, 0.06295602023601532, -0.00759398378431797, -0.004924896638840437, 0.011881743557751179, 0.010616079904139042, 0.030668674036860466, -0.042360998690128326, 0.010926038026809692, -0.01982012577354908, -0.05327842757105827, -0.01078827865421772, 0.08341328054666519, 0.02095664106309414, -0.006745902821421623, 0.03846929594874382, 0.01112406700849533, -0.0024646008387207985, -0.0012516728602349758, -0.026105396449565887, 0.07404565066099167, -0.029463279992341995, -0.031150832772254944, 0.010616079904139042, 0.08678838610649109, -0.029514940455555916, -0.01690995879471302, -0.027792947366833687, -0.01310435775667429, -0.01582510396838188, -0.06626224517822266, 0.04304979369044304, -0.00036538514541462064, -0.01980290561914444, 0.016565561294555664, 0.03447427600622177, -0.05441494286060333, 0.047561414539813995, 0.015842324122786522, 0.03149523213505745, 0.023487968370318413, 0.05000664293766022, -0.0455983430147171, -0.022936930879950523, 0.04938672482967377, -0.04008796811103821, 0.06626224517822266, -0.05882323905825615, 0.00899740681052208, 0.04249875992536545, 0.050936516374349594, 0.036402907222509384, -0.025984857231378555, -0.07170373946428299, 0.013009647838771343, 0.03165020793676376, 0.05062656104564667, 0.0023483664263039827, 0.004980861209332943, -0.07624980062246323, -0.006810477469116449, -0.029411619529128075, -0.030462035909295082, -0.044048551470041275, 0.044634029269218445, 0.04015684872865677, -0.028791703283786774, -0.017099378630518913, 0.07094606012105942, -0.01639336161315441, 0.04270539805293083, -0.006814782507717609, -0.06102738901972771, 0.04876680672168732, 0.05000664293766022, 0.020560583099722862, -0.07253029197454453, -0.021765977144241333, -0.005282209720462561, -0.011537345126271248, 0.011046577244997025, -0.010512759909033775, -0.021886516362428665, -0.05827220156788826, -0.020663902163505554, 0.02445228397846222, -0.024056226015090942, 0.004524533636868, -0.008007261902093887, 0.006965456996113062, 0.06887967139482498, -0.035851869732141495, -0.02322966977953911, -0.01816701330244541, -0.008739108219742775, 0.04911120608448982, -0.04029460996389389, 0.03908921405673027, 0.03220124542713165, 0.0020836100447922945, -0.06863859295845032, 0.02455560304224491, -0.01918298937380314, 0.019424067810177803, -0.029480500146746635, -0.05531037598848343, 0.03860705718398094, 0.002129888627678156, -0.04039792716503143, -0.04160332307219505, -0.059753116220235825, -0.010185581631958485, -0.037057265639305115, -0.003949818667024374, 0.021679876372218132, 0.02979045920073986, -0.054518260061740875, 0.03678174689412117, -0.027224691584706306, -0.013707054778933525, 0.024813901633024216, 0.04825020954012871, -0.02498610131442547, -0.01567012630403042, 0.044014111161231995, 0.050488799810409546, 0.01680663973093033, 0.0051401457749307156, 0.032941702753305435, -0.0060097514651715755, 0.004330809228122234, 0.007990041747689247, -0.014068673364818096, -0.01928630843758583, -0.026501454412937164, -0.010392220690846443, -0.04487510770559311, 0.07383900880813599, 0.003859414253383875, 0.005036826245486736, -0.04129336401820183, 0.010495539754629135, 0.02154211699962616, 0.020646682009100914, 0.0028606588020920753, 0.011296266689896584, -0.006371369585394859, -0.02033672295510769, 0.023574067279696465, -0.03380269929766655, 0.021938174962997437, 0.03090975247323513, 0.012389731593430042, -0.043290875852108, 0.015980083495378494, -0.13197346031665802, 0.030634233728051186, 0.05896100029349327, -0.0016757133416831493, -0.028826143592596054, 0.013362656347453594, 0.014714419841766357, 0.036437347531318665, 0.06330041587352753, 0.011425415985286236, -0.011743984185159206, 0.0748722031712532, -0.010641909204423428, 0.01715964823961258, 0.09340083599090576, 0.01746099628508091, -0.02858506329357624, -0.012501660734415054, 0.008493724279105663, -0.020612241700291634, -0.07301245629787445, 0.007460529450327158, -0.03840041905641556, 0.07480332255363464, 0.05303734913468361, 0.012312241829931736, 0.04160332307219505, -0.049283407628536224, -0.0027508819475769997, 0.0374361015856266, -0.041086725890636444, -0.0016993907047435641, 0.0280340276658535, -0.06533236801624298, 0.013534856028854847, -0.014447511173784733, 0.02149045839905739, -0.023178009316325188, 0.038331538438797, 0.0029639783315360546, 0.008312915451824665, 0.035851869732141495, 0.042326558381319046, 0.09436514973640442, -0.02853340469300747, 0.03967469185590744, -0.023522408679127693, -0.020646682009100914, -0.08114025741815567, 0.017874274402856827, -0.030100416392087936, 0.019355187192559242, -0.031805187463760376, -0.044634029269218445, -0.036402907222509384, 0.008919917978346348, -0.00991006288677454, 0.017788175493478775, 0.048663489520549774, -0.053967222571372986, 0.02846452407538891, 0.055138178169727325, -0.01520518772304058, -0.007800622843205929, -0.009178216569125652, 0.023212449625134468, -0.04422074928879738, 0.03321722149848938, 0.007352904882282019, 0.030789213255047798, -0.055723655968904495, -0.01914854906499386, -0.028912242501974106, 0.04301535710692406, -0.026467014104127884, 0.016548341140151024, -0.003736722283065319, -0.022385893389582634, 0.06574564427137375, 0.034749794751405716, -0.024193985387682915, 0.004365249071270227, 0.014585270546376705, 0.03967469185590744, 0.041637763381004333, -0.029618259519338608, 0.03667842596769333, -0.019975105300545692, -0.0007339990115724504, 0.03306224197149277, -0.04387634992599487, 0.0027487294282764196, -0.02278195135295391, -0.054552700370550156, 0.00269061210565269, 0.0010579486843198538, 0.03452593460679054, -0.026449793949723244, 0.016496682539582253, 0.011606224812567234, -0.024176765233278275, 0.003979953471571207, 0.016436411067843437, 0.008424844592809677, 0.03840041905641556, -0.013836204074323177, 0.010306120850145817, 0.018390873447060585, 0.019028009846806526, -0.017943155020475388, -0.043290875852108, 0.024211205542087555, 0.019630705937743187, -0.02675975300371647, 0.02100829966366291, -0.0324767641723156, 0.03970913216471672, -0.018373653292655945, 0.007826453074812889, 0.044048551470041275, 0.039846889674663544, -0.012777179479598999, -0.019492946565151215, -0.028240665793418884, -0.028774483129382133, 0.020198963582515717, -0.0039347512647509575, 0.007008506916463375, 0.072392538189888, -0.09229876101016998, 0.04966224357485771, -0.03557635098695755, 0.039950210601091385, -0.03629958629608154, 0.07597427815198898, -0.05382946506142616, 0.03027261607348919, 0.0055491188541054726, 0.025313280522823334, 0.02102551981806755, 0.007899637334048748, 0.02562323771417141, -0.008739108219742775, -0.012518880888819695, 0.015325726941227913, 0.03487033396959305, -0.02095664106309414, -0.011382365599274635, -0.022334234789013863, 0.006250830367207527, -0.06626224517822266, 0.04029460996389389, -0.014128942973911762, 0.009255706332623959, 0.04918008670210838, 0.084446482360363, -0.03314834088087082, -0.007512189447879791, -0.00771021842956543, 0.005910736974328756, -0.02793070673942566, 0.05200415477156639, 0.056791290640830994, -0.027207471430301666, -0.01859751157462597, -0.02500332146883011, -0.04026016965508461, -0.004537448287010193, 0.029962657019495964, -0.015291287563741207, -0.06588340550661087, 0.0665377601981163, 0.005527593661099672, -0.03716058284044266, 0.04725145548582077, 0.015093258582055569, 0.0001509433495812118, 0.010538590140640736, -0.030789213255047798, -0.021817635744810104, -0.0279479268938303, -0.01225197222083807, -0.034629255533218384, 0.007951296865940094, -0.007189315743744373, 0.012699689716100693, 0.017702076584100723, 0.0297215785831213, 0.02150767855346203, -0.021146059036254883, 0.011167117394506931, -0.04976556450128555, 0.00043668635771609843, -0.023677388206124306, 0.022385893389582634, -0.03747054189443588, -0.051005396991968155, -0.030565354973077774, -0.029015561565756798, 0.03340664133429527, -0.02925664186477661, -0.06261162459850311, -0.002914471086114645, -0.01022863108664751, -0.018786931410431862, 0.041155602782964706, 0.04659709706902504, -0.00014932897465769202, -0.01659139059484005, -0.058031123131513596, 0.0280340276658535, -0.06550456583499908, 0.05992531403899193, -0.030444815754890442, 0.0032674793619662523, 0.006448859348893166, -0.015394606627523899, 0.008592738769948483, -0.004055290948599577, -0.004261929541826248, 0.030668674036860466, -0.03567967191338539, -0.01930352859199047, 0.046907056123018265, -0.01808091439306736, 0.04146556183695793, 0.0007598288939334452, -0.02097386121749878, -0.02796514704823494, -0.024176765233278275, -0.0117095448076725, 0.020043984055519104, -0.027052491903305054, -0.04594274237751961, -0.026019295677542686, 0.05479377880692482, 0.006138900760561228, 0.008777853101491928, -0.04160332307219505, 0.04201659932732582, 0.011976453475654125, -0.0029338435269892216, 0.0386759378015995, 0.005562033504247665, -0.006517739035189152, 0.081622414290905, 0.004614938050508499, -0.008304305374622345, 0.0035666755866259336, -0.01657417044043541, 0.014636930078268051, -0.04780249297618866, 0.08079585433006287, -0.026518674567341805, 0.04835353046655655, 0.04239543899893761, -0.017572926357388496, 0.000500453868880868, -0.026105396449565887, -0.08458423614501953, 0.023729046806693077, -0.022954151034355164, -0.05617137253284454, -0.012450001202523708, 0.003517168341204524, 0.007370125036686659, 0.06385145336389542, 0.05840996280312538, -0.02154211699962616, -0.0068018678575754166, -0.006125986110419035, 0.0443585105240345, -0.002481820760294795, -0.029273860156536102, -0.023539628833532333, -0.02149045839905739, -0.04449626803398132, -0.023419089615345, 0.04528838396072388, -0.0005752528668381274, -0.042912036180496216, -0.03554191067814827, 0.05066099762916565, -0.02855062484741211, 0.07036058604717255, -0.0051918053068220615, -0.026518674567341805, -0.04070788621902466, 0.009462345391511917, -0.03864149749279022, 0.053416185081005096, 0.092987559735775, -0.018339212983846664, -0.05076431855559349, 0.008157935924828053, -0.03149523213505745, 0.032941702753305435, -0.035748548805713654, 0.007951296865940094, -0.0408112071454525, -0.04146556183695793, -0.07191038131713867, -0.04707925766706467, -0.0012086230562999845, 0.017082158476114273, -0.02285083197057247, 0.041155602782964706, -0.018408091738820076, 0.02908444218337536, -0.017891494557261467, 0.0034224586561322212, 0.001504590385593474, -0.005273600108921528, 0.03598962724208832, -0.019579047337174416, -0.05947759747505188, 0.003728112205862999, 0.0055405087769031525, 0.042843155562877655, 0.011468465439975262, 0.05420830100774765, 0.01022863108664751, 0.00812780112028122, -0.02273029275238514, 0.09650041908025742, -0.031891290098428726, -0.000019725550373550504, -0.04959336295723915, -0.008700363337993622, -0.02159377746284008, -0.055723655968904495, 0.004533143248409033, 0.002044865395873785, 0.01749543659389019, -0.06856971234083176 ]
7,475
json.decoder
__init__
null
def __init__(self, msg, doc, pos): lineno = doc.count('\n', 0, pos) + 1 colno = pos - doc.rfind('\n', 0, pos) errmsg = '%s: line %d column %d (char %d)' % (msg, lineno, colno, pos) ValueError.__init__(self, errmsg) self.msg = msg self.doc = doc self.pos = pos self.lineno = lineno self.colno = colno
(self, msg, doc, pos)
[ -0.005185223650187254, 0.011851939372718334, 0.013894470408558846, 0.024177255108952522, -0.01967141404747963, -0.026000630110502243, 0.01673472858965397, 0.054245416074991226, 0.012228887528181076, -0.03825581818819046, 0.02542205899953842, 0.05677009001374245, 0.017418494448065758, 0.014928885735571384, -0.013026613742113113, 0.04256879910826683, 0.01926816813647747, -0.0116415498778224, -0.044602565467357635, 0.030033094808459282, -0.0443921759724617, 0.0017609159694984555, 0.02205582894384861, 0.02542205899953842, 0.019373362883925438, 0.07307527214288712, -0.010878887958824635, 0.009055512957274914, 0.07651163637638092, -0.07237397134304047, -0.02387920394539833, -0.026070760563015938, 0.03043634258210659, 0.04106101021170616, 0.014359080232679844, -0.05371944233775139, 0.01742726005613804, -0.06932332366704941, 0.005137009080499411, 0.007968501187860966, -0.002822725335136056, -0.026754526421427727, -0.019057778641581535, 0.0040631466545164585, 0.010738628916442394, -0.009651616215705872, 0.01589317061007023, -0.025194138288497925, -0.10540512204170227, -0.022546736523509026, -0.05585839971899986, 0.02791166864335537, 0.04972204193472862, -0.0380103625357151, -0.01928570121526718, 0.03794023394584656, 0.0220382958650589, 0.07784409821033478, 0.00016340795264113694, 0.0024633100256323814, -0.038185685873031616, 0.0651155412197113, -0.008012332022190094, -0.013736678287386894, 0.020986348390579224, -0.028840888291597366, 0.016506806015968323, -0.04916100203990936, 0.013666548766195774, 0.03431101515889168, 0.04733762890100479, 0.03338179364800453, -0.04705711081624031, 0.039693478494882584, 0.07468825578689575, -0.005535872653126717, -0.08436617255210876, 0.06013632193207741, 0.04814412072300911, 0.04958178102970123, 0.011808108538389206, 0.04397139698266983, 0.04565451294183731, 0.0067894430831074715, 0.06970904022455215, -0.046811655163764954, 0.0036533253733068705, 0.026018163189291954, 0.03057660162448883, 0.0923609733581543, -0.021038945764303207, -0.010799991898238659, -0.04467269405722618, -0.05137009173631668, -0.01844414323568344, 0.024370111525058746, 0.04288438335061073, -0.03948308899998665, 0.022301282733678818, -0.002783277304843068, 0.020425310358405113, 0.03394283354282379, -0.01786557212471962, -0.0538947656750679, -0.03083958849310875, -0.007166390772908926, 0.00760470237582922, -0.022125957533717155, 0.0029695595148950815, -0.012193822301924229, 0.02470322884619236, -0.009800642728805542, -0.006872722413390875, 0.07188306748867035, -0.02151232212781906, -0.029384395107626915, -0.02081102319061756, -0.00948505848646164, 0.02123180218040943, 0.012921418994665146, 0.05259736627340317, -0.03920257091522217, -0.07314540445804596, 0.04032464697957039, 0.032154522836208344, -0.020618166774511337, -0.01996946521103382, -0.03643244132399559, 0.08156097680330276, -0.033153872936964035, 0.01995193399488926, -0.06367787718772888, 0.03420582041144371, -0.06318696588277817, -0.0331714041531086, 0.01151005644351244, 0.030927250161767006, 0.003975484054535627, -0.1001453846693039, -0.06080255284905434, 0.051861003041267395, 0.032978545874357224, 0.014087327755987644, -0.025036346167325974, -0.03639737516641617, 0.08548825234174728, -0.014736028388142586, 0.02444024197757244, 0.012824990786612034, 0.02570257894694805, -0.013201938942074776, -0.03643244132399559, 0.025492189452052116, -0.00620648916810751, 0.05066879466176033, -0.04397139698266983, 0.006131975911557674, -0.06055710092186928, 0.04162204638123512, 0.01011622603982687, 0.028139589354395866, -0.05750645324587822, 0.035538285970687866, 0.0008306000381708145, 0.019653882831335068, 0.09397395700216293, -0.02705257758498192, -0.06515060365200043, -0.013289600610733032, -0.012456809170544147, -0.003977675922214985, 0.018882453441619873, -0.009879538789391518, 0.02514154091477394, -0.02973504364490509, 0.019233103841543198, -0.028542837128043175, 0.06255579739809036, -0.03685322031378746, -0.001889122067950666, 0.0262460857629776, 0.04270906001329422, 0.005005515646189451, -0.0003084616328123957, -0.0009204538655467331, 0.048214249312877655, -0.011299666948616505, 0.024387644603848457, 0.0034692345652729273, 0.003017773851752281, 0.005062496289610863, -0.001204260508529842, -0.010011031292378902, -0.014613301493227482, -0.009590253233909607, 0.009449993260204792, -0.02302011288702488, 0.026018163189291954, 0.06420385092496872, 0.019057778641581535, 0.011413628235459328, 0.05431554466485977, 0.0015943576581776142, -0.008468175306916237, 0.009949668310582638, 0.06974410265684128, -0.014578236266970634, 0.006758761592209339, -0.1043531745672226, 0.027455823495984077, 0.01472726184874773, -0.014963950030505657, 0.013000315055251122, -0.0006897925049997866, 0.032435040920972824, -0.015551287680864334, 0.0124217439442873, 0.0024676930624991655, -0.027315564453601837, 0.028700629249215126, 0.1439063847064972, 0.0025334397796541452, 0.026351280510425568, -0.04519866779446602, 0.023125307634472847, -0.0011231729295104742, 0.0014705347130075097, -0.07812462002038956, -0.0022244302090257406, 0.03723893314599991, -0.05052853375673294, -0.047933731228113174, -0.03471425920724869, 0.031190237030386925, 0.008117526769638062, -0.00015560054453089833, 0.011834407225251198, 0.02358115091919899, -0.020740894600749016, -0.0352051705121994, -0.047232434153556824, -0.0022792192175984383, -0.04523373395204544, 0.03843114152550697, 0.07002462446689606, 0.003911929205060005, 0.04028958082199097, 0.035538285970687866, -0.04197269678115845, 0.027841538190841675, -0.013403561897575855, 0.03232984617352486, -0.014639600180089474, -0.004017123952507973, 0.02247660793364048, -0.0020173280499875546, -0.05165061354637146, -0.026438942179083824, 0.004150808788836002, 0.003760711522772908, -0.010712330229580402, 0.01897011697292328, 0.031488288193941116, -0.005943502299487591, 0.007385546807199717, -0.026754526421427727, -0.028016863390803337, 0.02081102319061756, 0.05789216607809067, 0.043620746582746506, 0.07363630831241608, 0.04183243587613106, 0.0033399327658116817, 0.02608829364180565, -0.017900636419653893, -0.01968894712626934, -0.017348363995552063, -0.010992849245667458, 0.052141521126031876, 0.009520122781395912, 0.05151035264134407, 0.007324182894080877, 0.008845123462378979, 0.034819453954696655, 0.03681815415620804, -0.017558753490447998, -0.03364478051662445, -0.018812324851751328, -0.03983373939990997, 0.004054380115121603, -0.036502569913864136, -0.009283434599637985, 0.024492839351296425, 0.010721095837652683, 0.03948308899998665, 0.0038417992182075977, 0.0262460857629776, 0.05224671587347984, -0.028998680412769318, -0.021722711622714996, -0.014008431695401669, -0.035222701728343964, 0.006473858840763569, 0.040675293654203415, 0.033855170011520386, -0.025194138288497925, -0.03406555950641632, 0.0017017439240589738, 0.0331714041531086, -0.052527233958244324, 0.021810373291373253, 0.03096231445670128, -0.010300316847860813, 0.03723893314599991, -0.02919153682887554, 0.05894411355257034, 0.005229054484516382, -0.0376947782933712, -0.010168823413550854, 0.03667789697647095, -0.011632784269750118, -0.04523373395204544, 0.03255777060985565, -0.05947008728981018, 0.008367364294826984, 0.013631483539938927, -0.015025313943624496, -0.04411165788769722, -0.0010218133684247732, 0.05245710536837578, 0.0163139495998621, -0.026877254247665405, -0.01416622381657362, -0.04004412516951561, 0.005750645417720079, -0.0753895565867424, -0.033977895975112915, -0.0053254831582307816, -0.004961684811860323, -0.05371944233775139, 0.022581802681088448, -0.03173374384641647, 0.012737328186631203, -0.00627661868929863, 0.06879734992980957, -0.05582333728671074, -0.03632724657654762, -0.052527233958244324, 0.03836101293563843, 0.015533754602074623, -0.021599983796477318, -0.011448693461716175, -0.05975060537457466, -0.04116620495915413, 0.002614527242258191, 0.026351280510425568, -0.014183755964040756, -0.06711423397064209, 0.03723893314599991, -0.028122058138251305, 0.01605972833931446, -0.013350964523851871, -0.002851215424016118, -0.042358409613370895, -0.07342591881752014, 0.01277239341288805, -0.05684021860361099, -0.02259933389723301, -0.0008963467553257942, 0.07370644062757492, 0.005250970367342234, -0.0047819772735238075, -0.036222051829099655, -0.02971751056611538, 0.003554705297574401, -0.013052912428975105, -0.017067844048142433, 0.043761007487773895, -0.05322853475809097, -0.0795973464846611, -0.005049346946179867, -0.028507770970463753, 0.0006667811539955437, -0.014139925129711628, -0.04635581001639366, -0.028279850259423256, -0.03252270445227623, 0.061468787491321564, 0.01179934199899435, 0.04772334173321724, -0.06423891335725784, 0.019233103841543198, 0.040955815464258194, -0.020144790410995483, -0.018251284956932068, 0.02081102319061756, 0.044742826372385025, -0.007341715507209301, -0.02552725374698639, -0.035941533744335175, -0.0213369969278574, 0.038746725767850876, -0.03113763965666294, 0.06764020770788193, 0.0013379454612731934, 0.013824340887367725, -0.015314599499106407, -0.014823690988123417, 0.0025750792119652033, 0.05442073941230774, 0.012605834752321243, -0.002432628069072962, 0.061749305576086044, -0.04274412617087364, -0.01886492222547531, -0.03311880677938461, -0.025912968441843987, -0.02135453000664711, -0.008341065607964993, -0.030927250161767006, -0.08639993518590927, -0.013298367150127888, 0.09642849862575531, 0.03474932536482811, -0.02654413692653179, -0.015551287680864334, -0.05480645224452019, -0.0733557939529419, 0.0404999703168869, -0.024054527282714844, -0.06771034002304077, 0.017970766872167587, -0.0033662314526736736, -0.005439443979412317, -0.001896792440675199, -0.06865709275007248, -0.052281782031059265, 0.029349328950047493, -0.00991460308432579, 0.0457947738468647, 0.042779188603162766, 0.004589119926095009, 0.09348305314779282, 0.10456356406211853, 0.01882985606789589, -0.06143372133374214, 0.021810373291373253, -0.016243819147348404, -0.04803892597556114, -0.004343665670603514, 0.04316490516066551, 0.052422039210796356, -0.02957725152373314, 0.0067412289790809155, -0.004065338056534529, -0.03280322253704071, -0.09243110567331314, 0.00922207161784172, 0.03376750648021698, 0.01970648020505905, -0.013210704550147057, 0.05932982638478279, -0.05522723123431206, -0.06388826668262482, -0.051299963146448135, 0.012018498033285141, 0.0010119513608515263, 0.011834407225251198, -0.014551937580108643, -0.02540452778339386, -0.024317514151334763, -0.012009731493890285, -0.015735378488898277, -0.025790240615606308, -0.059680476784706116, -0.003107627620920539, 0.02566751465201378, -0.02680712379515171, 0.02636881172657013, 0.030541537329554558, 0.019864272326231003, -0.03755451738834381, 0.0014935459475964308, -0.003070371225476265, 0.0020370520651340485, -0.019057778641581535, -0.03422335162758827, -0.06718436628580093, -0.013675314374268055, 0.02654413692653179, 0.0034604682587087154, 0.04512853920459747, -0.026579201221466064, -0.014849989674985409, 0.011229537427425385, 0.02959478460252285, -0.014569469727575779, 0.03224218636751175, -0.02849023975431919, -0.04295451566576958, 0.0216525811702013, -0.0433051623404026, -0.03685322031378746, -0.06255579739809036, 0.003513065632432699, -0.06753501296043396, 0.035661011934280396, 0.041657112538814545, 0.033294130116701126, -0.06346748769283295, -0.023370763286948204, 0.032855819910764694, 0.0071751573123037815, 0.019233103841543198, -0.0156564824283123, 0.0022836022544652224, -0.05764671042561531, 0.001168099814094603, -0.020986348390579224, 0.05557788163423538, 0.021161673590540886, -0.0018441950669512153, 0.012439277023077011, -0.04716230183839798, 0.0017587243346497416, 0.005031814333051443, 0.03983373939990997, -0.009143175557255745, 0.021862970665097237, 0.0052772690542042255, -0.023949332535266876, -0.037063609808683395, 0.046706460416316986, 0.005592853296548128, -0.0025641215033829212, 0.02638634480535984, 0.0362921804189682, 0.03264543041586876, -0.010300316847860813, 0.037870101630687714, -0.007595936302095652, 0.03396036475896835, 0.0028862804174423218, -0.04810905456542969, 0.003622643416747451, 0.005868989508599043, -0.02692985162138939, 0.006820125039666891, -0.04565451294183731, 0.007543338928371668, 0.03169867768883705, -0.019986998289823532, -0.010852589271962643, 0.0028621733654290438, -0.0015439518028870225, 0.06553631275892258, -0.000296682002954185, 0.008888954296708107, 0.07749345153570175, -0.0037081141490489244, -0.009528889320790768, -0.01928570121526718, 0.032733093947172165, -0.025737643241882324, -0.0616791769862175, 0.03264543041586876, -0.010274018160998821, -0.051861003041267395, -0.07707267254590988, 0.03772984445095062, -0.0012809649342671037, -0.012114926241338253, -0.030769458040595055, 0.025299333035945892, -0.005965417716652155, 0.009388629347085953, -0.03639737516641617, 0.05568307638168335, 0.013605184853076935, 0.0027788940351456404, -0.01186070591211319, 0.010089927352964878, -0.004720613360404968, -0.013833106495440006, 0.015463625080883503, 0.007376780267804861, -0.04449737071990967, -0.03085711970925331, 0.008880188688635826, 0.01617369055747986, 0.04551425203680992, -0.040114257484674454, -0.018496740609407425, -0.023651281371712685, 0.026035696268081665, 0.0340304933488369, 0.03083958849310875, -0.03290841728448868, -0.010843823663890362, -0.004297642968595028, -0.05698047950863838, 0.03248763829469681, -0.027981797233223915, -0.005649833474308252, 0.03751945495605469, -0.026719462126493454, 0.03303114324808121, 0.031014911830425262, 0.007981650531291962, 0.05733112618327141, 0.020197387784719467, -0.00984447356313467, -0.03152335435152054, -0.00116919563151896, -0.07847526669502258, -0.021985698491334915, -0.0009182623471133411, 0.019583752378821373, 0.012982782907783985, 0.01757628656923771, 0.016559403389692307, -0.017830505967140198, -0.008205188438296318, -0.0009988020174205303, -0.015112976543605328, 0.04200776293873787, -0.017488623037934303, -0.03741426020860672, -0.028437642380595207, -0.0022616866044700146, 0.010002265684306622, 0.040955815464258194, 0.03948308899998665, -0.07847526669502258, -0.07812462002038956, 0.028157122433185577, -0.0001534089824417606, -0.03681815415620804, 0.03601166233420372, 0.07209345698356628, 0.025018813088536263, 0.017497390508651733, -0.018917519599199295, -0.0015406644670292735, -0.0719531923532486, -0.00955518800765276, 0.009248370304703712, -0.046390876173973083, 0.046250615268945694, -0.016086027026176453, 0.06441424041986465, 0.05648956820368767, 0.025194138288497925, -0.007587169762700796, -0.007749345153570175, 0.01967141404747963, -0.01882985606789589, -0.019881803542375565, 0.02221362106502056, 0.002835874678567052, -0.00042050497722811997, -0.036362312734127045, 0.008358597755432129, -0.05021294951438904, 0.013649015687406063, 0.046005163341760635, 0.040429841727018356, 0.00816135760396719, -0.002660549944266677, -0.006828891113400459, 0.004689931869506836, 0.013394795358181, -0.017532454803586006, 0.01970648020505905, 0.0290512777864933, -0.028998680412769318, 0.03261036425828934, -0.0343460775911808, -0.02105647884309292, -0.013394795358181, 0.037449322640895844, 0.05845320597290993, -0.05764671042561531, -0.08324409276247025, -0.03250517323613167, 0.0672895610332489, -0.004689931869506836, 0.04442724213004112, 0.027122708037495613, -0.05221164971590042, -0.003357465146109462, 0.044988278299570084, -0.02556231990456581, 0.018917519599199295, -0.040009062737226486, -0.0018310457235202193, -0.02037271298468113, -0.03473179414868355, 0.005189606454223394, 0.01645420864224434, 0.02095128409564495, 0.030190886929631233, -0.010151291266083717, 0.05803242698311806, -0.029787641018629074, -0.038711659610271454, -0.006096911150962114, -0.005943502299487591, -0.0485999658703804, 0.017260702326893806, 0.0357486754655838, 0.07202332466840744, 0.020407777279615402, -0.07854539901018143, -0.009511357173323631, 0.03390776738524437, 0.06206488981842995, 0.0002575079270172864, -0.04646100476384163, -0.03825581818819046, 0.006802592426538467, -0.00002758279697445687, -0.03250517323613167, 0.006653566844761372, 0.02372141182422638, -0.05175580829381943, -0.0739869624376297, -0.06430904567241669, 0.0220382958650589, -0.06399346143007278, 0.027543487027287483, 0.006587820127606392, -0.02037271298468113, 0.03252270445227623, -0.041657112538814545, -0.024527903646230698, -0.024387644603848457, 0.009783109650015831, 0.04341035708785057, 0.061503853648900986, -0.006035547703504562, 0.03396036475896835, -0.025737643241882324, 0.003357465146109462, -0.07177787274122238, 0.05175580829381943, 0.00913440901786089, 0.0602765791118145, -0.03143569082021713, 0.0528077557682991, -0.006337982602417469, -0.01939089596271515, 0.00428887689486146, 0.06602722406387329, -0.034556467086076736, -0.06718436628580093, 0.021687647327780724, 0.011150641366839409, 0.015726612880825996, 0.004689931869506836, 0.0020710211247205734, 0.014429210685193539, -0.015016547404229641, 0.08555837720632553, -0.024492839351296425, 0.04344542324542999, 0.013903236947953701, 0.05080905556678772 ]
7,476
json.decoder
__reduce__
null
def __reduce__(self): return self.__class__, (self.msg, self.doc, self.pos)
(self)
[ -0.005502624902874231, -0.0288240946829319, -0.0057958681136369705, -0.000026177627660217695, 0.004579770844429731, -0.04191654548048973, -0.002615471836179495, -0.03805263340473175, 0.06051162630319595, -0.01783609390258789, 0.03168753162026405, 0.026598894968628883, 0.032636258751153946, 0.03781114146113396, -0.0214412622153759, 0.04929937794804573, -0.00762432673946023, -0.003432672005146742, -0.011445115320384502, 0.07313834130764008, 0.01933681033551693, 0.017551476135849953, 0.020182041451334953, -0.006589350290596485, 0.024287447333335876, 0.052335310727357864, 0.025943409651517868, -0.04419349506497383, 0.027633871883153915, -0.05661321431398392, -0.056302718818187714, -0.03222226724028587, 0.022096747532486916, -0.035361696034669876, -0.005360315553843975, 0.016240505501627922, -0.029393332079052925, 0.055060748010873795, -0.0009724466362968087, -0.008585992269217968, -0.0019254875369369984, -0.04057107865810394, -0.05947664752602577, -0.04795391112565994, 0.0050843218341469765, -0.0055931853130459785, 0.054094769060611725, 0.022614236921072006, 0.00005710563709726557, -0.05323228985071182, -0.010919001884758472, 0.013963557779788971, -0.002268323441967368, 0.0028397166170179844, -0.020268289372324944, 0.047401923686265945, 0.011660735122859478, 0.041778549551963806, -0.048712894320487976, 0.038880616426467896, -0.0267023928463459, 0.06475502997636795, 0.08935297280550003, 0.01326494850218296, -0.018215585500001907, -0.030100565403699875, -0.01969905197620392, 0.010660258121788502, -0.015326276421546936, 0.08183214068412781, 0.00834449753165245, -0.03498220443725586, -0.008654991164803505, 0.015550521202385426, 0.024149451404809952, -0.00033394162892363966, -0.02487393468618393, 0.020492535084486008, 0.10073771327733994, -0.020854776725172997, 0.005067072343081236, 0.0346372127532959, -0.05668221041560173, 0.005571623332798481, 0.08093515783548355, -0.054957251995801926, -0.014067055657505989, -0.028237607330083847, -0.06092561408877373, 0.019647303968667984, -0.05130033567547798, 0.06579000502824783, -0.02847910299897194, 0.013592691160738468, -0.04281352832913399, 0.013618565164506435, -0.04084707051515579, -0.017620474100112915, 0.003018681425601244, 0.015050282701849937, 0.00454958388581872, 0.07355232536792755, -0.06071861833333969, -0.051369331777095795, -0.03215326741337776, -0.015136530622839928, -0.003171771764755249, -0.004834202583879232, 0.015973137691617012, 0.052507806569337845, 0.04377950355410576, 0.014472421258687973, -0.03812163323163986, 0.07141337543725967, -0.030117815360426903, -0.02232099324464798, -0.06375455111265182, -0.004433149471879005, 0.002701719757169485, -0.005877804011106491, -0.003695728490129113, -0.003784132655709982, -0.06516902148723602, 0.009832276962697506, -0.04057107865810394, 0.0069214049726724625, 0.022976478561758995, -0.032670758664608, 0.07824422419071198, -0.07955519109964371, -0.032998498529195786, -0.028254857286810875, 0.0029971194453537464, -0.02935883216559887, 0.008245312608778477, 0.013463319279253483, 0.03736265003681183, -0.00016926178068388253, -0.048298902809619904, 0.05098984017968178, 0.03023856319487095, 0.037293653935194016, 0.04298602417111397, 0.029065588489174843, -0.04816090688109398, -0.017422104254364967, 0.04112306609749794, 0.06637649238109589, -0.015973137691617012, 0.01573164202272892, -0.01670624502003193, -0.018250085413455963, 0.04474548250436783, 0.037293653935194016, 0.02452894300222397, 0.00962528120726347, -0.017292732372879982, -0.02373545989394188, -0.007857196033000946, -0.027461376041173935, 0.01063438318669796, -0.06758396327495575, 0.0267023928463459, -0.006192609202116728, 0.06344405561685562, 0.03289500251412392, 0.04954087361693382, -0.04170955345034599, -0.02259698696434498, -0.002365352585911751, -0.021562010049819946, -0.02523617632687092, -0.00746908038854599, 0.031152792274951935, -0.09149192273616791, 0.0732763335108757, -0.043883003294467926, 0.06799795478582382, -0.04305502027273178, -0.0029259647708386183, 0.019750801846385002, -0.019440308213233948, -0.06030463054776192, -0.010418763384222984, 0.033343493938446045, 0.017275482416152954, 0.03023856319487095, 0.004588395822793245, 0.0002715465670917183, -0.04440049082040787, -0.031135542318224907, -0.033446989953517914, -0.002040844177827239, 0.008663615211844444, -0.014248176477849483, 0.02154476009309292, -0.06913642585277557, 0.01265258714556694, 0.04622894898056984, 0.04578046128153801, -0.07686425000429153, 0.050299856811761856, 0.007404394447803497, 0.013860059902071953, -0.020182041451334953, 0.053922273218631744, -0.0017109455075114965, 0.009702904149889946, -0.09583882242441177, -0.00045226316433399916, 0.030566304922103882, 0.019129814580082893, 0.01809483952820301, 0.0008560118149034679, 0.04788491129875183, -0.062271084636449814, 0.0655830129981041, 0.010160018689930439, -0.030721552670001984, 0.03553419187664986, 0.05202481895685196, -0.022734982892870903, 0.004661706741899252, -0.030980296432971954, 0.011074248701334, -0.039777595549821854, -0.013851434923708439, -0.08693802356719971, -0.01511065661907196, -0.06741146743297577, 0.027461376041173935, -0.04578046128153801, -0.005041197873651981, 0.027806367725133896, -0.01643887721002102, 0.035637691617012024, 0.0053430660627782345, 0.0005352768930606544, -0.05292179808020592, 0.01300620473921299, -0.02363196201622486, -0.004562521353363991, 0.026167655363678932, 0.07113738358020782, 0.061305105686187744, -0.020958272740244865, 0.055405739694833755, 0.04305502027273178, 0.0025400046724826097, 0.04167505353689194, 0.004575458355247974, 0.00005821742524858564, -0.033084746450185776, -0.026598894968628883, 0.027375128120183945, 0.0076976376585662365, -0.03198077157139778, -0.017206484451889992, -0.010263516567647457, -0.018250085413455963, 0.04540096968412399, 0.014360298402607441, 0.03391272947192192, 0.005925240460783243, 0.002302822656929493, 0.02364921197295189, -0.011824605986475945, -0.006567788310348988, -0.04584945738315582, 0.08707602322101593, 0.07631226629018784, 0.037569645792245865, 0.013851434923708439, 0.034930456429719925, -0.054267264902591705, -0.02459794096648693, -0.014739790000021458, 0.00965978018939495, -0.009944398887455463, -0.02292472869157791, 0.007374207489192486, 0.009599407203495502, -0.015679894015192986, -0.019750801846385002, 0.025270676240324974, -0.006296107079833746, 0.012488716281950474, 0.01897456869482994, -0.0069214049726724625, -0.04070907458662987, 0.016016261652112007, 0.00731814606115222, -0.00808144174516201, -0.012842332944273949, 0.08162514120340347, 0.010841378942131996, -0.029945319518446922, 0.028272107243537903, 0.029721073806285858, 0.00015767219883855432, -0.027564873918890953, -0.030790550634264946, 0.013670314103364944, -0.0018424737500026822, -0.0026133155915886164, 0.002984182210639119, 0.021838003769516945, -0.004062282852828503, 0.027616621926426888, -0.021648257970809937, -0.024097701534628868, 0.02004404366016388, 0.003611636580899358, 0.013670314103364944, -0.04402099922299385, 0.041157566010951996, 0.03546519577503204, 0.043641507625579834, 0.02090652473270893, 0.07313834130764008, -0.046539440751075745, -0.03574118763208389, -0.021113520488142967, -0.016016261652112007, 0.030911296606063843, -0.028599850833415985, -0.07507029175758362, -0.04457298666238785, 0.017111610621213913, -0.008943921886384487, -0.04391750320792198, -0.0008166611078195274, -0.012549090199172497, 0.009806402027606964, -0.11315742880105972, -0.018957318738102913, 0.049954865127801895, -0.012462841346859932, 0.013152825646102428, -0.05047235265374184, -0.0026650645304471254, 0.004907513502985239, -0.03320549428462982, 0.04923038184642792, 0.0005026643630117178, -0.037466149777173996, -0.009504534304141998, 0.0007999505614861846, 0.10805154591798782, -0.07624326646327972, 0.029738323763012886, -0.03032481111586094, -0.005899365991353989, 0.010893127880990505, 0.06827394664287567, 0.005834680050611496, -0.040053591132164, -0.03874262049794197, 0.005916615482419729, 0.02283848077058792, 0.029496829956769943, -0.0021454200614243746, -0.0014360299101099372, 0.018750322982668877, -0.008029692806303501, 0.0465739406645298, -0.02663339488208294, 0.0055931853130459785, 0.015231403522193432, -0.039156608283519745, -0.029065588489174843, 0.0009395646047778428, -0.041778549551963806, -0.03912211209535599, -0.04526297003030777, 0.029893571510910988, -0.01888832077383995, 0.026857638731598854, -0.06727346777915955, -0.06354755908250809, 0.0050066988915205, -0.01890557073056698, 0.0018230678979307413, 0.02188975177705288, -0.014782913960516453, 0.054094769060611725, 0.01323044952005148, 0.04698793217539787, 0.013144201599061489, 0.08473007380962372, -0.034136973321437836, -0.03382648155093193, -0.06451353430747986, -0.05105884000658989, -0.020302789285779, 0.005295629613101482, 0.00507569732144475, -0.009254414588212967, -0.050403352826833725, -0.056992705911397934, 0.022269243374466896, -0.0012894081883132458, 0.0004870319098699838, 0.03474070876836777, -0.00856443028897047, -0.014110179618000984, 0.04598745331168175, 0.01835358329117298, 0.030014317482709885, 0.01695636473596096, 0.015067532658576965, -0.016378503292798996, -0.03461996465921402, -0.020941024646162987, 0.020251039415597916, -0.05402577295899391, 0.023148974403738976, 0.022786732763051987, 0.02830660715699196, -0.03477520868182182, -0.03546519577503204, 0.023838957771658897, 0.0508173443377018, -0.005907990504056215, -0.020785776898264885, -0.03801813721656799, -0.051714323461055756, -0.009125042706727982, 0.017818845808506012, 0.002941058250144124, -0.03846662491559982, -0.026840390637516975, -0.03794913738965988, -0.012971704825758934, -0.0008829642902128398, -0.07020590454339981, -0.019664553925395012, -0.023321470245718956, 0.024580691009759903, 0.05916615575551987, 0.03691416233778, 0.002917340025305748, 0.060408126562833786, -0.0008835033513605595, 0.06372005492448807, -0.023269720375537872, -0.055578235536813736, -0.004985136911273003, -0.06451353430747986, -0.012290345504879951, 0.08645503222942352, 0.055405739694833755, 0.00940103642642498, 0.015878263860940933, 0.033257242292165756, -0.03486145660281181, -0.025149928405880928, -0.06168459728360176, -0.004195967223495245, -0.02601240947842598, 0.03894961625337601, -0.008538556285202503, -0.01679249294102192, 0.03375748172402382, -0.07755424082279205, -0.016128383576869965, -0.006960216909646988, -0.0502653568983078, -0.05105884000658989, -0.031946275383234024, 0.045297469943761826, -0.02082027681171894, -0.03926010802388191, -0.06661798804998398, -0.03242926299571991, 0.053025294095277786, 0.023338720202445984, -0.06089111790060997, -0.006671285722404718, -0.02532242424786091, 0.014895036816596985, -0.06451353430747986, -0.010832753963768482, -0.030117815360426903, -0.0488508902490139, 0.04833340272307396, 0.0303938090801239, -0.035120200365781784, 0.02935883216559887, 0.006826532538980246, -0.04377950355410576, 0.0936998724937439, -0.023269720375537872, -0.013411570340394974, 0.009340662509202957, 0.05192131921648979, 0.009513158351182938, -0.009815027005970478, -0.06961941719055176, -0.04402099922299385, 0.021337764337658882, -0.07541528344154358, -0.020492535084486008, -0.03315374627709389, 0.013980806805193424, -0.05402577295899391, 0.014524170197546482, 0.013023453764617443, 0.004920450504869223, -0.030566304922103882, -0.004223997704684734, -0.010289391502737999, -0.048540398478507996, 0.02444269508123398, -0.012799208983778954, -0.07306934148073196, -0.023614713922142982, 0.010591259226202965, -0.01441204734146595, -0.03743164986371994, 0.02775461971759796, 0.05150732770562172, -0.032308515161275864, 0.016206007450819016, -0.05205931514501572, 0.031428784132003784, 0.005912302993237972, -0.0014295612927526236, 0.0013929058331996202, 0.005925240460783243, -0.020492535084486008, -0.05578523129224777, -0.014567294158041477, 0.02204499952495098, -0.018560579046607018, 0.072724349796772, -0.04260653257369995, 0.01837083324790001, -0.013359821401536465, 0.04488347843289375, 0.025460422039031982, -0.00034121880889870226, -0.0017432884778827429, -0.04326201602816582, -0.005981301423162222, 0.027927115559577942, 0.03170477971434593, 0.00033960165455937386, 0.0010775614064186811, -0.048298902809619904, -0.014946785755455494, -0.03201527148485184, -0.013704813085496426, 0.03168753162026405, 0.053818777203559875, 0.04036408290266991, -0.029893571510910988, -0.021562010049819946, 0.042744528502225876, 0.022614236921072006, 0.018474329262971878, 0.023407718166708946, -0.009909899905323982, 0.00030995390261523426, -0.003331330604851246, 0.04543546587228775, 0.03584468364715576, 0.060580622404813766, -0.03750064596533775, -0.016852866858243942, -0.016137007623910904, 0.02547767013311386, -0.044296994805336, -0.007158587221056223, 0.03318824619054794, 0.014748414978384972, -0.0193195603787899, 0.015352151356637478, -0.025149928405880928, -0.03567218780517578, 0.014843287877738476, 0.025598417967557907, 0.03570668771862984, -0.08162514120340347, -0.020958272740244865, -0.014299925416707993, -0.017870593816041946, -0.02740962617099285, 0.02073402889072895, -0.019888797774910927, 0.01811208762228489, -0.006835157051682472, 0.0007719199638813734, 0.027375128120183945, 0.01116049662232399, 0.006645411252975464, 0.023217972368001938, -0.001838161377236247, -0.07355232536792755, -0.019526556134223938, -0.02796161361038685, 0.036327674984931946, -0.01995779573917389, 0.044331490993499756, 0.021838003769516945, -0.018077589571475983, -0.012626713141798973, 0.049885865300893784, 0.005377565510571003, 0.058648668229579926, 0.00008584374882047996, -0.01723235845565796, 0.027375128120183945, 0.009202665649354458, -0.019095316529273987, -0.029910819604992867, -0.018422581255435944, 0.013446069322526455, -0.03553419187664986, 0.01923331245779991, -0.0019642990082502365, -0.0038207881152629852, -0.036086179316043854, 0.016680371016263962, -0.03232576698064804, 0.06285756826400757, -0.00601580087095499, -0.07852021604776382, 0.05209381505846977, -0.014895036816596985, 0.018043089658021927, 0.035206448286771774, 0.08252212405204773, -0.08031417429447174, -0.05357728153467178, 0.05185232311487198, 0.003909192513674498, 0.03770764172077179, -0.02056153304874897, -0.019026316702365875, 0.007447518408298492, 0.02496018260717392, -0.011307118460536003, -0.04985136538743973, -0.0548192523419857, -0.030825048685073853, -0.01463629212230444, -0.03524094820022583, -0.012100599706172943, -0.0069214049726724625, -0.0069257174618542194, 0.024132201448082924, 0.01703398860991001, 0.02276948280632496, 0.012574964202940464, 0.0534047856926918, -0.019923297688364983, -0.011082872748374939, 0.019750801846385002, -0.004765204153954983, -0.021562010049819946, -0.02028553932905197, 0.06513451784849167, -0.04208904504776001, 0.0195955540984869, 0.00940103642642498, -0.016939114779233932, -0.005205069202929735, 0.044607486575841904, -0.040640074759721756, 0.016275005415081978, 0.039053112268447876, 0.05185232311487198, -0.013023453764617443, -0.02195875160396099, -0.0020861243829131126, 0.07962419092655182, 0.022148497402668, 0.015964511781930923, -0.07872720807790756, 0.040053591132164, 0.03539619594812393, -0.04070907458662987, -0.07686425000429153, 0.004295152612030506, -0.005179194733500481, -0.029462330043315887, 0.007253460120409727, 0.011608986184000969, -0.07424231618642807, 0.042572032660245895, -0.0014489670284092426, 0.01467079110443592, -0.011652110144495964, -0.008659303188323975, 0.06403054296970367, -0.028858594596385956, -0.07127538323402405, 0.05792418494820595, -0.03156678378582001, 0.048298902809619904, 0.019612804055213928, 0.01331669744104147, -0.023217972368001938, 0.0025831288658082485, 0.026426399126648903, 0.03289500251412392, 0.01493816077709198, -0.004484897945076227, 0.01181598100811243, 0.01995779573917389, 0.05837267264723778, -0.009728779084980488, 0.021044522523880005, 0.03670716658234596, -0.013816935941576958, 0.09045694768428802, 0.0667559802532196, -0.03846662491559982, 0.036603666841983795, -0.012643963098526001, 0.027564873918890953, 0.045124974101781845, 0.038363128900527954, 0.000001107579805648129, 0.035637691617012024, -0.018232835456728935, -0.061650097370147705, -0.004903201013803482, -0.03957059979438782, 0.014558669179677963, 0.01659412309527397, -0.040122587233781815, -0.0018575671128928661, 0.044296994805336, -0.002272635931149125, 0.003339955350384116, -0.013170075602829456, -0.00454958388581872, 0.02678864076733589, -0.04747091978788376, -0.012290345504879951, 0.026943888515233994, 0.05147283151745796, -0.08714502304792404, -0.05140383169054985, 0.06582450121641159, 0.08562705665826797, -0.05174882337450981, 0.03687966242432594, 0.03629317507147789, 0.020302789285779, 0.028686098754405975, 0.014903660863637924, 0.010746506042778492, -0.06020113080739975, 0.031497783958911896, -0.0497133694589138, 0.00800381787121296, -0.02468418888747692, -0.009858150966465473, -0.027564873918890953, -0.01362719014286995, 0.061650097370147705, 0.026288403198122978, 0.04760891944169998, 0.035292696207761765, 0.04043308272957802 ]
7,477
builtins
TypeError
Inappropriate argument type.
from builtins import TypeError
null
[ 0.004899708554148674, 0.014440814033150673, 0.036376748234033585, 0.02638872340321541, 0.0017661501187831163, 0.02046807110309601, 0.00865136831998825, 0.03467107564210892, 0.023288991302251816, -0.04428188502788544, 0.049103688448667526, 0.0682269036769867, 0.023108582943677902, -0.03340822085738182, -0.05612318590283394, 0.020090855658054352, -0.007527920417487621, 0.11815062910318375, 0.007757530082017183, 0.00033288291888311505, -0.07918256521224976, -0.001458637067116797, 0.00031648221192881465, -0.014998437836766243, 0.02202613651752472, 0.08725171536207199, 0.03385103866457939, -0.013448571786284447, 0.017073126509785652, -0.05366308242082596, -0.0666196346282959, -0.04090334102511406, 0.01526084914803505, 0.019484028220176697, 0.013768386095762253, -0.0350646935403347, -0.043625857681035995, 0.012653138488531113, -0.034703876823186874, -0.01672051101922989, -0.034605473279953, 0.009028583765029907, -0.07367193698883057, -0.02504386566579342, -0.03096451796591282, -0.060518573969602585, -0.018499987199902534, 0.008007640950381756, -0.07911696285009384, -0.029652461409568787, -0.02604430727660656, 0.010061828419566154, 0.06835810840129852, -0.012702340260148048, -0.022386953234672546, 0.08397157490253448, 0.005924751982092857, 0.04470830038189888, -0.06019056215882301, 0.04975971579551697, -0.011997110210359097, 0.06573399901390076, -0.01697472296655178, -0.04857886582612991, 0.028652019798755646, 0.001384833944030106, -0.03578632324934006, -0.025388279929757118, -0.03857444226741791, 0.047988440841436386, -0.033260613679885864, 0.005412230268120766, -0.06914534419775009, 0.036475151777267456, 0.08803894370794296, -0.05507354438304901, -0.08233150094747543, 0.01250553224235773, 0.02973446436226368, -0.020205659791827202, 0.03440866246819496, 0.020943691954016685, -0.020320463925600052, 0.04254341125488281, 0.000014006260244059376, 0.0010629702592268586, -0.07137583941221237, 0.021271705627441406, -0.03240777924656868, -0.002142341108992696, -0.055270351469516754, -0.039853695780038834, -0.04556113854050636, 0.004784903489053249, 0.009930622763931751, 0.06875172257423401, 0.031341731548309326, -0.09623929113149643, 0.018729597330093384, -0.04949730634689331, 0.08718610554933548, 0.013120558112859726, 0.03186655417084694, -0.05395829677581787, 0.025781895965337753, 0.038935255259275436, 0.04930049926042557, -0.01697472296655178, -0.006691484712064266, 0.019402025267481804, -0.05776325613260269, -0.013145158998668194, -0.013866789638996124, -0.02291177399456501, -0.022058937698602676, -0.03048889711499214, 0.002474455162882805, -0.01485903188586235, 0.024715851992368698, 0.022649362683296204, 0.045757945626974106, 0.02984927035868168, -0.022321349009871483, 0.028865227475762367, 0.1048988625407219, 0.06481555849313736, 0.006166662555187941, -0.00642907340079546, 0.07235987484455109, 0.02671673707664013, 0.006105159875005484, -0.0057894461788237095, -0.051137376576662064, 0.03499908745288849, -0.03857444226741791, 0.04818525165319443, -0.040280114859342575, 0.022485356777906418, 0.000773395411670208, -0.05710722878575325, 0.004838205873966217, 0.000996854854747653, 0.06258506327867508, -0.02781558409333229, -0.008056842721998692, 0.005067815538495779, -0.017040325328707695, 0.04031291604042053, -0.0002816307242028415, 0.019205216318368912, -0.00450199143961072, 0.01786036044359207, -0.0011244728229939938, 0.01436701137572527, -0.03677036613225937, 0.05723843351006508, 0.02337099425494671, -0.06327389180660248, 0.0022017937153577805, -0.03473667800426483, -0.035261500626802444, -0.03545830771327019, 0.006527477875351906, -0.025962304323911667, 0.03242417797446251, 0.03209616616368294, 0.016810715198516846, -0.022436155006289482, 0.004001770168542862, 0.031210528686642647, -0.02445344068109989, -0.009126988239586353, 0.0091679897159338, 0.0074992189183831215, 0.003977169282734394, 0.03417905420064926, -0.030702106654644012, 0.08561164140701294, -0.007236808072775602, 0.021042095497250557, 0.014588420279324055, -0.035130295902490616, -0.10129071027040482, 0.015613464638590813, 0.04825085401535034, 0.0297180637717247, -0.015031239949166775, -0.01945122703909874, 0.03226017206907272, -0.0028947230894118547, 0.00335189257748425, 0.008544763550162315, 0.02481425553560257, 0.019385624676942825, 0.026191914454102516, -0.024191029369831085, -0.03219456970691681, -0.011939708143472672, 0.011915107257664204, 0.043986670672893524, -0.050120532512664795, 0.06192903593182564, 0.0017558997496962547, 0.026355920359492302, -0.0014955386286601424, -0.024551844224333763, -0.0429370254278183, -0.015031239949166775, -0.030751308426260948, -0.004707000218331814, 0.0023965518921613693, -0.041624970734119415, 0.0029623759910464287, 0.049333300441503525, 0.019959649071097374, -0.018352380022406578, 0.024847056716680527, -0.08062583208084106, 0.006072358228266239, 0.039722491055727005, 0.08607086539268494, 0.026847941800951958, 0.015949677675962448, -0.03408065065741539, 0.07452476769685745, 0.011644495651125908, -0.03327701613306999, 0.009077786467969418, 0.016671309247612953, 0.00679398886859417, 0.04392106831073761, -0.009340197779238224, -0.036048732697963715, -0.0005883750272914767, 0.03601593151688576, -0.0006047757342457771, 0.0466763861477375, -0.007884635590016842, -0.017007524147629738, 0.01122627779841423, -0.026765938848257065, 0.017515944316983223, -0.03565511852502823, 0.04260901361703873, 0.03729518502950668, -0.008913779631257057, 0.03353942558169365, 0.07190065830945969, -0.07347512245178223, 0.020714081823825836, 0.04313383623957634, -0.03176815062761307, -0.0037065576761960983, -0.044872310012578964, 0.03083331137895584, -0.052580635994672775, 0.02402702160179615, -0.045528337359428406, 0.07682086527347565, -0.02156691811978817, -0.016392497345805168, 0.020369665697216988, 0.010553848929703236, 0.03252258524298668, -0.08213469386100769, -0.035589512437582016, -0.025995105504989624, 0.055368755012750626, 0.040968943387269974, 0.04592195525765419, 0.0701293870806694, 0.014104600064456463, 0.005969854071736336, 0.031243329867720604, -0.05441751331090927, 0.029127638787031174, 0.010808059945702553, 0.05310545861721039, 0.03808242082595825, -0.003364193020388484, 0.022764168679714203, 0.021763725206255913, -0.03463827446103096, -0.004944810178130865, -0.10109390318393707, 0.008462759666144848, 0.02414182759821415, -0.05238382890820503, -0.03440866246819496, 0.022042537108063698, 0.03565511852502823, 0.014047197997570038, 0.028520813211798668, -0.019484028220176697, 0.04005050286650658, 0.038968056440353394, -0.026454325765371323, -0.048316456377506256, 0.07301590591669083, 0.005555736366659403, 0.01491643488407135, -0.021042095497250557, 0.0076591260731220245, 0.009930622763931751, 0.012554734013974667, -0.08548043668270111, 0.04605315998196602, 0.008766173385083675, -0.05353187769651413, 0.026815140619874, 0.007905135862529278, -0.005399929825216532, -0.023961419239640236, -0.006707885302603245, 0.0554671585559845, 0.035917527973651886, 0.018122771754860878, -0.016622107475996017, -0.04254341125488281, 0.10358680784702301, -0.03775440528988838, -0.039066463708877563, 0.06078098714351654, -0.01570366881787777, -0.029570458456873894, -0.022714966908097267, -0.018680395558476448, -0.021370109170675278, 0.030439695343375206, 0.02445344068109989, -0.027438366785645485, 0.0021115897689014673, 0.05428630858659744, 0.008971181698143482, 0.009126988239586353, 0.03408065065741539, 0.0433962456882, -0.01989404670894146, -0.012234920635819435, -0.0010399067541584373, 0.00013722771836910397, 0.027339963242411613, 0.023994220420718193, 0.000983529374934733, 0.024404238909482956, -0.025896701961755753, -0.014719625934958458, -0.015318252146244049, 0.0891541913151741, 0.003425695700570941, -0.03532710298895836, -0.0000594525299675297, -0.04536433145403862, -0.001072195591405034, 0.0010742456652224064, 0.01357157714664936, -0.017073126509785652, 0.00813064631074667, -0.04142816364765167, 0.026437925174832344, 0.10312758386135101, -0.01570366881787777, -0.0055598365142941475, 0.02168172225356102, -0.02861921675503254, -0.03519589826464653, 0.011382084339857101, -0.0012946301139891148, 0.024223830550909042, 0.0014873383333906531, -0.009701012633740902, -0.012931950390338898, -0.08016660809516907, -0.07472158223390579, -0.04500351473689079, 0.022190144285559654, 0.03240777924656868, 0.04483950883150101, -0.055926378816366196, 0.009930622763931751, 0.01616288721561432, -0.005121117923408747, -0.06980136781930923, -0.027421966195106506, -0.01587587594985962, -0.02348579838871956, -0.02760237455368042, 0.027225159108638763, -0.016843516379594803, 0.06366750597953796, -0.03877124935388565, -0.044872310012578964, 0.06183062866330147, 0.0005015025963075459, 0.002138240961357951, 0.02033686451613903, -0.014621222391724586, -0.036704760044813156, -0.07511519640684128, 0.06022336333990097, -0.01558886282145977, 0.05956733599305153, -0.033457424491643906, 0.0761648416519165, 0.031243329867720604, 0.02158331871032715, 0.031899355351924896, -0.020599275827407837, 0.00860216561704874, -0.028356807306408882, 0.038738448172807693, -0.017269935458898544, -0.04172337427735329, -0.06379871070384979, -0.011472288519144058, 0.003684006631374359, -0.043068233877420425, -0.06665243208408356, -0.01570366881787777, -0.018188374117016792, 0.007958438247442245, -0.07032619416713715, 0.013686382211744785, 0.0352943018078804, -0.020714081823825836, -0.006277367006987333, -0.043429046869277954, 0.019156014546751976, -0.007314711343497038, 0.01820477470755577, -0.017187930643558502, 0.02648712694644928, -0.0022222944535315037, -0.07098221778869629, 0.02861921675503254, -0.0359831303358078, -0.08849816769361496, -0.004805404227226973, 0.04490511119365692, 0.043625857681035995, 0.039263270795345306, 0.05353187769651413, 0.04818525165319443, 0.012333325110375881, 0.06724286079406738, -0.02770077809691429, 0.013128758408129215, 0.07564001530408859, -0.04884127900004387, -0.019943248480558395, -0.03240777924656868, -0.0315549410879612, 0.03129253163933754, -0.022173743695020676, 0.019516829401254654, -0.009487804025411606, -0.09630489349365234, 0.045429933816194534, 0.014604821801185608, -0.012767943553626537, -0.01864759251475334, 0.041854579001665115, -0.05061255395412445, -0.034146253019571304, -0.009701012633740902, 0.0900726318359375, 0.000746231758967042, 0.013940593227744102, 0.02110769785940647, 0.010750656947493553, -0.0003249388246331364, 0.015908677130937576, 0.01933642290532589, -0.02793038822710514, -0.018598390743136406, 0.07176945358514786, -0.024256631731987, -0.003304740646854043, 0.0677676796913147, -0.02571629360318184, 0.017401140183210373, -0.031800951808691025, 0.04149376600980759, 0.005773045588284731, -0.06907974183559418, -0.017696352675557137, -0.02950485609471798, -0.0235678032040596, 0.022304948419332504, 0.012103714980185032, 0.01230052299797535, 0.03306380659341812, -0.014490016736090183, 0.008188048377633095, 0.05799286812543869, -0.010422643274068832, -0.057500846683979034, 0.017597949132323265, -0.012423528358340263, 0.006695584859699011, 0.024207429960370064, 0.0040694233030080795, -0.011997110210359097, -0.008733371272683144, 0.05684481933712959, -0.010078229010105133, 0.07078541070222855, 0.010176632553339005, -0.004825905431061983, -0.053695883601903915, -0.019369224086403847, 0.05999375134706497, 0.01968083716928959, -0.0024047524202615023, 0.05553276091814041, -0.05631999671459198, 0.0004940709914080799, 0.013710983097553253, -0.04503631591796875, 0.029193241149187088, 0.008528362959623337, -0.02058287523686886, -0.03585192561149597, -0.06376591324806213, -0.009635410271584988, -0.03818082436919212, -0.00541633041575551, 0.0014135350938886404, 0.005432731006294489, 0.04670918732881546, 0.0415593683719635, 0.00606415793299675, 0.016695911064743996, -0.03696717321872711, -0.014399812556803226, 0.017269935458898544, -0.015736469998955727, 0.025273475795984268, 0.035130295902490616, 0.007663226220756769, -0.007048199884593487, 0.01822117529809475, 0.002570809330791235, 0.014826230704784393, 0.018024366348981857, -0.03696717321872711, -0.05878010019659996, 0.0017558997496962547, -0.06324108690023422, 0.010898263193666935, -0.043199438601732254, -0.01084906142205, 0.016228489577770233, 0.036934372037649155, -0.007298310287296772, -0.020172858610749245, 0.01720433123409748, 0.011865904554724693, 0.04539713263511658, 0.014162002131342888, 0.007236808072775602, -0.03490068390965462, 0.01161169447004795, -0.03048889711499214, -0.09295915812253952, -0.030095281079411507, -0.024879857897758484, 0.03499908745288849, -0.025568688288331032, -0.02848801203072071, 0.004838205873966217, -0.01987764611840248, 0.02346939779818058, -0.0012587535893544555, 0.032227370887994766, 0.06025616452097893, -0.035589512437582016, 0.01117707509547472, 0.020189259201288223, -0.044183481484651566, 0.0014596621040254831, -0.005125218071043491, -0.01363718044012785, -0.04670918732881546, 0.033129408955574036, -0.03545830771327019, -0.027569573372602463, -0.0027860684785991907, -0.017401140183210373, -0.006982597056776285, -0.031800951808691025, 0.005301525350660086, -0.0075484211556613445, -0.07262229174375534, 0.034015048295259476, 0.013382969424128532, 0.00042718692566268146, -0.004784903489053249, -0.03831202909350395, -0.026552729308605194, -0.006966196466237307, 0.022419754415750504, 0.018631191924214363, -0.0232233889400959, 0.05002212896943092, -0.003487198380753398, 0.026962747797369957, 0.02202613651752472, -0.0016318694688379765, -0.016540104523301125, 0.009537005797028542, -0.015506859868764877, -0.007015398237854242, -0.04057532548904419, -0.026191914454102516, -0.00830285344272852, 0.009356598369777203, 0.016654908657073975, 0.01285814680159092, 0.06333949416875839, -0.05182620510458946, 0.011357483454048634, -0.013276364654302597, -0.029865670949220657, 0.01786036044359207, 0.013120558112859726, -0.011029468849301338, 0.009602608159184456, 0.0016062433132901788, -0.05589357763528824, -0.02825840190052986, 0.013866789638996124, 0.07865774631500244, -0.09925702214241028, -0.07813292741775513, 0.042871423065662384, 0.024535443633794785, 0.01591687649488449, 0.024781454354524612, 0.09689532220363617, -0.007851834408938885, -0.05277744680643082, -0.050809361040592194, 0.0431666374206543, -0.02569989301264286, 0.0035117994993925095, -0.02323978953063488, -0.038738448172807693, 0.03048889711499214, -0.027290761470794678, 0.02412542700767517, 0.05405670031905174, -0.01854918897151947, -0.0026425623800605536, -0.02146851271390915, 0.036245543509721756, -0.01357157714664936, -0.02829120308160782, 0.0036389047745615244, -0.022288547828793526, 0.019533231854438782, -0.004026371520012617, -0.03183375298976898, 0.027421966195106506, 0.05900971218943596, -0.006195363588631153, 0.01435881108045578, -0.0058919508010149, 0.024519043043255806, -0.034802280366420746, -0.007868234999477863, -0.06960456073284149, 0.011259078979492188, -0.025847500190138817, -0.03173534944653511, 0.014932835474610329, 0.012890947982668877, 0.02939005009829998, -0.021402910351753235, -0.016843516379594803, -0.028225600719451904, -0.024207429960370064, -0.0793793797492981, -0.0305216982960701, -0.051006171852350235, 0.017745554447174072, -0.04290422424674034, 0.02861921675503254, 0.007167105097323656, -0.06025616452097893, 0.01470322534441948, 0.004317483864724636, -0.02658553048968315, 0.020943691954016685, -0.040181711316108704, -0.039722491055727005, -0.039164867252111435, -0.012325124815106392, -0.002408852567896247, 0.02369900792837143, 0.04323223978281021, -0.010619452223181725, 0.00030008150497451425, 0.012530133128166199, 0.01843438483774662, -0.024617446586489677, -0.03968968987464905, 0.02202613651752472, -0.002468304941430688, -0.023731809109449387, 0.0018133021658286452, 0.030242886394262314, -0.018516387790441513, -0.033588629215955734, -0.04697159677743912, -0.05418790504336357, 0.010225835256278515, 0.08626767247915268, -0.0038787650410085917, -0.02281337045133114, 0.013604378327727318, 0.0014012346509844065, 0.02214094251394272, 0.041952986270189285, 0.05405670031905174, 0.036475151777267456, -0.0471356064081192, -0.037163980305194855, -0.0173027366399765, 0.01808996871113777, 0.03273579105734825, 0.020287662744522095, -0.018385183066129684, 0.06078098714351654, -0.005965753924101591, -0.014432613737881184, -0.04556113854050636, 0.05599198117852211, 0.030554499477148056, 0.021370109170675278, -0.010480046272277832, -0.014203004539012909, -0.019697237759828568, -0.04067372903227806, 0.009906021878123283, -0.022173743695020676, 0.023305391892790794, 0.027881186455488205, 0.0008056842489168048, 0.049234893172979355, 0.02156691811978817, -0.006597180850803852, 0.006232264917343855, 0.028668420389294624, 0.04077213630080223, -0.04005050286650658, -0.009807617403566837, -0.0015744669362902641, -0.01710592769086361, -0.00012095514830434695, -0.06442194432020187, 0.02002525143325329, -0.021206101402640343, 0.020845286548137665, -0.003739359090104699, 0.0008143971208482981, 0.0002908561145886779, 0.01475242804735899 ]
7,480
example_package_anellenson
add_one
null
def add_one(number): return number + 1
(number)
[ -0.06702468544244766, 0.02692444436252117, 0.004759796895086765, 0.11443731933832169, 0.0302268173545599, 0.011271873489022255, -0.06375601142644882, 0.031220899894833565, -0.04094268009066582, -0.05691538006067276, -0.006899599451571703, -0.007464035879820585, 0.03507928177714348, 0.021044200286269188, -0.006743747740983963, -0.008980431593954563, 0.0739327073097229, 0.015256623737514019, -0.01417829841375351, -0.0018080910667777061, 0.017573339864611626, 0.043672192841768265, 0.11221326887607574, 0.05465763434767723, -0.05536528676748276, 0.06153196096420288, 0.05667949467897415, 0.005488509312272072, 0.027564700692892075, -0.03378192335367203, -0.015880031511187553, -0.06867586821317673, -0.038718633353710175, -0.024599304422736168, 0.02095995657145977, 0.05678058788180351, -0.04960298165678978, 0.041414447128772736, -0.04586254060268402, 0.02994038723409176, 0.06341902911663055, 0.0031970671843737364, 0.00867715198546648, 0.007025965955108404, -0.04387437924742699, -0.021802397444844246, 0.02168445661664009, -0.010286216624081135, 0.0031402024906128645, -0.02215622365474701, 0.013470646925270557, 0.006806930992752314, 0.03162527084350586, -0.040740493685007095, 0.0008092708303593099, 0.026705410331487656, 0.04576144739985466, -0.01908973418176174, -0.012956757098436356, 0.055297888815402985, 0.0036477737594395876, 0.029300130903720856, -0.010656890459358692, -0.0193256177008152, 0.046940866857767105, 0.021515967324376106, -0.0033002663403749466, 0.0027674217708408833, 0.01797771081328392, 0.01561887376010418, 0.023082910105586052, 0.02298181690275669, -0.00669320160523057, -0.019763687625527382, 0.010690588504076004, 0.02869357354938984, 0.003913142718374729, 0.032130736857652664, 0.03287208452820778, -0.011802611872553825, 0.005303171928972006, -0.05600554123520851, 0.03243401646614075, 0.025593386963009834, -0.010336763225495815, 0.003260250436142087, 0.004258544184267521, 0.0009245800320059061, -0.030580643564462662, 0.05998186767101288, -0.005724393296986818, -0.03359658643603325, -0.03273729607462883, -0.018398933112621307, 0.05853286758065224, -0.025879817083477974, 0.02005011960864067, -0.03753921389579773, -0.021617060527205467, 0.0024283388629555702, -0.04562665522098541, 0.05745454132556915, -0.016941508278250694, -0.06143086776137352, 0.0026347371749579906, -0.046401701867580414, 0.01735430397093296, 0.009561716578900814, 0.010084030218422413, 0.04404286667704582, -0.05647730827331543, -0.0830310806632042, -0.03888712078332901, -0.06493542343378067, -0.018045106902718544, 0.04077419266104698, 0.03395041078329086, 0.03226552903652191, 0.009418501518666744, 0.04431244730949402, 0.05971228703856468, -0.008904611691832542, 0.021044200286269188, -0.03081652708351612, 0.028525084257125854, 0.01715211756527424, 0.036460887640714645, 0.013858170248568058, -0.005593814421445131, -0.03844905272126198, 0.019864780828356743, 0.0027737400960177183, 0.05354561284184456, 0.07588717341423035, -0.010699013248085976, 0.007025965955108404, -0.025172166526317596, 0.011726791970431805, -0.00824750680476427, 0.0176407340914011, -0.017724979668855667, -0.011398239992558956, 0.03922409936785698, 0.013116821646690369, 0.03027736395597458, -0.004176406189799309, -0.05186072736978531, 0.06493542343378067, -0.05748824030160904, 0.024835189804434776, 0.014835403300821781, -0.0010483136866241693, 0.06786712259054184, 0.03518037497997284, -0.02052188664674759, 0.04970407485961914, 0.049434494227170944, -0.02374001406133175, -0.0012257531052455306, -0.04296454042196274, 0.04451463371515274, 0.06338533014059067, 0.03400095924735069, -0.006747960112988949, -0.013436948880553246, 0.0013489602133631706, -0.08195275068283081, 0.08606386929750443, -0.0012204877566546202, 0.009612263180315495, 0.025997759774327278, -0.008542361669242382, 0.038920819759368896, 0.05226510018110275, 0.039392586797475815, 0.002147173974663019, 0.0010183017002418637, 0.01615803688764572, 0.019241373986005783, 0.008887763135135174, -0.003955265041440725, 0.02557653747498989, -0.026452677324414253, -0.0171184204518795, 0.03245086595416069, 0.02860932983458042, 0.02114529348909855, 0.003266568761318922, 0.0404709130525589, -0.0024683550000190735, 0.07629154622554779, 0.07723508030176163, 0.02470039762556553, -0.011743640527129173, 0.010640041902661324, -0.04303193464875221, -0.0028853637631982565, -0.01706787385046482, 0.026132550090551376, -0.02225731685757637, -0.04623321443796158, 0.017270060256123543, 0.02576187439262867, 0.01682356558740139, 0.02542489767074585, -0.02999093383550644, -0.029350677505135536, 0.02721087448298931, -0.061835240572690964, -0.032366618514060974, 0.012324925512075424, 0.015585176646709442, 0.02283017709851265, 0.06577786803245544, -0.0453907735645771, -0.06298096477985382, 0.020319700241088867, -0.05398368090391159, 0.03056379407644272, 0.006305678281933069, -0.0017554383957758546, 0.00010431800910737365, 0.03130514174699783, -0.058229587972164154, 0.051894426345825195, -0.026267340406775475, -0.003759397193789482, 0.023133456707000732, -0.01411090325564146, 0.016351798549294472, 0.046266913414001465, -0.01502074021846056, -0.008411782793700695, -0.04013393446803093, 0.03507928177714348, -0.06284616887569427, -0.03642718866467476, -0.032703597098588943, -0.015256623737514019, 0.0003706744755618274, 0.0005718074971809983, 0.04013393446803093, 0.05711756646633148, 0.04882793501019478, -0.03551735356450081, -0.0017312181880697608, -0.03379877284169197, 0.036460887640714645, -0.03138938918709755, 0.026065154001116753, 0.0016122233355417848, -0.019965874031186104, -0.009511169977486134, -0.006954358424991369, 0.012636629864573479, 0.005197866819798946, -0.03662937507033348, 0.019359316676855087, -0.0004096374032087624, 0.009536443278193474, 0.00007035706948954612, -0.009359530173242092, -0.001883910852484405, -0.02975505031645298, -0.10217136144638062, -0.0003714642662089318, -0.02090940997004509, 0.023638920858502388, 0.027766887098550797, 0.019190827384591103, 0.08107661455869675, -0.027278270572423935, 0.028103863820433617, -0.010244093835353851, -0.0006007664487697184, -0.06352012604475021, 0.033242758363485336, 0.08882708102464676, -0.017623886466026306, -0.021313780918717384, 0.014919647015631199, 0.038920819759368896, -0.026031456887722015, -0.02975505031645298, -0.03042900376021862, 0.033765073865652084, 0.04077419266104698, 0.08060484379529953, -0.031608421355485916, -0.016730897128582, 0.04353740066289902, 0.026031456887722015, 0.023133456707000732, 0.015736816450953484, 0.010800105519592762, -0.025610236451029778, -0.05334342643618584, 0.03406835347414017, 0.00484404107555747, 0.04205470159649849, -0.0396958664059639, -0.011962675489485264, -0.05452284216880798, -0.06908024102449417, -0.0523998886346817, -0.012417594902217388, 0.036123912781476974, 0.02090940997004509, 0.010496826842427254, 0.00465027941390872, -0.023571526631712914, 0.05108568072319031, -0.011381390504539013, 0.05378149449825287, 0.035888027399778366, -0.027480456978082657, -0.021229537203907967, 0.03740442171692848, -0.008997280150651932, 0.026183096691966057, 0.01316736824810505, 0.014161449857056141, 0.0003253931936342269, -0.01865166425704956, 0.012055344879627228, -0.0012668221024796367, -0.00722393998876214, -0.008479177951812744, -0.005871820263564587, -0.0038731268141418695, -0.0666540116071701, -0.04731154069304466, -0.016789868474006653, 0.05253468081355095, -0.04111116752028465, -0.03226552903652191, 0.016882536932826042, -0.011507757008075714, -0.03283838927745819, -0.0038941879756748676, 0.03401780501008034, -0.0197131410241127, -0.03743812069296837, -0.027598397806286812, 0.054489146918058395, -0.008083230815827847, 0.04127965494990349, 0.02461615391075611, 0.06864216923713684, -0.04215579479932785, -0.01571154221892357, -0.009435350075364113, -0.00468818936496973, -0.01571996696293354, 0.05435435473918915, 0.039493680000305176, 0.005046227481216192, -0.05492721498012543, 0.035112980753183365, -0.030159423127770424, -0.0304795503616333, -0.0490301214158535, -0.022661689668893814, 0.0723826140165329, -0.046940866857767105, -0.017337456345558167, -0.059004634618759155, 0.008272780105471611, 0.0015974806156009436, -0.035449959337711334, 0.00872769858688116, 0.006731111090630293, -0.017371153458952904, 0.005901305936276913, 0.02370631694793701, 0.047277841717004776, 0.05981338024139404, 0.034439027309417725, -0.0396958664059639, -0.07251740247011185, 0.02293127030134201, 0.010732710361480713, -0.058768752962350845, 0.0500747486948967, -0.009890268556773663, 0.0180282574146986, 0.03979695960879326, -0.03255195915699005, -0.04033612087368965, 0.04946819320321083, 0.021499119699001312, -0.011979524977505207, 0.03794358670711517, 0.002058717655017972, -0.04026872664690018, 0.003357131266966462, 0.027985921129584312, -0.03686526045203209, -0.04282974824309349, 0.009671233594417572, 0.059476401656866074, -0.0010993867181241512, -0.02207197993993759, 0.008554997853934765, -0.018921246752142906, -0.008660303428769112, -0.013976112008094788, -0.04542446881532669, -0.02057243324816227, -0.0022893359418958426, -0.0931403860449791, -0.05475872755050659, -0.005892881657928228, -0.0490301214158535, 0.003597227158024907, -0.005517994984984398, 0.004810343496501446, -0.01442260667681694, 0.002516795415431261, -0.014523699879646301, 0.03133884072303772, -0.014119327068328857, -0.06779973208904266, 0.09037717431783676, 0.001177312689833343, -0.026115700602531433, 0.05856656655669212, 0.0345064215362072, -0.052130308002233505, 0.05351191386580467, -0.04090898111462593, -0.06480063498020172, 0.05984707549214363, -0.07312396168708801, 0.013436948880553246, -0.03497818857431412, -0.02109474688768387, -0.05964489281177521, 0.02542489767074585, 0.005096774082630873, 0.08175057172775269, 0.04249277338385582, -0.013319007121026516, -0.0076451608911156654, 0.008635030128061771, -0.08565949648618698, 0.015492507256567478, -0.021785549819469452, -0.010319913737475872, -0.043436307460069656, -0.0034813913516700268, -0.028053317219018936, 0.012324925512075424, 0.012914635241031647, 0.06210482120513916, -0.06429517269134521, -0.10911308228969574, -0.018820153549313545, 0.04454833269119263, -0.009831298142671585, -0.03696635365486145, 0.05937530845403671, 0.00014110903430264443, 0.03359658643603325, -0.042998239398002625, -0.014051931910216808, 0.0018070379737764597, 0.01487752515822649, -0.046940866857767105, -0.00378045835532248, -0.008428632281720638, -0.02220677025616169, -0.01459109503775835, -0.022375257685780525, 0.03733702749013901, -0.010867501609027386, -0.018146200105547905, -0.06800191849470139, 0.05624142661690712, -0.028575630858540535, 0.012830391526222229, -0.006882750894874334, 0.034776005893945694, 0.019831083714962006, 0.005475872661918402, 0.0739327073097229, -0.01454054843634367, -0.007384003605693579, 0.03902191296219826, -0.0023714741691946983, 0.014237268827855587, 0.005488509312272072, 0.009553291834890842, -0.003740442218258977, -0.07905475050210953, 0.00006611194839933887, -0.018584270030260086, 0.015273473225533962, -0.02114529348909855, 0.008487602695822716, -0.028137560933828354, 0.011229751631617546, -0.036326099187135696, -0.02114529348909855, 0.0013689681654796004, 0.0467049814760685, -0.0263347364962101, 0.00024931016378104687, -0.06318314373493195, 0.006924872752279043, -0.004894587676972151, 0.02869357354938984, -0.01681514084339142, 0.03821316733956337, 0.009250013157725334, 0.02225731685757637, 0.04259386658668518, -0.007725192699581385, -0.03315851464867592, 0.014363635331392288, 0.026166247203946114, -0.03548365458846092, -0.012038495391607285, 0.02480149082839489, -0.022611143067479134, 0.030412154272198677, -0.09091633558273315, -0.03524777293205261, -0.038246866315603256, 0.11814405769109726, -0.017724979668855667, 0.017893467098474503, -0.021987734362483025, 0.03388301655650139, -0.035449959337711334, -0.051119379699230194, 0.0002497050736565143, -0.068473681807518, 0.038853421807289124, -0.040976375341415405, -0.010168274864554405, -0.04373958706855774, 0.013344280421733856, -0.01540826354175806, -0.03470860794186592, 0.005193654913455248, -0.012687175534665585, 0.022813327610492706, 0.014936495572328568, -0.006769021041691303, -0.06166675314307213, -0.03666307404637337, 0.012830391526222229, 0.02023545652627945, 0.06763123720884323, -0.014885949902236462, -0.008209597319364548, 0.018179897218942642, 0.013184216804802418, 0.0322992242872715, -0.004062676336616278, -0.03541626036167145, 0.014313088729977608, -0.05974598228931427, -0.05974598228931427, -0.017421700060367584, -0.024009596556425095, -0.0692824274301529, 0.07110210508108139, -0.009932390414178371, 0.008100079372525215, -0.035449959337711334, -0.009536443278193474, -0.033091120421886444, -0.06813670694828033, -0.020639827474951744, -0.07615675032138824, -0.006491015199571848, -0.007788375951349735, 0.04764851927757263, -0.07514582574367523, -0.010766408406198025, -0.005206291098147631, -0.05196182057261467, 0.04272865504026413, 0.019679443910717964, 0.0044059716165065765, 0.0028327112086117268, -0.014978618361055851, 0.009342681616544724, -0.04222319275140762, -0.07716768234968185, -0.028862060979008675, 0.0013710743514820933, -0.0184157807379961, 0.013622286729514599, -0.05169223994016647, -0.02067352645099163, 0.004045827314257622, 0.048962727189064026, -0.025408050045371056, 0.019291920587420464, -0.00949432048946619, -0.012535536661744118, 0.008386509492993355, 0.05725235491991043, -0.01446472853422165, -0.014068780466914177, -0.051321566104888916, -0.07568498700857162, 0.019915327429771423, -0.017236363142728806, -0.029839294031262398, -0.012476565316319466, -0.04080788791179657, 0.013605437241494656, -0.025408050045371056, 0.0005417955107986927, -0.02721087448298931, 0.02298181690275669, -0.059240520000457764, 0.058229587972164154, -0.05769042670726776, -0.03629240021109581, 0.005084137432277203, -0.010429431684315205, 0.06358751654624939, -0.04296454042196274, 0.03976326063275337, -0.014717461541295052, -0.03726963326334953, 0.03534886613488197, 0.011322420090436935, -0.03790988773107529, 0.010892774909734726, -0.012148013338446617, -0.014414181932806969, 0.035112980753183365, -0.012687175534665585, 0.0007529325084760785, -0.008862489834427834, 0.05287165939807892, -0.053377121686935425, -0.02485203742980957, 0.01831468753516674, 0.03524777293205261, -0.028036467730998993, -0.030260514467954636, 0.03255195915699005, -0.026216793805360794, -0.005227352492511272, 0.05071500688791275, 0.004401759244501591, 0.029771899804472923, 0.06048733368515968, -0.025492293760180473, 0.022678537294268608, 0.018533723428845406, -0.04464942216873169, -0.03652828186750412, 0.023470433428883553, -0.02239210717380047, 0.009199466556310654, -0.0274973064661026, -0.03240031749010086, 0.02783428318798542, 0.010159850120544434, -0.06264398247003555, 0.041751421988010406, -0.03582063317298889, -0.013571740128099918, -0.03359658643603325, 0.02230786345899105, 0.0055643292143940926, 0.060689520090818405, -0.048760540783405304, 0.007169181015342474, 0.09152289479970932, -0.01459109503775835, 0.030108876526355743, -0.059004634618759155, 0.00028669353923760355, 0.028676724061369896, -0.050209540873765945, -0.0034856037236750126, -0.022863874211907387, -0.00860133208334446, 0.06961940228939056, 0.01706787385046482, 0.047951795160770416, -0.037134841084480286, -0.03565214201807976, 0.0012668221024796367, 0.01619173400104046, -0.010977018624544144, 0.03652828186750412, -0.054388053715229034, 0.008441268466413021, -0.03561844676733017, -0.03310796990990639, 0.047277841717004776, -0.02923273667693138, 0.018769606947898865, 0.008887763135135174, -0.00822223350405693, -0.0158210601657629, 0.0014289921382442117, -0.0036077576223760843, -0.0028263928834348917, -0.03159157186746597, -0.026621166616678238, 0.05172593519091606, -0.044919006526470184, 0.04724414646625519, -0.039527375251054764, 0.022678537294268608, -0.003416102146729827, 0.09226424247026443, -0.032282374799251556, 0.05711756646633148, -0.03076598048210144, 0.0031149291899055243, 0.07298917323350906, -0.010067181661725044, -0.010387309826910496, -0.03484340012073517, 0.07993089407682419, -0.07036074995994568, -0.04815398156642914, 0.011448786593973637, -0.02106104977428913, -0.036797866225242615, 0.003847853746265173, 0.016798293218016624, 0.04731154069304466, -0.002112423302605748, 0.04589623957872391, 0.021313780918717384, 0.006769021041691303, -0.08020047843456268, 0.00020797786419279873, -0.028289200738072395, 0.0070807249285280704, -0.04646909981966019, -0.02057243324816227, -0.007636736612766981, 0.07063033431768417, 0.010547373443841934, -0.004747160244733095, 0.009224739857017994, -0.023251397535204887, 0.023975897580385208, 0.03299002721905708, 0.01614961214363575, 0.0005728605319745839, 0.01499546691775322, 0.04222319275140762, 0.050007354468107224, 0.05165854096412659, 0.007586190011352301, -0.031035561114549637, -0.023487281054258347, 0.021364327520132065, 0.015484083443880081, 0.044346146285533905, 0.024633003398776054, -0.013091548345983028, 0.0565447062253952 ]
7,481
eth_account.account
Account
The primary entry point for working with Ethereum private keys. It does **not** require a connection to an Ethereum node.
class Account: """ The primary entry point for working with Ethereum private keys. It does **not** require a connection to an Ethereum node. """ _keys = keys _default_kdf = os.getenv("ETH_ACCOUNT_KDF", "scrypt") # Enable unaudited features (off by default) _use_unaudited_hdwallet_features = False @classmethod def enable_unaudited_hdwallet_features(cls): """ Use this flag to enable unaudited HD Wallet features. """ cls._use_unaudited_hdwallet_features = True @combomethod def create(self, extra_entropy=""): r""" Creates a new private key, and returns it as a :class:`~eth_account.local.LocalAccount`. :param extra_entropy: Add extra randomness to whatever randomness your OS can provide :type extra_entropy: str or bytes or int :returns: an object with private key and convenience methods .. code-block:: python >>> from eth_account import Account >>> acct = Account.create('KEYSMASH FJAFJKLDSKF7JKFDJ 1530') >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acct.key HexBytes('0x8676e9a8c86c8921e922e61e0bb6e9e9689aad4c99082620610b00140e5f21b8') # These methods are also available: sign_message(), sign_transaction(), # encrypt(). # They correspond to the same-named methods in Account.* # but without the private key argument """ extra_key_bytes = text_if_str(to_bytes, extra_entropy) key_bytes = keccak(os.urandom(32) + extra_key_bytes) return self.from_key(key_bytes) @staticmethod def decrypt(keyfile_json, password): """ Decrypts a private key. The key may have been encrypted using an Ethereum client or :meth:`~Account.encrypt`. :param keyfile_json: The encrypted key :type keyfile_json: dict or str :param str password: The password that was used to encrypt the key :returns: the raw private key :rtype: ~hexbytes.main.HexBytes .. doctest:: python >>> encrypted = { ... 'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', ... 'crypto': {'cipher': 'aes-128-ctr', ... 'cipherparams': {'iv': '482ef54775b0cc59f25717711286f5c8'}, ... 'ciphertext': 'cb636716a9fd46adbb31832d964df2082536edd5399a3393327dc89b0193a2be', ... 'kdf': 'scrypt', ... 'kdfparams': {}, ... 'kdfparams': {'dklen': 32, ... 'n': 262144, ... 'p': 8, ... 'r': 1, ... 'salt': 'd3c9a9945000fcb6c9df0f854266d573'}, ... 'mac': '4f626ec5e7fea391b2229348a65bfef532c2a4e8372c0a6a814505a350a7689d'}, ... 'id': 'b812f3f9-78cc-462a-9e89-74418aa27cb0', ... 'version': 3} >>> Account.decrypt(encrypted, 'password') HexBytes('0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364') """ # noqa: E501 if isinstance(keyfile_json, str): keyfile = json.loads(keyfile_json) elif is_dict(keyfile_json): keyfile = keyfile_json else: raise TypeError( "The keyfile should be supplied as a JSON string, or a dictionary." ) password_bytes = text_if_str(to_bytes, password) return HexBytes(decode_keyfile_json(keyfile, password_bytes)) @classmethod def encrypt(cls, private_key, password, kdf=None, iterations=None): """ Creates a dictionary with an encrypted version of your private key. To import this keyfile into Ethereum clients like geth and parity: encode this dictionary with :func:`json.dumps` and save it to disk where your client keeps key files. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :param str password: The password which you will need to unlock the account in your client :param str kdf: The key derivation function to use when encrypting your private key :param int iterations: The work factor for the key derivation function :returns: The data to use in your encrypted file :rtype: dict If kdf is not set, the default key derivation function falls back to the environment variable :envvar:`ETH_ACCOUNT_KDF`. If that is not set, then 'scrypt' will be used as the default. .. doctest:: python >>> from pprint import pprint >>> encrypted = Account.encrypt( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364, ... 'password' ... ) >>> pprint(encrypted) {'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', 'crypto': {'cipher': 'aes-128-ctr', 'cipherparams': {'iv': '...'}, 'ciphertext': '...', 'kdf': 'scrypt', 'kdfparams': {'dklen': 32, 'n': 262144, 'p': 1, 'r': 8, 'salt': '...'}, 'mac': '...'}, 'id': '...', 'version': 3} >>> with open('my-keyfile', 'w') as f: # doctest: +SKIP ... f.write(json.dumps(encrypted)) """ if isinstance(private_key, keys.PrivateKey): key_bytes = private_key.to_bytes() else: key_bytes = HexBytes(private_key) if kdf is None: kdf = cls._default_kdf password_bytes = text_if_str(to_bytes, password) assert len(key_bytes) == 32 return create_keyfile_json( key_bytes, password_bytes, kdf=kdf, iterations=iterations ) @combomethod def from_key(self, private_key): r""" Returns a convenient object for working with the given private key. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :return: object with methods for signing and encrypting :rtype: LocalAccount .. doctest:: python >>> acct = Account.from_key( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364) >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acct.key HexBytes('0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364') # These methods are also available: sign_message(), sign_transaction(), # encrypt(). They correspond to the same-named methods in Account.* # but without the private key argument """ key = self._parsePrivateKey(private_key) return LocalAccount(key, self) @combomethod def from_mnemonic( self, mnemonic: str, passphrase: str = "", account_path: str = ETHEREUM_DEFAULT_PATH, ) -> LocalAccount: """ Generate an account from a mnemonic. .. CAUTION:: This feature is experimental, unaudited, and likely to change soon :param str mnemonic: space-separated list of BIP39 mnemonic seed words :param str passphrase: Optional passphrase used to encrypt the mnemonic :param str account_path: Specify an alternate HD path for deriving the seed using BIP32 HD wallet key derivation. :return: object with methods for signing and encrypting :rtype: LocalAccount .. doctest:: python >>> from eth_account import Account >>> Account.enable_unaudited_hdwallet_features() >>> acct = Account.from_mnemonic( ... "coral allow abandon recipe top tray caught video climb similar " ... "prepar
()
[ 0.044432129710912704, -0.07242868095636368, -0.046330198645591736, 0.04117520898580551, 0.045639991760253906, -0.07385223358869553, -0.034575097262859344, -0.015411046333611012, 0.004893465433269739, -0.04425957798957825, 0.04473409429192543, 0.009188391268253326, 0.013545328751206398, 0.033151544630527496, -0.05241265520453453, 0.03349664807319641, 0.029204418882727623, 0.012510016560554504, -0.00774866109713912, -0.024114135652780533, 0.02803969196975231, 0.021709192544221878, 0.029355401173233986, 0.08304062485694885, -0.0403987281024456, 0.01705029048025608, 0.038047704845666885, 0.039622243493795395, 0.05111851543188095, -0.026529863476753235, -0.0028255381621420383, -0.00919378362596035, 0.0270690880715847, 0.05258520692586899, -0.045036058872938156, -0.07872682809829712, 0.04136933013796806, 0.02129938267171383, -0.05323227867484093, -0.019908182322978973, 0.024502377957105637, 0.05733038857579231, 0.10154682397842407, -0.051506757736206055, 0.014030630700290203, 0.013890432193875313, 0.012380602769553661, 0.018074817955493927, -0.02141801081597805, -0.005688822362571955, 0.04024774208664894, 0.005510878283530474, -0.016791462898254395, -0.014537502080202103, 0.006044710520654917, 0.006637858226895332, 0.014440441504120827, -0.03940655291080475, -0.029592661187052727, -0.014753191731870174, -0.04494978487491608, -0.010649691335856915, 0.031210334971547127, 0.02125624381005764, -0.029355401173233986, 0.003798839170485735, -0.061083391308784485, -0.016866954043507576, 0.008099157363176346, 0.0375731885433197, 0.043914470821619034, -0.007252574432641268, -0.0165649875998497, 0.028967158868908882, -0.029355401173233986, 0.001938513363711536, -0.01420318242162466, -0.009123684838414192, -0.06841684877872467, -0.037443775683641434, 0.02683182992041111, -0.033324096351861954, -0.03345350921154022, 0.0009800412226468325, 0.026723984628915787, 0.058495111763477325, 0.04792630672454834, -0.023294514045119286, -0.0021016288083046675, -0.005537839140743017, -0.05763235315680504, 0.03043385036289692, -0.07626796513795853, 0.06608740240335464, 0.048961617052555084, -0.05802059546113014, 0.002578842919319868, -0.052196964621543884, -0.03140445426106453, 0.05034203454852104, 0.004332671873271465, 0.041239917278289795, -0.03511432185769081, 0.03256918117403984, 0.013038457371294498, -0.045812543481588364, -0.07928762584924698, 0.037724170833826065, 0.04367721453309059, -0.005405729170888662, -0.07277378439903259, -0.009107507765293121, 0.030563265085220337, -0.043137989938259125, 0.001739000203087926, 0.0359555147588253, -0.0030466204043477774, 0.027025949209928513, 0.0177836362272501, -0.012143343687057495, 0.09757813066244125, -0.02028563991189003, -0.009209960699081421, -0.013814941048622131, 0.021709192544221878, -0.018085602670907974, 0.035416290163993835, 0.010709005407989025, 0.003270398825407028, -0.03552413359284401, 0.033194683492183685, 0.04973810166120529, -0.003275790950283408, 0.04070069268345833, 0.015691444277763367, 0.003844673279672861, 0.008061411790549755, 0.03755161911249161, -0.022561168298125267, 0.08006411045789719, 0.051981277763843536, 0.010541846044361591, 0.01588556356728077, -0.009280059486627579, -0.06845998764038086, -0.017718929797410965, -0.04818513244390488, -0.05629507452249527, 0.008589851669967175, -0.013739448972046375, 0.0020652313251048326, 0.0016041939379647374, -0.07324830442667007, 0.08278179913759232, -0.0004600262036547065, 0.022000374272465706, -0.018247369676828384, -0.019617000594735146, -0.02812596783041954, -0.03358292579650879, -0.062377531081438065, 0.0001649691112106666, 0.04473409429192543, -0.04287916049361229, 0.001635199412703514, 0.018570903688669205, -0.07846800237894058, -0.026637708768248558, -0.01733068749308586, -0.014796330593526363, -0.01907777599990368, -0.01026144903153181, -0.03099464438855648, 0.02812596783041954, 0.023121962323784828, 0.021385658532381058, 0.01012125052511692, -0.07018550485372543, -0.052714623510837555, -0.061083391308784485, 0.011711964383721352, -0.017772851511836052, 0.004966260865330696, 0.023057255893945694, 0.051420483738183975, 0.02803969196975231, 0.025063171982765198, 0.07333458214998245, 0.05767549201846123, -0.05073027312755585, -0.019131697714328766, 0.015810072422027588, 0.01535712368786335, 0.012563939206302166, -0.04598509520292282, 0.002162291668355465, 0.009048192761838436, 0.0022755288518965244, -0.05815000832080841, 0.03300056234002113, -0.038047704845666885, 0.0024723459500819445, 0.02294941060245037, -0.04009675979614258, -0.00239011412486434, -0.018818948417901993, -0.042253658175468445, -0.014462010934948921, 0.02530043013393879, -0.04115363955497742, 0.01927189715206623, -0.0646638423204422, -0.0010278973495587707, 0.06561288237571716, 0.024955326691269875, -0.010520276613533497, 0.04784002900123596, 0.017201272770762444, -0.0010764276375994086, 0.02113761380314827, 0.0642756000161171, 0.007435910869389772, 0.0021744242403656244, -0.04292229935526848, 0.01681303046643734, -0.006821194663643837, -0.013642389327287674, 0.018236584961414337, -0.026573000475764275, -0.030369143933057785, 0.08416221290826797, -0.012682568281888962, -0.05426758900284767, 0.006476090755313635, -0.007365811616182327, -0.02461022324860096, 0.02836322784423828, -0.0585813894867897, 0.03371233865618706, -0.011108032427728176, -0.003944430034607649, 0.03349664807319641, 0.06552660465240479, -0.013674742542207241, -0.012855120934545994, -0.005101067014038563, -0.0021703799720853567, 0.02113761380314827, 0.00801827386021614, -0.0023725894279778004, -0.011528627946972847, -0.018419921398162842, 0.016133608296513557, 0.03602021932601929, -0.006066279485821724, -0.05167930945754051, 0.00451600831001997, -0.005443474743515253, 0.03604178875684738, 0.043224263936281204, -0.015982624143362045, -0.06440501660108566, -0.05370679497718811, -0.010283018462359905, 0.06470698118209839, -0.018365997821092606, 0.0033620670437812805, 0.01923954300582409, 0.02372589334845543, -0.010897734202444553, 0.047581203281879425, 0.0343594066798687, -0.0432458333671093, 0.023661186918616295, -0.012013929896056652, -0.0010063283843919635, 0.04167129844427109, -0.006956000812351704, 0.0028444111812859774, 0.008956524543464184, 0.002779704052954912, -0.04387133568525314, 0.0053787678480148315, -0.004076540004462004, 0.01984347403049469, -0.013415914960205555, -0.015777720138430595, -0.060479458421468735, 0.047667477279901505, -0.013793371617794037, 0.02153664082288742, 0.06000494211912155, 0.01895914599299431, -0.035502564162015915, 0.08843287825584412, -0.011765886098146439, -0.07398165017366409, -0.050902824848890305, 0.03875948116183281, -0.02424355037510395, 0.0034105973318219185, 0.050126343965530396, 0.06673447042703629, 0.010202134028077126, -0.014807114377617836, 0.020911140367388725, 0.0371849462389946, 0.017557160928845406, -0.025063171982765198, 0.057200971990823746, -0.049522411078214645, -0.01976798288524151, 0.08023665845394135, -0.005672645289450884, 0.006130986846983433, -0.05258520692586899, 0.05258520692586899, 0.009382512420415878, 0.02452394738793373, 0.03686141222715378, -0.013804156333208084, 0.04784002900123596, -0.048228271305561066, 0.013836509548127651, 0.02258273772895336, -0.038651637732982635, 0.0075545404106378555, 0.03451039269566536, 0.019164051860570908, 0.010735967196524143, -0.0864916667342186, 0.009727616794407368, 0.006724134087562561, 0.012736490927636623, -0.051377344876527786, 0.03630061820149422, 0.01034772489219904, -0.024761205539107323, -0.016877738758921623, -0.04434585198760033, 0.0719541683793068, -0.06906391680240631, -0.00589912012219429, -0.03774574026465416, -0.030692679807543755, -0.031124059110879898, 0.04719296097755432, 0.002657030476257205, -0.02372589334845543, 0.06682074815034866, 0.0033054484520107508, 0.0009571241098456085, 0.054569557309150696, 0.09550751000642776, 0.05379307270050049, -0.070314921438694, -0.03860849887132645, -0.034208424389362335, 0.008552106097340584, -0.011787455528974533, 0.01036390196532011, -0.004095412790775299, -0.03358292579650879, -0.02307882346212864, -0.03955753520131111, -0.04745178669691086, 0.006249615922570229, -0.07324830442667007, 0.05370679497718811, -0.012261973693966866, 0.002557273954153061, -0.06160104647278786, -0.05452641844749451, -0.00009259501530323178, 0.038047704845666885, -0.04266346991062164, -0.01725519634783268, 0.028578918427228928, -0.025365136563777924, 0.05034203454852104, 0.019660137593746185, -0.0063844225369393826, 0.048918478190898895, 0.07609540969133377, 0.03336723521351814, 0.03241819888353348, 0.04589882120490074, -0.05823628604412079, 0.05702842026948929, -0.004259876441210508, -0.008088372647762299, 0.029031867161393166, 0.0525420717895031, 0.05564800649881363, -0.012067852541804314, 0.03951439633965492, -0.02780243381857872, -0.030175022780895233, -0.026637708768248558, -0.016511065885424614, 0.02230234071612358, -0.018840515986084938, 0.05034203454852104, 0.0021986893843859434, -0.01012125052511692, 0.025084739550948143, 0.04085167497396469, -0.042814452201128006, -0.02024250105023384, 0.0297005046159029, -0.05258520692586899, 0.054569557309150696, -0.028622055426239967, 0.001095974468626082, -0.013987492769956589, 0.008503575809299946, -0.025386705994606018, -0.004871896468102932, 0.019821906462311745, 0.0747581347823143, 0.008810934610664845, -0.043914470821619034, -0.029959334060549736, 0.0029846096877008677, 0.006077064201235771, 0.03224564716219902, -0.013717880472540855, 0.024480808526277542, -0.019045421853661537, -0.011442351154983044, 0.02497689612209797, 0.018333645537495613, 0.00012806590530090034, -0.03826339542865753, -0.028708331286907196, -0.005004006903618574, 0.015324770472943783, -0.05323227867484093, 0.006729526445269585, 0.026659276336431503, -0.042167384177446365, -0.014386518858373165, 0.040269311517477036, 0.024308256804943085, -0.024825911968946457, 0.0007555888150818646, -0.05314600095152855, 0.04978124052286148, 0.06203242763876915, 0.02271215058863163, 0.005748136900365353, -0.010967833921313286, -0.006675603799521923, -0.002557273954153061, -0.04236150532960892, -0.039061449468135834, 0.04589882120490074, 0.032267216593027115, -0.01600419357419014, 0.023812169209122658, 0.01117273885756731, 0.02590436302125454, 0.0650520846247673, 0.004739786498248577, 0.015508106909692287, 0.03649473935365677, 0.032633889466524124, 0.00048496536328457296, 0.018516981974244118, 0.025106308981776237, 0.0031113275326788425, 0.02614162117242813, -0.026659276336431503, 0.032224077731370926, 0.06414619088172913, -0.002453473163768649, 0.07449930906295776, -0.04029088094830513, -0.12708450853824615, -0.08455045521259308, -0.013728665187954903, -0.07859741896390915, 0.012013929896056652, -0.006109417881816626, 0.030369143933057785, -0.05431072786450386, 0.03006717748939991, 0.03155544027686119, 0.00838494673371315, -0.011765886098146439, -0.07087571918964386, 0.028427934274077415, -0.014127691276371479, 0.013965924270451069, -0.034445684403181076, -0.03030443750321865, -0.0056564686819911, 0.011021756567060947, -0.060436323285102844, -0.06785605847835541, -0.038932036608457565, 0.047063544392585754, 0.041239917278289795, -0.019778767600655556, 0.0027662236243486404, 0.03953596577048302, -0.08946818858385086, 0.016500281170010567, 0.009005054831504822, -0.0048206704668700695, -0.005141509231179953, 0.006821194663643837, 0.011097247712314129, -0.06009121984243393, -0.007252574432641268, 0.03256918117403984, -0.01604733243584633, 0.0020504025742411613, 0.015098296105861664, -0.04917730763554573, -0.020673880353569984, 0.044992923736572266, 0.04469095543026924, 0.013070810586214066, 0.020760156214237213, 0.06138535961508751, 0.0014788241824135184, -0.016791462898254395, 0.018042463809251785, -0.0035642762668430805, -0.03405744209885597, 0.05370679497718811, 0.027349485084414482, -0.05582055822014809, -0.031986817717552185, -0.01167961023747921, -0.04939299821853638, -0.007883467711508274, -0.023467065766453743, -0.024545514956116676, -0.0016041939379647374, 0.011776670813560486, -0.05387934669852257, -0.07536206394433975, -0.040635984390974045, 0.0031706420704722404, -0.01625223644077778, 0.0022944018710404634, -0.04011832922697067, -0.011852161958813667, 0.032828010618686676, -0.000274162128334865, 0.048357684165239334, -0.04594195634126663, 0.08455045521259308, -0.04456154257059097, 0.002460213378071785, -0.005661861039698124, -0.015831641852855682, 0.022561168298125267, 0.013135517947375774, 0.02400629036128521, -0.09628398716449738, -0.028427934274077415, 0.04865965247154236, -0.014354165643453598, -0.017276763916015625, 0.025731809437274933, 0.0008304062648676336, 0.013944354839622974, -0.04991065338253975, 0.07329144328832626, 0.04913416877388954, 0.053491104394197464, -0.06845998764038086, 0.012272757478058338, -0.022927841171622276, 0.027586743235588074, -0.0062172627076506615, -0.06569916009902954, 0.03451039269566536, -0.0035427073016762733, 0.006519228685647249, -0.03640846163034439, -0.0036667289678007364, 0.06988354027271271, 0.018926791846752167, 0.011550196446478367, -0.023898445069789886, -0.015227709896862507, -0.046934131532907486, -0.01668361760675907, -0.03688298165798187, -0.0038311926182359457, 0.031900543719530106, 0.009894776158034801, -0.020792510360479355, 0.033194683492183685, 0.0448635071516037, -0.018042463809251785, -0.03123190440237522, -0.027608312666416168, 0.02355334162712097, 0.01584242656826973, 0.056510765105485916, 0.017729712650179863, -0.04585568234324455, -0.0383928082883358, 0.02530043013393879, -0.0022741807624697685, -0.006686388049274683, -0.002901029773056507, -0.009102115407586098, -0.05646762624382973, 0.0319221131503582, -0.01390121690928936, 0.014505148865282536, -0.017880696803331375, 0.023790601640939713, 0.026573000475764275, -0.05905590578913689, 0.06690701842308044, -0.041886985301971436, 0.04533802717924118, -0.08023665845394135, -0.020091518759727478, -0.013631604611873627, 0.01246687863022089, -0.020177794620394707, -0.0016271109925583005, -0.002404942875728011, 0.0626363605260849, -0.014925744384527206, 0.026357311755418777, 0.026616139337420464, -0.03511432185769081, 0.021870959550142288, -0.03442411497235298, -0.031620144844055176, 0.025882793590426445, -0.06336970627307892, 0.015745365992188454, -0.05556172877550125, 0.016187530010938644, -0.07307575643062592, -0.01619831472635269, 0.005411121528595686, -0.05996180325746536, 0.0018454970559105277, -0.04387133568525314, -0.05564800649881363, 0.014257105067372322, -0.029765212908387184, -0.009776147082448006, -0.014332597143948078, -0.007581501733511686, -0.00615255581215024, 0.022733720019459724, 0.0010609249584376812, 0.022129788994789124, 0.0019951320718973875, 0.00939868949353695, -0.009258490987122059, 0.019412094727158546, -0.01688852347433567, -0.006902078166604042, -0.00995948351919651, -0.014817899093031883, 0.04986751452088356, -0.002777008106932044, 0.034941770136356354, -0.011528627946972847, -0.019994458183646202, -0.020296424627304077, -0.03377704694867134, 0.024308256804943085, 0.02534356899559498, 0.006492267362773418, 0.03576139360666275, -0.00939868949353695, 0.02340235933661461, 0.031188765540719032, 0.008503575809299946, -0.015001235529780388, 0.01972484588623047, 0.030476989224553108, 0.034531958401203156, 0.027392622083425522, -0.0363653227686882, -0.11103717982769012, -0.012175696901977062, -0.07428361475467682, -0.0007016663439571857, 0.026659276336431503, -0.009096723049879074, -0.03858692944049835, -0.0016958621563389897, -0.007252574432641268, -0.04134776070713997, -0.011733532883226871, -0.000795356638263911, -0.017104212194681168, 0.02840636484324932, 0.03502804785966873, -0.003523834515362978, -0.022604305297136307, -0.01032615639269352, -0.07182475179433823, 0.03576139360666275, -0.020102303475141525, 0.05064399912953377, 0.031533870846033096, 0.05672645568847656, -0.05318913981318474, 0.020145440474152565, 0.07229927182197571, -0.021644486114382744, -0.01762186922132969, -0.020501328632235527, 0.02965736761689186, 0.003496873192489147, -0.002949560061097145, 0.038004569709300995, -0.028341658413410187, -0.011248230934143066, -0.012488448061048985, -0.0290965735912323, 0.005459651816636324, -0.00372873991727829, 0.08912308514118195, 0.020619958639144897, -0.01749245449900627, -0.03942812234163284, 0.06138535961508751, 0.018635611981153488, -0.05444014072418213, 0.0028255381621420383, -0.03168485313653946, -0.01359925139695406, 0.09015839546918869, -0.04199483245611191, 0.03750848025083542, -0.007392772939056158, 0.010051151737570763, 0.011000187136232853, 0.04909102991223335, -0.011981576681137085, 0.02150428667664528, 0.02627103589475155, 0.019498370587825775, 0.04037715867161751, 0.024178842082619667, -0.0026893839240074158, 0.013157086446881294, 0.03330252692103386, 0.008077587932348251, -0.0375731885433197, 0.04844396188855171, 0.002113761380314827, -0.009161430411040783, -0.02929069474339485, -0.00836876966059208, 0.019573861733078957, -0.030886799097061157, 0.03770260140299797, -0.02040426805615425, -0.03308683633804321, -0.004241003654897213 ]
7,482
eth_account.account
_parsePrivateKey
Generate a :class:`eth_keys.datatypes.PrivateKey` from the provided key. If the key is already of type :class:`eth_keys.datatypes.PrivateKey`, return the key. :param key: the private key from which a :class:`eth_keys.datatypes.PrivateKey` will be generated :type key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :returns: the provided key represented as a :class:`eth_keys.datatypes.PrivateKey`
from collections.abc import ( Mapping, ) import json import os from typing import ( Any, Dict, Optional, Tuple, TypeVar, Union, cast, ) import warnings from eth_keyfile import ( create_keyfile_json, decode_keyfile_json, ) from eth_keys import ( KeyAPI, keys, ) from eth_keys.exceptions import ( ValidationError, ) from eth_typing import ( ChecksumAddress, Hash32, HexStr, ) from eth_utils.curried import ( combomethod, hexstr_if_str, is_dict, keccak, text_if_str, to_bytes, to_int, ) from eth_utils.toolz import ( dissoc, ) from hexbytes import ( HexBytes, ) from eth_account._utils.legacy_transactions import ( Transaction, vrs_from, ) from eth_account._utils.signing import ( hash_of_signed_transaction, sign_message_hash, sign_transaction_dict, to_standard_signature_bytes, to_standard_v, ) from eth_account.datastructures import ( SignedMessage, SignedTransaction, ) from eth_account.hdaccount import ( ETHEREUM_DEFAULT_PATH, generate_mnemonic, key_from_seed, seed_from_mnemonic, ) from eth_account.messages import ( SignableMessage, _hash_eip191_message, encode_typed_data, ) from eth_account.signers.local import ( LocalAccount, ) from eth_account.typed_transactions import ( TypedTransaction, ) VRS = TypeVar("VRS", bytes, HexStr, int) class Account: """ The primary entry point for working with Ethereum private keys. It does **not** require a connection to an Ethereum node. """ _keys = keys _default_kdf = os.getenv("ETH_ACCOUNT_KDF", "scrypt") # Enable unaudited features (off by default) _use_unaudited_hdwallet_features = False @classmethod def enable_unaudited_hdwallet_features(cls): """ Use this flag to enable unaudited HD Wallet features. """ cls._use_unaudited_hdwallet_features = True @combomethod def create(self, extra_entropy=""): r""" Creates a new private key, and returns it as a :class:`~eth_account.local.LocalAccount`. :param extra_entropy: Add extra randomness to whatever randomness your OS can provide :type extra_entropy: str or bytes or int :returns: an object with private key and convenience methods .. code-block:: python >>> from eth_account import Account >>> acct = Account.create('KEYSMASH FJAFJKLDSKF7JKFDJ 1530') >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acct.key HexBytes('0x8676e9a8c86c8921e922e61e0bb6e9e9689aad4c99082620610b00140e5f21b8') # These methods are also available: sign_message(), sign_transaction(), # encrypt(). # They correspond to the same-named methods in Account.* # but without the private key argument """ extra_key_bytes = text_if_str(to_bytes, extra_entropy) key_bytes = keccak(os.urandom(32) + extra_key_bytes) return self.from_key(key_bytes) @staticmethod def decrypt(keyfile_json, password): """ Decrypts a private key. The key may have been encrypted using an Ethereum client or :meth:`~Account.encrypt`. :param keyfile_json: The encrypted key :type keyfile_json: dict or str :param str password: The password that was used to encrypt the key :returns: the raw private key :rtype: ~hexbytes.main.HexBytes .. doctest:: python >>> encrypted = { ... 'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', ... 'crypto': {'cipher': 'aes-128-ctr', ... 'cipherparams': {'iv': '482ef54775b0cc59f25717711286f5c8'}, ... 'ciphertext': 'cb636716a9fd46adbb31832d964df2082536edd5399a3393327dc89b0193a2be', ... 'kdf': 'scrypt', ... 'kdfparams': {}, ... 'kdfparams': {'dklen': 32, ... 'n': 262144, ... 'p': 8, ... 'r': 1, ... 'salt': 'd3c9a9945000fcb6c9df0f854266d573'}, ... 'mac': '4f626ec5e7fea391b2229348a65bfef532c2a4e8372c0a6a814505a350a7689d'}, ... 'id': 'b812f3f9-78cc-462a-9e89-74418aa27cb0', ... 'version': 3} >>> Account.decrypt(encrypted, 'password') HexBytes('0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364') """ # noqa: E501 if isinstance(keyfile_json, str): keyfile = json.loads(keyfile_json) elif is_dict(keyfile_json): keyfile = keyfile_json else: raise TypeError( "The keyfile should be supplied as a JSON string, or a dictionary." ) password_bytes = text_if_str(to_bytes, password) return HexBytes(decode_keyfile_json(keyfile, password_bytes)) @classmethod def encrypt(cls, private_key, password, kdf=None, iterations=None): """ Creates a dictionary with an encrypted version of your private key. To import this keyfile into Ethereum clients like geth and parity: encode this dictionary with :func:`json.dumps` and save it to disk where your client keeps key files. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :param str password: The password which you will need to unlock the account in your client :param str kdf: The key derivation function to use when encrypting your private key :param int iterations: The work factor for the key derivation function :returns: The data to use in your encrypted file :rtype: dict If kdf is not set, the default key derivation function falls back to the environment variable :envvar:`ETH_ACCOUNT_KDF`. If that is not set, then 'scrypt' will be used as the default. .. doctest:: python >>> from pprint import pprint >>> encrypted = Account.encrypt( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364, ... 'password' ... ) >>> pprint(encrypted) {'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', 'crypto': {'cipher': 'aes-128-ctr', 'cipherparams': {'iv': '...'}, 'ciphertext': '...', 'kdf': 'scrypt', 'kdfparams': {'dklen': 32, 'n': 262144, 'p': 1, 'r': 8, 'salt': '...'}, 'mac': '...'}, 'id': '...', 'version': 3} >>> with open('my-keyfile', 'w') as f: # doctest: +SKIP ... f.write(json.dumps(encrypted)) """ if isinstance(private_key, keys.PrivateKey): key_bytes = private_key.to_bytes() else: key_bytes = HexBytes(private_key) if kdf is None: kdf = cls._default_kdf password_bytes = text_if_str(to_bytes, password) assert len(key_bytes) == 32 return create_keyfile_json( key_bytes, password_bytes, kdf=kdf, iterations=iterations ) @combomethod def from_key(self, private_key): r""" Returns a convenient object for working with the given private key. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :return: object with methods for signing and encrypting :rtype: LocalAccount .. doctest:: python >>> acct = Account.from_key( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364) >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acc
(self, key)
[ 0.04513120651245117, -0.057246968150138855, -0.039679113775491714, 0.04402780905365944, 0.03857571631669998, -0.06023263558745384, -0.029034554958343506, -0.011347707360982895, 0.000809971010312438, -0.05010732263326645, 0.04346529021859169, 0.026806119829416275, 0.012245572172105312, 0.018649617210030556, -0.04746781662106514, 0.05690080299973488, 0.024967120960354805, 0.016680805012583733, 0.0012676925398409367, -0.020488616079092026, 0.020813144743442535, 0.019190499559044838, 0.01830345205962658, 0.07446865737438202, -0.0403498075902462, 0.003940326627343893, 0.04435233771800995, 0.039354585111141205, 0.04556391388177872, -0.017459675669670105, -0.011856136843562126, -0.02572435513138771, 0.02667630836367607, 0.056208472698926926, -0.048289958387613297, -0.07520425319671631, 0.02356082759797573, 0.017016151919960976, -0.06875693798065186, -0.002193277236074209, 0.029856694862246513, 0.06507894396781921, 0.07697834819555283, -0.04625624045729637, 0.02356082759797573, -0.004654291085898876, -0.0001423196226824075, 0.019590752199292183, -0.010341666638851166, 0.0003924776101484895, 0.03355632722377777, -0.00686920341104269, -0.01139097847044468, -0.019839556887745857, 0.007534488569945097, -0.0008065905421972275, 0.003924100194126368, -0.03517897427082062, -0.026633037254214287, -0.025075295940041542, -0.03563331812620163, -0.005917250644415617, 0.022500697523355484, 0.03636891767382622, -0.02819077856838703, 0.012537647970020771, -0.0357198566198349, -0.024036802351474762, -0.007026059087365866, 0.020001821219921112, 0.03528715297579765, -0.0034210796002298594, -0.023041579872369766, 0.028255684301257133, -0.018000558018684387, 0.007031468208879232, -0.01162896677851677, -0.016875524073839188, -0.08152175694704056, -0.04794379323720932, 0.05127562955021858, -0.0345948226749897, -0.026481591165065765, 0.019277039915323257, 0.039224773645401, 0.06841077655553818, 0.06386736780405045, -0.0019890940748155117, -0.010693239979445934, -0.015945205464959145, -0.05750659108161926, 0.026806119829416275, -0.08541610836982727, 0.05330934375524521, 0.049977511167526245, -0.047987066209316254, -0.004183723591268063, -0.06399717926979065, -0.03130625933408737, 0.039830561727285385, 0.027065742760896683, 0.0496746189892292, -0.040241632610559464, 0.02091050334274769, 0.013608595356345177, -0.02892637811601162, -0.07771395146846771, 0.04824668914079666, 0.04331384226679802, -0.01685388758778572, -0.07321380823850632, -0.017373135313391685, 0.012602554634213448, -0.05071311071515083, 0.0008451283792965114, 0.03747231513261795, 0.01607501693069935, 0.02340937964618206, 0.010547202080488205, -0.0017443449469283223, 0.12176339328289032, -0.022976674139499664, 0.00019809808873105794, -0.021592015400528908, 0.0059010242111980915, -0.022717051208019257, 0.028710024431347847, 0.010195628739893436, 0.02293340303003788, -0.05452091991901398, 0.016518540680408478, 0.04660240560770035, 0.006225553806871176, 0.0540449433028698, -0.011077266186475754, 0.002891015028581023, 0.008389081805944443, 0.027844613417983055, -0.02228434570133686, 0.05041021853685379, 0.04117194935679436, 0.01602092944085598, 0.023106485605239868, -0.01717841811478138, -0.07896879315376282, -0.03729923442006111, -0.04915536940097809, -0.052227579057216644, 0.001828181673772633, -0.01833590492606163, -0.007161279674619436, 0.004778693895787001, -0.07581004500389099, 0.08442088961601257, 0.013814129866659641, 0.027606625109910965, -0.002525919582694769, -0.03282072767615318, -0.045910079032182693, -0.02643832005560398, -0.062352895736694336, -0.0007322191959246993, 0.03818628191947937, -0.04993424192070961, 0.005690080113708973, 0.005449387710541487, -0.061487484723329544, -0.025118567049503326, -0.030159588903188705, -0.0008011817117221653, -0.025291649624705315, 0.010877139866352081, -0.029510529711842537, 0.027195554226636887, 0.04880920425057411, 0.007339770905673504, 0.015447594225406647, -0.06179037690162659, -0.059021059423685074, -0.0599297434091568, 0.012494377791881561, -0.006912474054843187, 0.017676029354333878, 0.02388535626232624, 0.04417925328016281, 0.03485444560647011, 0.01797892339527607, 0.07793030142784119, 0.05560268461704254, -0.06611743569374084, -0.020986227318644524, 0.019039051607251167, 0.016096653416752815, 0.012526830658316612, -0.03890024498105049, 0.017492128536105156, 0.014344194903969765, -0.0002100989077007398, -0.048852477222681046, 0.02180836908519268, -0.043595101684331894, -0.00022953686129767448, 0.02228434570133686, -0.03736414015293121, -0.03197695314884186, -0.032799094915390015, -0.04242679476737976, -0.007437129504978657, 0.026827754452824593, -0.04768417030572891, 0.02091050334274769, -0.05339588597416878, 0.010476887226104736, 0.05971338972449303, 0.013532871380448341, -0.010038772597908974, 0.02819077856838703, 0.020337168127298355, -0.004167497158050537, 0.002815291518345475, 0.08108904957771301, 0.01590193621814251, -0.004294604528695345, -0.04915536940097809, 0.03219330683350563, -0.002891015028581023, -0.021235033869743347, 0.02014245092868805, -0.01833590492606163, -0.03154424577951431, 0.09839728474617004, 0.008259270340204239, -0.05897779017686844, 0.016507724300026894, 0.013727589510381222, -0.039679113775491714, 0.01774093508720398, -0.061011508107185364, 0.037104517221450806, -0.013868218287825584, -0.006068697664886713, 0.012397019192576408, 0.05512670800089836, -0.02420988492667675, 0.005427752621471882, -0.007042285520583391, -0.00002051549199677538, 0.015620676800608635, -0.0047976248897612095, 0.0021689373534172773, -0.00894619058817625, -0.0334697887301445, 0.01913641020655632, 0.04539082944393158, 0.009725061245262623, -0.03595784679055214, 0.01833590492606163, -0.03005141206085682, 0.05625174567103386, 0.033772680908441544, -0.003891647094860673, -0.05975665897130966, -0.05889124795794487, -0.010996134020388126, 0.05075637996196747, -0.028904741629958153, -0.010006319731473923, 0.02340937964618206, 0.018476534634828568, -0.016929611563682556, 0.07671872526407242, 0.02845040149986744, -0.039203137159347534, 0.014095389284193516, -0.014571364969015121, 0.0026584358420222998, 0.039679113775491714, 0.005765803623944521, 0.02563781477510929, 0.010006319731473923, 0.01100695226341486, -0.048376500606536865, 0.004018754232674837, -0.009076002985239029, 0.031133176758885384, 0.0030803238041698933, -0.019212134182453156, -0.07377632707357407, 0.03284236416220665, -0.02572435513138771, 0.013868218287825584, 0.04073924571275711, 0.015133882872760296, -0.0334048829972744, 0.05897779017686844, -0.017578670755028725, -0.06875693798065186, -0.059021059423685074, 0.04080415144562721, -0.01502570603042841, 0.009362669661641121, 0.06269905716180801, 0.09606067091226578, 0.01583702862262726, -0.009860281832516193, 0.03654199838638306, 0.04331384226679802, 0.024253156036138535, -0.0369747057557106, 0.041734468191862106, -0.057246968150138855, -0.008372855372726917, 0.061574023216962814, -0.008161911740899086, 0.007896879687905312, -0.04218880832195282, 0.051881417632102966, 0.014711994677782059, 0.025681084021925926, 0.035590045154094696, 0.005449387710541487, 0.036650173366069794, -0.031284622848033905, -0.0011277393205091357, 0.025854166597127914, -0.06031917780637741, 0.01219148375093937, 0.012829724699258804, 0.025356555357575417, 0.016118288040161133, -0.055169980973005295, -0.0077346148900687695, 0.019558299332857132, 0.013608595356345177, -0.05456419289112091, 0.04495812579989433, 0.0019498801557347178, -0.020164087414741516, -0.018736157566308975, -0.033513057976961136, 0.06823769211769104, -0.060448989272117615, 0.021992268040776253, -0.028169142082333565, -0.036325644701719284, -0.029056189581751823, 0.03948439657688141, -0.025075295940041542, -0.02723882533609867, 0.06646359711885452, -0.010503931902348995, 0.022089626640081406, 0.05244393274188042, 0.0932048112154007, 0.037991560995578766, -0.06910310685634613, -0.026481591165065765, -0.02795279026031494, 0.005787439178675413, 0.004094477742910385, 0.002164880745112896, 0.012970354408025742, -0.03370777517557144, -0.03773193806409836, -0.03883533924818039, -0.04738127812743187, 0.007047694642096758, -0.06503567099571228, 0.054694004356861115, 0.006766435690224171, -0.003099254798144102, -0.0588047094643116, -0.05638155713677406, 0.0005276981391943991, 0.03574149310588837, -0.041583020240068436, -0.02301994524896145, 0.024166613817214966, -0.034075576812028885, 0.05049675703048706, 0.012202301062643528, 0.0029451034497469664, 0.03182550519704819, 0.06001628562808037, 0.054131485521793365, 0.03675835207104683, 0.034551553428173065, -0.058674897998571396, 0.0530497208237648, 0.005343915894627571, -0.007328953128308058, 0.01928785815834999, 0.07053103297948837, 0.04149647802114487, 0.0005929420585744083, 0.044611960649490356, -0.030722105875611305, -0.03721269220113754, -0.04290277138352394, -0.024815673008561134, 0.01976383477449417, -0.0060092005878686905, 0.038143008947372437, 0.007675117813050747, -0.0027855432126671076, 0.009086820296943188, 0.029186001047492027, -0.05499689653515816, -0.026243602856993675, 0.029207635670900345, -0.019536662846803665, 0.04625624045729637, -0.02875329554080963, 0.0024569572415202856, -0.016399547457695007, 0.022414157167077065, -0.029056189581751823, -0.009860281832516193, 0.002809882862493396, 0.06927618384361267, 0.016085835173726082, -0.03355632722377777, -0.03755885735154152, 0.008091596886515617, -0.003929508849978447, 0.03868389129638672, -0.03595784679055214, 0.026546496897935867, -0.020391257479786873, -0.0065284473821520805, 0.02563781477510929, 0.008929964154958725, 0.009211222641170025, -0.03076537698507309, -0.042946044355630875, -0.00044217114918865263, 0.012732366099953651, -0.04539082944393158, 0.009438393637537956, 0.0495448037981987, -0.028472036123275757, -0.001454973011277616, 0.04337874799966812, 0.02459932118654251, -0.02436133287847042, 0.021494656801223755, -0.0540449433028698, 0.06001628562808037, 0.03468136489391327, 0.01990446262061596, 0.002823404734954238, -0.02845040149986744, 0.010547202080488205, -0.010006319731473923, -0.05962684750556946, -0.03708288073539734, 0.04777071252465248, 0.04707838222384453, -0.03204185888171196, 0.010406572371721268, 0.007264047395437956, 0.01969892717897892, 0.05504016950726509, 0.011639784090220928, 0.00904895830899477, 0.023604096844792366, 0.016442816704511642, -0.004651586525142193, 0.020986227318644524, 0.03154424577951431, 0.0029883738607168198, 0.023690639063715935, -0.025854166597127914, 0.042058996856212616, 0.06321830302476883, 0.002877493156120181, 0.08684404194355011, -0.05075637996196747, -0.12055181711912155, -0.07009832561016083, -0.011564060114324093, -0.08610843867063522, 0.007821155712008476, -0.006393227260559797, 0.04225371405482292, -0.04681875929236412, 0.02669794298708439, 0.03308035433292389, 0.012061672285199165, 0.004819259978830814, -0.06871367245912552, 0.02548636682331562, -0.017459675669670105, 0.01842244528234005, -0.014355012215673923, -0.042708054184913635, -0.009795376099646091, 0.02308485098183155, -0.05352569743990898, -0.07459846884012222, -0.04768417030572891, 0.0575498603284359, 0.03171733021736145, -0.02693593129515648, -0.0016185898566618562, 0.05793929472565651, -0.060448989272117615, 0.015458411537110806, 0.018671251833438873, -0.012040036730468273, -0.0077724764123559, 0.01103940512984991, 0.008610843680799007, -0.04824668914079666, -0.015772122889757156, 0.023669002577662468, -0.002904537133872509, 0.0071829152293503284, 0.00962770264595747, -0.05439110845327377, -0.0076697091571986675, 0.042058996856212616, 0.022035539150238037, 0.008924555964767933, 0.030375942587852478, 0.07208877056837082, -0.015858665108680725, -0.019114775583148003, 0.021473022177815437, -0.018714522942900658, -0.03474627062678337, 0.06040572002530098, 0.027909519150853157, -0.07217531651258469, -0.024642590433359146, -0.019266221672296524, -0.03364286944270134, -0.009308582171797752, -0.054694004356861115, -0.031609151512384415, -0.0052411481738090515, 0.016756528988480568, -0.07265128940343857, -0.08117559552192688, -0.02955380082130432, 0.033751048147678375, -0.0060849240981042385, 0.014041300863027573, -0.03212840110063553, -0.0008769052219577134, 0.010271351784467697, -0.0017470493912696838, 0.0368448905646801, -0.03738577291369438, 0.06771844625473022, -0.04281623288989067, -0.009600657969713211, -0.004094477742910385, -0.014149476774036884, 0.020964592695236206, 0.031912047415971756, 0.020369622856378555, -0.07321380823850632, -0.022587237879633904, 0.030375942587852478, -0.004965298343449831, -0.03476790338754654, 0.02516183815896511, -0.016626717522740364, 0.04569372534751892, -0.055169980973005295, 0.06689630448818207, 0.06248270720243454, 0.038316093385219574, -0.04984769970178604, -0.003726677969098091, -0.03554677590727806, 0.0415397509932518, 0.007615620736032724, -0.05456419289112091, 0.034075576812028885, -0.010687831789255142, 0.032236576080322266, -0.022327614948153496, 0.012472742237150669, 0.073819600045681, 0.03323179855942726, 0.018801063299179077, -0.014863441698253155, -0.006068697664886713, -0.060059554874897, -0.006642032880336046, -0.04108540713787079, 0.014117023907601833, 0.035200610756874084, 0.00493284547701478, 0.0032236576080322266, 0.05343915522098541, 0.04993424192070961, -0.01777338795363903, -0.03892188146710396, -0.038878608494997025, 0.025919072329998016, 0.01952584646642208, 0.04415762051939964, 0.007610212080180645, -0.0334048829972744, -0.02213289774954319, 0.04924191161990166, -0.005297940690070391, 0.0066041708923876286, -0.0051329717971384525, 0.0008316063322126865, -0.0634346604347229, 0.023863719776272774, -0.016778163611888885, 0.011088084429502487, -0.011336890049278736, 0.015458411537110806, 0.008302541449666023, -0.039441127330064774, 0.06464623659849167, -0.05915087088942528, 0.03173896670341492, -0.07459846884012222, 0.0013758690329268575, -0.032972175627946854, 0.02518347278237343, -0.01937439851462841, -0.0060092005878686905, -0.005846936255693436, 0.07360324263572693, -0.015436776913702488, 0.03437846899032593, 0.034876082092523575, -0.03818628191947937, 0.02622196637094021, -0.041907548904418945, -0.026351777836680412, 0.03764539957046509, -0.053092993795871735, 0.01474444754421711, -0.05802583694458008, 0.01646445319056511, -0.07983420789241791, -0.006398635916411877, 0.02168937399983406, -0.06378082185983658, 0.0003282478719484061, -0.03085191734135151, -0.03768866881728172, 0.02667630836367607, -0.019796287640929222, -0.028969647362828255, -0.004010641016066074, -0.0057928478345274925, -0.00006258175562834367, 0.0124186547473073, -0.01293790154159069, 0.013327335938811302, 0.02364736795425415, -0.0014130546478554606, -0.03349142149090767, 0.025291649624705315, -0.019893646240234375, -0.020066728815436363, -0.008778517134487629, 0.0047246054746210575, 0.05382859334349632, -0.01860634610056877, 0.038792070001363754, -0.02803933061659336, -0.02014245092868805, -0.003018122399225831, -0.025529637932777405, 0.014484823681414127, 0.025681084021925926, 0.011239531449973583, 0.03682325780391693, -0.007474991492927074, 0.02637341432273388, 0.028060967102646828, 0.0073343622498214245, -0.018595527857542038, 0.010536384768784046, 0.02643832005560398, 0.020953774452209473, 0.03574149310588837, -0.04785725474357605, -0.10826297104358673, -0.004259447101503611, -0.06767517328262329, -0.007193732541054487, 0.01553413551300764, -0.018379176035523415, -0.03764539957046509, -0.001720005297102034, 0.014722811989486217, -0.06014609709382057, -0.01318670716136694, -0.02041289210319519, -0.03210676461458206, 0.02165692113339901, 0.02058597467839718, -0.018887605518102646, -0.02201390452682972, -0.021916544064879417, -0.058674897998571396, 0.020726604387164116, -0.0264599546790123, 0.04642932489514351, 0.02509693242609501, 0.056208472698926926, -0.07563696056604385, 0.011120537295937538, 0.08442088961601257, -0.04050125554203987, 0.009238267317414284, -0.023863719776272774, 0.016129106283187866, 0.002195981564000249, 0.012353748083114624, 0.03489771485328674, -0.006020018365234137, -0.02453441545367241, -0.006858385633677244, -0.02438296750187874, 0.0012737774522975087, 0.002336610807105899, 0.08628152310848236, 0.04249170050024986, -0.01139097847044468, -0.029661977663636208, 0.024815673008561134, 0.009779149666428566, -0.041345033794641495, -0.013305701315402985, -0.035828035324811935, -0.009833237156271935, 0.08173811435699463, -0.02979178912937641, 0.042859502136707306, -0.03020286001265049, -0.01378167700022459, 0.0014752560527995229, 0.054694004356861115, -0.010109087452292442, 0.012040036730468273, 0.01845490001142025, 0.014863441698253155, 0.04984769970178604, 0.03528715297579765, -0.03282072767615318, -0.0008735246956348419, 0.021310755982995033, 0.013143436051905155, -0.03825118765234947, 0.059497036039829254, -0.00033450181945227087, 0.0029829649720340967, -0.03405394032597542, -0.016085835173726082, 0.010969090275466442, -0.028580212965607643, 0.013911489397287369, -0.010644560679793358, -0.04660240560770035, -0.004770580679178238 ]
7,483
eth_account.account
_recover_hash
null
from collections.abc import ( Mapping, ) import json import os from typing import ( Any, Dict, Optional, Tuple, TypeVar, Union, cast, ) import warnings from eth_keyfile import ( create_keyfile_json, decode_keyfile_json, ) from eth_keys import ( KeyAPI, keys, ) from eth_keys.exceptions import ( ValidationError, ) from eth_typing import ( ChecksumAddress, Hash32, HexStr, ) from eth_utils.curried import ( combomethod, hexstr_if_str, is_dict, keccak, text_if_str, to_bytes, to_int, ) from eth_utils.toolz import ( dissoc, ) from hexbytes import ( HexBytes, ) from eth_account._utils.legacy_transactions import ( Transaction, vrs_from, ) from eth_account._utils.signing import ( hash_of_signed_transaction, sign_message_hash, sign_transaction_dict, to_standard_signature_bytes, to_standard_v, ) from eth_account.datastructures import ( SignedMessage, SignedTransaction, ) from eth_account.hdaccount import ( ETHEREUM_DEFAULT_PATH, generate_mnemonic, key_from_seed, seed_from_mnemonic, ) from eth_account.messages import ( SignableMessage, _hash_eip191_message, encode_typed_data, ) from eth_account.signers.local import ( LocalAccount, ) from eth_account.typed_transactions import ( TypedTransaction, ) VRS = TypeVar("VRS", bytes, HexStr, int) class Account: """ The primary entry point for working with Ethereum private keys. It does **not** require a connection to an Ethereum node. """ _keys = keys _default_kdf = os.getenv("ETH_ACCOUNT_KDF", "scrypt") # Enable unaudited features (off by default) _use_unaudited_hdwallet_features = False @classmethod def enable_unaudited_hdwallet_features(cls): """ Use this flag to enable unaudited HD Wallet features. """ cls._use_unaudited_hdwallet_features = True @combomethod def create(self, extra_entropy=""): r""" Creates a new private key, and returns it as a :class:`~eth_account.local.LocalAccount`. :param extra_entropy: Add extra randomness to whatever randomness your OS can provide :type extra_entropy: str or bytes or int :returns: an object with private key and convenience methods .. code-block:: python >>> from eth_account import Account >>> acct = Account.create('KEYSMASH FJAFJKLDSKF7JKFDJ 1530') >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acct.key HexBytes('0x8676e9a8c86c8921e922e61e0bb6e9e9689aad4c99082620610b00140e5f21b8') # These methods are also available: sign_message(), sign_transaction(), # encrypt(). # They correspond to the same-named methods in Account.* # but without the private key argument """ extra_key_bytes = text_if_str(to_bytes, extra_entropy) key_bytes = keccak(os.urandom(32) + extra_key_bytes) return self.from_key(key_bytes) @staticmethod def decrypt(keyfile_json, password): """ Decrypts a private key. The key may have been encrypted using an Ethereum client or :meth:`~Account.encrypt`. :param keyfile_json: The encrypted key :type keyfile_json: dict or str :param str password: The password that was used to encrypt the key :returns: the raw private key :rtype: ~hexbytes.main.HexBytes .. doctest:: python >>> encrypted = { ... 'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', ... 'crypto': {'cipher': 'aes-128-ctr', ... 'cipherparams': {'iv': '482ef54775b0cc59f25717711286f5c8'}, ... 'ciphertext': 'cb636716a9fd46adbb31832d964df2082536edd5399a3393327dc89b0193a2be', ... 'kdf': 'scrypt', ... 'kdfparams': {}, ... 'kdfparams': {'dklen': 32, ... 'n': 262144, ... 'p': 8, ... 'r': 1, ... 'salt': 'd3c9a9945000fcb6c9df0f854266d573'}, ... 'mac': '4f626ec5e7fea391b2229348a65bfef532c2a4e8372c0a6a814505a350a7689d'}, ... 'id': 'b812f3f9-78cc-462a-9e89-74418aa27cb0', ... 'version': 3} >>> Account.decrypt(encrypted, 'password') HexBytes('0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364') """ # noqa: E501 if isinstance(keyfile_json, str): keyfile = json.loads(keyfile_json) elif is_dict(keyfile_json): keyfile = keyfile_json else: raise TypeError( "The keyfile should be supplied as a JSON string, or a dictionary." ) password_bytes = text_if_str(to_bytes, password) return HexBytes(decode_keyfile_json(keyfile, password_bytes)) @classmethod def encrypt(cls, private_key, password, kdf=None, iterations=None): """ Creates a dictionary with an encrypted version of your private key. To import this keyfile into Ethereum clients like geth and parity: encode this dictionary with :func:`json.dumps` and save it to disk where your client keeps key files. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :param str password: The password which you will need to unlock the account in your client :param str kdf: The key derivation function to use when encrypting your private key :param int iterations: The work factor for the key derivation function :returns: The data to use in your encrypted file :rtype: dict If kdf is not set, the default key derivation function falls back to the environment variable :envvar:`ETH_ACCOUNT_KDF`. If that is not set, then 'scrypt' will be used as the default. .. doctest:: python >>> from pprint import pprint >>> encrypted = Account.encrypt( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364, ... 'password' ... ) >>> pprint(encrypted) {'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', 'crypto': {'cipher': 'aes-128-ctr', 'cipherparams': {'iv': '...'}, 'ciphertext': '...', 'kdf': 'scrypt', 'kdfparams': {'dklen': 32, 'n': 262144, 'p': 1, 'r': 8, 'salt': '...'}, 'mac': '...'}, 'id': '...', 'version': 3} >>> with open('my-keyfile', 'w') as f: # doctest: +SKIP ... f.write(json.dumps(encrypted)) """ if isinstance(private_key, keys.PrivateKey): key_bytes = private_key.to_bytes() else: key_bytes = HexBytes(private_key) if kdf is None: kdf = cls._default_kdf password_bytes = text_if_str(to_bytes, password) assert len(key_bytes) == 32 return create_keyfile_json( key_bytes, password_bytes, kdf=kdf, iterations=iterations ) @combomethod def from_key(self, private_key): r""" Returns a convenient object for working with the given private key. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :return: object with methods for signing and encrypting :rtype: LocalAccount .. doctest:: python >>> acct = Account.from_key( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364) >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acc
(self, message_hash: eth_typing.evm.Hash32, vrs: Optional[Tuple[~VRS, ~VRS, ~VRS]] = None, signature: bytes = None) -> eth_typing.evm.ChecksumAddress
[ 0.04513120651245117, -0.057246968150138855, -0.039679113775491714, 0.04402780905365944, 0.03857571631669998, -0.06023263558745384, -0.029034554958343506, -0.011347707360982895, 0.000809971010312438, -0.05010732263326645, 0.04346529021859169, 0.026806119829416275, 0.012245572172105312, 0.018649617210030556, -0.04746781662106514, 0.05690080299973488, 0.024967120960354805, 0.016680805012583733, 0.0012676925398409367, -0.020488616079092026, 0.020813144743442535, 0.019190499559044838, 0.01830345205962658, 0.07446865737438202, -0.0403498075902462, 0.003940326627343893, 0.04435233771800995, 0.039354585111141205, 0.04556391388177872, -0.017459675669670105, -0.011856136843562126, -0.02572435513138771, 0.02667630836367607, 0.056208472698926926, -0.048289958387613297, -0.07520425319671631, 0.02356082759797573, 0.017016151919960976, -0.06875693798065186, -0.002193277236074209, 0.029856694862246513, 0.06507894396781921, 0.07697834819555283, -0.04625624045729637, 0.02356082759797573, -0.004654291085898876, -0.0001423196226824075, 0.019590752199292183, -0.010341666638851166, 0.0003924776101484895, 0.03355632722377777, -0.00686920341104269, -0.01139097847044468, -0.019839556887745857, 0.007534488569945097, -0.0008065905421972275, 0.003924100194126368, -0.03517897427082062, -0.026633037254214287, -0.025075295940041542, -0.03563331812620163, -0.005917250644415617, 0.022500697523355484, 0.03636891767382622, -0.02819077856838703, 0.012537647970020771, -0.0357198566198349, -0.024036802351474762, -0.007026059087365866, 0.020001821219921112, 0.03528715297579765, -0.0034210796002298594, -0.023041579872369766, 0.028255684301257133, -0.018000558018684387, 0.007031468208879232, -0.01162896677851677, -0.016875524073839188, -0.08152175694704056, -0.04794379323720932, 0.05127562955021858, -0.0345948226749897, -0.026481591165065765, 0.019277039915323257, 0.039224773645401, 0.06841077655553818, 0.06386736780405045, -0.0019890940748155117, -0.010693239979445934, -0.015945205464959145, -0.05750659108161926, 0.026806119829416275, -0.08541610836982727, 0.05330934375524521, 0.049977511167526245, -0.047987066209316254, -0.004183723591268063, -0.06399717926979065, -0.03130625933408737, 0.039830561727285385, 0.027065742760896683, 0.0496746189892292, -0.040241632610559464, 0.02091050334274769, 0.013608595356345177, -0.02892637811601162, -0.07771395146846771, 0.04824668914079666, 0.04331384226679802, -0.01685388758778572, -0.07321380823850632, -0.017373135313391685, 0.012602554634213448, -0.05071311071515083, 0.0008451283792965114, 0.03747231513261795, 0.01607501693069935, 0.02340937964618206, 0.010547202080488205, -0.0017443449469283223, 0.12176339328289032, -0.022976674139499664, 0.00019809808873105794, -0.021592015400528908, 0.0059010242111980915, -0.022717051208019257, 0.028710024431347847, 0.010195628739893436, 0.02293340303003788, -0.05452091991901398, 0.016518540680408478, 0.04660240560770035, 0.006225553806871176, 0.0540449433028698, -0.011077266186475754, 0.002891015028581023, 0.008389081805944443, 0.027844613417983055, -0.02228434570133686, 0.05041021853685379, 0.04117194935679436, 0.01602092944085598, 0.023106485605239868, -0.01717841811478138, -0.07896879315376282, -0.03729923442006111, -0.04915536940097809, -0.052227579057216644, 0.001828181673772633, -0.01833590492606163, -0.007161279674619436, 0.004778693895787001, -0.07581004500389099, 0.08442088961601257, 0.013814129866659641, 0.027606625109910965, -0.002525919582694769, -0.03282072767615318, -0.045910079032182693, -0.02643832005560398, -0.062352895736694336, -0.0007322191959246993, 0.03818628191947937, -0.04993424192070961, 0.005690080113708973, 0.005449387710541487, -0.061487484723329544, -0.025118567049503326, -0.030159588903188705, -0.0008011817117221653, -0.025291649624705315, 0.010877139866352081, -0.029510529711842537, 0.027195554226636887, 0.04880920425057411, 0.007339770905673504, 0.015447594225406647, -0.06179037690162659, -0.059021059423685074, -0.0599297434091568, 0.012494377791881561, -0.006912474054843187, 0.017676029354333878, 0.02388535626232624, 0.04417925328016281, 0.03485444560647011, 0.01797892339527607, 0.07793030142784119, 0.05560268461704254, -0.06611743569374084, -0.020986227318644524, 0.019039051607251167, 0.016096653416752815, 0.012526830658316612, -0.03890024498105049, 0.017492128536105156, 0.014344194903969765, -0.0002100989077007398, -0.048852477222681046, 0.02180836908519268, -0.043595101684331894, -0.00022953686129767448, 0.02228434570133686, -0.03736414015293121, -0.03197695314884186, -0.032799094915390015, -0.04242679476737976, -0.007437129504978657, 0.026827754452824593, -0.04768417030572891, 0.02091050334274769, -0.05339588597416878, 0.010476887226104736, 0.05971338972449303, 0.013532871380448341, -0.010038772597908974, 0.02819077856838703, 0.020337168127298355, -0.004167497158050537, 0.002815291518345475, 0.08108904957771301, 0.01590193621814251, -0.004294604528695345, -0.04915536940097809, 0.03219330683350563, -0.002891015028581023, -0.021235033869743347, 0.02014245092868805, -0.01833590492606163, -0.03154424577951431, 0.09839728474617004, 0.008259270340204239, -0.05897779017686844, 0.016507724300026894, 0.013727589510381222, -0.039679113775491714, 0.01774093508720398, -0.061011508107185364, 0.037104517221450806, -0.013868218287825584, -0.006068697664886713, 0.012397019192576408, 0.05512670800089836, -0.02420988492667675, 0.005427752621471882, -0.007042285520583391, -0.00002051549199677538, 0.015620676800608635, -0.0047976248897612095, 0.0021689373534172773, -0.00894619058817625, -0.0334697887301445, 0.01913641020655632, 0.04539082944393158, 0.009725061245262623, -0.03595784679055214, 0.01833590492606163, -0.03005141206085682, 0.05625174567103386, 0.033772680908441544, -0.003891647094860673, -0.05975665897130966, -0.05889124795794487, -0.010996134020388126, 0.05075637996196747, -0.028904741629958153, -0.010006319731473923, 0.02340937964618206, 0.018476534634828568, -0.016929611563682556, 0.07671872526407242, 0.02845040149986744, -0.039203137159347534, 0.014095389284193516, -0.014571364969015121, 0.0026584358420222998, 0.039679113775491714, 0.005765803623944521, 0.02563781477510929, 0.010006319731473923, 0.01100695226341486, -0.048376500606536865, 0.004018754232674837, -0.009076002985239029, 0.031133176758885384, 0.0030803238041698933, -0.019212134182453156, -0.07377632707357407, 0.03284236416220665, -0.02572435513138771, 0.013868218287825584, 0.04073924571275711, 0.015133882872760296, -0.0334048829972744, 0.05897779017686844, -0.017578670755028725, -0.06875693798065186, -0.059021059423685074, 0.04080415144562721, -0.01502570603042841, 0.009362669661641121, 0.06269905716180801, 0.09606067091226578, 0.01583702862262726, -0.009860281832516193, 0.03654199838638306, 0.04331384226679802, 0.024253156036138535, -0.0369747057557106, 0.041734468191862106, -0.057246968150138855, -0.008372855372726917, 0.061574023216962814, -0.008161911740899086, 0.007896879687905312, -0.04218880832195282, 0.051881417632102966, 0.014711994677782059, 0.025681084021925926, 0.035590045154094696, 0.005449387710541487, 0.036650173366069794, -0.031284622848033905, -0.0011277393205091357, 0.025854166597127914, -0.06031917780637741, 0.01219148375093937, 0.012829724699258804, 0.025356555357575417, 0.016118288040161133, -0.055169980973005295, -0.0077346148900687695, 0.019558299332857132, 0.013608595356345177, -0.05456419289112091, 0.04495812579989433, 0.0019498801557347178, -0.020164087414741516, -0.018736157566308975, -0.033513057976961136, 0.06823769211769104, -0.060448989272117615, 0.021992268040776253, -0.028169142082333565, -0.036325644701719284, -0.029056189581751823, 0.03948439657688141, -0.025075295940041542, -0.02723882533609867, 0.06646359711885452, -0.010503931902348995, 0.022089626640081406, 0.05244393274188042, 0.0932048112154007, 0.037991560995578766, -0.06910310685634613, -0.026481591165065765, -0.02795279026031494, 0.005787439178675413, 0.004094477742910385, 0.002164880745112896, 0.012970354408025742, -0.03370777517557144, -0.03773193806409836, -0.03883533924818039, -0.04738127812743187, 0.007047694642096758, -0.06503567099571228, 0.054694004356861115, 0.006766435690224171, -0.003099254798144102, -0.0588047094643116, -0.05638155713677406, 0.0005276981391943991, 0.03574149310588837, -0.041583020240068436, -0.02301994524896145, 0.024166613817214966, -0.034075576812028885, 0.05049675703048706, 0.012202301062643528, 0.0029451034497469664, 0.03182550519704819, 0.06001628562808037, 0.054131485521793365, 0.03675835207104683, 0.034551553428173065, -0.058674897998571396, 0.0530497208237648, 0.005343915894627571, -0.007328953128308058, 0.01928785815834999, 0.07053103297948837, 0.04149647802114487, 0.0005929420585744083, 0.044611960649490356, -0.030722105875611305, -0.03721269220113754, -0.04290277138352394, -0.024815673008561134, 0.01976383477449417, -0.0060092005878686905, 0.038143008947372437, 0.007675117813050747, -0.0027855432126671076, 0.009086820296943188, 0.029186001047492027, -0.05499689653515816, -0.026243602856993675, 0.029207635670900345, -0.019536662846803665, 0.04625624045729637, -0.02875329554080963, 0.0024569572415202856, -0.016399547457695007, 0.022414157167077065, -0.029056189581751823, -0.009860281832516193, 0.002809882862493396, 0.06927618384361267, 0.016085835173726082, -0.03355632722377777, -0.03755885735154152, 0.008091596886515617, -0.003929508849978447, 0.03868389129638672, -0.03595784679055214, 0.026546496897935867, -0.020391257479786873, -0.0065284473821520805, 0.02563781477510929, 0.008929964154958725, 0.009211222641170025, -0.03076537698507309, -0.042946044355630875, -0.00044217114918865263, 0.012732366099953651, -0.04539082944393158, 0.009438393637537956, 0.0495448037981987, -0.028472036123275757, -0.001454973011277616, 0.04337874799966812, 0.02459932118654251, -0.02436133287847042, 0.021494656801223755, -0.0540449433028698, 0.06001628562808037, 0.03468136489391327, 0.01990446262061596, 0.002823404734954238, -0.02845040149986744, 0.010547202080488205, -0.010006319731473923, -0.05962684750556946, -0.03708288073539734, 0.04777071252465248, 0.04707838222384453, -0.03204185888171196, 0.010406572371721268, 0.007264047395437956, 0.01969892717897892, 0.05504016950726509, 0.011639784090220928, 0.00904895830899477, 0.023604096844792366, 0.016442816704511642, -0.004651586525142193, 0.020986227318644524, 0.03154424577951431, 0.0029883738607168198, 0.023690639063715935, -0.025854166597127914, 0.042058996856212616, 0.06321830302476883, 0.002877493156120181, 0.08684404194355011, -0.05075637996196747, -0.12055181711912155, -0.07009832561016083, -0.011564060114324093, -0.08610843867063522, 0.007821155712008476, -0.006393227260559797, 0.04225371405482292, -0.04681875929236412, 0.02669794298708439, 0.03308035433292389, 0.012061672285199165, 0.004819259978830814, -0.06871367245912552, 0.02548636682331562, -0.017459675669670105, 0.01842244528234005, -0.014355012215673923, -0.042708054184913635, -0.009795376099646091, 0.02308485098183155, -0.05352569743990898, -0.07459846884012222, -0.04768417030572891, 0.0575498603284359, 0.03171733021736145, -0.02693593129515648, -0.0016185898566618562, 0.05793929472565651, -0.060448989272117615, 0.015458411537110806, 0.018671251833438873, -0.012040036730468273, -0.0077724764123559, 0.01103940512984991, 0.008610843680799007, -0.04824668914079666, -0.015772122889757156, 0.023669002577662468, -0.002904537133872509, 0.0071829152293503284, 0.00962770264595747, -0.05439110845327377, -0.0076697091571986675, 0.042058996856212616, 0.022035539150238037, 0.008924555964767933, 0.030375942587852478, 0.07208877056837082, -0.015858665108680725, -0.019114775583148003, 0.021473022177815437, -0.018714522942900658, -0.03474627062678337, 0.06040572002530098, 0.027909519150853157, -0.07217531651258469, -0.024642590433359146, -0.019266221672296524, -0.03364286944270134, -0.009308582171797752, -0.054694004356861115, -0.031609151512384415, -0.0052411481738090515, 0.016756528988480568, -0.07265128940343857, -0.08117559552192688, -0.02955380082130432, 0.033751048147678375, -0.0060849240981042385, 0.014041300863027573, -0.03212840110063553, -0.0008769052219577134, 0.010271351784467697, -0.0017470493912696838, 0.0368448905646801, -0.03738577291369438, 0.06771844625473022, -0.04281623288989067, -0.009600657969713211, -0.004094477742910385, -0.014149476774036884, 0.020964592695236206, 0.031912047415971756, 0.020369622856378555, -0.07321380823850632, -0.022587237879633904, 0.030375942587852478, -0.004965298343449831, -0.03476790338754654, 0.02516183815896511, -0.016626717522740364, 0.04569372534751892, -0.055169980973005295, 0.06689630448818207, 0.06248270720243454, 0.038316093385219574, -0.04984769970178604, -0.003726677969098091, -0.03554677590727806, 0.0415397509932518, 0.007615620736032724, -0.05456419289112091, 0.034075576812028885, -0.010687831789255142, 0.032236576080322266, -0.022327614948153496, 0.012472742237150669, 0.073819600045681, 0.03323179855942726, 0.018801063299179077, -0.014863441698253155, -0.006068697664886713, -0.060059554874897, -0.006642032880336046, -0.04108540713787079, 0.014117023907601833, 0.035200610756874084, 0.00493284547701478, 0.0032236576080322266, 0.05343915522098541, 0.04993424192070961, -0.01777338795363903, -0.03892188146710396, -0.038878608494997025, 0.025919072329998016, 0.01952584646642208, 0.04415762051939964, 0.007610212080180645, -0.0334048829972744, -0.02213289774954319, 0.04924191161990166, -0.005297940690070391, 0.0066041708923876286, -0.0051329717971384525, 0.0008316063322126865, -0.0634346604347229, 0.023863719776272774, -0.016778163611888885, 0.011088084429502487, -0.011336890049278736, 0.015458411537110806, 0.008302541449666023, -0.039441127330064774, 0.06464623659849167, -0.05915087088942528, 0.03173896670341492, -0.07459846884012222, 0.0013758690329268575, -0.032972175627946854, 0.02518347278237343, -0.01937439851462841, -0.0060092005878686905, -0.005846936255693436, 0.07360324263572693, -0.015436776913702488, 0.03437846899032593, 0.034876082092523575, -0.03818628191947937, 0.02622196637094021, -0.041907548904418945, -0.026351777836680412, 0.03764539957046509, -0.053092993795871735, 0.01474444754421711, -0.05802583694458008, 0.01646445319056511, -0.07983420789241791, -0.006398635916411877, 0.02168937399983406, -0.06378082185983658, 0.0003282478719484061, -0.03085191734135151, -0.03768866881728172, 0.02667630836367607, -0.019796287640929222, -0.028969647362828255, -0.004010641016066074, -0.0057928478345274925, -0.00006258175562834367, 0.0124186547473073, -0.01293790154159069, 0.013327335938811302, 0.02364736795425415, -0.0014130546478554606, -0.03349142149090767, 0.025291649624705315, -0.019893646240234375, -0.020066728815436363, -0.008778517134487629, 0.0047246054746210575, 0.05382859334349632, -0.01860634610056877, 0.038792070001363754, -0.02803933061659336, -0.02014245092868805, -0.003018122399225831, -0.025529637932777405, 0.014484823681414127, 0.025681084021925926, 0.011239531449973583, 0.03682325780391693, -0.007474991492927074, 0.02637341432273388, 0.028060967102646828, 0.0073343622498214245, -0.018595527857542038, 0.010536384768784046, 0.02643832005560398, 0.020953774452209473, 0.03574149310588837, -0.04785725474357605, -0.10826297104358673, -0.004259447101503611, -0.06767517328262329, -0.007193732541054487, 0.01553413551300764, -0.018379176035523415, -0.03764539957046509, -0.001720005297102034, 0.014722811989486217, -0.06014609709382057, -0.01318670716136694, -0.02041289210319519, -0.03210676461458206, 0.02165692113339901, 0.02058597467839718, -0.018887605518102646, -0.02201390452682972, -0.021916544064879417, -0.058674897998571396, 0.020726604387164116, -0.0264599546790123, 0.04642932489514351, 0.02509693242609501, 0.056208472698926926, -0.07563696056604385, 0.011120537295937538, 0.08442088961601257, -0.04050125554203987, 0.009238267317414284, -0.023863719776272774, 0.016129106283187866, 0.002195981564000249, 0.012353748083114624, 0.03489771485328674, -0.006020018365234137, -0.02453441545367241, -0.006858385633677244, -0.02438296750187874, 0.0012737774522975087, 0.002336610807105899, 0.08628152310848236, 0.04249170050024986, -0.01139097847044468, -0.029661977663636208, 0.024815673008561134, 0.009779149666428566, -0.041345033794641495, -0.013305701315402985, -0.035828035324811935, -0.009833237156271935, 0.08173811435699463, -0.02979178912937641, 0.042859502136707306, -0.03020286001265049, -0.01378167700022459, 0.0014752560527995229, 0.054694004356861115, -0.010109087452292442, 0.012040036730468273, 0.01845490001142025, 0.014863441698253155, 0.04984769970178604, 0.03528715297579765, -0.03282072767615318, -0.0008735246956348419, 0.021310755982995033, 0.013143436051905155, -0.03825118765234947, 0.059497036039829254, -0.00033450181945227087, 0.0029829649720340967, -0.03405394032597542, -0.016085835173726082, 0.010969090275466442, -0.028580212965607643, 0.013911489397287369, -0.010644560679793358, -0.04660240560770035, -0.004770580679178238 ]
7,485
eth_account.account
create
Creates a new private key, and returns it as a :class:`~eth_account.local.LocalAccount`. :param extra_entropy: Add extra randomness to whatever randomness your OS can provide :type extra_entropy: str or bytes or int :returns: an object with private key and convenience methods .. code-block:: python >>> from eth_account import Account >>> acct = Account.create('KEYSMASH FJAFJKLDSKF7JKFDJ 1530') >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acct.key HexBytes('0x8676e9a8c86c8921e922e61e0bb6e9e9689aad4c99082620610b00140e5f21b8') # These methods are also available: sign_message(), sign_transaction(), # encrypt(). # They correspond to the same-named methods in Account.* # but without the private key argument
from collections.abc import ( Mapping, ) import json import os from typing import ( Any, Dict, Optional, Tuple, TypeVar, Union, cast, ) import warnings from eth_keyfile import ( create_keyfile_json, decode_keyfile_json, ) from eth_keys import ( KeyAPI, keys, ) from eth_keys.exceptions import ( ValidationError, ) from eth_typing import ( ChecksumAddress, Hash32, HexStr, ) from eth_utils.curried import ( combomethod, hexstr_if_str, is_dict, keccak, text_if_str, to_bytes, to_int, ) from eth_utils.toolz import ( dissoc, ) from hexbytes import ( HexBytes, ) from eth_account._utils.legacy_transactions import ( Transaction, vrs_from, ) from eth_account._utils.signing import ( hash_of_signed_transaction, sign_message_hash, sign_transaction_dict, to_standard_signature_bytes, to_standard_v, ) from eth_account.datastructures import ( SignedMessage, SignedTransaction, ) from eth_account.hdaccount import ( ETHEREUM_DEFAULT_PATH, generate_mnemonic, key_from_seed, seed_from_mnemonic, ) from eth_account.messages import ( SignableMessage, _hash_eip191_message, encode_typed_data, ) from eth_account.signers.local import ( LocalAccount, ) from eth_account.typed_transactions import ( TypedTransaction, ) VRS = TypeVar("VRS", bytes, HexStr, int) class Account: """ The primary entry point for working with Ethereum private keys. It does **not** require a connection to an Ethereum node. """ _keys = keys _default_kdf = os.getenv("ETH_ACCOUNT_KDF", "scrypt") # Enable unaudited features (off by default) _use_unaudited_hdwallet_features = False @classmethod def enable_unaudited_hdwallet_features(cls): """ Use this flag to enable unaudited HD Wallet features. """ cls._use_unaudited_hdwallet_features = True @combomethod def create(self, extra_entropy=""): r""" Creates a new private key, and returns it as a :class:`~eth_account.local.LocalAccount`. :param extra_entropy: Add extra randomness to whatever randomness your OS can provide :type extra_entropy: str or bytes or int :returns: an object with private key and convenience methods .. code-block:: python >>> from eth_account import Account >>> acct = Account.create('KEYSMASH FJAFJKLDSKF7JKFDJ 1530') >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acct.key HexBytes('0x8676e9a8c86c8921e922e61e0bb6e9e9689aad4c99082620610b00140e5f21b8') # These methods are also available: sign_message(), sign_transaction(), # encrypt(). # They correspond to the same-named methods in Account.* # but without the private key argument """ extra_key_bytes = text_if_str(to_bytes, extra_entropy) key_bytes = keccak(os.urandom(32) + extra_key_bytes) return self.from_key(key_bytes) @staticmethod def decrypt(keyfile_json, password): """ Decrypts a private key. The key may have been encrypted using an Ethereum client or :meth:`~Account.encrypt`. :param keyfile_json: The encrypted key :type keyfile_json: dict or str :param str password: The password that was used to encrypt the key :returns: the raw private key :rtype: ~hexbytes.main.HexBytes .. doctest:: python >>> encrypted = { ... 'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', ... 'crypto': {'cipher': 'aes-128-ctr', ... 'cipherparams': {'iv': '482ef54775b0cc59f25717711286f5c8'}, ... 'ciphertext': 'cb636716a9fd46adbb31832d964df2082536edd5399a3393327dc89b0193a2be', ... 'kdf': 'scrypt', ... 'kdfparams': {}, ... 'kdfparams': {'dklen': 32, ... 'n': 262144, ... 'p': 8, ... 'r': 1, ... 'salt': 'd3c9a9945000fcb6c9df0f854266d573'}, ... 'mac': '4f626ec5e7fea391b2229348a65bfef532c2a4e8372c0a6a814505a350a7689d'}, ... 'id': 'b812f3f9-78cc-462a-9e89-74418aa27cb0', ... 'version': 3} >>> Account.decrypt(encrypted, 'password') HexBytes('0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364') """ # noqa: E501 if isinstance(keyfile_json, str): keyfile = json.loads(keyfile_json) elif is_dict(keyfile_json): keyfile = keyfile_json else: raise TypeError( "The keyfile should be supplied as a JSON string, or a dictionary." ) password_bytes = text_if_str(to_bytes, password) return HexBytes(decode_keyfile_json(keyfile, password_bytes)) @classmethod def encrypt(cls, private_key, password, kdf=None, iterations=None): """ Creates a dictionary with an encrypted version of your private key. To import this keyfile into Ethereum clients like geth and parity: encode this dictionary with :func:`json.dumps` and save it to disk where your client keeps key files. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :param str password: The password which you will need to unlock the account in your client :param str kdf: The key derivation function to use when encrypting your private key :param int iterations: The work factor for the key derivation function :returns: The data to use in your encrypted file :rtype: dict If kdf is not set, the default key derivation function falls back to the environment variable :envvar:`ETH_ACCOUNT_KDF`. If that is not set, then 'scrypt' will be used as the default. .. doctest:: python >>> from pprint import pprint >>> encrypted = Account.encrypt( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364, ... 'password' ... ) >>> pprint(encrypted) {'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', 'crypto': {'cipher': 'aes-128-ctr', 'cipherparams': {'iv': '...'}, 'ciphertext': '...', 'kdf': 'scrypt', 'kdfparams': {'dklen': 32, 'n': 262144, 'p': 1, 'r': 8, 'salt': '...'}, 'mac': '...'}, 'id': '...', 'version': 3} >>> with open('my-keyfile', 'w') as f: # doctest: +SKIP ... f.write(json.dumps(encrypted)) """ if isinstance(private_key, keys.PrivateKey): key_bytes = private_key.to_bytes() else: key_bytes = HexBytes(private_key) if kdf is None: kdf = cls._default_kdf password_bytes = text_if_str(to_bytes, password) assert len(key_bytes) == 32 return create_keyfile_json( key_bytes, password_bytes, kdf=kdf, iterations=iterations ) @combomethod def from_key(self, private_key): r""" Returns a convenient object for working with the given private key. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :return: object with methods for signing and encrypting :rtype: LocalAccount .. doctest:: python >>> acct = Account.from_key( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364) >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acc
(self, extra_entropy='')
[ 0.04513120651245117, -0.057246968150138855, -0.039679113775491714, 0.04402780905365944, 0.03857571631669998, -0.06023263558745384, -0.029034554958343506, -0.011347707360982895, 0.000809971010312438, -0.05010732263326645, 0.04346529021859169, 0.026806119829416275, 0.012245572172105312, 0.018649617210030556, -0.04746781662106514, 0.05690080299973488, 0.024967120960354805, 0.016680805012583733, 0.0012676925398409367, -0.020488616079092026, 0.020813144743442535, 0.019190499559044838, 0.01830345205962658, 0.07446865737438202, -0.0403498075902462, 0.003940326627343893, 0.04435233771800995, 0.039354585111141205, 0.04556391388177872, -0.017459675669670105, -0.011856136843562126, -0.02572435513138771, 0.02667630836367607, 0.056208472698926926, -0.048289958387613297, -0.07520425319671631, 0.02356082759797573, 0.017016151919960976, -0.06875693798065186, -0.002193277236074209, 0.029856694862246513, 0.06507894396781921, 0.07697834819555283, -0.04625624045729637, 0.02356082759797573, -0.004654291085898876, -0.0001423196226824075, 0.019590752199292183, -0.010341666638851166, 0.0003924776101484895, 0.03355632722377777, -0.00686920341104269, -0.01139097847044468, -0.019839556887745857, 0.007534488569945097, -0.0008065905421972275, 0.003924100194126368, -0.03517897427082062, -0.026633037254214287, -0.025075295940041542, -0.03563331812620163, -0.005917250644415617, 0.022500697523355484, 0.03636891767382622, -0.02819077856838703, 0.012537647970020771, -0.0357198566198349, -0.024036802351474762, -0.007026059087365866, 0.020001821219921112, 0.03528715297579765, -0.0034210796002298594, -0.023041579872369766, 0.028255684301257133, -0.018000558018684387, 0.007031468208879232, -0.01162896677851677, -0.016875524073839188, -0.08152175694704056, -0.04794379323720932, 0.05127562955021858, -0.0345948226749897, -0.026481591165065765, 0.019277039915323257, 0.039224773645401, 0.06841077655553818, 0.06386736780405045, -0.0019890940748155117, -0.010693239979445934, -0.015945205464959145, -0.05750659108161926, 0.026806119829416275, -0.08541610836982727, 0.05330934375524521, 0.049977511167526245, -0.047987066209316254, -0.004183723591268063, -0.06399717926979065, -0.03130625933408737, 0.039830561727285385, 0.027065742760896683, 0.0496746189892292, -0.040241632610559464, 0.02091050334274769, 0.013608595356345177, -0.02892637811601162, -0.07771395146846771, 0.04824668914079666, 0.04331384226679802, -0.01685388758778572, -0.07321380823850632, -0.017373135313391685, 0.012602554634213448, -0.05071311071515083, 0.0008451283792965114, 0.03747231513261795, 0.01607501693069935, 0.02340937964618206, 0.010547202080488205, -0.0017443449469283223, 0.12176339328289032, -0.022976674139499664, 0.00019809808873105794, -0.021592015400528908, 0.0059010242111980915, -0.022717051208019257, 0.028710024431347847, 0.010195628739893436, 0.02293340303003788, -0.05452091991901398, 0.016518540680408478, 0.04660240560770035, 0.006225553806871176, 0.0540449433028698, -0.011077266186475754, 0.002891015028581023, 0.008389081805944443, 0.027844613417983055, -0.02228434570133686, 0.05041021853685379, 0.04117194935679436, 0.01602092944085598, 0.023106485605239868, -0.01717841811478138, -0.07896879315376282, -0.03729923442006111, -0.04915536940097809, -0.052227579057216644, 0.001828181673772633, -0.01833590492606163, -0.007161279674619436, 0.004778693895787001, -0.07581004500389099, 0.08442088961601257, 0.013814129866659641, 0.027606625109910965, -0.002525919582694769, -0.03282072767615318, -0.045910079032182693, -0.02643832005560398, -0.062352895736694336, -0.0007322191959246993, 0.03818628191947937, -0.04993424192070961, 0.005690080113708973, 0.005449387710541487, -0.061487484723329544, -0.025118567049503326, -0.030159588903188705, -0.0008011817117221653, -0.025291649624705315, 0.010877139866352081, -0.029510529711842537, 0.027195554226636887, 0.04880920425057411, 0.007339770905673504, 0.015447594225406647, -0.06179037690162659, -0.059021059423685074, -0.0599297434091568, 0.012494377791881561, -0.006912474054843187, 0.017676029354333878, 0.02388535626232624, 0.04417925328016281, 0.03485444560647011, 0.01797892339527607, 0.07793030142784119, 0.05560268461704254, -0.06611743569374084, -0.020986227318644524, 0.019039051607251167, 0.016096653416752815, 0.012526830658316612, -0.03890024498105049, 0.017492128536105156, 0.014344194903969765, -0.0002100989077007398, -0.048852477222681046, 0.02180836908519268, -0.043595101684331894, -0.00022953686129767448, 0.02228434570133686, -0.03736414015293121, -0.03197695314884186, -0.032799094915390015, -0.04242679476737976, -0.007437129504978657, 0.026827754452824593, -0.04768417030572891, 0.02091050334274769, -0.05339588597416878, 0.010476887226104736, 0.05971338972449303, 0.013532871380448341, -0.010038772597908974, 0.02819077856838703, 0.020337168127298355, -0.004167497158050537, 0.002815291518345475, 0.08108904957771301, 0.01590193621814251, -0.004294604528695345, -0.04915536940097809, 0.03219330683350563, -0.002891015028581023, -0.021235033869743347, 0.02014245092868805, -0.01833590492606163, -0.03154424577951431, 0.09839728474617004, 0.008259270340204239, -0.05897779017686844, 0.016507724300026894, 0.013727589510381222, -0.039679113775491714, 0.01774093508720398, -0.061011508107185364, 0.037104517221450806, -0.013868218287825584, -0.006068697664886713, 0.012397019192576408, 0.05512670800089836, -0.02420988492667675, 0.005427752621471882, -0.007042285520583391, -0.00002051549199677538, 0.015620676800608635, -0.0047976248897612095, 0.0021689373534172773, -0.00894619058817625, -0.0334697887301445, 0.01913641020655632, 0.04539082944393158, 0.009725061245262623, -0.03595784679055214, 0.01833590492606163, -0.03005141206085682, 0.05625174567103386, 0.033772680908441544, -0.003891647094860673, -0.05975665897130966, -0.05889124795794487, -0.010996134020388126, 0.05075637996196747, -0.028904741629958153, -0.010006319731473923, 0.02340937964618206, 0.018476534634828568, -0.016929611563682556, 0.07671872526407242, 0.02845040149986744, -0.039203137159347534, 0.014095389284193516, -0.014571364969015121, 0.0026584358420222998, 0.039679113775491714, 0.005765803623944521, 0.02563781477510929, 0.010006319731473923, 0.01100695226341486, -0.048376500606536865, 0.004018754232674837, -0.009076002985239029, 0.031133176758885384, 0.0030803238041698933, -0.019212134182453156, -0.07377632707357407, 0.03284236416220665, -0.02572435513138771, 0.013868218287825584, 0.04073924571275711, 0.015133882872760296, -0.0334048829972744, 0.05897779017686844, -0.017578670755028725, -0.06875693798065186, -0.059021059423685074, 0.04080415144562721, -0.01502570603042841, 0.009362669661641121, 0.06269905716180801, 0.09606067091226578, 0.01583702862262726, -0.009860281832516193, 0.03654199838638306, 0.04331384226679802, 0.024253156036138535, -0.0369747057557106, 0.041734468191862106, -0.057246968150138855, -0.008372855372726917, 0.061574023216962814, -0.008161911740899086, 0.007896879687905312, -0.04218880832195282, 0.051881417632102966, 0.014711994677782059, 0.025681084021925926, 0.035590045154094696, 0.005449387710541487, 0.036650173366069794, -0.031284622848033905, -0.0011277393205091357, 0.025854166597127914, -0.06031917780637741, 0.01219148375093937, 0.012829724699258804, 0.025356555357575417, 0.016118288040161133, -0.055169980973005295, -0.0077346148900687695, 0.019558299332857132, 0.013608595356345177, -0.05456419289112091, 0.04495812579989433, 0.0019498801557347178, -0.020164087414741516, -0.018736157566308975, -0.033513057976961136, 0.06823769211769104, -0.060448989272117615, 0.021992268040776253, -0.028169142082333565, -0.036325644701719284, -0.029056189581751823, 0.03948439657688141, -0.025075295940041542, -0.02723882533609867, 0.06646359711885452, -0.010503931902348995, 0.022089626640081406, 0.05244393274188042, 0.0932048112154007, 0.037991560995578766, -0.06910310685634613, -0.026481591165065765, -0.02795279026031494, 0.005787439178675413, 0.004094477742910385, 0.002164880745112896, 0.012970354408025742, -0.03370777517557144, -0.03773193806409836, -0.03883533924818039, -0.04738127812743187, 0.007047694642096758, -0.06503567099571228, 0.054694004356861115, 0.006766435690224171, -0.003099254798144102, -0.0588047094643116, -0.05638155713677406, 0.0005276981391943991, 0.03574149310588837, -0.041583020240068436, -0.02301994524896145, 0.024166613817214966, -0.034075576812028885, 0.05049675703048706, 0.012202301062643528, 0.0029451034497469664, 0.03182550519704819, 0.06001628562808037, 0.054131485521793365, 0.03675835207104683, 0.034551553428173065, -0.058674897998571396, 0.0530497208237648, 0.005343915894627571, -0.007328953128308058, 0.01928785815834999, 0.07053103297948837, 0.04149647802114487, 0.0005929420585744083, 0.044611960649490356, -0.030722105875611305, -0.03721269220113754, -0.04290277138352394, -0.024815673008561134, 0.01976383477449417, -0.0060092005878686905, 0.038143008947372437, 0.007675117813050747, -0.0027855432126671076, 0.009086820296943188, 0.029186001047492027, -0.05499689653515816, -0.026243602856993675, 0.029207635670900345, -0.019536662846803665, 0.04625624045729637, -0.02875329554080963, 0.0024569572415202856, -0.016399547457695007, 0.022414157167077065, -0.029056189581751823, -0.009860281832516193, 0.002809882862493396, 0.06927618384361267, 0.016085835173726082, -0.03355632722377777, -0.03755885735154152, 0.008091596886515617, -0.003929508849978447, 0.03868389129638672, -0.03595784679055214, 0.026546496897935867, -0.020391257479786873, -0.0065284473821520805, 0.02563781477510929, 0.008929964154958725, 0.009211222641170025, -0.03076537698507309, -0.042946044355630875, -0.00044217114918865263, 0.012732366099953651, -0.04539082944393158, 0.009438393637537956, 0.0495448037981987, -0.028472036123275757, -0.001454973011277616, 0.04337874799966812, 0.02459932118654251, -0.02436133287847042, 0.021494656801223755, -0.0540449433028698, 0.06001628562808037, 0.03468136489391327, 0.01990446262061596, 0.002823404734954238, -0.02845040149986744, 0.010547202080488205, -0.010006319731473923, -0.05962684750556946, -0.03708288073539734, 0.04777071252465248, 0.04707838222384453, -0.03204185888171196, 0.010406572371721268, 0.007264047395437956, 0.01969892717897892, 0.05504016950726509, 0.011639784090220928, 0.00904895830899477, 0.023604096844792366, 0.016442816704511642, -0.004651586525142193, 0.020986227318644524, 0.03154424577951431, 0.0029883738607168198, 0.023690639063715935, -0.025854166597127914, 0.042058996856212616, 0.06321830302476883, 0.002877493156120181, 0.08684404194355011, -0.05075637996196747, -0.12055181711912155, -0.07009832561016083, -0.011564060114324093, -0.08610843867063522, 0.007821155712008476, -0.006393227260559797, 0.04225371405482292, -0.04681875929236412, 0.02669794298708439, 0.03308035433292389, 0.012061672285199165, 0.004819259978830814, -0.06871367245912552, 0.02548636682331562, -0.017459675669670105, 0.01842244528234005, -0.014355012215673923, -0.042708054184913635, -0.009795376099646091, 0.02308485098183155, -0.05352569743990898, -0.07459846884012222, -0.04768417030572891, 0.0575498603284359, 0.03171733021736145, -0.02693593129515648, -0.0016185898566618562, 0.05793929472565651, -0.060448989272117615, 0.015458411537110806, 0.018671251833438873, -0.012040036730468273, -0.0077724764123559, 0.01103940512984991, 0.008610843680799007, -0.04824668914079666, -0.015772122889757156, 0.023669002577662468, -0.002904537133872509, 0.0071829152293503284, 0.00962770264595747, -0.05439110845327377, -0.0076697091571986675, 0.042058996856212616, 0.022035539150238037, 0.008924555964767933, 0.030375942587852478, 0.07208877056837082, -0.015858665108680725, -0.019114775583148003, 0.021473022177815437, -0.018714522942900658, -0.03474627062678337, 0.06040572002530098, 0.027909519150853157, -0.07217531651258469, -0.024642590433359146, -0.019266221672296524, -0.03364286944270134, -0.009308582171797752, -0.054694004356861115, -0.031609151512384415, -0.0052411481738090515, 0.016756528988480568, -0.07265128940343857, -0.08117559552192688, -0.02955380082130432, 0.033751048147678375, -0.0060849240981042385, 0.014041300863027573, -0.03212840110063553, -0.0008769052219577134, 0.010271351784467697, -0.0017470493912696838, 0.0368448905646801, -0.03738577291369438, 0.06771844625473022, -0.04281623288989067, -0.009600657969713211, -0.004094477742910385, -0.014149476774036884, 0.020964592695236206, 0.031912047415971756, 0.020369622856378555, -0.07321380823850632, -0.022587237879633904, 0.030375942587852478, -0.004965298343449831, -0.03476790338754654, 0.02516183815896511, -0.016626717522740364, 0.04569372534751892, -0.055169980973005295, 0.06689630448818207, 0.06248270720243454, 0.038316093385219574, -0.04984769970178604, -0.003726677969098091, -0.03554677590727806, 0.0415397509932518, 0.007615620736032724, -0.05456419289112091, 0.034075576812028885, -0.010687831789255142, 0.032236576080322266, -0.022327614948153496, 0.012472742237150669, 0.073819600045681, 0.03323179855942726, 0.018801063299179077, -0.014863441698253155, -0.006068697664886713, -0.060059554874897, -0.006642032880336046, -0.04108540713787079, 0.014117023907601833, 0.035200610756874084, 0.00493284547701478, 0.0032236576080322266, 0.05343915522098541, 0.04993424192070961, -0.01777338795363903, -0.03892188146710396, -0.038878608494997025, 0.025919072329998016, 0.01952584646642208, 0.04415762051939964, 0.007610212080180645, -0.0334048829972744, -0.02213289774954319, 0.04924191161990166, -0.005297940690070391, 0.0066041708923876286, -0.0051329717971384525, 0.0008316063322126865, -0.0634346604347229, 0.023863719776272774, -0.016778163611888885, 0.011088084429502487, -0.011336890049278736, 0.015458411537110806, 0.008302541449666023, -0.039441127330064774, 0.06464623659849167, -0.05915087088942528, 0.03173896670341492, -0.07459846884012222, 0.0013758690329268575, -0.032972175627946854, 0.02518347278237343, -0.01937439851462841, -0.0060092005878686905, -0.005846936255693436, 0.07360324263572693, -0.015436776913702488, 0.03437846899032593, 0.034876082092523575, -0.03818628191947937, 0.02622196637094021, -0.041907548904418945, -0.026351777836680412, 0.03764539957046509, -0.053092993795871735, 0.01474444754421711, -0.05802583694458008, 0.01646445319056511, -0.07983420789241791, -0.006398635916411877, 0.02168937399983406, -0.06378082185983658, 0.0003282478719484061, -0.03085191734135151, -0.03768866881728172, 0.02667630836367607, -0.019796287640929222, -0.028969647362828255, -0.004010641016066074, -0.0057928478345274925, -0.00006258175562834367, 0.0124186547473073, -0.01293790154159069, 0.013327335938811302, 0.02364736795425415, -0.0014130546478554606, -0.03349142149090767, 0.025291649624705315, -0.019893646240234375, -0.020066728815436363, -0.008778517134487629, 0.0047246054746210575, 0.05382859334349632, -0.01860634610056877, 0.038792070001363754, -0.02803933061659336, -0.02014245092868805, -0.003018122399225831, -0.025529637932777405, 0.014484823681414127, 0.025681084021925926, 0.011239531449973583, 0.03682325780391693, -0.007474991492927074, 0.02637341432273388, 0.028060967102646828, 0.0073343622498214245, -0.018595527857542038, 0.010536384768784046, 0.02643832005560398, 0.020953774452209473, 0.03574149310588837, -0.04785725474357605, -0.10826297104358673, -0.004259447101503611, -0.06767517328262329, -0.007193732541054487, 0.01553413551300764, -0.018379176035523415, -0.03764539957046509, -0.001720005297102034, 0.014722811989486217, -0.06014609709382057, -0.01318670716136694, -0.02041289210319519, -0.03210676461458206, 0.02165692113339901, 0.02058597467839718, -0.018887605518102646, -0.02201390452682972, -0.021916544064879417, -0.058674897998571396, 0.020726604387164116, -0.0264599546790123, 0.04642932489514351, 0.02509693242609501, 0.056208472698926926, -0.07563696056604385, 0.011120537295937538, 0.08442088961601257, -0.04050125554203987, 0.009238267317414284, -0.023863719776272774, 0.016129106283187866, 0.002195981564000249, 0.012353748083114624, 0.03489771485328674, -0.006020018365234137, -0.02453441545367241, -0.006858385633677244, -0.02438296750187874, 0.0012737774522975087, 0.002336610807105899, 0.08628152310848236, 0.04249170050024986, -0.01139097847044468, -0.029661977663636208, 0.024815673008561134, 0.009779149666428566, -0.041345033794641495, -0.013305701315402985, -0.035828035324811935, -0.009833237156271935, 0.08173811435699463, -0.02979178912937641, 0.042859502136707306, -0.03020286001265049, -0.01378167700022459, 0.0014752560527995229, 0.054694004356861115, -0.010109087452292442, 0.012040036730468273, 0.01845490001142025, 0.014863441698253155, 0.04984769970178604, 0.03528715297579765, -0.03282072767615318, -0.0008735246956348419, 0.021310755982995033, 0.013143436051905155, -0.03825118765234947, 0.059497036039829254, -0.00033450181945227087, 0.0029829649720340967, -0.03405394032597542, -0.016085835173726082, 0.010969090275466442, -0.028580212965607643, 0.013911489397287369, -0.010644560679793358, -0.04660240560770035, -0.004770580679178238 ]
7,486
eth_account.account
create_with_mnemonic
Create a new private key and related mnemonic. .. CAUTION:: This feature is experimental, unaudited, and likely to change soon Creates a new private key, and returns it as a :class:`~eth_account.local.LocalAccount`, alongside the mnemonic that can used to regenerate it using any BIP39-compatible wallet. :param str passphrase: Extra passphrase to encrypt the seed phrase :param int num_words: Number of words to use with seed phrase. Default is 12 words. Must be one of [12, 15, 18, 21, 24]. :param str language: Language to use for BIP39 mnemonic seed phrase. :param str account_path: Specify an alternate HD path for deriving the seed using BIP32 HD wallet key derivation. :returns: A tuple consisting of an object with private key and convenience methods, and the mnemonic seed phrase that can be used to restore the account. :rtype: (LocalAccount, str) .. doctest:: python >>> from eth_account import Account >>> Account.enable_unaudited_hdwallet_features() >>> acct, mnemonic = Account.create_with_mnemonic() >>> acct.address # doctest: +SKIP '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acct == Account.from_mnemonic(mnemonic) True # These methods are also available: # sign_message(), sign_transaction(), encrypt() # They correspond to the same-named methods in Account.* # but without the private key argument
from collections.abc import ( Mapping, ) import json import os from typing import ( Any, Dict, Optional, Tuple, TypeVar, Union, cast, ) import warnings from eth_keyfile import ( create_keyfile_json, decode_keyfile_json, ) from eth_keys import ( KeyAPI, keys, ) from eth_keys.exceptions import ( ValidationError, ) from eth_typing import ( ChecksumAddress, Hash32, HexStr, ) from eth_utils.curried import ( combomethod, hexstr_if_str, is_dict, keccak, text_if_str, to_bytes, to_int, ) from eth_utils.toolz import ( dissoc, ) from hexbytes import ( HexBytes, ) from eth_account._utils.legacy_transactions import ( Transaction, vrs_from, ) from eth_account._utils.signing import ( hash_of_signed_transaction, sign_message_hash, sign_transaction_dict, to_standard_signature_bytes, to_standard_v, ) from eth_account.datastructures import ( SignedMessage, SignedTransaction, ) from eth_account.hdaccount import ( ETHEREUM_DEFAULT_PATH, generate_mnemonic, key_from_seed, seed_from_mnemonic, ) from eth_account.messages import ( SignableMessage, _hash_eip191_message, encode_typed_data, ) from eth_account.signers.local import ( LocalAccount, ) from eth_account.typed_transactions import ( TypedTransaction, ) VRS = TypeVar("VRS", bytes, HexStr, int) class Account: """ The primary entry point for working with Ethereum private keys. It does **not** require a connection to an Ethereum node. """ _keys = keys _default_kdf = os.getenv("ETH_ACCOUNT_KDF", "scrypt") # Enable unaudited features (off by default) _use_unaudited_hdwallet_features = False @classmethod def enable_unaudited_hdwallet_features(cls): """ Use this flag to enable unaudited HD Wallet features. """ cls._use_unaudited_hdwallet_features = True @combomethod def create(self, extra_entropy=""): r""" Creates a new private key, and returns it as a :class:`~eth_account.local.LocalAccount`. :param extra_entropy: Add extra randomness to whatever randomness your OS can provide :type extra_entropy: str or bytes or int :returns: an object with private key and convenience methods .. code-block:: python >>> from eth_account import Account >>> acct = Account.create('KEYSMASH FJAFJKLDSKF7JKFDJ 1530') >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acct.key HexBytes('0x8676e9a8c86c8921e922e61e0bb6e9e9689aad4c99082620610b00140e5f21b8') # These methods are also available: sign_message(), sign_transaction(), # encrypt(). # They correspond to the same-named methods in Account.* # but without the private key argument """ extra_key_bytes = text_if_str(to_bytes, extra_entropy) key_bytes = keccak(os.urandom(32) + extra_key_bytes) return self.from_key(key_bytes) @staticmethod def decrypt(keyfile_json, password): """ Decrypts a private key. The key may have been encrypted using an Ethereum client or :meth:`~Account.encrypt`. :param keyfile_json: The encrypted key :type keyfile_json: dict or str :param str password: The password that was used to encrypt the key :returns: the raw private key :rtype: ~hexbytes.main.HexBytes .. doctest:: python >>> encrypted = { ... 'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', ... 'crypto': {'cipher': 'aes-128-ctr', ... 'cipherparams': {'iv': '482ef54775b0cc59f25717711286f5c8'}, ... 'ciphertext': 'cb636716a9fd46adbb31832d964df2082536edd5399a3393327dc89b0193a2be', ... 'kdf': 'scrypt', ... 'kdfparams': {}, ... 'kdfparams': {'dklen': 32, ... 'n': 262144, ... 'p': 8, ... 'r': 1, ... 'salt': 'd3c9a9945000fcb6c9df0f854266d573'}, ... 'mac': '4f626ec5e7fea391b2229348a65bfef532c2a4e8372c0a6a814505a350a7689d'}, ... 'id': 'b812f3f9-78cc-462a-9e89-74418aa27cb0', ... 'version': 3} >>> Account.decrypt(encrypted, 'password') HexBytes('0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364') """ # noqa: E501 if isinstance(keyfile_json, str): keyfile = json.loads(keyfile_json) elif is_dict(keyfile_json): keyfile = keyfile_json else: raise TypeError( "The keyfile should be supplied as a JSON string, or a dictionary." ) password_bytes = text_if_str(to_bytes, password) return HexBytes(decode_keyfile_json(keyfile, password_bytes)) @classmethod def encrypt(cls, private_key, password, kdf=None, iterations=None): """ Creates a dictionary with an encrypted version of your private key. To import this keyfile into Ethereum clients like geth and parity: encode this dictionary with :func:`json.dumps` and save it to disk where your client keeps key files. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :param str password: The password which you will need to unlock the account in your client :param str kdf: The key derivation function to use when encrypting your private key :param int iterations: The work factor for the key derivation function :returns: The data to use in your encrypted file :rtype: dict If kdf is not set, the default key derivation function falls back to the environment variable :envvar:`ETH_ACCOUNT_KDF`. If that is not set, then 'scrypt' will be used as the default. .. doctest:: python >>> from pprint import pprint >>> encrypted = Account.encrypt( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364, ... 'password' ... ) >>> pprint(encrypted) {'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', 'crypto': {'cipher': 'aes-128-ctr', 'cipherparams': {'iv': '...'}, 'ciphertext': '...', 'kdf': 'scrypt', 'kdfparams': {'dklen': 32, 'n': 262144, 'p': 1, 'r': 8, 'salt': '...'}, 'mac': '...'}, 'id': '...', 'version': 3} >>> with open('my-keyfile', 'w') as f: # doctest: +SKIP ... f.write(json.dumps(encrypted)) """ if isinstance(private_key, keys.PrivateKey): key_bytes = private_key.to_bytes() else: key_bytes = HexBytes(private_key) if kdf is None: kdf = cls._default_kdf password_bytes = text_if_str(to_bytes, password) assert len(key_bytes) == 32 return create_keyfile_json( key_bytes, password_bytes, kdf=kdf, iterations=iterations ) @combomethod def from_key(self, private_key): r""" Returns a convenient object for working with the given private key. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :return: object with methods for signing and encrypting :rtype: LocalAccount .. doctest:: python >>> acct = Account.from_key( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364) >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acc
(self, passphrase: str = '', num_words: int = 12, language: str = 'english', account_path: str = "m/44'/60'/0'/0/0") -> Tuple[eth_account.signers.local.LocalAccount, str]
[ 0.04513120651245117, -0.057246968150138855, -0.039679113775491714, 0.04402780905365944, 0.03857571631669998, -0.06023263558745384, -0.029034554958343506, -0.011347707360982895, 0.000809971010312438, -0.05010732263326645, 0.04346529021859169, 0.026806119829416275, 0.012245572172105312, 0.018649617210030556, -0.04746781662106514, 0.05690080299973488, 0.024967120960354805, 0.016680805012583733, 0.0012676925398409367, -0.020488616079092026, 0.020813144743442535, 0.019190499559044838, 0.01830345205962658, 0.07446865737438202, -0.0403498075902462, 0.003940326627343893, 0.04435233771800995, 0.039354585111141205, 0.04556391388177872, -0.017459675669670105, -0.011856136843562126, -0.02572435513138771, 0.02667630836367607, 0.056208472698926926, -0.048289958387613297, -0.07520425319671631, 0.02356082759797573, 0.017016151919960976, -0.06875693798065186, -0.002193277236074209, 0.029856694862246513, 0.06507894396781921, 0.07697834819555283, -0.04625624045729637, 0.02356082759797573, -0.004654291085898876, -0.0001423196226824075, 0.019590752199292183, -0.010341666638851166, 0.0003924776101484895, 0.03355632722377777, -0.00686920341104269, -0.01139097847044468, -0.019839556887745857, 0.007534488569945097, -0.0008065905421972275, 0.003924100194126368, -0.03517897427082062, -0.026633037254214287, -0.025075295940041542, -0.03563331812620163, -0.005917250644415617, 0.022500697523355484, 0.03636891767382622, -0.02819077856838703, 0.012537647970020771, -0.0357198566198349, -0.024036802351474762, -0.007026059087365866, 0.020001821219921112, 0.03528715297579765, -0.0034210796002298594, -0.023041579872369766, 0.028255684301257133, -0.018000558018684387, 0.007031468208879232, -0.01162896677851677, -0.016875524073839188, -0.08152175694704056, -0.04794379323720932, 0.05127562955021858, -0.0345948226749897, -0.026481591165065765, 0.019277039915323257, 0.039224773645401, 0.06841077655553818, 0.06386736780405045, -0.0019890940748155117, -0.010693239979445934, -0.015945205464959145, -0.05750659108161926, 0.026806119829416275, -0.08541610836982727, 0.05330934375524521, 0.049977511167526245, -0.047987066209316254, -0.004183723591268063, -0.06399717926979065, -0.03130625933408737, 0.039830561727285385, 0.027065742760896683, 0.0496746189892292, -0.040241632610559464, 0.02091050334274769, 0.013608595356345177, -0.02892637811601162, -0.07771395146846771, 0.04824668914079666, 0.04331384226679802, -0.01685388758778572, -0.07321380823850632, -0.017373135313391685, 0.012602554634213448, -0.05071311071515083, 0.0008451283792965114, 0.03747231513261795, 0.01607501693069935, 0.02340937964618206, 0.010547202080488205, -0.0017443449469283223, 0.12176339328289032, -0.022976674139499664, 0.00019809808873105794, -0.021592015400528908, 0.0059010242111980915, -0.022717051208019257, 0.028710024431347847, 0.010195628739893436, 0.02293340303003788, -0.05452091991901398, 0.016518540680408478, 0.04660240560770035, 0.006225553806871176, 0.0540449433028698, -0.011077266186475754, 0.002891015028581023, 0.008389081805944443, 0.027844613417983055, -0.02228434570133686, 0.05041021853685379, 0.04117194935679436, 0.01602092944085598, 0.023106485605239868, -0.01717841811478138, -0.07896879315376282, -0.03729923442006111, -0.04915536940097809, -0.052227579057216644, 0.001828181673772633, -0.01833590492606163, -0.007161279674619436, 0.004778693895787001, -0.07581004500389099, 0.08442088961601257, 0.013814129866659641, 0.027606625109910965, -0.002525919582694769, -0.03282072767615318, -0.045910079032182693, -0.02643832005560398, -0.062352895736694336, -0.0007322191959246993, 0.03818628191947937, -0.04993424192070961, 0.005690080113708973, 0.005449387710541487, -0.061487484723329544, -0.025118567049503326, -0.030159588903188705, -0.0008011817117221653, -0.025291649624705315, 0.010877139866352081, -0.029510529711842537, 0.027195554226636887, 0.04880920425057411, 0.007339770905673504, 0.015447594225406647, -0.06179037690162659, -0.059021059423685074, -0.0599297434091568, 0.012494377791881561, -0.006912474054843187, 0.017676029354333878, 0.02388535626232624, 0.04417925328016281, 0.03485444560647011, 0.01797892339527607, 0.07793030142784119, 0.05560268461704254, -0.06611743569374084, -0.020986227318644524, 0.019039051607251167, 0.016096653416752815, 0.012526830658316612, -0.03890024498105049, 0.017492128536105156, 0.014344194903969765, -0.0002100989077007398, -0.048852477222681046, 0.02180836908519268, -0.043595101684331894, -0.00022953686129767448, 0.02228434570133686, -0.03736414015293121, -0.03197695314884186, -0.032799094915390015, -0.04242679476737976, -0.007437129504978657, 0.026827754452824593, -0.04768417030572891, 0.02091050334274769, -0.05339588597416878, 0.010476887226104736, 0.05971338972449303, 0.013532871380448341, -0.010038772597908974, 0.02819077856838703, 0.020337168127298355, -0.004167497158050537, 0.002815291518345475, 0.08108904957771301, 0.01590193621814251, -0.004294604528695345, -0.04915536940097809, 0.03219330683350563, -0.002891015028581023, -0.021235033869743347, 0.02014245092868805, -0.01833590492606163, -0.03154424577951431, 0.09839728474617004, 0.008259270340204239, -0.05897779017686844, 0.016507724300026894, 0.013727589510381222, -0.039679113775491714, 0.01774093508720398, -0.061011508107185364, 0.037104517221450806, -0.013868218287825584, -0.006068697664886713, 0.012397019192576408, 0.05512670800089836, -0.02420988492667675, 0.005427752621471882, -0.007042285520583391, -0.00002051549199677538, 0.015620676800608635, -0.0047976248897612095, 0.0021689373534172773, -0.00894619058817625, -0.0334697887301445, 0.01913641020655632, 0.04539082944393158, 0.009725061245262623, -0.03595784679055214, 0.01833590492606163, -0.03005141206085682, 0.05625174567103386, 0.033772680908441544, -0.003891647094860673, -0.05975665897130966, -0.05889124795794487, -0.010996134020388126, 0.05075637996196747, -0.028904741629958153, -0.010006319731473923, 0.02340937964618206, 0.018476534634828568, -0.016929611563682556, 0.07671872526407242, 0.02845040149986744, -0.039203137159347534, 0.014095389284193516, -0.014571364969015121, 0.0026584358420222998, 0.039679113775491714, 0.005765803623944521, 0.02563781477510929, 0.010006319731473923, 0.01100695226341486, -0.048376500606536865, 0.004018754232674837, -0.009076002985239029, 0.031133176758885384, 0.0030803238041698933, -0.019212134182453156, -0.07377632707357407, 0.03284236416220665, -0.02572435513138771, 0.013868218287825584, 0.04073924571275711, 0.015133882872760296, -0.0334048829972744, 0.05897779017686844, -0.017578670755028725, -0.06875693798065186, -0.059021059423685074, 0.04080415144562721, -0.01502570603042841, 0.009362669661641121, 0.06269905716180801, 0.09606067091226578, 0.01583702862262726, -0.009860281832516193, 0.03654199838638306, 0.04331384226679802, 0.024253156036138535, -0.0369747057557106, 0.041734468191862106, -0.057246968150138855, -0.008372855372726917, 0.061574023216962814, -0.008161911740899086, 0.007896879687905312, -0.04218880832195282, 0.051881417632102966, 0.014711994677782059, 0.025681084021925926, 0.035590045154094696, 0.005449387710541487, 0.036650173366069794, -0.031284622848033905, -0.0011277393205091357, 0.025854166597127914, -0.06031917780637741, 0.01219148375093937, 0.012829724699258804, 0.025356555357575417, 0.016118288040161133, -0.055169980973005295, -0.0077346148900687695, 0.019558299332857132, 0.013608595356345177, -0.05456419289112091, 0.04495812579989433, 0.0019498801557347178, -0.020164087414741516, -0.018736157566308975, -0.033513057976961136, 0.06823769211769104, -0.060448989272117615, 0.021992268040776253, -0.028169142082333565, -0.036325644701719284, -0.029056189581751823, 0.03948439657688141, -0.025075295940041542, -0.02723882533609867, 0.06646359711885452, -0.010503931902348995, 0.022089626640081406, 0.05244393274188042, 0.0932048112154007, 0.037991560995578766, -0.06910310685634613, -0.026481591165065765, -0.02795279026031494, 0.005787439178675413, 0.004094477742910385, 0.002164880745112896, 0.012970354408025742, -0.03370777517557144, -0.03773193806409836, -0.03883533924818039, -0.04738127812743187, 0.007047694642096758, -0.06503567099571228, 0.054694004356861115, 0.006766435690224171, -0.003099254798144102, -0.0588047094643116, -0.05638155713677406, 0.0005276981391943991, 0.03574149310588837, -0.041583020240068436, -0.02301994524896145, 0.024166613817214966, -0.034075576812028885, 0.05049675703048706, 0.012202301062643528, 0.0029451034497469664, 0.03182550519704819, 0.06001628562808037, 0.054131485521793365, 0.03675835207104683, 0.034551553428173065, -0.058674897998571396, 0.0530497208237648, 0.005343915894627571, -0.007328953128308058, 0.01928785815834999, 0.07053103297948837, 0.04149647802114487, 0.0005929420585744083, 0.044611960649490356, -0.030722105875611305, -0.03721269220113754, -0.04290277138352394, -0.024815673008561134, 0.01976383477449417, -0.0060092005878686905, 0.038143008947372437, 0.007675117813050747, -0.0027855432126671076, 0.009086820296943188, 0.029186001047492027, -0.05499689653515816, -0.026243602856993675, 0.029207635670900345, -0.019536662846803665, 0.04625624045729637, -0.02875329554080963, 0.0024569572415202856, -0.016399547457695007, 0.022414157167077065, -0.029056189581751823, -0.009860281832516193, 0.002809882862493396, 0.06927618384361267, 0.016085835173726082, -0.03355632722377777, -0.03755885735154152, 0.008091596886515617, -0.003929508849978447, 0.03868389129638672, -0.03595784679055214, 0.026546496897935867, -0.020391257479786873, -0.0065284473821520805, 0.02563781477510929, 0.008929964154958725, 0.009211222641170025, -0.03076537698507309, -0.042946044355630875, -0.00044217114918865263, 0.012732366099953651, -0.04539082944393158, 0.009438393637537956, 0.0495448037981987, -0.028472036123275757, -0.001454973011277616, 0.04337874799966812, 0.02459932118654251, -0.02436133287847042, 0.021494656801223755, -0.0540449433028698, 0.06001628562808037, 0.03468136489391327, 0.01990446262061596, 0.002823404734954238, -0.02845040149986744, 0.010547202080488205, -0.010006319731473923, -0.05962684750556946, -0.03708288073539734, 0.04777071252465248, 0.04707838222384453, -0.03204185888171196, 0.010406572371721268, 0.007264047395437956, 0.01969892717897892, 0.05504016950726509, 0.011639784090220928, 0.00904895830899477, 0.023604096844792366, 0.016442816704511642, -0.004651586525142193, 0.020986227318644524, 0.03154424577951431, 0.0029883738607168198, 0.023690639063715935, -0.025854166597127914, 0.042058996856212616, 0.06321830302476883, 0.002877493156120181, 0.08684404194355011, -0.05075637996196747, -0.12055181711912155, -0.07009832561016083, -0.011564060114324093, -0.08610843867063522, 0.007821155712008476, -0.006393227260559797, 0.04225371405482292, -0.04681875929236412, 0.02669794298708439, 0.03308035433292389, 0.012061672285199165, 0.004819259978830814, -0.06871367245912552, 0.02548636682331562, -0.017459675669670105, 0.01842244528234005, -0.014355012215673923, -0.042708054184913635, -0.009795376099646091, 0.02308485098183155, -0.05352569743990898, -0.07459846884012222, -0.04768417030572891, 0.0575498603284359, 0.03171733021736145, -0.02693593129515648, -0.0016185898566618562, 0.05793929472565651, -0.060448989272117615, 0.015458411537110806, 0.018671251833438873, -0.012040036730468273, -0.0077724764123559, 0.01103940512984991, 0.008610843680799007, -0.04824668914079666, -0.015772122889757156, 0.023669002577662468, -0.002904537133872509, 0.0071829152293503284, 0.00962770264595747, -0.05439110845327377, -0.0076697091571986675, 0.042058996856212616, 0.022035539150238037, 0.008924555964767933, 0.030375942587852478, 0.07208877056837082, -0.015858665108680725, -0.019114775583148003, 0.021473022177815437, -0.018714522942900658, -0.03474627062678337, 0.06040572002530098, 0.027909519150853157, -0.07217531651258469, -0.024642590433359146, -0.019266221672296524, -0.03364286944270134, -0.009308582171797752, -0.054694004356861115, -0.031609151512384415, -0.0052411481738090515, 0.016756528988480568, -0.07265128940343857, -0.08117559552192688, -0.02955380082130432, 0.033751048147678375, -0.0060849240981042385, 0.014041300863027573, -0.03212840110063553, -0.0008769052219577134, 0.010271351784467697, -0.0017470493912696838, 0.0368448905646801, -0.03738577291369438, 0.06771844625473022, -0.04281623288989067, -0.009600657969713211, -0.004094477742910385, -0.014149476774036884, 0.020964592695236206, 0.031912047415971756, 0.020369622856378555, -0.07321380823850632, -0.022587237879633904, 0.030375942587852478, -0.004965298343449831, -0.03476790338754654, 0.02516183815896511, -0.016626717522740364, 0.04569372534751892, -0.055169980973005295, 0.06689630448818207, 0.06248270720243454, 0.038316093385219574, -0.04984769970178604, -0.003726677969098091, -0.03554677590727806, 0.0415397509932518, 0.007615620736032724, -0.05456419289112091, 0.034075576812028885, -0.010687831789255142, 0.032236576080322266, -0.022327614948153496, 0.012472742237150669, 0.073819600045681, 0.03323179855942726, 0.018801063299179077, -0.014863441698253155, -0.006068697664886713, -0.060059554874897, -0.006642032880336046, -0.04108540713787079, 0.014117023907601833, 0.035200610756874084, 0.00493284547701478, 0.0032236576080322266, 0.05343915522098541, 0.04993424192070961, -0.01777338795363903, -0.03892188146710396, -0.038878608494997025, 0.025919072329998016, 0.01952584646642208, 0.04415762051939964, 0.007610212080180645, -0.0334048829972744, -0.02213289774954319, 0.04924191161990166, -0.005297940690070391, 0.0066041708923876286, -0.0051329717971384525, 0.0008316063322126865, -0.0634346604347229, 0.023863719776272774, -0.016778163611888885, 0.011088084429502487, -0.011336890049278736, 0.015458411537110806, 0.008302541449666023, -0.039441127330064774, 0.06464623659849167, -0.05915087088942528, 0.03173896670341492, -0.07459846884012222, 0.0013758690329268575, -0.032972175627946854, 0.02518347278237343, -0.01937439851462841, -0.0060092005878686905, -0.005846936255693436, 0.07360324263572693, -0.015436776913702488, 0.03437846899032593, 0.034876082092523575, -0.03818628191947937, 0.02622196637094021, -0.041907548904418945, -0.026351777836680412, 0.03764539957046509, -0.053092993795871735, 0.01474444754421711, -0.05802583694458008, 0.01646445319056511, -0.07983420789241791, -0.006398635916411877, 0.02168937399983406, -0.06378082185983658, 0.0003282478719484061, -0.03085191734135151, -0.03768866881728172, 0.02667630836367607, -0.019796287640929222, -0.028969647362828255, -0.004010641016066074, -0.0057928478345274925, -0.00006258175562834367, 0.0124186547473073, -0.01293790154159069, 0.013327335938811302, 0.02364736795425415, -0.0014130546478554606, -0.03349142149090767, 0.025291649624705315, -0.019893646240234375, -0.020066728815436363, -0.008778517134487629, 0.0047246054746210575, 0.05382859334349632, -0.01860634610056877, 0.038792070001363754, -0.02803933061659336, -0.02014245092868805, -0.003018122399225831, -0.025529637932777405, 0.014484823681414127, 0.025681084021925926, 0.011239531449973583, 0.03682325780391693, -0.007474991492927074, 0.02637341432273388, 0.028060967102646828, 0.0073343622498214245, -0.018595527857542038, 0.010536384768784046, 0.02643832005560398, 0.020953774452209473, 0.03574149310588837, -0.04785725474357605, -0.10826297104358673, -0.004259447101503611, -0.06767517328262329, -0.007193732541054487, 0.01553413551300764, -0.018379176035523415, -0.03764539957046509, -0.001720005297102034, 0.014722811989486217, -0.06014609709382057, -0.01318670716136694, -0.02041289210319519, -0.03210676461458206, 0.02165692113339901, 0.02058597467839718, -0.018887605518102646, -0.02201390452682972, -0.021916544064879417, -0.058674897998571396, 0.020726604387164116, -0.0264599546790123, 0.04642932489514351, 0.02509693242609501, 0.056208472698926926, -0.07563696056604385, 0.011120537295937538, 0.08442088961601257, -0.04050125554203987, 0.009238267317414284, -0.023863719776272774, 0.016129106283187866, 0.002195981564000249, 0.012353748083114624, 0.03489771485328674, -0.006020018365234137, -0.02453441545367241, -0.006858385633677244, -0.02438296750187874, 0.0012737774522975087, 0.002336610807105899, 0.08628152310848236, 0.04249170050024986, -0.01139097847044468, -0.029661977663636208, 0.024815673008561134, 0.009779149666428566, -0.041345033794641495, -0.013305701315402985, -0.035828035324811935, -0.009833237156271935, 0.08173811435699463, -0.02979178912937641, 0.042859502136707306, -0.03020286001265049, -0.01378167700022459, 0.0014752560527995229, 0.054694004356861115, -0.010109087452292442, 0.012040036730468273, 0.01845490001142025, 0.014863441698253155, 0.04984769970178604, 0.03528715297579765, -0.03282072767615318, -0.0008735246956348419, 0.021310755982995033, 0.013143436051905155, -0.03825118765234947, 0.059497036039829254, -0.00033450181945227087, 0.0029829649720340967, -0.03405394032597542, -0.016085835173726082, 0.010969090275466442, -0.028580212965607643, 0.013911489397287369, -0.010644560679793358, -0.04660240560770035, -0.004770580679178238 ]
7,487
eth_account.account
decrypt
Decrypts a private key. The key may have been encrypted using an Ethereum client or :meth:`~Account.encrypt`. :param keyfile_json: The encrypted key :type keyfile_json: dict or str :param str password: The password that was used to encrypt the key :returns: the raw private key :rtype: ~hexbytes.main.HexBytes .. doctest:: python >>> encrypted = { ... 'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', ... 'crypto': {'cipher': 'aes-128-ctr', ... 'cipherparams': {'iv': '482ef54775b0cc59f25717711286f5c8'}, ... 'ciphertext': 'cb636716a9fd46adbb31832d964df2082536edd5399a3393327dc89b0193a2be', ... 'kdf': 'scrypt', ... 'kdfparams': {}, ... 'kdfparams': {'dklen': 32, ... 'n': 262144, ... 'p': 8, ... 'r': 1, ... 'salt': 'd3c9a9945000fcb6c9df0f854266d573'}, ... 'mac': '4f626ec5e7fea391b2229348a65bfef532c2a4e8372c0a6a814505a350a7689d'}, ... 'id': 'b812f3f9-78cc-462a-9e89-74418aa27cb0', ... 'version': 3} >>> Account.decrypt(encrypted, 'password') HexBytes('0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364')
@staticmethod def decrypt(keyfile_json, password): """ Decrypts a private key. The key may have been encrypted using an Ethereum client or :meth:`~Account.encrypt`. :param keyfile_json: The encrypted key :type keyfile_json: dict or str :param str password: The password that was used to encrypt the key :returns: the raw private key :rtype: ~hexbytes.main.HexBytes .. doctest:: python >>> encrypted = { ... 'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', ... 'crypto': {'cipher': 'aes-128-ctr', ... 'cipherparams': {'iv': '482ef54775b0cc59f25717711286f5c8'}, ... 'ciphertext': 'cb636716a9fd46adbb31832d964df2082536edd5399a3393327dc89b0193a2be', ... 'kdf': 'scrypt', ... 'kdfparams': {}, ... 'kdfparams': {'dklen': 32, ... 'n': 262144, ... 'p': 8, ... 'r': 1, ... 'salt': 'd3c9a9945000fcb6c9df0f854266d573'}, ... 'mac': '4f626ec5e7fea391b2229348a65bfef532c2a4e8372c0a6a814505a350a7689d'}, ... 'id': 'b812f3f9-78cc-462a-9e89-74418aa27cb0', ... 'version': 3} >>> Account.decrypt(encrypted, 'password') HexBytes('0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364') """ # noqa: E501 if isinstance(keyfile_json, str): keyfile = json.loads(keyfile_json) elif is_dict(keyfile_json): keyfile = keyfile_json else: raise TypeError( "The keyfile should be supplied as a JSON string, or a dictionary." ) password_bytes = text_if_str(to_bytes, password) return HexBytes(decode_keyfile_json(keyfile, password_bytes))
(keyfile_json, password)
[ 0.06427541375160217, -0.06542055308818817, 0.0053932243026793, 0.031158799305558205, 0.0036639757454395294, -0.05836503207683563, 0.002185225486755371, 0.05267628654837608, 0.027003062888979912, -0.02417716011404991, 0.07295628637075424, 0.05906688794493675, 0.016955411061644554, -0.003892541164532304, -0.03309814631938934, 0.056296397000551224, 0.023253662511706352, 0.036145687103271484, 0.013547705486416817, -0.0317683070898056, 0.014526613056659698, 0.016124263405799866, 0.03372612223029137, 0.07816481590270996, -0.04972109571099281, 0.014046394266188145, 0.039193227887153625, 0.039710383862257004, 0.04635956510901451, -0.0369214229285717, -0.007729672826826572, -0.025691695511341095, 0.025728635489940643, 0.1069040521979332, -0.061394102871418, -0.054486341774463654, 0.01944885402917862, 0.03352295234799385, -0.10535257309675217, -0.006168961990624666, 0.021332789212465286, 0.03911934792995453, 0.10380110144615173, -0.038786888122558594, 0.011359017342329025, -0.015542460605502129, -0.026707543060183525, 0.008283770643174648, -0.09345792979001999, -0.011054263450205326, 0.04381071403622627, 0.003248401917517185, 0.0038232789374887943, 0.006228989455848932, 0.035222187638282776, -0.0029875137843191624, -0.011608361266553402, -0.02417716011404991, -0.010140000842511654, 0.041483499109745026, -0.034206341952085495, -0.02094491943717003, -0.022607214748859406, 0.012781202793121338, -0.016992351040244102, 0.03265486657619476, -0.02491595782339573, -0.032710276544094086, 0.014498908072710037, 0.004732924047857523, 0.0176018588244915, 0.03657049313187599, -0.030641641467809677, 0.032747216522693634, 0.011229727417230606, -0.04621180519461632, -0.03762328252196312, 0.004222691524773836, -0.04842820018529892, -0.05142033100128174, 0.019301094114780426, -0.043108854442834854, -0.02558087557554245, 0.01611502841114998, 0.007951311767101288, 0.03677366301417351, 0.06734142452478409, -0.008814781904220581, 0.01021388079971075, 0.02192382700741291, -0.04074470326304436, -0.01773114874958992, -0.11281443387269974, 0.01722322590649128, 0.018506886437535286, -0.037383172661066055, 0.028720766305923462, -0.00712478207424283, -0.009059509262442589, 0.04163125902414322, 0.05323038622736931, 0.04839126020669937, -0.027224700897932053, 0.020409291610121727, 0.014268034137785435, -0.05662885680794716, -0.05662885680794716, 0.029496503993868828, 0.02707694098353386, -0.029256395995616913, -0.06497727334499359, -0.00911953579634428, -0.004647500347346067, -0.0454360693693161, 0.02395552024245262, 0.008431530557572842, 0.018100548535585403, -0.02196076698601246, 0.01713087595999241, 0.0037701779510825872, 0.10284066200256348, -0.008025191724300385, 0.010010710917413235, -0.019522733986377716, 0.03415093198418617, -0.014074099250137806, 0.007554208394140005, 0.00004985442501492798, 0.03187912702560425, 0.008690109476447105, 0.032045356929302216, 0.062539242208004, -0.005439399275928736, 0.05954710766673088, 0.003146817209199071, 0.008750136941671371, 0.04366295412182808, 0.03882382810115814, -0.007951311767101288, 0.04070776328444481, 0.05134645104408264, 0.01941191405057907, 0.021369729191064835, -0.012051640078425407, -0.07321486622095108, -0.038786888122558594, -0.05526208132505417, -0.07085071504116058, 0.004862213507294655, 0.04997967556118965, -0.021979236975312233, 0.05341508612036705, -0.06937312334775925, 0.038528308272361755, 0.027150820940732956, -0.010509399697184563, -0.0036039482802152634, -0.005046912934631109, -0.03599792718887329, -0.03311661630868912, -0.01827601157128811, 0.04728306457400322, 0.01649366319179535, -0.03959956392645836, 0.024232570081949234, 0.027113880962133408, -0.02822207845747471, -0.05031213536858559, -0.033670712262392044, -0.019024044275283813, -0.043995413929224014, 0.020612459629774094, -0.03745705261826515, 0.025525465607643127, 0.0657530128955841, -0.004839126020669937, -0.001755799283273518, -0.05182667076587677, -0.050792355090379715, -0.0863654688000679, -0.009493553079664707, 0.004160355310887098, 0.015062241815030575, -0.007623470388352871, 0.07018579542636871, 0.05153115093708038, 0.02059399150311947, 0.08119388669729233, 0.04573158919811249, -0.08895125985145569, -0.05666579678654671, 0.028923936188220978, 0.0107864486053586, 0.025857925415039062, -0.012300984933972359, -0.01662295125424862, 0.002625041175633669, 0.024842077866196632, -0.035702407360076904, -0.0036408882588148117, -0.034557271748781204, -0.03287650644779205, 0.029939783737063408, -0.028960876166820526, -0.03021683357656002, -0.03536994755268097, -0.022293224930763245, 0.02637508325278759, -0.006399836391210556, -0.05751541256904602, 0.022477924823760986, -0.04270251840353012, 0.02306896261870861, 0.017749618738889694, 0.013510766439139843, 0.011626831255853176, 0.04392153397202492, 0.006746148224920034, -0.024361860007047653, 0.02796349860727787, 0.08821246773004532, 0.046064045280218124, -0.00179966539144516, -0.03505595773458481, 0.02774186059832573, -0.0012467213673517108, -0.028683828189969063, 0.033061206340789795, -0.045583829283714294, -0.03472350165247917, 0.06937312334775925, 0.027538690716028214, -0.04949945583939552, 0.02663366310298443, 0.03162054717540741, -0.03549923747777939, 0.004977650474756956, -0.05167891085147858, 0.028240548446774483, -0.01100808847695589, 0.019504263997077942, 0.030198363587260246, 0.05888219177722931, 0.026929182931780815, 0.02620885521173477, -0.019393444061279297, -0.0071016945876181126, 0.04177901893854141, -0.014942186884582043, 0.012097815051674843, -0.011848471127450466, -0.020834099501371384, 0.036108747124671936, 0.012384098954498768, -0.003724002977833152, -0.014868306927382946, 0.033190492540597916, -0.04680284485220909, 0.05275016650557518, 0.05038601532578468, 0.0008836715132929385, -0.072697713971138, -0.03357836231589317, -0.002634276170283556, 0.04325661435723305, -0.06682426482439041, -0.013335301540791988, 0.01696464605629444, 0.016576776280999184, -0.0038232789374887943, 0.023752352222800255, -0.015911858528852463, 0.00044587606680579484, -0.01316907163709402, -0.007207896560430527, -0.0037678692024201155, 0.061689622700214386, -0.015376230701804161, 0.07133093476295471, 0.0020986476447433233, 0.014231094159185886, -0.0681171640753746, 0.0054209292866289616, 0.010490929707884789, 0.0487975999712944, -0.023752352222800255, -0.004234235268086195, -0.04115104302763939, 0.056037817150354385, -0.008934836834669113, 0.043515194207429886, 0.007346421480178833, -0.002047855406999588, -0.039710383862257004, 0.02148054726421833, -0.014702077955007553, -0.07321486622095108, -0.04273945838212967, 0.03501901775598526, -0.028074318543076515, -0.036404263228178024, 0.04070776328444481, 0.06043366715312004, 0.011368252336978912, -0.016983116045594215, 0.04381071403622627, 0.013926340267062187, 0.012938197702169418, -0.02532229758799076, 0.022219346836209297, -0.020187651738524437, -0.013833990320563316, 0.055372901260852814, -0.005065382923930883, -0.03529606759548187, -0.02923792600631714, 0.03091869130730629, 0.017103170976042747, 0.0099645359441638, 0.02183147706091404, 0.012947432696819305, 0.0060073500499129295, -0.014748251996934414, 0.045103609561920166, 0.03202688694000244, -0.01909792423248291, -0.03956262767314911, 0.004647500347346067, 0.040375303477048874, 0.04539912939071655, -0.057404592633247375, -0.00014213200483936816, 0.008131394162774086, -0.012273279950022697, -0.005841120611876249, 0.005347049795091152, -0.016761476173996925, -0.01528388075530529, -0.012273279950022697, -0.024140220135450363, 0.04983191564679146, -0.10409662127494812, 0.01979978196322918, -0.049462515860795975, -0.02360459230840206, -0.02513759769499302, 0.01611502841114998, -0.02421410009264946, -0.01579180359840393, 0.07631781697273254, 0.03440951183438301, 0.0034838938154280186, 0.05068153515458107, 0.06047060713171959, -0.0011630294611677527, -0.027889618650078773, -0.019781313836574554, -0.009927595965564251, 0.01976284384727478, -0.020871039479970932, 0.008293005637824535, 0.02077868953347206, -0.04277639836072922, -0.03317202255129814, -0.06615935266017914, -0.033319782465696335, -0.017971258610486984, -0.04562076926231384, 0.03889770805835724, 0.0272616408765316, -0.014831366948783398, 0.01305825263261795, -0.02945956587791443, -0.02942262589931488, 0.01671530120074749, -0.06087694317102432, -0.04927781969308853, 0.007272541522979736, -0.008907131850719452, 0.05208525061607361, -0.005282404832541943, -0.03210076689720154, 0.003534686053171754, 0.031602077186107635, 0.029311805963516235, 0.04000590369105339, -0.02764951065182686, -0.06560525298118591, 0.032580986618995667, 0.012430273927748203, -0.020390821620821953, 0.032580986618995667, 0.030290713533759117, 0.05415388196706772, 0.01654907315969467, 0.01155295129865408, -0.0031606697011739016, -0.019855191931128502, -0.030142953619360924, 0.0023456832859665155, 0.014194154180586338, 0.01455431804060936, 0.0021909973584115505, 0.01091573853045702, -0.021203499287366867, 0.052639346569776535, 0.02090797945857048, -0.019855191931128502, -0.012541093863546848, 0.00807136669754982, 0.022071586921811104, 0.017020056024193764, -0.028683828189969063, -0.005979645065963268, 0.00861161295324564, 0.013270656578242779, -0.03638579323887825, -0.004492814652621746, 0.013566175475716591, 0.05411694571375847, 0.017583388835191727, -0.04303497448563576, -0.0022856558207422495, -0.02100032940506935, 0.011876176111400127, 0.023253662511706352, -0.01834065653383732, 0.01687229610979557, -0.0007070526480674744, -0.004940710961818695, 0.005864208098500967, -0.012559563852846622, 0.014692842960357666, -0.034520331770181656, -0.018202131614089012, -0.018913226202130318, 0.006279781926423311, -0.04584240913391113, 0.03400317206978798, 0.05500350147485733, -0.03476043790578842, 0.010712568648159504, 0.028868526220321655, 0.021776067093014717, -0.054227761924266815, 0.01738021895289421, -0.015357760712504387, 0.048760659992694855, 0.07288240641355515, -0.008048279210925102, -0.005697978660464287, 0.022330164909362793, -0.004816038534045219, -0.0534520260989666, -0.028960876166820526, -0.05729377642273903, 0.05463410168886185, 0.06638098508119583, -0.012531858868896961, 0.026227325201034546, -0.0018770083552226424, 0.002433415502309799, 0.011534481309354305, -0.05190055072307587, -0.011303607374429703, 0.02364153228700161, 0.015302350744605064, -0.0007382206968031824, 0.035000547766685486, 0.024472679942846298, 0.014775956980884075, 0.004291953984647989, -0.019060984253883362, 0.03934098780155182, 0.0739167258143425, 0.0027220083866268396, 0.08732590824365616, -0.045103609561920166, -0.1112629622220993, -0.06143104285001755, -0.04381071403622627, -0.05212219059467316, -0.011783826164901257, -0.023050492629408836, 0.037863392382860184, -0.045583829283714294, 0.010075355879962444, 0.015634810552001, 0.046248745173215866, -0.017278635874390602, -0.058106452226638794, 0.06228065863251686, -0.006773852743208408, -0.01654907315969467, 0.006866202689707279, -0.05068153515458107, 0.008089836686849594, 0.027889618650078773, -0.042370058596134186, -0.059473227709531784, -0.01750950887799263, 0.07524656504392624, 0.0681171640753746, -0.04502972960472107, -0.03439104184508324, 0.01702929101884365, -0.04155737906694412, -0.01558863464742899, 0.030623171478509903, -0.015644045546650887, -0.011516011320054531, 0.04953639581799507, 0.01566251553595066, -0.04233311861753464, -0.014194154180586338, 0.018479181453585625, -0.008985629305243492, 0.010075355879962444, 0.03838054835796356, 0.004171899054199457, -0.0071524870581924915, 0.049203939735889435, 0.015228470787405968, 0.0066445632837712765, 0.018479181453585625, 0.042185358703136444, -0.0232906024903059, -0.022644154727458954, 0.028443718329072, -0.024805137887597084, -0.06929924339056015, 0.03607180714607239, 0.021849947050213814, -0.07476634532213211, -0.04052306339144707, -0.032082296907901764, -0.0096597820520401, 0.018894756212830544, -0.04344131425023079, 0.0011936202645301819, 0.010666394606232643, 0.03245169669389725, -0.056296397000551224, -0.07003803551197052, -0.07443388551473618, 0.04502972960472107, -0.021314319223165512, 0.041040223091840744, -0.012014700099825859, 0.012938197702169418, 0.0044581834226846695, -0.019024044275283813, 0.01998448185622692, -0.04569464921951294, 0.05112481117248535, -0.006515273824334145, -0.02015071175992489, -0.028443718329072, -0.0215728972107172, 0.012448743917047977, 0.01058327965438366, 0.01941191405057907, -0.05023825541138649, -0.011820766143500805, 0.0267260130494833, 0.011109673418104649, -0.013981749303638935, 0.012467213906347752, 0.0013229099567979574, -0.0073510389775037766, -0.0295888539403677, 0.036238037049770355, 0.06693508476018906, 0.047393884509801865, -0.041003283113241196, 0.02055705152451992, -0.0055225142277777195, -0.014535848051309586, 0.05064459517598152, -0.03476043790578842, 0.0018793171038851142, -0.035203717648983, 0.03762328252196312, -0.012005465105175972, -0.025857925415039062, 0.041705138981342316, 0.0387130081653595, -0.016826121136546135, 0.044401753693819046, -0.022422514855861664, -0.038121968507766724, -0.02707694098353386, -0.006612240802496672, 0.007050902117043734, 0.0009038730058819056, 0.0007728518103249371, -0.0013459973270073533, 0.05278710648417473, 0.007882049307227135, -0.014231094159185886, -0.013335301540791988, -0.03705071285367012, 0.07351038604974747, -0.012254809960722923, 0.05507738143205643, 0.0533781461417675, -0.035573117434978485, -0.04137267917394638, 0.012781202793121338, 0.013270656578242779, 0.009770601987838745, -0.007572678383439779, 0.000017829630451160483, -0.029607323929667473, 0.04621180519461632, -0.010047650896012783, -0.005762623157352209, -0.04720918461680412, -0.010287760756909847, 0.007979016751050949, -0.04698754474520683, 0.0886557474732399, -0.047874100506305695, 0.048058800399303436, -0.07698273658752441, 0.0020224591717123985, -0.041963718831539154, -0.010223115794360638, -0.029921313747763634, -0.006441393867135048, -0.019966011866927147, 0.05042295530438423, 0.02240404486656189, 0.046064045280218124, -0.007701967842876911, -0.07509880512952805, 0.031029511243104935, -0.03200841695070267, -0.012485683895647526, 0.014674372971057892, -0.002689685905352235, -0.022459454834461212, -0.08097224682569504, 0.0556684210896492, -0.09138929843902588, 0.004056462086737156, 0.021018799394369125, -0.04983191564679146, 0.011026558466255665, -0.04340437427163124, -0.025340767577290535, 0.03655202314257622, -0.007023197133094072, -0.013990984298288822, 0.0026619811542332172, -0.056481096893548965, 0.039414867758750916, 0.01935650408267975, -0.0016115028411149979, 0.023456832394003868, 0.03167595714330673, 0.0015595561126247048, -0.08326251804828644, 0.011026558466255665, -0.014535848051309586, -0.044881969690322876, 0.008782459422945976, 0.02125890925526619, 0.035222187638282776, -0.02249639481306076, 0.08112000674009323, 0.0071432520635426044, -0.033892352133989334, -0.0329134464263916, -0.014415793120861053, -0.00671382574364543, 0.011940820142626762, 0.002978279022499919, 0.06571607291698456, 0.02192382700741291, 0.01550552062690258, -0.001705006929114461, -0.03485278785228729, 0.003052158746868372, -0.0015087637584656477, 0.0636104941368103, 0.0289793461561203, 0.03228546679019928, -0.06608547270298004, -0.10335782170295715, -0.022126996889710426, -0.06612241268157959, -0.014101804234087467, -0.003070628736168146, -0.03156513720750809, -0.03154666721820831, 0.008297623135149479, -0.007826640270650387, -0.03718000277876854, 0.031195739284157753, -0.044697269797325134, -0.0334860123693943, 0.02866535820066929, 0.044180113822221756, 0.0047075278125703335, -0.03712459281086922, -0.014637432992458344, -0.04499278962612152, -0.0005688166129402816, -0.024324920028448105, 0.021683717146515846, 0.024638909846544266, 0.04961027577519417, -0.059694867581129074, 0.03272874653339386, 0.07617005705833435, -0.06220678240060806, -0.006335191894322634, -0.01501606684178114, 0.009696722030639648, 0.00041874832822941244, 0.009890656918287277, 0.021720657125115395, -0.000334190612193197, 0.003885615151375532, -0.010500164702534676, -0.061024703085422516, 0.015293115749955177, 0.0031214209739118814, 0.0545232817530632, 0.016438253223896027, -0.0323408767580986, 0.021240439265966415, 0.02866535820066929, -0.025562405586242676, -0.04883453994989395, -0.029736613854765892, -0.05662885680794716, 0.016068853437900543, 0.06335191428661346, -0.04842820018529892, 0.0739167258143425, -0.009433525614440441, 0.042850274592638016, -0.026264263316988945, 0.03607180714607239, -0.03775257244706154, 0.05862361192703247, 0.051937490701675415, -0.00530549231916666, 0.016410548239946365, 0.05637027695775032, -0.048058800399303436, 0.03439104184508324, 0.015874918550252914, -0.0064552463591098785, -0.03819584846496582, 0.04000590369105339, -0.017324810847640038, -0.002479590242728591, -0.05182667076587677, 0.02628273330628872, 0.0012074727565050125, -0.01376011036336422, 0.0014152596704661846, 0.007771230302751064, -0.03668131306767464, 0.00719866156578064 ]
7,488
eth_account.account
from_key
Returns a convenient object for working with the given private key. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :return: object with methods for signing and encrypting :rtype: LocalAccount .. doctest:: python >>> acct = Account.from_key( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364) >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acct.key HexBytes('0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364') # These methods are also available: sign_message(), sign_transaction(), # encrypt(). They correspond to the same-named methods in Account.* # but without the private key argument
from collections.abc import ( Mapping, ) import json import os from typing import ( Any, Dict, Optional, Tuple, TypeVar, Union, cast, ) import warnings from eth_keyfile import ( create_keyfile_json, decode_keyfile_json, ) from eth_keys import ( KeyAPI, keys, ) from eth_keys.exceptions import ( ValidationError, ) from eth_typing import ( ChecksumAddress, Hash32, HexStr, ) from eth_utils.curried import ( combomethod, hexstr_if_str, is_dict, keccak, text_if_str, to_bytes, to_int, ) from eth_utils.toolz import ( dissoc, ) from hexbytes import ( HexBytes, ) from eth_account._utils.legacy_transactions import ( Transaction, vrs_from, ) from eth_account._utils.signing import ( hash_of_signed_transaction, sign_message_hash, sign_transaction_dict, to_standard_signature_bytes, to_standard_v, ) from eth_account.datastructures import ( SignedMessage, SignedTransaction, ) from eth_account.hdaccount import ( ETHEREUM_DEFAULT_PATH, generate_mnemonic, key_from_seed, seed_from_mnemonic, ) from eth_account.messages import ( SignableMessage, _hash_eip191_message, encode_typed_data, ) from eth_account.signers.local import ( LocalAccount, ) from eth_account.typed_transactions import ( TypedTransaction, ) VRS = TypeVar("VRS", bytes, HexStr, int) class Account: """ The primary entry point for working with Ethereum private keys. It does **not** require a connection to an Ethereum node. """ _keys = keys _default_kdf = os.getenv("ETH_ACCOUNT_KDF", "scrypt") # Enable unaudited features (off by default) _use_unaudited_hdwallet_features = False @classmethod def enable_unaudited_hdwallet_features(cls): """ Use this flag to enable unaudited HD Wallet features. """ cls._use_unaudited_hdwallet_features = True @combomethod def create(self, extra_entropy=""): r""" Creates a new private key, and returns it as a :class:`~eth_account.local.LocalAccount`. :param extra_entropy: Add extra randomness to whatever randomness your OS can provide :type extra_entropy: str or bytes or int :returns: an object with private key and convenience methods .. code-block:: python >>> from eth_account import Account >>> acct = Account.create('KEYSMASH FJAFJKLDSKF7JKFDJ 1530') >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acct.key HexBytes('0x8676e9a8c86c8921e922e61e0bb6e9e9689aad4c99082620610b00140e5f21b8') # These methods are also available: sign_message(), sign_transaction(), # encrypt(). # They correspond to the same-named methods in Account.* # but without the private key argument """ extra_key_bytes = text_if_str(to_bytes, extra_entropy) key_bytes = keccak(os.urandom(32) + extra_key_bytes) return self.from_key(key_bytes) @staticmethod def decrypt(keyfile_json, password): """ Decrypts a private key. The key may have been encrypted using an Ethereum client or :meth:`~Account.encrypt`. :param keyfile_json: The encrypted key :type keyfile_json: dict or str :param str password: The password that was used to encrypt the key :returns: the raw private key :rtype: ~hexbytes.main.HexBytes .. doctest:: python >>> encrypted = { ... 'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', ... 'crypto': {'cipher': 'aes-128-ctr', ... 'cipherparams': {'iv': '482ef54775b0cc59f25717711286f5c8'}, ... 'ciphertext': 'cb636716a9fd46adbb31832d964df2082536edd5399a3393327dc89b0193a2be', ... 'kdf': 'scrypt', ... 'kdfparams': {}, ... 'kdfparams': {'dklen': 32, ... 'n': 262144, ... 'p': 8, ... 'r': 1, ... 'salt': 'd3c9a9945000fcb6c9df0f854266d573'}, ... 'mac': '4f626ec5e7fea391b2229348a65bfef532c2a4e8372c0a6a814505a350a7689d'}, ... 'id': 'b812f3f9-78cc-462a-9e89-74418aa27cb0', ... 'version': 3} >>> Account.decrypt(encrypted, 'password') HexBytes('0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364') """ # noqa: E501 if isinstance(keyfile_json, str): keyfile = json.loads(keyfile_json) elif is_dict(keyfile_json): keyfile = keyfile_json else: raise TypeError( "The keyfile should be supplied as a JSON string, or a dictionary." ) password_bytes = text_if_str(to_bytes, password) return HexBytes(decode_keyfile_json(keyfile, password_bytes)) @classmethod def encrypt(cls, private_key, password, kdf=None, iterations=None): """ Creates a dictionary with an encrypted version of your private key. To import this keyfile into Ethereum clients like geth and parity: encode this dictionary with :func:`json.dumps` and save it to disk where your client keeps key files. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :param str password: The password which you will need to unlock the account in your client :param str kdf: The key derivation function to use when encrypting your private key :param int iterations: The work factor for the key derivation function :returns: The data to use in your encrypted file :rtype: dict If kdf is not set, the default key derivation function falls back to the environment variable :envvar:`ETH_ACCOUNT_KDF`. If that is not set, then 'scrypt' will be used as the default. .. doctest:: python >>> from pprint import pprint >>> encrypted = Account.encrypt( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364, ... 'password' ... ) >>> pprint(encrypted) {'address': '5ce9454909639D2D17A3F753ce7d93fa0b9aB12E', 'crypto': {'cipher': 'aes-128-ctr', 'cipherparams': {'iv': '...'}, 'ciphertext': '...', 'kdf': 'scrypt', 'kdfparams': {'dklen': 32, 'n': 262144, 'p': 1, 'r': 8, 'salt': '...'}, 'mac': '...'}, 'id': '...', 'version': 3} >>> with open('my-keyfile', 'w') as f: # doctest: +SKIP ... f.write(json.dumps(encrypted)) """ if isinstance(private_key, keys.PrivateKey): key_bytes = private_key.to_bytes() else: key_bytes = HexBytes(private_key) if kdf is None: kdf = cls._default_kdf password_bytes = text_if_str(to_bytes, password) assert len(key_bytes) == 32 return create_keyfile_json( key_bytes, password_bytes, kdf=kdf, iterations=iterations ) @combomethod def from_key(self, private_key): r""" Returns a convenient object for working with the given private key. :param private_key: The raw private key :type private_key: hex str, bytes, int or :class:`eth_keys.datatypes.PrivateKey` :return: object with methods for signing and encrypting :rtype: LocalAccount .. doctest:: python >>> acct = Account.from_key( ... 0xb25c7db31feed9122727bf0939dc769a96564b2de4c4726d035b36ecf1e5b364) >>> acct.address '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' >>> acc
(self, private_key)
[ 0.04513120651245117, -0.057246968150138855, -0.039679113775491714, 0.04402780905365944, 0.03857571631669998, -0.06023263558745384, -0.029034554958343506, -0.011347707360982895, 0.000809971010312438, -0.05010732263326645, 0.04346529021859169, 0.026806119829416275, 0.012245572172105312, 0.018649617210030556, -0.04746781662106514, 0.05690080299973488, 0.024967120960354805, 0.016680805012583733, 0.0012676925398409367, -0.020488616079092026, 0.020813144743442535, 0.019190499559044838, 0.01830345205962658, 0.07446865737438202, -0.0403498075902462, 0.003940326627343893, 0.04435233771800995, 0.039354585111141205, 0.04556391388177872, -0.017459675669670105, -0.011856136843562126, -0.02572435513138771, 0.02667630836367607, 0.056208472698926926, -0.048289958387613297, -0.07520425319671631, 0.02356082759797573, 0.017016151919960976, -0.06875693798065186, -0.002193277236074209, 0.029856694862246513, 0.06507894396781921, 0.07697834819555283, -0.04625624045729637, 0.02356082759797573, -0.004654291085898876, -0.0001423196226824075, 0.019590752199292183, -0.010341666638851166, 0.0003924776101484895, 0.03355632722377777, -0.00686920341104269, -0.01139097847044468, -0.019839556887745857, 0.007534488569945097, -0.0008065905421972275, 0.003924100194126368, -0.03517897427082062, -0.026633037254214287, -0.025075295940041542, -0.03563331812620163, -0.005917250644415617, 0.022500697523355484, 0.03636891767382622, -0.02819077856838703, 0.012537647970020771, -0.0357198566198349, -0.024036802351474762, -0.007026059087365866, 0.020001821219921112, 0.03528715297579765, -0.0034210796002298594, -0.023041579872369766, 0.028255684301257133, -0.018000558018684387, 0.007031468208879232, -0.01162896677851677, -0.016875524073839188, -0.08152175694704056, -0.04794379323720932, 0.05127562955021858, -0.0345948226749897, -0.026481591165065765, 0.019277039915323257, 0.039224773645401, 0.06841077655553818, 0.06386736780405045, -0.0019890940748155117, -0.010693239979445934, -0.015945205464959145, -0.05750659108161926, 0.026806119829416275, -0.08541610836982727, 0.05330934375524521, 0.049977511167526245, -0.047987066209316254, -0.004183723591268063, -0.06399717926979065, -0.03130625933408737, 0.039830561727285385, 0.027065742760896683, 0.0496746189892292, -0.040241632610559464, 0.02091050334274769, 0.013608595356345177, -0.02892637811601162, -0.07771395146846771, 0.04824668914079666, 0.04331384226679802, -0.01685388758778572, -0.07321380823850632, -0.017373135313391685, 0.012602554634213448, -0.05071311071515083, 0.0008451283792965114, 0.03747231513261795, 0.01607501693069935, 0.02340937964618206, 0.010547202080488205, -0.0017443449469283223, 0.12176339328289032, -0.022976674139499664, 0.00019809808873105794, -0.021592015400528908, 0.0059010242111980915, -0.022717051208019257, 0.028710024431347847, 0.010195628739893436, 0.02293340303003788, -0.05452091991901398, 0.016518540680408478, 0.04660240560770035, 0.006225553806871176, 0.0540449433028698, -0.011077266186475754, 0.002891015028581023, 0.008389081805944443, 0.027844613417983055, -0.02228434570133686, 0.05041021853685379, 0.04117194935679436, 0.01602092944085598, 0.023106485605239868, -0.01717841811478138, -0.07896879315376282, -0.03729923442006111, -0.04915536940097809, -0.052227579057216644, 0.001828181673772633, -0.01833590492606163, -0.007161279674619436, 0.004778693895787001, -0.07581004500389099, 0.08442088961601257, 0.013814129866659641, 0.027606625109910965, -0.002525919582694769, -0.03282072767615318, -0.045910079032182693, -0.02643832005560398, -0.062352895736694336, -0.0007322191959246993, 0.03818628191947937, -0.04993424192070961, 0.005690080113708973, 0.005449387710541487, -0.061487484723329544, -0.025118567049503326, -0.030159588903188705, -0.0008011817117221653, -0.025291649624705315, 0.010877139866352081, -0.029510529711842537, 0.027195554226636887, 0.04880920425057411, 0.007339770905673504, 0.015447594225406647, -0.06179037690162659, -0.059021059423685074, -0.0599297434091568, 0.012494377791881561, -0.006912474054843187, 0.017676029354333878, 0.02388535626232624, 0.04417925328016281, 0.03485444560647011, 0.01797892339527607, 0.07793030142784119, 0.05560268461704254, -0.06611743569374084, -0.020986227318644524, 0.019039051607251167, 0.016096653416752815, 0.012526830658316612, -0.03890024498105049, 0.017492128536105156, 0.014344194903969765, -0.0002100989077007398, -0.048852477222681046, 0.02180836908519268, -0.043595101684331894, -0.00022953686129767448, 0.02228434570133686, -0.03736414015293121, -0.03197695314884186, -0.032799094915390015, -0.04242679476737976, -0.007437129504978657, 0.026827754452824593, -0.04768417030572891, 0.02091050334274769, -0.05339588597416878, 0.010476887226104736, 0.05971338972449303, 0.013532871380448341, -0.010038772597908974, 0.02819077856838703, 0.020337168127298355, -0.004167497158050537, 0.002815291518345475, 0.08108904957771301, 0.01590193621814251, -0.004294604528695345, -0.04915536940097809, 0.03219330683350563, -0.002891015028581023, -0.021235033869743347, 0.02014245092868805, -0.01833590492606163, -0.03154424577951431, 0.09839728474617004, 0.008259270340204239, -0.05897779017686844, 0.016507724300026894, 0.013727589510381222, -0.039679113775491714, 0.01774093508720398, -0.061011508107185364, 0.037104517221450806, -0.013868218287825584, -0.006068697664886713, 0.012397019192576408, 0.05512670800089836, -0.02420988492667675, 0.005427752621471882, -0.007042285520583391, -0.00002051549199677538, 0.015620676800608635, -0.0047976248897612095, 0.0021689373534172773, -0.00894619058817625, -0.0334697887301445, 0.01913641020655632, 0.04539082944393158, 0.009725061245262623, -0.03595784679055214, 0.01833590492606163, -0.03005141206085682, 0.05625174567103386, 0.033772680908441544, -0.003891647094860673, -0.05975665897130966, -0.05889124795794487, -0.010996134020388126, 0.05075637996196747, -0.028904741629958153, -0.010006319731473923, 0.02340937964618206, 0.018476534634828568, -0.016929611563682556, 0.07671872526407242, 0.02845040149986744, -0.039203137159347534, 0.014095389284193516, -0.014571364969015121, 0.0026584358420222998, 0.039679113775491714, 0.005765803623944521, 0.02563781477510929, 0.010006319731473923, 0.01100695226341486, -0.048376500606536865, 0.004018754232674837, -0.009076002985239029, 0.031133176758885384, 0.0030803238041698933, -0.019212134182453156, -0.07377632707357407, 0.03284236416220665, -0.02572435513138771, 0.013868218287825584, 0.04073924571275711, 0.015133882872760296, -0.0334048829972744, 0.05897779017686844, -0.017578670755028725, -0.06875693798065186, -0.059021059423685074, 0.04080415144562721, -0.01502570603042841, 0.009362669661641121, 0.06269905716180801, 0.09606067091226578, 0.01583702862262726, -0.009860281832516193, 0.03654199838638306, 0.04331384226679802, 0.024253156036138535, -0.0369747057557106, 0.041734468191862106, -0.057246968150138855, -0.008372855372726917, 0.061574023216962814, -0.008161911740899086, 0.007896879687905312, -0.04218880832195282, 0.051881417632102966, 0.014711994677782059, 0.025681084021925926, 0.035590045154094696, 0.005449387710541487, 0.036650173366069794, -0.031284622848033905, -0.0011277393205091357, 0.025854166597127914, -0.06031917780637741, 0.01219148375093937, 0.012829724699258804, 0.025356555357575417, 0.016118288040161133, -0.055169980973005295, -0.0077346148900687695, 0.019558299332857132, 0.013608595356345177, -0.05456419289112091, 0.04495812579989433, 0.0019498801557347178, -0.020164087414741516, -0.018736157566308975, -0.033513057976961136, 0.06823769211769104, -0.060448989272117615, 0.021992268040776253, -0.028169142082333565, -0.036325644701719284, -0.029056189581751823, 0.03948439657688141, -0.025075295940041542, -0.02723882533609867, 0.06646359711885452, -0.010503931902348995, 0.022089626640081406, 0.05244393274188042, 0.0932048112154007, 0.037991560995578766, -0.06910310685634613, -0.026481591165065765, -0.02795279026031494, 0.005787439178675413, 0.004094477742910385, 0.002164880745112896, 0.012970354408025742, -0.03370777517557144, -0.03773193806409836, -0.03883533924818039, -0.04738127812743187, 0.007047694642096758, -0.06503567099571228, 0.054694004356861115, 0.006766435690224171, -0.003099254798144102, -0.0588047094643116, -0.05638155713677406, 0.0005276981391943991, 0.03574149310588837, -0.041583020240068436, -0.02301994524896145, 0.024166613817214966, -0.034075576812028885, 0.05049675703048706, 0.012202301062643528, 0.0029451034497469664, 0.03182550519704819, 0.06001628562808037, 0.054131485521793365, 0.03675835207104683, 0.034551553428173065, -0.058674897998571396, 0.0530497208237648, 0.005343915894627571, -0.007328953128308058, 0.01928785815834999, 0.07053103297948837, 0.04149647802114487, 0.0005929420585744083, 0.044611960649490356, -0.030722105875611305, -0.03721269220113754, -0.04290277138352394, -0.024815673008561134, 0.01976383477449417, -0.0060092005878686905, 0.038143008947372437, 0.007675117813050747, -0.0027855432126671076, 0.009086820296943188, 0.029186001047492027, -0.05499689653515816, -0.026243602856993675, 0.029207635670900345, -0.019536662846803665, 0.04625624045729637, -0.02875329554080963, 0.0024569572415202856, -0.016399547457695007, 0.022414157167077065, -0.029056189581751823, -0.009860281832516193, 0.002809882862493396, 0.06927618384361267, 0.016085835173726082, -0.03355632722377777, -0.03755885735154152, 0.008091596886515617, -0.003929508849978447, 0.03868389129638672, -0.03595784679055214, 0.026546496897935867, -0.020391257479786873, -0.0065284473821520805, 0.02563781477510929, 0.008929964154958725, 0.009211222641170025, -0.03076537698507309, -0.042946044355630875, -0.00044217114918865263, 0.012732366099953651, -0.04539082944393158, 0.009438393637537956, 0.0495448037981987, -0.028472036123275757, -0.001454973011277616, 0.04337874799966812, 0.02459932118654251, -0.02436133287847042, 0.021494656801223755, -0.0540449433028698, 0.06001628562808037, 0.03468136489391327, 0.01990446262061596, 0.002823404734954238, -0.02845040149986744, 0.010547202080488205, -0.010006319731473923, -0.05962684750556946, -0.03708288073539734, 0.04777071252465248, 0.04707838222384453, -0.03204185888171196, 0.010406572371721268, 0.007264047395437956, 0.01969892717897892, 0.05504016950726509, 0.011639784090220928, 0.00904895830899477, 0.023604096844792366, 0.016442816704511642, -0.004651586525142193, 0.020986227318644524, 0.03154424577951431, 0.0029883738607168198, 0.023690639063715935, -0.025854166597127914, 0.042058996856212616, 0.06321830302476883, 0.002877493156120181, 0.08684404194355011, -0.05075637996196747, -0.12055181711912155, -0.07009832561016083, -0.011564060114324093, -0.08610843867063522, 0.007821155712008476, -0.006393227260559797, 0.04225371405482292, -0.04681875929236412, 0.02669794298708439, 0.03308035433292389, 0.012061672285199165, 0.004819259978830814, -0.06871367245912552, 0.02548636682331562, -0.017459675669670105, 0.01842244528234005, -0.014355012215673923, -0.042708054184913635, -0.009795376099646091, 0.02308485098183155, -0.05352569743990898, -0.07459846884012222, -0.04768417030572891, 0.0575498603284359, 0.03171733021736145, -0.02693593129515648, -0.0016185898566618562, 0.05793929472565651, -0.060448989272117615, 0.015458411537110806, 0.018671251833438873, -0.012040036730468273, -0.0077724764123559, 0.01103940512984991, 0.008610843680799007, -0.04824668914079666, -0.015772122889757156, 0.023669002577662468, -0.002904537133872509, 0.0071829152293503284, 0.00962770264595747, -0.05439110845327377, -0.0076697091571986675, 0.042058996856212616, 0.022035539150238037, 0.008924555964767933, 0.030375942587852478, 0.07208877056837082, -0.015858665108680725, -0.019114775583148003, 0.021473022177815437, -0.018714522942900658, -0.03474627062678337, 0.06040572002530098, 0.027909519150853157, -0.07217531651258469, -0.024642590433359146, -0.019266221672296524, -0.03364286944270134, -0.009308582171797752, -0.054694004356861115, -0.031609151512384415, -0.0052411481738090515, 0.016756528988480568, -0.07265128940343857, -0.08117559552192688, -0.02955380082130432, 0.033751048147678375, -0.0060849240981042385, 0.014041300863027573, -0.03212840110063553, -0.0008769052219577134, 0.010271351784467697, -0.0017470493912696838, 0.0368448905646801, -0.03738577291369438, 0.06771844625473022, -0.04281623288989067, -0.009600657969713211, -0.004094477742910385, -0.014149476774036884, 0.020964592695236206, 0.031912047415971756, 0.020369622856378555, -0.07321380823850632, -0.022587237879633904, 0.030375942587852478, -0.004965298343449831, -0.03476790338754654, 0.02516183815896511, -0.016626717522740364, 0.04569372534751892, -0.055169980973005295, 0.06689630448818207, 0.06248270720243454, 0.038316093385219574, -0.04984769970178604, -0.003726677969098091, -0.03554677590727806, 0.0415397509932518, 0.007615620736032724, -0.05456419289112091, 0.034075576812028885, -0.010687831789255142, 0.032236576080322266, -0.022327614948153496, 0.012472742237150669, 0.073819600045681, 0.03323179855942726, 0.018801063299179077, -0.014863441698253155, -0.006068697664886713, -0.060059554874897, -0.006642032880336046, -0.04108540713787079, 0.014117023907601833, 0.035200610756874084, 0.00493284547701478, 0.0032236576080322266, 0.05343915522098541, 0.04993424192070961, -0.01777338795363903, -0.03892188146710396, -0.038878608494997025, 0.025919072329998016, 0.01952584646642208, 0.04415762051939964, 0.007610212080180645, -0.0334048829972744, -0.02213289774954319, 0.04924191161990166, -0.005297940690070391, 0.0066041708923876286, -0.0051329717971384525, 0.0008316063322126865, -0.0634346604347229, 0.023863719776272774, -0.016778163611888885, 0.011088084429502487, -0.011336890049278736, 0.015458411537110806, 0.008302541449666023, -0.039441127330064774, 0.06464623659849167, -0.05915087088942528, 0.03173896670341492, -0.07459846884012222, 0.0013758690329268575, -0.032972175627946854, 0.02518347278237343, -0.01937439851462841, -0.0060092005878686905, -0.005846936255693436, 0.07360324263572693, -0.015436776913702488, 0.03437846899032593, 0.034876082092523575, -0.03818628191947937, 0.02622196637094021, -0.041907548904418945, -0.026351777836680412, 0.03764539957046509, -0.053092993795871735, 0.01474444754421711, -0.05802583694458008, 0.01646445319056511, -0.07983420789241791, -0.006398635916411877, 0.02168937399983406, -0.06378082185983658, 0.0003282478719484061, -0.03085191734135151, -0.03768866881728172, 0.02667630836367607, -0.019796287640929222, -0.028969647362828255, -0.004010641016066074, -0.0057928478345274925, -0.00006258175562834367, 0.0124186547473073, -0.01293790154159069, 0.013327335938811302, 0.02364736795425415, -0.0014130546478554606, -0.03349142149090767, 0.025291649624705315, -0.019893646240234375, -0.020066728815436363, -0.008778517134487629, 0.0047246054746210575, 0.05382859334349632, -0.01860634610056877, 0.038792070001363754, -0.02803933061659336, -0.02014245092868805, -0.003018122399225831, -0.025529637932777405, 0.014484823681414127, 0.025681084021925926, 0.011239531449973583, 0.03682325780391693, -0.007474991492927074, 0.02637341432273388, 0.028060967102646828, 0.0073343622498214245, -0.018595527857542038, 0.010536384768784046, 0.02643832005560398, 0.020953774452209473, 0.03574149310588837, -0.04785725474357605, -0.10826297104358673, -0.004259447101503611, -0.06767517328262329, -0.007193732541054487, 0.01553413551300764, -0.018379176035523415, -0.03764539957046509, -0.001720005297102034, 0.014722811989486217, -0.06014609709382057, -0.01318670716136694, -0.02041289210319519, -0.03210676461458206, 0.02165692113339901, 0.02058597467839718, -0.018887605518102646, -0.02201390452682972, -0.021916544064879417, -0.058674897998571396, 0.020726604387164116, -0.0264599546790123, 0.04642932489514351, 0.02509693242609501, 0.056208472698926926, -0.07563696056604385, 0.011120537295937538, 0.08442088961601257, -0.04050125554203987, 0.009238267317414284, -0.023863719776272774, 0.016129106283187866, 0.002195981564000249, 0.012353748083114624, 0.03489771485328674, -0.006020018365234137, -0.02453441545367241, -0.006858385633677244, -0.02438296750187874, 0.0012737774522975087, 0.002336610807105899, 0.08628152310848236, 0.04249170050024986, -0.01139097847044468, -0.029661977663636208, 0.024815673008561134, 0.009779149666428566, -0.041345033794641495, -0.013305701315402985, -0.035828035324811935, -0.009833237156271935, 0.08173811435699463, -0.02979178912937641, 0.042859502136707306, -0.03020286001265049, -0.01378167700022459, 0.0014752560527995229, 0.054694004356861115, -0.010109087452292442, 0.012040036730468273, 0.01845490001142025, 0.014863441698253155, 0.04984769970178604, 0.03528715297579765, -0.03282072767615318, -0.0008735246956348419, 0.021310755982995033, 0.013143436051905155, -0.03825118765234947, 0.059497036039829254, -0.00033450181945227087, 0.0029829649720340967, -0.03405394032597542, -0.016085835173726082, 0.010969090275466442, -0.028580212965607643, 0.013911489397287369, -0.010644560679793358, -0.04660240560770035, -0.004770580679178238 ]