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
18,474
fs.base
hash
Get the hash of a file's contents. Arguments: path(str): A path on the filesystem. name(str): One of the algorithms supported by the `hashlib` module, e.g. `"md5"` or `"sha256"`. Returns: str: The hex digest of the hash. Raises: fs.errors.UnsupportedHash: If the requested hash is not supported. fs.errors.ResourceNotFound: If ``path`` does not exist. fs.errors.FileExpected: If ``path`` exists but is not a file.
def hash(self, path, name): # type: (Text, Text) -> Text """Get the hash of a file's contents. Arguments: path(str): A path on the filesystem. name(str): One of the algorithms supported by the `hashlib` module, e.g. `"md5"` or `"sha256"`. Returns: str: The hex digest of the hash. Raises: fs.errors.UnsupportedHash: If the requested hash is not supported. fs.errors.ResourceNotFound: If ``path`` does not exist. fs.errors.FileExpected: If ``path`` exists but is not a file. """ self.validatepath(path) try: hash_object = hashlib.new(name) except ValueError: raise errors.UnsupportedHash("hash '{}' is not supported".format(name)) with self.openbin(path) as binary_file: while True: chunk = binary_file.read(1024 * 1024) if not chunk: break hash_object.update(chunk) return hash_object.hexdigest()
(self, path, name)
[ 0.04586101695895195, -0.048861268907785416, -0.0226447694003582, 0.016546040773391724, -0.014483366161584854, -0.028466690331697464, -0.03921759873628616, 0.004123116377741098, -0.004692360758781433, -0.001538076321594417, 0.06389825791120529, 0.05243299901485443, 0.003190001705661416, 0.019733808934688568, -0.03896757587790489, -0.020573167130351067, 0.01591205783188343, 0.04250359162688255, -0.02577003464102745, -0.022626912221312523, 0.0073354411870241165, 0.001866229111328721, 0.022198304533958435, 0.02316267043352127, 0.022501900792121887, -0.02044815570116043, 0.06582698971033096, -0.002283675130456686, -0.0012344792485237122, -0.006304103881120682, -0.01645674742758274, 0.007804230786859989, 0.019805245101451874, 0.013554716482758522, -0.03700312599539757, -0.07614929229021072, 0.009295428171753883, 0.013411846943199635, -0.0203945804387331, -0.03961049020290375, 0.03103833645582199, 0.053504519164562225, -0.010375876910984516, -0.009545449167490005, 0.024377059191465378, 0.02834167890250683, -0.046718232333660126, -0.002687727101147175, -0.04243215546011925, 0.0029020309448242188, -0.008188191801309586, -0.01140274852514267, -0.03035970777273178, 0.01960879936814308, 0.03996766358613968, 0.030181121081113815, -0.0021932655945420265, -0.03177054226398468, -0.029698938131332397, 0.036128051578998566, 0.0051522208377718925, -0.027823779731988907, 0.10436595976352692, -0.03557443246245384, -0.05307591333985329, 0.008737345226109028, 0.006906833499670029, -0.04225356876850128, -0.0017244759947061539, -0.012081378139555454, 0.04200354963541031, 0.05514751374721527, -0.0011842518579214811, 0.005594222340732813, 0.018590856343507767, 0.06664849072694778, 0.022091152146458626, 0.04968276992440224, 0.0356815867125988, 0.03843181952834129, 0.008460535667836666, -0.06371966749429703, 0.018447987735271454, -0.05482605844736099, -0.07400625199079514, -0.007317582610994577, 0.06604129076004028, -0.04268217831850052, 0.015036984346807003, -0.012849299237132072, 0.031234782189130783, 0.01623351499438286, -0.051575783640146255, 0.0072372183203697205, 0.03511010855436325, -0.0906505137681961, 0.02196614071726799, 0.01351006980985403, 0.0182783305644989, 0.015563814900815487, -0.026180783286690712, 0.015304864384233952, 0.004484754055738449, 0.03380642831325531, -0.014224415645003319, -0.014733387157320976, 0.024198472499847412, -0.03584231436252594, 0.004723613150417805, -0.018322976306080818, 0.002694424008950591, 0.016037069261074066, 0.015269147232174873, 0.01818903721868992, 0.03750316798686981, -0.005451353266835213, 0.031288355588912964, -0.014626235701143742, 0.03103833645582199, -0.003944529686123133, 0.025287849828600883, 0.01941235363483429, 0.01575133018195629, 0.02650223858654499, 0.05932644009590149, 0.05582614615559578, -0.024091320112347603, -0.06786287575960159, -0.01960879936814308, 0.02823452837765217, 0.02400202676653862, 0.022876933217048645, 0.03803892806172371, 0.03843181952834129, -0.003437790321186185, -0.000307782698655501, 0.0034690429456532, 0.03257418051362038, 0.06918441504240036, 0.03836038336157799, 0.06375538557767868, -0.06093372032046318, 0.004366440232843161, -0.029073884710669518, 0.05761200934648514, -0.03019898012280464, -0.003969085402786732, -0.06911297887563705, -0.03141336888074875, 0.08457857370376587, 0.01609957404434681, -0.009947269223630428, 0.034985098987817764, 0.061433762311935425, 0.03711027652025223, -0.016813920810818672, 0.015233430080115795, -0.04032483324408531, -0.07936384528875351, -0.002897566184401512, 0.05311162769794464, 0.002130760345607996, 0.05561184138059616, -0.032788485288619995, -0.04853981360793114, 0.005964789539575577, -0.03843181952834129, 0.008719486184418201, -0.03191341087222099, -0.03652094304561615, -0.051468633115291595, -0.01781400479376316, -0.07836376130580902, 0.023752005770802498, 0.04764688014984131, -0.047504011541604996, 0.006000506691634655, 0.022787639871239662, 0.020644601434469223, -0.038574688136577606, -0.0215018168091774, -0.07764941453933716, -0.0032525069545954466, 0.023359116166830063, -0.01080448366701603, 0.045682430267333984, -0.0017724711215123534, 0.014644093811511993, 0.09372220188379288, 0.002665403764694929, -0.0827212706208229, -0.04800405353307724, -0.03416360169649124, 0.015438804402947426, 0.061540912836790085, -0.05968361347913742, -0.03928903490304947, 0.0046119969338178635, 0.0054647475481033325, 0.005866567138582468, -0.0042994702234864235, 0.005585293285548687, -0.018501562997698784, 0.0020169115159660578, -0.009331145323812962, -0.033842142671346664, 0.06196951866149902, 0.02343055047094822, -0.01186707429587841, 0.050218526273965836, -0.0040918635204434395, -0.05264730378985405, -0.04753972962498665, 0.07714937627315521, 0.007143460679799318, -0.017037153244018555, 0.00980439968407154, -0.019787386059761047, 0.023930592462420464, 0.06118373945355415, 0.008996295742690563, 0.05471890792250633, -0.018019380047917366, 0.02655581384897232, -0.01957308128476143, -0.023662712424993515, -0.01437621470540762, 0.016840707510709763, -0.005442424211651087, -0.06021937355399132, 0.05879068002104759, -0.0006897904095239937, 0.05414742976427078, 0.021662544459104538, -0.04000337794423103, 0.029288187623023987, 0.0017769357655197382, 0.0014398538041859865, -0.03818179666996002, -0.012688571587204933, 0.001845021964982152, 0.02702013961970806, 0.018037237226963043, 0.07743511348962784, 0.012376045808196068, -0.08422140032052994, 0.0009297660435549915, 0.027091573923826218, -0.031020477414131165, -0.0730418860912323, -0.01697464846074581, 0.029359623789787292, -0.01672462746500969, -0.04936131089925766, 0.02123393677175045, -0.002777020214125514, -0.008192656561732292, -0.03707456216216087, 0.026841552928090096, 0.03978907689452171, 0.01494769100099802, -0.05121861398220062, 0.021983999758958817, -0.027734486386179924, 0.01184028573334217, -0.06593414396047592, -0.04957561567425728, 0.05629047006368637, -0.06161234900355339, -0.0072282892651855946, -0.004616461228579283, -0.013929747976362705, -0.00975975301116705, -0.03871755674481392, 0.0055986871011555195, -0.06582698971033096, 0.04175352677702904, 0.05368310585618019, 0.022609053179621696, 0.0498613566160202, -0.01640317216515541, -0.00007492262375308201, 0.0034779724664986134, -0.03778890520334244, -0.006781823001801968, 0.0736490786075592, -0.02598433755338192, -0.039253316819667816, -0.055861860513687134, 0.0009336725925095379, 0.03953905403614044, -0.012304610572755337, -0.09615097939968109, -0.05232584848999977, 0.06261242926120758, 0.030449001118540764, -0.047968339174985886, -0.030591869726777077, 0.02702013961970806, -0.013108249753713608, -0.03886042535305023, 0.04882555454969406, -0.01171527523547411, -0.03434218838810921, -0.07864949852228165, -0.05729055404663086, 0.0034489519894123077, -0.002077184384688735, 0.00013100994692649692, 0.04878983646631241, 0.01802830770611763, 0.010206219740211964, -0.005888890475034714, 0.016215655952692032, 0.025841468945145607, 0.02739517204463482, 0.0696130245923996, 0.003922206349670887, -0.02066246047616005, 0.004145439248532057, -0.029752513393759727, 0.035770878195762634, -0.02093033865094185, -0.03250274434685707, 0.02400202676653862, -0.06561268866062164, -0.011375960893929005, -0.038681838661432266, 0.005161150358617306, 0.016117433086037636, 0.013045744970440865, 0.02566288225352764, 0.10779482126235962, -0.012242105789482594, -0.06436257809400558, 0.010733049362897873, 0.0758635476231575, 0.011375960893929005, -0.05468318983912468, -0.023877017199993134, 0.08050680160522461, -0.032484885305166245, 0.007598855998367071, -0.0203945804387331, -0.03184197470545769, 0.008661446161568165, -0.02655581384897232, 0.011661699041724205, -0.01111701037734747, -0.055647559463977814, 0.0246270801872015, -0.04089631140232086, -0.01745683141052723, -0.028734570369124413, 0.036645952612161636, 0.01025086548179388, -0.015510238707065582, -0.03703884407877922, -0.04600388556718826, 0.017742570489645004, 0.002312695374712348, 0.011045576073229313, -0.04043198749423027, -0.03671738877892494, -0.03786034137010574, -0.009375791996717453, -0.037288863211870193, 0.09572236984968185, -0.01701929420232773, 0.006688064895570278, -0.031699106097221375, -0.01124202087521553, -0.04214641824364662, -0.027037998661398888, 0.0251985564827919, -0.04203926399350166, 0.033985015004873276, -0.009911551140248775, -0.02112678438425064, 0.003797195851802826, 0.041289202868938446, 0.03707456216216087, 0.004741471726447344, -0.021198218688368797, -0.02473423257470131, 0.006098729558289051, 0.023555561900138855, -0.020073123276233673, 0.061112307012081146, 0.006121052894741297, 0.004096328280866146, 0.008406960405409336, 0.030752597376704216, -0.009545449167490005, -0.0065585896372795105, 0.022769780829548836, 0.0667199194431305, 0.03671738877892494, -0.09607954323291779, 0.003832913003861904, 0.004946846514940262, 0.022144727408885956, 0.017983661964535713, 0.03641378879547119, -0.04503951966762543, 0.00005800573853775859, 0.028502408415079117, 0.021876847371459007, 0.03223486617207527, -0.048754118382930756, -0.03589588776230812, 0.025948621332645416, -0.0373602993786335, -0.015206641517579556, 0.018305117264389992, -0.013652939349412918, 0.009920480661094189, -0.10765194892883301, 0.010768766514956951, 0.014608376659452915, -0.035503000020980835, 0.019108757376670837, -0.04268217831850052, 0.013456493616104126, 0.004172227345407009, -0.0025962013751268387, 0.0014141820138320327, 0.04718255624175072, -0.03578873723745346, 0.021162502467632294, 0.007219359744340181, 0.005884425714612007, 0.03087760880589485, -0.009340074844658375, 0.0068711163476109505, -0.04543240740895271, -0.0266093909740448, -0.04096774756908417, 0.012501056306064129, -0.0009135816362686455, 0.011822427622973919, -0.005330807529389858, 0.020001688972115517, -0.013036815449595451, -0.019698092713952065, -0.047396861016750336, -0.025859327986836433, -0.023180529475212097, 0.04600388556718826, -0.039681922644376755, -0.020001688972115517, -0.00897397194057703, 0.001370651531033218, -0.054968930780887604, -0.0067639644257724285, -0.0049691698513925076, 0.009465085342526436, -0.01259927824139595, 0.0016273696674034, 0.009750823490321636, -0.01966237463057041, 0.07114886492490768, 0.06918441504240036, -0.04914700984954834, 0.007464916445314884, -0.10393735021352768, -0.024662798270583153, 0.008982901461422443, 0.057147685438394547, -0.04250359162688255, 0.046361058950424194, 0.016679979860782623, -0.03768175467848778, 0.06689850986003876, -0.009125771000981331, -0.04736114293336868, -0.0017903298139572144, 0.03275276720523834, -0.07214894890785217, 0.0014722226187586784, 0.04253930598497391, -0.04493236541748047, 0.022466182708740234, 0.025787891820073128, 0.04700396955013275, -0.03921759873628616, 0.03291349485516548, -0.019233766943216324, 0.045360974967479706, -0.028252387419342995, 0.018948029726743698, -0.010866989381611347, -0.03619948774576187, 0.048968423157930374, -0.03403858840465546, 0.012849299237132072, 0.011625981889665127, 0.013635080307722092, -0.07522063702344894, 0.002352877287194133, -0.03875327482819557, -0.02212686836719513, 0.04303935170173645, 0.023287681862711906, 0.010661615058779716, 0.06454116851091385, 0.035449422895908356, -0.052468717098236084, 0.03439576178789139, 0.00011949949112022296, -0.06807717680931091, -0.06257671117782593, 0.011983155272901058, 0.047039687633514404, 0.007688149344176054, 0.008085504174232483, -0.057826314121484756, -0.008853426203131676, -0.031109770759940147, 0.01909089833498001, -0.0543617345392704, 0.037646036595106125, -0.008201586082577705, -0.029591785743832588, -0.04168209061026573, -0.030609728768467903, 0.04328937083482742, -0.07464916259050369, 0.04221785068511963, 0.041932113468647, 0.002529231598600745, -0.00317660765722394, -0.025234274566173553, -0.011884932406246662, 0.011724204756319523, 0.035092249512672424, -0.06975588947534561, 0.0028596166521310806, -0.05636190250515938, -0.018537281081080437, 0.013393988832831383, -0.007464916445314884, 0.0015112883411347866, -0.01048302836716175, -0.008808779530227184, 0.01680499128997326, 0.029038166627287865, -0.008764132857322693, 0.06464831531047821, -0.06904154270887375, -0.008719486184418201, -0.04050341993570328, -0.017501479014754295, -0.06371966749429703, 0.04721827432513237, -0.0396462045609951, 0.03280634433031082, -0.028466690331697464, -0.004462430719286203, -0.010786625556647778, 0.013813666999340057, 0.025966478511691093, -0.01346542313694954, -0.02498425357043743, -0.0037235289346426725, 0.02921675331890583, 0.01640317216515541, -0.020412439480423927, 0.009482943452894688, -0.0436108261346817, 0.018305117264389992, 0.10122283548116684, 0.048182640224695206, 0.029466774314641953, 0.059933632612228394, 0.03160981461405754, 0.015876341611146927, 0.002077184384688735, 0.027413029223680496, -0.019001604989171028, 0.019680233672261238, -0.0532187819480896, -0.05646905675530434, 0.03619948774576187, -0.011643840931355953, 0.029823947697877884, -0.009831187315285206, 0.038681838661432266, -0.03793177381157875, 0.06329105794429779, -0.05064713582396507, -0.0871502161026001, 0.004594137892127037, 0.014688740484416485, 0.010036561638116837, 0.02628793567419052, -0.006018365733325481, -0.05332593247294426, -0.01805509626865387, 0.03982479125261307, -0.020323146134614944, -0.023073377087712288, -0.020483873784542084, 0.04903985559940338, 0.013295765966176987, 0.05025424435734749, 0.008174797520041466, -0.015635250136256218, -0.01773364096879959, 0.011724204756319523, 0.0038373777642846107, -0.0027546968776732683, 0.018305117264389992, 0.023501984775066376, 0.05275445803999901, 0.0781494602560997, 0.026216499507427216, -0.051111459732055664, -0.04675395041704178, 0.044575195759534836, -0.02655581384897232, 0.0009844581363722682, -0.01846584491431713, 0.01713537611067295, 0.003259203862398863, 0.015117348171770573, -0.02625221759080887, 0.04853981360793114, -0.03725314512848854, -0.014572659507393837, -0.03689597547054291, -0.04939702898263931, -0.017233598977327347, 0.005888890475034714, 0.09265068173408508, -0.025859327986836433, 0.004585208836942911, 0.02300194278359413, -0.019108757376670837, 0.031002618372440338, -0.016760343685746193, -0.013724373653531075, -0.01966237463057041, -0.005312948953360319, -0.029752513393759727, 0.015608461573719978, 0.04214641824364662, -0.037431731820106506, 0.05668335780501366, -0.042646460235118866, 0.004359743092209101, -0.0061701638624072075, 0.005299554672092199, 0.005045068915933371, 0.0770065039396286, 0.0008030812023207545, 0.029591785743832588, -0.061433762311935425, -0.03473507612943649, -0.00022253554197959602, -0.014403002336621284, -0.003140890272334218, -0.02160896733403206, 0.0058040618896484375, -0.04321793466806412, -0.01716216467320919, -0.022037575021386147, -0.0032569714821875095, -0.016876425594091415, -0.007058632094413042, -0.03337781876325607, 0.06661277264356613, 0.02989538200199604, -0.02134108915925026, -0.0413249209523201, -0.0008471697801724076, 0.030859749764204025, 0.01693893037736416, 0.001973381033167243, 0.006161234807223082, -0.032734908163547516, 0.010652685537934303, -0.024823525920510292, 0.019394494593143463, 0.026270076632499695, 0.08136401325464249, -0.03589588776230812, 0.008496253751218319, -0.020894622430205345, 0.014545871876180172, -0.06411255896091461, -0.0002643917396198958, -0.021198218688368797, 0.00867483951151371, -0.04521810635924339, 0.09000760316848755, 0.051682937890291214, -0.001313726999796927, 0.037217430770397186, 0.004368672613054514, -0.004420016426593065, 0.01406368799507618, 0.06361251324415207, 0.001677597058005631, -0.01383152510970831, -0.06304103881120682, -0.043646544218063354, 0.024877101182937622, -0.030341848731040955, 0.023930592462420464, -0.03921759873628616, -0.040824878960847855, 0.034824371337890625, 0.06696994602680206, 0.08557865768671036, 0.014876256696879864, -0.02625221759080887, -0.008273020386695862, 0.02634151093661785, -0.0015548188239336014, -0.007817625068128109, -0.015840623527765274, 0.008277485147118568, 0.024448493495583534, -0.05025424435734749, 0.0028640811797231436, 0.019965972751379013, -0.03239559382200241, 0.020269569009542465, 0.06068369746208191, -0.013661867938935757, -0.02101963199675083, -0.010652685537934303, 0.027091573923826218, 0.02494853548705578, 0.015733471140265465, 0.07097028195858002, -0.009170417673885822, 0.01702822372317314, 0.07064882665872574, 0.020644601434469223, 0.023287681862711906, -0.08757882565259933, -0.048968423157930374, 0.06296960264444351, -0.07507777214050293, 0.020073123276233673, 0.06461259722709656, -0.027627333998680115, 0.03214557096362114, -0.003951226826757193, -0.0047950479201972485, 0.003933367785066366, 0.0667199194431305, 0.018153319135308266, -0.002843990223482251, 0.007447057869285345, -0.045003801584243774, 0.03475293517112732, 0.005455818027257919, 0.006076406221836805, 0.022966226562857628, -0.02071603573858738, -0.022466182708740234, 0.008348919451236725, -0.012652854435145855, 0.0047370074316859245, 0.012331399135291576 ]
18,475
fs.base
hassyspath
Check if a path maps to a system path. Arguments: path (str): A path on the filesystem. Returns: bool: `True` if the resource at ``path`` has a *syspath*.
def hassyspath(self, path): # type: (Text) -> bool """Check if a path maps to a system path. Arguments: path (str): A path on the filesystem. Returns: bool: `True` if the resource at ``path`` has a *syspath*. """ has_sys_path = True try: self.getsyspath(path) except errors.NoSysPath: has_sys_path = False return has_sys_path
(self, path)
[ 0.0957573726773262, 0.0059804352931678295, 0.01680154725909233, 0.01922188512980938, 0.03604983538389206, -0.0039055454544723034, 0.009566936641931534, 0.039605531841516495, 0.03615545108914375, 0.00964614748954773, 0.0520680733025074, 0.037282008677721024, 0.04435819387435913, -0.04777307063341141, -0.03988717123866081, -0.013650706969201565, 0.048125121742486954, 0.00807952880859375, 0.0071818032301962376, -0.09653188288211823, 0.011318380944430828, 0.022126290947198868, 0.06815671920776367, -0.033550284802913666, -0.010227028280496597, 0.07921106368303299, 0.04435819387435913, -0.005822013132274151, -0.003489687340334058, -0.06146778538823128, 0.005888022482395172, 0.024801863357424736, 0.03575059399008751, -0.0021254969760775566, 0.0394999161362648, 0.037669260054826736, 0.0027833888307213783, -0.037598852068185806, -0.014363606460392475, -0.06928327679634094, -0.0006149858818389475, 0.057031966745853424, -0.011089548468589783, 0.0035270925145596266, 0.004629446659237146, 0.012682571075856686, -0.056363072246313095, 0.039007049053907394, -0.019802765920758247, 0.03619065508246422, 0.008321561850607395, -0.005060706753283739, -0.03592661768198013, -0.02504829876124859, -0.03515211120247841, 0.001359789865091443, 0.04055606573820114, 0.03203647583723068, -0.02774147503077984, -0.03816213086247444, 0.05139917880296707, 0.003568898420780897, -0.01451322715729475, -0.00031601914088241756, 0.03393753990530968, -0.01652870886027813, -0.01151200756430626, -0.0880827009677887, 0.014284394681453705, 0.030505061149597168, -0.06453061103820801, 0.0305226631462574, -0.06178462877869606, -0.0024291393347084522, 0.0544620081782341, -0.03340946510434151, -0.009109272621572018, 0.009302899241447449, 0.04016881063580513, -0.03443041071295738, -0.016977570950984955, -0.037598852068185806, 0.0019472719868645072, -0.041330572217702866, -0.03742282837629318, 0.06815671920776367, 0.07822532206773758, 0.06079889088869095, -0.0011408593272790313, 0.04171782732009888, 0.02198547124862671, 0.031138749793171883, 0.027319015935063362, -0.006737341172993183, 0.05009659752249718, -0.022847991436719894, 0.014645245857536793, -0.06446020305156708, -0.0394999161362648, -0.04808991774916649, -0.005694395396858454, -0.0021045939065515995, 0.05551815405488014, -0.00747664412483573, 0.03184284642338753, 0.06509388983249664, 0.009857377037405968, -0.008977253921329975, -0.013219445943832397, -0.02983616665005684, -0.0021816047374159098, -0.002948411740362644, 0.0025457555893808603, -0.014284394681453705, -0.02085891366004944, -0.05256094038486481, 0.023763319477438927, -0.015754200518131256, 0.0005957332323305309, -0.006754943635314703, -0.006090450566262007, 0.042985204607248306, -0.0007338025025092065, -0.019837969914078712, 0.05168081820011139, 0.041330572217702866, -0.034588832408189774, 0.04045045003294945, -0.03119155578315258, 0.036014631390571594, 0.013325060717761517, 0.015094107948243618, 0.021263770759105682, 0.06541073322296143, -0.06407295167446136, 0.0009615342714823782, -0.020753297954797745, 0.0012442737352102995, 0.012348124757409096, 0.009153278544545174, 0.047280203551054, -0.020031597465276718, -0.03353268280625343, -0.03823253884911537, 0.05428598076105118, 0.09639105945825577, -0.029448913410305977, 0.001418098108842969, 0.02626286819577217, 0.03964073583483696, -0.007010179106146097, -0.039464712142944336, 0.02302401512861252, 0.005443560425192118, -0.07892942428588867, 0.005135517101734877, -0.008889241144061089, -0.03914786875247955, 0.032353319227695465, -0.03170202672481537, -0.002099093282595277, -0.026755737140774727, -0.012559354305267334, -0.018940245732665062, -0.05291299149394035, 0.014865276403725147, -0.07977434247732162, -0.005245532840490341, 0.048582784831523895, 0.007142197340726852, -0.010939927771687508, -0.01694236695766449, -0.05939069390296936, -0.024361802265048027, 0.06530512124300003, -0.03013540804386139, 0.009892581962049007, 0.055764589458703995, 0.0046118441969156265, 0.0037713267374783754, 0.005513970274478197, -0.02580520510673523, -0.03059307299554348, 0.0604468435049057, -0.012788185849785805, 0.05094151571393013, -0.03865499794483185, -0.04636487737298012, 0.041999466717243195, 0.12385089695453644, -0.08061926066875458, 0.07185323536396027, 0.025294732302427292, 0.04337245598435402, 0.026438891887664795, -0.020700491964817047, 0.050835900008678436, -0.002303721848875284, -0.0675230324268341, 0.04108413681387901, 0.037000369280576706, -0.00905646476894617, -0.02474905736744404, 0.03925348073244095, 0.00323445163667202, -0.034747254103422165, 0.004831874743103981, 0.01740003004670143, -0.056891147047281265, 0.04291479289531708, -0.040274426341056824, -0.07329663634300232, -0.029712950810790062, 0.013844333589076996, 0.06706536561250687, 0.03217729553580284, 0.0045106299221515656, 0.014988493174314499, -0.035345736891031265, 0.020911721512675285, 0.04594241827726364, -0.005998037755489349, 0.028111126273870468, -0.003208048176020384, -0.006279677152633667, -0.0037251203320920467, -0.006825353484600782, 0.05185684189200401, -0.006490906700491905, -0.002677774056792259, 0.005034303292632103, 0.024291392415761948, 0.03179004043340683, -0.0010231429478153586, 0.008237950503826141, -0.025558769702911377, 0.011996075510978699, 0.04016881063580513, 0.03134997934103012, -0.015692591667175293, 0.017294416204094887, -0.0027305814437568188, -0.028111126273870468, -0.07033942639827728, -0.033321455121040344, -0.018869835883378983, -0.023094424977898598, 0.022865593433380127, -0.021791843697428703, -0.03428959101438522, 0.002321324311196804, 0.0389014333486557, -0.014398811385035515, -0.07794368267059326, 0.003324664430692792, -0.045449547469615936, -0.05555335804820061, -0.01691596210002899, 0.0017283414490520954, 0.03277577832341194, -0.05294819548726082, 0.04949811473488808, -0.019397908821702003, 0.02101733535528183, -0.07435278594493866, -0.03483526408672333, 0.0011947668390348554, 0.04527352377772331, -0.04886442422866821, 0.0008465682622045279, 0.02295360527932644, 0.0006529411766678095, -0.01959153637290001, -0.014266792684793472, 0.05069508031010628, -0.0007657069363631308, 0.021932663396000862, 0.001344387768767774, 0.04023921862244606, 0.027583053335547447, 0.00841397512704134, 0.04868840053677559, 0.03622585907578468, 0.006979374680668116, -0.034518420696258545, -0.04481586068868637, -0.036613114178180695, -0.00813673622906208, -0.04375971108675003, 0.021668625995516777, 0.005645988509058952, -0.002349928254261613, 0.013905942440032959, 0.009065265767276287, 0.045062292367219925, 0.0832948312163353, 0.0007871599518693984, -0.03932389244437218, -0.016167858615517616, -0.07336704432964325, 0.042069874703884125, 0.08695614337921143, -0.06646688282489777, 0.01768166944384575, 0.02483706921339035, -0.027635859325528145, -0.016027038916945457, 0.019556330516934395, -0.022390326485037804, 0.036613114178180695, -0.04956852272152901, 0.013430675491690636, -0.021967867389321327, 0.020172417163848877, 0.047244999557733536, 0.025858011096715927, -0.00398255605250597, -0.03678913787007332, -0.07146598398685455, 0.03918307274580002, -0.007375430315732956, 0.04196426272392273, 0.0556589737534523, -0.016238268464803696, -0.03434239700436592, -0.022636761888861656, 0.011432796716690063, -0.04534393176436424, -0.03499368578195572, 0.03932389244437218, 0.036472294479608536, 0.0019241687841713428, 0.052772171795368195, -0.0377044677734375, 0.04682254046201706, -0.006803350057452917, -0.006130055990070105, -0.03539854288101196, -0.03425438329577446, -0.009663749486207962, 0.018341761082410812, -0.0017580455169081688, 0.005509569309651852, -0.017303217202425003, -0.005866019520908594, 0.00669333478435874, -0.056433480232954025, 0.011247971095144749, 0.00667573232203722, 0.0026667725760489702, 0.00650410819798708, -0.0018922642339020967, -0.03383192420005798, 0.007032182067632675, -0.02490747906267643, 0.03897184133529663, -0.010376648977398872, 0.040732089430093765, 0.008066326379776001, 0.03802131116390228, 0.08470302820205688, 0.008510788902640343, -0.038338154554367065, -0.020102007314562798, -0.0717124193906784, -0.004132177215069532, -0.004528232384473085, 0.025523565709590912, -0.01996118761599064, 0.03022342175245285, 0.017118390649557114, -0.042457129806280136, 0.012515348382294178, -0.019133873283863068, 0.01989077776670456, 0.030628276988863945, 0.035556964576244354, -0.018676208332180977, -0.014900481328368187, -0.02048926241695881, 0.051117539405822754, 0.030487457290291786, 0.013668308965861797, -0.02520672045648098, 0.047244999557733536, 0.014073165133595467, -0.018799426034092903, -0.03978155553340912, -0.006609722971916199, -0.04594241827726364, 0.016247069463133812, -0.03580339998006821, 0.015463760122656822, -0.02550596185028553, -0.01461884193122387, -0.03777487576007843, 0.043865326792001724, 0.040872909128665924, 0.03805651515722275, 0.0604468435049057, 0.022038277238607407, -0.028287149965763092, -0.01878182403743267, 0.031526003032922745, -0.022267110645771027, -0.004143178462982178, -0.0004287849005777389, 0.0037493237759917974, -0.04168262332677841, 0.007503048051148653, -0.014557233080267906, -0.05034303292632103, -0.04530872777104378, -0.01451322715729475, -0.014354804530739784, 0.030857110396027565, -0.06139737367630005, 0.01387073751538992, 0.036683522164821625, 0.042527541518211365, -0.00690016383305192, -0.004457822535187006, -0.04696336016058922, 0.05738401412963867, 0.038866229355335236, 0.018130531534552574, -0.0658331960439682, 0.00016557313210796565, 0.038866229355335236, 0.01503250002861023, -0.0227423757314682, -0.025171516463160515, 0.006108053028583527, -0.02978336066007614, -0.024784261360764503, -0.05048385262489319, -0.00919728446751833, -0.03314542770385742, -0.08850516378879547, -0.0773099958896637, 0.03208928182721138, 0.03409596160054207, -0.018236147239804268, 0.021598216146230698, 0.08836434036493301, 0.003916547168046236, -0.03464163839817047, 0.05435639247298241, 0.07287418097257614, -0.027336617931723595, -0.06132696568965912, -0.009118073619902134, 0.00686495890840888, 0.018535388633608818, -0.014020358212292194, -0.024590633809566498, 0.008858437649905682, -0.022830389440059662, -0.04463983327150345, 0.035257723182439804, -0.07688754051923752, 0.03763405606150627, 0.056222252547740936, -0.017602458596229553, 0.06576278805732727, -0.060693275183439255, -0.03140278533101082, 0.049638934433460236, 0.06372089684009552, 0.0044886269606649876, -0.051363974809646606, 0.015824610367417336, -0.009971792809665203, 0.0026821745559573174, 0.038126926869153976, -0.020471658557653427, -0.019468318670988083, 0.06079889088869095, -0.05139917880296707, 0.011503206565976143, -0.011423995718359947, -0.027512643486261368, -0.01645829901099205, 0.052173685282468796, 0.018588196486234665, -0.06477704644203186, -0.023763319477438927, -0.03872540965676308, -0.00039578028372488916, -0.03742282837629318, 0.07470483332872391, 0.0037757272366434336, 0.00591002544388175, -0.00323445163667202, -0.000246434414293617, -0.0066009219735860825, -0.030346637591719627, 0.05900344252586365, -0.0014511026674881577, 0.03939430043101311, -0.013641905039548874, 0.008968452922999859, -0.003117835381999612, 0.07040983438491821, -0.0042597949504852295, 0.01930989697575569, 0.002323524560779333, -0.009021259844303131, 0.014627642929553986, 0.0085151894018054, -0.011010337620973587, 0.003604103345423937, 0.028093524277210236, 0.024044958874583244, 0.02745983563363552, 0.02571719139814377, -0.013457079418003559, -0.013905942440032959, 0.04587200656533241, 0.04770266264677048, -0.02182704769074917, -0.024819467216730118, 0.0030122206080704927, -0.05544774606823921, -0.02251354418694973, -0.07058586180210114, 0.007815491408109665, -0.0014577036490663886, 0.01267377007752657, 0.037141188979148865, 0.040204014629125595, 0.004024362191557884, -0.023675307631492615, 0.04347807168960571, 0.07111392915248871, 0.09744720906019211, -0.02647409774363041, -0.058968234807252884, -0.03643709048628807, -0.051575202494859695, 0.016889559105038643, -0.01930989697575569, 0.04104893282055855, 0.03240612521767616, 0.03008260205388069, -0.010482263751327991, -0.02767106518149376, -0.0950532779097557, 0.011846454814076424, -0.02177424170076847, -0.032722968608140945, 0.004297200124710798, 0.026157252490520477, -0.012990614399313927, 0.053581882268190384, -0.004220189526677132, 0.06034122779965401, -0.012048882432281971, -0.03763405606150627, 0.015498965047299862, -0.04960372671484947, -0.04742102324962616, 0.021228564903140068, -0.014046762138605118, -0.017039179801940918, -0.06551635265350342, -0.03180764243006706, -0.01208408735692501, 0.04002799093723297, -0.04358368739485741, 0.02115815505385399, 0.013738718815147877, 0.03978155553340912, 0.0008256653090938926, -0.007331423927098513, 0.028304753825068474, 0.02467864751815796, 0.02700217068195343, 0.004239992238581181, 0.025189118459820747, 0.0023191238287836313, 0.01342187449336052, -0.0616438090801239, 0.05372270196676254, -0.02601643279194832, -0.05354667827486992, -0.019133873283863068, 0.03045225329697132, -0.08829393237829208, -0.017558451741933823, -0.0118200508877635, -0.01237452868372202, 0.061221349984407425, 0.01567498967051506, 0.014407612383365631, -0.03738762065768242, 0.04449901357293129, -0.035116903483867645, 0.014856475405395031, 0.008752822875976562, -0.027583053335547447, 0.017276812344789505, 0.03589141368865967, -0.02543555200099945, 0.026896556839346886, 0.01556057296693325, 0.004079369828104973, -0.004444620572030544, -0.08611122518777847, -0.03685954958200455, 0.004849477205425501, 0.027125388383865356, 0.003208048176020384, 0.025488359853625298, 0.03858458995819092, 0.027512643486261368, 0.017021577805280685, -0.028744814917445183, -0.015534169971942902, -0.032423727214336395, -0.0022190099116414785, -0.012708975002169609, 0.04650569707155228, -0.024044958874583244, -0.03314542770385742, 0.012779384851455688, 0.03612024337053299, 0.013993954285979271, -0.004255394451320171, -0.04365409538149834, 0.02775907702744007, -0.0460832379758358, 0.024185778573155403, -0.04411176219582558, 0.014988493174314499, -0.03367350250482559, -0.03164922073483467, 0.01696876995265484, 0.055236514657735825, 0.060552455484867096, -0.06132696568965912, 0.0042817979119718075, -0.028146330267190933, 0.011212766170501709, -0.012066485360264778, 0.019873175770044327, 0.002479746239259839, 0.0005990336649119854, 0.03560977429151535, 0.0089640524238348, -0.003197046462446451, 0.020471658557653427, 0.010367847979068756, -0.02677333913743496, 0.08350606262683868, 0.00037845285260118544, 0.01256815530359745, -0.07146598398685455, -0.05484925955533981, -0.014689251780509949, 0.015173318795859814, -0.023534487932920456, -0.05488446727395058, 0.05678553134202957, 0.003461083397269249, -0.018605798482894897, 0.023006413131952286, -0.009998196735978127, -0.012620963156223297, 0.03911266103386879, 0.029149672016501427, -0.00346768437884748, -0.023376064375042915, -0.056503891944885254, -0.008396373130381107, -0.005456761922687292, -0.030804302543401718, -0.026650121435523033, 0.009373309090733528, -0.016546310856938362, -0.05854577571153641, -0.01185525581240654, -0.04337245598435402, 0.02946651540696621, -0.017303217202425003, 0.011547212488949299, 0.054638031870126724, 0.004110174253582954, -0.010517468675971031, -0.058827415108680725, -0.01768166944384575, -0.05974274501204491, 0.013650706969201565, 0.07857737690210342, -0.03942950814962387, -0.00693536875769496, 0.05854577571153641, 0.026421289891004562, 0.010904722847044468, -0.004933089017868042, 0.0514695905148983, 0.03472965210676193, 0.0044820262119174, 0.02154540829360485, -0.024132970720529556, 0.020964527502655983, -0.07336704432964325, -0.01152080949395895, -0.028445573523640633, 0.007551454473286867, -0.015076505951583385, -0.035204917192459106, 0.04981495812535286, -0.06537552922964096, 0.045379139482975006, -0.09364508092403412, 0.0063104815781116486, -0.0014324000803753734, 0.056433480232954025, -0.06291119009256363, 0.011635225266218185, -0.01967954821884632, -0.002363129984587431, -0.03633147478103638, -0.02520672045648098, 0.024942683055996895, -0.009012458845973015, -0.004462223034352064, 0.06005958840250969, 0.011115952394902706, -0.0880827009677887, -0.02311202883720398, -0.06058766320347786, 0.06220708787441254, 0.019028257578611374, -0.015402151271700859, -0.0448862686753273, 0.053581882268190384, 0.015340542420744896, -0.006785747595131397, 0.053441062569618225, 0.0010869518155232072, 0.006248872727155685, -0.09230729192495346, -0.004572238773107529, -0.024502621963620186, 0.011353585869073868, -0.00796511210501194, -0.002959413453936577, 0.01342187449336052, 0.05400434136390686, -0.008255553431808949, -0.02833995781838894, 0.0011914664646610618, 0.025329938158392906, -0.020137213170528412, -0.0550604909658432, 0.012172100134193897, 0.001055047381669283, 0.034676842391490936, -0.03918307274580002, -0.0010137915378436446, 0.0008306159870699048, -0.003412676742300391, 0.0719236433506012, -0.021809445694088936, -0.07738041132688522, 0.0031310373451560736 ]
18,476
fs.base
hasurl
Check if a path has a corresponding URL. Arguments: path (str): A path on the filesystem. purpose (str): A purpose parameter, as given in `~fs.base.FS.geturl`. Returns: bool: `True` if an URL for the given purpose exists.
def hasurl(self, path, purpose="download"): # type: (Text, Text) -> bool """Check if a path has a corresponding URL. Arguments: path (str): A path on the filesystem. purpose (str): A purpose parameter, as given in `~fs.base.FS.geturl`. Returns: bool: `True` if an URL for the given purpose exists. """ has_url = True try: self.geturl(path, purpose=purpose) except errors.NoURL: has_url = False return has_url
(self, path, purpose='download')
[ 0.0589417926967144, 0.018867800012230873, -0.022009458392858505, 0.0548362173140049, 0.03220199793577194, 0.015092454850673676, 0.01606529764831066, -0.017511174082756042, 0.025133265182375908, 0.04298359528183937, 0.025168966501951218, 0.04094865918159485, 0.0537651963531971, -0.04126996546983719, -0.024919060990214348, -0.0012305572163313627, 0.02627568691968918, 0.037307191640138626, 0.021009840071201324, -0.035968415439128876, -0.034379735589027405, 0.02914959006011486, 0.03887801989912987, 0.00036091136280447245, -0.013503775000572205, 0.06526081264019012, 0.03168433532118797, -0.04633945971727371, 0.02697185054421425, -0.020634982734918594, -0.03150583431124687, 0.04558974504470825, -0.020099472254514694, -0.004632160998880863, 0.021402547135949135, 0.06115523353219032, 0.034486837685108185, 0.010112212039530277, -0.03136303275823593, -0.0634043738245964, -0.03852101415395737, 0.07711342722177505, -0.0300064068287611, 0.033987030386924744, 0.05737096443772316, 0.02634708769619465, -0.07340055704116821, 0.01583324372768402, -0.04687497019767761, -0.04016324505209923, 0.0005115235107950866, 0.04244808480143547, 0.019635364413261414, -0.034219082444906235, -0.016074223443865776, -0.04494713246822357, 0.05815637856721878, 0.07504279166460037, -0.06511800736188889, 0.05169455707073212, 0.007390036713331938, 0.015592264011502266, -0.006836676504462957, -0.024936912581324577, 0.0020148560870438814, 0.017984207719564438, -0.025097565725445747, -0.05194446071982384, 0.006020023953169584, 0.04566114768385887, 0.0029296856373548508, 0.07418597489595413, -0.05405080318450928, 0.017939582467079163, 0.03912792354822159, 0.0010682307183742523, 0.03116667829453945, 0.004435807000845671, 0.011290334165096283, 0.002514665247872472, 0.010531695559620857, -0.07882706075906754, 0.010460293851792812, -0.06008421257138252, 0.008621709421277046, -0.0017314821016043425, 0.05544312670826912, -0.025990081951022148, 0.04594675078988075, 0.05487191677093506, -0.013334196992218494, 0.049659620970487595, 0.016002820804715157, -0.10745899379253387, 0.07097291201353073, -0.020188724622130394, -0.031023874878883362, -0.033701423555612564, -0.03912792354822159, -0.062404755502939224, 0.0135305505245924, -0.0030524064786732197, 0.04469722881913185, -0.021099090576171875, -0.011593789793550968, 0.037092987447977066, 0.0062699285335838795, -0.022794872522354126, 0.005979860667139292, -0.03966343402862549, 0.022170111536979675, -0.02740025706589222, 0.04055595025420189, 0.04441162198781967, 0.034647490829229355, -0.04048455134034157, 0.03261255472898483, -0.03320161625742912, -0.06904508173465729, 0.022241512313485146, -0.008541382849216461, 0.04591105133295059, 0.012798687443137169, -0.050623536109924316, 0.06319016963243484, -0.049266912043094635, -0.020260125398635864, 0.006341329775750637, 0.035968415439128876, -0.03852101415395737, -0.002762338612228632, 0.011236783117055893, -0.04712487384676933, 0.04359050840139389, -0.06433258950710297, 0.02970295026898384, -0.015645815059542656, 0.033344417810440063, 0.00029815631569363177, 0.06968769431114197, -0.025204667821526527, 0.004317548591643572, -0.012004347518086433, 0.01358410157263279, 0.02856052853167057, 0.03341582044959068, -0.004263997543603182, -0.03209489583969116, 0.03129163011908531, 0.005654092412441969, 0.04341200366616249, -0.07222244143486023, 0.004107807297259569, 0.017761079594492912, -0.023151878267526627, -0.015529788099229336, -0.02648989111185074, 0.005109657067805529, -0.031077425926923752, -0.005912921857088804, 0.02656129188835621, 0.024490654468536377, 0.012566632591187954, 0.03905652463436127, -0.01363765262067318, 0.004536215215921402, -0.021206192672252655, -0.008635097183287144, 0.02623998560011387, 0.04216248169541359, 0.04423312097787857, 0.009906933642923832, -0.010879776440560818, 0.0005700949113816023, 0.07896986603736877, -0.003982855007052422, 0.022045157849788666, 0.04030604660511017, 0.00785414595156908, 0.005895071662962437, -0.005306010600179434, -0.0260793324559927, -0.025329619646072388, 0.04055595025420189, 0.0003123807837255299, 0.020170873031020164, -0.04244808480143547, -0.07732763141393661, 0.009808756411075592, 0.04405461624264717, -0.08925165235996246, -0.0012160537298768759, 0.02732885628938675, 0.037057287991046906, 0.03186284005641937, -0.07222244143486023, 0.008099587634205818, 0.03130948171019554, -0.011799068190157413, 0.04248378798365593, 0.04373330995440483, -0.00676973769441247, -0.015431610867381096, 0.03744999319314957, -0.0283998753875494, 0.003982855007052422, 0.004221603274345398, 0.02672194503247738, -0.0016344209434464574, 0.07340055704116821, -0.03777129948139191, -0.03973483666777611, 0.011218932457268238, 0.035361506044864655, 0.04441162198781967, 0.008117438293993473, -0.05362239480018616, 0.021438246592879295, -0.03969913721084595, 0.022277213633060455, 0.02913174033164978, -0.01446769293397665, 0.05808497592806816, 0.024883361533284187, 0.05672835186123848, -0.011531313881278038, 0.0571567602455616, 0.05183735862374306, -0.007635478861629963, -0.027507359161973, 0.010567395947873592, 0.03357647359371185, 0.035254403948783875, 0.034736745059490204, 0.03844961151480675, -0.02718605287373066, -0.011932945810258389, 0.033719275146722794, 0.011388511396944523, -0.009353573434054852, -0.006385955959558487, 0.01467297226190567, -0.01314676832407713, -0.005787969566881657, -0.049088411033153534, 0.014762223698198795, 0.0038958347868174314, 0.02734670601785183, -0.07104431837797165, -0.05148035287857056, -0.021438246592879295, 0.03912792354822159, -0.02952444739639759, -0.08646700531244278, -0.021759552881121635, -0.04391181468963623, -0.05497901886701584, -0.014610495418310165, -0.006725111976265907, 0.03702158480882645, -0.0007140132365748286, -0.04608955234289169, 0.035932715982198715, 0.06540361046791077, -0.03073826991021633, -0.038485314697027206, 0.025204667821526527, 0.022669920697808266, -0.02802501991391182, -0.02606148272752762, 0.011022578924894333, -0.03254115208983421, 0.010531695559620857, -0.02606148272752762, 0.0042662289924919605, -0.01633305288851261, -0.010156838223338127, -0.034558240324258804, 0.03755709528923035, 0.016913188621401787, -0.021598899737000465, 0.0014648428186774254, 0.038271110504865646, -0.0006454010144807398, -0.04326920211315155, -0.023062627762556076, -0.018073460087180138, 0.07911266386508942, -0.022384313866496086, 0.008394118398427963, 0.0013677815441042185, -0.004065413028001785, -0.007666716817766428, 0.02618643455207348, 0.066260427236557, 0.06326156854629517, 0.049374014139175415, 0.018475092947483063, -0.008532457984983921, 0.0029921617824584246, -0.05137325078248978, 0.018742846325039864, -0.06476099789142609, -0.02747165970504284, 0.016582956537604332, -0.02590082958340645, 0.007876458577811718, -0.04151986911892891, 0.008813600987195969, -0.00005111051723361015, -0.011076129972934723, -0.02736455760896206, -0.011308184824883938, 0.0544792078435421, 0.04098435863852501, 0.02766801230609417, -0.006497520487755537, -0.018385840579867363, -0.06943778693675995, 0.017582574859261513, -0.018171636387705803, 0.05276557803153992, 0.030756119638681412, -0.011540238745510578, -0.04298359528183937, -0.008862689137458801, 0.008960866369307041, -0.0338442288339138, -0.026204286143183708, 0.0573352612555027, 0.006162826903164387, 0.01386078167706728, 0.09903363138437271, 0.0020315907895565033, -0.09110809117555618, -0.009576702490448952, -0.010353191755712032, -0.050980545580387115, 0.021295445039868355, 0.019456859678030014, -0.01436059083789587, -0.021099090576171875, -0.04444732517004013, -0.022669920697808266, 0.05422930419445038, -0.005310473497956991, -0.06258326023817062, 0.022812722250819206, 0.09175069630146027, -0.006796513218432665, -0.018778547644615173, 0.025383170694112778, -0.04744618013501167, 0.011736592277884483, 0.014217788353562355, 0.07782743871212006, 0.034736745059490204, -0.04523273929953575, 0.019813867285847664, 0.046982068568468094, 0.10474573820829391, -0.017680753022432327, -0.02997070550918579, -0.02961369790136814, -0.012022198177874088, 0.004531752783805132, 0.034558240324258804, 0.0609053298830986, 0.004556296858936548, 0.01418208796530962, 0.04062735289335251, -0.03138088062405586, 0.0135305505245924, -0.022616369649767876, 0.03329086676239967, -0.0625118613243103, 0.04344770312309265, -0.009326797910034657, 0.03991333767771721, -0.0008495641523040831, 0.016002820804715157, 0.019831717014312744, -0.01457479503005743, -0.03059546649456024, 0.019385458901524544, 0.01457479503005743, 0.01319139450788498, -0.007800594437867403, -0.012173925526440144, -0.016422303393483162, 0.04337630420923233, -0.01381615549325943, -0.005279235076159239, -0.030863221734762192, 0.010879776440560818, -0.04080585762858391, -0.019563961774110794, 0.011361735872924328, -0.012156074866652489, 0.05647844448685646, -0.01297719031572342, 0.009335722774267197, -0.07257944345474243, 0.03873521834611893, 0.0006398227997124195, 0.00791662186384201, 0.011424211785197258, 0.011308184824883938, 0.025722326710820198, -0.036735981702804565, -0.010219314135611057, -0.04094865918159485, -0.11402790993452072, -0.012879014015197754, 0.016770385205745697, 0.02663269266486168, -0.022652069106698036, -0.07525699585676193, 0.019920969381928444, 0.022562818601727486, 0.004895453341305256, 0.018564343452453613, -0.022491415962576866, 0.005787969566881657, 0.0036704742815345526, -0.025561673566699028, -0.0265255905687809, -0.012477381154894829, 0.047803185880184174, 0.048588600009679794, -0.010897627100348473, -0.019742466509342194, 0.024847660213708878, -0.04066305235028267, -0.004556296858936548, 0.00048195893759839237, -0.00044040114153176546, -0.022705620154738426, -0.033165913075208664, -0.05347958952188492, -0.012459530495107174, 0.011736592277884483, -0.05851338431239128, 0.023080477491021156, 0.061655040830373764, -0.04373330995440483, 0.002137577161192894, -0.024829810485243797, 0.03809260576963425, -0.009009954519569874, -0.0761852115392685, 0.050909142941236496, 0.00835395511239767, -0.018903499469161034, -0.05173025652766228, -0.05729956179857254, -0.04362620785832405, 0.022063009440898895, -0.033897776156663895, 0.035557858645915985, -0.024544205516576767, 0.03884232044219971, -0.06169074401259422, -0.04269799217581749, 0.02743595838546753, -0.018921351060271263, -0.004757113289088011, 0.003976161126047373, 0.06040551885962486, 0.019135555252432823, -0.05476481467485428, 0.014226713217794895, -0.021063391119241714, -0.005997711326926947, 0.024222899228334427, 0.005274772644042969, 0.023187579587101936, 0.03043481335043907, -0.01592249423265457, 0.010594171471893787, 0.006684948690235615, -0.04583964869379997, 0.012200701050460339, 0.03948493301868439, 0.021116940304636955, -0.01341452356427908, -0.0676884576678276, 0.037521395832300186, 0.06390418112277985, -0.050123728811740875, 0.04180547595024109, -0.033879928290843964, -0.006319017149507999, 0.01583324372768402, 0.010817300528287888, 0.0014893870102241635, -0.03987763822078705, 0.051016245037317276, -0.025401020422577858, -0.02663269266486168, 0.05408650264143944, 0.020795635879039764, 0.002156543079763651, 0.05137325078248978, -0.0024008695036172867, -0.011959721334278584, 0.03887801989912987, 0.021848805248737335, 0.012762986123561859, 0.021331144496798515, 0.0024611144326627254, 0.10910122096538544, 0.019671063870191574, 0.09753420948982239, 0.05265847593545914, 0.01467297226190567, -0.02698970027267933, -0.022687770426273346, 0.02852482907474041, 0.011272483505308628, 0.02741810865700245, 0.017252344638109207, 0.06533221155405045, -0.012513081543147564, -0.07050880789756775, -0.012914714403450489, -0.019117703661322594, 0.0015853324439376593, -0.020028071478009224, 0.061976347118616104, 0.04077015444636345, -0.013985734432935715, -0.0007045302190817893, 0.0005918500246480107, 0.04126996546983719, 0.05547882616519928, 0.02772156335413456, -0.08375374972820282, -0.06404698640108109, 0.019599663093686104, 0.0281321220099926, -0.03148798272013664, 0.004063181579113007, -0.035165149718523026, -0.035147301852703094, 0.005288160406053066, 0.02900678664445877, -0.03898512199521065, 0.04601815342903137, -0.036146920174360275, -0.0016065298113971949, 0.012771911919116974, 0.02975650131702423, -0.033826377242803574, 0.08646700531244278, 0.09382133930921555, -0.0020416316110640764, 0.00709996884688735, 0.024562055245041847, -0.01604744791984558, -0.07193683087825775, -0.04098435863852501, -0.05333678796887398, 0.04287649318575859, -0.009915858507156372, -0.07318635284900665, -0.0149585772305727, -0.04237668588757515, 0.025168966501951218, -0.0546577125787735, 0.014699747785925865, 0.015369134955108166, -0.005667480174452066, -0.006122663617134094, -0.005930772516876459, -0.020884886384010315, -0.005368486978113651, -0.03125593066215515, 0.049945224076509476, 0.0022915361914783716, -0.05401510000228882, -0.018073460087180138, -0.018600044772028923, 0.0322376973927021, -0.033594321459531784, -0.05708535760641098, -0.00709996884688735, -0.018957050517201424, -0.051123347133398056, -0.011013654060661793, -0.005176595877856016, -0.00017571418720763177, -0.015485161915421486, -0.025650925934314728, 0.025543823838233948, -0.005854908376932144, 0.06111953407526016, -0.06701014190912247, 0.005895071662962437, 0.05297978222370148, -0.007715805433690548, -0.013128918595612049, 0.006176214199513197, -0.0518016591668129, -0.034593939781188965, 0.034593939781188965, -0.03834250941872597, -0.010745898820459843, -0.025133265182375908, -0.035129450261592865, 0.024740558117628098, -0.004145739134401083, -0.02788221649825573, 0.04576824605464935, -0.0021041077561676502, 0.013762605376541615, -0.0004892106517218053, -0.04144846647977829, -0.05580013245344162, 0.009844457730650902, 0.018171636387705803, -0.033433668315410614, 0.05419360473752022, -0.010844076052308083, -0.021795254200696945, -0.025347469374537468, 0.0144230667501688, -0.010942252352833748, -0.035361506044864655, -0.005283697973936796, 0.018260888755321503, 0.004846364725381136, 0.008505682460963726, -0.026097184047102928, 0.02888183481991291, -0.06344007700681686, -0.002178855938836932, 0.0050471811555325985, 0.054300706833601, 0.017243418842554092, -0.09410694241523743, 0.008849301375448704, -0.036075517535209656, 0.012022198177874088, -0.010853000916540623, 0.018492942675948143, 0.036486074328422546, -0.010299640707671642, 0.048053089529275894, -0.03329086676239967, 0.008269165642559528, 0.02963154949247837, 0.11881180107593536, -0.005939697381108999, 0.033397968858480453, -0.001563019584864378, 0.021634601056575775, -0.026150735095143318, -0.01447661779820919, -0.015520862303674221, 0.009862307459115982, -0.07354336231946945, 0.015592264011502266, -0.005609466228634119, 0.010522769764065742, 0.03991333767771721, 0.038056906312704086, -0.022652069106698036, -0.05258707329630852, 0.021545348688960075, -0.033165913075208664, 0.06383278220891953, -0.007684567477554083, -0.04658936336636543, 0.036735981702804565, -0.01336989738047123, -0.04016324505209923, -0.06701014190912247, -0.021598899737000465, -0.0294708963483572, -0.04316210001707077, -0.001805114676244557, -0.033165913075208664, 0.048588600009679794, 0.005953085143119097, 0.0575137659907341, 0.0003784828004427254, -0.0544792078435421, -0.008380730636417866, -0.03168433532118797, 0.0169221144169569, -0.036950185894966125, -0.00051877525402233, 0.03887801989912987, -0.019885268062353134, 0.02859622985124588, 0.018957050517201424, 0.05665694922208786, 0.017627201974391937, -0.04537554085254669, 0.05258707329630852, 0.011897245422005653, 0.0322376973927021, 0.011531313881278038, -0.003831127192825079, 0.008916240185499191, -0.06918787956237793, -0.009657029062509537, -0.04744618013501167, 0.03282675892114639, -0.04130566492676735, -0.025882979854941368, 0.020420778542757034, -0.02718605287373066, 0.04373330995440483, -0.0589417926967144, 0.012905789539217949, -0.01346807461231947, 0.011388511396944523, -0.035450756549835205, 0.02954229712486267, -0.04226958379149437, -0.02986360341310501, -0.016422303393483162, -0.03298741206526756, -0.03232694789767265, -0.05622854083776474, -0.034718893468379974, 0.036735981702804565, -0.001128475647419691, -0.037842702120542526, 0.0644753947854042, -0.006693874020129442, 0.04173407331109047, -0.005796894896775484, -0.037414293736219406, -0.004453657660633326, 0.022955525666475296, 0.003509821370244026, 0.0007151288446038961, 0.023241130635142326, -0.04755328223109245, 0.018903499469161034, -0.07589960843324661, 0.02863193117082119, -0.054300706833601, 0.032737504690885544, 0.023026926442980766, -0.00753730209544301, -0.017038140445947647, 0.0009460675064474344, -0.037735600024461746, -0.017082765698432922, 0.019653214141726494, 0.04055595025420189, -0.022170111536979675, -0.04655366390943527, -0.0018486249027773738, -0.0034518076572567225, -0.017305895686149597, -0.08782362937927246, 0.04701777175068855, 0.020795635879039764, -0.02656129188835621, 0.017984207719564438, 0.010308565571904182, -0.08361095190048218, -0.002931916853412986 ]
18,477
fs.base
isclosed
Check if the filesystem is closed.
def isclosed(self): # type: () -> bool """Check if the filesystem is closed.""" return getattr(self, "_closed", False)
(self)
[ 0.07523104548454285, -0.009361444972455502, 0.011644517071545124, 0.012909118086099625, 0.03571437671780586, -0.04783418029546738, 0.01317222323268652, 0.053062330931425095, 0.013834228739142418, -0.030893616378307343, -0.006658253259956837, -0.06036137416958809, 0.04124806821346283, -0.0030957269482314587, -0.0073584518395364285, 0.04416768625378609, -0.05509927496314049, 0.01008286140859127, 0.00816898513585329, 0.001056133070960641, -0.045627493411302567, 0.028636004775762558, 0.017449799925088882, -0.08643423020839691, -0.0008932838100008667, 0.06959550827741623, 0.032896608114242554, 0.021048396825790405, 0.026157725602388382, -0.03802291303873062, -0.08195295184850693, 0.004867441952228546, 0.03445826470851898, 0.008988005109131336, 0.012162239290773869, 0.09349562227725983, -0.012128290720283985, 0.00918321218341589, -0.028839699923992157, 0.00398901104927063, -0.011593593284487724, 0.039414823055267334, -0.03187813609838486, -0.013350455090403557, 0.0009717909269966185, -0.014980008825659752, -0.037955012172460556, 0.012662987224757671, 0.03304937854409218, 0.03172536566853523, 0.045525647699832916, 0.00881826039403677, -0.018858686089515686, 0.02761753462255001, -0.02215174026787281, 0.036698900163173676, 0.036053869873285294, 0.01743282563984394, -0.015548654831945896, -0.023289034143090248, 0.01322314701974392, 0.029858170077204704, 0.055812202394008636, -0.08263193815946579, 0.022440308704972267, 0.03454313799738884, -0.008661245927214622, 0.00976883340626955, 0.001924485550262034, 0.07597792893648148, -0.0254108477383852, 0.02142183668911457, -0.011644517071545124, 0.04932793974876404, -0.03187813609838486, -0.033745333552360535, -0.04691755771636963, 0.003571013454347849, -0.01101646013557911, -0.05638933554291725, -0.016668973490595818, -0.012909118086099625, 0.00033179871388711035, 0.030808743089437485, 0.008084112778306007, -0.024171708151698112, 0.060632966458797455, 0.04233443737030029, -0.051602523773908615, 0.04780023172497749, -0.002112266141921282, 0.06243226304650307, -0.018739864230155945, -0.037106286734342575, 0.02602193132042885, -0.05126303434371948, -0.018009958788752556, -0.007133539766073227, 0.0030829962342977524, -0.08025550097227097, -0.029416833072900772, 0.007859200239181519, 0.07665690779685974, -0.00459584966301918, 0.027668457478284836, -0.042028896510601044, 0.0024634264409542084, -0.027855178341269493, -0.04505036026239395, -0.06246621161699295, -0.0394827201962471, -0.04409978911280632, 0.0016444061184301972, 0.06728697568178177, 0.03714023903012276, -0.01585419662296772, 0.012892143800854683, 0.02731199376285076, 0.00919169932603836, -0.03598596900701523, 0.0022321485448628664, 0.03004489094018936, -0.004366694018244743, -0.04440532997250557, 0.07638531178236008, 0.08317512273788452, -0.030503202229738235, 0.023577600717544556, 0.05051615461707115, 0.054759781807661057, 0.030418328940868378, 0.016142763197422028, 0.02298349142074585, 0.054012905806303024, -0.0022172960452735424, -0.006318762898445129, 0.03164049610495567, 0.051908064633607864, -0.011534182354807854, 0.011109819635748863, -0.023170212283730507, -0.03622361272573471, -0.03758157417178154, -0.01054966077208519, 0.018638016656041145, 0.07652111351490021, -0.022508205845952034, -0.008597591891884804, -0.012713911011815071, 0.010507224127650261, 0.0007898453623056412, -0.02478279173374176, -0.02970539964735508, 0.045831188559532166, -0.016711410135030746, -0.028941547498106956, -0.031538646668195724, 0.0506180003285408, -0.01974136009812355, -0.03496750071644783, -0.022864671424031258, 0.014156744815409184, -0.0443374328315258, -0.03157259523868561, 0.006734638474881649, -0.01867196522653103, -0.04107832536101341, -0.052349403500556946, 0.029790272936224937, 0.06100640445947647, -0.016125788912177086, 0.03035043179988861, -0.00441337376832962, 0.032591067254543304, 0.005728898569941521, 0.05377526208758354, 0.007613069843500853, 0.04817366972565651, -0.02279677242040634, -0.03413574770092964, -0.0031296759843826294, -0.08860696107149124, -0.08962543308734894, 0.037445779889822006, 0.039516668766736984, 0.06457105278968811, -0.03150469809770584, -0.029060369357466698, 0.029450781643390656, 0.029060369357466698, -0.01217921357601881, 0.01175485085695982, -0.009930090978741646, -0.008669733069837093, 0.03237039968371391, -0.035952020436525345, -0.04168940708041191, 0.0126545000821352, 0.03136890381574631, 0.056321438401937485, 0.016354944556951523, 0.0400938019156456, 0.0029875144828110933, -0.024918587878346443, -0.008126548491418362, 0.01824760250747204, -0.02698947861790657, -0.018417347222566605, -0.008580616675317287, 0.028381388634443283, -0.07387308776378632, -0.02215174026787281, -0.025987980887293816, 0.032064858824014664, 0.07631741464138031, -0.03213275596499443, 0.0020231499802321196, -0.0281437449157238, -0.06749066710472107, 0.028602056205272675, 0.04942978546023369, 0.04389609396457672, 0.016635024920105934, 0.00005951026105321944, -0.01817970536649227, -0.004012350924313068, 0.023289034143090248, 0.02203292027115822, 0.013078862801194191, -0.014479260891675949, -0.028890622779726982, 0.024001963436603546, -0.001413128338754177, -0.0006386660970747471, 0.0038829201366752386, 0.006038683466613293, -0.03758157417178154, 0.02636142075061798, -0.061787232756614685, -0.013265582732856274, -0.012264086864888668, -0.07828646153211594, 0.0030257070902734995, 0.025054384022951126, 0.022508205845952034, -0.06854309141635895, 0.008669733069837093, 0.0795765221118927, 0.0308766420930624, 0.0006556406151503325, 0.04830946773290634, -0.0390753336250782, -0.018417347222566605, -0.044371381402015686, -0.0026161971036344767, -0.06531792879104614, -0.11189600080251694, -0.032591067254543304, 0.01784021407365799, -0.01364750973880291, 0.04847921431064606, 0.015769323334097862, 0.01909632794559002, 0.11766733229160309, -0.017246106639504433, 0.015726886689662933, 0.06246621161699295, -0.07326200604438782, -0.015574117191135883, -0.016635024920105934, -0.026599064469337463, -0.02939985878765583, -0.05784914642572403, -0.052756790071725845, -0.02266097627580166, -0.051908064633607864, 0.031233105808496475, -0.04600093513727188, -0.039822209626436234, -0.0014057019725441933, 0.06833939254283905, 0.014530184678733349, -0.002053916221484542, 0.03822660446166992, -0.04104437679052353, 0.020827729254961014, -0.046985454857349396, 0.02332298271358013, -0.009276571683585644, 0.012518703937530518, -0.029875144362449646, 0.0031721123959869146, 0.014173719100654125, 0.037445779889822006, 0.07529894262552261, -0.00840238481760025, -0.03897348418831825, -0.035340938717126846, 0.02342483028769493, -0.00548701174557209, -0.013138273730874062, 0.009098339825868607, -0.07217563688755035, 0.014640518464148045, -0.01824760250747204, 0.008784310892224312, 0.02435842715203762, 0.010473275557160378, -0.003929600119590759, 0.046442270278930664, 0.03646125644445419, -0.006373930256813765, -0.021387888118624687, 0.0056907059624791145, 0.07767537981271744, -0.0010439326288178563, -0.043828196823596954, -0.01890960894525051, -0.024018937721848488, 0.1014396995306015, -0.05058405175805092, -0.012544166296720505, 0.0022958030458539724, -0.014233130030333996, -0.01654166355729103, -0.0003214548632968217, 0.04681571200489998, 0.018926583230495453, 0.02245728299021721, 0.03131797909736633, -0.01627855934202671, -0.03255711868405342, 0.06362047791481018, -0.05740780755877495, -0.018773812800645828, -0.016796281561255455, 0.023543652147054672, -0.06355258077383041, 0.03612176701426506, -0.04250418394804001, -0.01867196522653103, 0.0019425209611654282, 0.028500208631157875, -0.01442833710461855, -0.05126303434371948, 0.03717418760061264, 0.018111806362867355, -0.010430838912725449, 0.1123712882399559, -0.013299532234668732, 0.02520715445280075, -0.01626158505678177, -0.05723806098103523, 0.012875169515609741, -0.013324993662536144, -0.011848211288452148, 0.039414823055267334, 0.08677371591329575, 0.03897348418831825, 0.015599578619003296, 0.02951868064701557, -0.000933067814912647, -0.03883768990635872, -0.024748841300606728, -0.0036367897409945726, -0.0067388820461928844, -0.010651507414877415, 0.0030448033940047026, 0.006106581538915634, -0.03349071741104126, -0.03170839324593544, -0.04790208116173744, -0.0036261805798858404, -0.035103294998407364, 0.013265582732856274, 0.0026268060319125652, 0.028160719200968742, -0.009344469755887985, 0.013477764092385769, 0.04348870739340782, 0.0060004908591508865, -0.03308332711458206, -0.011118306778371334, -0.008037432096898556, -0.020182697102427483, -0.015132779255509377, -0.06246621161699295, -0.014173719100654125, -0.013630534522235394, -0.02279677242040634, 0.013987000100314617, -0.028364412486553192, -0.03267594054341316, 0.03413574770092964, -0.002071951748803258, -0.0141227962449193, 0.030503202229738235, -0.018111806362867355, 0.0402974970638752, 0.0394827201962471, 0.026599064469337463, 0.02887364849448204, -0.03897348418831825, 0.024494223296642303, 0.01857011951506138, 0.014462286606431007, 0.0046976967714726925, 0.007332989946007729, 0.0029047636780887842, -0.05818863585591316, 0.018739864230155945, -0.02605587989091873, -0.07455206662416458, -0.005240881349891424, 0.006030196323990822, 0.039414823055267334, -0.006543675437569618, 0.010626045987010002, 0.10334084182977676, 0.0007224777364172041, -0.007821007631719112, 0.01101646013557911, 0.02844928577542305, -0.014080359600484371, -0.06979919970035553, -0.04946373403072357, 0.009268084540963173, 0.0520438626408577, -0.005329997278749943, 0.06426551192998886, -0.029416833072900772, 0.015718400478363037, -0.020539162680506706, 0.010337479412555695, 0.010464788414537907, -0.029145240783691406, -0.033949028700590134, -0.062398314476013184, -0.03893953561782837, 0.05095749348402023, 0.005834989249706268, 0.046238575130701065, 0.03262501582503319, -0.006955307442694902, 0.02833046391606331, -0.06348468363285065, 0.04430348053574562, 0.0340169258415699, 0.08609473705291748, -0.023645497858524323, -0.040467243641614914, -0.009633037261664867, -0.008317512460052967, -0.006297544576227665, -0.03141982480883598, -0.03741183131933212, -0.037955012172460556, -0.0031551378779113293, 0.007091103121638298, -0.04148571193218231, -0.047596536576747894, 0.05211175978183746, -0.05088959261775017, -0.04861500859260559, -0.003609206061810255, -0.024630019441246986, -0.013893639668822289, -0.030520176514983177, 0.025801261886954308, 0.021353939548134804, 0.035646479576826096, 0.010634533129632473, -0.024833714589476585, -0.044676922261714935, -0.00023300173052120954, -0.0039402092806994915, -0.04926003888249397, 0.05404685437679291, 0.004663747735321522, -0.018553143367171288, -0.02602193132042885, -0.03493355214595795, -0.04559354484081268, -0.017466776072978973, -0.005032943561673164, -0.07305830717086792, -0.0063527119345963, -0.024171708151698112, 0.042028896510601044, -0.04606883227825165, 0.028092822059988976, -0.019605563953518867, -0.003950817976146936, -0.05703436955809593, 0.08032339811325073, 0.018654990941286087, -0.02498648501932621, -0.013817254453897476, -0.0005309840198606253, -0.02437540329992771, -0.02468094415962696, 0.04301341995596886, 0.00834297388792038, 0.04430348053574562, 0.011109819635748863, -0.08480467647314072, 0.02069193311035633, -0.030927564948797226, 0.005440331995487213, -0.054012905806303024, 0.010371427983045578, 0.006115068681538105, 0.024205656722187996, 0.03187813609838486, 0.04722309857606888, 0.012467781081795692, 0.00742634991183877, 0.008139279671013355, 0.03327004984021187, 0.04335290938615799, 0.04223259165883064, -0.045627493411302567, 0.010091348551213741, -0.028822725638747215, -0.07305830717086792, -0.039890106767416, 0.02266097627580166, 0.02444330044090748, 0.004909878131002188, 0.03676679730415344, 0.05313022807240486, -0.02822861634194851, 0.028415337204933167, -0.005342728458344936, -0.013571124523878098, 0.0287548266351223, -0.0058901566080749035, -0.020301518961787224, -0.09736581146717072, 0.019384894520044327, 0.02087865211069584, 0.015557141974568367, 0.05482768267393112, 0.010838227346539497, -0.011415360495448112, -0.007804032880812883, 0.04314921423792839, -0.060429271310567856, 0.12418554723262787, -0.012017956003546715, 0.023645497858524323, 0.00959908775985241, 0.013358943164348602, -0.09750161319971085, 0.08358250558376312, 0.032811734825372696, 0.034695908427238464, 0.007566389627754688, -0.0005437149084173143, -0.037208136171102524, -0.012722398154437542, 0.012662987224757671, 0.036800745874643326, -0.00459584966301918, 0.01595604419708252, -0.03203091025352478, 0.05801888927817345, -0.03598596900701523, 0.03457708656787872, 0.0055633969604969025, 0.002872936427593231, -0.026004955172538757, 0.059886086732149124, -0.029365910217165947, 0.0698671042919159, -0.004549169912934303, 0.003426730167120695, 0.0334058441221714, -0.050142716616392136, -0.06525003165006638, 0.008945569396018982, -0.04942978546023369, -0.03612176701426506, -0.027736356481909752, -0.05723806098103523, -0.02423960715532303, -0.014148257672786713, 0.017161233350634575, -0.031844187527894974, 0.006624304223805666, 0.011254102922976017, -0.010320505127310753, 0.04966742917895317, -0.0807986855506897, 0.028737852349877357, 0.005368190351873636, 0.052315451204776764, -0.009030441753566265, -0.012993990443646908, 0.011118306778371334, -0.007961046881973743, -0.0010736379772424698, -0.011432335712015629, 0.004583118949085474, -0.007371183019131422, 0.0308766420930624, 0.00521966302767396, 0.05543876439332962, -0.059886086732149124, 0.024850688874721527, -0.005856207571923733, -0.009989501908421516, 0.02362852357327938, 0.018434323370456696, 0.01259508915245533, 0.05683067440986633, 0.03540883585810661, -0.012077366933226585, -0.024952536448836327, 0.010065887123346329, -0.025376899167895317, 0.003952939994633198, 0.046136729419231415, -0.018824735656380653, -0.019232124090194702, -0.0028623274993151426, -0.010244118981063366, 0.00391262536868453, -0.061142198741436005, -0.03612176701426506, -0.015098830685019493, 0.0019541908986866474, 0.0340169258415699, -0.020199671387672424, -0.02688763104379177, -0.0010020268382504582, -0.01359658595174551, -0.0021143879275768995, 0.03131797909736633, 0.012238624505698681, -0.03004489094018936, 0.009743371047079563, -0.005958054680377245, 0.00042171060340479016, -0.044371381402015686, -0.050346408039331436, 0.02266097627580166, -0.00965849868953228, 0.04464297369122505, -0.07360149174928665, -0.04209679365158081, 0.08127397298812866, 0.014105821028351784, -0.05856207385659218, 0.017025437206029892, -0.04820762202143669, 0.025461770594120026, -0.012985503301024437, -0.019775308668613434, -0.019690437242388725, 0.005249368492513895, -0.06562346965074539, -0.04620462656021118, 0.010278068482875824, 0.04338685795664787, -0.025241103023290634, 0.0012677840422838926, 0.01521765161305666, -0.011907622218132019, -0.03308332711458206, 0.015905119478702545, 0.07278671860694885, 0.036800745874643326, -0.012578114867210388, -0.03676679730415344, -0.0008365252870135009, 0.006475777365267277, 0.036393359303474426, 0.03618966415524483, 0.038769789040088654, -0.05088959261775017, 0.08711320906877518, -0.0512290857732296, 0.0016221270198002458, 0.08589104562997818, 0.0409085787832737, -0.03897348418831825, -0.013579611666500568, 0.011152256280183792, -0.050244562327861786, -0.011984007433056831, -0.02646326832473278, 0.002408259315416217, 0.050550103187561035, -0.031250081956386566, -0.033762309700250626, 0.014776314608752728, 0.07638531178236008, 0.003286690218374133, -0.026514191180467606, 0.033643487840890884, 0.03591807186603546, 0.07319410890340805, -0.013715407811105251, 0.02697250247001648, -0.029976991936564445, -0.041825201362371445, 0.02038639225065708, 0.016185199841856956, 0.012993990443646908, -0.020233621820807457, 0.026531165465712547, -0.01593906804919243, -0.015251601114869118, -0.009734883904457092, -0.02539387345314026, -0.008661245927214622, -0.0033885373268276453, 0.047087304294109344, -0.007443324662744999, -0.011619054712355137, 0.02193107269704342, 0.01013378519564867, -0.0026352934073656797, -0.015251601114869118, -0.005092354491353035, -0.04073883593082428, 0.0019520691130310297, -0.018722889944911003, 0.011839724145829678, -0.01585419662296772, -0.021897124126553535, -0.06674379110336304, 0.04752863943576813, -0.02362852357327938, -0.023781294003129005, 0.02478279173374176, 0.04213074594736099, -0.013002477586269379, 0.05377526208758354, 0.03788711503148079, -0.017059387639164925, 0.03822660446166992, -0.029484732076525688, 0.010456300340592861, -0.04946373403072357, -0.004022960085421801, 0.028381388634443283, -0.010999484919011593, 0.00695106340572238, 0.044880617409944534, -0.005088110454380512, 0.02047126367688179, 0.029145240783691406, 0.0334058441221714, 0.0459669828414917, -0.055065322667360306, 0.00791861116886139, 0.015446808189153671, 0.028958521783351898, -0.040161699056625366, 0.019130278378725052, 0.02698947861790657, 0.05472583323717117, -0.0004301978333387524, 0.025801261886954308, -0.08025550097227097, 0.02405288629233837 ]
18,478
miarec_s3fs.s3fs
isdir
null
def isdir(self, path): _path = self.validatepath(path) try: return self._getinfo(_path).is_dir except errors.ResourceNotFound: return False
(self, path)
[ 0.02353478968143463, 0.04762377217411995, 0.014085774309933186, -0.021114807575941086, 0.061330847442150116, 0.008248260244727135, 0.06014856696128845, -0.014427527785301208, -0.057968735694885254, 0.02410745620727539, 0.03563470020890236, 0.029926497489213943, 0.037352703511714935, -0.0004958885256201029, -0.05176175758242607, -0.055530279874801636, -0.0020147275645285845, 0.004043309949338436, -0.012229222804307938, -0.08756271749734879, -0.023313110694289207, 0.033362504094839096, 0.02307295985519886, -0.015674464404582977, -0.030757788568735123, 0.05634309723973274, 0.04101038724184036, -0.004237277898937464, 0.006008390802890062, 0.009966262616217136, -0.04961887374520302, 0.0778827890753746, 0.021558161824941635, 0.00809123832732439, -0.041786257177591324, 0.02739567682147026, -0.007001322694122791, -0.05844903737306595, -0.05353517830371857, -0.05763621628284454, -0.042636021971702576, 0.06672500818967819, -0.025751566514372826, 0.04525921121239662, 0.04647843912243843, -0.031034886837005615, -0.05959437042474747, -0.04004978388547897, -0.009513670578598976, -0.012469373643398285, 0.032845254987478256, -0.0170876607298851, 0.002902593230828643, -0.03347334265708923, 0.06062886863946915, -0.01636720821261406, 0.044963639229536057, 0.013882569968700409, 0.004645996261388063, -0.010926865972578526, -0.01595156267285347, -0.03495119512081146, -0.01875024475157261, -0.03653988614678383, -0.03365807235240936, 0.006839682813733816, -0.06654027104377747, -0.07278420031070709, 0.00039688401739113033, 0.04485280066728592, -0.07433594018220901, 0.08098627626895905, 0.008913293480873108, 0.04769766330718994, 0.026268815621733665, 0.014833936467766762, 0.012127621099352837, 0.030185122042894363, 0.018390018492937088, -0.016330262646079063, -0.07699607312679291, -0.05560417100787163, -0.024015091359615326, -0.01262639556080103, -0.01511103380471468, 0.033417921513319016, 0.02861490473151207, 0.0007799131562933326, -0.019119706004858017, 0.01379020418971777, 0.030536111444234848, -0.01797437109053135, -0.006327052600681782, -0.05807957425713539, 0.0070983064360916615, 0.03923696279525757, 0.0035260620061308146, -0.02268502488732338, -0.05013611912727356, -0.04725430905818939, -0.009836950339376926, 0.012284643016755581, 0.0658382922410965, -0.006627241615206003, -0.019581535831093788, 0.021742893382906914, -0.05863376706838608, 0.0035837905015796423, -0.007546280510723591, -0.03835025429725647, -0.007481624372303486, 0.0199140515178442, 0.020135730504989624, 0.039015285670757294, 0.005574272014200687, -0.02384883165359497, 0.013513106852769852, -0.03666919469833374, -0.0752965435385704, 0.0006771562620997429, 0.0662447065114975, 0.033805858343839645, 0.04788239672780037, -0.03905223309993744, 0.03798079118132591, 0.012746470980346203, -0.011167016811668873, 0.01021565031260252, -0.06997627764940262, 0.046958740800619125, -0.04034535214304924, -0.015184926800429821, 0.0004999295342713594, 0.022056937217712402, 0.003068851539865136, 0.01747559756040573, 0.05168786644935608, 0.023220745846629143, -0.005694347433745861, 0.06823980063199997, 0.07415121048688889, 0.025880878791213036, -0.022611131891608238, 0.006082283798605204, 0.0002630980161484331, 0.07363396137952805, -0.029686346650123596, 0.060481082648038864, 0.015027904883027077, 0.030924048274755478, -0.045924242585897446, -0.07241473346948624, 0.06033329665660858, 0.015212636440992355, -0.019710848107933998, 0.008243641816079617, -0.048769108951091766, 0.0008630423108115792, 0.010261832736432552, -0.03035137988626957, -0.01996947079896927, -0.046441491693258286, -0.016459573060274124, 0.004010981880128384, -0.02009878307580948, 0.01838078163564205, -0.03234647959470749, -0.03236495330929756, -0.02848559245467186, 0.038054682314395905, 0.0076571195386350155, -0.009425923228263855, 0.00809123832732439, -0.012727998197078705, -0.07204527407884598, -0.007758721709251404, 0.024661650881171227, 0.051133669912815094, -0.0030203594360500574, 0.012146093882620335, 0.04019756615161896, -0.009615273214876652, 0.01921207271516323, 0.04666316881775856, -0.03480340912938118, 0.017928188666701317, -0.03175533935427666, -0.029944971203804016, 0.0437074638903141, 0.06646638363599777, -0.07370785623788834, 0.04156458005309105, -0.00016640264948364347, -0.019563062116503716, -0.04248823598027229, 0.04337494820356369, 0.021798312664031982, -0.00013393031258601695, -0.0021221027709543705, -0.004345807712525129, 0.05638004466891289, 0.028208496049046516, -0.009550617076456547, 0.007472387980669737, -0.0033274756278842688, 0.028005290776491165, -0.05663866922259331, 0.025696147233247757, 0.0007631718763150275, 0.039089176803827286, -0.008178985677659512, -0.06594913452863693, 0.05763621628284454, 0.03816552087664604, 0.013716311194002628, -0.0029995772056281567, 0.020265042781829834, 0.019156653434038162, -0.01311593409627676, 0.01704147830605507, 0.019045814871788025, 0.01758643612265587, 0.03467409685254097, -0.05161397159099579, -0.033417921513319016, -0.07027184963226318, -0.015341948717832565, 0.031164199113845825, -0.0407148152589798, -0.027173999696969986, -0.013180590234696865, 0.004112584516406059, 0.01353157963603735, 0.039606425911188126, -0.019433749839663506, 0.0039901998825371265, 0.004555939696729183, 0.014095011167228222, -0.0352652370929718, -0.020283514633774757, 0.016949111595749855, -0.05032085254788399, -0.018768716603517532, -0.01465844176709652, -0.047402095049619675, -0.033029984682798386, 0.04078870639204979, -0.008497647941112518, 0.000056862656492739916, -0.013503869995474815, -0.053904641419649124, 0.012995858676731586, -0.09066620469093323, -0.06288259476423264, -0.016274841502308846, -0.037537433207035065, -0.04795628786087036, 0.054237160831689835, -0.0002605002373456955, -0.0008035819046199322, -0.012395481579005718, -0.033103879541158676, -0.038904447108507156, 0.05516081675887108, 0.0009300074889324605, -0.044557228684425354, 0.03694629296660423, -0.020080311223864555, 0.052168168127536774, 0.008465319871902466, 0.10337573289871216, -0.01469538826495409, 0.020708397030830383, -0.03726033866405487, 0.07381869107484818, 0.02390425279736519, 0.033233191817998886, -0.06794423609972, 0.015526680275797844, 0.03421226888895035, -0.008294442668557167, 0.01978474110364914, -0.03404600918292999, -0.03439699858427048, -0.02687842771410942, -0.016487283632159233, -0.029667872935533524, 0.04692179337143898, -0.05261152237653732, 0.05915101617574692, 0.05246373638510704, -0.040382299572229385, -0.021170226857066154, 0.001056433073244989, 0.03617042303085327, 0.05988994240760803, 0.026859955862164497, -0.02584393322467804, -0.05641699209809303, -0.07234084606170654, -0.05168786644935608, 0.04053008556365967, -0.027672773227095604, 0.02172442153096199, -0.019544588401913643, -0.01960000954568386, -0.02475401759147644, 0.07145413011312485, 0.000001925789547385648, 0.026896901428699493, 0.00641480041667819, 0.018112920224666595, -0.015332711860537529, -0.0025377485435456038, 0.050173066556453705, -0.008460701443254948, -0.027026213705539703, -0.031810760498046875, -0.09184848517179489, 0.05641699209809303, -0.044372498989105225, 0.08320305496454239, -0.004747598897665739, -0.0038216321263462305, -0.04477890953421593, 0.011462587863206863, 0.024569286033511162, -0.0023033705074340105, -0.006622623186558485, 0.01900886744260788, -0.0075278072617948055, -0.037094078958034515, 0.06173725798726082, -0.04773461073637009, 0.03539454936981201, 0.007296892814338207, -0.02068992517888546, -0.05512386932969093, 0.01851009391248226, 0.05331350117921829, 0.02146579697728157, -0.030406799167394638, 0.016062401235103607, -0.03086862899363041, 0.02551141567528248, 0.0002071013004751876, 0.009070315398275852, 0.06369540840387344, 0.07596158236265182, 0.0523528978228569, 0.015859195962548256, 0.05131840333342552, 0.002854101127013564, -0.007809523027390242, -0.058744605630636215, 0.03441547229886055, 0.023220745846629143, 0.06122000887989998, -0.010197176598012447, 0.051798705011606216, 0.051909543573856354, 0.038387198001146317, -0.018602458760142326, 0.007343075703829527, -0.02623186819255352, -0.0302959606051445, -0.015646755695343018, -0.052168168127536774, 0.06306732445955276, 0.04086260125041008, 0.03452631086111069, -0.016736671328544617, 0.0015621355269104242, -0.026398126035928726, 0.02552988938987255, -0.014215086586773396, 0.04326410964131355, -0.045074477791786194, 0.031034886837005615, 0.016921402886509895, -0.02094854786992073, 0.019692374393343925, 0.03993894159793854, -0.0050754970870912075, 0.05811651796102524, 0.007093688473105431, 0.03602263703942299, -0.03570859134197235, -0.04917551577091217, -0.07533349096775055, -0.0049277120269834995, -0.015997745096683502, -0.02159510925412178, -0.03184770420193672, -0.09384358674287796, -0.05815346539020538, 0.04751293361186981, 0.006396327167749405, 0.03428616002202034, -0.007726393640041351, 0.05560417100787163, 0.03979115933179855, 0.016154766082763672, 0.058227360248565674, -0.029852604493498802, -0.004140294156968594, 0.04958192631602287, 0.024661650881171227, -0.026638276875019073, -0.05863376706838608, 0.0545327290892601, -0.013328375294804573, -0.013042042031884193, 0.022407926619052887, -0.019359858706593513, 0.004969276487827301, -0.009532143361866474, -0.014898592606186867, 0.045591726899147034, 0.03249426558613777, 0.008853255771100521, -0.013744020834565163, -0.023922724649310112, -0.015268055722117424, 0.004604431800544262, -0.026084084063768387, -0.06742698699235916, -0.03327013552188873, 0.03563470020890236, -0.017420178279280663, -0.05035779997706413, -0.045074477791786194, 0.023368529975414276, -0.033159296959638596, -0.027746666222810745, -0.015960799530148506, -0.08881889283657074, 0.015655992552638054, -0.10426244139671326, -0.005186336115002632, -0.041527632623910904, 0.013753257691860199, -0.03646599128842354, 0.017207736149430275, 0.019673900678753853, -0.0029718675650656223, 0.021890679374337196, -0.00008211890963139012, 0.0900750607252121, -0.0016106275143101811, -0.028319334611296654, 0.008783981204032898, 0.03827635943889618, -0.004301934037357569, -0.057008132338523865, 0.017882006242871284, 0.023793412372469902, 0.030905574560165405, 0.0049277120269834995, 0.02011725679039955, -0.021354958415031433, -0.006202359218150377, 0.013125170953571796, -0.02868879772722721, 0.025696147233247757, -0.008825546130537987, -0.011970599181950092, 0.02185373194515705, 0.04924941062927246, 0.005144771188497543, -0.005666637793183327, 0.025474470108747482, -0.008354480378329754, 0.0324757918715477, 0.016542702913284302, 0.0034244596026837826, 0.012607922777533531, 0.01810368336737156, -0.05257457494735718, 0.014178140088915825, 0.026472019031643867, -0.04119511693716049, 0.0077494848519563675, -0.03461867570877075, -0.03646599128842354, -0.04732820391654968, -0.05922490730881691, 0.0787694975733757, 0.009679929353296757, -0.03415684774518013, 0.08970560133457184, -0.00538030406460166, -0.008386808447539806, -0.03964337334036827, 0.006354762706905603, -0.05937269330024719, -0.05386769771575928, 0.0324757918715477, -0.004045619163662195, 0.014593785628676414, -0.0027363349217921495, -0.01797437109053135, -0.007269183173775673, 0.02037588134407997, -0.025474470108747482, 0.03672461584210396, 0.019581535831093788, -0.02224166877567768, 0.033029984682798386, 0.01025259681046009, 0.0027571171522140503, 0.04123206436634064, -0.03897833824157715, 0.00925504695624113, 0.05715591460466385, 0.029353830963373184, 0.029815658926963806, -0.0038747424259781837, 0.008677761070430279, -0.01501866802573204, 0.0037107933312654495, -0.031348928809165955, 0.01939680427312851, 0.0002669946989044547, -0.059077125042676926, 0.03491424769163132, 0.010150994174182415, -0.00936126708984375, 0.002902593230828643, 0.03504355996847153, 0.001206527347676456, 0.0015505898045375943, -0.000838219013530761, 0.03162602707743645, 0.052426788955926895, 0.07293198257684708, -0.008862492628395557, 0.013162117451429367, -0.06654027104377747, -0.004973894916474819, 0.04355968162417412, -0.025178899988532066, 0.018260706216096878, -0.03144129738211632, 0.019027341157197952, -0.012598685920238495, 0.012644869275391102, -0.04060397669672966, 0.05187259614467621, 0.02275891602039337, -0.01579453982412815, 0.034766461700201035, -0.029169099405407906, 0.009744584560394287, 0.08941002935171127, 0.022574184462428093, 0.029224518686532974, -0.008723943494260311, -0.023146852850914, 0.0034752606879919767, -0.04570256546139717, -0.03447089344263077, -0.00813280325382948, 0.02198304422199726, 0.032180219888687134, -0.02623186819255352, 0.0220938827842474, -0.04544394090771675, 0.005181717686355114, -0.020523665472865105, 0.016117820516228676, -0.04403998330235481, -0.056490883231163025, -0.009019513614475727, 0.01170273870229721, 0.039532534778118134, -0.02674911729991436, 0.024199822917580605, 0.024532338604331017, 0.007901888340711594, 0.02565920166671276, -0.07433594018220901, 0.025548361241817474, -0.018934976309537888, -0.05937269330024719, -0.04706957936286926, -0.03949558734893799, 0.025289738550782204, -0.018861083313822746, 0.007440059911459684, -0.004964658059179783, -0.020967021584510803, 0.02338700369000435, -0.030055809766054153, 0.04222961515188217, 0.018990395590662956, 0.02661980502307415, -0.04060397669672966, 0.018242232501506805, 0.028060710057616234, -0.013882569968700409, 0.013060514815151691, -0.003840105375275016, -0.01789124310016632, -0.014196612872183323, -0.01066824235022068, 0.040567029267549515, 0.05128145590424538, -0.06794423609972, 0.003941707778722048, -0.0010639377869665623, -0.030924048274755478, 0.016810564324259758, 0.007190672215074301, 0.05634309723973274, 0.037408120930194855, 0.029686346650123596, -0.04958192631602287, -0.018140630796551704, -0.007259946782141924, -0.018288414925336838, -0.050616420805454254, 0.021447323262691498, -0.030628478154540062, -0.02229708805680275, -0.00013984749966766685, 0.04182320460677147, 0.05305487662553787, 0.019101234152913094, -0.021613581106066704, 0.021705947816371918, 0.025936298072338104, -0.009005659259855747, -0.05205732583999634, -0.020800763741135597, -0.03757438063621521, -0.03171839192509651, -0.011518007144331932, 0.05933574587106705, -0.02371952123939991, -0.010603586211800575, -0.007994254119694233, -0.029113680124282837, -0.002239868976175785, -0.021170226857066154, 0.019119706004858017, 0.03659530356526375, 0.01639491692185402, 0.06554272770881653, 0.005047787446528673, -0.007393877021968365, -0.0011545716552063823, -0.018297651782631874, -0.055013030767440796, 0.023442422971129417, 0.0036715378519147635, 0.034452419728040695, -0.01727239228785038, -0.017050715163350105, -0.024569286033511162, 0.02617644891142845, -0.007486242800951004, -0.05427410453557968, -0.043855249881744385, 0.03428616002202034, 0.02203846350312233, -0.031607553362846375, 0.02325769141316414, 0.039421696215867996, -0.015249582938849926, -0.01108388788998127, 0.06798118352890015, -0.015360421501100063, -0.029298411682248116, 0.011490297503769398, 0.020024891942739487, -0.027081632986664772, -0.07429899275302887, 0.013503869995474815, 0.015591335482895374, -0.10596197098493576, 0.05549333244562149, -0.03175533935427666, 0.055530279874801636, 0.014556840062141418, 0.009883133694529533, 0.0010269915219396353, -0.015434314496815205, 0.01866711489856243, -0.02726636454463005, -0.04747598618268967, -0.053719911724328995, 0.010945339687168598, 0.02146579697728157, 0.0020678378641605377, -0.02892894856631756, 0.054237160831689835, 0.07832614332437515, -0.019249018281698227, 0.0034868065267801285, 0.035339128226041794, -0.007920362055301666, 0.032900676131248474, -0.02048671990633011, 0.035283710807561874, -0.00894562155008316, 0.012931202538311481, 0.03426768630743027, 0.002958012744784355, 0.0010148684959858656, 0.011296329088509083, -0.018140630796551704, 0.001974317478016019, -0.08106017112731934, 0.05080115422606468, -0.03633667901158333, 0.014880119822919369, -0.004747598897665739, 0.10285848379135132, -0.059077125042676926, 0.007481624372303486, -0.09502586722373962, -0.08261191099882126, -0.0032512738835066557, -0.05253763124346733, -0.03504355996847153, -0.004105656873434782, 0.0014247414655983448, 0.018704060465097427, 0.03713102638721466, -0.028559485450387, 0.004101038444787264, -0.014187376946210861, 0.05663866922259331, -0.03234647959470749, 0.01688445545732975, -0.026194922626018524, 0.09103566408157349, 0.024088982492685318, 0.02874421700835228, 0.02867032401263714, 0.05187259614467621, 0.0839419811964035, -0.09251351654529572, -0.010520457290112972, 0.021059386432170868, 0.031607553362846375, 0.013134407810866833, 0.0026739879976958036, 0.00042459374526515603, 0.06872010976076126, -0.03480340912938118, -0.016514992341399193, 0.014381344430148602, -0.010677479207515717, -0.017928188666701317, -0.045850351452827454, 0.005611218512058258, 0.021761367097496986, -0.025677673518657684, -0.012450900860130787, -0.055788904428482056, 0.001475542550906539, -0.020967021584510803, 0.024532338604331017, 0.027672773227095604, -0.0389413945376873, -0.006493310909718275 ]
18,479
miarec_s3fs.s3fs
isempty
null
def isempty(self, path): self.check() _path = self.validatepath(path) _key = self._path_to_dir_key(_path) response = self.client.list_objects( Bucket=self._bucket_name, Prefix=_key, MaxKeys=2 ) contents = response.get("Contents", ()) for obj in contents: if obj["Key"] != _key: return False return True
(self, path)
[ 0.018725169822573662, 0.012448788620531559, -0.10148078203201294, 0.010539406910538673, 0.038792580366134644, 0.021967338398098946, -0.023744385689496994, -0.051610011607408524, 0.04223324730992317, 0.025181148201227188, 0.00016142897948157042, 0.07871944457292557, 0.03484148159623146, -0.010085692629218102, -0.04866086691617966, -0.014159669168293476, 0.02860291115939617, 0.04246010258793831, 0.03731800615787506, -0.04677039012312889, 0.006559953559190035, 0.04064524546265602, 0.059360966086387634, 0.051345344632864, -0.023233957588672638, -0.018602289259433746, 0.052101533859968185, -0.01699538342654705, 0.051345344632864, 0.011219978332519531, -0.024897577241063118, 0.07531658560037613, 0.013063193298876286, 0.017657050862908363, 0.008469334803521633, -0.0099155493080616, 0.03276195749640465, -0.04004029557108879, -0.05792420357465744, -0.04242229461669922, 0.04729972407221794, 0.06945610791444778, -0.01241097878664732, -0.04351877048611641, 0.021645957604050636, 0.026012957096099854, 0.013290050439536572, 0.060381822288036346, -0.007566632237285376, 0.002029899274930358, 0.018772432580590248, 0.04643010348081589, -0.028319338336586952, -0.008644203655421734, -0.01763814687728882, -0.024973195046186447, 0.011891097761690617, -0.025048814713954926, -0.026863671839237213, 0.013431835919618607, -0.08854991942644119, -0.007996715605258942, 0.019906718283891678, -0.05009762942790985, 0.019490813836455345, -0.0064512514509260654, -0.02977500669658184, -0.03431215137243271, 0.01709936000406742, 0.02680695801973343, -0.059360966086387634, 0.007991990074515343, -0.005988084711134434, 0.06147829815745354, -0.029869530349969864, -0.003835304407402873, 0.014518859796226025, 0.038754768669605255, -0.01600288413465023, -0.038471199572086334, -0.015218336135149002, -0.07403106242418289, -0.03970000892877579, -0.006711191963404417, -0.030474482104182243, 0.06057086959481239, 0.0739932507276535, -0.01324278861284256, 0.02680695801973343, 0.06000372767448425, -0.0012311728205531836, 0.06567515432834625, -0.00005398196663009003, -0.05247962847352028, 0.07168687134981155, 0.002090158173814416, -0.0023938158992677927, -0.03062571957707405, -0.04915238916873932, -0.03444448485970497, 0.0008058156236074865, -0.02864071913063526, 0.08802058547735214, 0.008979763835668564, -0.005047572311013937, 0.03136300668120384, -0.016948122531175613, -0.015483003109693527, 0.027600957080721855, 0.03501162678003311, -0.033650483936071396, 0.015237241052091122, 0.03667524456977844, 0.02875414863228798, 0.03501162678003311, -0.006489060819149017, -0.005539096426218748, -0.024443862959742546, 0.01432035956531763, -0.06896458566188812, 0.03253510221838951, 0.032270435243844986, 0.00159981579054147, -0.030852576717734337, 0.08613011240959167, -0.0007981355884112418, 0.0027388278394937515, 0.03134410083293915, -0.017761027440428734, 0.061591725796461105, -0.0103598115965724, 0.01551136001944542, -0.0162864550948143, 0.021343480795621872, -0.03314005583524704, -0.012722907587885857, 0.07127096503973007, -0.02988843433558941, 0.0010882056085392833, 0.06488115340471268, 0.02502990886569023, -0.047035057097673416, 0.046052008867263794, 0.048774294555187225, 0.02652338705956936, 0.008095965720713139, -0.004111786372959614, 0.006006989162415266, 0.06295286864042282, -0.01646605134010315, -0.03898162767291069, -0.003851846093311906, 0.005246072541922331, -0.020417146384716034, -0.01898038387298584, -0.004818351939320564, -0.014726812019944191, -0.01929231360554695, -0.06915362924337387, -0.057168010622262955, 0.012165216729044914, -0.01508600264787674, 0.03901943564414978, -0.008526049554347992, -0.044274959713220596, -0.017250599339604378, -0.05762172490358353, -0.00004571113095153123, -0.009499644860625267, 0.07172468304634094, 0.022610099986195564, 0.000020935551219736226, -0.030890386551618576, -0.05467258393764496, -0.01788390800356865, -0.002346554072573781, -0.03608919680118561, 0.03958657756447792, 0.00029612542130053043, -0.015530264936387539, -0.047148484736680984, -0.04510677233338356, -0.012250288389623165, 0.04847181960940361, 0.03618372231721878, 0.02627762407064438, -0.04193076863884926, -0.01802569441497326, 0.05285772308707237, 0.05637400969862938, -0.06885115802288055, 0.030758053064346313, -0.017288407310843468, 0.029642673209309578, -0.001237080548889935, 0.0029444172978401184, 0.039889056235551834, -0.006711191963404417, -0.036164816468954086, -0.0025119706988334656, 0.013365669175982475, -0.046997249126434326, 0.014991478994488716, -0.035597674548625946, 0.028319338336586952, -0.026712434366345406, -0.04522019997239113, 0.003849482862278819, 0.02011467143893242, 0.08257601410150528, -0.03809310123324394, -0.031041625887155533, 0.012978121638298035, -0.03735581785440445, 0.012505502440035343, 0.022931480780243874, -0.0020192652009427547, -0.002119696931913495, -0.027449719607830048, 0.02085195668041706, 0.03353705257177353, -0.002989316126331687, -0.004435530863702297, -0.02304491028189659, -0.006843524985015392, 0.007387037388980389, 0.048169344663619995, 0.062121059745550156, -0.05561782047152519, -0.03886820003390312, 0.04692162945866585, 0.037658292800188065, 0.009253882803022861, -0.01517107430845499, -0.0438968650996685, -0.027752196416258812, 0.002745917299762368, -0.007495739497244358, -0.011465740390121937, -0.023744385689496994, 0.01898038387298584, -0.03189234063029289, -0.014972574077546597, -0.01157916896045208, -0.019074909389019012, -0.018035147339105606, -0.0042204889468848705, 0.0068955132737755775, 0.03183562681078911, -0.025842813774943352, 0.024727433919906616, 0.01001952588558197, -0.04306505620479584, -0.04004029557108879, 0.03183562681078911, -0.0704769641160965, -0.0772070661187172, -0.042686961591243744, -0.007713144179433584, -0.006848251447081566, -0.005094834137707949, -0.02879195846617222, -0.0028333517257124186, 0.10049773752689362, -0.0035800898913294077, 0.01837543211877346, 0.05142096430063248, 0.029340196400880814, 0.007150727789849043, 0.019453004002571106, 0.06790591776371002, -0.030512291938066483, 0.04287600889801979, -0.034652434289455414, 0.024027956649661064, 0.038754768669605255, 0.0238956231623888, -0.02344190888106823, -0.028054671362042427, 0.028016863390803337, -0.036807578057050705, 0.000617358775343746, 0.03678867220878601, -0.004014899488538504, -0.026183100417256355, -0.015586979687213898, -0.005019215401262045, -0.06412496417760849, -0.05421886965632439, 0.003953459206968546, 0.03760157898068428, 0.021608147770166397, -0.0364672914147377, -0.013516907580196857, 0.004125965293496847, 0.04185515269637108, 0.016985932365059853, -0.06246134638786316, -0.0002425127022434026, 0.007991990074515343, -0.03809310123324394, 0.041552674025297165, -0.06185639277100563, -0.05142096430063248, 0.024765243753790855, -0.01228809729218483, -0.025464719161391258, 0.05633620172739029, 0.01663619466125965, 0.034860387444496155, -0.048849914222955704, 0.008303917944431305, -0.02007686160504818, 0.008251930586993694, 0.019642051309347153, 0.023555338382720947, 0.02028481289744377, -0.013460192829370499, -0.04068305715918541, 0.042044200003147125, 0.007897465489804745, 0.03406638652086258, -0.08575201779603958, 0.015586979687213898, -0.04310286417603493, -0.06004153564572334, 0.012845788151025772, 0.01127669308334589, -0.03168438747525215, 0.036202624440193176, 0.0761105865240097, -0.04469086602330208, 0.01887640915811062, -0.04246010258793831, 0.028527291491627693, -0.017392383888363838, -0.014944217167794704, -0.04582515358924866, 0.04401029273867607, 0.08975982666015625, 0.022931480780243874, -0.030682435259222984, 0.02400905266404152, -0.015983980149030685, -0.013063193298876286, -0.03389624506235123, 0.05724363029003143, 0.0053925844840705395, 0.005430393852293491, -0.040947724133729935, 0.0368264839053154, 0.07274553924798965, 0.031211767345666885, 0.00965088326483965, 0.07161125540733337, 0.0043386435136199, -0.01950971782207489, 0.07406887412071228, 0.006314191967248917, 0.042195435613393784, 0.07425791770219803, -0.008767085149884224, -0.08189544826745987, -0.018101312220096588, -0.0005511920899152756, -0.048169344663619995, -0.012732359580695629, -0.002276842715218663, -0.0347091481089592, 0.004598584026098251, -0.027600957080721855, -0.032629624009132385, -0.02665572054684162, -0.07066601514816284, 0.03359377011656761, -0.0014816609909757972, 0.019358480349183083, -0.003424125723540783, 0.0052933343686163425, 0.03711005672812462, -0.018885860219597816, -0.011503550224006176, 0.05811325088143349, -0.01685359887778759, -0.02340409904718399, 0.018214741721749306, 0.007788763381540775, -0.007150727789849043, 0.011900549754500389, -0.05244182050228119, 0.052139345556497574, 0.00019923850777558982, -0.03427433967590332, -0.037450339645147324, -0.025256767868995667, -0.007940001785755157, 0.0534626767039299, -0.008488239720463753, -0.022175289690494537, 0.0148685984313488, 0.061062391847372055, 0.01072845421731472, -0.035919055342674255, 0.03357486426830292, 0.008199942298233509, -0.037582673132419586, -0.007353954017162323, -0.038471199572086334, -0.0014993841759860516, 0.004598584026098251, 0.06590200960636139, -0.048244960606098175, 0.005718691740185022, 0.02920786291360855, -0.013658693060278893, -0.010558311827480793, 0.007013667840510607, -0.05289553478360176, -0.021683765575289726, 0.06567515432834625, -0.02007686160504818, 0.0009316504583694041, -0.014433789066970348, 0.021400194615125656, 0.013895003125071526, -0.011305049993097782, -0.018677908927202225, -0.06714972853660583, 0.055466581135988235, -0.005071203224360943, -0.02652338705956936, -0.045371439307928085, -0.018110765144228935, -0.0008424436091445386, -0.06397372484207153, 0.034331053495407104, -0.035106148570775986, -0.06325534731149673, -0.017902813851833344, 0.03062571957707405, -0.04677039012312889, 0.0011827293783426285, -0.005765953566879034, 0.0008424436091445386, 0.03886820003390312, 0.04015372321009636, -0.009887192398309708, 0.05255524814128876, 0.14110517501831055, 0.018469955772161484, -0.029056625440716743, 0.009830478578805923, -0.016721265390515327, -0.08197106420993805, -0.010615025646984577, 0.001268982421606779, -0.00888996571302414, 0.05633620172739029, -0.04185515269637108, -0.009338954463601112, -0.024954291060566902, 0.04843400791287422, 0.007500465959310532, -0.05917191505432129, 0.03831996023654938, -0.017581431195139885, -0.015776026993989944, 0.07323706150054932, 0.05512629821896553, -0.023536432534456253, -0.058340106159448624, 0.007264156360179186, -0.06888896971940994, -0.005643072538077831, 0.05149658024311066, -0.018933122977614403, 0.046014200896024704, 0.03383953124284744, -0.02538909949362278, 0.0031192863825708628, 0.015133264474570751, -0.039397530257701874, 0.0055343699641525745, -0.024122480303049088, -0.0035682744346559048, -0.06147829815745354, -0.04960610345005989, -0.00660248938947916, 0.021438004449009895, -0.07694239914417267, 0.001597452675923705, -0.04136362671852112, -0.051610011607408524, 0.0011573261581361294, 0.04692162945866585, -0.04574953392148018, -0.048812106251716614, 0.06034401059150696, -0.016201384365558624, -0.025181148201227188, -0.0033319650683552027, 0.01003843080252409, 0.01827145554125309, 0.06488115340471268, -0.037979673594236374, 0.01113490667194128, -0.013110455125570297, -0.056109342724084854, -0.00017442600801587105, -0.0407208651304245, 0.004882155917584896, 0.026220910251140594, -0.0024221730418503284, -0.004003084264695644, 0.004962501116096973, 0.02312052808701992, -0.01798788458108902, -0.04737534373998642, -0.014849693514406681, 0.0025001552421599627, -0.0224777664989233, -0.0006421712459996343, -0.03126848116517067, -0.0031523697543889284, -0.07406887412071228, 0.019254503771662712, -0.045522674918174744, -0.04677039012312889, 0.01113490667194128, 0.034085292369127274, 0.009055382572114468, 0.0015832741046324372, -0.010265287943184376, 0.027166148647665977, 0.004771090112626553, 0.032383862882852554, 0.02924567274749279, -0.008492966182529926, -0.0029751374386250973, 0.010633930563926697, 0.047640010714530945, 0.007164906244724989, 0.04907677322626114, -0.03527629375457764, -0.048849914222955704, 0.07036353647708893, -0.01083243079483509, -0.01012350246310234, 0.03554096072912216, 0.02429262362420559, 0.008611121214926243, -0.007784037385135889, 0.03200576826930046, -0.05622277408838272, 0.06340658664703369, -0.0006344912108033895, 0.026863671839237213, -0.018139122053980827, 0.008828525431454182, -0.011437383480370045, 0.027449719607830048, -0.03416091203689575, -0.009551633149385452, 0.011503550224006176, -0.0009263335377909243, -0.02003905177116394, -0.03728019818663597, -0.0040456196293234825, 0.08023182302713394, 0.04953048750758171, -0.016154121607542038, -0.012874145060777664, -0.04903896152973175, -0.02535129152238369, 0.001537193777039647, 0.00888524018228054, -0.05675210803747177, 0.031136149540543556, -0.024481670930981636, -0.05909629911184311, 0.040872104465961456, -0.05788639187812805, 0.0694182962179184, -0.0389438159763813, 0.008856882341206074, -0.018772432580590248, -0.005175179801881313, -0.008767085149884224, -0.04586296156048775, 0.014585026539862156, -0.01784609816968441, -0.02206186205148697, 0.003324875608086586, -0.05013543739914894, 0.002221310045570135, 0.05247962847352028, 0.0771692544221878, -0.06431401520967484, -0.014670098200440407, -0.0004829576937481761, -0.008237751200795174, 0.03249729052186012, -0.01636207476258278, 0.032837577164173126, -0.039321914315223694, 0.022610099986195564, 0.009131002239882946, 0.0449555329978466, 0.03489819914102554, -0.01518997922539711, 0.01198562141507864, -0.0035730006638914347, -0.009135727770626545, 0.023460814729332924, 0.000010800085874507204, 0.06484334915876389, 0.004669477231800556, -0.010482692159712315, -0.027695482596755028, 0.032913196831941605, -0.026391053572297096, -0.06529705971479416, -0.013063193298876286, 0.02588062360882759, -0.04854743927717209, -0.018403789028525352, 0.049832962453365326, 0.05958782136440277, 0.020133575424551964, 0.018469955772161484, 0.04121238738298416, -0.062121059745550156, -0.05955001339316368, 0.035748910158872604, 0.015747670084238052, -0.0009984079515561461, -0.03516286239027977, 0.0040385304018855095, 0.02028481289744377, 0.08741563558578491, -0.053198009729385376, -0.029642673209309578, -0.037941865622997284, 0.026504481211304665, -0.023423004895448685, 0.02060619369149208, 0.0028238992672413588, 0.005865203682333231, 0.024160290136933327, -0.01518997922539711, 0.0014686640352010727, -0.009655608795583248, 0.05198810622096062, -0.031041625887155533, 0.0007715507526881993, -0.03555986285209656, 0.03296991065144539, -0.04170391336083412, -0.055504392832517624, -0.04737534373998642, 0.05614715442061424, -0.05641182139515877, -0.04665696248412132, 0.005988084711134434, 0.027771100401878357, -0.04159048572182655, 0.024122480303049088, -0.01709936000406742, -0.007812394294887781, 0.06507020443677902, -0.0055816322565078735, 0.03300772234797478, 0.0031121971551328897, -0.019906718283891678, -0.018923670053482056, 0.025691576302051544, 0.03805529326200485, -0.034539006650447845, 0.03631605580449104, 0.0346902459859848, -0.058831632137298584, 0.0038943816907703876, 0.01713716983795166, 0.008048703894019127, -0.020757433027029037, -0.03276195749640465, 0.011087644845247269, -0.029434720054268837, 0.018110765144228935, -0.02542690932750702, -0.026920385658740997, -0.07304801791906357, 0.0364672914147377, 0.048812106251716614, -0.03867914900183678, -0.014367622323334217, 0.02847057767212391, 0.11357983201742172, 0.006281108595430851, -0.005609989166259766, 0.016154121607542038, 0.05618496239185333, 0.011531907133758068, 0.012051788158714771, -0.006796263158321381, 0.010539406910538673, -0.007179084699600935, 0.04083429276943207, -0.02474633790552616, 0.001865664031356573, -0.02680695801973343, 0.049908582121133804, -0.010274739935994148, -0.04022934287786484, 0.03852791339159012, -0.038792580366134644, 0.01589890755712986, 0.008039251901209354, 0.06529705971479416, -0.03777172043919563, 0.032591816037893295, -0.02843276783823967, -0.09422135353088379, 0.05633620172739029, 0.0054209413938224316, 0.001826672931201756, -0.04684600979089737, -0.06291505694389343, -0.020057955756783485, 0.029907340183854103, -0.010473240166902542, 0.009565811604261398, -0.010955311357975006, 0.043178483843803406, 0.06446525454521179, -0.019235599786043167, 0.009022299200296402, -0.017260050401091576, 0.00047734534018673003, 0.033234577625989914, -0.01432035956531763, -0.03334800526499748, 0.0750519186258316, -0.03695881739258766, -0.006418168079108, -0.05232839286327362, 0.042686961591243744, 0.02450057677924633, -0.028735244646668434, 0.058302298188209534, 0.010085692629218102, -0.019396290183067322, 0.01745855063199997, 0.027430815622210503, -0.023706575855612755, 0.04631667584180832, -0.09104534983634949, 0.011626430787146091, 0.013195526786148548, 0.02627762407064438, -0.01034090667963028, -0.06582639366388321, 0.00289479224011302, 0.007925823330879211, 0.013819383457303047, 0.02899990975856781, 0.032951004803180695, 0.0036911554634571075 ]
18,480
fs.base
isfile
Check if a path maps to an existing file. Arguments: path (str): A path on the filesystem. Returns: bool: `True` if ``path`` maps to a file.
def isfile(self, path): # type: (Text) -> bool """Check if a path maps to an existing file. Arguments: path (str): A path on the filesystem. Returns: bool: `True` if ``path`` maps to a file. """ try: return not self.getinfo(path).is_dir except errors.ResourceNotFound: return False
(self, path)
[ 0.08237045258283615, -0.0227483119815588, -0.0025598942302167416, 0.004864508286118507, 0.02153809554874897, -0.03157912194728851, 0.08237045258283615, -0.005601984914392233, -0.024431271478533745, -0.00012320821406319737, 0.0568045973777771, 0.02955578826367855, 0.030784916132688522, -0.0336780920624733, -0.03278933838009834, 0.01639466919004917, 0.042319804430007935, 0.00898208562284708, -0.01430515293031931, -0.055556561797857285, -0.023277783766388893, -0.001867328304797411, 0.03541778028011322, 0.009582466445863247, 0.01863546296954155, 0.05222846195101738, 0.004517043475061655, -0.0245447289198637, 0.046328648924827576, -0.0419037900865078, -0.031446754932403564, 0.011043237522244453, 0.027097532525658607, -0.008967903442680836, -0.049770206212997437, 0.025490213185548782, 0.005379796493798494, -0.0096391960978508, -0.04099612683057785, -0.06743182241916656, -0.03872697055339813, 0.0799500122666359, -0.03971027210354805, 0.054913632571697235, -0.004675411619246006, 0.0008166606421582401, -0.09280857443809509, -0.010759592987596989, -0.009719561785459518, 0.014692800119519234, 0.01083523128181696, -0.02017660066485405, -0.007705683819949627, -0.0017834166064858437, -0.025490213185548782, -0.017699435353279114, 0.009554102085530758, 0.06259094923734665, -0.03670363500714302, -0.00018496005213819444, 0.02855357713997364, -0.0239018015563488, 0.03757347911596298, -0.06675107777118683, 0.007663136813789606, 0.021935198456048965, -0.018852924928069115, -0.115651436150074, 0.003087000921368599, 0.03522868454456329, -0.03819749876856804, 0.08683312684297562, -0.003942662850022316, 0.03876478970050812, 0.046177372336387634, 0.013208393007516861, 0.02762700244784355, 0.02955578826367855, 0.04443768411874771, -0.006523830350488424, -0.029101956635713577, -0.07212141901254654, -0.007639499846845865, -0.03590943291783333, -0.006136182229965925, 0.005866719875484705, 0.08675748854875565, -0.01312329899519682, -0.013463673181831837, 0.04564790427684784, 0.02231338992714882, -0.00007054187153698877, -0.0028057198505848646, -0.050753507763147354, 0.03407519683241844, -0.02762700244784355, 0.029158685356378555, -0.038878247141838074, -0.02861030586063862, -0.027513545006513596, 0.00285299401730299, 0.0019866954535245895, 0.04474024102091789, -0.002401525853201747, 0.005720170214772224, 0.02490401268005371, 0.005029967520385981, -0.003089364618062973, 0.013170573860406876, -0.03585270419716835, -0.04122304543852806, -0.03382936865091324, 0.032864976674318314, 0.05843082815408707, 0.014049871824681759, -0.06633505970239639, 0.013889140449464321, -0.021292269229888916, -0.04613955318927765, 0.004699048586189747, 0.046971578150987625, -0.000016084284652606584, 0.013889140449464321, -0.03396173566579819, 0.05952758714556694, -0.04871126636862755, -0.003923752810806036, -0.011071601882576942, -0.018881289288401604, 0.013662224635481834, -0.024771645665168762, -0.028137564659118652, -0.01159161701798439, 0.05143425613641739, -0.0506400503218174, 0.008906446397304535, 0.014711709693074226, 0.014201149344444275, 0.0011936718365177512, 0.06845294684171677, 0.056275129318237305, -0.00432558311149478, -0.028137564659118652, -0.017510339617729187, 0.02547130361199379, 0.03657126799225807, -0.006410372443497181, 0.021235540509223938, 0.026719339191913605, 0.06958752125501633, -0.01613938808441162, -0.06232621520757675, 0.0015056810807436705, 0.013624405488371849, -0.012253454886376858, -0.043114010244607925, 0.004959056619554758, -0.0009519828599877656, -0.020857347175478935, -0.012726197019219398, 0.03154130280017853, 0.000848570663947612, -0.010381399653851986, 0.01091086957603693, 0.0070674829185009, 0.02590622566640377, -0.10211212933063507, 0.011771258898079395, 0.014295698143541813, 0.011771258898079395, -0.024790555238723755, -0.016177209094166756, -0.013747317716479301, -0.018852924928069115, 0.026303326711058617, -0.017292877659201622, 0.031011831015348434, 0.07087337970733643, 0.053703416138887405, 0.034094106405973434, 0.03224095702171326, -0.03375373035669327, -0.005228518974035978, 0.058771200478076935, -0.021348997950553894, 0.05986796319484711, -0.027154261246323586, -0.03063363768160343, 0.06470883637666702, 0.06433063745498657, -0.05150989443063736, 0.020063141360878944, 0.010958144441246986, -0.0018188722897320986, -0.010674498975276947, -0.025509122759103775, 0.04341656342148781, -0.0007351127569563687, -0.06599468737840652, 0.02832666039466858, 0.0040608481504023075, -0.02318323403596878, -0.029347781091928482, 0.05824173241853714, -0.05029967799782753, 0.027097532525658607, 0.0047628688625991344, 0.02046024426817894, -0.021405726671218872, 0.07435275614261627, -0.043038371950387955, -0.1102810949087143, 0.015033174306154251, 0.03320535272359848, 0.03800840303301811, 0.015609919093549252, -0.052115004509687424, 0.031806036829948425, -0.06293132901191711, 0.05514054745435715, 0.05358995869755745, 0.04443768411874771, -0.02004423178732395, -0.03405628353357315, 0.03112528845667839, -0.015373547561466694, 0.0024984378833323717, 0.07007917761802673, -0.031446754932403564, -0.01129851769655943, -0.0006488374783657491, 0.008216244168579578, 0.03800840303301811, 0.02231338992714882, -0.018701646476984024, -0.017793983221054077, 0.011752349324524403, -0.002845902694389224, -0.03364027291536331, -0.0030799098312854767, 0.049770206212997437, 0.016073204576969147, -0.025490213185548782, -0.02053588256239891, -0.05744752660393715, -0.07677318900823593, 0.006216548383235931, 0.0061929114162921906, -0.056842416524887085, -0.02339124120771885, 0.01739688031375408, 0.026586972177028656, -0.05230410024523735, -0.05358995869755745, 0.005209609400480986, -0.03997500613331795, -0.039672452956438065, -0.023296693339943886, 0.03477485105395317, 0.037894945591688156, -0.03256242349743843, 0.02269158326089382, 0.009459554217755795, 0.037384383380413055, -0.010182848200201988, -0.0706842839717865, -0.011837443336844444, 0.030576908960938454, -0.01675395295023918, -0.02840229868888855, 0.10438128560781479, 0.006816930137574673, 0.031806036829948425, -0.03963463380932808, 0.03210859000682831, -0.017491430044174194, 0.02696516551077366, -0.011383610777556896, 0.04470242187380791, 0.053400859236717224, -0.03335662931203842, 0.028875039890408516, -0.0006116090808063745, -0.010249031707644463, -0.040807031095027924, -0.010750138200819492, -0.04644210636615753, 0.07106247544288635, -0.04723631218075752, 0.03587161377072334, 0.042471081018447876, -0.010844686068594456, -0.05657768249511719, 0.012603283859789371, 0.005890356842428446, 0.08554726839065552, 0.0318627655506134, -0.02367488667368889, -0.026227688416838646, -0.08063076436519623, -0.017009232193231583, 0.038462232798337936, -0.016470307484269142, -0.013718953356146812, -0.028005195781588554, -0.011572707444429398, -0.053703416138887405, 0.013463673181831837, -0.04803051799535751, 0.02426108531653881, 0.00570598803460598, -0.03027435392141342, -0.013180028647184372, -0.007767139934003353, 0.058846838772296906, 0.02539566345512867, -0.02403416857123375, -0.026076411828398705, -0.05438416078686714, 0.022370120510458946, -0.036306533962488174, 0.06293132901191711, 0.009539919905364513, -0.022880680859088898, -0.01760488748550415, -0.0253200251609087, 0.023202143609523773, -0.04485369846224785, -0.003907206933945417, 0.024223266169428825, 0.019930774345993996, 0.0031413661781698465, 0.08607674390077591, -0.04595045745372772, -0.017292877659201622, -0.008774079382419586, -0.008116968907415867, -0.021935198456048965, 0.03250569477677345, 0.04992148280143738, 0.01231018453836441, -0.03441556915640831, -0.014607707038521767, -0.032089680433273315, 0.013718953356146812, -0.0065001933835446835, -0.044172950088977814, 0.03243005648255348, 0.07030609250068665, -0.0008290701080113649, -0.006457646377384663, -0.003732292680069804, -0.027721552178263664, -0.012206180952489376, -0.06803692877292633, 0.040466658771038055, 0.014654980972409248, 0.04685812070965767, -0.004299582447856665, 0.07125157117843628, 0.08252172917127609, 0.030595818534493446, -0.06383898854255676, -0.05150989443063736, -0.013066570274531841, 0.01835181750357151, 0.016820136457681656, 0.03971027210354805, -0.001724323956295848, 0.02583058550953865, 0.028175383806228638, -0.011742894537746906, -0.03267588093876839, 0.00002620390478114132, 0.029158685356378555, -0.05472453683614731, 0.024128718301653862, -0.05601039156317711, -0.000019297449398436584, 0.019930774345993996, 0.011610526591539383, 0.021292269229888916, -0.026454605162143707, -0.00810751412063837, 0.038102950900793076, 0.01037194486707449, 0.019647128880023956, -0.06520048528909683, -0.01544918678700924, -0.07174322754144669, 0.042395442724227905, -0.022994138300418854, 0.012215635739266872, -0.04129868373274803, -0.01598811149597168, -0.0232588741928339, 0.036306533962488174, 0.011459250003099442, 0.017897985875606537, 0.03371591120958328, 0.03851896524429321, 0.047614507377147675, -0.02583058550953865, 0.030236534774303436, -0.037384383380413055, 0.03097401186823845, 0.047690145671367645, 0.03693055361509323, 0.01184689812362194, -0.04201724752783775, 0.025149838998913765, -0.045458804816007614, -0.03534214198589325, -0.03382936865091324, -0.036892734467983246, 0.04871126636862755, -0.046555567532777786, -0.04595045745372772, 0.035739243030548096, -0.020876256749033928, -0.006646743044257164, 0.013633860275149345, -0.0135582210496068, -0.001862600794993341, 0.012366913259029388, -0.025376753881573677, -0.033167529851198196, -0.010721772909164429, 0.03326208144426346, 0.038537874817848206, -0.061418551951646805, -0.04863562807440758, 0.0385567843914032, -0.04799269884824753, -0.010920324362814426, -0.05045095458626747, -0.062288396060466766, -0.05514054745435715, -0.040807031095027924, -0.03063363768160343, -0.03407519683241844, 0.045458804816007614, -0.012574919499456882, 0.004278309177607298, 0.02269158326089382, 0.0055925301276147366, -0.013785136863589287, 0.010088300332427025, 0.11701293289661407, -0.0400884635746479, -0.054270703345537186, 0.022124294191598892, 0.0416390560567379, 0.009946477599442005, -0.002102517057210207, -0.0008615710539743304, -0.026492424309253693, -0.0002786219120025635, 0.018030354753136635, 0.013860776089131832, -0.045118432492017746, 0.03613634780049324, 0.04772796481847763, -0.09447262436151505, 0.05744752660393715, -0.025414573028683662, -0.0357203334569931, 0.009927568025887012, 0.0909932479262352, 0.015288454480469227, -0.013047660700976849, 0.017765618860721588, -0.042924914509058, -0.011884717270731926, 0.04027756303548813, 0.0064529189839959145, 0.016621585935354233, 0.04474024102091789, -0.05275793373584747, 0.03184385597705841, 0.057560984045267105, -0.06920932978391647, -0.038613513112068176, -0.016820136457681656, 0.017415789887309074, -0.041109584271907806, -0.023013047873973846, 0.02267267368733883, -0.012574919499456882, -0.05052659288048744, 0.06482229381799698, -0.005970722995698452, 0.010787957347929478, -0.026284417137503624, 0.0028648125007748604, -0.012253454886376858, -0.04341656342148781, 0.07957182079553604, -0.012234545312821865, 0.014295698143541813, 0.017444154247641563, -0.046820301562547684, -0.006523830350488424, 0.0722348764538765, -0.0271164420992136, 0.006599469110369682, 0.03415083512663841, -0.04322746768593788, 0.0007362946053035557, -0.003557378426194191, 0.0013508583651855588, 0.0380462221801281, -0.029158685356378555, 0.04927855730056763, 0.05843082815408707, 0.016111023724079132, 0.014106601476669312, -0.004552498925477266, 0.016460852697491646, -0.0009052996174432337, -0.013596040196716785, -0.05744752660393715, 0.01706596277654171, -0.0370061919093132, -0.04387039691209793, -0.021348997950553894, -0.0008107514004223049, -0.031654760241508484, 0.0017905078129842877, 0.002205338329076767, 0.009473736397922039, -0.013444763608276844, 0.010683953762054443, -0.018124902620911598, 0.0380462221801281, 0.06977661699056625, 0.003155548358336091, -0.018597643822431564, -0.04901381954550743, -0.02624659799039364, 0.031163107603788376, 0.001565955695696175, 0.00432558311149478, -0.03335662931203842, 0.02770264260470867, -0.03528541326522827, -0.029744883999228477, -0.11890389770269394, 0.056426405906677246, -0.015799015760421753, -0.016148842871189117, 0.002067061373963952, -0.007658409420400858, 0.02104644477367401, 0.07544951885938644, 0.08305119723081589, 0.019268937408924103, -0.022559216246008873, -0.0050725145265460014, 0.0010252577485516667, -0.0359850712120533, -0.021462457254529, -0.01159161701798439, 0.018370728939771652, -0.039823729544878006, -0.012111633084714413, -0.017869621515274048, -0.011761804111301899, 0.03585270419716835, -0.030066348612308502, 0.04992148280143738, -0.00001787553082976956, -0.00731330830603838, -0.03055799938738346, 0.02310759574174881, 0.0065285577438771725, 0.021065354347229004, 0.02197301760315895, 0.03772475942969322, 0.00534670427441597, -0.0027442635037004948, -0.06361207365989685, 0.008140605874359608, 0.022918500006198883, -0.04958111047744751, -0.00930354930460453, -0.0400884635746479, 0.03577706217765808, -0.03668472543358803, 0.0014075873186811805, -0.004968511406332254, -0.05279575288295746, 0.026870617642998695, -0.002484255703166127, 0.006845294497907162, 0.03439665958285332, 0.08055512607097626, -0.04538316652178764, 0.015156086534261703, 0.006093635689467192, -0.02204865589737892, 0.013009841553866863, -0.035531237721443176, -0.04300055280327797, -0.03146566450595856, 0.009156999178230762, 0.013076025061309338, 0.03827313706278801, -0.02925323322415352, 0.027589183300733566, 0.001100896392017603, -0.02598186396062374, 0.01430515293031931, 0.02654915302991867, 0.06470883637666702, 0.06595686823129654, 0.017907440662384033, -0.035795971751213074, -0.03918080031871796, 0.01613938808441162, -0.02204865589737892, -0.02560367062687874, 0.06361207365989685, 0.010759592987596989, 0.021008623763918877, 0.019051475450396538, 0.03377263993024826, 0.012678922154009342, -0.027513545006513596, -0.01105269230902195, 0.02331560291349888, 0.0003256005875300616, 0.00005757841790909879, -0.028648125007748604, 0.008168970234692097, -0.0493541955947876, -0.013529856689274311, 0.006958752404898405, 0.044324226677417755, 0.045610085129737854, -0.04481587931513786, -0.08312683552503586, -0.00556416530162096, 0.005209609400480986, -0.020308967679739, 0.045458804816007614, 0.021216630935668945, -0.0014087691670283675, 0.08350502699613571, 0.0011806715046986938, 0.03577706217765808, 0.013350214809179306, -0.029952891170978546, -0.013473127968609333, 0.06138073280453682, -0.01416333019733429, 0.046328648924827576, -0.037516750395298004, -0.040617935359478, 0.015297909267246723, 0.03248678520321846, -0.010646134614944458, -0.049202919006347656, -0.02339124120771885, 0.030085258185863495, 0.006613651290535927, 0.019117658957839012, -0.030955102294683456, -0.01427678856998682, 0.05143425613641739, -0.0403532013297081, 0.05480017513036728, 0.005370341707020998, -0.07072210311889648, 0.020630432292819023, 0.023202143609523773, -0.011619982309639454, -0.02238903008401394, 0.036892734467983246, 0.005058332346379757, -0.05203936621546745, 0.0403532013297081, -0.01760488748550415, 0.06380116939544678, 0.009048269130289555, 0.027078622952103615, 0.00017653933900874108, -0.008580255322158337, 0.029291052371263504, -0.013066570274531841, -0.04099612683057785, -0.05381687358021736, -0.020932985469698906, 0.01162943709641695, -0.02611423097550869, 0.0002091880451189354, 0.04269799590110779, 0.08191661536693573, -0.02267267368733883, 0.014692800119519234, 0.011336336843669415, 0.007228214759379625, 0.04685812070965767, -0.00244170892983675, -0.01037194486707449, -0.020441334694623947, -0.046971578150987625, 0.007195123005658388, 0.02560367062687874, 0.0070722103118896484, -0.017746709287166595, -0.032864976674318314, 0.042319804430007935, -0.021557005122303963, 0.05332522094249725, -0.04750104993581772, -0.0092515479773283, -0.006835839711129665, 0.08312683552503586, -0.07125157117843628, 0.01248982548713684, -0.06054870784282684, -0.04197942838072777, -0.01542082242667675, -0.06599468737840652, -0.013463673181831837, -0.025414573028683662, -0.03243005648255348, 0.02318323403596878, 0.02097080461680889, -0.004457950592041016, -0.008906446397304535, -0.06202366203069687, 0.04356784000992775, -0.024147627875208855, -0.0135582210496068, -0.017226694151759148, 0.0557834766805172, 0.004673047922551632, 0.0191460233181715, -0.011667256243526936, 0.019335120916366577, 0.010485402308404446, -0.07741612195968628, 0.012943657115101814, -0.024279994890093803, 0.07707574963569641, 0.017207784578204155, -0.02791064791381359, 0.04364347830414772, 0.03918080031871796, -0.026643700897693634, 0.0054885270074009895, 0.022426849231123924, -0.010995963588356972, 0.009615558199584484, -0.04451332241296768, 0.009209001436829567, 0.03399955481290817, -0.003557378426194191, -0.04436204582452774, -0.022937409579753876, -0.008088604547083378, -0.04084485024213791, 0.04939201474189758, 0.016725588589906693, -0.07696228474378586, 0.01802089996635914 ]
18,481
fs.base
islink
Check if a path maps to a symlink. Arguments: path (str): A path on the filesystem. Returns: bool: `True` if ``path`` maps to a symlink.
def islink(self, path): # type: (Text) -> bool """Check if a path maps to a symlink. Arguments: path (str): A path on the filesystem. Returns: bool: `True` if ``path`` maps to a symlink. """ self.getinfo(path) return False
(self, path)
[ 0.07611134648323059, 0.03173733875155449, -0.009878086857497692, 0.035597529262304306, 0.02716701664030552, 0.0013519778149202466, 0.0043973419815301895, 0.0058995396830141544, 0.024526789784431458, 0.044574297964572906, 0.02944307215511799, -0.012090414762496948, 0.08973126858472824, -0.02860548347234726, -0.015604646876454353, -0.03073587268590927, 0.013783801347017288, 0.0031682713888585567, 0.014885412529110909, 0.008667225018143654, -0.0021497358102351427, 0.044137295335531235, 0.023725617676973343, -0.030845124274492264, -0.0009200960048474371, 0.105681873857975, 0.002906524809077382, 0.0032274487894028425, 0.005635517183691263, 0.013019045814871788, -0.04963625222444534, -0.017398180440068245, 0.04308120533823967, 0.006955630145967007, 0.02115822583436966, 0.016223734244704247, -0.030098577961325645, -0.026766430586576462, -0.09614064544439316, -0.0321379229426384, 0.008275743573904037, 0.09235328435897827, -0.08587107807397842, 0.04628589376807213, -0.004283539019525051, -0.03758225217461586, -0.0718141496181488, -0.010433444753289223, -0.044173713773489, -0.0208122655749321, -0.022469233721494675, -0.031027209013700485, 0.004893522709608078, 0.012345332652330399, -0.047961071133613586, -0.030499164015054703, 0.03809208795428276, 0.04610380902886391, -0.06911929696798325, 0.014584973454475403, 0.03395877033472061, -0.010251360945403576, 0.011371180415153503, -0.014366471208631992, 0.041114691644907, -0.04624947905540466, 0.0015921018784865737, -0.05415194854140282, -0.013829322531819344, 0.035433653742074966, -0.05280452221632004, 0.06351109594106674, -0.005694694351404905, 0.008102762512862682, 0.0014578144764527678, -0.010633737780153751, 0.03197404742240906, 0.016223734244704247, 0.026475094258785248, -0.052622437477111816, -0.021103600040078163, -0.036344077438116074, -0.010224048048257828, 0.004661364480853081, -0.056591879576444626, -0.0017389075364917517, 0.09322729706764221, 0.03410443663597107, -0.004217533394694328, 0.004046829417347908, -0.002181600546464324, 0.012008477002382278, 0.04756048694252968, -0.017589367926120758, -0.01506749726831913, 0.006718920078128576, 0.015285998582839966, -0.05000041797757149, 0.035597529262304306, -0.020703013986349106, 0.018736500293016434, 0.013738280162215233, 0.028550859540700912, 0.02563750557601452, -0.01633298397064209, 0.026766430586576462, -0.04836165904998779, -0.028059231117367744, -0.06292842328548431, -0.05327794328331947, -0.042534951120615005, -0.032975513488054276, 0.0341772697865963, 0.0045202490873634815, 0.02006571739912033, -0.006386615801602602, 0.04268062114715576, -0.02971619926393032, -0.017980849370360374, 0.035087693482637405, -0.001017966540530324, 0.036690037697553635, 0.030098577961325645, -0.06791754066944122, 0.0328480526804924, -0.02556467242538929, 0.006919213104993105, -0.008913039229810238, 0.005553578957915306, 0.020193178206682205, 0.02039347030222416, -0.0020211385563015938, -0.023233989253640175, 0.07174131274223328, -0.061508163809776306, 0.010806718841195107, -0.010742989368736744, 0.035251569002866745, 0.030681248754262924, 0.020247802138328552, -0.005107471719384193, -0.010970594361424446, -0.00952302198857069, -0.02988007664680481, 0.0028701077681034803, 0.007670312188565731, -0.008849309757351875, 0.024526789784431458, 0.06933780014514923, -0.00562641303986311, 0.0678447037935257, -0.11529593914747238, 0.028987862169742584, 0.07356216013431549, -0.03951234742999077, 0.03852909430861473, -0.06052490696310997, -0.013192025944590569, 0.003150062868371606, -0.003559753065928817, 0.005949612706899643, -0.02869652584195137, -0.011189095675945282, 0.0033685644157230854, -0.016879238188266754, -0.023434283211827278, -0.04402804747223854, -0.07771369069814682, 0.021267475560307503, 0.019173504784703255, 0.003930750302970409, -0.003131854347884655, 0.00021138878946658224, -0.004645432345569134, 0.013255755417048931, 0.027294475585222244, 0.022906238213181496, 0.06270992010831833, 0.038565509021282196, 0.010169422253966331, -0.03536082059144974, -0.026274802163243294, -0.016569694504141808, 0.03455964848399162, -0.028823984786868095, 0.043226875364780426, -0.017798764631152153, -0.055572208017110825, 0.03699958324432373, 0.03357639163732529, -0.030663039535284042, 0.023598158732056618, 0.005731111392378807, 0.007301590871065855, -0.027658645063638687, -0.04446505010128021, 0.0017741863848641515, -0.01554091740399599, -0.08346755802631378, 0.05120217800140381, 0.03426831215620041, -0.0014851271407678723, -0.0815010517835617, 0.034650690853595734, 0.014630494639277458, -0.033740267157554626, 0.03020782768726349, 0.030517371371388435, 0.006541387643665075, 0.036853913217782974, -0.025455420836806297, -0.07425408065319061, 0.0042448462918400764, 0.0538606122136116, 0.024763500317931175, 0.018754709511995316, -0.022469233721494675, 0.04814315587282181, -0.0359070748090744, 0.011826392263174057, 0.07858769595623016, 0.006300125736743212, 0.02640226110816002, 0.034577857702970505, 0.014475722797214985, -0.04013143479824066, 0.057174552232027054, 0.04683214798569679, 0.03918459638953209, -0.03809208795428276, 0.021649854257702827, 0.00037469586823135614, 0.009550334885716438, -0.005289556458592415, 0.03250209242105484, -0.037290915846824646, -0.024435747414827347, 0.010451653972268105, -0.04002218693494797, -0.009796149097383022, -0.01804457977414131, 0.03791000321507454, 0.017543846741318703, 0.003559753065928817, 0.004347268957644701, -0.018317706882953644, -0.027057765051722527, -0.005398807115852833, -0.04788823798298836, -0.061326079070568085, -0.02514587715268135, 0.006072519812732935, 0.0009365974692627788, -0.024672457948327065, -0.0054761930368840694, -0.035433653742074966, -0.050655923783779144, -0.011799079366028309, -0.013210234232246876, 0.04442863166332245, -0.0050528463907539845, 0.008166491985321045, -0.019792592152953148, 0.006518627051264048, 0.009859878569841385, -0.019173504784703255, 0.021030766889452934, 0.053460028022527695, 0.017243407666683197, -0.019501255825161934, 0.1313922107219696, -0.02971619926393032, -0.025327961891889572, 0.016123587265610695, -0.0038328799419105053, -0.02563750557601452, 0.03526977822184563, -0.007592926267534494, 0.03184659034013748, -0.0065687005408108234, -0.04300837218761444, 0.0055444748140871525, 0.018153831362724304, -0.0074062892235815525, -0.03122750110924244, -0.03022603690624237, -0.05240393429994583, 0.04781540483236313, -0.054297614842653275, 0.03175554797053337, 0.03599811717867851, -0.0194830484688282, -0.014375575818121433, 0.05287735536694527, 0.06933780014514923, 0.09235328435897827, 0.02709418162703514, -0.0001412577839801088, -0.032629553228616714, -0.06321975588798523, 0.004511144943535328, 0.0029839107301086187, -0.02851444110274315, 0.01104342844337225, -0.03505127876996994, 0.014967350289225578, -0.014748848974704742, 0.010715676471590996, 0.02108539268374443, 0.018153831362724304, 0.0006902142777107656, -0.014539452269673347, 0.009450188837945461, 0.017043113708496094, -0.007702176924794912, 0.01904604397714138, -0.015713896602392197, 0.02944307215511799, -0.06085265800356865, 0.030699456110596657, -0.03689033165574074, 0.06351109594106674, 0.01862725056707859, 0.014111553318798542, -0.07989870756864548, -0.009108779951930046, 0.0359070748090744, -0.03885684534907341, -0.02725805900990963, 0.03758225217461586, 0.037800755351781845, 0.003436845960095525, 0.04715989902615547, -0.005635517183691263, -0.08295772224664688, 0.016378505155444145, -0.022815195843577385, -0.058194223791360855, 0.0017867047572508454, -0.014375575818121433, 0.00952302198857069, -0.0075974781066179276, 0.015631958842277527, -0.022869819775223732, 0.031008999794721603, 0.03630766272544861, -0.07982587069272995, 0.01633298397064209, 0.012190560810267925, 0.035342611372470856, 0.02421724610030651, 0.046613648533821106, -0.040932606905698776, -0.003197859972715378, -0.014557660557329655, -0.007383528631180525, -0.011871913447976112, -0.03397697955369949, 0.0050118775106966496, 0.04792465642094612, 0.059141065925359726, 0.034322939813137054, -0.04683214798569679, -0.037873588502407074, 0.03505127876996994, 0.02962515689432621, -0.013474257662892342, 0.04941774904727936, 0.05611846223473549, 0.023834869265556335, -0.002133803442120552, -0.041515279561281204, 0.018754709511995316, -0.027367308735847473, 0.06260067224502563, -0.034486815333366394, 0.05127501115202904, -0.029643366113305092, -0.0241262037307024, 0.017243407666683197, 0.024854542687535286, -0.014730640687048435, 0.002892868360504508, -0.025346171110868454, 0.03690854087471962, 0.025291545316576958, 0.023561742156744003, -0.0621272511780262, 0.018345018848776817, -0.02487275004386902, 0.007301590871065855, 0.0030021192505955696, -0.025947049260139465, -0.021613437682390213, 0.001826535677537322, 0.00006312501500360668, 0.036781080067157745, 0.02217789925634861, -0.012536522001028061, 0.030244244262576103, 0.019592298194766045, 0.039730850607156754, -0.06205441802740097, 0.021103600040078163, -0.026293009519577026, 0.02083047293126583, 0.01150774396955967, 0.059723734855651855, -0.004911730997264385, 0.02226894162595272, 0.04741482064127922, 0.034741733223199844, -0.07050313800573349, -0.034741733223199844, 0.0049299392849206924, 0.05316869169473648, -0.006987494882196188, -0.038893260061740875, -0.01845427043735981, -0.02938844822347164, 0.01879112608730793, 0.022906238213181496, -0.051165759563446045, 0.020083926618099213, 0.011780871078372002, -0.06256425380706787, 0.0015477187698706985, 0.04424654692411423, 0.03496023640036583, 0.06121682748198509, 0.01804457977414131, -0.041770197451114655, 0.07094014436006546, -0.01633298397064209, -0.0248909592628479, -0.012609356082975864, 0.0034664347767829895, -0.08842026442289352, -0.04268062114715576, -0.05171201378107071, 0.01497645489871502, 0.014648702926933765, -0.02006571739912033, -0.023889493197202682, 0.024071577936410904, -0.06514985859394073, -0.020448096096515656, -0.0037304572761058807, 0.070794478058815, 0.005030085798352957, -0.038456257432699203, 0.03690854087471962, 0.01524047739803791, -0.009996442124247551, -0.03689033165574074, -0.04504771903157234, -0.05367852747440338, 0.010442549362778664, -0.039912935346364975, 0.04584889113903046, -0.047232735902071, 0.011917434632778168, -0.01727982424199581, -0.0621272511780262, 0.04410088062286377, 0.006586908828467131, -0.03388593718409538, 0.015604646876454353, 0.0012597974855452776, 0.02277877740561962, 0.010515383444726467, -0.0011636341223493218, 0.005498953629285097, 0.04045918956398964, 0.04654081165790558, -0.0004375719581730664, -0.01675177924335003, 0.008057241328060627, -0.03530619665980339, 0.014038719236850739, -0.00909512396901846, -0.06562327593564987, 0.008694537915289402, 0.04085977375507355, 0.03809208795428276, -0.03976726904511452, -0.03791000321507454, 0.03969443216919899, -0.028004605323076248, -0.05458895117044449, 0.03142779320478439, 0.004622671753168106, 0.03089975006878376, -0.03379489481449127, 0.024071577936410904, -0.03210150822997093, -0.0120631018653512, 0.06394809484481812, -0.011453119106590748, -0.0007368734222836792, 0.014657806605100632, 0.010169422253966331, -0.01786249503493309, 0.005385150667279959, -0.0006941973697394133, 0.05047383904457092, 0.04868941009044647, -0.03561573848128319, -0.04206153377890587, 0.02092151530086994, -0.012554730288684368, 0.0482524074614048, 0.02946128137409687, 0.09686898440122604, 0.0323382169008255, 0.027476560324430466, -0.01600523293018341, 0.0006782650016248226, 0.02918815426528454, -0.011070741340517998, 0.006809962447732687, -0.049381330609321594, -0.021140016615390778, -0.08193805068731308, -0.061326079070568085, -0.01904604397714138, -0.006277365144342184, 0.004304023925215006, 0.0080344807356596, 0.007014807779341936, 0.0367264561355114, 0.020375262945890427, -0.025874216109514236, -0.00918161403387785, 0.04606739431619644, 0.08215655386447906, -0.008489692583680153, 0.007970751263201237, -0.037727922201156616, 0.0010651946067810059, 0.008954008109867573, -0.06256425380706787, -0.05367852747440338, -0.008371337316930294, 0.013765592128038406, 0.005840362049639225, 0.04231645166873932, -0.04282628744840622, 0.011799079366028309, -0.018080996349453926, -0.0421343669295311, 0.03699958324432373, 0.0017935328651219606, 0.004440587013959885, 0.026620762422680855, 0.04096902534365654, 0.04275345429778099, -0.012345332652330399, 0.040495604276657104, -0.021012557670474052, -0.06606027483940125, -0.05739305168390274, -0.007852396927773952, 0.02649330347776413, 0.02301548793911934, -0.02674822136759758, 0.013610820285975933, -0.02988007664680481, 0.03758225217461586, 0.0467228963971138, 0.024399330839514732, -0.006318334024399519, -0.008781027980148792, -0.024581415578722954, 0.004424654878675938, 0.00009822608262766153, 0.01290979515761137, -0.0037418375723063946, 0.029898284003138542, 0.005990582052618265, -0.024836333468556404, 0.03496023640036583, 0.0029884628020226955, 0.05619129538536072, 0.0011687552323564887, -0.029661575332283974, -0.03175554797053337, 0.026511510834097862, -0.0372362919151783, -0.01708863489329815, -0.06245500221848488, -0.012181457132101059, -0.0166789460927248, -0.0328480526804924, -0.019956467673182487, -0.025582879781723022, 0.06707995384931564, -0.047778986394405365, -0.007533748634159565, 0.04512055218219757, 0.010069276206195354, -0.043226875364780426, -0.012035788968205452, -0.04665006324648857, -0.022378191351890564, 0.013501569628715515, -0.004074141848832369, -0.02317936345934868, -0.060233570635318756, -0.015777627006173134, -0.03259313479065895, 0.025928841903805733, -0.021267475560307503, -0.012691293843090534, 0.023561742156744003, -0.004030896816402674, 0.024016954004764557, -0.05695604905486107, 0.005271348170936108, 0.014284533448517323, 0.0282595232129097, -0.045739639550447464, 0.06802678853273392, -0.011334763839840889, -0.02064838819205761, 0.009541231207549572, 0.029224570840597153, 0.024781707674264908, -0.012217873707413673, -0.04949058219790459, -0.006190875079482794, -0.006209083367139101, 0.009236238896846771, 0.004654536489397287, 0.015304206870496273, -0.08863876014947891, -0.019574090838432312, -0.02642046846449375, 0.0985441654920578, 0.03607095032930374, -0.07647551596164703, -0.023762034252285957, -0.02479991689324379, -0.001152822864241898, -0.0064048245549201965, 0.031172877177596092, 0.03607095032930374, -0.01659700833261013, 0.07654834538698196, 0.037290915846824646, -0.0014248116640374064, 0.02980724163353443, 0.0331575982272625, 0.007533748634159565, 0.0842687338590622, 0.005271348170936108, 0.01046075765043497, -0.04249853640794754, -0.03987651690840721, -0.02064838819205761, 0.011016115546226501, -0.019191712141036987, -0.04486563429236412, -0.013911260291934013, -0.002599257044494152, 0.01151684857904911, 0.025018418207764626, 0.019701549783349037, -0.026875680312514305, 0.035597529262304306, -0.03188300505280495, 0.04300837218761444, -0.01040613278746605, -0.05156634747982025, 0.029333822429180145, 0.001900507602840662, -0.006605117116123438, -0.04763332009315491, 0.04147886112332344, -0.028041021898388863, -0.08856593072414398, 0.0017298032762482762, -0.032538510859012604, 0.04082335904240608, -0.004729646258056164, 0.010105692781507969, 0.05036458745598793, 0.012081310153007507, 0.022833403199911118, -0.007815979421138763, -0.009878086857497692, -0.019246337935328484, 0.04737840220332146, 0.03827417269349098, -0.018217559903860092, -0.01019673515111208, 0.02387128584086895, 0.08390456438064575, -0.019501255825161934, -0.048033908009529114, 0.058267056941986084, 0.03616199269890785, 0.00981435738503933, -0.018253976479172707, -0.008439619094133377, -0.02760401926934719, -0.08725491911172867, -0.018554415553808212, -0.04603097587823868, 0.04497488588094711, -0.01694296859204769, -0.014448409900069237, 0.07050313800573349, -0.05790289118885994, 0.07305232435464859, -0.11653411388397217, -0.049053579568862915, -0.020102135837078094, 0.061653830111026764, -0.032793428748846054, 0.0394759327173233, -0.0394759327173233, -0.02707597427070141, 0.04814315587282181, -0.04224361851811409, -0.021777313202619553, -0.037108831107616425, -0.003926198463886976, 0.016460444778203964, -0.019792592152953148, -0.05874047800898552, 0.03740016743540764, -0.05764796957373619, 0.05291377380490303, -0.004645432345569134, -0.013255755417048931, -0.018062788993120193, 0.05877689644694328, 0.022742360830307007, -0.019082462415099144, 0.0626370906829834, -0.018345018848776817, 0.015458978712558746, -0.06270992010831833, 0.024399330839514732, -0.070794478058815, -0.011480431072413921, 0.048288825899362564, -0.0014248116640374064, -0.024144412949681282, 0.03943951427936554, -0.036435119807720184, -0.036690037697553635, -0.026456886902451515, 0.06930138170719147, 0.011280138045549393, -0.039985768496990204, -0.039730850607156754, 0.02656613662838936, -0.012327124364674091, -0.026857472956180573, 0.04471996799111366, 0.011489535681903362, -0.039585184305906296, 0.030262453481554985, -0.024417540058493614, -0.1155872792005539, 0.0297890342772007 ]
18,482
miarec_s3fs.s3fs
listdir
null
def listdir(self, path): _path = self.validatepath(path) _s3_key = self._path_to_dir_key(_path) prefix_len = len(_s3_key) paginator = self.client.get_paginator("list_objects") with s3errors(path): _paginate = paginator.paginate( Bucket=self._bucket_name, Prefix=_s3_key, Delimiter=self.delimiter ) _directory = [] for result in _paginate: common_prefixes = result.get("CommonPrefixes", ()) for prefix in common_prefixes: _prefix = prefix.get("Prefix") _name = _prefix[prefix_len:] if _name: _directory.append(_name.rstrip(self.delimiter)) for obj in result.get("Contents", ()): name = obj["Key"][prefix_len:] if name: _directory.append(name) if not _directory: if not self.getinfo(_path).is_dir: raise errors.DirectoryExpected(path) return _directory
(self, path)
[ -0.05280890688300133, 0.035991132259368896, -0.06935277581214905, -0.03882148489356041, 0.08677314221858978, 0.07099620997905731, -0.021364599466323853, -0.004980508238077164, 0.026002725586295128, 0.00040486600482836366, 0.03159039095044136, 0.03765282407402992, -0.011951393447816372, -0.012499203905463219, -0.0032001249492168427, 0.016890816390514374, 0.049704648554325104, -0.010207531042397022, 0.017411235719919205, -0.031243443489074707, 0.0072539206594228745, 0.04167009890079498, 0.048462945967912674, 0.006222211290150881, -0.011330542154610157, -0.043240487575531006, 0.011211849749088287, 0.019246399402618408, 0.03137126564979553, 0.00021698421915061772, -0.035242460668087006, 0.0420353077352047, -0.006984580773860216, 0.030951278284192085, -0.06767282634973526, -0.019629867747426033, 0.06456856429576874, -0.08260978758335114, -0.029271326959133148, 0.03606417402625084, -0.002809809986501932, 0.05120199918746948, 0.015010001137852669, 0.008011724799871445, 0.07786209881305695, 0.016972986981272697, -0.020360281690955162, -0.03007478266954422, -0.002777854446321726, 0.007162618916481733, 0.007527825888246298, 0.034457266330718994, -0.004300310276448727, -0.09130170941352844, 0.04053795710206032, -0.052991509437561035, 0.059565234929323196, -0.04590649902820587, 0.013932640664279461, 0.06358250975608826, 0.016078229993581772, -0.008454537950456142, -0.001539575052447617, -0.015046521089971066, -0.02379322424530983, -0.005537448450922966, -0.02404887042939663, -0.052005451172590256, -0.020908091217279434, -0.005418756511062384, -0.027938323095440865, 0.011933133006095886, 0.015283905901014805, 0.01028970256447792, -0.055000148713588715, 0.015064781531691551, 0.026714880019426346, 0.002065701177343726, -0.05540187656879425, -0.014562622644007206, -0.07293180376291275, -0.04287528246641159, -0.07066752016544342, 0.0034489219542592764, 0.02152894251048565, 0.035205937922000885, 0.00046620934153907, -0.027390511706471443, -0.01102011650800705, 0.09458857029676437, -0.0042227040976285934, -0.01526564545929432, 0.01877163164317608, 0.029125245288014412, -0.03418336063623428, -0.007902163080871105, -0.02328193560242653, -0.04090316593647003, -0.040684040635824203, 0.010581867769360542, 0.0012999080354347825, 0.01926466077566147, 0.066029392182827, -0.005117460619658232, -0.0061902557499706745, -0.05934610962867737, -0.08370540291070938, 0.0013809383381158113, 0.042181387543678284, 0.061756476759910583, -0.02529057301580906, 0.026167068630456924, 0.04316744580864906, 0.02859569527208805, -0.007550651207566261, -0.005468972492963076, 0.04335005208849907, -0.030366947874426842, -0.033252082765102386, -0.03911365196108818, 0.034256402403116226, -0.023610621690750122, 0.043970901519060135, -0.029727835208177567, 0.003250340698286891, 0.011704878881573677, 0.02881481871008873, -0.014078723266720772, -0.07910379767417908, 0.06438596546649933, 0.004665517248213291, 0.03511463850736618, -0.027408773079514503, -0.0320834219455719, 0.04378829896450043, 0.019246399402618408, 0.035717226564884186, -0.016607780009508133, 0.03085997700691223, 0.09780238568782806, 0.05521927401423454, 0.04641778767108917, 0.009321904741227627, 0.014361758716404438, 0.02832178957760334, 0.004784209653735161, 0.025235792621970177, 0.013750037178397179, 0.03991710767149925, 0.0013352874666452408, -0.038200635462999344, 0.011969653889536858, 0.1305249184370041, 0.017630359157919884, -0.03129822388291359, -0.004218138754367828, -0.06014956533908844, -0.0047020381316542625, -0.04338657110929489, -0.004017275292426348, -0.0006830508937127888, -0.04342309385538101, -0.022113272920250893, -0.026112288236618042, 0.0023669968359172344, 0.024414077401161194, -0.0073041366413235664, 0.04378829896450043, -0.06814759224653244, 0.020378541201353073, -0.0021421662531793118, -0.0002112778602167964, -0.019155098125338554, 0.0001507904817117378, -0.02202197164297104, 0.01351265236735344, -0.03555288538336754, 0.05189589038491249, 0.05171328783035278, -0.09268949180841446, 0.00029245077166706324, -0.030513031408190727, 0.024377556517720222, 0.01878989115357399, -0.05843309313058853, 0.0366850271821022, -0.03728761896491051, 0.045504771173000336, 0.029928699135780334, 0.02560099959373474, -0.07822730392217636, 0.012243558652698994, -0.016479957848787308, -0.0017564166337251663, -0.035242460668087006, 0.028431352227926254, 0.028157446533441544, -0.019355962052941322, -0.05160372704267502, 0.011613577604293823, 0.023610621690750122, 0.03416509926319122, 0.020214198157191277, -0.07019275426864624, 0.05755659565329552, -0.01583171635866165, -0.08743051439523697, -0.00225971732288599, -0.005058114416897297, -0.0029513277113437653, 0.023373236879706383, 0.028705256059765816, 0.026386193931102753, -0.027171388268470764, -0.02981913834810257, -0.0331059992313385, 0.00813954696059227, -0.008623446337878704, 0.03033042699098587, -0.05971131846308708, 0.015603462234139442, -0.020378541201353073, -0.039953626692295074, 0.01316570583730936, -0.015503030270338058, -0.02404887042939663, 0.010207531042397022, -0.013065274804830551, -0.009467987343668938, -0.04367873817682266, 0.0044851964339613914, -0.0015190321719273925, 0.04265615716576576, 0.02125503681600094, 0.030750414356589317, -0.011147938668727875, 0.030695633962750435, -0.01750253699719906, -0.024377556517720222, -0.039223212748765945, 0.001317027141340077, -0.03940581530332565, -0.034968554973602295, 0.03285035490989685, -0.06139126792550087, 0.038200635462999344, 0.01654386892914772, 0.004030970390886068, 0.01491869892925024, 0.0006893278914503753, -0.00903886929154396, 0.03438422456383705, -0.016689952462911606, -0.02857743389904499, -0.004667799919843674, -0.04966812953352928, -0.04181618243455887, 0.03190081566572189, -0.03451204672455788, 0.03831019625067711, -0.005249848123639822, -0.01725602336227894, -0.021656764671206474, 0.0013558303471654654, 0.03213820233941078, 0.011686618439853191, 0.0445917546749115, -0.018150780349969864, 0.02532709389925003, 0.07179966568946838, 0.0056652710773050785, -0.035698968917131424, -0.004464653320610523, -0.02676966041326523, 0.011850961484014988, 0.02251500077545643, -0.02928958833217621, -0.004300310276448727, -0.054488860070705414, 0.016644300892949104, -0.06920669227838516, -0.009139301255345345, -0.05839657410979271, -0.02835831046104431, 0.011129678227007389, 0.010563607327640057, -0.0036429380998015404, 0.03940581530332565, -0.03827367722988129, 0.043496131896972656, 0.05317411571741104, -0.03489551320672035, -0.013330048881471157, -0.07128837704658508, 0.01655299961566925, -0.0029490452725440264, -0.007386308163404465, -0.01632474549114704, 0.027189647778868675, -0.005373105406761169, -0.05353932082653046, 0.0628155767917633, 0.048024699091911316, 0.02328193560242653, -0.005542013794183731, -0.010992725379765034, -0.0012302905088290572, 0.031955596059560776, 0.006724370643496513, 0.003560766577720642, -0.0170186385512352, 0.014471320435404778, 0.011348802596330643, 0.006760891526937485, -0.0017153308726847172, -0.021364599466323853, -0.007609997410327196, 0.008344976231455803, -0.0788116306066513, 0.015366077423095703, -0.020141156390309334, 0.06606591492891312, -0.02684270218014717, 0.012499203905463219, 0.028924381360411644, 0.00900234840810299, -0.014781746082007885, 0.05185937136411667, 0.015959538519382477, -0.024213213473558426, 0.030421728268265724, -0.030001740902662277, -0.04835338518023491, 0.014334368519484997, 0.04809774085879326, -0.0067152404226362705, 0.024888845160603523, -0.0060898237861692905, -0.019848991185426712, 0.05693574622273445, 0.054306257516145706, -0.025893164798617363, -0.016845164820551872, 0.030659113079309464, -0.024140171706676483, -0.0002616364508867264, 0.06168343499302864, 0.04378829896450043, -0.007651083171367645, -0.017876874655485153, 0.08282890915870667, 0.051786329597234726, 0.0020474407356232405, 0.05127503722906113, 0.03679458796977997, 0.017630359157919884, 0.03107910044491291, -0.003645220771431923, -0.018351642414927483, 0.026641838252544403, 0.03438422456383705, -0.020926350727677345, -0.014955219812691212, -0.030951278284192085, 0.03867540508508682, -0.019575085490942, 0.02784701995551586, -0.058506134897470474, 0.03266775235533714, 0.04481087997555733, -0.02335497736930847, -0.022715864703059196, -0.001507619395852089, -0.028906119987368584, 0.00047819269821047783, -0.007071317173540592, 0.06157387048006058, -0.040464915335178375, 0.03213820233941078, 0.07066752016544342, -0.010691430419683456, -0.022989770397543907, 0.08538535982370377, -0.00658285291865468, 0.043277010321617126, 0.013485262170433998, 0.05536535382270813, -0.035187676548957825, 0.006541767157614231, -0.03305121883749962, 0.033982496708631516, -0.0029764357022941113, 0.010088838636875153, -0.012124867178499699, -0.0360824353992939, -0.03588157147169113, 0.06946233659982681, -0.02660531736910343, 0.013065274804830551, -0.04937596246600151, 0.0255279578268528, -0.023446278646588326, -0.060003481805324554, 0.02076200768351555, -0.04342309385538101, -0.04006318747997284, 0.04210834577679634, 0.02452363818883896, -0.05920002609491348, -0.014900438487529755, 0.06829367578029633, -0.07705864310264587, 0.024870585650205612, 0.037470221519470215, 0.027938323095440865, -0.009130170568823814, -0.03538854047656059, -0.004138249903917313, 0.013823078945279121, 0.058469612151384354, -0.017447756603360176, -0.08677314221858978, 0.012891801074147224, -0.01416089478880167, 0.07245703786611557, -0.019903771579265594, -0.021638505160808563, -0.006304382812231779, 0.042254429310560226, -0.014854787848889828, 0.042729198932647705, -0.006249601952731609, -0.05887134000658989, -0.044956959784030914, -0.03009304217994213, 0.007317831739783287, -0.02784701995551586, -0.012307470664381981, -0.05836005136370659, 0.010791861452162266, -0.01040839496999979, 0.002196947345510125, -0.027207909151911736, 0.060989540070295334, 0.02711660787463188, 0.04287528246641159, 0.005268108565360308, -0.0030106739141047, 0.07552476972341537, -0.010755341500043869, -0.049010757356882095, -0.05006985738873482, 0.033452946692705154, -0.04718472436070442, 0.01529303565621376, 0.01852511614561081, 0.040939684957265854, 0.0077789053320884705, -0.057227909564971924, -0.041231852024793625, 0.03005652129650116, 0.002522209659218788, 0.07015623152256012, -0.028212226927280426, -0.0028577435296028852, -0.04681951552629471, 0.00031670278985984623, 0.039953626692295074, 0.01477261632680893, -0.08136808127164841, 0.022003712132573128, 0.019922032952308655, -0.06507986038923264, 0.001235996838659048, 0.023975828662514687, -0.004733993671834469, 0.009513637982308865, -0.05441581830382347, -0.028120925650000572, -0.03031216748058796, -0.0006545191281475127, -0.09772934764623642, 0.04583345726132393, -0.03180951625108719, -0.026495754718780518, -0.03374511003494263, -0.005820483900606632, 0.04638126865029335, 0.055000148713588715, -0.0788116306066513, 0.05755659565329552, 0.030257385224103928, -0.043240487575531006, -0.001101326895877719, -0.03666676580905914, -0.007879337295889854, -0.07125185430049896, -0.012380511499941349, -0.04784209653735161, 0.022734126076102257, 0.017420366406440735, -0.03628329932689667, 0.001279365154914558, 0.018990755081176758, -0.02456015907227993, 0.06131822615861893, 0.012636156752705574, -0.001870543695986271, 0.03708675503730774, -0.03641112148761749, 0.010317092761397362, 0.0670519769191742, -0.0592365488409996, -0.0016936466563493013, -0.02729921042919159, -0.0381275936961174, -0.01264528650790453, 0.027773980051279068, -0.010107099078595638, 0.05434277653694153, -0.02760963700711727, -0.02432277426123619, -0.008869960904121399, 0.0033827282022684813, -0.01355830393731594, -0.0061537353321909904, -0.031973857432603836, -0.06066085398197174, -0.018616417422890663, 0.07494044303894043, -0.01267267670482397, 0.005537448450922966, -0.04126837104558945, 0.0835593193769455, 0.006655894685536623, 0.029946960508823395, -0.020342020317912102, 0.05693574622273445, -0.011184459552168846, -0.014608273282647133, 0.040684040635824203, 0.018452074378728867, 0.009513637982308865, 0.016936466097831726, -0.03703197091817856, 0.03600939363241196, -0.007500435225665569, -0.0011675205314531922, 0.05237066000699997, 0.022113272920250893, 0.03474942967295647, -0.03474942967295647, -0.028997423127293587, 0.009404076263308525, 0.07537868618965149, -0.013750037178397179, 0.0065782880410552025, -0.024140171706676483, -0.044482190161943436, -0.028887860476970673, -0.0039465161971747875, 0.051749806851148605, -0.025436656549572945, -0.006806542165577412, 0.05912698432803154, 0.019100317731499672, -0.0044349804520606995, 0.02202197164297104, 0.023501059040427208, -0.030713895335793495, 0.0396614633500576, -0.016352135688066483, -0.04137793555855751, 0.004119989462196827, 0.03831019625067711, 0.029125245288014412, -0.024761022999882698, -0.011147938668727875, 0.0048846411518752575, -0.04192574322223663, 0.06993710994720459, -0.08041854202747345, 0.03889452666044235, 0.0015532702673226595, -0.049741171300411224, 0.035205937922000885, 0.011987914331257343, -0.011686618439853191, -0.04513956606388092, -0.009011478163301945, 0.006222211290150881, -0.035680707544088364, -0.015000870451331139, 0.011522275395691395, 0.018497725948691368, 0.02954523265361786, 0.00656915782019496, -0.023099331185221672, -0.01979421079158783, 0.026860961690545082, 0.013366569764912128, 0.07888467609882355, 0.04313092678785324, 0.060551293194293976, -0.004875511396676302, -0.011997044086456299, 0.08691922575235367, 0.03056781180202961, -0.018360773101449013, 0.0365937240421772, -0.022697605192661285, -0.0010396982543170452, 0.0036931540817022324, -0.020981132984161377, -0.010618388652801514, 0.062486886978149414, 0.004711167886853218, -0.020396800711750984, 0.05171328783035278, -0.023683663457632065, -0.022752385586500168, -0.05032550171017647, -0.003079150104895234, 0.050727229565382004, -0.03834671899676323, -0.025911424309015274, 0.015539550222456455, 0.026422714814543724, 0.03776238486170769, -0.008121286518871784, 0.016479957848787308, -0.006450465880334377, 0.00964146014302969, -0.0296182744204998, -0.008943002671003342, 0.022734126076102257, -0.08838005363941193, -0.023391498252749443, -0.022441959008574486, -0.052041973918676376, 0.00142316531855613, -0.0021672742441296577, -0.035717226564884186, 0.025235792621970177, -0.0060898237861692905, -0.009924495592713356, 0.01653474010527134, 0.024724502116441727, 0.04042839631438255, -0.02004985511302948, 0.003782173153012991, -0.004492043983191252, -0.04912031814455986, -0.0190637968480587, -0.04484739899635315, -0.005254413466900587, 0.032156459987163544, -0.053721923381090164, 0.021912408992648125, -0.020725486800074577, 0.04484739899635315, -0.05353932082653046, -0.026020986959338188, -0.026020986959338188, 0.0038255415856838226, -0.048024699091911316, -0.014717835001647472, 0.040684040635824203, 0.04838990420103073, -0.02609402872622013, 0.0730048418045044, 0.03606417402625084, -0.02105417288839817, -0.023154113441705704, 0.007737819571048021, -0.002284825313836336, 0.04335005208849907, -0.045943018049001694, 0.03409205749630928, 0.019136838614940643, -0.11927655339241028, 0.052041973918676376, -0.010919684544205666, 0.08056462556123734, 0.01465392392128706, -0.025984466075897217, 0.01959334686398506, -0.02558273822069168, 0.028668737038969994, 0.00688871368765831, -0.06511637568473816, -0.019629867747426033, 0.017219502478837967, -0.008856265805661678, -0.030969539657235146, 0.023227155208587646, 0.08092983067035675, 0.035954613238573074, 0.01855250634253025, -0.009632330387830734, 0.01877163164317608, 0.0050855050794780254, -0.013585694134235382, -0.03003826178610325, 0.02578360214829445, -0.01605083979666233, 0.029472190886735916, 0.014991740696132183, -0.014964349567890167, 0.009034303948283195, 0.03164517134428024, -0.013713516294956207, -0.036447640508413315, -0.0296182744204998, 0.025929685682058334, -0.019502045586705208, 0.0541236512362957, -0.020488103851675987, 0.06686937063932419, -0.007719559594988823, 0.019374221563339233, -0.09758326411247253, -0.02958175353705883, 0.034256402403116226, -0.008591490797698498, -0.008605185896158218, 0.007673908490687609, 0.025674039497971535, -0.06135474890470505, 0.06190255656838417, -0.035717226564884186, 0.003517398377880454, -0.004343678709119558, -0.0017598404083400965, 0.034932032227516174, 0.004220421425998211, 0.013868729583919048, 0.016699083149433136, 0.027956582605838776, 0.04386134073138237, -0.03237558528780937, 0.027920061722397804, 0.06741718202829361, -0.07756993174552917, 0.004286615177989006, -0.018095998093485832, 0.019757689908146858, -0.0005329737323336303, -0.001383220893330872, 0.045943018049001694, 0.027353990823030472, -0.037178054451942444, -0.004590193275362253, -0.017484277486801147, -0.050763748586177826, 0.004277484957128763, -0.07464827597141266, -0.03562592715024948, -0.0036497858818620443, -0.029673054814338684, -0.021181996911764145, -0.06504333764314651, -0.015731284394860268, -0.00012489788059610873, 0.04838990420103073, 0.04419002681970596, -0.006171995308250189, -0.03286861628293991 ]
18,483
fs.base
lock
Get a context manager that *locks* the filesystem. Locking a filesystem gives a thread exclusive access to it. Other threads will block until the threads with the lock has left the context manager. Returns: threading.RLock: a lock specific to the filesystem instance. Example: >>> with my_fs.lock(): # May block ... # code here has exclusive access to the filesystem ... pass It is a good idea to put a lock around any operations that you would like to be *atomic*. For instance if you are copying files, and you don't want another thread to delete or modify anything while the copy is in progress. Locking with this method is only required for code that calls multiple filesystem methods. Individual methods are thread safe already, and don't need to be locked. Note: This only locks at the Python level. There is nothing to prevent other processes from modifying the filesystem outside of the filesystem instance.
def lock(self): # type: () -> RLock """Get a context manager that *locks* the filesystem. Locking a filesystem gives a thread exclusive access to it. Other threads will block until the threads with the lock has left the context manager. Returns: threading.RLock: a lock specific to the filesystem instance. Example: >>> with my_fs.lock(): # May block ... # code here has exclusive access to the filesystem ... pass It is a good idea to put a lock around any operations that you would like to be *atomic*. For instance if you are copying files, and you don't want another thread to delete or modify anything while the copy is in progress. Locking with this method is only required for code that calls multiple filesystem methods. Individual methods are thread safe already, and don't need to be locked. Note: This only locks at the Python level. There is nothing to prevent other processes from modifying the filesystem outside of the filesystem instance. """ return self._lock
(self)
[ 0.0997081995010376, -0.021075505763292313, -0.0038110490422695875, 0.04510266333818436, 0.046290524303913116, 0.0045107160694897175, -0.024207135662436485, 0.032378170639276505, 0.0037615548353642225, -0.009961821138858795, 0.019221724942326546, -0.10107604414224625, -0.02813067100942135, 0.053129713982343674, -0.0016468052053824067, -0.016099095344543457, -0.07904664427042007, -0.020427582785487175, -0.014749255031347275, 0.020265601575374603, 0.026024920865893364, 0.03128029778599739, 0.048954207450151443, -0.03173024579882622, -0.013183440081775188, 0.06511629372835159, 0.00229472853243351, 0.005016906186938286, 0.04557060822844505, -0.03919936344027519, 0.055793397128582, 0.027536742389202118, 0.007262140512466431, -0.04045921191573143, -0.022623322904109955, 0.017259957268834114, -0.03205420821905136, 0.00440722843632102, 0.02611491084098816, -0.05615335702896118, -0.014497284777462482, -0.004854925442487001, -0.01909574121236801, -0.030596379190683365, -0.007631096988916397, 0.018087860196828842, 0.01744893565773964, 0.002076504286378622, 0.046110544353723526, 0.002384717809036374, 0.06630415469408035, 0.023847177624702454, -0.037183601409196854, -0.04348285496234894, -0.05773716792464256, 0.05043003335595131, -0.017196964472532272, -0.0585290752351284, -0.012733493000268936, -0.022605326026678085, 0.039559319615364075, -0.0034398429561406374, 0.047154419124126434, 0.03648168221116066, -0.0426909476518631, -0.02411714568734169, -0.03187422826886177, 0.024963045492768288, 0.019833654165267944, 0.054893504828214645, -0.06274057924747467, -0.02573695406317711, 0.008058546110987663, 0.005714323837310076, 0.002897657221183181, 0.04621853306889534, -0.043770819902420044, -0.0029494010377675295, 0.015469169244170189, -0.04186304658651352, -0.004195753484964371, -0.011032694950699806, -0.02467508055269718, 0.008189030922949314, 0.01711597479879856, -0.011572631075978279, -0.005147390998899937, 0.022065389901399612, -0.0422230027616024, -0.02928253449499607, -0.005462353583425283, 0.10474760830402374, -0.01974366419017315, 0.006969675421714783, 0.03682364150881767, -0.035203833132982254, -0.033584024757146835, 0.012940469197928905, -0.038947392255067825, 0.010312779806554317, -0.06385644525289536, 0.053705643862485886, 0.019041746854782104, -0.03786752000451088, 0.007649094797670841, -0.07127156853675842, -0.008634478785097599, -0.021453462541103363, -0.0036220713518559933, -0.02948051132261753, -0.0249270498752594, -0.0446707159280777, -0.038371458649635315, 0.06979574263095856, 0.0030618878081440926, 0.03167625144124031, -0.027986688539385796, 0.016675027087330818, 0.06558424234390259, -0.0402432382106781, 0.000244939757976681, 0.07933461666107178, 0.01535218395292759, 0.014929233118891716, 0.05338168516755104, 0.062452610582113266, -0.03941533714532852, 0.00518788630142808, 0.046110544353723526, -0.005097896791994572, -0.01295846700668335, 0.0008678348385728896, 0.08646176755428314, 0.007622098084539175, 0.023271245881915092, -0.015487167984247208, -0.015487167984247208, 0.037147603929042816, 0.03365601599216461, 0.024945048615336418, -0.017403941601514816, -0.09985218197107315, -0.0266728438436985, -0.024009158834815025, -0.0012980963801965117, 0.018753781914711, -0.022839298471808434, 0.012625506147742271, 0.03444792330265045, -0.0003591137647163123, 0.06518828868865967, 0.007158652879297733, 0.10561150312423706, 0.04143109917640686, -0.002393716713413596, 0.025376997888088226, -0.03090234287083149, -0.024765070527791977, 0.053489670157432556, -0.03819148242473602, -0.0333140566945076, -0.0083285141736269, 0.0422230027616024, -0.03786752000451088, 0.025988925248384476, -0.0015219448832795024, -0.08552587777376175, -0.05158189684152603, 0.009057428687810898, -0.051077958196401596, 0.016513045877218246, 0.030632374808192253, -0.002344222739338875, 0.04279893636703491, -0.004593956284224987, -0.014398296363651752, -0.04089116305112839, 0.04485069215297699, -0.008773962035775185, 0.0019235224463045597, 0.004515215754508972, 0.007262140512466431, -0.043770819902420044, 0.008710969239473343, 0.029372524470090866, 0.010906709358096123, 0.018591800704598427, -0.0078020766377449036, 0.043770819902420044, 0.013651384972035885, -0.04200702905654907, -0.017376944422721863, -0.035779766738414764, 0.004063019063323736, -0.040747180581092834, -0.0018132854020223022, -0.03205420821905136, -0.06760000437498093, 0.03765154629945755, 0.06558424234390259, -0.00917891412973404, 0.023433227092027664, 0.032198190689086914, 0.04960213229060173, -0.0033880991395562887, -0.07155953347682953, -0.0038785410579293966, -0.03880340978503227, -0.005790814757347107, 0.06367646902799606, -0.05395761504769325, -0.008310516364872456, -0.04485069215297699, 0.05438956618309021, 0.07746283710002899, -0.016783013939857483, 0.0582411102950573, 0.02233535796403885, -0.021417465060949326, 0.04780234396457672, -0.021003514528274536, 0.022965282201766968, -0.08602982014417648, -0.011311661452054977, -0.052121832966804504, -0.03302609175443649, 0.02030159719288349, -0.008378008380532265, -0.011203674599528313, -0.002090002642944455, 0.03223418444395065, -0.030056443065404892, 0.010609745047986507, -0.027770714834332466, -0.03631970286369324, -0.05687326937913895, -0.009925825521349907, 0.012499521486461163, -0.026780830696225166, -0.019005751237273216, 0.03320607170462608, -0.019797656685113907, 0.1076272651553154, 0.05892502889037132, 0.03891139477491379, -0.055505432188510895, -0.03205420821905136, 0.014092332683503628, 0.08091842383146286, 0.003790801391005516, -0.03390798717737198, 0.04557060822844505, -0.02415314130485058, -0.012814483605325222, -0.044346753507852554, 0.011023695580661297, -0.008584984578192234, 0.016414057463407516, -0.017682908102869987, 0.04045921191573143, -0.0012868477497249842, -0.05143791437149048, -0.013327423483133316, -0.032000213861465454, 0.004611954092979431, -0.019059745594859123, -0.004719941411167383, -0.04247497394680977, 0.000620926555711776, 0.02130947820842266, 0.0681399405002594, 0.023397231474518776, 0.06749201565980911, 0.022677317261695862, 0.004773935303092003, -0.05816911906003952, -0.022011395543813705, 0.041143130511045456, -0.014704260043799877, 0.04186304658651352, 0.01734994724392891, 0.04308690130710602, -0.031136315315961838, 0.00455121137201786, -0.024189138785004616, -0.021003514528274536, -0.0402432382106781, 0.003885290352627635, -0.01606309972703457, 0.003424094757065177, -0.022263364866375923, 0.03644568845629692, -0.009961821138858795, -0.016072098165750504, 0.08991736173629761, -0.021579446271061897, -0.09171714633703232, -0.056333333253860474, 0.05377763882279396, -0.001442079315893352, 0.03228817880153656, 0.04585857316851616, -0.04805431514978409, 0.06547625362873077, 0.004027023445814848, -0.05413759499788284, 0.008148536086082458, 0.03700362145900726, -0.023469222709536552, 0.0446707159280777, -0.004465721547603607, 0.001962892711162567, 0.004085516557097435, -0.05204984173178673, 0.01275149080902338, 0.028940575197339058, 0.013003461062908173, 0.04031522944569588, -0.020283600315451622, 0.026852821931242943, -0.041539084166288376, 0.03808349370956421, 0.07235144078731537, 0.008494994603097439, -0.032594144344329834, -0.003482587868347764, 0.02588093839585781, 0.058493077754974365, -0.03412396088242531, 0.07523109763860703, -0.03883940353989601, 0.003482587868347764, 0.01842082105576992, -0.0011130558559671044, -0.10784324258565903, 0.049530141055583954, 0.03513184189796448, -0.04301491007208824, 0.010258786380290985, -0.01433530356734991, 0.060688819736242294, 0.003403847338631749, 0.01566714607179165, -0.05716123804450035, -0.11446645855903625, 0.0029314032290130854, 0.08372609317302704, 0.022659318521618843, 0.03574376925826073, -0.0221013855189085, 0.05384963005781174, -0.004189004190266132, -0.02571895718574524, -0.03309808298945427, 0.008917944505810738, -0.056297339498996735, -0.01741294004023075, -0.007928062230348587, 0.021849414333701134, 0.004299241118133068, -0.0014859491493552923, 0.011032694950699806, -0.03230617567896843, 0.009916827082633972, -0.012904473580420017, -0.02669084258377552, -0.03952332213521004, 0.006407241802662611, -0.017088977620005608, -0.017403941601514816, -0.013939350843429565, -0.025610970333218575, 0.00872446782886982, 0.026150906458497047, 0.0097548458725214, -0.0016861754702404141, -0.007095660548657179, -0.014677263796329498, 0.007181150373071432, 0.022965282201766968, 0.02291128970682621, -0.01047476101666689, 0.058889031410217285, -0.0033611024264246225, -0.0737912654876709, -0.021597445011138916, 0.014029339887201786, -0.06382045149803162, 0.04200702905654907, 0.04762236401438713, -0.00497641135007143, -0.008760463446378708, 0.028562620282173157, 0.02490905299782753, -0.04485069215297699, 0.007712087593972683, 0.042546965181827545, -0.013696379028260708, 0.018483813852071762, -0.0637124627828598, 0.054317574948072433, -0.012112567201256752, -0.01573013886809349, -0.03909137472510338, -0.02469307743012905, 0.00717215146869421, 0.01721496321260929, -0.029336528852581978, 0.014749255031347275, -0.013723376207053661, -0.054461557418107986, -0.018969755619764328, 0.0006400492857210338, 0.05100596323609352, 0.03205420821905136, -0.0014893237967044115, 0.0250710342079401, -0.009133919142186642, 0.016513045877218246, 0.057665176689624786, 0.004049520939588547, -0.03392598405480385, -0.014398296363651752, 0.013696379028260708, -0.04301491007208824, -0.06176869198679924, -0.015676144510507584, 0.011356656439602375, -0.024261130020022392, 0.004524214658886194, -0.012805485166609287, 0.057269223034381866, 0.035005856305360794, 0.00997981894761324, 0.0011501763947308064, -0.04917018115520477, -0.02310926653444767, -0.032216187566518784, -0.0057863155379891396, -0.017655910924077034, 0.04726240783929825, -0.03768754005432129, 0.043338872492313385, -0.01553216204047203, -0.030254419893026352, -0.043374866247177124, -0.020031629130244255, 0.07515911012887955, 0.056333333253860474, 0.04186304658651352, 0.018843770027160645, 0.039343345910310745, 0.03245016187429428, 0.10258786380290985, -0.08818956464529037, -0.01743093691766262, -0.019419701769948006, -0.04067518562078476, 0.015703141689300537, 0.011491640470921993, 0.015955112874507904, 0.008031549863517284, 0.009835836477577686, -0.015028221532702446, -0.02093152329325676, -0.022227369248867035, 0.01786288619041443, 0.023433227092027664, 0.016675027087330818, -0.0034420927986502647, 0.06421640515327454, -0.017979873344302177, -0.06212864816188812, -0.04686645418405533, -0.005160889588296413, 0.0007739084539934993, -0.03421395272016525, -0.046722471714019775, 0.03092034161090851, -0.03225218504667282, -0.051941853016614914, -0.04009925574064255, -0.019671672955155373, 0.03151427209377289, -0.023775186389684677, -0.04409478232264519, 0.10042811930179596, -0.012256549671292305, 0.0029898963402956724, -0.044958680868148804, -0.0071856495924293995, 0.022803300991654396, -0.014011342078447342, 0.013984345830976963, 0.012229553423821926, 0.058889031410217285, -0.04805431514978409, -0.0019786409102380276, -0.031172310933470726, 0.008139536716043949, -0.014839244075119495, 0.0037368079647421837, -0.01553216204047203, 0.005057401489466429, 0.031586263328790665, 0.038731418550014496, -0.05795314162969589, -0.05791714787483215, 0.038731418550014496, -0.025844942778348923, -0.01514520775526762, -0.007721086498349905, -0.00836900994181633, 0.014389296993613243, -0.012454526498913765, 0.00027263961965218186, -0.05021405965089798, 0.03196421638131142, -0.024837061762809753, -0.01869978755712509, 0.013291426934301853, -0.0010832467814907432, 0.031370289623737335, -0.05204984173178673, -0.06122875586152077, -0.009745846502482891, 0.06619616597890854, 0.0017131722997874022, 0.018087860196828842, -0.00543085765093565, 0.0016614283667877316, -0.021633440628647804, -0.047154419124126434, 0.0028234159108251333, -0.009898828342556953, 0.006690708454698324, -0.020211609080433846, -0.019689669832587242, -0.037939511239528656, -0.02948051132261753, 0.019491693004965782, 0.016567040234804153, 0.06515228748321533, 0.019977636635303497, 0.03829946741461754, -0.009502875618636608, -0.03176623955368996, -0.029192546382546425, 0.020247604697942734, -0.048342280089855194, 0.047766346484422684, -0.05820511281490326, -0.024855058640241623, -0.04870223626494408, 0.01586512289941311, -0.054857511073350906, 0.05064600706100464, 0.010699734091758728, 0.003930285107344389, -0.013606389984488487, 0.026456870138645172, 0.033368051052093506, -0.04031522944569588, -0.013975346460938454, 0.03144228085875511, -0.06716804951429367, 0.06885985285043716, 0.06004089489579201, 0.003923535812646151, -0.019653674215078354, 0.031208306550979614, 0.005340868141502142, 0.07767880707979202, 0.006798695772886276, -0.0006113651907071471, 0.06083280220627785, 0.005979792680591345, 0.04636251553893089, -0.04189904406666756, -0.07753482460975647, -0.00129697157535702, -0.06338849663734436, -0.032216187566518784, -0.012679499574005604, -0.008144035935401917, -0.031370289623737335, 0.0002515483647584915, 0.06673610210418701, -0.0368056446313858, 0.04164707288146019, -0.010672736912965775, -0.002057381672784686, 0.07731885462999344, -0.028202662244439125, 0.007887566462159157, -0.011320660822093487, -0.004836927633732557, -0.03808349370956421, 0.01850181072950363, 0.044562727212905884, -0.02906656078994274, -0.006744701880961657, -0.02692481502890587, 0.03583376109600067, -0.010744729079306126, 0.040927156805992126, -0.015505165793001652, -0.0007216021185740829, -0.04762236401438713, -0.02292928658425808, -0.011140681803226471, 0.006587220821529627, -0.02669084258377552, 0.025412993505597115, 0.04085516557097435, 0.07307135313749313, -0.044346753507852554, -0.013705378398299217, -0.01931171491742134, -0.011824601329863071, 0.013741374015808105, -0.008530990220606327, -0.020877528935670853, -0.042762938886880875, 0.04027923569083214, -0.028994569554924965, 0.027428755536675453, -0.011797604151070118, -0.02568296156823635, -0.02647486701607704, -0.002416214207187295, -0.03567177802324295, 0.03169424831867218, 0.012157561257481575, 0.03365601599216461, 0.004081017337739468, -0.026006922125816345, -0.023883173242211342, -0.008661475032567978, -0.015406177379190922, 0.007104659453034401, 0.008904446847736835, 0.01931171491742134, -0.05453354865312576, -0.04521065205335617, -0.12396933138370514, 0.007968557067215443, -0.012445527128875256, 0.044958680868148804, -0.028544623404741287, -0.06914781779050827, 0.028994569554924965, -0.007676091976463795, -0.027824707329273224, -0.001678301370702684, -0.023577209562063217, -0.013273429125547409, -0.03862342983484268, -0.002416214207187295, 0.017601916566491127, -0.042546965181827545, 0.016288071870803833, -0.04845026880502701, 0.0609767846763134, -0.008436501957476139, -0.01743093691766262, -0.02471107617020607, 0.011356656439602375, 0.027446752414107323, 0.03541981056332588, -0.012319542467594147, 0.060508839786052704, -0.036355696618556976, -0.003415095852687955, -0.028220660984516144, -0.01584712415933609, 0.03426794707775116, -0.0097548458725214, 0.008090042509138584, 0.047766346484422684, -0.06975974887609482, 0.07940660417079926, 0.006267758551985025, -0.01693599671125412, -0.04765836149454117, 0.04197103530168533, 0.019455697387456894, -0.02015761472284794, -0.03191022574901581, -0.025952929630875587, -0.007685090880841017, 0.0109787005931139, 0.03147827461361885, 0.035149842500686646, -0.06698807328939438, 0.007379126735031605, 0.045714590698480606, 0.0022564830724149942, 0.019275719299912453, -0.004400479141622782, 0.028004687279462814, -0.004299241118133068, 0.042726945132017136, -0.020823536440730095, 0.003898788709193468, -0.030542386695742607, -0.011536634527146816, 0.023793185129761696, -0.0012283546384423971, -0.002951650647446513, 0.04657848924398422, -0.003586075734347105, 0.062272630631923676, 0.07008370757102966, 0.0768149122595787, -0.011671618558466434, -0.011311661452054977, -0.05197785049676895, 0.06331650912761688, -0.017619915306568146, -0.030254419893026352, 0.010573748499155045, 0.014452289789915085, -0.03236017003655434, 0.040927156805992126, 0.033602025359869, -0.016944995149970055, 0.004719941411167383, -0.021381469443440437, 0.02094952203333378, 0.034393928945064545, 0.005804313346743584, -0.03029041551053524, -0.011716613546013832, 0.08149436116218567, -0.02269531413912773, 0.039559319615364075, 0.03711161017417908, -0.025448989123106003, 0.043374866247177124, 0.02906656078994274, -0.0024702076334506273, -0.04157508164644241, -0.0018481563311070204, 0.003111381782218814, -0.04204302653670311, 0.01790788024663925, 0.026366880163550377, -0.04827028885483742, 0.02132747694849968, 0.01614408940076828, -0.04981810599565506, 0.031586263328790665, 0.03446592018008232, -0.0042564962059259415, -0.014596273191273212, -0.01752992533147335, -0.020409585908055305, 0.047910332679748535, 0.015820128843188286, -0.03545580431818962, -0.041539084166288376, -0.001273349393159151, 0.05460553988814354, -0.024027157574892044, -0.003599574090912938, -0.005160889588296413, 0.00846799835562706 ]
18,484
miarec_s3fs.s3fs
makedir
null
def makedir(self, path, permissions=None, recreate=False): self.check() _path = self.validatepath(path) _key = self._path_to_dir_key(_path) if not self.isdir(dirname(_path)): raise errors.ResourceNotFound(path) try: self._getinfo(path) except errors.ResourceNotFound: pass else: if recreate: return self.opendir(_path) else: raise errors.DirectoryExists(path) with s3errors(path): _obj = self.s3.Object(self._bucket_name, _key) _obj.put(**self._get_upload_args(_key)) return SubFS(self, path)
(self, path, permissions=None, recreate=False)
[ -0.018141411244869232, 0.0543050654232502, -0.033734411001205444, -0.02359575219452381, 0.07153894752264023, 0.010367830283939838, 0.01359460037201643, 0.005138080567121506, -0.023247407749295235, 0.043194711208343506, 0.022679056972265244, 0.0798625499010086, 0.01590467430651188, 0.007920252159237862, -0.03802454471588135, 0.00044545691343955696, 0.011422030627727509, -0.04594479873776436, -0.017068877816200256, -0.00399450259283185, -0.00936863198876381, 0.026932526379823685, 0.02200070209801197, -0.004301595501601696, 0.04176466539502144, 0.006572709418833256, -0.028949256986379623, 0.04253469035029411, 0.05228833481669426, -0.048364877700805664, 0.01228372473269701, 0.09885648638010025, -0.01253123302012682, 0.04128798469901085, -0.03765786811709404, -0.01941561885178089, -0.01879226602613926, -0.05137163773179054, -0.023265741765499115, -0.00797983817756176, -0.018196413293480873, 0.0025552897714078426, 0.00667354604229331, 0.013007914647459984, 0.06581876426935196, 0.029994290322065353, -0.003141975263133645, 0.0555151030421257, 0.028032559901475906, -0.026419175788760185, 0.004042629152536392, 0.06119861826300621, 0.026987526565790176, -0.07883584499359131, -0.0009247169946320355, -0.009836146607995033, 0.05668847635388374, 0.013191253878176212, 0.03342273086309433, -0.030470971018075943, 0.023815760388970375, 0.05210499465465546, 0.030030958354473114, -0.013264589942991734, -0.068018838763237, -0.019690627232193947, -0.06790883094072342, -0.0315343402326107, 0.00914862472563982, 0.04037128761410713, -0.09577638655900955, 0.001263894489966333, 0.05595511943101883, -0.006838551256805658, -0.0011527450988069177, 0.04334138333797455, 0.013493763282895088, -0.06284867227077484, 0.019635627046227455, 0.016198016703128815, -0.07340900599956512, -0.057311829179525375, -0.05397505313158035, 0.009524470195174217, 0.00420305086299777, 0.05808185413479805, 0.007086059544235468, -0.029425937682390213, 0.05478174611926079, -0.005500175524502993, -0.008383183740079403, 0.024860793724656105, -0.01693137362599373, -0.013163752853870392, -0.0060135251842439175, 0.029480939731001854, -0.006948554888367653, -0.06449872255325317, 0.03197435289621353, -0.00416179932653904, -0.014245454221963882, 0.03664950281381607, 0.02095566876232624, -0.07186895608901978, -0.0036782422102987766, -0.007452737540006638, -0.027005860581994057, -0.03912458196282387, 0.02046065218746662, 0.019745629280805588, -0.018003907054662704, 0.041581325232982635, 0.03496278077363968, 0.07267565280199051, -0.05192165449261665, -0.017646396532654762, 0.049391575157642365, -0.0543050654232502, -0.06215198338031769, -0.043121375143527985, 0.019012272357940674, -0.03261604160070419, 0.07344567775726318, 0.00965280830860138, 0.05265501141548157, 0.0698888972401619, 0.013466263189911842, -0.036832842975854874, 0.0038799154572188854, 0.0041136727668344975, -0.05690848082304001, 0.015079647302627563, 0.010679507628083229, 0.031185993924736977, -0.010001152753829956, -0.022679056972265244, 0.06020858883857727, -0.04392806813120842, -0.015492160804569721, 0.049428243190050125, 0.045284777879714966, 0.019727295264601707, 0.02728087082505226, 0.013493763282895088, 0.017508892342448235, -0.015345489606261253, 0.008534438908100128, 0.015620497986674309, -0.018269749358296394, 0.020112307742238045, 0.014914642088115215, -0.0370895154774189, 0.08660943061113358, 0.06948555260896683, 0.019562290981411934, -0.02665751613676548, -0.015272153541445732, -0.056761808693408966, -0.009918649680912495, 0.01664719730615616, -0.025924161076545715, 0.013722937554121017, -0.0005546010215766728, 0.02244071662425995, 0.011651204898953438, 0.0018815184012055397, 0.03868456557393074, 0.011926213279366493, -0.04224134609103203, 0.05115163326263428, 0.03705284744501114, 0.05844853073358536, 0.034284427762031555, -0.026987526565790176, -0.05679847672581673, -0.034779444336891174, -0.019507288932800293, 0.024897459894418716, 0.036777839064598083, -0.03032430075109005, 0.00043571702553890646, -0.006586459930986166, 0.017279718071222305, 0.009698642417788506, 0.001157901482656598, 0.04656815156340599, -0.029645945876836777, 0.05606511980295181, 0.03809788078069687, 0.014245454221963882, -0.06017192080616951, 0.04440474882721901, 0.016060512512922287, -0.02722586877644062, -0.006852301768958569, -0.0005417100037448108, -0.013081250712275505, -0.02665751613676548, -0.05434173345565796, 0.08939618617296219, -0.02612583339214325, 0.07546240836381912, 0.04561478644609451, -0.04598146677017212, 0.024879127740859985, -0.0063802036456763744, -0.05855853483080864, 0.04227801412343979, -0.04964825138449669, -0.005307669285684824, 0.009249461814761162, 0.02403576672077179, 0.046788159757852554, -0.03883123770356178, -0.011651204898953438, -0.0292059313505888, -0.017316386103630066, 0.004991409368813038, -0.005312252789735794, -0.027079196646809578, -0.049831587821245193, 0.006728548090904951, -0.05646846815943718, -0.006884386297315359, -0.013108751736581326, -0.028509242460131645, -0.018517257645726204, 0.0017634937539696693, -0.008144843392074108, -0.008974452503025532, 0.045688122510910034, 0.007425236981362104, 0.05709182098507881, -0.05085828900337219, -0.028545910492539406, -0.04854821413755417, 0.09812313318252563, -0.011092020198702812, -0.04499143362045288, -0.015987176448106766, -0.0004013409197796136, -0.07168561965227127, 0.01824224926531315, 0.026840856298804283, -0.05137163773179054, 0.026510845869779587, 0.025374142453074455, -0.012219556607306004, 0.010010318830609322, -0.02146901749074459, -0.02937093749642372, 0.05441506952047348, -0.07802915573120117, 0.0645720586180687, 0.02605249732732773, -0.029700947925448418, 0.001090295147150755, 0.009382382966578007, 0.017114711925387383, -0.006036442704498768, -0.01804974302649498, -0.02660251595079899, 0.0022814269177615643, -0.02662084996700287, -0.03670450299978256, -0.034284427762031555, 0.012228723615407944, -0.00964364130049944, 0.0007711704238317907, 0.016656365245580673, 0.009872814640402794, 0.02308240346610546, 0.01277874130755663, -0.031075991690158844, 0.04554145410656929, -0.00028976183966733515, -0.05500175431370735, -0.059951912611722946, -0.0072923158295452595, 0.034724440425634384, -0.03861123323440552, 0.007108976598829031, -0.03455943614244461, -0.015015479177236557, -0.020808996632695198, 0.024402445182204247, -0.003783662337809801, 0.031626008450984955, 0.022752393037080765, 0.004521602764725685, -0.0019227697048336267, -0.025337474420666695, -0.08213595300912857, -0.03802454471588135, 0.024384111166000366, -0.01626218482851982, -0.05973190441727638, -0.03146100416779518, 0.019250614568591118, -0.0418013334274292, -0.06750548630952835, 0.05118829756975174, 0.01441962644457817, 0.04968491941690445, 0.04128798469901085, -0.03142433613538742, 0.01068867463618517, 0.05910855159163475, -0.0019468329846858978, 0.07861584424972534, -0.00914862472563982, -0.0001973760809050873, -0.002575915539637208, 0.017921404913067818, 0.038464561104774475, 0.05192165449261665, 0.0325610376894474, 0.019672293215990067, -0.0430113710463047, 0.0029288434889167547, -0.012127886526286602, 0.006623127963393927, -0.09276962280273438, 0.026785854250192642, 0.013218754902482033, 0.01150453370064497, -0.022129038348793983, 0.003934917040169239, -0.011046186089515686, -0.032194361090660095, -0.01355793233960867, 0.02502579800784588, 0.028655914589762688, -0.0009115394786931574, -0.003740119282156229, 0.05690848082304001, 0.011944547295570374, -0.002543831244111061, 0.02718920074403286, 0.0739956945180893, 0.059328559786081314, 0.02502579800784588, -0.0407746322453022, -0.00941446702927351, -0.016537193208932877, 0.015877172350883484, 0.030965987592935562, 0.05349837243556976, 0.023742424324154854, -0.01987396739423275, 0.012677904218435287, 0.0764157697558403, 0.0007539824000559747, 0.014529630541801453, 0.005601012147963047, -0.004319929517805576, 0.024182438850402832, 0.03593447804450989, -0.04128798469901085, -0.021780693903565407, 0.06772549450397491, -0.03197435289621353, -0.007498572580516338, -0.02772088348865509, -0.000503036892041564, -0.011724540963768959, -0.009272378869354725, 0.01253123302012682, 0.0009734164923429489, -0.020753994584083557, 0.06163863092660904, -0.03380774334073067, -0.021634023636579514, -0.01865476183593273, 0.06724881380796432, 0.04649481549859047, 0.030654311180114746, -0.04337805137038231, -0.00456972885876894, 0.03235936537384987, -0.011027852073311806, 0.011312027461826801, 0.03927125409245491, -0.0335877388715744, 0.05133496969938278, 0.027409207075834274, 0.08103591948747635, -0.020497320219874382, 0.039454590529203415, -0.008433602750301361, -0.015629665926098824, -0.015482993796467781, 0.03835455700755119, -0.05588178336620331, -0.0438547320663929, -0.018663927912712097, 0.04818153753876686, 0.013438762165606022, -0.0027936308179050684, 0.0027065447065979242, 0.010716174729168415, -0.03798787668347359, -0.024842459708452225, -0.004017419647425413, -0.017719732597470284, -0.017114711925387383, 0.05753183364868164, 0.042608026415109634, 0.02359575219452381, -0.018764765933156013, 0.06163863092660904, -0.03036096878349781, -0.020497320219874382, 0.005381004884839058, -0.005898938048630953, -0.010376997292041779, 0.006558959372341633, -0.05082162097096443, 0.013044582679867744, 0.01785723678767681, -0.030599309131503105, -0.022770727053284645, -0.03433942794799805, -0.036777839064598083, 0.017316386103630066, 0.002267676405608654, -0.04491809755563736, -0.02251405082643032, 0.011687872931361198, 0.011697039939463139, 0.025997495278716087, 0.008419851772487164, -0.024970795959234238, -0.004244301933795214, 0.01463963370770216, 0.0047393180429935455, -0.046751491725444794, -0.005697265267372131, -0.054158393293619156, 0.07993588596582413, 0.01228372473269701, -0.0524350069463253, 0.002139338990673423, 0.03043430484831333, -0.04044462367892265, -0.02871091663837433, -0.009249461814761162, 0.0428280308842659, 0.0781024917960167, -0.0017233883263543248, 0.002704252954572439, 0.005422256421297789, 0.03989460691809654, 0.0117337079718709, -0.021359015256166458, 0.035402797162532806, 0.0088048642501235, -0.011752041056752205, -0.01785723678767681, -0.04975825548171997, 0.009249461814761162, 0.003128224750980735, 0.07802915573120117, 0.006054776255041361, 0.0012982705375179648, -0.016482193022966385, 0.004789736121892929, -0.022862395271658897, -0.007040224503725767, -0.08594940602779388, 0.029719281941652298, -0.0671754777431488, -0.0450647696852684, 0.06116195023059845, -0.007044808007776737, -0.03565946966409683, 0.011027852073311806, -0.06160196661949158, -0.03985793888568878, -0.012448729947209358, 0.03659449890255928, -0.04825487360358238, -0.004058671183884144, 0.01043199934065342, -0.032194361090660095, -0.0065406253561377525, 0.010734508745372295, 0.062408655881881714, 0.04330471530556679, -0.03989460691809654, 0.024310775101184845, -0.001224934938363731, -0.004051795694977045, 0.04667815566062927, -0.04425807669758797, 0.0033619822934269905, -0.0887361615896225, 0.011119521223008633, -0.04807153344154358, -0.0038936659693717957, 0.006870635785162449, -0.042681362479925156, -0.051481641829013824, 0.037492863833904266, -0.013081250712275505, 0.06838551163673401, -0.029095927253365517, -0.08917617797851562, 0.024365777149796486, -0.06585543602705002, -0.030709313228726387, 0.045248109847307205, -0.04334138333797455, 0.0035613635554909706, -0.011037019081413746, 0.013521264307200909, 0.007457321044057608, 0.02561248280107975, -0.04858488216996193, -0.035329461097717285, 0.00229403143748641, -0.03617282211780548, -0.00021613971330225468, -0.002142776735126972, -0.03699784725904465, 0.0026790436822921038, 0.026767520233988762, -0.020167309790849686, 0.04286469891667366, 0.021689025685191154, -0.03043430484831333, -0.026272505521774292, -0.05896187946200371, 0.06878886371850967, 0.028545910492539406, 0.024695787578821182, -0.019250614568591118, -0.001428899704478681, -0.03978460282087326, -0.023669088259339333, 0.016335520893335342, 0.04381806403398514, -0.0387212336063385, -0.037914544343948364, -0.011779542081058025, -0.04253469035029411, 0.0483282096683979, -0.025227472186088562, 0.06127195432782173, -0.016922205686569214, -0.007493989076465368, -0.015097981318831444, 0.004491809755563736, 0.07626909762620926, 0.05470841005444527, 0.003059472655877471, 0.014529630541801453, -0.06017192080616951, -0.019727295264601707, 0.004209925886243582, -0.02975594997406006, 0.030140960589051247, 0.019250614568591118, -0.0024017433170229197, 0.03705284744501114, -0.008754446171224117, -0.035347793251276016, 0.06739548593759537, 0.01355793233960867, -0.04326804727315903, 0.026822522282600403, -0.010954516008496284, -0.014172119088470936, -0.010019485838711262, 0.029719281941652298, 0.028600912541151047, -0.027005860581994057, -0.005312252789735794, 0.02146901749074459, 0.007865251041948795, 0.016922205686569214, -0.07223563641309738, -0.015299654565751553, -0.044148076325654984, -0.04601813480257988, 0.005990607663989067, 0.03446776419878006, 0.06534208357334137, -0.0760490894317627, 0.010927014984190464, 0.00626561651006341, -0.022330712527036667, -0.01571216806769371, 0.015877172350883484, -0.0030457221437245607, -0.04407474026083946, 0.058338526636362076, -0.04224134609103203, -0.016518861055374146, 0.03307438641786575, -0.032689377665519714, 0.05489175021648407, -0.02502579800784588, 0.025484146550297737, -0.05280168354511261, 0.010890346951782703, 0.025300806388258934, 0.04664148762822151, -0.0271525327116251, -0.020570656284689903, 0.005601012147963047, 0.023779092356562614, 0.000724189740139991, 0.01797640696167946, 0.048951562494039536, 0.04084796831011772, -0.05041827633976936, 0.00627478351816535, 0.0010393039556220174, -0.06413204222917557, -0.05063828080892563, -0.06739548593759537, -0.0524350069463253, -0.011376196518540382, -0.04865821823477745, -0.05085828900337219, 0.04242468625307083, 0.0038501229137182236, 0.010166157968342304, 0.005481841508299112, 0.05643180012702942, -0.020277313888072968, -0.031204327940940857, -0.013667935505509377, 0.0575685016810894, -0.0014380667125806212, -0.008364849723875523, 0.012714572250843048, 0.015574663877487183, -0.004225967917591333, -0.01778390072286129, -0.06515874713659286, -0.026345839723944664, 0.027574213221669197, -0.035219457000494, -0.056175123900175095, 0.06347202509641647, -0.022624054923653603, -0.0053397538140416145, -0.0376945361495018, 0.02717086672782898, -0.022404048591852188, -0.06284867227077484, -0.04928157106041908, 0.009707809425890446, -0.010734508745372295, 0.08162260055541992, -0.07751580327749252, -0.017637228593230247, -0.02247738279402256, 0.00035722492611967027, -0.02410910278558731, -0.03813454881310463, 0.03664950281381607, 0.04715483635663986, 0.004725567530840635, 0.015125482343137264, 0.036924511194229126, 0.036777839064598083, 0.0033665657974779606, 0.05276501551270485, -0.003960126079618931, -0.03303772211074829, 0.03496278077363968, 0.024457447230815887, 0.016674699261784554, 0.054121725261211395, -0.025740820914506912, 0.029059261083602905, 0.018141411244869232, -0.08352933079004288, 0.04235135018825531, -0.006572709418833256, 0.02348574995994568, -0.007801081985235214, -0.06438872218132019, 0.04851154610514641, 0.0034903197083622217, -0.004652231931686401, -0.05008826404809952, 0.004849321208894253, -0.0011590473586693406, -0.010065320879220963, -0.041581325232982635, -0.0723089724779129, 0.04851154610514641, 0.05973190441727638, 0.03705284744501114, 0.033312730491161346, -0.02082733064889908, 0.03417442366480827, 0.039967942982912064, 0.0015790086472406983, -0.05896187946200371, 0.0013154586777091026, -0.035329461097717285, -0.015574663877487183, 0.022275710478425026, 0.011862045153975487, -0.042608026415109634, 0.04330471530556679, 0.013768772594630718, 0.007273981813341379, -0.008493187837302685, 0.03809788078069687, -0.02200070209801197, 0.0721256360411644, 0.013548765331506729, 0.029114261269569397, -0.03173601254820824, 0.0055735111236572266, -0.09863647818565369, -0.03710785135626793, 0.014437960460782051, -0.007471071556210518, -0.06911887228488922, -0.0035544882994145155, 0.0031901018228381872, 0.00045634267735295, -0.003295521717518568, 0.036832842975854874, 0.029150929301977158, 0.009341130964457989, 0.008699444122612476, 0.023284075781702995, -0.0009441967704333365, 0.010074487887322903, 0.06050192937254906, 0.016115514561533928, 0.031020989641547203, 0.03246936947107315, -0.0017554726218804717, 0.003953251056373119, -0.036319490522146225, 0.046788159757852554, -0.009616140276193619, 0.00029191034263931215, 0.05687181279063225, -0.0633620172739029, 0.05844853073358536, -0.001066804863512516, -0.041984673589468, 0.005362670868635178, 0.022385714575648308, -0.023650754243135452, -0.044184744358062744, -0.0625186637043953, 0.013906276784837246, 0.06347202509641647, -0.02977428212761879, -0.017362220212817192, -0.10413665324449539, 0.0041915918700397015, -0.01436462439596653, 0.04447808489203453, 0.06053859740495682, -0.03985793888568878, -0.004867655225098133 ]
18,485
fs.base
makedirs
Make a directory, and any missing intermediate directories. Arguments: path (str): Path to directory from root. permissions (~fs.permissions.Permissions, optional): Initial permissions, or `None` to use defaults. recreate (bool): If `False` (the default), attempting to create an existing directory will raise an error. Set to `True` to ignore existing directories. Returns: ~fs.subfs.SubFS: A sub-directory filesystem. Raises: fs.errors.DirectoryExists: if the path is already a directory, and ``recreate`` is `False`. fs.errors.DirectoryExpected: if one of the ancestors in the path is not a directory.
def makedirs( self, path, # type: Text permissions=None, # type: Optional[Permissions] recreate=False, # type: bool ): # type: (...) -> SubFS[FS] """Make a directory, and any missing intermediate directories. Arguments: path (str): Path to directory from root. permissions (~fs.permissions.Permissions, optional): Initial permissions, or `None` to use defaults. recreate (bool): If `False` (the default), attempting to create an existing directory will raise an error. Set to `True` to ignore existing directories. Returns: ~fs.subfs.SubFS: A sub-directory filesystem. Raises: fs.errors.DirectoryExists: if the path is already a directory, and ``recreate`` is `False`. fs.errors.DirectoryExpected: if one of the ancestors in the path is not a directory. """ self.check() with self._lock: dir_paths = tools.get_intermediate_dirs(self, path) for dir_path in dir_paths: try: self.makedir(dir_path, permissions=permissions) except errors.DirectoryExists: if not recreate: raise try: self.makedir(path, permissions=permissions) except errors.DirectoryExists: if not recreate: raise return self.opendir(path)
(self, path, permissions=None, recreate=False)
[ -0.03472800925374031, 0.056233540177345276, 0.012111108750104904, -0.02486814372241497, 0.029446616768836975, 0.03083345852792263, -0.01768696866929531, 0.00596531480550766, -0.011807143688201904, 0.005395380314439535, 0.03670378401875496, 0.08875780552625656, 0.0016967426054179668, 0.010524790734052658, -0.012434071861207485, -0.009698386304080486, 0.010819257237017155, -0.02456417866051197, -0.011465182527899742, -0.001763234962709248, 0.01935877650976181, 0.015996161848306656, 0.028420735150575638, 0.03037751093506813, 0.004378996789455414, -0.005257646087557077, -0.04073132202029228, 0.06622639298439026, 0.0249631330370903, -0.03936347737908363, 0.009745880030095577, 0.06231284141540527, 0.006022308021783829, 0.006426011677831411, -0.0490143708884716, -0.015692196786403656, -0.046886615455150604, -0.0021253807935863733, -0.01200662087649107, -0.008981218561530113, 0.002265489660203457, -0.011712154373526573, -0.01602465845644474, 0.03341716155409813, 0.03689376264810562, -0.02578003890812397, 0.020080693066120148, 0.03533593937754631, -0.007822351530194283, -0.04646866023540497, 0.02365228347480297, 0.062008876353502274, 0.03432905673980713, -0.07591527700424194, 0.00957490038126707, 0.02334831841289997, 0.04069332405924797, 0.006340521853417158, 0.044758860021829605, -0.04681062325835228, 0.028534721583127975, 0.04920434579253197, -0.003217755351215601, 0.026368970051407814, -0.03280923143029213, -0.013687927275896072, -0.05064818263053894, -0.03613384813070297, 0.015644703060388565, 0.04160521924495697, -0.1044120043516159, 0.004227014258503914, 0.04570874944329262, -0.02087860181927681, 0.003179759718477726, 0.04593672230839729, 0.0028900429606437683, -0.040009405463933945, 0.020194679498672485, 0.01117071695625782, -0.08442629873752594, -0.0325622595846653, -0.06311074644327164, 0.01101873442530632, 0.002493463456630707, 0.04494883492588997, -0.0020339537877589464, 0.00054499990073964, 0.03239127993583679, -0.01238657720386982, 0.007323658559471369, 0.006905706599354744, 0.01322248112410307, -0.010904747061431408, 0.00980287417769432, 0.015188755467534065, 0.02243642322719097, -0.04681062325835228, -0.003949171397835016, -0.011066229082643986, -0.0022298689000308514, 0.027033895254135132, -0.02139154262840748, -0.055435631424188614, 0.00528139341622591, 0.01733550801873207, -0.02824975550174713, -0.05380181968212128, 0.05798133835196495, -0.01577768661081791, -0.013906402513384819, 0.005761088337749243, 0.04255511239171028, 0.043201036751270294, -0.0773211196064949, -0.0054238769225776196, 0.06368068605661392, -0.07139379531145096, -0.07086186110973358, -0.015844179317355156, 0.02900966815650463, -0.013231979683041573, 0.05809532478451729, 0.004378996789455414, 0.06945601850748062, 0.06155293062329292, 0.005989062134176493, -0.0270908884704113, 0.009232939220964909, -0.03427206352353096, -0.05395380035042763, 0.011180215515196323, 0.022873371839523315, 0.04038935899734497, -0.005870325490832329, -0.006416513118892908, 0.07633323222398758, -0.0593491829931736, -0.022835377603769302, 0.051028139889240265, 0.016309626400470734, -0.013754419982433319, 0.015302741900086403, 0.048406440764665604, 0.04844443500041962, -0.005903571844100952, 0.016556598246097565, 0.0245071854442358, -0.016357120126485825, 0.04498683288693428, 0.004048909991979599, -0.03966744244098663, 0.07466142624616623, 0.05889323353767395, -0.011389191262423992, -0.01704104244709015, -0.01523625012487173, -0.04312504455447197, 0.025970017537474632, 0.02036566101014614, -0.013782916590571404, -0.0032818729523569345, 0.023899255320429802, 0.021296553313732147, -0.0036000865511596203, 0.028439732268452644, 0.021695507690310478, 0.019396772608160973, -0.027869798243045807, 0.036019861698150635, 0.02900966815650463, 0.06292077153921127, 0.04707659035921097, -0.05444774404168129, -0.07758709043264389, -0.03769167140126228, 0.01738300360739231, 0.03305620327591896, -0.022626399993896484, -0.009745880030095577, 0.016053155064582825, -0.007513636723160744, -0.03543093055486679, -0.01990971341729164, 0.04407493770122528, 0.03655179962515831, -0.03902151808142662, 0.03296121209859848, 0.051028139889240265, 0.011256206780672073, -0.03744469955563545, 0.04373297467827797, 0.056385524570941925, -0.005238648038357496, 0.003756818361580372, 0.010420302860438824, -0.020004702731966972, -0.060489051043987274, -0.02866770699620247, 0.05182604491710663, -0.04225114732980728, 0.05061018466949463, 0.061894889920949936, -0.029636595398187637, 0.009285183623433113, -0.006701480131596327, -0.06580843776464462, 0.028021780773997307, -0.033075202256441116, -0.028496727347373962, -0.0146853132173419, 0.024697162210941315, 0.05915920436382294, -0.03451903536915779, -0.019273286685347557, -0.06307275593280792, 0.024754157289862633, 0.005077166948467493, 0.013250977732241154, -0.001361906062811613, -0.059121210128068924, 0.0031892587430775166, -0.03431005775928497, -0.019178297370672226, -0.02239842712879181, -0.03448103740811348, -0.03402509167790413, -0.006107798311859369, 0.0039016767404973507, -0.02118256688117981, 0.05190203711390495, -0.004165271297097206, 0.03128940612077713, -0.07268565148115158, -0.04654465243220329, -0.03799563646316528, 0.08009479939937592, -0.03052949346601963, -0.037178728729486465, 0.0007878157775849104, -0.0008103756699711084, -0.05364983528852463, 0.027964787557721138, 0.03573489561676979, -0.003063398180529475, 0.03482300043106079, 0.038698554039001465, -0.0283067487180233, 0.0019069059053435922, -0.016955552622675896, -0.07017793506383896, 0.05627153441309929, -0.049964260309934616, 0.0273948535323143, 0.0626927986741066, -0.03138439357280731, 0.03624783456325531, 0.027223872020840645, 0.0030064047314226627, 0.02274038828909397, 0.002136067021638155, -0.007366403937339783, -0.01975773088634014, -0.0343860499560833, -0.04700060188770294, -0.048862386494874954, -0.018589364364743233, -0.011237208731472492, 0.0016385617200285196, 0.0093231787905097, 0.03685576468706131, -0.015150759369134903, 0.019852720201015472, -0.008905227296054363, 0.08435031026601791, 0.008097819983959198, -0.03603886067867279, -0.0295226089656353, 0.014324354939162731, 0.07238168269395828, -0.03943946957588196, 0.012244093231856823, -0.04099728912115097, -0.021771499887108803, -0.03664679080247879, 0.03138439357280731, -0.01523625012487173, 0.03569689765572548, 0.003037275979295373, -0.00824030302464962, 0.05858926847577095, -0.027128882706165314, -0.04361898824572563, -0.021714504808187485, 0.03491798788309097, -0.0194062702357769, -0.02522910200059414, -0.03921149671077728, 0.020099690183997154, -0.07207772135734558, -0.009071458131074905, 0.0520540215075016, -0.009812372736632824, 0.028344744816422462, 0.04187119007110596, -0.05619554594159126, -0.007941087707877159, 0.05877924710512161, -0.007998080924153328, 0.07154577970504761, -0.04164321720600128, -0.001591067179106176, 0.020555637776851654, -0.01869385316967964, 0.0292186439037323, 0.013735421933233738, 0.06520050764083862, -0.01774396188557148, -0.04988826811313629, 0.004184269346296787, -0.027584830299019814, 0.017212022095918655, -0.05558761581778526, 0.027375854551792145, -0.025495070964097977, -0.010154333896934986, 0.017762959003448486, -0.0012526685604825616, 0.01354544423520565, -0.03579188883304596, -0.03679877147078514, -0.004151022993028164, 0.0316503643989563, 0.00001535223964310717, -0.042441125959157944, 0.027375854551792145, 0.04206116870045662, 0.002633572556078434, -0.000020686100469902158, 0.021258557215332985, 0.0660364106297493, 0.01713603176176548, -0.026881912723183632, -0.007323658559471369, 0.028230756521224976, 0.02745184674859047, 0.017364004626870155, 0.055929575115442276, 0.049812279641628265, -0.0029731583781540394, 0.06094500049948692, 0.07796704024076462, -0.016148144379258156, 0.005723092705011368, 0.02714788168668747, -0.006544748321175575, 0.006383266765624285, 0.037539687007665634, -0.058513280004262924, -0.01293751411139965, 0.0593491829931736, 0.0014889539452269673, -0.006388016045093536, -0.008059823885560036, -0.025514069944620132, -0.028686704114079475, -0.0287626963108778, 0.010173331014811993, 0.010401304811239243, -0.005955815780907869, 0.07633323222398758, -0.03649480640888214, 0.0005654818960465491, 0.004948931280523539, 0.07804303616285324, 0.048406440764665604, 0.03704574331641197, -0.013061000034213066, 0.00336261373013258, 0.016613591462373734, -0.0025789537467062473, -0.020802609622478485, 0.016157643869519234, -0.019330279901623726, 0.051028139889240265, 0.0340820848941803, 0.12895718216896057, -0.019833721220493317, 0.012776032090187073, -0.011588668450713158, -0.04225114732980728, -0.01692705601453781, 0.03451903536915779, -0.06732826679944992, -0.00804082676768303, -0.01430535688996315, 0.050420209765434265, 0.03522195294499397, 0.015397731214761734, -0.012291587889194489, 0.024906139820814133, -0.03223929554224014, 0.028135767206549644, 0.011180215515196323, -0.023538295179605484, -0.005894072819501162, 0.08549018204212189, -0.00862025935202837, 0.021904483437538147, -0.01708853617310524, 0.043049056082963943, -0.027318861335515976, -0.022474417462944984, -0.008829236030578613, 0.03280923143029213, -0.016537601128220558, -0.015036772936582565, -0.04073132202029228, 0.014960781671106815, 0.0009712634491734207, -0.04377097263932228, -0.014571325853466988, -0.03579188883304596, 0.02304435335099697, 0.04361898824572563, 0.036475811153650284, -0.06250281631946564, 0.00993585865944624, 0.012728537432849407, 0.017012545838952065, 0.011636163108050823, -0.017667969688773155, -0.016005661338567734, 0.005257646087557077, -0.004497733432799578, -0.010287318378686905, -0.06090700253844261, 0.0064450097270309925, -0.08047475665807724, 0.044720862060785294, 0.0143813481554389, -0.03527894616127014, 0.00955115258693695, 0.010325313545763493, -0.017107535153627396, -0.03305620327591896, -0.008606011047959328, 0.03421507030725479, 0.041681211441755295, 0.008216556161642075, 0.044454894959926605, -0.009047710336744785, 0.05737340822815895, 0.014409844763576984, -0.019700737670063972, 0.02188548631966114, -0.01307049859315157, -0.02218945138156414, -0.016385618597269058, -0.04684861749410629, 0.04407493770122528, -0.021106574684381485, 0.07496538758277893, 0.03522195294499397, 0.04540478438138962, -0.05554961785674095, 0.003336491761729121, -0.05030621960759163, -0.01623363606631756, -0.06550447642803192, 0.04103528708219528, -0.0608690083026886, 0.0016373744001612067, 0.05490369349718094, 0.0065922425128519535, -0.05547362565994263, -0.03569689765572548, -0.09217741340398788, -0.03436705097556114, -0.019643742591142654, 0.02243642322719097, -0.014343352057039738, -0.0035454677417874336, 0.004578473977744579, -0.030814459547400475, -0.012738036923110485, 0.005048669874668121, 0.05976713448762894, 0.01460932195186615, -0.03330317512154579, 0.006145793944597244, 0.012263091281056404, -0.007157427724450827, 0.025894025340676308, -0.03871755301952362, 0.007727362215518951, -0.08351440727710724, 0.0008287797681987286, -0.059425175189971924, 0.015568711794912815, 0.00467346329241991, -0.048254456371068954, -0.0066302381455898285, 0.025742042809724808, -0.011484180577099323, 0.08336242288351059, 0.0011303701903671026, -0.0764092206954956, 0.009185444563627243, -0.03108043037354946, -0.020460650324821472, 0.026957903057336807, -0.05129410699009895, 0.011902133002877235, 0.0008798364433459938, 0.014181870967149734, -0.007290412671864033, 0.00209807138890028, -0.03835659474134445, -0.028287749737501144, -0.0313463993370533, 0.01935877650976181, -0.0005969470366835594, 0.019320780411362648, -0.03144138678908348, 0.004986926913261414, 0.05497968569397926, -0.0252670980989933, 0.07287562638521194, 0.03184034302830696, -0.006145793944597244, -0.02644496224820614, -0.03856556862592697, 0.09073358029127121, 0.04624068737030029, -0.0286107137799263, -0.02118256688117981, -0.007071937434375286, -0.037330713123083115, -0.042935069650411606, 0.012120607309043407, 0.04464486986398697, -0.053307875990867615, -0.0077843558974564075, 0.018171412870287895, -0.03780565783381462, 0.06641636788845062, -0.016157643869519234, 0.03446204215288162, -0.019852720201015472, -0.04802648350596428, -0.012320084497332573, 0.025001127272844315, 0.07842299342155457, -0.0030325266998261213, -0.024678165093064308, 0.015948668122291565, -0.008059823885560036, 0.007071937434375286, 0.013830411247909069, -0.03032051771879196, 0.00427213404327631, 0.005984312389045954, -0.025818035006523132, 0.027033895254135132, -0.009907362051308155, -0.010819257237017155, 0.04437890276312828, -0.009992851875722408, -0.07538334280252457, 0.03446204215288162, -0.01573019288480282, -0.031175417825579643, -0.017762959003448486, 0.002491088816896081, 0.033075202256441116, -0.02836374193429947, 0.004269759636372328, 0.017515987157821655, 0.0029779078904539347, 0.009223440662026405, -0.0493183359503746, -0.08397035300731659, -0.04247912019491196, 0.0056518507190048695, -0.005034421570599079, 0.037083741277456284, 0.07496538758277893, -0.08875780552625656, -0.013061000034213066, 0.020346662029623985, -0.008791239932179451, 0.03280923143029213, 0.02690090984106064, -0.0047518289647996426, -0.05159807205200195, 0.030814459547400475, -0.04631667956709862, 0.008995466865599155, 0.04468286782503128, -0.03805262967944145, 0.04646866023540497, -0.02790779434144497, 0.01987171731889248, -0.04361898824572563, -0.006986447609961033, 0.06630238145589828, 0.030358511954545975, -0.024355202913284302, -0.025039123371243477, 0.02108757756650448, 0.044112931936979294, -0.004830195102840662, -0.011256206780672073, 0.0010852502891793847, -0.014286358840763569, -0.04004739969968796, -0.03381611406803131, -0.01648060604929924, -0.06994996219873428, -0.07447144389152527, -0.06660635024309158, -0.054067790508270264, -0.040161386132240295, -0.04726656898856163, -0.030453501269221306, 0.01743999682366848, 0.00002176214911742136, 0.005409628618508577, -0.015226750634610653, 0.03921149671077728, -0.01870335079729557, -0.060982994735240936, -0.017354506999254227, 0.05858926847577095, -0.010477296076714993, -0.033379167318344116, 0.0010015411535277963, 0.048862386494874954, 0.002113507129251957, -0.05156007781624794, -0.043998945504426956, -0.028477728366851807, 0.006587493233382702, -0.03805262967944145, -0.08169061690568924, 0.03524095192551613, -0.03461402282118797, -0.04004739969968796, -0.023063350468873978, 0.01657559536397457, 0.009408669546246529, -0.0590452179312706, -0.05577759072184563, 0.004858691710978746, 0.024450190365314484, 0.08944172412157059, -0.06493454426527023, -0.017117032781243324, 0.007698865607380867, 0.03613384813070297, -0.008249802514910698, -0.013459953479468822, 0.03902151808142662, 0.05547362565994263, 0.02638796903192997, 0.004352875053882599, 0.04487284645438194, 0.05801933631300926, -0.029750581830739975, 0.009755379520356655, -0.01920679397881031, -0.03146038576960564, 0.02897167205810547, 0.03649480640888214, 0.015027273446321487, 0.018085923045873642, -0.0014343352522701025, 0.021505529060959816, -0.002681066980585456, -0.07659920305013657, 0.06812617182731628, -0.011370194144546986, 0.028629710897803307, -0.050420209765434265, -0.07298961281776428, 0.04403693974018097, 0.012871021404862404, -0.01713603176176548, -0.06523850560188293, 0.022835377603769302, 0.013516947627067566, 0.011389191262423992, -0.00022945801902096719, -0.028477728366851807, 0.06554247438907623, 0.019377773627638817, 0.016908057034015656, 0.011199213564395905, -0.03016853518784046, 0.03032051771879196, 0.029237641021609306, -0.0050676679238677025, -0.0295226089656353, 0.023899255320429802, -0.011066229082643986, -0.003604835830628872, 0.03155537322163582, 0.03077646531164646, -0.046430665999650955, 0.03624783456325531, 0.05334587022662163, 0.023880256339907646, -0.007770107593387365, 0.021163569763302803, -0.08131065964698792, 0.052092015743255615, -0.009589148685336113, 0.023177336901426315, -0.009047710336744785, 0.019168797880411148, -0.07602926343679428, -0.0273948535323143, -0.022075464949011803, -0.043808966875076294, -0.044720862060785294, 0.008368538692593575, -0.007071937434375286, 0.054219771176576614, -0.0075706304050982, -0.01562570407986641, 0.0059748138301074505, 0.024583175778388977, 0.02760382927954197, 0.046278685331344604, 0.006435510702431202, 0.0009682950330898166, 0.09210141748189926, -0.004704334773123264, -0.00993585865944624, 0.04787449911236763, -0.0012241718359291553, 0.006169541273266077, -0.0541817769408226, 0.020346662029623985, 0.011598167940974236, 0.026122000068426132, 0.03913550451397896, -0.05627153441309929, 0.034860994666814804, 0.009237688966095448, -0.058209314942359924, -0.01046779751777649, 0.007257166318595409, 0.0005108632030896842, -0.03421507030725479, -0.05156007781624794, 0.002947036409750581, 0.02705289237201214, -0.05425776541233063, -0.027128882706165314, -0.10053645074367523, -0.014742306433618069, -0.026653937995433807, 0.03932548314332962, 0.05680347606539726, -0.03356914222240448, 0.015302741900086403 ]
18,486
fs.base
match
Check if a name matches any of a list of wildcards. If a filesystem is case *insensitive* (such as Windows) then this method will perform a case insensitive match (i.e. ``*.py`` will match the same names as ``*.PY``). Otherwise the match will be case sensitive (``*.py`` and ``*.PY`` will match different names). Arguments: patterns (list, optional): A list of patterns, e.g. ``['*.py']``, or `None` to match everything. name (str): A file or directory name (not a path) Returns: bool: `True` if ``name`` matches any of the patterns. Raises: TypeError: If ``patterns`` is a single string instead of a list (or `None`). Example: >>> my_fs.match(['*.py'], '__init__.py') True >>> my_fs.match(['*.jpg', '*.png'], 'foo.gif') False Note: If ``patterns`` is `None` (or ``['*']``), then this method will always return `True`.
def match(self, patterns, name): # type: (Optional[Iterable[Text]], Text) -> bool """Check if a name matches any of a list of wildcards. If a filesystem is case *insensitive* (such as Windows) then this method will perform a case insensitive match (i.e. ``*.py`` will match the same names as ``*.PY``). Otherwise the match will be case sensitive (``*.py`` and ``*.PY`` will match different names). Arguments: patterns (list, optional): A list of patterns, e.g. ``['*.py']``, or `None` to match everything. name (str): A file or directory name (not a path) Returns: bool: `True` if ``name`` matches any of the patterns. Raises: TypeError: If ``patterns`` is a single string instead of a list (or `None`). Example: >>> my_fs.match(['*.py'], '__init__.py') True >>> my_fs.match(['*.jpg', '*.png'], 'foo.gif') False Note: If ``patterns`` is `None` (or ``['*']``), then this method will always return `True`. """ if patterns is None: return True if isinstance(patterns, six.text_type): raise TypeError("patterns must be a list or sequence") case_sensitive = not typing.cast( bool, self.getmeta().get("case_insensitive", False) ) matcher = wildcard.get_matcher(patterns, case_sensitive) return matcher(name)
(self, patterns, name)
[ 0.05315396934747696, -0.06830500066280365, 0.014148125424981117, -0.007096448913216591, -0.010852865874767303, -0.015616665594279766, 0.025144264101982117, -0.030284153297543526, -0.055625416338443756, 0.042516011744737625, 0.011497590690851212, 0.07442988455295563, 0.03583594784140587, -0.010405140928924084, 0.034027136862277985, -0.038217850029468536, 0.019288014620542526, 0.04613363370299339, -0.008739601820707321, 0.011336409486830235, -0.0221534576267004, 0.08775419741868973, 0.02580689825117588, -0.01790006458759308, 0.017461294308304787, 0.028797704726457596, 0.03882675617933273, -0.024123448878526688, -0.03943566232919693, 0.03836112096905708, -0.016243480145931244, 0.04502327740192413, -0.013843672350049019, 0.0038907346315681934, -0.0023818996269255877, -0.032110873609781265, -0.04197874292731285, 0.049428895115852356, 0.004692163318395615, -0.0371791236102581, 0.042516011744737625, 0.045990362763404846, 0.04040274769067764, -0.019592467695474625, 0.0034609180875122547, 0.04753053933382034, -0.0582401305437088, 0.03760894015431404, -0.022099729627370834, 0.02750825509428978, 0.007217335049062967, -0.03098260425031185, -0.06425756216049194, -0.05476578325033188, 0.0019229809986427426, 0.11497590690851212, 0.017989611253142357, 0.05301069840788841, 0.017864247784018517, -0.027866434305906296, 0.017926929518580437, -0.013557127676904202, 0.061786118894815445, -0.009473871439695358, -0.05820431560277939, -0.021741550415754318, -0.0008143007289618254, -0.06260993331670761, -0.021043097600340843, 0.03537031263113022, -0.0743582472205162, 0.0006279349909164011, -0.026379985734820366, 0.005610000342130661, -0.021168461069464684, 0.05616268515586853, -0.012975084595382214, 0.04169219732284546, -0.0002887829323299229, 0.04054602235555649, -0.004875730723142624, -0.011255819350481033, 0.01490030437707901, -0.03739403188228607, -0.009751461446285248, 0.03479722514748573, -0.10064869374036789, -0.027526162564754486, 0.04627690836787224, -0.04445018619298935, -0.008341126143932343, -0.010449913330376148, 0.018141837790608406, 0.03925657272338867, -0.0035347926896065474, 0.0026191940996795893, 0.046885814517736435, -0.024463720619678497, 0.0023953313939273357, 0.07181517034769058, -0.03578222170472145, 0.038862571120262146, 0.052580881863832474, -0.04996616393327713, 0.004589186515659094, -0.0031698965467512608, -0.02704261988401413, 0.022314637899398804, -0.031770601868629456, 0.03082142397761345, 0.030337879434227943, -0.0325227789580822, 0.08324112743139267, 0.02004019357264042, -0.026666531339287758, 0.002280042041093111, -0.025036809965968132, -0.0060398168861866, -0.04051020368933678, 0.011855770833790302, 0.013601900078356266, 0.044342733919620514, 0.059243038296699524, -0.004719026852399111, 0.054873235523700714, -0.01927010528743267, 0.0023751838598400354, -0.04670672491192818, 0.0033780888188630342, 0.043698009103536606, -0.004911548458039761, 0.03289886936545372, -0.032110873609781265, 0.03497631475329399, 0.0305169690400362, 0.07915786653757095, 0.01608229987323284, -0.018446290865540504, -0.009572370909154415, 0.018052291125059128, 0.013037766329944134, 0.022135548293590546, 0.04993034899234772, 0.010449913330376148, -0.043196555227041245, -0.008206808008253574, 0.04326819255948067, -0.00547568267211318, 0.007700878661125898, 0.033006321638822556, -0.043662190437316895, -0.024947265163064003, -0.010996137745678425, 0.07378516346216202, -0.009250008501112461, -0.02063119038939476, 0.015742028132081032, 0.021383369341492653, -0.037286579608917236, 0.03323914110660553, 0.024678628891706467, 0.014488397166132927, -0.0793011412024498, 0.03671349212527275, -0.010494685731828213, -0.008108308538794518, -0.06092648580670357, 0.03397341072559357, 0.034242045134305954, -0.001212216797284782, -0.006021908018738031, -0.002449058461934328, -0.0021770652383565903, 0.013127311132848263, -0.004772753920406103, 0.031304966658353806, -0.02958570048213005, 0.003033340210095048, -0.008148604072630405, -0.005395092070102692, 0.008153080940246582, -0.04197874292731285, -0.026845620945096016, -0.012822858057916164, 0.024553265422582626, 0.045488908886909485, -0.04742308333516121, 0.036570217460393906, 0.0027893297374248505, 0.00395789323374629, -0.06966608762741089, -0.004907071590423584, 0.013816808350384235, -0.015652483329176903, -0.0029594656080007553, -0.015401757322251797, 0.00910673663020134, 0.0008971299394033849, 0.05942212790250778, -0.036785125732421875, 0.0004860619956161827, -0.022762363776564598, 0.04602618142962456, 0.033651046454906464, 0.055374689400196075, -0.011748316697776318, 0.03789548575878143, 0.04197874292731285, 0.01710311323404312, -0.06013849005103111, -0.0415131077170372, -0.02920961193740368, -0.011452818289399147, 0.026988893747329712, 0.022404184564948082, 0.03882675617933273, -0.0035795653238892555, -0.06364865601062775, -0.04563218355178833, 0.021490823477506638, 0.01576889120042324, 0.0591714009642601, -0.0043541304767131805, 0.01995064876973629, 0.038146212697029114, -0.005314501468092203, -0.006187566556036472, 0.032021328806877136, -0.036785125732421875, -0.0024848764296621084, 0.0015726358396932483, -0.027794798836112022, 0.03547776862978935, -0.011264773085713387, -0.020452100783586502, 0.007230766583234072, 0.030122971162199974, 0.03574640303850174, -0.006966608576476574, 0.037716396152973175, 0.025323353707790375, 0.06612010300159454, 0.009858915582299232, -0.023890633136034012, 0.016807615756988525, -0.03760894015431404, -0.016556888818740845, -0.010432003997266293, -0.009509689174592495, -0.011157318949699402, 0.008905259892344475, 0.002876636339351535, 0.01369144581258297, -0.04215783253312111, -0.019108925014734268, -0.030749786645174026, -0.03789548575878143, 0.01353921927511692, 0.05476578325033188, 0.0325227789580822, 0.01647629775106907, 0.0597803071141243, 0.010727502405643463, 0.06826918572187424, -0.0535837858915329, -0.015491302125155926, 0.005829385947436094, 0.009706689044833183, -0.033901773393154144, -0.07507461309432983, -0.03125124052166939, 0.008744078688323498, 0.008591852150857449, 0.015374893322587013, -0.007029290311038494, -0.020774463191628456, 0.046921633183956146, -0.028923066332936287, -0.012178133241832256, -0.024392085149884224, 0.015652483329176903, -0.01031559519469738, -0.000611145282164216, -0.02050582692027092, 0.05942212790250778, -0.024714447557926178, -0.03205714374780655, -0.000015460520444321446, -0.0477096289396286, 0.020308827981352806, -0.004295926075428724, -0.03425995633006096, 0.018446290865540504, -0.037000034004449844, -0.03889838978648186, 0.06705137342214584, 0.0690929964184761, -0.049858711659908295, 0.005336887668818235, -0.057881951332092285, -0.043017465621232986, 0.025448717176914215, 0.0879691019654274, -0.006406951695680618, -0.05086161568760872, -0.05290324613451958, -0.06744536757469177, -0.0009469393990002573, -0.024857720360159874, 0.051900338381528854, 0.014828667975962162, -0.011470727622509003, -0.04079674556851387, -0.024714447557926178, 0.013064630329608917, 0.025538261979818344, 0.06303974986076355, 0.005901021882891655, -0.02131173387169838, 0.029639428481459618, 0.03057069703936577, 0.021849004551768303, -0.04498745873570442, -0.018535835668444633, 0.011390136554837227, 0.02673816680908203, -0.009509689174592495, -0.040725111961364746, -0.02657698467373848, 0.034116681665182114, 0.018625380471348763, -0.06303974986076355, 0.04441436752676964, 0.025663625448942184, -0.01721952296793461, -0.0007907951367087662, -0.009652961976826191, 0.0041257902048528194, 0.041369836777448654, 0.0424443781375885, 0.0001464901870349422, 0.061069756746292114, -0.05107652395963669, -0.03246905282139778, 0.01311835739761591, 0.015974845737218857, 0.019664103165268898, 0.02593225985765457, 0.030803514644503593, -0.0016039765905588865, 0.016001708805561066, -0.04624108970165253, -0.033776409924030304, -0.022099729627370834, 0.007615810725837946, 0.019323833286762238, 0.0008411642629653215, 0.03259441629052162, -0.014586896635591984, 0.0037720873951911926, 0.09549089521169662, -0.025287535041570663, -0.027024710550904274, -0.07564769685268402, -0.07142116874456406, 0.0033064528834074736, 0.01812392845749855, 0.04126238077878952, 0.004094449803233147, -0.016583751887083054, 0.014058580622076988, 0.02509053610265255, 0.015294303186237812, -0.013154175132513046, 0.01524057611823082, -0.041584745049476624, 0.01927010528743267, -0.005010048393160105, 0.01053050346672535, 0.04538145661354065, 0.011175228282809258, 0.03714330866932869, 0.10279777646064758, -0.003031101543456316, 0.028851430863142014, 0.011470727622509003, -0.013601900078356266, -0.013807854615151882, -0.05734468251466751, 0.005108547862619162, 0.02088191732764244, 0.0005753272562287748, -0.06859154254198074, -0.025788988918066025, -0.0820949450135231, -0.028045525774359703, 0.0005437066429294646, 0.06995262950658798, -0.09420144557952881, 0.0312870591878891, -0.005224956665188074, -0.04774544760584831, -0.05587614327669144, 0.04054602235555649, -0.009196281433105469, 0.07607751339673996, 0.06160702928900719, 0.0009581325575709343, -0.0343853197991848, 0.0283499788492918, -0.008699306286871433, -0.043447282165288925, -0.036444853991270065, -0.02784852497279644, -0.05347633361816406, 0.023460816591978073, -0.04445018619298935, -0.03857602924108505, 0.022171366959810257, -0.02369363233447075, -0.018052291125059128, -0.003380327485501766, 0.022995181381702423, 0.04799617454409599, 0.07579097151756287, -0.019216379150748253, 0.019502922892570496, -0.01110359188169241, -0.0016465105582028627, -0.006254725158214569, -0.0984996110200882, -0.0018815663643181324, -0.02317427098751068, 0.013610854744911194, 0.05347633361816406, -0.023120544850826263, 0.001672254758886993, -0.05408523976802826, -0.052580881863832474, -0.07038244605064392, -0.00705615384504199, -0.04061765596270561, -0.027436617761850357, -0.001989020500332117, -0.04921398684382439, -0.041154928505420685, -0.00480857165530324, -0.04008038714528084, -0.020183464512228966, -0.02903052046895027, -0.06848409026861191, 0.04907071590423584, -0.04860508069396019, -0.046921633183956146, 0.042551830410957336, -0.001844629063270986, 0.04462927579879761, 0.011828907765448093, -0.0439845509827137, -0.04240855947136879, 0.03782384842634201, -0.046384360641241074, 0.01824929192662239, -0.031215421855449677, 0.00889182835817337, -0.028260434046387672, 0.044163644313812256, -0.00026387820253148675, 0.07815495878458023, -0.019628286361694336, 0.01876865327358246, 0.00762924226000905, -0.0371791236102581, -0.011399091221392155, 0.013745172880589962, 0.023783179000020027, -0.005323456134647131, 0.03732239827513695, -0.027114255353808403, -0.0023326498921960592, -0.030302060768008232, -0.06626337021589279, 0.046455997973680496, 0.04921398684382439, 0.0002885031281039119, -0.09907269477844238, 0.03972220420837402, -0.03141241893172264, -0.01392426248639822, -0.12973293662071228, 0.029621519148349762, -0.022475820034742355, 0.010620049200952053, 0.046420179307460785, -0.02394435927271843, 0.0045936633832752705, -0.054909054189920425, 0.024571174755692482, -0.03193178400397301, 0.006621859967708588, 0.006380088161677122, 0.05046761780977249, -0.0182761549949646, 0.0424443781375885, 0.012187087908387184, -0.009652961976826191, 0.032200418412685394, -0.08961673825979233, -0.02673816680908203, 0.03485095128417015, -0.025753170251846313, 0.010055914521217346, -0.03526286035776138, 0.009366417303681374, 0.04201456159353256, 0.0022251957561820745, 0.0387193001806736, -0.04495164006948471, -0.033471956849098206, -0.028385795652866364, -0.01576889120042324, 0.005314501468092203, -0.02750825509428978, -0.019091015681624413, 0.004029529634863138, -0.02512635476887226, 0.006845722906291485, -0.02933497354388237, 0.04280255734920502, 0.02593225985765457, 0.04534563794732094, 0.04147728905081749, -0.040725111961364746, -0.016950886696577072, 0.017121022567152977, 0.003165419213473797, -0.00879780575633049, 0.022637000307440758, -0.08173676580190659, 0.058347586542367935, -0.01002009678632021, 0.01635988987982273, -0.006120407488197088, -0.04724399372935295, 0.015491302125155926, -0.05942212790250778, 0.019556649029254913, -0.09721016138792038, 0.09176582098007202, 0.022529546171426773, 0.0483185350894928, -0.029943881556391716, -0.060854848474264145, 0.058132678270339966, 0.026559077203273773, 0.010843911208212376, 0.00855155661702156, -0.005950271617621183, -0.018222426995635033, 0.011694589629769325, 0.012939266860485077, 0.022654909640550613, -0.004320551175624132, -0.028582796454429626, -0.018643289804458618, -0.06364865601062775, 0.005135411396622658, -0.009348507970571518, 0.03331077843904495, 0.0176582932472229, 0.0020035714842379093, 0.041620563715696335, 0.048461806029081345, 0.020792372524738312, -0.019646193832159042, 0.021078916266560555, 0.03789548575878143, 0.027454527094960213, -0.043232373893260956, -0.034152500331401825, -0.008721692487597466, -0.021849004551768303, -0.0328451432287693, -0.03753730654716492, -0.0037720873951911926, -0.008932123892009258, 0.01553607452660799, 0.025753170251846313, -0.08818401396274567, -0.017774702981114388, 0.0018558221636340022, -0.03429577127099037, 0.006438292562961578, 0.03348986804485321, -0.01728220470249653, 0.01750606670975685, -0.011184182949364185, 0.005068252794444561, 0.0616428479552269, 0.006483064964413643, -0.016037527471780777, -0.004813048988580704, -0.024015994742512703, -0.07478806376457214, 0.04659926891326904, 0.04169219732284546, 0.018329881131649017, -0.02763361670076847, 0.0018670152639970183, 0.026988893747329712, 0.010691684670746326, 0.04316073656082153, 0.04405618831515312, 0.018446290865540504, 0.00021966532221995294, 0.028851430863142014, -0.07134953141212463, 0.04179965332150459, 0.008784374222159386, -0.024714447557926178, 0.00034446880454197526, 0.04126238077878952, 0.008905259892344475, -0.025108445435762405, 0.02611135132610798, 0.01778365671634674, -0.04351891949772835, -0.039543114602565765, -0.02131173387169838, -0.021168461069464684, 0.04828271642327309, -0.012795994989573956, -0.002885590773075819, -0.029048429802060127, -0.009858915582299232, -0.036570217460393906, -0.0171926598995924, -0.04953634738922119, -0.020864007994532585, -0.019771557301282883, -0.04659926891326904, -0.03513749688863754, -0.008412761613726616, -0.006657678168267012, -0.005489114671945572, 0.013548173941671848, -0.014148125424981117, -0.012375133112072945, 0.07514625042676926, -0.018858198076486588, -0.01490030437707901, 0.048676714301109314, 0.013270583935081959, 0.0545150563120842, 0.04681417718529701, 0.06160702928900719, -0.031000513583421707, -0.028940975666046143, -0.043232373893260956, 0.012446768581867218, -0.060425031930208206, 0.006747223436832428, 0.017425475642085075, 0.016682252287864685, -0.0283499788492918, -0.019001470878720284, 0.028206706047058105, -0.0935567170381546, 0.011999043636023998, 0.09405817091464996, -0.018947742879390717, 0.02707843855023384, 0.048676714301109314, -0.02856488712131977, 0.09434471279382706, 0.05233015492558479, 0.009429099038243294, -0.020183464512228966, -0.010790184140205383, -0.03039160743355751, -0.04179965332150459, 0.007848627865314484, 0.06046085059642792, 0.051900338381528854, 0.016503160819411278, 0.0752895176410675, -0.04291000962257385, 0.021258005872368813, 0.0356210395693779, -0.03023042529821396, 0.015965892001986504, 0.01821347326040268, 0.0433756448328495, -0.015464439056813717, -0.0004740293661598116, 0.09556253254413605, 0.032791417092084885, 0.011828907765448093, 0.01712997816503048, -0.04291000962257385, -0.019126832485198975, 0.028636522591114044, 0.007230766583234072, -0.01812392845749855, 0.0004141460813116282, 0.03094678558409214, 0.006689019035547972, 0.009885778650641441, -0.017353840172290802, -0.0008685874636285007, -0.062466662377119064, -0.0014875679044052958, 0.07149280607700348, -0.022816091775894165, -0.0026371031999588013, -0.04423527792096138, 0.04445018619298935, -0.006653200834989548, 0.06021012365818024, -0.006384565494954586, 0.024768173694610596, 0.035334497690200806, 0.0018658960470929742, -0.03633740171790123, -0.03293468803167343, -0.04910653084516525, -0.0443069152534008, -0.031519874930381775, 0.022959362715482712, 0.02946033701300621, -0.0039064050652086735, 0.04785289987921715, 0.023407088592648506, 0.018643289804458618, -0.022063912823796272, -0.02598598785698414, 0.012401996180415154, -0.05820431560277939, -0.034492772072553635, 0.01824033632874489, 0.0009821978164836764, -0.007768037263303995, -0.02793807163834572, -0.06117721274495125, 0.008090400137007236, -0.004022813402116299, 0.0009335076319985092, 0.027812708169221878, -0.011855770833790302, 0.03467186167836189, 0.01769411191344261, -0.05974448844790459, -0.054873235523700714, 0.027329163625836372, 0.023550361394882202, -0.003646724158897996, 0.006098021287471056, -0.04674253985285759, 0.005829385947436094, 0.014148125424981117, -0.06024594232439995, 0.0780833289027214, 0.020487919449806213, -0.017989611253142357, -0.029155883938074112, -0.01567039266228676, -0.010727502405643463, 0.05548214167356491 ]
18,487
miarec_s3fs.s3fs
move
null
def move(self, src_path, dst_path, overwrite=False, preserve_time=False): self.copy(src_path, dst_path, overwrite=overwrite, preserve_time=preserve_time) self.remove(src_path)
(self, src_path, dst_path, overwrite=False, preserve_time=False)
[ -0.026433290913701057, 0.03729075938463211, -0.05034077167510986, -0.02194296382367611, 0.004735891707241535, -0.03525608032941818, -0.022837521508336067, 0.09527911990880966, 0.03851858526468277, -0.009515633806586266, -0.036729469895362854, -0.018627839162945747, 0.042693186551332474, 0.032958295196294785, 0.007257315330207348, 0.014882977120578289, 0.03841334208846092, -0.009024504572153091, -0.061636749655008316, -0.005709380377084017, 0.06788111478090286, -0.04458754137158394, -0.01772451214492321, -0.05756739154458046, 0.01329557690769434, 0.01236593909561634, 0.021995585411787033, 0.010515432804822922, -0.0545855350792408, 0.006450459826737642, 0.022135907784104347, 0.00517878495156765, -0.04279842600226402, 0.03439660370349884, -0.04227221757173538, 0.04834117367863655, -0.014733884483575821, -0.006196124479174614, -0.018119169399142265, -0.08005410432815552, -0.043640363961458206, -0.004529792349785566, 0.03665930777788162, 0.013453439809381962, 0.035484105348587036, 0.009401621297001839, -0.011830958537757397, 0.034607090055942535, 0.06097021698951721, 0.00877016969025135, 0.03788713365793228, 0.02332865074276924, -0.0030059756245464087, 0.0062399753369390965, 0.014330456964671612, 0.03239700570702553, 0.039781488478183746, 0.014733884483575821, -0.06461860984563828, -0.02218852937221527, 0.02045203559100628, -0.02694196067750454, -0.018926026299595833, -0.02622280642390251, 0.01817179098725319, -0.05160367861390114, -0.010892550460994244, -0.02474941872060299, 0.051638755947351456, 0.007406407967209816, -0.03911495581269264, -0.004985841456800699, 0.058304086327552795, 0.032677650451660156, 0.0019239558605477214, 0.048832304775714874, -0.06377667188644409, -0.011822188273072243, 0.0589706189930439, -0.03271273151040077, -0.04592060670256615, -0.04925327003002167, -0.054690778255462646, -0.007744059432297945, -0.03448430448770523, 0.046096011996269226, 0.05728674679994583, -0.07089804857969284, 0.04956899583339691, -0.020644979551434517, -0.010164625942707062, 0.01360253244638443, -0.07907184958457947, -0.08342184871435165, 0.05062141641974449, 0.01861029863357544, -0.004832363221794367, -0.014286605641245842, 0.025468571111559868, 0.027187524363398552, -0.004977071192115545, 0.01324295625090599, 0.035501644015312195, -0.012120374478399754, 0.023889942094683647, 0.04037785902619362, -0.0022955918684601784, 0.019627640023827553, -0.009796279482543468, 0.00434561911970377, -0.02052219584584236, 0.009419161826372147, -0.005801467224955559, -0.0063583729788661, 0.01201513223350048, -0.06440812349319458, 0.007730904500931501, -0.027941759675741196, 0.007288010790944099, 0.02832764759659767, 0.02308308519423008, -0.005060387775301933, 0.011980051174759865, -0.03995689004659653, 0.00011010673915734515, -0.02201312594115734, 0.0359576940536499, 0.0303623266518116, -0.043289557099342346, 0.046552058309316635, -0.08685975521802902, -0.006564471870660782, 0.003600154537707567, -0.008730703964829445, -0.004157060291618109, -0.03806253522634506, 0.029713334515690804, 0.00020883965771645308, 0.044973429292440414, -0.020136309787631035, 0.0368347130715847, -0.0021432102657854557, 0.030327245593070984, -0.0037426697090268135, 0.06931941956281662, -0.05016537010669708, 0.004457438830286264, 0.0059812553226947784, -0.0024578399024903774, 0.04353512078523636, -0.02201312594115734, 0.03229176253080368, -0.028292566537857056, -0.014058581553399563, -0.00465257465839386, -0.028590751811861992, -0.05279641970992088, -0.04027261957526207, -0.02534578926861286, 0.0017375898314639926, -0.02220606990158558, -0.03623833879828453, 0.04276334494352341, 0.006209279876202345, 0.005678684916347265, -0.047604478895664215, 0.0007558789802715182, 0.06763554364442825, 0.005718150641769171, 0.020504655316472054, -0.005174399819225073, -0.006827577017247677, 0.05851456895470619, -0.08250975608825684, -0.016628241166472435, -0.05318230763077736, -0.003804061096161604, -0.040132295340299606, 0.01043650135397911, -0.04841133579611778, 0.0482359305024147, -0.02902926132082939, -0.017049210146069527, -0.00006145970110082999, -0.02632804773747921, 0.03367745131254196, -0.038904473185539246, 0.037852052599191666, 0.027941759675741196, 0.01701412908732891, 0.012795677408576012, 0.027064742520451546, 0.023644376546144485, 0.03606293722987175, -0.0071827685460448265, -0.01641775667667389, 0.030906077474355698, -0.02545103244483471, 0.02517038583755493, 0.06107546016573906, 0.024696797132492065, 0.010059384629130363, 0.0719153881072998, -0.014470779336988926, 0.029362527653574944, -0.029818575829267502, -0.00899819377809763, 0.009997992776334286, -0.056830696761608124, 0.016961507499217987, 0.030730674043297768, -0.0010337837738916278, 0.09408637881278992, -0.0883331447839737, 0.041465360671281815, -0.015935398638248444, -0.053989164531230927, 0.0068451170809566975, 0.059005700051784515, 0.01658439077436924, -0.006511850748211145, 0.05448029190301895, -0.07019643485546112, 0.01026109792292118, 0.05623432621359825, -0.034361522644758224, -0.05065649747848511, 0.016040639951825142, -0.000725731544662267, -0.03018692322075367, -0.0021377287339419127, 0.011217046529054642, 0.022065745666623116, -0.06167183071374893, 0.028450429439544678, -0.03327402099967003, -0.00003843800732283853, -0.004959530662745237, -0.05244561284780502, -0.03413349762558937, -0.05868997424840927, -0.01648791879415512, -0.01113811507821083, 0.016093261539936066, 0.04851657897233963, -0.06258393079042435, -0.013050012290477753, -0.05556779354810715, 0.03904479369521141, 0.00881840568035841, 0.05258593708276749, 0.024942362681031227, -0.056479889899492264, 0.03481757268309593, 0.03448430448770523, 0.02325848862528801, -0.004409202840179205, -0.031134100630879402, -0.036554064601659775, 0.047779884189367294, -0.018487516790628433, -0.06549562513828278, 0.016829954460263252, -0.029502850025892258, 0.004049625713378191, 0.04521899297833443, -0.02832764759659767, 0.016040639951825142, -0.018469976261258125, -0.019785502925515175, 0.0793524906039238, -0.0026332433335483074, -0.06988070905208588, -0.023100625723600388, 0.03343188762664795, -0.024872200563549995, -0.07082788646221161, -0.026906879618763924, 0.02510022558271885, 0.032256681472063065, 0.044271815568208694, -0.04136011749505997, 0.01254134252667427, -0.007638817653059959, -0.015505659393966198, 0.022942762821912766, 0.022048205137252808, -0.043921008706092834, 0.01407612208276987, 0.04521899297833443, 0.005376114044338465, 0.013848097063601017, -0.04009721428155899, 0.021627238020300865, -0.00026009033899754286, 0.06205771863460541, -0.043745603412389755, -0.019697800278663635, -0.031730473041534424, 0.015058380551636219, 0.029467768967151642, 0.016707172617316246, -0.01701412908732891, 0.006792496424168348, 0.015146082267165184, 0.012935999780893326, -0.007130147889256477, 0.0394657626748085, -0.06630247831344604, 0.06419763714075089, 0.020644979551434517, -0.06567102670669556, -0.06528513878583908, 0.0074546439573168755, 0.052866581827402115, 0.01284829806536436, -0.00607334217056632, 0.00741517823189497, -0.04599076882004738, -0.06609199941158295, -0.04125487804412842, -0.031730473041534424, -0.07261700183153152, 0.028204865753650665, 0.001460233237594366, -0.03239700570702553, -0.04458754137158394, 0.042342379689216614, -0.006064572371542454, 0.022749818861484528, -0.00695035932585597, 0.02560889534652233, -0.02148691564798355, 0.02299538441002369, 0.021978044882416725, -0.02150445617735386, -0.03992181271314621, -0.04437705874443054, 0.08377265930175781, 0.08279039710760117, 0.006954744458198547, 0.027485711500048637, -0.023661917075514793, -0.031186722218990326, 0.034431684762239456, 0.01789991557598114, -0.07402022927999496, -0.005468200426548719, -0.01648791879415512, 0.008169412612915039, 0.046797625720500946, 0.07289765030145645, 0.013532371260225773, -0.009278839454054832, -0.01088378019630909, 0.04413149133324623, 0.038904473185539246, -0.01946977525949478, 0.045850444585084915, -0.09584040939807892, 0.030993778258562088, -0.04837625473737717, 0.019785502925515175, -0.01832965388894081, -0.03634358197450638, 0.01100656297057867, -0.0793524906039238, 0.0124974912032485, 0.0006040454027242959, -0.00929637998342514, -0.05335770919919014, 0.00034806609619408846, 0.058654893189668655, -0.004858674015849829, -0.007248545065522194, 0.028275026008486748, 0.0456048808991909, 0.040237538516521454, 0.005411194637417793, -0.023381272330880165, 0.03472987189888954, -0.028888938948512077, 0.017128141596913338, -0.01957501843571663, 0.02560889534652233, 0.03472987189888954, 0.06412748247385025, -0.009217447601258755, -0.005805852357298136, -0.037781890481710434, 0.004378506913781166, 0.004950760863721371, -0.032519787549972534, -0.053638357669115067, -0.013146484270691872, 0.014935598708689213, 0.03509821742773056, 0.08819282054901123, -0.02325848862528801, 0.01992582529783249, -0.009805049747228622, -0.003817216260358691, -0.058935537934303284, 0.03623833879828453, -0.012935999780893326, 0.0022670887410640717, 0.020943164825439453, 0.03509821742773056, 0.03841334208846092, 0.05265609547495842, 0.006985439918935299, 0.0010535166366025805, -0.029608091339468956, 0.021539535373449326, -0.004192140884697437, 0.031449828296899796, 0.02657361328601837, -0.04072866588830948, 0.028713535517454147, -0.024328449741005898, -0.03799237310886383, 0.010910090990364552, -0.004854288883507252, -0.0033721302170306444, 0.02746817097067833, -0.057883117347955704, 0.015426727943122387, -0.004229414276778698, -0.03676455095410347, -0.01824195310473442, 0.027538331225514412, -0.012602733448147774, -0.01236593909561634, 0.05693593993782997, 0.03718551993370056, 0.027678655460476875, 0.04458754137158394, -0.03385285288095474, 0.012760596349835396, 0.05746214836835861, -0.008103636093437672, -0.02343389205634594, 0.021539535373449326, -0.029432687908411026, -0.06651296466588974, -0.02043449506163597, -0.08061539381742477, -0.014926828444004059, 0.07068756222724915, 0.05188432335853577, -0.026854258030653, 0.011550312861800194, -0.028941558673977852, -0.0007958928472362459, -0.039535924792289734, -0.015584590844810009, -0.06454844772815704, -0.02317078784108162, -0.011348599568009377, -0.04704318940639496, 0.005012151785194874, 0.029801035299897194, 0.08117669075727463, -0.05630448833107948, -0.004924450069665909, 0.07402022927999496, 0.0035848068073391914, -0.021451834589242935, -0.005205095745623112, -0.05290166288614273, -0.0027209450490772724, -0.09527911990880966, 0.013164023868739605, -0.01354991178959608, 0.03939560055732727, -0.003415981074795127, 0.037150438874959946, 0.04763955995440483, -0.018452435731887817, 0.08377265930175781, 0.05598876252770424, -0.04371052607893944, -0.01773328334093094, -0.014067351818084717, 0.020750220865011215, 0.05412948504090309, 0.02501252293586731, 0.02069759927690029, 0.021083487197756767, -0.02552119269967079, 0.005722535774111748, -0.04571012407541275, -0.031011318787932396, -0.040939152240753174, 0.004547332879155874, -0.01834719441831112, -0.09380573034286499, -0.043640363961458206, -0.019803043454885483, -0.016172192990779877, -0.0038654522504657507, 0.013856867328286171, -0.004740276373922825, -0.001664139679633081, -0.027152445167303085, 0.07640571892261505, 0.006910893600434065, -0.07131902128458023, -0.06563594937324524, 0.018575219437479973, -0.05756739154458046, 0.05861981213092804, -0.006143503822386265, 0.03686979040503502, 0.055427469313144684, -0.028976639732718468, -0.05749722942709923, -0.016277434304356575, 0.02403026446700096, -0.067074254155159, -0.034887734800577164, -0.004396047443151474, 0.07710733264684677, 0.024065345525741577, -0.0010529684368520975, 0.04413149133324623, 0.019171589985489845, 0.04065850377082825, 0.05290166288614273, 0.02069759927690029, 0.006687254179269075, 0.031467366963624954, -0.005235791206359863, 0.00647238502278924, 0.036975033581256866, 0.04458754137158394, -0.009787509217858315, -0.04402625188231468, 0.04599076882004738, 0.0077966805547475815, 0.004253532271832228, -0.016479147598147392, 0.02641575038433075, 0.04139519855380058, -0.05960207059979439, 0.04542947933077812, -0.0169351976364851, -0.024696797132492065, -0.0009285417036153376, -0.02185526303946972, -0.03415104001760483, -0.0030761368107050657, 0.005200710613280535, 0.015733683481812477, 0.02895909920334816, 0.037957292050123215, -0.02403026446700096, -0.028888938948512077, 0.012997390702366829, 0.010997792705893517, 0.017847293987870216, -0.03395809605717659, 0.0013023701030761003, 0.0063232919201254845, 0.05069157853722572, -0.028047000989317894, -0.024994982406497, -0.0021092258393764496, 0.07710733264684677, -0.010164625942707062, 0.043043989688158035, 0.030029060319066048, 0.0024512624368071556, -0.03816777840256691, 0.02001352608203888, 0.01100656297057867, 0.03886939212679863, -0.02588954009115696, -0.011374909430742264, 0.03823794052004814, -0.007906307466328144, -0.01983812265098095, 0.07472184300422668, -0.020294172689318657, -0.03192341700196266, 0.00930514931678772, 0.03904479369521141, 0.006691639311611652, -0.002376715885475278, -0.041886329650878906, 0.038729067891836166, 0.039255280047655106, 0.06728474050760269, -0.019504856318235397, -0.05844441056251526, -0.020066147670149803, 0.031204262748360634, -0.05798836052417755, -0.013883178122341633, -0.02218852937221527, 0.019276833161711693, -0.03764156624674797, 0.024258289486169815, 0.02227623015642166, -0.025766758248209953, 0.04044802114367485, -0.0642327219247818, -0.03339680656790733, 0.0219254232943058, 0.022434093058109283, -0.0033129313960671425, 0.008686852641403675, -0.007827376015484333, -0.05556779354810715, 0.045850444585084915, 0.05083190277218819, 0.02517038583755493, -0.029537931084632874, -0.04139519855380058, 0.008638616651296616, -0.030134301632642746, -0.04535931721329689, -0.009647185914218426, 0.00358699937351048, -0.02185526303946972, -0.028222404420375824, -0.038027454167604446, -0.028467969968914986, -0.02474941872060299, 0.010568054392933846, 0.00717399874702096, -0.12018640339374542, -0.030853455886244774, 0.043043989688158035, -0.03578229248523712, -0.005507666617631912, 0.021293971687555313, -0.022697199136018753, -0.025398410856723785, -0.028573211282491684, 0.026082484051585197, -0.05167383700609207, -0.005323492921888828, 0.018277032300829887, -0.09815573692321777, -0.03371253237128258, 0.02150445617735386, 0.03297583758831024, -0.017154451459646225, 0.022767359390854836, 0.029801035299897194, -0.0004897591425105929, -0.004220644012093544, 0.004402624908834696, 0.0848250761628151, 0.00303667108528316, 0.06184723600745201, -0.03381777182221413, -0.009813820011913776, 0.05307706445455551, 0.021206269040703773, -0.007309935986995697, -0.012874608859419823, 0.02464417554438114, 0.054971423000097275, -0.01276936661452055, -0.0065907821990549564, -0.0002462499251123518, -0.024170586839318275, -0.03701011463999748, -0.05412948504090309, -0.034624628722667694, -0.034186121076345444, -0.008765784092247486, -0.005507666617631912, -0.015172393061220646, 0.04360528290271759, -0.017742052674293518, -0.027678655460476875, -0.036273419857025146, -0.016566850244998932, 0.002153076697140932, 0.03483511134982109, -0.06549562513828278, -0.025503652170300484, 0.06047908961772919, 0.035484105348587036, 0.033379264175891876, -0.02534578926861286, -0.039430681616067886, 0.04641173779964447, 0.029257284477353096, 0.0026222807355225086, -0.012392248958349228, -0.00925252865999937, -0.004608723800629377, 0.0466923825442791, 0.021101027727127075, -0.00412197969853878, -0.025556273758411407, -0.056900858879089355, 0.06879320740699768, 0.04360528290271759, -0.019101429730653763, -0.0013527986593544483, -0.004459631163626909, -0.016514228656888008, -0.017654351890087128, 0.04290366917848587, -0.03134458512067795, 0.050235532224178314, -0.06167183071374893, 0.031888335943222046, 0.06914401799440384, 0.024977441877126694, -0.009682266972959042, 0.05872505530714989, -0.038729067891836166, -0.017698202282190323, 0.00019979542412329465, 0.0012946962378919125, -0.03834317997097969, 0.0018658535555005074, -0.03630850091576576, -0.05483109876513481, -0.0754234567284584, -0.03269519284367561, -0.010857469402253628, 0.009883981198072433, 0.032326843589544296, -0.0008972979849204421, 0.0688282921910286, 0.056725457310676575, 0.03444922715425491, 0.005626063793897629, 0.013935798779129982, 0.05027060955762863, 0.01469880435615778, 0.039535924792289734, 0.017478948459029198, 0.005042847245931625, 0.0350806787610054, 0.03676455095410347, -0.03641374409198761, 0.02606494352221489, -0.008621076121926308, -0.03686979040503502, 0.04335971921682358, -0.03397563472390175, 0.044622622430324554, 0.02790667861700058, -0.04855165630578995, 0.05907586216926575, 0.006011951249092817, -0.009498093277215958, -0.034343983978033066, -0.017329854890704155, -0.017075520008802414, 0.009550714865326881, -0.01065575610846281, 0.005327878054231405, -0.035308703780174255, 0.0006873620441183448, -0.015567050315439701, 0.052164968103170395, 0.028731074184179306, -0.012795677408576012, 0.037781890481710434 ]
18,488
fs.base
movedir
Move directory ``src_path`` to ``dst_path``. Arguments: src_path (str): Path of source directory on the filesystem. dst_path (str): Path to destination directory. create (bool): If `True`, then ``dst_path`` will be created if it doesn't exist already (defaults to `False`). preserve_time (bool): If `True`, try to preserve mtime of the resources (defaults to `False`). Raises: fs.errors.ResourceNotFound: if ``dst_path`` does not exist, and ``create`` is `False`. fs.errors.DirectoryExpected: if ``src_path`` or one of its ancestors is not a directory.
def movedir(self, src_path, dst_path, create=False, preserve_time=False): # type: (Text, Text, bool, bool) -> None """Move directory ``src_path`` to ``dst_path``. Arguments: src_path (str): Path of source directory on the filesystem. dst_path (str): Path to destination directory. create (bool): If `True`, then ``dst_path`` will be created if it doesn't exist already (defaults to `False`). preserve_time (bool): If `True`, try to preserve mtime of the resources (defaults to `False`). Raises: fs.errors.ResourceNotFound: if ``dst_path`` does not exist, and ``create`` is `False`. fs.errors.DirectoryExpected: if ``src_path`` or one of its ancestors is not a directory. """ from .move import move_dir with self._lock: if not create and not self.exists(dst_path): raise errors.ResourceNotFound(dst_path) move_dir(self, src_path, self, dst_path, preserve_time=preserve_time)
(self, src_path, dst_path, create=False, preserve_time=False)
[ -0.05992930382490158, 0.04857039451599121, -0.050303734838962555, -0.07482864707708359, 0.04414484649896622, -0.01971212960779667, 0.023861082270741463, 0.03545970842242241, 0.026534851640462875, -0.0012688877759501338, -0.011617064476013184, -0.012197918258607388, 0.07213643938302994, 0.028913583606481552, -0.016457509249448776, 0.01259437296539545, 0.03459303826093674, -0.0321589857339859, -0.058933552354574203, -0.04215334728360176, 0.03315473347902298, -0.014087995514273643, 0.011017771437764168, 0.00028264732100069523, -0.007763149682432413, -0.013885158114135265, 0.019933408126235008, 0.01743481680750847, -0.061441365629434586, 0.025041228160262108, 0.0327121801674366, 0.09020742774009705, -0.00279823737218976, 0.0135255828499794, -0.08703579008579254, 0.03791219741106033, -0.0557619109749794, -0.0695548728108406, -0.03835475444793701, -0.08703579008579254, -0.037082407623529434, 0.0031670331954956055, 0.05329097807407379, 0.027641238644719124, 0.04163703694939613, -0.029061101377010345, -0.007007118314504623, -0.038834188133478165, 0.05413920804858208, 0.01743481680750847, 0.03791219741106033, 0.03295189514756203, -0.016734104603528976, -0.010446138679981232, 0.04425548389554024, 0.030554724857211113, 0.006721301935613155, -0.0007364389020949602, 0.0025423853658139706, -0.05605694651603699, 0.031753309071063995, -0.002473236294463277, -0.021777385845780373, 0.015609278343617916, -0.01607949286699295, -0.01976745016872883, -0.039608657360076904, -0.04576754570007324, -0.00014939106767997146, 0.013516362756490707, -0.08024994283914566, 0.012492954730987549, 0.03909234330058098, 0.02843414805829525, 0.022902213037014008, 0.0713619664311409, -0.0017932690680027008, -0.006126618478447199, 0.032472461462020874, -0.038723550736904144, -0.03402140364050865, -0.03245402127504349, -0.060630012303590775, -0.01489934604614973, -0.011405006982386112, 0.033892326056957245, 0.02124263346195221, -0.030923519283533096, 0.030149048194289207, -0.019177377223968506, -0.06192079931497574, -0.012151818722486496, -0.03971929848194122, -0.02931925840675831, 0.01229011733084917, 0.044550519436597824, 0.007043997757136822, -0.04281718283891678, 0.03127387538552284, 0.038612909615039825, 0.013756079599261284, 0.034611478447914124, 0.031808629631996155, -0.029485216364264488, 0.010492238216102123, 0.0032200475689023733, -0.02931925840675831, 0.01638374850153923, 0.019029857590794563, -0.0024594063870608807, -0.027309322729706764, 0.014696508646011353, 0.015729136765003204, 0.020560361444950104, -0.010178761556744576, -0.03245402127504349, 0.014309273101389408, -0.03374480828642845, -0.04104696214199066, -0.01377451978623867, 0.005619524512439966, 0.01037237886339426, 0.03276749700307846, -0.010741175152361393, 0.0327121801674366, 0.023732002824544907, 0.004868103191256523, -0.023123491555452347, -0.033892326056957245, 0.05731085315346718, -0.07685702294111252, -0.04993493854999542, 0.02179582603275776, 0.013756079599261284, 0.0466526560485363, 0.0055872551165521145, 0.05078316852450371, 0.012520614080131054, 0.011672384105622768, 0.03584694117307663, 0.055356234312057495, 0.018504325300455093, 0.03761716187000275, 0.009690106846392155, 0.03689800947904587, -0.01729651913046837, 0.0018347586737945676, 0.04916046932339668, 0.015683038160204887, 0.05786404758691788, -0.03324693441390991, -0.00272447825409472, 0.05270090699195862, 0.04296470060944557, 0.0038009006530046463, -0.026092296466231346, -0.008113505318760872, -0.03628949820995331, 0.0227731354534626, 0.0022427388466894627, -0.05653638020157814, -0.01985964924097061, 0.04661577567458153, -0.009920604526996613, 0.02124263346195221, -0.023529166355729103, -0.02524406649172306, 0.017444036900997162, -0.0187717005610466, 0.021095113828778267, -0.0012239407515153289, -0.02688520774245262, 0.022514978423714638, -0.06354349851608276, -0.12531678378582, -0.0639122948050499, 0.027180243283510208, 0.008145774714648724, -0.023031292483210564, -0.06830096244812012, 0.1007549837231636, -0.04477179795503616, -0.015249702148139477, 0.0019292625365778804, -0.031255435198545456, 0.02068943902850151, -0.047832801938056946, 0.048496633768081665, 0.06701017916202545, 0.03802283853292465, 0.004960302263498306, 0.04012497141957283, 0.002111355308443308, -0.013995797373354435, -0.01358090154826641, -0.00898478552699089, -0.012852529995143414, -0.039055466651916504, -0.01278799120336771, 0.08497053384780884, 0.030941959470510483, 0.03946113958954811, 0.055024318397045135, -0.020781638100743294, 0.015793675556778908, -0.04687393456697464, -0.09249396622180939, 0.01146954670548439, -0.011368127539753914, -0.012197918258607388, 0.014991545118391514, 0.017711414024233818, 0.059966180473566055, -0.052774664014577866, 0.009671667590737343, 0.005933000706136227, -0.023344768211245537, 0.022478098049759865, 0.058048445731401443, -0.00567945372313261, -0.022625615820288658, 0.05104132741689682, -0.1020088940858841, -0.04207959026098251, 0.0012896325206384063, -0.06181016191840172, -0.04123136028647423, 0.036252617835998535, 0.043554771691560745, -0.009561028331518173, -0.006878039799630642, 0.018375245854258537, 0.009017054922878742, -0.04879167303442955, 0.024875270202755928, -0.07685702294111252, 0.021039795130491257, 0.008201094344258308, -0.09050246328115463, -0.017305739223957062, -0.07552935928106308, -0.03343133255839348, -0.006181938108056784, 0.018956098705530167, 0.026774568483233452, -0.06092505156993866, -0.01460430957376957, -0.04337037354707718, 0.03612354025244713, -0.007804639171808958, 0.0026622440200299025, -0.009717767126858234, -0.060298096388578415, -0.005024841520935297, -0.009127693250775337, 0.012732671573758125, -0.030720682814717293, 0.03787532076239586, -0.04226398840546608, 0.00826102402061224, 0.0047205849550664425, -0.06033497676253319, -0.06074065342545509, -0.050746288150548935, 0.005057110916823149, 0.022478098049759865, -0.01563693769276142, 0.0026092296466231346, 0.04842287674546242, -0.004305690061300993, 0.052774664014577866, 0.012308556586503983, -0.030278127640485764, -0.03309941291809082, 0.06704705953598022, -0.008915635757148266, -0.05133636295795441, -0.03234338387846947, 0.03387388586997986, 0.03420580178499222, 0.007942937314510345, -0.019896527752280235, -0.055466875433921814, -0.05447112396359444, 0.00881882756948471, 0.03931362181901932, 0.0002984940365422517, -0.022902213037014008, -0.02030220441520214, 0.04639450088143349, 0.025262506678700447, 0.011497206054627895, -0.07276339083909988, 0.011377347633242607, 0.012151818722486496, 0.012889410369098186, -0.07482864707708359, -0.015129843726754189, -0.041083842515945435, -0.0036764321848750114, 0.0038285604678094387, 0.040862563997507095, -0.0115248654037714, 0.02085539698600769, 0.0033998354338109493, -0.01679864525794983, -0.006984068546444178, 0.051742035895586014, -0.04023561254143715, 0.058269720524549484, 0.028950462117791176, -0.01163550466299057, 0.02035752311348915, -0.010676635429263115, 0.06675202399492264, 0.0018658757908269763, -0.004639910999685526, -0.02207242324948311, -0.07788965106010437, -0.02190646529197693, -0.044107966125011444, 0.010187981650233269, -0.08533932268619537, 0.04384981095790863, -0.01960149221122265, 0.014410692267119884, -0.002892741234973073, 0.07051374018192291, 0.04672641679644585, -0.00559647474437952, -0.005158530082553625, 0.03879730775952339, -0.004377143923193216, -0.03118167631328106, 0.04657889902591705, 0.010307840071618557, -0.01630076952278614, -0.02799159474670887, 0.07350098341703415, 0.07501304894685745, 0.026534851640462875, -0.00868974905461073, -0.029706494882702827, -0.0364370159804821, -0.015821335837244987, -0.026221374049782753, -0.014945445582270622, 0.014373812824487686, 0.031642671674489975, 0.032638419419527054, 0.017453256994485855, 0.0639122948050499, -0.011294368654489517, -0.010584436357021332, -0.032251182943582535, 0.02668236941099167, 0.030112169682979584, 0.021537669003009796, -0.0033514308743178844, -0.09573936462402344, 0.024137679487466812, -0.01569225639104843, 0.03498027101159096, -0.023068170994520187, -0.04934486374258995, -0.006937969010323286, -0.048607274889945984, -0.02524406649172306, -0.006370945833623409, 0.016208570450544357, 0.016678785905241966, -0.019417094066739082, 0.04757464677095413, 0.027309322729706764, 0.021445469930768013, 0.023455407470464706, 0.050746288150548935, -0.033837005496025085, -0.016835523769259453, -0.007279105018824339, 0.02068943902850151, -0.01707524061203003, 0.015388000756502151, -0.00834400299936533, 0.04661577567458153, 0.011580185033380985, 0.13962605595588684, 0.001515519805252552, -0.036529213190078735, -0.09514929354190826, -0.050856929272413254, -0.0017667618812993169, 0.03068380244076252, -0.029485216364264488, -0.02107667364180088, -0.05159451812505722, 0.05340161919593811, 0.07796341180801392, 0.015470979735255241, -0.0016607331344857812, -0.0006597985629923642, -0.0061081787571311, 0.010473798029124737, 0.012834090739488602, -0.04746400564908981, 0.011626284569501877, 0.04325973615050316, 0.02207242324948311, 0.009487269446253777, 0.021924905478954315, 0.034224241971969604, 0.004006043542176485, -0.01846744492650032, 0.003911539446562529, -0.014226294122636318, 0.03029656782746315, 0.0002953246876131743, 0.016429848968982697, 0.027567479759454727, -0.043333496898412704, -0.035164669156074524, -0.03719304874539375, 0.015028424561023712, 0.0004448598192539066, 0.050193093717098236, -0.022533416748046875, 0.020836956799030304, 0.026202935725450516, -0.012575933709740639, -0.0011553678195923567, 0.023141929879784584, 0.014936226420104504, -0.02185114473104477, 0.023695124313235283, 0.0128709701821208, 0.02563130110502243, 0.0027475280221551657, 0.0007738947169855237, -0.03935050219297409, 0.062326475977897644, -0.023566044867038727, -0.03979305550456047, 0.011764583177864552, 0.011755363084375858, -0.07759461551904678, -0.05542999505996704, -0.03177174925804138, -0.013212106190621853, 0.027696557343006134, 0.03415048122406006, -0.023953281342983246, 0.003180862870067358, 0.031421393156051636, 0.04259590432047844, -0.06951799243688583, -0.0004586896684486419, -0.03112635761499405, -0.0423746258020401, 0.0035819283220916986, -0.043333496898412704, 0.036584533751010895, 0.0019845818169414997, 0.10436918586492538, -0.0278809554874897, 0.0008557213004678488, 0.06675202399492264, -0.022533416748046875, -0.06509244441986084, 0.030149048194289207, -0.04337037354707718, -0.008597549982368946, -0.05196331441402435, 0.01320288609713316, 0.028120672330260277, 0.030001530423760414, -0.0520370751619339, -0.0113865677267313, -0.03193770721554756, -0.05218459293246269, 0.03601289913058281, 0.07257899641990662, -0.01163550466299057, 0.03140295296907425, -0.014143315143883228, -0.011432667262852192, -0.016042612493038177, 0.04123136028647423, 0.07372225821018219, 0.02185114473104477, -0.010907133109867573, 0.04226398840546608, -0.017646875232458115, -0.005665624048560858, -0.029448337852954865, -0.029337698593735695, -0.008754287846386433, -0.06771089136600494, -0.0514838807284832, -0.04643137753009796, -0.04414484649896622, 0.00982840545475483, -0.021924905478954315, -0.005333707667887211, 0.048385996371507645, -0.00868974905461073, 0.05059877038002014, -0.01119294948875904, -0.04879167303442955, -0.0018301487434655428, -0.0061081787571311, -0.04112072288990021, 0.047832801938056946, -0.03538594767451286, -0.017066020518541336, 0.04056752845644951, -0.027899395674467087, -0.04573066905140877, 0.01743481680750847, -0.048164717853069305, -0.05196331441402435, -0.023584485054016113, -0.03332069143652916, 0.02799159474670887, 0.029005782678723335, -0.04414484649896622, 0.0847492516040802, 0.022349020466208458, 0.020228443667292595, 0.057716526091098785, 0.012898629531264305, 0.0035980630200356245, 0.028452588245272636, -0.011930541135370731, 0.027327761054039, 0.027678117156028748, 0.05262714624404907, 0.008795777335762978, 0.005402856972068548, -0.005937610752880573, -0.009717767126858234, 0.006094349082559347, -0.0013484093360602856, -0.03396608307957649, 0.009607127867639065, 0.017397938296198845, -0.008403931744396687, -0.0014728778041899204, -0.023455407470464706, 0.0028258971869945526, -0.005181579850614071, -0.02882138453423977, -0.021924905478954315, -0.004877323284745216, 0.026534851640462875, 0.030480965971946716, 0.03140295296907425, 0.014779487624764442, -0.016807863488793373, -0.0014117960818111897, 0.027032725512981415, -0.008671308867633343, -0.04222710803151131, -0.007850738242268562, 0.00701172836124897, 0.0525902658700943, 0.004420938435941935, 0.047611527144908905, -0.005140090361237526, 0.07884851843118668, -0.0017183574382215738, 0.032361824065446854, -0.023344768211245537, -0.006947189103811979, -0.02343696728348732, 0.016651125624775887, 0.013765299692749977, 0.020652558654546738, -0.038391631096601486, 0.029614295810461044, 0.003780155908316374, 0.005499666091054678, -0.03398452326655388, 0.06800592690706253, -0.04005121439695358, -0.05118884518742561, -0.007873788475990295, -0.0019142802339047194, 0.04908670857548714, -0.0032868916168808937, -0.016503607854247093, 0.037580281496047974, 0.03182706981897354, 0.05756900832056999, 0.009690106846392155, -0.022349020466208458, -0.04440300166606903, -0.0016399883897975087, -0.03887106850743294, -0.0012181783095002174, 0.007375914137810469, -0.011939761228859425, 0.014530550688505173, 0.00041345457429997623, 0.02990933135151863, 0.0021021354477852583, -0.008353223092854023, 0.018974538892507553, -0.012612813152372837, -0.031753309071063995, 0.015194383449852467, 0.051889557391405106, -0.02727244235575199, 0.03678737208247185, -0.02052348107099533, 0.07409105449914932, -0.009021664969623089, 0.02662705071270466, -0.0209107156842947, -0.02421143837273121, -0.023584485054016113, -0.031163237988948822, -0.03335757181048393, 0.004195051267743111, -0.019251136109232903, -0.030038410797715187, -0.017001481726765633, -0.018845461308956146, 0.022570297122001648, -0.013479483313858509, -0.010704295709729195, 0.013461043126881123, -0.07445985078811646, -0.014410692267119884, -0.02371356450021267, -0.04845975711941719, -0.00668442202731967, 0.020044047385454178, -0.01707524061203003, 0.03051784448325634, -0.03846539184451103, 0.007859958335757256, -0.023953281342983246, -0.007910667918622494, 0.04934486374258995, -0.07744710147380829, -0.03201146796345711, 0.04226398840546608, -0.0031071037519723177, -0.019804328680038452, 0.007426623720675707, 0.009242942556738853, -0.008196484297513962, -0.058269720524549484, -0.04643137753009796, 0.046025704592466354, 0.036031339317560196, 0.035054031759500504, -0.051889557391405106, 0.010003583505749702, 0.03743276372551918, 0.03968241810798645, 0.0022404338233172894, 0.005172359757125378, 0.04340725392103195, 0.04429236426949501, 0.010778054594993591, 0.018845461308956146, 0.059966180473566055, 0.02338164858520031, -0.09610816091299057, -0.018614962697029114, 0.007076267618685961, -0.016144031658768654, 0.027254002168774605, 0.02546534314751625, 0.008791167289018631, 0.005324488040059805, -0.029761813580989838, 0.0007168466690927744, -0.03490651398897171, -0.08061873912811279, 0.028286630287766457, 0.0021228801924735308, -0.04576754570007324, -0.015185163356363773, -0.004974131938070059, 0.012492954730987549, 0.018236948177218437, 0.003422885201871395, -0.06855912506580353, 0.027696557343006134, 0.05539311468601227, 0.017739074304699898, -0.03711928799748421, -0.009551809169352055, -0.01237309630960226, 0.06686266511678696, 0.04466116055846214, -0.004715974908322096, -0.009187622927129269, -0.022810013964772224, 0.01743481680750847, 0.05801156535744667, -0.04373916983604431, 0.025705059990286827, -0.02338164858520031, -0.03776467964053154, 0.002133252564817667, 0.09485425800085068, -0.030941959470510483, 0.041268240660429, -0.052885305136442184, 0.007827688939869404, 0.030997278168797493, -0.007468113210052252, 0.004593811463564634, 0.1126302108168602, -0.006403215229511261, 0.00808123592287302, -0.029872452840209007, 0.013636221177875996, -0.08165136724710464, 0.002712953370064497, -0.05225834995508194, -0.04923422634601593, -0.03245402127504349, 0.004432463552802801, 0.01242841500788927, 0.03909234330058098, 0.006486194673925638, 0.0017828966956585646, 0.0423746258020401, 0.04687393456697464, 0.011902881786227226, 0.017646875232458115, 0.025336265563964844, 0.027917833998799324, 0.05745837092399597, -0.0020491210743784904, 0.04908670857548714, 0.030591603368520737, 0.06435485184192657, 0.05495056137442589, -0.05218459293246269, -0.013682320713996887, 0.023695124313235283, -0.028249751776456833, 0.010768834501504898, -0.020597239956259727, 0.02552066370844841, 0.05056189000606537, -0.058490999042987823, 0.06634634733200073, -0.014336933381855488, -0.043444134294986725, -0.03182706981897354, 0.012972389347851276, 0.0033583459444344044, 0.03571786358952522, 0.005983710289001465, 0.036031339317560196, -0.03228806331753731, 0.006559953559190035, -0.004070582799613476, 0.04082568362355232, 0.019878089427947998, -0.0648711621761322, 0.008219534531235695 ]
18,489
fs.base
open
Open a file. Arguments: path (str): A path to a file on the filesystem. mode (str): Mode to open the file object with (defaults to *r*). buffering (int): Buffering policy (-1 to use default buffering, 0 to disable buffering, 1 to select line buffering, of any positive integer to indicate a buffer size). encoding (str): Encoding for text files (defaults to ``utf-8``) errors (str, optional): What to do with unicode decode errors (see `codecs` module for more information). newline (str): Newline parameter. **options: keyword arguments for any additional information required by the filesystem (if any). Returns: io.IOBase: a *file-like* object. Raises: fs.errors.FileExpected: If the path is not a file. fs.errors.FileExists: If the file exists, and *exclusive mode* is specified (``x`` in the mode). fs.errors.ResourceNotFound: If the path does not exist.
def open( self, path, # type: Text mode="r", # type: Text buffering=-1, # type: int encoding=None, # type: Optional[Text] errors=None, # type: Optional[Text] newline="", # type: Text **options # type: Any ): # type: (...) -> IO """Open a file. Arguments: path (str): A path to a file on the filesystem. mode (str): Mode to open the file object with (defaults to *r*). buffering (int): Buffering policy (-1 to use default buffering, 0 to disable buffering, 1 to select line buffering, of any positive integer to indicate a buffer size). encoding (str): Encoding for text files (defaults to ``utf-8``) errors (str, optional): What to do with unicode decode errors (see `codecs` module for more information). newline (str): Newline parameter. **options: keyword arguments for any additional information required by the filesystem (if any). Returns: io.IOBase: a *file-like* object. Raises: fs.errors.FileExpected: If the path is not a file. fs.errors.FileExists: If the file exists, and *exclusive mode* is specified (``x`` in the mode). fs.errors.ResourceNotFound: If the path does not exist. """ validate_open_mode(mode) bin_mode = mode.replace("t", "") bin_file = self.openbin(path, mode=bin_mode, buffering=buffering) io_stream = iotools.make_stream( path, bin_file, mode=mode, buffering=buffering, encoding=encoding or "utf-8", errors=errors, newline=newline, **options ) return io_stream
(self, path, mode='r', buffering=-1, encoding=None, errors=None, newline='', **options)
[ 0.028811994940042496, -0.06963055580854416, -0.05246756598353386, -0.0033215656876564026, 0.029150739312171936, -0.028228605166077614, 0.007941647432744503, 0.03033634088933468, 0.023467380553483963, -0.029094280675053596, 0.037581682205200195, 0.027287650853395462, -0.03453299403190613, 0.037111204117536545, 0.006102083250880241, 0.04057391360402107, -0.01784047856926918, -0.03176658973097801, -0.0726039707660675, 0.03895547240972519, 0.017021847888827324, 0.02181130088865757, -0.01322039682418108, -0.011846604757010937, 0.02676071785390377, 0.04813918098807335, -0.05705941841006279, -0.009785915724933147, -0.013954340480268002, -0.04023516923189163, 0.037638138979673386, -0.0347023643553257, 0.008910829201340675, -0.0107268700376153, -0.03058098815381527, -0.013530910946428776, -0.01118793711066246, 0.018772022798657417, 0.022771073505282402, -0.05314505100250244, -0.027871042490005493, -0.009480106644332409, 0.03558686003088951, 0.010764507576823235, -0.054725855588912964, -0.024013131856918335, -0.03918130323290825, -0.009795325808227062, -0.01682424731552601, 0.029865862801671028, 0.00017716389265842736, 0.004925891291350126, 0.007362960837781429, -0.028642624616622925, -0.06311915814876556, 0.03888019919395447, -0.03888019919395447, 0.024389514699578285, -0.03865436837077141, -0.037788692861795425, -0.012589957565069199, 0.008388600312173367, 0.058941327035427094, -0.016852477565407753, -0.025669211521744728, -0.019091947004199028, -0.046746570616960526, -0.05156425014138222, 0.010350488126277924, 0.037920426577329636, 0.06029629707336426, 0.04791335016489029, 0.010209345258772373, -0.013737920671701431, 0.028868453577160835, 0.051187869161367416, -0.07049623131752014, 0.050660934299230576, 0.06274277716875076, 0.0019042545463889837, 0.028021594509482384, -0.005843321327120066, -0.004551862366497517, -0.009301325306296349, 0.01718180999159813, -0.06262986361980438, 0.04900485649704933, 0.0036814804188907146, 0.027118278667330742, -0.01128203235566616, 0.018517963588237762, 0.009691820479929447, -0.021002082154154778, -0.025405744090676308, 0.018649697303771973, -0.05634429305791855, 0.0023970790207386017, 0.002446478931233287, -0.029131919145584106, 0.018452098593115807, -0.09605252742767334, -0.008073381148278713, -0.014415407553315163, -0.00874145794659853, 0.018329773098230362, 0.0096306586638093, 0.01733236387372017, 0.018875526264309883, 0.027776947245001793, -0.04956942796707153, -0.041928887367248535, 0.016720743849873543, 0.021152634173631668, 0.041063208132982254, -0.06131253018975258, -0.0015513970283791423, 0.006445531267672777, -0.0215478353202343, -0.02282753214240074, -0.009461287409067154, -0.033441487699747086, 0.01540340855717659, 0.0005501637351699173, 0.013295672833919525, 0.10531151294708252, 0.02700536511838436, -0.037958063185214996, -0.03366731479763985, 0.06462468206882477, -0.01105620339512825, 0.028981367126107216, -0.03069390170276165, 0.05736052244901657, 0.020832709968090057, 0.007569970563054085, -0.007353551220148802, 0.016146762296557426, 0.04825209453701973, -0.03569977357983589, 0.10418237000703812, 0.08069617301225662, -0.06985638290643692, 0.0024323647376149893, -0.02576330676674843, -0.02265815995633602, 0.02702418342232704, 0.05645721033215523, -0.103730708360672, -0.004949415102601051, 0.07576557248830795, 0.06526453047990799, -0.05446238815784454, -0.019948214292526245, 0.08528802543878555, 0.04780043661594391, -0.037544045597314835, 0.014377769082784653, -0.014123711735010147, 0.003258051350712776, 0.02151019684970379, -0.032444074749946594, 0.03801451995968819, 0.0008350962307304144, 0.0079557616263628, -0.012354719452559948, 0.03650899603962898, -0.09913885593414307, -0.019534194841980934, 0.0649634301662445, -0.09876247495412827, 0.004805919714272022, 0.011338489130139351, -0.037167660892009735, 0.0022912216372787952, -0.023241551592946053, -0.01341799646615982, -0.020907986909151077, 0.017511144280433655, 0.02271461673080921, -0.01770874485373497, -0.004634195938706398, -0.04828973114490509, -0.0425310954451561, -0.0449775755405426, 0.0038814330473542213, 0.06688297539949417, -0.012796967290341854, -0.012382947839796543, 0.06135016679763794, 0.008896715007722378, 0.0013902587816119194, 0.01784047856926918, 0.01294752024114132, -0.01617499068379402, -0.05811328813433647, -0.045542147010564804, -0.0037520520854741335, -0.029941139742732048, -0.0029734130948781967, 0.1059890016913414, -0.005603378172963858, 0.08001868426799774, 0.023599112406373024, 0.046219635754823685, -0.03142784535884857, 0.03906838968396187, 0.029658854007720947, -0.014293082989752293, -0.016664285212755203, 0.05386017635464668, -0.027287650853395462, -0.06398483365774155, -0.027457023039460182, 0.024577705189585686, 0.036659546196460724, 0.04509048908948898, -0.04802626371383667, 0.05404836684465408, -0.05404836684465408, 0.0449775755405426, 0.08762158453464508, 0.033422667533159256, -0.06040921434760094, 0.01358736865222454, 0.009211934171617031, -0.001292634871788323, 0.03137138858437538, 0.0006586674135178328, -0.02124672941863537, 0.0367724634706974, 0.015111712738871574, 0.014547140337526798, 0.023881400004029274, 0.013530910946428776, -0.029094280675053596, -0.001037401263602078, 0.004921186715364456, -0.004615376703441143, -0.10719341784715652, -0.02644079364836216, 0.013493272475898266, -0.04095029458403587, -0.010388126596808434, 0.03607615455985069, -0.051150232553482056, -0.0798681303858757, -0.04433772712945938, 0.009889421053230762, 0.004142547491937876, -0.028811994940042496, 0.027325289323925972, 0.04919304698705673, -0.04704767465591431, -0.005975054576992989, 0.009611839428544044, -0.00444600498303771, -0.03558686003088951, -0.09620308130979538, 0.01332390122115612, 0.02713709883391857, -0.016485504806041718, 0.0016866590594872832, -0.0036861852277070284, 0.0027358222287148237, 0.040875017642974854, -0.04764988273382187, -0.059392984956502914, -0.03391196206212044, 0.036979470402002335, -0.025499839335680008, 0.007099493872374296, 0.04889194294810295, -0.002992232097312808, 0.01522462721914053, -0.03014814853668213, -0.03140902891755104, 0.03820271044969559, 0.01744527742266655, 0.03043043613433838, 0.024765895679593086, -0.046219635754823685, 0.050510384142398834, -0.018019258975982666, -0.01115970779210329, -0.004337795544415712, 0.009983516298234463, -0.05408600717782974, 0.018094535917043686, -0.03171013295650482, -0.004761224612593651, 0.06296860426664352, 0.029000185430049896, -0.007170065306127071, 0.037412311881780624, 0.07783567160367966, 0.023222731426358223, -0.06406011432409286, -0.0447893850505352, 0.05273103341460228, -0.11088195443153381, 0.010548088699579239, -0.009785915724933147, 0.009258981794118881, 0.002481764880940318, -0.0038437950424849987, -0.05145133659243584, -0.003375670639798045, -0.0256503913551569, -0.03229352459311485, 0.05698414146900177, 0.029715310782194138, -0.06917890161275864, 0.014057844877243042, -0.001120910863392055, -0.021020900458097458, 0.0004343088367022574, -0.0076499516144394875, -0.010115250013768673, 0.04008461907505989, 0.0018701450899243355, -0.0017395877512171865, 0.019496556371450424, 0.01759582944214344, -0.03566213697195053, -0.03504110872745514, -0.012288852594792843, 0.06816267222166061, 0.03120201826095581, 0.004029633477330208, 0.023392103612422943, -0.01712535321712494, 0.05201590806245804, 0.028755538165569305, 0.003975528292357922, -0.0813736543059349, 0.016570189967751503, 0.008548562414944172, -0.03052453137934208, 0.04249345883727074, -0.01328626275062561, 0.068275585770607, 0.015158760361373425, -0.017774611711502075, -0.016739562153816223, -0.024935267865657806, -0.010557497851550579, 0.03204887732863426, -0.01714417152106762, 0.06217820569872856, -0.014528322033584118, 0.02677953615784645, -0.03940713033080101, -0.04716058820486069, -0.08235225081443787, -0.06255459040403366, -0.020023489370942116, -0.0112914415076375, 0.0022606407292187214, 0.0154410470277071, -0.010764507576823235, -0.04490229859948158, 0.012759328819811344, -0.03490937501192093, -0.01137612760066986, -0.027814585715532303, -0.020569242537021637, 0.03970823809504509, 0.07049623131752014, -0.04411190003156662, 0.03509756550192833, 0.017642877995967865, -0.02999759651720524, -0.0425310954451561, 0.06695824861526489, 0.01318275835365057, 0.019835298880934715, 0.04723586514592171, -0.042004164308309555, -0.03035515919327736, 0.023824941366910934, 0.03255699202418327, 0.024709438905119896, -0.007353551220148802, -0.00799340009689331, -0.02128436788916588, -0.006671360228210688, -0.03214297071099281, 0.00277346046641469, 0.018593240529298782, -0.03044925443828106, 0.021058538928627968, 0.003474470693618059, 0.0600704699754715, 0.01299456786364317, -0.024295419454574585, -0.011790147051215172, 0.09048208594322205, 0.019854119047522545, 0.02655370719730854, 0.04746169224381447, -0.00860972423106432, 0.02713709883391857, -0.007419418077915907, 0.037694595754146576, -0.018894346430897713, 0.046708930283784866, 0.05679595097899437, -0.003500347025692463, 0.011649004183709621, -0.027983956038951874, 0.001665487652644515, 0.005843321327120066, -0.03918130323290825, 0.0018195688026025891, 0.010011744685471058, 0.014396588318049908, -0.022959263995289803, -0.03090091235935688, 0.033027466386556625, -0.01513994112610817, -0.0021806596778333187, 0.017153581604361534, -0.014340130612254143, 0.002728765131905675, 0.0220183115452528, -0.01086801290512085, 0.028680261224508286, 0.027776947245001793, 0.03404369577765465, 0.020945623517036438, -0.02627142146229744, -0.00647376012057066, -0.01806630752980709, 0.002926365239545703, -0.01577978953719139, -0.029715310782194138, -0.055177513509988785, -0.02625260129570961, 0.046257272362709045, -0.009489515796303749, 0.0529945008456707, -0.000658079341519624, 0.06067268177866936, 0.03091973066329956, -0.0541236437857151, -0.04701003432273865, 0.00855326745659113, 0.0191672220826149, 0.09025625884532928, 0.007537037134170532, 0.028830815106630325, -0.023580294102430344, 0.06086087226867676, 0.020832709968090057, -0.07008221745491028, -0.04091265797615051, 0.01328626275062561, -0.012288852594792843, -0.002228883560746908, -0.029169557616114616, 0.01132907997816801, 0.028793176636099815, 0.042079441249370575, -0.12586194276809692, 0.02222532033920288, -0.019270727410912514, -0.0036791281308978796, 0.029037823900580406, 0.005631606560200453, -0.04068682715296745, 0.005975054576992989, 0.006332616787403822, -0.03840972110629082, 0.010585726238787174, 0.07881426066160202, -0.009738868102431297, -0.017454687505960464, -0.006774865090847015, 0.00039814095362089574, -0.03199241682887077, 0.031258475035429, -0.07132427394390106, -0.01540340855717659, 0.016927752643823624, 0.004231938160955906, -0.0217360258102417, 0.03978351131081581, 0.015996208414435387, -0.014396588318049908, 0.015337541699409485, 0.0613878034055233, 0.03948240727186203, -0.03970823809504509, -0.03588796406984329, 0.023824941366910934, 0.07264161109924316, -0.012834605760872364, -0.006643131375312805, -0.08513747155666351, -0.0022030072286725044, -0.005848025903105736, -0.03963296115398407, 0.0054763490334153175, 0.023486198857426643, -0.008092199452221394, 0.04053627699613571, -0.01323921512812376, -0.08114782720804214, 0.04102557152509689, -0.04015989601612091, -0.00439895736053586, 0.004683596082031727, -0.013916702009737492, 0.0046200817450881, -0.00896728690713644, 0.009814145043492317, -0.0014937636442482471, -0.006680769845843315, -0.04076210409402847, -0.005984464194625616, 0.027362927794456482, 0.00763113284483552, 0.014405997470021248, -0.05856494605541229, -0.018696745857596397, -0.05705941841006279, 0.04286983981728554, -0.032651085406541824, 0.04430009052157402, 0.0017348829424008727, 0.03346030414104462, -0.04524104297161102, -0.018724974244832993, 0.029414204880595207, 0.033309753984212875, 0.018583830446004868, -0.03462708741426468, 0.04057391360402107, -0.04904249683022499, 0.029602397233247757, 0.01693716272711754, 0.0695929229259491, -0.050811488181352615, 0.00034844683250412345, 0.041514866054058075, -0.04049863666296005, 0.0026393744628876448, -0.0258385818451643, 0.1033543273806572, -0.04083738103508949, -0.020625701174139977, -0.06880252063274384, 0.0109150605276227, 0.0446011945605278, 0.0038061568047851324, 0.020738614723086357, 0.041063208132982254, -0.029903501272201538, -0.009475401602685452, -0.016438458114862442, 0.01899784989655018, 0.02203712984919548, -0.06872723996639252, -0.008557971566915512, 0.004387195687741041, 0.03502228856086731, 0.07531391829252243, 0.005434006452560425, 0.03044925443828106, -0.006318502593785524, 0.020117584615945816, 0.032368797808885574, -0.006501988507807255, -0.01541281770914793, 0.041966523975133896, -0.0031286703888326883, -0.01123498473316431, 0.0385226346552372, 0.009691820479929447, -0.010171706788241863, -0.025029363110661507, -0.0436602421104908, -0.06172654777765274, -0.02137846313416958, 0.0383344441652298, 0.04813918098807335, -0.05152661353349686, 0.02629023976624012, -0.037732236087322235, -0.018659107387065887, 0.01099974662065506, -0.07791094481945038, 0.04757460951805115, -0.04317094385623932, -0.0007786389905959368, 0.025292828679084778, 0.008492104709148407, -0.029809406027197838, 0.016410227864980698, -0.02179248258471489, -0.06786156445741653, -0.042380545288324356, -0.05807564780116081, 0.029658854007720947, -0.018536783754825592, 0.04877902939915657, 0.005335206165909767, 0.06240403652191162, -0.03579387068748474, 0.06116197630763054, -0.002293574158102274, -0.01682424731552601, 0.015619827434420586, 0.017736973240971565, 0.005377549212425947, 0.014114302583038807, 0.018226269632577896, 0.010077611543238163, 0.013577958568930626, -0.014951750636100769, -0.002319450257346034, -0.013662644661962986, 0.032820455729961395, 0.014603598043322563, -0.041815973818302155, 0.04317094385623932, -0.024841172620654106, -0.03807097673416138, 0.00896728690713644, -0.00666195061057806, -0.0003828504413831979, -0.009197819977998734, 0.001774873468093574, 0.03970823809504509, 0.004443652927875519, -0.03127729520201683, -0.011978337541222572, 0.037224121391773224, 0.04934360086917877, 0.04072446748614311, -0.054951682686805725, -0.03613261505961418, -0.0012091252719983459, -0.02627142146229744, -0.028228605166077614, -0.018433278426527977, -0.018950803205370903, 0.002611145842820406, 0.0850621908903122, -0.01517757959663868, 0.0356433168053627, -0.002190069295465946, -0.01799103058874607, -0.03171013295650482, 0.03603851795196533, -0.04520340636372566, 0.08927766233682632, -0.049908172339200974, 0.016786610707640648, 0.033046286553144455, 0.016429048031568527, -0.023655571043491364, 0.008111018687486649, 0.025368105620145798, -0.036810100078582764, -0.05145133659243584, 0.004039042629301548, -0.025010542944073677, 0.011394946835935116, 0.04919304698705673, -0.007781685329973698, 0.04682184383273125, -0.008111018687486649, 0.00763583742082119, 0.005871549714356661, 0.020851528272032738, 0.016052667051553726, 0.0022065360099077225, 0.021359644830226898, 0.0223946925252676, -0.016796018928289413, 0.018019258975982666, 0.0027170032262802124, -0.02649725042283535, 0.006901893764734268, -0.006544331554323435, -0.009776506572961807, 0.03667836636304855, -0.008332142606377602, -0.05306977778673172, 0.009611839428544044, 0.019684746861457825, -0.008675591088831425, -0.017925163730978966, -0.00661960756406188, -0.008101609535515308, 0.028172146528959274, 0.005979759152978659, 0.05608082562685013, -0.004490700550377369, 0.03155957907438278, -0.01757701113820076, 0.07245341688394547, -0.06507634371519089, -0.05156425014138222, -0.02246996946632862, -0.04102557152509689, 0.0030039940029382706, 0.006784274708479643, 0.0014902350958436728, 0.005269339308142662, 0.033686134964227676, 0.0183862317353487, -0.04042335972189903, 0.07463642954826355, 0.029771767556667328, -0.03487173467874527, 0.04279456287622452, -0.05291922390460968, -0.0217360258102417, -0.013766149058938026, -0.023298008367419243, -0.003890842664986849, -0.020700976252555847, -0.0008345081005245447, -0.028266241773962975, -0.06820030510425568, 0.036866556853055954, 0.04682184383273125, 0.01911076530814171, 0.03199241682887077, -0.021190272644162178, -0.045993804931640625, -0.054914046078920364, -0.0023676741402596235, -0.013794378377497196, -0.005603378172963858, -0.02262052148580551, 0.04249345883727074, 0.04456355795264244, -0.008115723729133606, 0.03929421678185463, -0.05404836684465408, -0.012279442511498928, 0.023505017161369324, -0.03876728191971779, 0.0642106682062149, 0.01834859326481819, -0.05344615876674652, 0.04448828101158142, -0.015657465904951096, -0.014660054817795753, 0.03985878825187683, 0.05254284292459488, 0.013163939118385315, -0.008299210108816624, -0.004645957611501217, -0.011526680551469326, 0.006454940885305405, 0.0022241787519305944, -0.08491164445877075, 0.0009650654392316937, 0.003568566171452403, 0.019684746861457825, -0.04467647150158882, 0.04317094385623932, -0.06334498524665833, 0.02162311039865017 ]
18,490
miarec_s3fs.s3fs
openbin
null
def openbin(self, path, mode="rb", buffering=-1, **options): _mode = Mode(mode) _mode.validate_bin() self.check() _path = self.validatepath(path) _key = self._path_to_key(_path) if _mode.create: def on_close_create(s3file): """Called when the S3 file closes, to upload data.""" try: s3file.raw.seek(0) with s3errors(path): self.client.upload_fileobj( s3file.raw, self._bucket_name, _key, ExtraArgs=self._get_upload_args(_key), ) finally: s3file.raw.close() try: dir_path = dirname(_path) if dir_path != "/": _dir_key = self._path_to_dir_key(dir_path) self._get_object(dir_path, _dir_key) except errors.ResourceNotFound: raise errors.ResourceNotFound(path) try: info = self._getinfo(path) except errors.ResourceNotFound: pass else: if _mode.exclusive: raise errors.FileExists(path) if info.is_dir: raise errors.FileExpected(path) s3file = S3File.factory( path, _mode.to_platform_bin(), on_close=on_close_create ) if _mode.appending: try: with s3errors(path): self.client.download_fileobj( self._bucket_name, _key, s3file.raw, ExtraArgs=self.download_args, ) except errors.ResourceNotFound: pass else: s3file.seek(0, os.SEEK_END) return s3file if self.strict: info = self.getinfo(path) if info.is_dir: raise errors.FileExpected(path) def on_close(s3file): """Called when the S3 file closes, to upload the data.""" try: if _mode.writing: s3file.raw.seek(0, os.SEEK_SET) with s3errors(path): self.client.upload_fileobj( s3file.raw, self._bucket_name, _key, ExtraArgs=self._get_upload_args(_key), ) finally: s3file.raw.close() s3file = S3File.factory( path, _mode.to_platform_bin(), on_close=on_close ) with s3errors(path): self.client.download_fileobj( self._bucket_name, _key, s3file.raw, ExtraArgs=self.download_args ) s3file.seek(0, os.SEEK_SET) return s3file
(self, path, mode='rb', buffering=-1, **options)
[ 0.017264947295188904, -0.0482315830886364, -0.11998678743839264, 0.03326386585831642, 0.02264556661248207, -0.04843578115105629, -0.007927990518510342, 0.049048375338315964, 0.00625356612727046, -0.02666826918721199, 0.02266598679125309, 0.0471697561442852, -0.020603585988283157, -0.0007459610933437943, -0.033876460045576096, 0.02268640510737896, 0.022298429161310196, -0.05149875581264496, -0.05974835529923439, 0.0653025433421135, -0.006171886809170246, 0.023809494450688362, -0.007146932650357485, 0.016846340149641037, 0.059176601469516754, 0.03753160685300827, -0.021154919639229774, 0.007688057608902454, 0.015661992132663727, -0.02783219702541828, 0.028689829632639885, 0.005298939999192953, 0.03593886271119118, 0.045250292867422104, -0.0049543557688593864, -0.04737395420670509, 0.03165069967508316, 0.03938980773091316, 0.01933755725622177, -0.00857121404260397, -0.035755082964897156, -0.00915317889302969, 0.029343262314796448, -0.031997837126255035, 0.04553617164492607, 0.029384102672338486, -0.006233145948499441, 0.034346114844083786, -0.03283505141735077, 0.009770877659320831, 0.023768655955791473, 0.051580432802438736, 0.008882615715265274, -0.04316747188568115, -0.016887180507183075, -0.008520164526998997, -0.017785651609301567, 0.035816341638565063, -0.07816702127456665, 0.014681841246783733, -0.0091633889824152, 0.010255848057568073, 0.052560582756996155, -0.06289300322532654, -0.051131196320056915, -0.02691330574452877, -0.06824299693107605, -0.05905408412218094, 0.01591723971068859, 0.027342122048139572, 0.03704153001308441, 0.024687547236680984, 0.007417494896799326, 0.02170625515282154, -0.03471367061138153, 0.008892825804650784, -0.03471367061138153, 0.04061499610543251, 0.04512777552008629, 0.03095642849802971, 0.020756734535098076, -0.06718116253614426, 0.032916728407144547, -0.02172667533159256, -0.010026125237345695, -0.0038389237597584724, 0.04745563119649887, -0.01826551742851734, 0.04153388738632202, 0.008229182101786137, -0.017295576632022858, 0.025177622213959694, -0.01687697134912014, -0.012343773618340492, 0.024034112691879272, -0.06468994915485382, -0.020889462903141975, -0.0205423254519701, -0.07106092572212219, 0.026321131736040115, -0.11083871126174927, -0.0457812063395977, 0.022053392603993416, -0.034141916781663895, 0.005737965926527977, -0.004415783099830151, -0.002235968830063939, -0.002243626397103071, -0.01286447886377573, -0.03289631009101868, 0.03207951784133911, -0.01285426877439022, 0.012047686614096165, 0.03477493301033974, -0.06714032590389252, -0.02858773060142994, 0.0076523227617144585, -0.010689768940210342, -0.027934296056628227, -0.012782799080014229, 0.026586588472127914, -0.035081230103969574, 0.0068457406014204025, -0.014130506664514542, 0.0821693018078804, 0.02595357596874237, 0.04606708511710167, 0.0011728627141565084, 0.025810636579990387, 0.02593315578997135, 0.025565598160028458, 0.026852047070860863, 0.006340350024402142, -0.006085102446377277, -0.023053962737321854, -0.0016067835967987776, 0.031099366024136543, 0.024238310754299164, -0.06493498384952545, 0.08903036266565323, 0.1180264875292778, -0.025912735611200333, 0.04128884896636009, -0.02360529638826847, -0.005477613303810358, 0.002413365989923477, 0.0008263640920631588, -0.08147503435611725, 0.014855409972369671, 0.031017687171697617, 0.03800126165151596, -0.02170625515282154, 0.01050599105656147, 0.09425783157348633, 0.038368817418813705, -0.07396054267883301, 0.008331281132996082, -0.014038617722690105, -0.030568450689315796, 0.020726105198264122, -0.00760637829080224, 0.03267168998718262, -0.014538902789354324, -0.014406174421310425, 0.005533767864108086, 0.035755082964897156, -0.07673763483762741, 0.02436082996428013, 0.05215218663215637, -0.020797573029994965, 0.009959761053323746, 0.0537857711315155, -0.041901443153619766, 0.04917089641094208, 0.023196900263428688, 0.05803309381008148, -0.041942283511161804, -0.027076665312051773, 0.03214077651500702, -0.049007538706064224, 0.0005794120370410383, -0.03218161687254906, 0.030527612194418907, -0.021583735942840576, 0.00980150792747736, 0.035755082964897156, 0.007897360250353813, -0.005732860881835222, 0.0774727463722229, -0.008770307525992393, -0.038858894258737564, 0.029363682493567467, 0.010751028545200825, 0.02193087339401245, -0.000019821571186184883, -0.004865019116550684, 0.0355917252600193, -0.0013234587386250496, -0.011486141942441463, 0.12260052561759949, -0.021808354184031487, 0.038368817418813705, 0.04030869901180267, -0.04533197358250618, -0.0019960361532866955, 0.05476592481136322, 0.021297859027981758, 0.00685084518045187, -0.02150205709040165, 0.05072280019521713, -0.007060148287564516, -0.011241103522479534, -0.024973424151539803, 0.027954716235399246, 0.016887180507183075, 0.02907780557870865, -0.040717095136642456, 0.010408996604382992, -0.02197171188890934, 0.02997627668082714, 0.04802738502621651, 0.003149755299091339, -0.04361670836806297, 0.026566170156002045, -0.00531425466760993, -0.0035555989015847445, 0.015325065702199936, -0.027321701869368553, -0.02599441446363926, 0.0032161197159439325, -0.008831566199660301, 0.0570937804877758, 0.03156902268528938, 0.0043723913840949535, -0.025198042392730713, -0.0007561710081063211, 0.011659709736704826, 0.0014306626981124282, -0.05958499759435654, -0.017846912145614624, 0.032487913966178894, -0.03759286552667618, -0.018449295312166214, 0.012915528379380703, -0.06591513752937317, -0.049252573400735855, 0.02691330574452877, 0.02883276715874672, -0.013773160055279732, -0.04012492299079895, 0.028261013329029083, 0.06268880516290665, -0.052764780819416046, -0.007412389852106571, 0.04390258714556694, -0.04036995768547058, 0.02619861252605915, -0.0915624126791954, -0.018724963068962097, 0.061300262808799744, -0.061790335923433304, -0.028526470065116882, 0.036245159804821014, -0.02856731042265892, 0.024707967415452003, 0.013048256747424603, -0.010286478325724602, -0.043371669948101044, 0.009316537529230118, 0.0468430370092392, -0.004303474444895983, 0.004683793522417545, -0.05978919565677643, 0.029710819944739342, -0.01500855851918459, -0.04320831224322319, 0.010822498239576817, -0.025443080812692642, -0.00004442903446033597, -0.018490135669708252, -0.031528182327747345, 0.047088075429201126, 0.04574036970734596, 0.0011537191458046436, -0.021604156121611595, 0.011782228946685791, -0.01667277328670025, 0.014222395606338978, 0.02268640510737896, -0.0023253054823726416, -0.019633645191788673, 0.04394342377781868, -0.0055490825325250626, -0.011761808767914772, 0.022257590666413307, 0.010240533389151096, -0.05235638469457626, -0.051131196320056915, 0.05341821536421776, -0.06518002599477768, -0.08061739802360535, 0.029241163283586502, 0.05174379050731659, 0.050926998257637024, 0.027668839320540428, -0.03855259716510773, 0.04181976616382599, -0.05235638469457626, -0.031099366024136543, 0.05803309381008148, -0.007381760515272617, -0.0202768687158823, 0.013027837499976158, 0.01772439293563366, -0.01973574422299862, 0.0030068166088312864, 0.03352932259440422, 0.02997627668082714, 0.014007987454533577, -0.0027107293717563152, -0.03207951784133911, -0.029669979587197304, 0.0002177581045543775, -0.02087925374507904, -0.004584246780723333, -0.01926608756184578, -0.021440798416733742, 0.042146481573581696, -0.044515181332826614, 0.02123660035431385, -0.04496441408991814, 0.0758800059556961, 0.02340109832584858, 0.044719379395246506, -0.04802738502621651, -0.0043085794895887375, -0.006207621190696955, -0.009117444045841694, 0.04271823540329933, 0.009260382503271103, 0.054888442158699036, 0.017070958390831947, -0.0029863968957215548, 0.01678508147597313, -0.06411819159984589, -0.0005481442203745246, 0.019296718761324883, 0.0020368758123368025, 0.03187531977891922, 0.03240623325109482, 0.009091919288039207, -0.054643403738737106, 0.006182096432894468, -0.000050411399570293725, -0.040043242275714874, -0.033161766827106476, 0.011251313611865044, -0.04435181990265846, 0.027117503806948662, -0.023217320442199707, -0.007284766063094139, -0.01063871942460537, -0.04279991611838341, -0.004885438829660416, -0.007800366263836622, 0.00963304378092289, 0.007458334788680077, 0.04271823540329933, -0.05211134999990463, -0.004778234753757715, 0.004510224796831608, -0.03218161687254906, -0.06869222968816757, 0.013752739876508713, 0.0355917252600193, 0.04798654839396477, 0.03430527448654175, -0.04680219665169716, 0.023911593481898308, -0.009541154839098454, 0.010378367267549038, 0.00044221646385267377, -0.011506561189889908, -0.002728596795350313, 0.024197472259402275, 0.025075523182749748, -0.004706765525043011, 0.01808173954486847, 0.028608150780200958, -0.04390258714556694, 0.0224617887288332, 0.02903696522116661, 0.049497611820697784, -0.035510044544935226, -0.0330800861120224, 0.027811776846647263, 0.07865709811449051, 0.014579742215573788, 0.028465211391448975, 0.04067625477910042, -0.03941022977232933, 0.014191766269505024, -0.023278580978512764, 0.0609327033162117, -0.01763250306248665, 0.011159424670040607, 0.025871895253658295, 0.03616347908973694, 0.026096513494849205, -0.0388997346162796, -0.006947839632630348, -0.008315966464579105, -0.04765982925891876, 0.0344686359167099, 0.005508243106305599, 0.042840756475925446, -0.027954716235399246, -0.049946848303079605, 0.004691450856626034, -0.003992072306573391, 0.009816822595894337, 0.025075523182749748, -0.015855981037020683, -0.013160565868020058, -0.0076523227617144585, -0.014977928251028061, 0.005840064957737923, -0.017877541482448578, 0.03140566498041153, 0.03583676367998123, 0.02483048476278782, 0.002272979822009802, -0.058686524629592896, -0.006238250993192196, -0.025688117370009422, 0.0183267779648304, -0.02176751382648945, 0.012435662560164928, 0.05754301697015762, 0.04606708511710167, 0.0018365064170211554, 0.013977358117699623, -0.02127743884921074, 0.014099877327680588, -0.016509413719177246, -0.025626858696341515, 0.0037342722062021494, 0.030895167961716652, 0.10242575407028198, 0.007999459281563759, 0.019766373559832573, -0.02215549163520336, 0.010842917487025261, -0.03738866746425629, -0.06828383356332779, -0.02595357596874237, 0.03214077651500702, -0.02834269218146801, -0.013834419660270214, -0.06954986602067947, 0.006416924297809601, 0.026076093316078186, 0.07592084258794785, -0.067875437438488, -0.02977207861840725, -0.0017037776997312903, -0.0001614440989214927, 0.015753882005810738, -0.009770877659320831, -0.057951413094997406, -0.0009661121293902397, -0.02713792398571968, -0.04557700827717781, 0.03589802235364914, 0.0769418329000473, -0.020246239379048347, 0.04271823540329933, 0.029384102672338486, -0.04151346907019615, -0.057992253452539444, -0.00892856065183878, -0.06350559741258621, -0.020113511011004448, 0.04365754872560501, -0.0015978498850017786, -0.032467491924762726, -0.0031880424357950687, 0.03046635165810585, 0.04655716195702553, 0.013099306263029575, 0.04067625477910042, 0.01804089918732643, -0.040247440338134766, 0.021890033036470413, -0.01841866597533226, 0.046393800526857376, -0.039594005793333054, -0.02670910768210888, -0.08049488067626953, -0.045005254447460175, -0.002876640297472477, -0.01500855851918459, -0.02481006644666195, -0.023952433839440346, -0.021563315764069557, 0.0275871604681015, -0.04602624475955963, -0.07187772542238235, 0.016101017594337463, -0.04508693516254425, -0.05141707509756088, 0.042636558413505554, -0.04324915260076523, 0.02525930106639862, -0.007744211703538895, 0.044515181332826614, 0.006707906723022461, -0.006074892822653055, -0.034591153264045715, -0.02240052819252014, 0.04345335066318512, -0.018010269850492477, 0.037633705884218216, -0.045005254447460175, -0.03491786867380142, -0.023727815598249435, 0.03189573809504509, -0.054847601801157, 0.021542897447943687, -0.000419563235482201, 0.0018160865874961019, -0.033692680299282074, -0.007121407892554998, 0.023441938683390617, 0.03479535132646561, 0.03091558814048767, -0.012527551501989365, 0.010934806428849697, -0.010597879998385906, -0.020358547568321228, 0.009959761053323746, 0.043820906430482864, 0.0020266659557819366, 0.0004667840257752687, -0.005656286608427763, 0.023441938683390617, -0.0034713672939687967, -0.038797635585069656, 0.06603765487670898, -0.07404222339391708, 0.015263806097209454, -0.03346806392073631, 0.09278760105371475, 0.0510086789727211, 0.04012492299079895, -0.012813429348170757, 0.027975136414170265, -0.08294525742530823, -0.019031260162591934, -0.019633645191788673, 0.006100417580455542, 0.05742049962282181, -0.06934566795825958, -0.014957509003579617, -0.00625356612727046, 0.021318279206752777, 0.03965526446700096, 0.056767065078020096, 0.05141707509756088, -0.03540794551372528, -0.019419236108660698, 0.08265937864780426, -0.0072490316815674305, -0.007458334788680077, 0.06518002599477768, -0.006222936324775219, -0.0443926602602005, 0.0036781178787350655, -0.006391399540007114, -0.03589802235364914, 0.021134501323103905, -0.06289300322532654, -0.041411370038986206, -0.03689859062433243, -0.010286478325724602, 0.025381820276379585, -0.022502627223730087, 0.014600162394344807, -0.012098736129701138, -0.012793009169399738, 0.009056184440851212, -0.041901443153619766, 0.0012315696803852916, -0.07894297689199448, 0.04394342377781868, 0.03418275713920593, 0.010689768940210342, -0.052764780819416046, 0.005370409227907658, -0.028689829632639885, 0.0034534998703747988, -0.012884898111224174, -0.04034953936934471, 0.05603194981813431, -0.027015404775738716, 0.07081589102745056, -0.10283415019512177, 0.05333653837442398, -0.004275396931916475, 0.03565298393368721, -0.042881596833467484, -0.015386324375867844, 0.02687246724963188, 0.020736314356327057, -0.014171346090734005, 0.04171766713261604, -0.04163598641753197, 0.0025907631497830153, 0.0016399658052250743, 0.016948439180850983, -0.03338638320565224, -0.02764841914176941, 0.003359058406203985, 0.03914476931095123, -0.09278760105371475, -0.007927990518510342, -0.003274826565757394, -0.01855139434337616, 0.020174769684672356, 0.005426563788205385, -0.008121978491544724, -0.006983574014157057, 0.06910062581300735, 0.018183838576078415, 0.07334794849157333, 0.008530374616384506, -0.02125701867043972, 0.07347046583890915, 0.01738746650516987, 0.03377436101436615, 0.03134440258145332, -0.08196510374546051, -0.0009080432937480509, 0.01335455384105444, -0.030772648751735687, -0.03095642849802971, 0.054847601801157, -0.00919912289828062, 0.013803789392113686, -0.03634725883603096, 0.0022168252617120743, -0.02570853754878044, -0.024136211723089218, 0.004015044774860144, 0.02105282060801983, -0.042146481573581696, 0.1047944501042366, -0.05272394418716431, 0.028730668127536774, -0.004528092220425606, 0.01441638357937336, -0.047333113849163055, -0.02617819234728813, 0.014201976358890533, -0.04810906574130058, -0.013272874988615513, -0.012527551501989365, -0.02595357596874237, 0.02338068000972271, 0.015284225344657898, 0.009459475986659527, 0.015794720500707626, -0.07155100256204605, -0.023319419473409653, -0.044065944850444794, 0.021093660965561867, 0.028015974909067154, -0.014804360456764698, 0.008254706859588623, 0.022727245464920998, 0.003479024628177285, -0.012721540406346321, 0.00955646950751543, 0.03218161687254906, 0.04275907576084137, -0.005595027003437281, 0.027280863374471664, -0.005107504315674305, -0.04316747188568115, -0.08122999221086502, 0.0055031380616128445, -0.023074382916092873, 0.010597879998385906, -0.02762799896299839, -0.06934566795825958, -0.030384672805666924, 0.049497611820697784, 0.04655716195702553, 0.015855981037020683, -0.013834419660270214, 0.03328428417444229, -0.02058316580951214, 0.043085794895887375, -0.04582204669713974, -0.04990600794553757, -0.005237680394202471, -0.013630221597850323, -0.009336956776678562, 0.045903727412223816, 0.02146121673285961, 0.008800936862826347, 0.003813399001955986, 0.0008971953066065907, -0.047618988901376724, 0.02691330574452877, 0.08502807468175888, -0.02834269218146801, 0.013813999481499195, -0.01951112598180771, 0.005911534186452627, -0.0405537374317646, -0.03310050815343857, -0.03265127167105675, 0.01406924705952406, 0.001343878568150103, -0.06228041276335716, -0.07298038899898529, 0.053254857659339905, -0.01875559240579605, 0.05321401730179787, 0.040043242275714874, -0.023952433839440346, -0.04206480458378792, -0.022318849340081215, 0.010368157178163528, -0.004025254398584366, 0.0361226387321949, -0.020930303260684013, 0.06656856834888458, 0.07179604470729828, -0.032487913966178894, 0.03163028135895729, -0.0430041141808033, -0.0034050028771162033, 0.05791057273745537, -0.044760216027498245, 0.05321401730179787, 0.024462928995490074, -0.02552475966513157, 0.010955226607620716, 0.016039758920669556, -0.005845170002430677, 0.02666826918721199, 0.04692471772432327, 0.014732890762388706, -0.029343262314796448, -0.08245518058538437, 0.05260142311453819, -0.0017037776997312903, 0.011629080399870872, -0.04537281021475792, -0.006656857207417488, -0.010118014179170132, 0.02215549163520336, 0.011332993395626545, 0.05742049962282181, -0.028424371033906937, 0.013303504325449467 ]
18,491
fs.base
opendir
Get a filesystem object for a sub-directory. Arguments: path (str): Path to a directory on the filesystem. factory (callable, optional): A callable that when invoked with an FS instance and ``path`` will return a new FS object representing the sub-directory contents. If no ``factory`` is supplied then `~fs.subfs_class` will be used. Returns: ~fs.subfs.SubFS: A filesystem representing a sub-directory. Raises: fs.errors.ResourceNotFound: If ``path`` does not exist. fs.errors.DirectoryExpected: If ``path`` is not a directory.
def opendir( self, # type: _F path, # type: Text factory=None, # type: Optional[_OpendirFactory] ): # type: (...) -> SubFS[FS] # FIXME(@althonos): use generics here if possible """Get a filesystem object for a sub-directory. Arguments: path (str): Path to a directory on the filesystem. factory (callable, optional): A callable that when invoked with an FS instance and ``path`` will return a new FS object representing the sub-directory contents. If no ``factory`` is supplied then `~fs.subfs_class` will be used. Returns: ~fs.subfs.SubFS: A filesystem representing a sub-directory. Raises: fs.errors.ResourceNotFound: If ``path`` does not exist. fs.errors.DirectoryExpected: If ``path`` is not a directory. """ from .subfs import SubFS _factory = factory or self.subfs_class or SubFS if not self.getinfo(path).is_dir: raise errors.DirectoryExpected(path=path) return _factory(self, path)
(self, path, factory=None)
[ 0.02289665676653385, -0.03295817971229553, -0.024618210271000862, -0.018688416108489037, 0.01790415309369564, 0.024541696533560753, 0.054056767374277115, -0.022169778123497963, -0.05099622905254364, 0.004557333886623383, 0.04667321965098381, 0.002673189388588071, -0.006144988350570202, 0.00964547973126173, -0.019625704735517502, 0.03364679962396622, 0.005231608636677265, -0.024637337774038315, -0.012261283583939075, 0.005427674390375614, -0.00800522230565548, 0.040169574320316315, 0.044569097459316254, -0.011821331456303596, 0.015417465008795261, 0.019836118444800377, -0.037223804742097855, 0.01009021420031786, -0.003957181237637997, -0.04636716470122337, -0.005422892514616251, 0.050307609140872955, -0.016163470223546028, -0.017339864745736122, -0.06105775013566017, 0.007474409881979227, -0.0208307933062315, -0.01209869235754013, 0.030299335718154907, 0.014719279482960701, -0.04541074484586716, -0.030050667002797127, 0.026492789387702942, 0.02899860590696335, -0.01855451613664627, -0.011964794248342514, 0.003997828811407089, -0.009363336488604546, 0.020811663940548897, 0.03381895646452904, 0.009918059222400188, 0.03898361325263977, -0.041814614087343216, -0.04242672026157379, 0.009497234597802162, 0.03031846322119236, 0.01592436619102955, -0.018200641497969627, 0.04101122170686722, -0.018181513994932175, -0.004576461855322123, 0.018009359017014503, 0.0277935191988945, 0.034354548901319504, -0.042464978992938995, -0.003947617020457983, -0.06021610274910927, -0.005011632572859526, -0.02714315429329872, 0.04460735619068146, -0.04361267760396004, 0.06798221915960312, 0.0204290971159935, -0.007866540923714638, 0.03148529306054115, 0.06033087149262428, -0.004705578554421663, -0.010597116313874722, 0.05508970096707344, -0.02811870165169239, -0.014518431387841702, -0.003244649386033416, -0.023738304153084755, 0.061019495129585266, 0.026531046256422997, 0.0072113946080207825, 0.017225096002221107, -0.040054801851511, 0.020639508962631226, 0.01192653737962246, 0.015207052230834961, -0.018535388633608818, -0.010099777951836586, -0.008980768732726574, -0.04831825941801071, -0.02517293207347393, -0.02419738471508026, 0.026684073731303215, 0.005805459804832935, 0.023738304153084755, 0.014269762672483921, 0.02894122153520584, -0.03858191892504692, -0.011907408945262432, -0.009994572028517723, 0.001094501349143684, -0.023260096088051796, 0.019424857571721077, 0.03990177437663078, -0.03774027153849602, -0.02597632445394993, 0.06932120770215988, 0.04778266325592995, 0.08477693051099777, -0.08898516744375229, 0.027678748592734337, 0.023470507934689522, -0.02322183921933174, -0.05704079195857048, -0.06549553573131561, -0.0187936220318079, 0.04625239223241806, 0.025765912607312202, 0.031906116753816605, 0.07658998668193817, 0.05516621470451355, -0.010300626046955585, -0.07995657622814178, 0.04525771737098694, 0.010291062295436859, 0.04567854478955269, 0.014394097030162811, 0.03940443694591522, -0.013619397766888142, 0.039251409471035004, 0.03888797387480736, 0.03332161903381348, 0.0010263564763590693, -0.04663496091961861, 0.04460735619068146, 0.013915888033807278, -0.029878510162234306, -0.013925451785326004, 0.05658171325922012, -0.0016749277710914612, 0.040972962975502014, 0.0024161520414054394, -0.015905238687992096, 0.004339748527854681, 0.0654190182685852, -0.028749937191605568, 0.006250194273889065, 0.09694256633520126, 0.06591635942459106, 0.02264798805117607, -0.07046891003847122, -0.05076668784022331, -0.0028453448321670294, 0.020065657794475555, 0.03496665507555008, -0.036477796733379364, -0.02500077709555626, -0.011543970555067062, 0.020543867722153664, -0.01540790032595396, 0.04430130124092102, -0.02532595954835415, -0.05042237788438797, -0.0002982829755637795, 0.024331284686923027, 0.018200641497969627, 0.018171949312090874, -0.007938272319734097, -0.011888280510902405, -0.11377553641796112, -0.03242258355021477, 0.009994572028517723, 0.061019495129585266, 0.01897534169256687, -0.05191439017653465, 0.001555375405587256, -0.005700253881514072, -0.04835651442408562, -0.012567337602376938, -0.009262911975383759, 0.03774027153849602, 0.006977072451263666, 0.020199555903673172, 0.07127229869365692, -0.004574071150273085, -0.0825580358505249, 0.012242155149579048, -0.0025201623793691397, -0.0580354705452919, -0.05788244307041168, 0.0009719601948745549, -0.0384097620844841, -0.04047562554478645, -0.03282427787780762, 0.10780747979879379, -0.016938170418143272, 0.09977357089519501, 0.03663082420825958, -0.03487101569771767, -0.06358269602060318, 0.016239983960986137, -0.039672236889600754, 0.03366592898964882, 0.00023805852106306702, 0.0017323128413408995, -0.023967845365405083, 0.016067828983068466, 0.020467353984713554, 0.013963708654046059, 0.009898930788040161, -0.0024866878520697355, -0.024790365248918533, 0.025364216417074203, 0.0008918601670302451, -0.01091273408383131, 0.010625808499753475, 0.031982630491256714, -0.040819939225912094, -0.02075427956879139, -0.022858399897813797, -0.049465958029031754, -0.012203899212181568, -0.02107946202158928, -0.005308122374117374, -0.032805152237415314, -0.016345189884305, -0.04036085680127144, 0.05845629423856735, -0.05436282232403755, -0.007976529188454151, -0.01960657723248005, 0.012653415091335773, -0.03129401057958603, -0.05325337499380112, -0.008550380356609821, -0.0071635739877820015, -0.05531924217939377, 0.040666911751031876, 0.03766375780105591, -0.025765912607312202, 0.016727758571505547, -0.027181411162018776, 0.03423978015780449, 0.018286719918251038, -0.000064109917730093, -0.030949698761105537, 0.024235641583800316, -0.06013958901166916, 0.010654500685632229, 0.0183823611587286, -0.010549294762313366, -0.03334074467420578, 0.03238432854413986, -0.025058161467313766, 0.025211188942193985, -0.003330727107822895, 0.015101846307516098, -0.061822887510061264, 0.03443106263875961, -0.017865896224975586, -0.05114925652742386, -0.024312155321240425, -0.05019283667206764, 0.05784418433904648, -0.02280101552605629, 0.0677909329533577, 0.018831878900527954, 0.01944398693740368, -0.012921212241053581, 0.0224758330732584, 0.0026253685355186462, -0.07857933640480042, -0.026416275650262833, 0.05459236353635788, 0.024503439664840698, -0.04445432871580124, 0.005901101510971785, -0.08110427856445312, -0.00621193740516901, -0.011075325310230255, 0.052411727607250214, 0.015388771891593933, 0.023087941110134125, -0.011763946153223515, 0.022208034992218018, 0.03569353371858597, -0.013753296807408333, -0.03024194948375225, 0.010128471069037914, 0.05042237788438797, 0.02704751305282116, -0.02287752740085125, -0.007335728965699673, 0.035521380603313446, -0.030184565111994743, -0.061899397522211075, 0.01523574534803629, -0.013982837088406086, 0.04644367843866348, -0.0010915125021710992, -0.07131055742502213, 0.024254770949482918, 0.053176864981651306, -0.007378768175840378, 0.05975702032446861, -0.0220741368830204, -0.009329861961305141, 0.051608338952064514, -0.022533217445015907, 0.046214137226343155, -0.009927622973918915, -0.00021459638082887977, -0.00431105587631464, -0.03806545212864876, 0.001976199448108673, -0.036975134164094925, 0.0572320781648159, -0.07942098379135132, 0.023260096088051796, -0.01619216427206993, 0.05971876531839371, -0.003746769158169627, 0.01508271787315607, 0.014126299880445004, 0.01357157714664936, -0.016364319249987602, -0.00019367472850717604, 0.018506696447730064, -0.004332575481384993, -0.016852091997861862, 0.047438353300094604, 0.0694742351770401, 0.015140103176236153, 0.030280206352472305, 0.04996329918503761, 0.021595926955342293, 0.007637001108378172, -0.03997828811407089, -0.009994572028517723, 0.014537559822201729, -0.015800032764673233, 0.040093060582876205, 0.02926640398800373, 0.07199917733669281, 0.009554619900882244, 0.03366592898964882, 0.01644083298742771, -0.022839272394776344, -0.07123403996229172, -0.025211188942193985, 0.011754382401704788, 0.007986093871295452, 0.06847956031560898, -0.03343638777732849, -0.014231505803763866, 0.04602285474538803, 0.018669286742806435, -0.023967845365405083, -0.014690586365759373, -0.055854834616184235, -0.03613348677754402, -0.027277052402496338, 0.0021005338057875633, -0.02542160078883171, -0.002804697025567293, 0.01970221847295761, -0.023107068613171577, 0.01903272606432438, -0.03230781480669975, 0.07528925687074661, 0.022743629291653633, 0.036975134164094925, -0.05493667349219322, -0.009908494539558887, 0.0367838516831398, -0.005829370114952326, 0.0027712222654372454, 0.027009256184101105, 0.011304865591228008, 0.028252599760890007, 0.03749160096049309, -0.0035913512110710144, 0.005322468467056751, 0.040858194231987, -0.03557876497507095, -0.041164249181747437, 0.003627216909080744, 0.06121077761054039, 0.01684252731502056, -0.030586261302232742, -0.04755312204360962, 0.03793155401945114, -0.029801998287439346, 0.04847128316760063, -0.026014581322669983, 0.0265501756221056, 0.004189112689346075, 0.019233573228120804, 0.032805152237415314, -0.016000879928469658, 0.013361165300011635, 0.08431784808635712, 0.029974153265357018, -0.03873494639992714, -0.07318513840436935, 0.04112599045038223, -0.025287702679634094, -0.06285581737756729, 0.03401023894548416, -0.0163547545671463, 0.012242155149579048, -0.013925451785326004, 0.04288580268621445, 0.05264126881957054, -0.011170966550707817, -0.04101122170686722, -0.061172522604465485, -0.026033708825707436, -0.0014944038121029735, 0.024732979014515877, 0.05248824134469032, -0.020161299034953117, 0.03357028588652611, 0.028654295951128006, 0.014241070486605167, -0.01364809088408947, 0.007268779911100864, -0.039021871984004974, 0.011897845193743706, 0.01242387481033802, -0.052909065037965775, -0.0768195241689682, -0.034775372594594955, -0.05214393138885498, 0.04323011264204979, -0.004629065282642841, -0.0022738848347216845, 0.05122577026486397, 0.07222871482372284, -0.009138577617704868, -0.062243711203336716, 0.012586466036736965, 0.003643954172730446, 0.0200274009257555, -0.038945358246564865, 0.051034487783908844, -0.01397327333688736, 0.033149462193250656, 0.04342139512300491, -0.05034586414694786, -0.02360440604388714, 0.019970016553997993, 0.02984025329351425, -0.020811663940548897, -0.023738304153084755, 0.017665047198534012, -0.0019379428122192621, 0.040016546845436096, -0.025555498898029327, 0.008119991980493069, -0.04288580268621445, 0.05654345452785492, -0.035827431827783585, 0.04028434306383133, -0.050957974046468735, 0.04652019217610359, 0.004021739587187767, -0.052832551300525665, 0.021270744502544403, 0.05049889162182808, -0.014432353898882866, -0.027353566139936447, -0.09908494353294373, -0.040858194231987, -0.03230781480669975, -0.0004423435020726174, -0.008277800865471363, -0.048088718205690384, -0.02092643454670906, -0.02744920738041401, -0.04954247176647186, 0.016775578260421753, 0.08454738557338715, -0.004822739865630865, -0.037893299013376236, 0.03854366019368172, 0.03655431047081947, -0.04632890596985817, -0.061402060091495514, 0.003684601979330182, 0.06121077761054039, -0.058073725551366806, 0.01397327333688736, -0.051378797739744186, -0.007517448626458645, 0.0005699655739590526, -0.021270744502544403, -0.032078273594379425, 0.052756037563085556, -0.062320224940776825, 0.002517771441489458, -0.001108249882236123, -0.01332290843129158, 0.018411055207252502, -0.038218479603528976, -0.020390840247273445, 0.006364964414387941, -0.03345551714301109, -0.042464978992938995, 0.025842424482107162, -0.02182546816766262, 0.02295404113829136, 0.0351579412817955, -0.05795895680785179, -0.0006479734438471496, -0.006240630056709051, -0.0711575299501419, -0.04395699128508568, 0.02297317050397396, -0.03739595785737038, -0.009655043482780457, 0.027277052402496338, 0.029725484549999237, 0.03846714645624161, -0.003223130013793707, -0.023967845365405083, -0.028902964666485786, -0.022571474313735962, 0.08424133062362671, 0.03846714645624161, 0.003885449841618538, -0.041470300406217575, 0.05493667349219322, -0.03288166597485542, 0.00676187826320529, -0.01749289222061634, 0.038294993340969086, -0.03481363132596016, 0.0023982191924005747, -0.0022738848347216845, -0.0858481153845787, 0.04460735619068146, -0.016794707626104355, 0.11017940193414688, 0.003132270183414221, 0.027181411162018776, -0.0277935191988945, 0.022437576204538345, 0.047859176993370056, 0.027487464249134064, 0.02662668749690056, -0.019816989079117775, 0.02894122153520584, -0.019759604707360268, -0.027257924899458885, -0.035597894340753555, 0.04950421676039696, 0.010884041897952557, 0.007345293182879686, 0.10681280493736267, -0.007469627540558577, 0.05596960335969925, 0.0013031200505793095, 0.014308019541203976, -0.04617588222026825, 0.0449516661465168, -0.01814325712621212, -0.00598717899993062, 0.055357497185468674, 0.012012614868581295, 0.03181047737598419, -0.003598524257540703, -0.01066406536847353, 0.016708629205822945, 0.0035913512110710144, -0.03039497695863247, -0.04062865301966667, -0.026033708825707436, 0.005107274278998375, -0.047514867037534714, 0.010291062295436859, 0.0027712222654372454, 0.028329113498330116, -0.054133281111717224, 0.001488426118157804, 0.04345965385437012, -0.04755312204360962, 0.020543867722153664, 0.032154787331819534, -0.016402576118707657, -0.048433028161525726, 0.0006372137577272952, -0.01619216427206993, 0.019740475341677666, 0.02959158457815647, -0.05222044512629509, 0.034297164529561996, -0.03303469344973564, 0.020811663940548897, 0.018277155235409737, 0.0052794297225773335, 0.05195264890789986, 0.007828284986317158, -0.08133382350206375, 0.02295404113829136, 0.0580354705452919, 0.040016546845436096, 0.03898361325263977, -0.0048012202605605125, 0.03202088922262192, 0.04697927087545395, 0.04847128316760063, -0.07689604163169861, -0.00919596292078495, -0.07701081037521362, -0.046711474657058716, -0.022456703707575798, -0.030203692615032196, -0.006451042369008064, -0.07199917733669281, -0.03785504028201103, 0.013839374296367168, -0.02599545195698738, -0.021595926955342293, -0.004064778331667185, 0.04537248983979225, 0.01780850999057293, -0.05195264890789986, -0.013418550603091717, -0.03917489945888519, -0.038620173931121826, -0.0351388119161129, 0.010922297835350037, 0.04101122170686722, -0.018822314217686653, -0.01229954045265913, -0.008167813532054424, -0.009545055218040943, -0.001808826345950365, -0.030299335718154907, -0.10260456800460815, 0.0007298667915165424, 0.006183244753628969, 0.029629841446876526, -0.012328233569860458, -0.014556688256561756, -0.0040743425488471985, -0.035024043172597885, -0.05386548489332199, -0.02270537242293358, -0.00768003985285759, 0.06583984196186066, -0.031351394951343536, 0.048509541898965836, 0.05382722616195679, 0.010300626046955585, -0.0167373213917017, -0.004272799007594585, 0.006226283963769674, -0.01968309096992016, -0.030222821980714798, 0.024981649592518806, 0.005609394051134586, 0.016565166413784027, -0.043268367648124695, 0.022265421226620674, 0.024618210271000862, -0.02444605529308319, -0.0009886975167319179, -0.01434627640992403, 0.008019568398594856, 0.016526909545063972, 0.016134778037667274, 0.03833324834704399, 0.01593393087387085, -0.08837305754423141, 0.09388203173875809, -0.004385178443044424, -0.049236420542001724, 0.03393372520804405, -0.03397198021411896, -0.019472679123282433, -0.004265625961124897, 0.001379633555188775, -0.07643695920705795, -0.023240966722369194, 0.03881146013736725, -0.036975134164094925, -0.0022368235513567924, -0.04437781497836113, 0.005728946067392826, 0.07322338968515396, 0.010051957331597805, -0.02622499316930771, 0.06144031882286072, 0.02117510326206684, 0.004043258726596832, 0.05417153984308243, -0.09717211127281189, 0.04590808227658272, -0.004741444252431393, -0.025115547701716423, 0.018506696447730064, 0.05524272844195366, -0.019989144057035446, 0.0007017719908617437, 0.04483689367771149, -0.006073256954550743, -0.0008189332438632846, 0.003811327274888754, 0.0003840617719106376, 0.015015768818557262, 0.01046321727335453, -0.02018042840063572, 0.0023444206453859806, 0.005078581627458334, -0.11653001606464386, 0.01750245690345764, 0.009731557220220566, -0.019491806626319885, 0.006240630056709051, 0.05539575219154358, 0.018506696447730064, 0.022743629291653633, 0.018602337688207626, -0.006824045442044735, 0.018018921837210655, -0.010855348780751228, -0.02100294828414917, 0.01376286055892706, -0.001667754608206451, 0.0011172163067385554, 0.027238795533776283, -0.01147702056914568, 0.025536371394991875, 0.041393790394067764, -0.0004545976116787642, 0.016976427286863327, -0.02582329697906971, -0.03389546647667885, 0.001676123240031302, 0.030987955629825592, -0.02991676703095436, -0.04345965385437012, 0.07081321626901627, -0.029706355184316635, -0.04927467554807663, 0.014642765745520592, 0.04541074484586716, -0.05857106298208237, -0.01960657723248005, -0.07280256599187851, 0.005427674390375614, 0.018908392637968063, -0.014547123573720455, -0.02132813073694706, 0.0008374638855457306, 0.026416275650262833, 0.013102931901812553, 0.02142377197742462, 0.01594349555671215, -0.053406402468681335, -0.019109239801764488 ]
18,492
miarec_s3fs.s3fs
readbytes
null
def readbytes(self, path): self.check() if self.strict: info = self.getinfo(path) if not info.is_file: raise errors.FileExpected(path) _path = self.validatepath(path) _key = self._path_to_key(_path) bytes_file = io.BytesIO() with s3errors(path): self.client.download_fileobj( self._bucket_name, _key, bytes_file, ExtraArgs=self.download_args ) return bytes_file.getvalue()
(self, path)
[ 0.004977481439709663, -0.02545769512653351, -0.10350971668958664, 0.06577027589082718, 0.023651020601391792, -0.04573260620236397, 0.009247804991900921, 0.023596273735165596, 0.06606226414442062, -0.003298550844192505, 0.06467532366514206, 0.07036908715963364, -0.003866558661684394, -0.0183861143887043, -0.02047565206885338, 0.041498780250549316, 0.033450864255428314, -0.029125794768333435, 0.01772914081811905, 0.05011242628097534, -0.026169417425990105, -0.00040519025060348213, 0.019672686234116554, 0.0140062952414155, 0.008700327016413212, 0.0007043067598715425, -0.025348201394081116, 0.0034741999115794897, 0.018550356850028038, -0.023705769330263138, 0.02945427969098091, -0.019800430163741112, -0.026990633457899094, 0.06062398850917816, -0.03443632274866104, -0.010611935518682003, 0.0632883831858635, -0.0028628502041101456, -0.016935298219323158, 0.01615058071911335, -0.019636187702417374, 0.028231581673026085, 0.05248482525348663, -0.05055040866136551, 0.028578316792845726, 0.012865717522799969, 0.0011839197250083089, 0.0181762482970953, -0.05398126691579819, 0.0345093198120594, 0.03179018571972847, 0.03989284858107567, 0.011095540598034859, -0.0627044066786766, 0.044382162392139435, -0.052630819380283356, -0.022428320720791817, -0.02346852794289589, -0.05576968938112259, 0.08015067875385284, 0.005962940864264965, -0.032666146755218506, 0.034965552389621735, -0.0672302171587944, -0.01669805869460106, -0.004208731930702925, 0.006875402759760618, -0.07715780287981033, -0.003533510025590658, -0.014626769348978996, 0.014462525956332684, 0.032939884811639786, -0.03883439302444458, 0.006939275190234184, -0.07113555818796158, -0.009799844585359097, 0.0036270373966544867, -0.00833078008145094, 0.020986631512641907, 0.024855470284819603, -0.004936420824378729, -0.08971328288316727, -0.001659540692344308, -0.009881965816020966, -0.022045087069272995, -0.02797609195113182, 0.06671924144029617, -0.02237357385456562, 0.018705476075410843, 0.05281331390142441, 0.018778473138809204, 0.03688172250986099, -0.04825100302696228, 0.00703508360311389, 0.05062340572476387, -0.052594322711229324, 0.00831709336489439, 0.004404911305755377, -0.07299698144197464, 0.049564946442842484, -0.05690114572644234, 0.016031961888074875, 0.042703233659267426, 0.02168010175228119, -0.013568312861025333, -0.015420611947774887, -0.007400068454444408, -0.008440275676548481, 0.015192495658993721, -0.015146872960031033, 0.013440568931400776, -0.0018329084850847721, -0.009220430627465248, 0.024800723418593407, -0.026625648140907288, -0.043725188821554184, 0.015712600201368332, -0.034381575882434845, -0.015055626630783081, -0.007774177938699722, 0.07051508128643036, 0.008864570409059525, 0.026005173102021217, 0.03752044588327408, 0.025275204330682755, 0.02615116722881794, -0.014526398852467537, -0.012619352899491787, 0.0057439496740698814, 0.03803142532706261, 0.028377575799822807, -0.02054864913225174, 0.007879110984504223, 0.007929297164082527, -0.03253840282559395, 0.014645018614828587, 0.046827562153339386, 0.0013538658386096358, -0.02934478595852852, 0.07164653390645981, 0.1035827100276947, 0.002516114618629217, 0.056645654141902924, -0.0381409227848053, 0.04011183977127075, -0.037958428263664246, 0.0074639408849179745, -0.05945603922009468, -0.029600273817777634, 0.03219166770577431, -0.018668977543711662, 0.023632772266864777, 0.01383292768150568, -0.007176515180617571, 0.03480130806565285, -0.04989343509078026, 0.00028072469285689294, -0.00472655426710844, -0.05062340572476387, -0.01628745160996914, -0.025859178975224495, 0.05993051826953888, -0.004468783736228943, -0.010794428177177906, 0.01969093456864357, 0.029271788895130157, -0.07405543327331543, 0.03253840282559395, 0.012363863177597523, -0.03273914381861687, -0.07431092113256454, 0.0578136071562767, -0.0457691065967083, 0.006542354356497526, 0.05865307152271271, -0.04635307937860489, -0.02700888179242611, 0.03491080552339554, 0.05343378707766533, -0.06832516938447952, -0.0021705194376409054, -0.029673270881175995, 0.02626066282391548, 0.016688933596014977, 0.02374226786196232, 0.019709184765815735, -0.02292105183005333, 0.0376664400100708, 0.05474773421883583, -0.004106080159544945, -0.07650083303451538, 0.047849517315626144, -0.005885381251573563, 0.024782473221421242, 0.028651313856244087, -0.06306938827037811, 0.049674443900585175, 0.010648434050381184, -0.022008588537573814, 0.07215750962495804, -0.009790719486773014, -0.014772763475775719, 0.018814971670508385, -0.01796638034284115, -0.04190026596188545, 0.031534694135189056, 0.030457988381385803, 0.013550063595175743, -0.06011301279067993, 0.0873773843050003, -0.006154557690024376, 0.02003766968846321, -0.030804725363850594, -0.027264371514320374, 0.004562311340123415, 0.014024544507265091, -0.018550356850028038, -0.012299991212785244, -0.01708129234611988, 0.034728311002254486, 0.050331417471170425, 0.03744744881987572, -0.039710357785224915, 0.006838904228061438, 0.025165708735585213, -0.01324895117431879, -0.016451694071292877, 0.005908193066716194, -0.053835272789001465, -0.03427208214998245, 0.024453988298773766, 0.033213626593351364, 0.10416668653488159, -0.013340197503566742, 0.014781887643039227, 0.04252073913812637, 0.007085269317030907, -0.01807587593793869, -0.014727139845490456, -0.005451961886137724, 0.00004669240297516808, -0.023048795759677887, -0.055587198585271835, 0.050221920013427734, -0.05920054763555527, -0.03416258469223976, 0.03688172250986099, 0.010584562085568905, -0.032392408698797226, -0.025859178975224495, 0.07518688589334488, -0.006702035199850798, -0.0009837483521550894, -0.01965443603694439, 0.047557532787323, -0.005912755150347948, 0.030384991317987442, -0.13789129257202148, 0.009097248315811157, 0.046243585646152496, -0.03748394921422005, -0.0030544672627002, 0.005114350933581591, -0.03502029925584793, -0.0040034279227256775, 0.012035376392304897, 0.002682639053091407, 0.004717429634183645, 0.023121792823076248, 0.03034849278628826, 0.0069438377395272255, 0.012309115380048752, -0.0075962478294968605, -0.008896506391465664, 0.014207037165760994, -0.08599043637514114, 0.0010213874047622085, 0.018568607047200203, -0.008526959456503391, 0.005479335784912109, -0.04927296191453934, 0.009097248315811157, 0.026862887665629387, 0.016214454546570778, 0.026041671633720398, 0.02054864913225174, -0.012445984408259392, -0.06664624065160751, -0.020950132980942726, 0.03419908508658409, 0.011743389070034027, -0.03607875481247902, -0.006113497074693441, -0.05449224263429642, 0.05525871366262436, 0.007600810378789902, -0.0466085709631443, -0.015584854409098625, 0.05343378707766533, -0.004466502461582422, -0.00689821457490325, 0.07146403938531876, -0.0005845461273565888, 0.04252073913812637, 0.00647848192602396, 0.014471651054918766, 0.01297521311789751, -0.018997464329004288, -0.06219342350959778, 0.03806792572140694, 0.006884527392685413, -0.04007533937692642, 0.025147458538413048, 0.029399532824754715, -0.041389286518096924, -0.003517541801556945, 0.037885431200265884, 0.05295930802822113, 0.04288572445511818, -0.012573729269206524, -0.015502733178436756, 0.004106080159544945, -0.002224126597866416, -0.02034790813922882, 0.012820093892514706, -0.01786600984632969, -0.035002049058675766, 0.020402655005455017, -0.018194496631622314, 0.029052797704935074, 0.04719254747033119, 0.037994928658008575, -0.0034445449709892273, 0.02326778694987297, 0.03876139596104622, -0.016962673515081406, 0.012792720459401608, 0.008499586023390293, 0.016688933596014977, 0.007386381737887859, 0.07277798652648926, 0.0021214745938777924, 0.03144344687461853, 0.026552651077508926, -0.03923587501049042, -0.0022457975428551435, -0.023012297227978706, 0.0011046496219933033, -0.016369571909308434, 0.0022834367118775845, -0.0036065068561583757, -0.056025180965662, 0.007299697957932949, 0.0021248965058475733, -0.057375624775886536, 0.03839641064405441, 0.013358446769416332, -0.01517424639314413, 0.007340758573263884, 0.02522045560181141, 0.0376664400100708, -0.018094126135110855, -0.02890680357813835, -0.03394359350204468, -0.005538645666092634, -0.006045062094926834, -0.011825510300695896, 0.04244774207472801, -0.02272030897438526, 0.019307700917124748, -0.04120679572224617, -0.0009586556116119027, -0.04511213302612305, 0.023559775203466415, -0.01223611831665039, 0.009334488771855831, -0.02969152107834816, -0.05529521033167839, 0.03649849072098732, 0.01769264228641987, 0.01890621706843376, -0.02762935683131218, -0.01513774786144495, -0.004090111702680588, 0.07810676842927933, 0.015311116352677345, -0.006843466777354479, -0.03447282314300537, 0.02147936075925827, -0.052010346204042435, 0.08482249081134796, 0.009799844585359097, 0.02268381044268608, -0.02649790234863758, -0.02845057286322117, 0.014645018614828587, 0.05989402160048485, -0.006350737065076828, 0.02023841254413128, 0.008622768335044384, -0.040221333503723145, 0.03759344294667244, -0.0708070695400238, 0.007929297164082527, -0.03868839889764786, -0.010438567958772182, -0.018778473138809204, 0.032045673578977585, -0.007194764446467161, -0.008344466798007488, 0.016953548416495323, 0.006729409098625183, -0.02303054742515087, 0.00834902934730053, 0.03326837345957756, 0.003973773214966059, -0.023395530879497528, -0.05631716921925545, 0.003916744142770767, 0.009183932095766068, -0.03246540576219559, 0.04711955040693283, -0.0073270718567073345, -0.042009759694337845, 0.04828749969601631, -0.06485781818628311, -0.024453988298773766, -0.0014964380534365773, 0.044382162392139435, 0.01949019357562065, 0.042630236595869064, -0.01949019357562065, -0.05186435207724571, -0.009881965816020966, -0.01663418672978878, 0.022811556234955788, -0.037228457629680634, -0.000596522178966552, 0.04328720644116402, 0.03828691318631172, -0.008668391034007072, 0.0430317185819149, 0.008586269803345203, -0.005337904207408428, -0.006952962372452021, -0.0041494220495224, -0.008458524942398071, 0.01803937740623951, 0.0977429524064064, -0.05452874302864075, -0.03573201969265938, -0.04883497953414917, 0.01134190522134304, -0.060405001044273376, -0.007929297164082527, 0.02209983579814434, 0.05102488771080971, -0.021260369569063187, -0.02883380651473999, -0.05536820739507675, -0.008116351440548897, 0.005561457481235266, 0.042082756757736206, -0.12701474130153656, -0.005109788384288549, -0.030166001990437508, -0.06876315176486969, 0.050842396914958954, 0.025822680443525314, -0.06226642057299614, 0.025749683380126953, -0.030877722427248955, -0.05365277826786041, -0.004112923517823219, 0.05821508914232254, -0.024344492703676224, 0.03828691318631172, 0.061463456600904465, -0.06660974025726318, -0.024453988298773766, 0.0072084516286849976, -0.060806483030319214, -0.02556719072163105, -0.009681223891675472, -0.00617736903950572, -0.0036863472778350115, -0.049053970724344254, 0.029290037229657173, 0.0870123952627182, -0.019782181829214096, -0.00300200073979795, 0.04894447326660156, -0.035239290446043015, 0.0314069502055645, -0.018614228814840317, 0.02261081337928772, -0.028322827070951462, -0.022464819252490997, -0.05299580469727516, 0.028687812387943268, -0.03421733155846596, -0.010730556212365627, -0.00022112952137831599, 0.01321245264261961, -0.008586269803345203, -0.00039920222479850054, 0.028541818261146545, -0.0605509914457798, 0.06493081152439117, -0.035275790840387344, 0.003647567704319954, 0.06277740001678467, -0.05985752120614052, 0.016643311828374863, -0.02027491107583046, 0.015183371491730213, -0.008271469734609127, 0.012628477066755295, -0.007368132472038269, 0.04117029532790184, 0.005657265894114971, 0.03480130806565285, -0.017574021592736244, -0.007792427204549313, -0.027647605165839195, -0.03168068826198578, -0.02684463933110237, -0.09387411177158356, -0.014681517146527767, -0.014280034229159355, -0.005036791320890188, -0.004703742917627096, 0.02354152500629425, 0.008937567472457886, -0.008964940905570984, 0.010192203335464, -0.019855178892612457, -0.017583146691322327, -0.0905892476439476, -0.014681517146527767, 0.04602459445595741, 0.01821274682879448, 0.013978920876979828, -0.023687519133090973, -0.031461697071790695, 0.049199964851140976, -0.010684932582080364, -0.02711837738752365, 0.00507785240188241, -0.029819265007972717, -0.02027491107583046, -0.02680814079940319, 0.013878550380468369, -0.028195083141326904, 0.0547112338244915, 0.02638840675354004, -0.031187959015369415, -0.03549478203058243, -0.010986045002937317, 0.001659540692344308, 0.03680872544646263, 0.0021693790331482887, -0.034728311002254486, 0.009047063067555428, -0.026516152545809746, 0.054273251444101334, 0.005132600199431181, 0.037228457629680634, 0.05774061009287834, -0.02828632853925228, 0.014763638377189636, 0.047375038266181946, -0.024271495640277863, 0.02155235782265663, 0.08672040700912476, 0.0005269469111226499, -0.004455097019672394, 0.0036110691726207733, 0.009626476094126701, -0.025074461475014687, 0.05693764239549637, -0.0632883831858635, 0.018924467265605927, 0.021917343139648438, -0.0033464552834630013, 0.034381575882434845, 0.011944130063056946, -0.004785864148288965, -0.03007475472986698, -0.01992817409336567, 0.011734263971447945, -0.060222506523132324, -0.003565446240827441, -0.01666156016290188, 0.0327756442129612, 0.02848707139492035, 0.009909340180456638, -0.013029960915446281, -0.03306763246655464, -0.0056892018765211105, 0.014079292304813862, 0.046718064695596695, 0.00826690811663866, 0.04992993175983429, -0.009699473157525063, 0.081537626683712, -0.06343437731266022, 0.0605509914457798, 0.05686464533209801, 0.07445691525936127, -0.023286035284399986, -0.05350678414106369, -0.020402655005455017, 0.029673270881175995, 0.008495023474097252, 0.034071341156959534, -0.05522221326828003, -0.04160827770829201, -0.06285040080547333, 0.031771935522556305, 0.009047063067555428, -0.005611642729490995, 0.024545233696699142, 0.06441983580589294, -0.026789890602231026, 0.020950132980942726, 0.012893090955913067, -0.02529345266520977, 0.025402948260307312, 0.05580618977546692, 0.012856592424213886, 0.00047505064867436886, 0.007185639813542366, 0.031936176121234894, 0.05814209207892418, -0.0036977531854063272, -0.02408900298178196, 0.05868957191705704, 0.0036065068561583757, 0.014097541570663452, 0.019873427227139473, 0.0006518401787616313, -0.05449224263429642, 0.034345079213380814, -0.06474831700325012, 0.003230116330087185, 0.023085294291377068, 0.0077148680575191975, 0.014289158396422863, -0.04310471564531326, 0.0061271837912499905, -0.022081585600972176, -0.006245804019272327, 0.030439740046858788, -0.004945545457303524, -0.06993110477924347, 0.14227111637592316, -0.04631658270955086, -0.009161120280623436, -0.020767640322446823, 0.04744803532958031, -0.022592565044760704, -0.054455745965242386, -0.008974066004157066, 0.001642431947402656, 0.000027605547074927017, -0.024727726355195045, 0.02708187885582447, 0.040330830961465836, -0.034582316875457764, 0.01584034413099289, 0.046645067632198334, -0.051389873027801514, -0.0605509914457798, -0.016031961888074875, -0.008809822611510754, 0.06409134715795517, -0.02945427969098091, 0.0412432923913002, 0.005771323572844267, 0.020402655005455017, -0.00188993732444942, -0.015475359745323658, 0.06708422303199768, -0.02031140960752964, -0.03646199032664299, 0.010520689189434052, 0.028432322666049004, -0.033907096832990646, -0.08810735493898392, -0.02182609587907791, -0.03158944100141525, 0.007030521519482136, -0.0054245879873633385, -0.018650727346539497, 0.024837221950292587, 0.042046260088682175, 0.02907104603946209, 0.0004753357789013535, 0.025932176038622856, -0.019052211195230484, -0.0756978690624237, 0.056791648268699646, 0.018614228814840317, -0.04701005294919014, -0.014526398852467537, -0.02209983579814434, -0.009626476094126701, -0.024691227823495865, 0.006875402759760618, -0.008020542562007904, -0.05091539025306702, -0.049126967787742615, -0.06518629938364029, 0.030603982508182526, 0.06098897382616997, -0.048542991280555725, 0.002365558408200741, -0.02272030897438526, 0.002947252942249179, -0.04828749969601631, -0.03646199032664299, -0.053251296281814575, 0.06263140588998795, -0.020749390125274658, 0.013586562126874924, -0.04945545271039009, 0.03832341358065605, -0.04766702651977539, 0.03680872544646263, 0.04295872151851654, -0.041425783187150955, 0.05357978120446205, -0.03857890143990517, -0.023833513259887695, -0.013048210181295872, -0.04452815651893616, -0.04595159739255905, 0.04533112421631813, 0.042703233659267426, -0.03883439302444458, 0.056134674698114395, -0.037137214094400406, -0.004899922292679548, 0.02872431091964245, -0.0677046999335289, 0.013632185757160187, 0.042009759694337845, 0.02828632853925228, 0.004744803532958031, -0.0072130137123167515, 0.01041119359433651, 0.030421489849686623, 0.019508441910147667, -0.007851737551391125, 0.00427032308652997, -0.07584386318922043, -0.023797014728188515, 0.0016504160594195127, 0.01863247901201248, -0.02168010175228119, 0.0014108946779742837, -0.022191081196069717, 0.019052211195230484, 0.005844320636242628, 0.04427266865968704, -0.04062281921505928, 0.03210042044520378 ]
18,493
fs.base
readtext
Get the contents of a file as a string. Arguments: path (str): A path to a readable file on the filesystem. encoding (str, optional): Encoding to use when reading contents in text mode (defaults to `None`, reading in binary mode). errors (str, optional): Unicode errors parameter. newline (str): Newlines parameter. Returns: str: file contents. Raises: fs.errors.ResourceNotFound: If ``path`` does not exist.
def readtext( self, path, # type: Text encoding=None, # type: Optional[Text] errors=None, # type: Optional[Text] newline="", # type: Text ): # type: (...) -> Text """Get the contents of a file as a string. Arguments: path (str): A path to a readable file on the filesystem. encoding (str, optional): Encoding to use when reading contents in text mode (defaults to `None`, reading in binary mode). errors (str, optional): Unicode errors parameter. newline (str): Newlines parameter. Returns: str: file contents. Raises: fs.errors.ResourceNotFound: If ``path`` does not exist. """ with closing( self.open( path, mode="rt", encoding=encoding, errors=errors, newline=newline ) ) as read_file: contents = read_file.read() return contents
(self, path, encoding=None, errors=None, newline='')
[ 0.015696760267019272, -0.050641581416130066, -0.00969505775719881, 0.030363641679286957, 0.022852635011076927, -0.0009433148661628366, 0.012420682236552238, -0.04041383042931557, 0.1095932126045227, -0.02649272046983242, 0.06552154570817947, 0.02805529534816742, -0.025267520919442177, 0.010352049022912979, 0.006427858490496874, 0.012882351875305176, -0.044568855315446854, -0.02450399100780487, 0.0009882610756903887, -0.01147958729416132, -0.03212153539061546, -0.01345056015998125, 0.01672663725912571, 0.03311590105295181, -0.008753961883485317, 0.000329050439177081, -0.011719300411641598, -0.06939246505498886, -0.036027971655130386, -0.009224509820342064, 0.04197640344500542, -0.007022702135145664, -0.016025254502892494, 0.004492398351430893, -0.07173632085323334, 0.018662098795175552, -0.026972146704792976, -0.0657346174120903, -0.005833015311509371, -0.04321935772895813, -0.05316300690174103, 0.07336992025375366, 0.07848379760980606, -0.01587432436645031, -0.035353220999240875, -0.04009421169757843, -0.02326103486120701, -0.05160043388605118, -0.03970357030630112, 0.02111249789595604, 0.020082619041204453, 0.056749824434518814, -0.04151473194360733, -0.019478898495435715, -0.04261563718318939, -0.036347586661577225, -0.04392961785197258, 0.02677682600915432, -0.004270441830158234, -0.02862350270152092, 0.022053591907024384, -0.037750352174043655, 0.0651664137840271, 0.013841204345226288, -0.02805529534816742, 0.020331209525465965, 0.03554854542016983, -0.07834174484014511, 0.07756046205759048, -0.031269222497940063, 0.025587139651179314, 0.04112409055233002, -0.03375513479113579, -0.04787156730890274, 0.03402148559689522, 0.011745935305953026, -0.05223966762423515, 0.031677622348070145, 0.015963107347488403, 0.0050295330584049225, -0.0042460267432034016, 0.003622329095378518, 0.029848702251911163, -0.015137429349124432, 0.008021505549550056, -0.09141054004430771, 0.050925686955451965, -0.006259171757847071, 0.009792718105018139, 0.01041419617831707, 0.03668496012687683, -0.03934843838214874, -0.03485604003071785, 0.023154497146606445, 0.018173793330788612, -0.044142697006464005, 0.022976931184530258, -0.03870920464396477, -0.0509612001478672, 0.007533201947808266, -0.04804912954568863, 0.06711962819099426, 0.029955241829156876, 0.009668422862887383, 0.005819697864353657, -0.018022863194346428, -0.026297399774193764, 0.008132483810186386, 0.07507454603910446, -0.01721494272351265, 0.0009078018483705819, -0.01453370787203312, 0.023332061246037483, 0.01967421919107437, -0.013059916906058788, -0.0486883670091629, -0.06186370179057121, 0.0006026117480359972, -0.027540355920791626, -0.035353220999240875, 0.03432334586977959, 0.00862966664135456, -0.018200429156422615, -0.0032871749717742205, 0.03909984603524208, 0.048226695507764816, -0.02734503336250782, -0.018173793330788612, 0.04268666356801987, -0.0028099685441702604, 0.035086873918771744, -0.03226358816027641, 0.08835642039775848, 0.037750352174043655, 0.02139660157263279, 0.02082839235663414, -0.003056340152397752, 0.05085466057062149, 0.050499528646469116, 0.05735354498028755, 0.06136651709675789, -0.06548602879047394, -0.004465763457119465, -0.044568855315446854, -0.014906594529747963, 0.017934080213308334, 0.045243602246046066, -0.09560108184814453, -0.031659867614507675, 0.05621712654829025, 0.02706092968583107, -0.01233190018683672, -0.019017228856682777, -0.011293143965303898, 0.05312749370932579, -0.010032431222498417, 0.012651517055928707, 0.028676772490143776, -0.04549219459295273, 0.03599245846271515, -0.03995215892791748, 0.04932760074734688, 0.01210106536746025, 0.029795432463288307, 0.0026656968984752893, 0.028996389359235764, -0.07180734723806381, -0.05600405111908913, -0.008540883660316467, -0.05792175233364105, -0.023438600823283195, -0.00672971922904253, -0.07528762519359589, 0.007821745239198208, 0.003966361749917269, -0.019638705998659134, 0.029102928936481476, 0.05813483148813248, 0.008900453336536884, -0.01953216642141342, -0.04226050525903702, -0.10256163030862808, -0.01790744625031948, 0.0015337190125137568, 0.03171313554048538, 0.04236704483628273, -0.015093037858605385, -0.00339815323241055, 0.04588283598423004, -0.0042349291034042835, -0.0019465580116957426, -0.022621801123023033, -0.015288359485566616, 0.01748128980398178, -0.03711111843585968, -0.07883892953395844, 0.0361345075070858, -0.007129240781068802, -0.03538873419165611, 0.017161672934889793, 0.030363641679286957, 0.017934080213308334, 0.059839457273483276, 0.036329831928014755, -0.0327252596616745, 0.03824753314256668, -0.00991701427847147, 0.012225360609591007, -0.06197023764252663, 0.08551537990570068, -0.024166617542505264, -0.020881662145256996, -0.023154497146606445, -0.011310900561511517, 0.030647745355963707, -0.0006919492152519524, -0.044995009899139404, 0.007444418966770172, 0.013743543066084385, 0.021716218441724777, 0.058028291910886765, 0.03643637150526047, -0.05714046582579613, 0.02906741574406624, -0.01339729130268097, -0.016433654353022575, -0.009597396478056908, 0.03411026671528816, -0.009304414503276348, -0.015110794454813004, 0.005242611281573772, -0.0035801574122160673, 0.04517257586121559, 0.0012762495316565037, 0.0006347954040393233, 0.04364551603794098, -0.002383812330663204, -0.03405699506402016, -0.0026856730692088604, -0.023332061246037483, -0.02010037563741207, -0.02864125929772854, -0.03878023102879524, 0.03441212698817253, -0.016478046774864197, -0.03446539491415024, -0.02874779887497425, 0.040591396391391754, 0.011648274026811123, -0.06474025547504425, 0.04261563718318939, 0.019052742049098015, -0.012660395354032516, 0.002262845868244767, -0.006476689130067825, 0.024432964622974396, 0.0046699633821845055, -0.09723468124866486, 0.00488748075440526, 0.035903673619031906, 0.021787244826555252, -0.020757365971803665, -0.020491018891334534, 0.012198726646602154, 0.0006531068356707692, -0.041869863867759705, -0.06271601468324661, 0.048262208700180054, 0.014835569076240063, -0.04162127152085304, 0.00352244870737195, 0.08061458170413971, -0.011071187444031239, -0.03169538080692291, -0.02762913890182972, -0.021485384553670883, 0.03226358816027641, 0.04009421169757843, 0.03439437225461006, 0.011435195803642273, -0.0725531205534935, 0.05373121798038483, 0.021858271211385727, -0.06775886565446854, 0.03913535922765732, -0.011248752474784851, -0.04616694152355194, -0.03867369145154953, -0.04744540899991989, 0.028002025559544563, 0.05241723358631134, -0.011816960759460926, -0.007475493010133505, -0.001861104741692543, 0.10632601380348206, -0.009060261771082878, -0.08011739701032639, -0.03725317120552063, 0.017934080213308334, -0.08040150254964828, 0.035495273768901825, 0.009295536205172539, -0.02935151942074299, -0.01733923703432083, -0.03444764018058777, -0.03892228379845619, -0.01756119355559349, -0.002186270896345377, -0.006099363323301077, 0.02507220022380352, -0.004146146588027477, -0.08345562219619751, 0.04748092219233513, 0.07187837362289429, -0.05223966762423515, 0.0014749005204066634, -0.015066403895616531, 0.00045029414468444884, 0.02123679220676422, -0.06786540150642395, 0.005260367877781391, -0.0016524657839909196, 0.012518343515694141, -0.023775974288582802, 0.014924351125955582, -0.01940787211060524, 0.02537406049668789, 0.0006375698721967638, -0.004634450655430555, 0.04339692369103432, 0.06157959625124931, 0.041585758328437805, 0.01345056015998125, -0.019780758768320084, -0.03941946476697922, -0.04723232984542847, 0.04577629640698433, -0.05710495263338089, -0.01106230914592743, -0.01843126304447651, 0.08650974184274673, -0.0033360053785145283, 0.00008912938210414723, -0.030487937852740288, 0.008882696740329266, 0.043574489653110504, 0.047800540924072266, -0.012722543440759182, 0.04662860929965973, -0.0012651517754420638, 0.019905053079128265, -0.02762913890182972, -0.02862350270152092, -0.05412185937166214, -0.08757513761520386, 0.02350962720811367, -0.016557950526475906, 0.02679458260536194, -0.008625227026641369, -0.01515518594533205, -0.025995539501309395, 0.04723232984542847, -0.04545668140053749, 0.009899257682263851, 0.010156726464629173, -0.025249764323234558, 0.0014626929769292474, 0.1073203831911087, -0.015465925447642803, 0.06612526625394821, 0.000776847533416003, 0.010085701011121273, -0.02533854730427265, 0.04424923658370972, -0.0002996411931235343, -0.02010037563741207, -0.00998803973197937, -0.060975875705480576, -0.04218948259949684, 0.0311626847833395, 0.007271293085068464, 0.031517814844846725, -0.04137268289923668, -0.044391289353370667, 0.0004971824237145483, -0.008580836467444897, -0.049363113939762115, -0.0030163880437612534, 0.004106194246560335, -0.05280787870287895, 0.04918554797768593, -0.002825505565851927, 0.04147921875119209, -0.016531316563487053, -0.050215426832437515, 0.014409412629902363, 0.04939862713217735, 0.026155347004532814, 0.033932700753211975, 0.05472557991743088, -0.020206915214657784, 0.04517257586121559, -0.021041471511125565, 0.007186949718743563, -0.023900270462036133, 0.07351197302341461, 0.029564598575234413, -0.0039974357932806015, -0.01997607946395874, 0.025320790708065033, 0.015359385870397091, 0.01827145367860794, 0.018449019640684128, -0.010724935680627823, -0.008585275150835514, -0.02052653208374977, -0.05071260780096054, -0.035069119185209274, 0.02395354025065899, 0.011293143965303898, -0.06577013432979584, 0.043681029230356216, -0.06456269323825836, 0.014924351125955582, 0.0311626847833395, -0.029813189059495926, -0.0035091314930468798, 0.01233190018683672, 0.03570835292339325, 0.020491018891334534, 0.037892404943704605, -0.07365402579307556, -0.05508071184158325, 0.0009943648474290967, -0.045847322791814804, 0.012678151950240135, -0.05440596491098404, -0.01808501034975052, -0.0030119488947093487, -0.0280375387519598, -0.0011863572290167212, 0.01402764767408371, 0.04854631423950195, 0.026830095797777176, 0.013628126122057438, -0.038034457713365555, -0.00998803973197937, 0.00861634872853756, 0.02322552166879177, -0.06051420420408249, -0.008403271436691284, 0.009091336280107498, 0.019106009975075722, 0.01020111795514822, -0.036027971655130386, -0.00864742323756218, 0.051635947078466415, 0.0004405835352372378, -0.027700163424015045, 0.013521586544811726, -0.018644342198967934, 0.05678533762693405, 0.05401531979441643, -0.11740607768297195, 0.07450634241104126, -0.049931321293115616, -0.04986029490828514, 0.06086933612823486, -0.018218185752630234, -0.04797810688614845, -0.009677301160991192, 0.03640085831284523, -0.07983329147100449, -0.010511857457458973, 0.03909984603524208, 0.001528170076198876, -0.030647745355963707, -0.008682936429977417, -0.04790708050131798, -0.002450399100780487, 0.053908780217170715, -0.05877406522631645, 0.021893784403800964, 0.00339815323241055, -0.009650666266679764, -0.013308508321642876, 0.05540032684803009, -0.017223820090293884, 0.019017228856682777, -0.0005060607218183577, 0.053624678403139114, 0.03229910135269165, -0.007901648990809917, -0.03226358816027641, -0.04197640344500542, 0.0021030372008681297, -0.057566624134778976, 0.0254806000739336, -0.01410755142569542, 0.02734503336250782, -0.02098820172250271, -0.022071348503232002, 0.03650739789009094, 0.08587051182985306, 0.00018977276340592653, 0.04854631423950195, 0.0049096764996647835, 0.009419831447303295, 0.06310665607452393, -0.024308670312166214, 0.004363663494586945, 0.035069119185209274, 0.015847690403461456, 0.012891230173408985, 0.016247211024165154, 0.013415047898888588, -0.049079008400440216, 0.04066241905093193, 0.0004813680425286293, 0.029582355171442032, -0.06282255053520203, 0.030487937852740288, -0.021574165672063828, -0.02649272046983242, 0.016886446624994278, -0.048936955630779266, -0.03949049115180969, -0.025569383054971695, -0.03553078696131706, 0.029209468513727188, 0.004092876799404621, -0.011088944040238857, -0.005247050430625677, 0.007311245426535606, -0.005988385062664747, 0.019461141899228096, -0.04236704483628273, 0.032654233276844025, -0.032352373003959656, 0.054334938526153564, 0.031517814844846725, 0.046841688454151154, -0.02212461829185486, 0.0016613439656794071, -0.007138119079172611, -0.04606040194630623, 0.045527707785367966, -0.030576718971133232, 0.08551537990570068, 0.021059228107333183, -0.03205050900578499, -0.06683552265167236, -0.022035835310816765, -0.011861352249979973, 0.06935694813728333, 0.03565508499741554, -0.014285116456449032, 0.0242021307349205, -0.005699841305613518, -0.021432114765048027, 0.03966805711388588, -0.015022012405097485, -0.029138442128896713, 0.01765885390341282, 0.006707523949444294, 0.05387326702475548, 0.007932723499834538, 0.025551626458764076, 0.017268210649490356, -0.03595694527029991, 0.03190845996141434, 0.012349656783044338, 0.023030200973153114, -0.005690963473170996, 0.022142374888062477, 0.001760114566422999, 0.043574489653110504, 0.02196480892598629, 0.008243462070822716, 0.01740138605237007, 0.045279115438461304, -0.07564275711774826, -0.017632219940423965, 0.00012734750634990633, 0.01814715936779976, 0.045243602246046066, -0.0045900591649115086, 0.01558134239166975, -0.03853163868188858, 0.0026656968984752893, 0.041159603744745255, -0.024432964622974396, 0.047800540924072266, -0.006068289279937744, 0.05678533762693405, 0.02935151942074299, 0.0058241370134055614, 0.0005268690874800086, -0.00976608321070671, -0.0024481795262545347, -0.03615226596593857, -0.010094579309225082, -0.0028943121433258057, 0.030931850895285606, -0.02326103486120701, 0.06917938590049744, 0.028392668813467026, -0.001166381174698472, 0.016007497906684875, 0.04325487092137337, -0.021361088380217552, -0.07692122459411621, -0.010174483060836792, -0.004305955022573471, 0.041159603744745255, 0.028161833062767982, 0.008816109970211983, -0.058418937027454376, 0.01318421307951212, 0.014045404270291328, 0.04311281815171242, 0.03838958591222763, 0.02523200772702694, 0.03228134661912918, -0.017312603071331978, 0.07635301351547241, -0.02649272046983242, -0.052914418280124664, -0.047658488154411316, 0.011701543815433979, 0.02535630390048027, -0.02793099917471409, -0.015909837558865547, 0.05767316371202469, 0.022568531334400177, -0.023740461096167564, -0.03725317120552063, 0.0064322976395487785, 0.021059228107333183, 0.012278630398213863, -0.054476991295814514, -0.015066403895616531, -0.04392961785197258, -0.019159279763698578, -0.048794906586408615, -0.0030985120683908463, -0.036755986511707306, -0.015448168851435184, 0.06651590764522552, -0.02240872196853161, -0.007275732234120369, 0.042438071221113205, 0.027398303151130676, -0.005904041230678558, 0.04325487092137337, 0.0063257585279643536, 0.1016382947564125, -0.06122446432709694, 0.004319272469729185, 0.021609678864479065, 0.03341776132583618, 0.01827145367860794, -0.0005665438366122544, 0.0019410090753808618, 0.0024282035883516073, -0.05369570478796959, -0.03913535922765732, 0.03228134661912918, 0.06832706928253174, 0.004865285474807024, 0.0055045196786522865, 0.04915003478527069, 0.03226358816027641, -0.02862350270152092, 0.005992824211716652, 0.018449019640684128, 0.0594843253493309, -0.04446231573820114, 0.045243602246046066, -0.0005970628117211163, 0.022604044526815414, 0.008687375113368034, -0.0277534332126379, -0.016966350376605988, -0.004214952699840069, -0.03146454691886902, -0.008043701760470867, 0.021219035610556602, 0.04392961785197258, -0.008301171474158764, -0.034642960876226425, -0.008660740219056606, -0.010014674626290798, 0.01680654287338257, 0.04691271483898163, 0.03162435442209244, 0.04080447182059288, -0.012056673876941204, 0.03824753314256668, 0.017969593405723572, 0.021858271211385727, -0.06030112877488136, 0.04915003478527069, -0.05525827780365944, -0.010653909295797348, -0.040875498205423355, -0.030931850895285606, -0.009828231297433376, -0.04946965351700783, -0.012207604013383389, -0.004772063344717026, -0.012136578559875488, 0.05142286792397499, -0.049079008400440216, 0.07074195891618729, 0.0027544794138520956, -0.007772914599627256, 0.02507220022380352, -0.007954918779432774, -0.020455505698919296, -0.04307730495929718, -0.02208910509943962, 0.013130943290889263, -0.01076044887304306, -0.030097294598817825, 0.06282255053520203, -0.030825311318039894, -0.008580836467444897, 0.012891230173408985, -0.005207098089158535, 0.02251526154577732, -0.011213239282369614, 0.026741312816739082, -0.05312749370932579, -0.048830416053533554, -0.007129240781068802, -0.01642477698624134, -0.028534719720482826, 0.022319940850138664, 0.031393520534038544, -0.036898039281368256, 0.027149712666869164, -0.05483211949467659, -0.052914418280124664, 0.03867369145154953, -0.03627656027674675, 0.023154497146606445, 0.01083147432655096, -0.015705637633800507, 0.020899418741464615, 0.005926236975938082, -0.002914288081228733, -0.003791016060858965, 0.06680001318454742, -0.015829933807253838, 0.032814040780067444, 0.015696760267019272, -0.02180500142276287, -0.016469167545437813, 0.06197023764252663, -0.02251526154577732, 0.012713665142655373, -0.001403874484822154, 0.04183435067534447, -0.01254497841000557, -0.003065218450501561, -0.012456195428967476, 0.03189070150256157 ]
18,494
miarec_s3fs.s3fs
remove
null
def remove(self, path): self.check() _path = self.validatepath(path) _key = self._path_to_key(_path) if self.strict: info = self.getinfo(path) if info.is_dir: raise errors.FileExpected(path) with s3errors(path): self.client.delete_object(Bucket=self._bucket_name, Key=_key)
(self, path)
[ 0.034557972103357315, 0.06890029460191727, -0.044783394783735275, -0.0006244875257834792, 0.04162052273750305, -0.06394033879041672, -0.00528343440964818, 0.05754270777106285, 0.006824435666203499, 0.04708366468548775, 0.025806162506341934, 0.05944762006402016, 0.02465602569282055, -0.028699470683932304, -0.07720283418893814, 0.02472791075706482, 0.04140487313270569, -0.0031112059950828552, -0.00911122839897871, -0.039068661630153656, -0.006635741796344519, 0.0004489908169489354, -0.007417474407702684, 0.03712780773639679, 0.020900115370750427, -0.0010249009355902672, 0.043920792639255524, 0.04489121958613396, 0.03788258135318756, -0.047622792422771454, -0.019839834421873093, 0.03978749364614487, -0.016883626580238342, 0.036732446402311325, -0.03407276049256325, -0.004117574542760849, 0.027136005461215973, -0.03576201945543289, -0.060669638216495514, -0.006532409228384495, -0.02334415353834629, 0.07835297286510468, -0.00209922157227993, -0.03653476759791374, 0.05114508047699928, 0.0174676813185215, -0.0019633169285953045, 0.03770287334918976, -0.022301843389868736, 0.014502488076686859, 0.028034549206495285, 0.030981771647930145, -0.017099278047680855, -0.027118034660816193, 0.021618951112031937, -0.09474240243434906, 0.04575382173061371, 0.0016701671993359923, -0.012579604983329773, 0.003634607419371605, 0.06261049211025238, 0.005117203574627638, -0.016416385769844055, -0.039643727242946625, 0.0003953590348828584, -0.04061415418982506, 0.009614412672817707, -0.019462445750832558, 0.020522726699709892, -0.011600193567574024, -0.04661642387509346, -0.00940774753689766, 0.02269720286130905, 0.039571844041347504, -0.006298787891864777, -0.0054227085784077644, 0.03256320580840111, 0.021349387243390083, 0.05078566446900368, -0.03942807763814926, -0.022894881665706635, -0.0760527029633522, -0.03480956330895424, -0.012534677982330322, -0.018779553472995758, 0.020522726699709892, 0.0784248560667038, -0.05585344880819321, 0.009704266674816608, 0.0419439971446991, -0.012678445316851139, 0.01740478165447712, -0.056356631219387054, -0.039751552045345306, 0.03791852295398712, 0.01973200961947441, 0.02975975163280964, -0.06458728760480881, -0.012939022853970528, -0.026021812111139297, 0.04352543503046036, -0.006330237258225679, 0.026776587590575218, -0.0040748934261500835, 0.002107083797454834, 0.03427043929696083, 0.02102591097354889, -0.05247492343187332, 0.022086191922426224, 0.0409376285970211, -0.053445350378751755, 0.014430603943765163, -0.013621915131807327, 0.04668830707669258, 0.017620433121919632, -0.06160412356257439, 0.00045657227747142315, -0.04320196062326431, -0.012274100445210934, -0.020235193893313408, 0.054200127720832825, -0.038817066699266434, -0.023685600608587265, 0.0009311154135502875, 0.048305682837963104, 0.010153538547456264, 0.025356890633702278, 0.0017139712581411004, -0.016191748902201653, 0.021636921912431717, -0.06322149932384491, -0.028681499883532524, -0.02975975163280964, -0.023649657145142555, -0.009892961010336876, 0.016883626580238342, 0.07439938187599182, -0.04880886897444725, 0.020918086171150208, 0.04151269793510437, 0.07454314827919006, 0.04862916097044945, 0.018509991466999054, -0.02758527733385563, 0.051324788480997086, -0.02839396707713604, -0.03480956330895424, -0.024889647960662842, -0.019498387351632118, 0.01128570269793272, -0.07130838930606842, -0.006981681101024151, 0.05653633922338486, -0.008886592462658882, 0.027459481731057167, -0.018321296200156212, -0.0393921360373497, -0.012516707181930542, -0.060130514204502106, -0.0031112059950828552, 0.0436692014336586, 0.04463962838053703, 0.018635787069797516, -0.00869340542703867, -0.02341603673994541, -0.02028910629451275, 0.006020239554345608, 0.060741521418094635, -0.04959958791732788, 0.02097199857234955, -0.03581593185663223, 0.0023676613345742226, 0.012354969047009945, 0.007862253114581108, -0.03263508901000023, -0.0032459874637424946, -0.010360203683376312, 0.05172014981508255, 0.04571788012981415, -0.07299765199422836, 0.018069704994559288, -0.02850179187953472, 0.04381296783685684, 0.004598294850438833, 0.020594611763954163, 0.03195219859480858, -0.048485394567251205, 0.017072321847081184, 0.04079386219382286, 0.03637303039431572, -0.03996720165014267, 0.03734345734119415, 0.004699381068348885, 0.03701998293399811, 0.06685161590576172, 0.00730515643954277, 0.04711960628628731, -0.02762121893465519, -0.025626452639698982, 0.023721542209386826, 0.0023339660838246346, 0.006730088964104652, 0.026704704388976097, -0.01089034415781498, -0.000281917949905619, -0.0018745858687907457, 0.03285074234008789, 0.009901946410536766, -0.006388642359524965, 0.09438297897577286, 0.009281951934099197, 0.005404737778007984, 0.052115507423877716, -0.03263508901000023, 0.04233935847878456, -0.08122830837965012, -0.028807295486330986, -0.006680668797343969, 0.002222771290689707, 0.04097357019782066, 0.03856547549366951, 0.05301405116915703, 0.015239293687045574, -0.0016398413572460413, 0.03698404133319855, -0.0053777811117470264, -0.04417238384485245, 0.05236709862947464, 0.017081307247281075, -0.057147350162267685, 0.05358911678195, 0.017278986051678658, 0.07360865920782089, -0.02266126126050949, 0.005355317611247301, 0.011114980094134808, -0.0211517084389925, -0.030209023505449295, -0.04564599692821503, -0.05916008725762367, -0.005418215878307819, -0.036660563200712204, -0.04496310278773308, 0.04223153367638588, -0.06138847395777702, 0.04295036569237709, 0.03701998293399811, -0.005647344049066305, 0.008127323351800442, -0.07368054240942001, 0.05161232501268387, 0.045430347323417664, -0.0022171554155647755, 0.022086191922426224, 0.04136893153190613, -0.01895926147699356, -0.0071074771694839, -0.03996720165014267, -0.022984735667705536, 0.012965979054570198, -0.03206002339720726, -0.048413511365652084, 0.03195219859480858, 0.015661608427762985, 0.04374108463525772, 0.008558624424040318, 0.03047858737409115, 0.04205182194709778, 0.028825266286730766, 0.03953590244054794, 0.04528658092021942, -0.030262935906648636, 0.046221062541007996, -0.04963552951812744, 0.01676681637763977, 0.002778745023533702, -0.06138847395777702, -0.01957027241587639, 0.024907618761062622, 0.04873698577284813, -0.004463513381779194, -0.03567216545343399, 0.042590949684381485, 0.00940774753689766, 0.04442397877573967, 0.029633956030011177, 0.03719969093799591, -0.03137712925672531, 0.02334415353834629, 0.07777789980173111, 0.0005913537461310625, -0.06509047001600266, -0.03595970198512077, -0.0002791099832393229, 0.03360551595687866, 0.01487089041620493, -0.044819336384534836, 0.00806442555040121, 0.025644423440098763, 0.01424191053956747, 0.002572080120444298, 0.04169240593910217, -0.01757550612092018, 0.0023474441841244698, 0.015032628551125526, -0.014080172404646873, 0.0027899767737835646, 0.03516898304224014, -0.02400907501578331, 0.07562139630317688, -0.008527175523340702, 0.017099278047680855, -0.075693279504776, 0.025896016508340836, 0.05308593437075615, 0.03047858737409115, 0.023829367011785507, 0.015904216095805168, -0.060166455805301666, -0.009857019409537315, -0.0018465063767507672, -0.011537294834852219, -0.06214325129985809, 0.012948008254170418, 0.007920658215880394, -0.057183291763067245, -0.09366414695978165, 0.0021778440568596125, -0.03351566195487976, 0.00012832321226596832, 0.0045151798985898495, 0.04309413209557533, 0.01451147347688675, -0.020217223092913628, 0.029004976153373718, -0.012202217243611813, 0.047766558825969696, -0.0014994440134614706, 0.03351566195487976, 0.10739389061927795, -0.00434221001341939, -0.013010906055569649, 0.03047858737409115, 0.015607696026563644, -0.10149944573640823, -0.021475182846188545, -0.02765716053545475, -0.018653757870197296, 0.031071625649929047, -0.02104388177394867, 0.06210730969905853, 0.0365707091987133, 0.024314580485224724, -0.005979805253446102, -0.013810609467327595, 0.014080172404646873, -0.007210809271782637, 0.04086574539542198, -0.0007132187020033598, -0.03254523500800133, 0.03188031539320946, -0.027818897739052773, -0.015778418630361557, -0.03856547549366951, 0.015401030890643597, -0.02470993809401989, -0.04963552951812744, 0.015724506229162216, -0.006141542922705412, -0.01419698353856802, 0.009254995733499527, -0.041836172342300415, -0.03252726420760155, 0.007192838471382856, 0.041009511798620224, 0.06864870339632034, 0.05951950326561928, -0.01458335667848587, 0.00043803983135148883, 0.003987285774201155, -0.027082093060016632, 0.016425371170043945, 0.0010220928816124797, -0.03324609994888306, -0.005004885606467724, 0.07076926529407501, 0.025159209966659546, -0.03498927503824234, 0.0054945917800068855, -0.01811463199555874, 0.01662304997444153, -0.01812361739575863, 0.026776587590575218, -0.07145215570926666, -0.02399110421538353, 0.01663203537464142, 0.01419698353856802, -0.02765716053545475, -0.003324609948322177, 0.02825019881129265, 0.013253512792289257, 0.024422405287623405, -0.07957498729228973, 0.014448575675487518, 0.013603944331407547, -0.0014533937210217118, -0.01612885110080242, 0.07030202448368073, 0.00802848394960165, -0.015607696026563644, 0.024386463686823845, -0.010351218283176422, 0.01736884005367756, 0.03570810705423355, 0.010324262082576752, 0.019156942144036293, 0.0290229469537735, -0.06455134600400925, -0.01749463751912117, 0.007004144601523876, 0.0017150944331660867, 0.03870924189686775, -0.060094572603702545, -0.04463962838053703, -0.0009069670923054218, -0.02975975163280964, -0.023074589669704437, -0.03759504854679108, 0.031700603663921356, 0.04420832544565201, -0.034522030502557755, -0.07612458616495132, -0.05844125151634216, 0.00868442002683878, -0.05161232501268387, 0.01612885110080242, -0.07598081976175308, -0.008913548663258553, -0.006181977689266205, 0.028771353885531425, -0.020037515088915825, 0.00281244027428329, 0.0005868610460311174, 0.00006416160613298416, -0.029418306425213814, 0.01310076005756855, -0.003603158285841346, 0.03856547549366951, 0.0856131985783577, -0.014421618543565273, 0.01753057911992073, -0.02325429953634739, -0.000645266380161047, -0.06340120732784271, -0.03684027120471001, -0.048413511365652084, 0.01060281042009592, 0.00032712589018046856, -0.013424236327409744, -0.06160412356257439, -0.03139510005712509, 0.054272010922431946, 0.04643671587109566, -0.07612458616495132, -0.01269641611725092, 0.030119169503450394, 0.015904216095805168, 0.026524996384978294, 0.013388293795287609, -0.07554951310157776, -0.013936406001448631, -0.062215134501457214, -0.05470331385731697, 0.020900115370750427, -0.008320510387420654, 0.023829367011785507, 0.02262531779706478, 0.024170812219381332, -0.005692271515727043, 0.019264766946434975, 0.05028247833251953, -0.06293396651744843, -0.004499455448240042, -0.011860771104693413, 0.0291128009557724, 0.02104388177394867, -0.042590949684381485, -0.003365044482052326, 0.0739680826663971, -0.043166015297174454, 0.004537643399089575, -0.03701998293399811, -0.007228780537843704, -0.004045690875500441, 0.03324609994888306, -0.06084934622049332, -0.06857682019472122, 0.007368054706603289, -0.022032279521226883, -0.004106342792510986, -0.004052429925650358, -0.002502442803233862, -0.04564599692821503, 0.022876910865306854, 0.017961880192160606, 0.04014691337943077, 0.01899520494043827, -0.011636135168373585, 0.0009810968767851591, -0.043920792639255524, -0.06627655029296875, 0.0595913864672184, -0.01058483961969614, 0.05243898183107376, 0.047658734023571014, -0.004038951825350523, -0.03845765069127083, 0.0247458815574646, 0.0106207812204957, 0.012319027446210384, -0.02825019881129265, -0.03809823468327522, -0.020954027771949768, 0.0039243875071406364, -0.031808432191610336, -0.054990846663713455, -0.03121539205312729, -0.03914054483175278, 0.051216963678598404, 0.0522233322262764, -0.0006216795882210135, 0.01424191053956747, -0.015634652227163315, -0.015005672350525856, 0.007655588444322348, 0.028178315609693527, -0.01606595329940319, -0.018743611872196198, 0.03579796105623245, -0.017144205048680305, 0.03684027120471001, 0.020019542425870895, 0.009821077808737755, 0.039571844041347504, -0.038206059485673904, 0.03286871314048767, -0.02269720286130905, -0.00908427219837904, -0.018366223201155663, 0.041045453399419785, -0.03719969093799591, -0.011043095961213112, 0.015356103889644146, 0.015230308286845684, 0.09783338755369186, 0.008670941926538944, 0.0006615524762310088, -0.011734974570572376, 0.010854402557015419, -0.0031201913952827454, -0.038996774703264236, -0.008167757652699947, 0.03403681889176369, 0.031808432191610336, 0.02848382107913494, 0.024242697283625603, 0.005993283353745937, -0.002740556839853525, 0.07033796608448029, -0.021277504041790962, -0.00007658677350264043, -0.01886940747499466, 0.03734345734119415, -0.003944604657590389, -0.01976795122027397, 0.01241786777973175, -0.023074589669704437, -0.011878741905093193, -0.022876910865306854, 0.0320240817964077, 0.05308593437075615, -0.04359731823205948, 0.06138847395777702, -0.03436029329895973, -0.03342580795288086, 0.019983600825071335, 0.022283872589468956, -0.037559106945991516, -0.06519829481840134, 0.024386463686823845, -0.008235149085521698, -0.05833342671394348, 0.034593913704156876, -0.02046881429851055, -0.011618164367973804, 0.019426504150032997, 0.10674693435430527, -0.04679613187909126, -0.05028247833251953, 0.03423449769616127, 0.005260970443487167, -0.043166015297174454, 0.049887120723724365, 0.057219233363866806, -0.045502230525016785, 0.09172329306602478, -0.05473925545811653, 0.02760324813425541, -0.006977188400924206, -0.01420596893876791, -0.018024777993559837, -0.009848034009337425, -0.01753956452012062, 0.02914874255657196, 0.02172677591443062, 0.02623746171593666, 0.005076769273728132, -0.019336650148034096, -0.06261049211025238, -0.014161041006445885, -0.029328450560569763, -0.11695438623428345, -0.018707670271396637, 0.02109779603779316, -0.041764289140701294, 0.02686644345521927, 0.01278627011924982, 0.003985039424151182, -0.023667627945542336, 0.018321296200156212, 0.007498343475162983, -0.10372783243656158, -0.015410016290843487, 0.012166275642812252, -0.004753293935209513, 0.009308908134698868, -0.02334415353834629, 0.00007700796413701028, -0.01236395537853241, 0.023739513009786606, 0.04661642387509346, -0.05599721521139145, -0.0696910098195076, 0.06483887881040573, -0.07583704590797424, -0.005337346810847521, 0.02472791075706482, -0.03295856714248657, 0.04273471608757973, -0.004384891130030155, 0.04787438362836838, -0.036067526787519455, -0.01307380385696888, -0.06681567430496216, 0.03687621280550957, -0.030802061781287193, 0.08604449778795242, -0.03842170909047127, -0.03852953389286995, 0.0011793379671871662, 0.029400335624814034, -0.029633956030011177, -0.017323913052678108, 0.05089348927140236, -0.0024709939025342464, -0.04014691337943077, 0.0009496478596702218, 0.009812092408537865, -0.0008289061370305717, -0.014664225280284882, 0.016542181372642517, -0.009632383473217487, -0.030209023505449295, -0.003079756861552596, -0.011195848695933819, 0.030226994305849075, 0.06602495908737183, -0.05039030313491821, -0.0010546650737524033, 0.0020599104464054108, -0.06534206122159958, 0.036786358803510666, 0.019121000543236732, 0.013603944331407547, 0.03195219859480858, -0.028178315609693527, 0.003450406016781926, 0.03949996083974838, -0.04507092759013176, -0.0436692014336586, -0.04061415418982506, -0.06343714892864227, -0.02760324813425541, -0.03734345734119415, -0.05322970077395439, -0.01486190501600504, 0.05434389412403107, 0.01826738379895687, 0.026021812111139297, -0.016263632103800774, 0.023110531270503998, 0.008585580624639988, 0.03276088461279869, -0.010530926287174225, -0.010719620622694492, -0.016991453245282173, 0.02697426825761795, -0.02338009513914585, 0.02036098949611187, -0.02981366403400898, 0.010836431756615639, -0.04726337268948555, -0.009955858811736107, -0.010773533023893833, 0.06634843349456787, 0.081156425178051, -0.012130334042012691, -0.04136893153190613, -0.0015600956976413727, -0.04661642387509346, -0.019336650148034096, -0.041153281927108765, -0.033048421144485474, 0.05747082456946373, -0.003951343707740307, -0.026722675189375877, -0.006415598560124636, -0.01967809721827507, -0.038817066699266434, 0.07249446958303452, -0.030065257102251053, -0.016560152173042297, -0.0365707091987133, 0.011546280235052109, 0.01735985465347767, -0.01270540151745081, 0.014170026406645775, 0.006159513723105192, 0.08654768764972687, 0.02758527733385563, -0.0566801056265831, 0.027818897739052773, 0.013478148728609085, -0.05024653673171997, 0.020846202969551086, -0.018438106402754784, -0.004829669836908579, 0.08122830837965012, -0.02409892901778221, -0.0019296215614303946, 0.002529399236664176, -0.03425246849656105, 0.046939898282289505, 0.035258837044239044, -0.010108611546456814, -0.05894443765282631, -0.05509867146611214, -0.02463805489242077, 0.03340783715248108, -0.0016679208492860198, -0.009380791336297989, -0.027297742664813995, 0.004681410267949104, -0.014403647743165493, 0.06027428060770035, 0.007740950211882591, -0.02188851311802864, -0.004229892510920763 ]
18,495
miarec_s3fs.s3fs
removedir
null
def removedir(self, path): self.check() _path = self.validatepath(path) if _path == "/": raise errors.RemoveRootError() info = self.getinfo(_path) if not info.is_dir: raise errors.DirectoryExpected(path) if not self.isempty(path): raise errors.DirectoryNotEmpty(path) _key = self._path_to_dir_key(_path) self.client.delete_object(Bucket=self._bucket_name, Key=_key)
(self, path)
[ 0.030783511698246002, 0.05270765349268913, -0.016877662390470505, -0.04452114552259445, 0.06085677817463875, -0.031176015734672546, -0.016625339165329933, 0.030671367421746254, 0.004644628148525953, 0.050576917827129364, 0.02076531946659088, 0.045567821711301804, 0.03588606044650078, -0.029213495552539825, -0.053081464022397995, 0.018634585663676262, 0.0216811615973711, -0.01541979145258665, -0.015279611572623253, -0.05610935017466545, -0.019036434590816498, 0.015980511903762817, 0.010223789140582085, 0.023662371560931206, 0.00212255772203207, 0.014980561099946499, 0.015961820259690285, 0.027568718418478966, 0.004873588681221008, -0.04055872559547424, -0.0027802351396530867, 0.06911804527044296, -0.020746629685163498, 0.01221434399485588, -0.0388391837477684, -0.007611769717186689, -0.000340520404279232, -0.0571560263633728, -0.09270565956830978, 0.0034858074504882097, -0.014335733838379383, 0.03687666729092598, -0.022148428484797478, 0.008621064946055412, 0.05536172538995743, -0.02020459994673729, 0.01212089043110609, 0.004439030773937702, -0.0003250422014389187, 0.0075089712627232075, -0.0029297603759914637, 0.02979290671646595, -0.03547486662864685, -0.03723178803920746, 0.0389513298869133, -0.048334039747714996, 0.020840082317590714, 0.0010355792474001646, 0.013999301940202713, -0.0007406172808259726, 0.05659530684351921, 0.029755525290966034, -0.029344331473112106, -0.023232486099004745, -0.009672414511442184, -0.014391805976629257, -0.009392054751515388, -0.005859520751982927, 0.02386796846985817, -0.013522690162062645, -0.10436862707138062, -0.011728387326002121, 0.017363620921969414, 0.04665187746286392, -0.016148727387189865, 0.0027732262387871742, 0.046801403164863586, 0.017662670463323593, 0.027026688680052757, -0.0596979558467865, -0.024148328229784966, -0.06250155717134476, -0.04265207797288895, 0.0018889245111495256, 0.010130335576832294, 0.015569317154586315, 0.05068906024098396, -0.023662371560931206, 0.029213495552539825, 0.04582948982715607, -0.011728387326002121, -0.01199940126389265, -0.03272733837366104, -0.007836057804524899, -0.0069015249609947205, 0.029400402680039406, 0.025718344375491142, -0.05767936632037163, -0.004439030773937702, -0.025138933211565018, 0.04407256841659546, 0.040820393711328506, 0.0026213645469397306, -0.02136342041194439, -0.012158271856606007, 0.05995962768793106, -0.004836207255721092, -0.07225807756185532, 0.04519400745630264, 0.04915642738342285, -0.06982829421758652, 0.030185410752892494, 0.013541380874812603, 0.06448276340961456, -0.01581229642033577, -0.017849577590823174, -0.029568618163466454, -0.051249779760837555, -0.006275387946516275, -0.013046078383922577, 0.037755127996206284, -0.031961023807525635, -0.0058548483066260815, -0.0193635206669569, 0.05708126723766327, 0.05898771435022354, 0.008910770528018475, -0.008172489702701569, -0.06866947561502457, 0.027400502935051918, -0.0333254411816597, -0.03627856448292732, 0.001462543848901987, -0.02515762485563755, 0.03429735451936722, 0.03209185600280762, 0.0913599282503128, -0.054053377360105515, 0.011924639344215393, 0.056071970611810684, 0.07924838364124298, 0.06564158946275711, 0.03913823515176773, -0.012391905300319195, 0.04011014848947525, 0.021718543022871017, -0.0015711833257228136, 0.0019414919661357999, -0.017363620921969414, -0.013475963845849037, -0.07584668695926666, -0.020298052579164505, 0.09532234817743301, 0.008784608915448189, -0.020428888499736786, 0.02319510467350483, -0.038427989929914474, -0.020615793764591217, -0.026391208171844482, -0.0015081024030223489, 0.012728337198495865, -0.004233433865010738, 0.03388616070151329, -0.03816632181406021, -0.033736634999513626, -0.02343808300793171, 0.00824257917702198, 0.021625090390443802, -0.07382809370756149, 0.022335335612297058, -0.013849776238203049, 0.0076398057863116264, 0.00748093519359827, -0.004663318861275911, -0.12059211730957031, -0.01910185068845749, -0.009840630926191807, 0.04997881501913071, 0.001841029734350741, -0.04773593693971634, 0.019008398056030273, -0.004249787889420986, 0.016952425241470337, 0.0028176165651530027, 0.012466668151319027, 0.027624791488051414, -0.04444638267159462, 0.01666272059082985, 0.03577391803264618, 0.012186308391392231, -0.07584668695926666, 0.03511974215507507, 0.015475863590836525, 0.014148826710879803, 0.04986667260527611, 0.052483364939689636, 0.05196002498269081, -0.022260572761297226, -0.03401699662208557, -0.02001769281923771, 0.013737632893025875, 0.019157923758029938, 0.024129638448357582, -0.02332593873143196, -0.02478381060063839, -0.0068407803773880005, -0.029381712898612022, 0.0037474767304956913, 0.023774515837430954, 0.03925037756562233, 0.034222591668367386, 0.0025138934142887592, 0.037699054926633835, -0.024335235357284546, -0.0005648082587867975, -0.07872504740953445, -0.006424913182854652, -0.012223689816892147, 0.03356841951608658, 0.010672365315258503, 0.009480835869908333, 0.030297555029392242, -0.009859321638941765, -0.0479976050555706, -0.022634385153651237, -0.01862523891031742, -0.04975452646613121, 0.04108206182718277, 0.0689685195684433, -0.04164278134703636, 0.03932514041662216, 0.030615296214818954, 0.046128541231155396, -0.03644677996635437, -0.023363320156931877, 0.004492766689509153, 0.0006442435551434755, -0.052782416343688965, -0.06635183095932007, -0.05136192589998245, -0.0275874100625515, -0.08134173601865768, -0.02491464465856552, 0.03743738681077957, -0.028222892433404922, 0.03868965804576874, 0.04934333264827728, -0.012391905300319195, 0.03682059422135353, -0.07405237853527069, -0.007485608104616404, -0.022615695372223854, -0.01105552352964878, 0.02308296039700508, 0.023849278688430786, -0.0014730574330314994, -0.0433623231947422, 0.025680962949991226, -0.023176414892077446, 0.02265307679772377, 0.0015232885489240289, -0.05812794342637062, -0.02265307679772377, 0.03143768385052681, 0.03125077858567238, 0.008261269889771938, 0.029232187196612358, 0.04067086800932884, 0.08956562727689743, 0.02575572580099106, 0.10743389278650284, -0.03175542503595352, 0.059623196721076965, -0.05293193832039833, 0.01587771251797676, 0.02693323604762554, -0.059623196721076965, -0.03057791478931904, -0.01624218001961708, 0.03345627710223198, -0.02515762485563755, -0.04500710219144821, 0.009812594391405582, -0.013074113987386227, 0.03386747092008591, 0.05087596923112869, 0.025662271305918694, -0.059810101985931396, 0.005149275995790958, 0.09150945395231247, 0.031418994069099426, -0.07180950045585632, -0.05824008584022522, 0.02001769281923771, 0.029344331473112106, 0.0012557784793898463, -0.03661499544978142, 0.01604592800140381, -0.009915393777191639, -0.019625188782811165, -0.011195703409612179, 0.04840880259871483, -0.011728387326002121, 0.02497071772813797, 0.029718143865466118, -0.02839110791683197, 0.015298302285373211, 0.04059610515832901, -0.0033479637932032347, 0.04683878645300865, -0.00048011625767685473, 0.032932937145233154, -0.035923443734645844, 0.0021482573356479406, 0.048558324575424194, 0.02594263106584549, 0.03876442089676857, -0.023830587044358253, -0.0776783674955368, -0.015429137274622917, 0.015176813118159771, 0.003810557536780834, -0.04194183275103569, 0.01059760246425867, -0.010251824744045734, -0.0026190283242613077, -0.07184688746929169, 0.0353066511452198, -0.019999003037810326, 0.0017393992748111486, 0.020073765888810158, 0.017812196165323257, 0.023232486099004745, -0.03981109708547592, 0.06870685517787933, 0.014784309081733227, 0.045642584562301636, 0.010812545195221901, 0.007611769717186689, 0.08702369779348373, -0.01541979145258665, -0.04291374608874321, 0.004990405403077602, 0.012289106845855713, -0.07023948431015015, -0.014148826710879803, 0.003553561167791486, -0.030260173603892326, 0.03338151425123215, 0.010242479853332043, 0.04216612130403519, 0.0799960121512413, -0.0071304854936897755, -0.013840431347489357, -0.005728686228394508, -0.004981060046702623, -0.011821839958429337, 0.06792184710502625, -0.015765568241477013, -0.030185410752892494, 0.03396092355251312, -0.015662770718336105, -0.010868617333471775, -0.03252174332737923, -0.023737134411931038, -0.039586812257766724, -0.06728636473417282, 0.013550725765526295, 0.008382759988307953, 0.030970418825745583, 0.057118646800518036, -0.06657611578702927, -0.012849826365709305, 0.0074669173918664455, 0.08418271690607071, 0.05468885973095894, 0.05166097357869148, -0.059436287730932236, -0.015784259885549545, -0.012354523874819279, -0.042577315121889114, 0.03022279217839241, 0.04194183275103569, -0.06489396095275879, 0.01958780735731125, 0.053380515426397324, 0.03212923929095268, -0.02936302125453949, -0.014877762645483017, -0.02265307679772377, -0.030428389087319374, -0.016952425241470337, 0.027550028637051582, -0.0340917594730854, -0.056931741535663605, -0.002576974220573902, 0.05364218354225159, -0.014120791107416153, 0.008345378562808037, -0.017326239496469498, 0.023363320156931877, 0.010663019493222237, -0.07528596371412277, -0.00204662699252367, 0.020541030913591385, -0.02155032753944397, -0.005560470279306173, 0.03113863430917263, 0.00706506846472621, -0.02289605513215065, 0.016653375700116158, 0.03777381777763367, 0.05435242876410484, 0.04754903167486191, 0.0036657049786299467, 0.03992324322462082, 0.0060230642557144165, -0.033736634999513626, 0.04291374608874321, 0.0005595515249297023, -0.0017534171929582953, -0.0033643182832747698, -0.03760560229420662, -0.021942831575870514, 0.009971464984118938, -0.004621264990419149, -0.01587771251797676, -0.034465570002794266, 0.04048396274447441, 0.036054275929927826, -0.02246616967022419, -0.057043883949518204, -0.07954743504524231, -0.01582164131104946, -0.05820270627737045, 0.028222892433404922, -0.11633064597845078, 0.002376049757003784, -0.035437483340501785, 0.03913823515176773, -0.051623594015836716, 0.0008825494442135096, 0.027512647211551666, 0.005966992117464542, -0.0010951557196676731, 0.009504199028015137, -0.018298152834177017, 0.021587708964943886, 0.03040969930589199, -0.014382460154592991, -0.005294128321111202, -0.06152964010834694, 0.03235352784395218, -0.035437483340501785, -0.07722979038953781, -0.012391905300319195, -0.04134373366832733, 0.016709446907043457, -0.006289406213909388, -0.03353103995323181, -0.023344630375504494, 0.030727440491318703, 0.06537991762161255, -0.05532434210181236, 0.0044997758232057095, 0.025849178433418274, 0.05225907638669014, -0.00458154734224081, 0.020167218521237373, -0.04934333264827728, -0.0009865162428468466, -0.03594213351607323, -0.04205397889018059, 0.05397861823439598, -0.014195553958415985, -0.0004868331889156252, -0.019157923758029938, -0.03625987470149994, -0.01843833364546299, 0.008504249155521393, 0.03582998737692833, -0.03758690878748894, 0.0356430821120739, -0.029699454084038734, 0.001865561120212078, -0.002406422048807144, -0.06104368343949318, 0.03143768385052681, 0.03510105237364769, -0.05446457490324974, -0.005060495343059301, -0.015784259885549545, -0.03323198854923248, -0.025120243430137634, -0.006826762575656176, -0.05812794342637062, -0.03827846422791481, 0.02087746374309063, -0.006766017526388168, -0.004684345796704292, 0.0013971265871077776, -0.009364019148051739, -0.07663169503211975, 0.023213796317577362, 0.014158172532916069, 0.045380912721157074, 0.01641974225640297, -0.019307447597384453, 0.013102150522172451, -0.031418994069099426, -0.07532334327697754, 0.041231587529182434, -0.01593378558754921, 0.008938806131482124, 0.035138435661792755, -0.020372815430164337, -0.018709346652030945, 0.030671367421746254, -0.02925087697803974, -0.002030272502452135, -0.06265108287334442, -0.048633087426424026, -0.02392403967678547, 0.045081865042448044, -0.0019893867429345846, 0.004034845624119043, -0.032147929072380066, -0.00928458385169506, 0.058464374393224716, 0.06096892058849335, -0.0018351888284087181, 0.01879345439374447, -0.006644528359174728, 0.020559722557663918, 0.00564925093203783, 0.03033493645489216, -0.010784508660435677, -0.011120940558612347, 0.0008253093110397458, -0.03138161078095436, 0.021811995655298233, 0.01598985679447651, 0.026634186506271362, 0.02667156793177128, -0.005738031584769487, -0.02143818326294422, 0.005868866108357906, 0.009022914804518223, 0.007172539364546537, 0.06964138895273209, -0.017111295834183693, -0.013943229801952839, 0.025064170360565186, 0.043810900300741196, 0.04620330408215523, -0.00852293986827135, 0.0063408054411411285, 0.025082862004637718, 0.008513594046235085, -0.02241009660065174, -0.048932138830423355, 0.0038853201549500227, 0.041493259370326996, 0.036914046853780746, 0.06900590658187866, 0.045941635966300964, -0.002495202701538801, -0.003044240642338991, 0.04683878645300865, 0.0013725950848311186, -0.01404602825641632, -0.025737034156918526, 0.03138161078095436, -0.03554962947964668, 0.0006360664265230298, 0.045941635966300964, -0.04242778941988945, 0.011887257918715477, -0.03009195812046528, 0.0011921135010197759, 0.03326936811208725, -0.05446457490324974, 0.059810101985931396, -0.04582948982715607, -0.034278664737939835, -0.0024624939542263746, 0.025064170360565186, -0.014550676569342613, -0.0918085053563118, 0.05816532298922539, 0.005667941644787788, -0.07857552170753479, 0.01071909163147211, 0.008382759988307953, 0.011887257918715477, -0.0023047917056828737, 0.03665237873792648, -0.05244598165154457, -0.03022279217839241, 0.041979216039180756, -0.007994928397238255, -0.018157973885536194, 0.04530615359544754, 0.02526976726949215, -0.041717544198036194, 0.051623594015836716, -0.0011477231746539474, 0.022129736840724945, -0.010149026289582253, -0.0007826712680980563, 0.011672315187752247, -0.008401449769735336, -0.008840681053698063, 0.026895854622125626, 0.03969895467162132, 0.02564358152449131, 0.023213796317577362, -0.007513644173741341, -0.02820420078933239, -0.002506884280592203, -0.02966207265853882, -0.09091135114431381, -0.01684028096497059, 0.0077472771517932415, -0.026727639138698578, 0.008116417564451694, 0.010083609260618687, 0.04396042600274086, -0.001242928672581911, 0.04784807935357094, 0.027082761749625206, -0.07865028083324432, -0.02418570965528488, 0.0005326837417669594, -0.016092656180262566, 0.002370208967477083, -0.02631644532084465, -0.03474593162536621, 0.0035395431332290173, 0.008401449769735336, 0.04867047071456909, -0.023064270615577698, -0.05700650438666344, 0.06889376044273376, -0.04904428496956825, -0.0076491511426866055, -0.010952725075185299, -0.008438831195235252, 0.02564358152449131, 0.009289256297051907, 0.022690456360578537, -0.020185910165309906, -0.0060651181265711784, -0.07551025599241257, 0.015074014663696289, -0.03386747092008591, 0.062052980065345764, -0.018774764612317085, -0.046988312155008316, 0.03351234644651413, 0.024260472506284714, -0.01958780735731125, -0.0030255501624196768, 0.026465969160199165, -0.03491414710879326, -0.019924240186810493, 0.024895954877138138, 0.0638846680521965, 0.010971415787935257, -0.03655892610549927, 0.031213397160172462, 0.020354125648736954, -0.04403518885374069, -0.005429635755717754, 0.0032848829869180918, 0.042091358453035355, 0.05046477168798447, -0.0459042526781559, 0.0003186172980349511, 0.0073687913827598095, -0.08343508839607239, 0.07607097178697586, -0.010177062824368477, 0.010803199373185635, 0.0076584964990615845, -0.04351184889674187, 0.013261021114885807, 0.0732673779129982, -0.033549729734659195, -0.05554863065481186, -0.075697161257267, -0.03487676382064819, 0.010401350446045399, -0.05573553964495659, -0.051735736429691315, -0.0057660676538944244, 0.06336132436990738, 0.0038035486359149218, 0.006976287811994553, -0.021512946113944054, 0.033848781138658524, -0.03027886338531971, 0.031904950737953186, -0.02893313579261303, 0.022746529430150986, -0.002232365310192108, 0.03865227848291397, -0.012233034707605839, 0.014513295143842697, 0.01928875781595707, 0.05909985676407814, -0.021475564688444138, -0.013438582420349121, -0.029755525290966034, 0.06769756227731705, 0.07416452467441559, 0.016316942870616913, -0.011522789485752583, 0.022559622302651405, -0.06055772677063942, -0.025138933211565018, -0.05502529442310333, -0.014195553958415985, 0.0479976050555706, 0.0013936221366748214, -0.01199940126389265, 0.04904428496956825, -0.001825843472033739, -0.013419891707599163, 0.0774540826678276, -0.04291374608874321, -0.022204499691724777, -0.01508335955440998, 0.01685897260904312, -0.0007371127721853554, -0.012597502209246159, 0.03315722569823265, 0.0481097511947155, 0.05050215497612953, -0.011317192576825619, -0.0022498879116028547, 0.020970916375517845, 0.02693323604762554, -0.06111844629049301, 0.030503151938319206, 0.020858772099018097, -0.015793604776263237, 0.04889475926756859, -0.015457172878086567, 0.010261170566082, 0.016102001070976257, -0.0573803149163723, 0.006149225868284702, 0.039960622787475586, -0.030933037400245667, -0.04818451404571533, -0.0457921102643013, -0.027194906026124954, 0.027120143175125122, 0.023288559168577194, 0.04560520127415657, -0.06074463576078415, 0.0037568220868706703, -0.04452114552259445, 0.06014653295278549, 0.02020459994673729, -0.038540132343769073, -0.03052184171974659 ]
18,496
fs.base
removetree
Recursively remove a directory and all its contents. This method is similar to `~fs.base.FS.removedir`, but will remove the contents of the directory if it is not empty. Arguments: dir_path (str): Path to a directory on the filesystem. Raises: fs.errors.ResourceNotFound: If ``dir_path`` does not exist. fs.errors.DirectoryExpected: If ``dir_path`` is not a directory. Caution: A filesystem should never delete its root folder, so ``FS.removetree("/")`` has different semantics: the contents of the root folder will be deleted, but the root will be untouched:: >>> home_fs = fs.open_fs("~") >>> home_fs.removetree("/") >>> home_fs.exists("/") True >>> home_fs.isempty("/") True Combined with `~fs.base.FS.opendir`, this can be used to clear a directory without removing the directory itself:: >>> home_fs = fs.open_fs("~") >>> home_fs.opendir("/Videos").removetree("/") >>> home_fs.exists("/Videos") True >>> home_fs.isempty("/Videos") True
def removetree(self, dir_path): # type: (Text) -> None """Recursively remove a directory and all its contents. This method is similar to `~fs.base.FS.removedir`, but will remove the contents of the directory if it is not empty. Arguments: dir_path (str): Path to a directory on the filesystem. Raises: fs.errors.ResourceNotFound: If ``dir_path`` does not exist. fs.errors.DirectoryExpected: If ``dir_path`` is not a directory. Caution: A filesystem should never delete its root folder, so ``FS.removetree("/")`` has different semantics: the contents of the root folder will be deleted, but the root will be untouched:: >>> home_fs = fs.open_fs("~") >>> home_fs.removetree("/") >>> home_fs.exists("/") True >>> home_fs.isempty("/") True Combined with `~fs.base.FS.opendir`, this can be used to clear a directory without removing the directory itself:: >>> home_fs = fs.open_fs("~") >>> home_fs.opendir("/Videos").removetree("/") >>> home_fs.exists("/Videos") True >>> home_fs.isempty("/Videos") True """ _dir_path = abspath(normpath(dir_path)) with self._lock: walker = walk.Walker(search="depth") gen_info = walker.info(self, _dir_path) for _path, info in gen_info: if info.is_dir: self.removedir(_path) else: self.remove(_path) if _dir_path != "/": self.removedir(dir_path)
(self, dir_path)
[ 0.047165777534246445, 0.01803731359541416, 0.004930451512336731, -0.049323443323373795, 0.05189749598503113, 0.03719131276011467, -0.021406298503279686, 0.047241486608982086, 0.02922309748828411, 0.021614493802189827, 0.04379679262638092, 0.005308988969773054, 0.01587018556892872, 0.03291383758187294, -0.045083820819854736, 0.016920628026127815, -0.019683951511979103, 0.012094274163246155, -0.012416031211614609, -0.049323443323373795, -0.014980623498558998, 0.010759929195046425, 0.02744397148489952, 0.027254702523350716, 0.0005465135909616947, -0.02169020101428032, -0.017819654196500778, 0.02418854832649231, -0.030529052019119263, -0.014072133228182793, 0.008834119886159897, 0.004189937375485897, -0.009108559228479862, 0.001288210623897612, -0.051064714789390564, 0.014781891368329525, -0.051443252712488174, -0.022163372486829758, -0.04084420204162598, -0.023601815104484558, -0.025305233895778656, 0.004887865856289864, -0.028238900005817413, 0.006094454322010279, 0.014819744974374771, -0.03821336477994919, 0.03480652719736099, 0.012406568042933941, -0.05696989968419075, -0.010939734987914562, 0.032081056386232376, 0.05299525707960129, -0.02452923357486725, -0.011829297989606857, 0.03736165538430214, 0.012567446567118168, -0.057197023183107376, 0.02346932701766491, 0.07722166180610657, -0.025683771818876266, 0.07211140543222427, 0.02422640286386013, -0.0837325006723404, 0.02388571947813034, 0.008129093796014786, -0.016844920814037323, -0.027936071157455444, -0.028617437928915024, -0.025475576519966125, -0.008649582974612713, -0.15308058261871338, 0.030737249180674553, 0.023866791278123856, 0.03749414533376694, -0.00480742659419775, 0.01120471116155386, 0.03266778960824013, -0.01892687752842903, -0.016646187752485275, -0.039330050349235535, 0.0171382874250412, -0.003738058265298605, -0.004958841949701309, -0.008980803191661835, 0.002158846938982606, -0.024207476526498795, 0.06234513223171234, -0.0008475692011415958, -0.0029502268880605698, -0.009983927942812443, 0.03227032721042633, -0.03418194130063057, -0.01253905612975359, -0.00014357810141518712, -0.044364601373672485, 0.007783678360283375, 0.049626272171735764, -0.017573606222867966, -0.02744397148489952, -0.04739290103316307, 0.0229583028703928, 0.07029442489147186, -0.07934147119522095, -0.01772502064704895, -0.00014313451538328081, 0.04444030672311783, -0.03836477920413017, -0.021500932052731514, 0.05151895806193352, 0.016002675518393517, -0.03709667921066284, -0.028730999678373337, 0.03552574664354324, 0.08471670001745224, -0.014034279622137547, -0.023734303191304207, -0.038307998329401016, -0.04175269231200218, 0.0033713500015437603, -0.00037321436684578657, 0.05689419433474541, -0.008124361746013165, -0.01662726141512394, -0.012813495472073555, 0.04349396377801895, 0.00855494849383831, 0.07101364433765411, 0.0206681489944458, -0.06938593089580536, 0.03359520807862282, -0.023317912593483925, 0.008696899749338627, 0.009222120977938175, 0.032081056386232376, 0.06268581748008728, 0.003844521939754486, 0.04338040202856064, -0.05201105773448944, -0.009118023328483105, 0.04285044968128204, 0.049285586923360825, 0.04451601579785347, 0.05132969096302986, 0.0015046867774799466, 0.04057922586798668, -0.02206873893737793, -0.03448477014899254, 0.03463618457317352, -0.051064714789390564, 0.04239620640873909, -0.08342967182397842, -0.029260952025651932, 0.06809890270233154, 0.03808087855577469, -0.016882773488759995, 0.028579585254192352, -0.04440245404839516, 0.02795499749481678, -0.016892237588763237, -0.02596767619252205, -0.001317783840931952, -0.04232049733400345, 0.0459166057407856, -0.03168359398841858, -0.005564501974731684, -0.02227693423628807, -0.006941432133316994, -0.006960358936339617, -0.06518416851758957, 0.017904825508594513, 0.020895272493362427, 0.015690380707383156, -0.040011417120695114, -0.04633299633860588, -0.07139217853546143, 0.0139964260160923, -0.005299525801092386, 0.04867992922663689, -0.0015697479248046875, -0.004958841949701309, -0.018983658403158188, 0.001006081816740334, -0.0114791514351964, -0.03192964196205139, 0.03240281343460083, 0.03066154010593891, -0.029620563611388206, 0.025002405047416687, -0.0013544546673074365, -0.00040663211257196963, -0.08925915509462357, 0.00905177928507328, 0.0021848713513463736, -0.01823604665696621, 0.03554467484354973, 0.057840537279844284, 0.01768716610968113, -0.04372108727693558, 0.01925809681415558, 0.028863487765192986, 0.016163552179932594, 0.006075527518987656, 0.08002283424139023, 0.02435889095067978, -0.06022532284259796, 0.007868848741054535, -0.02384786494076252, -0.006785285659134388, -0.010400318540632725, 0.01505633071064949, 0.023961426690220833, 0.002054749056696892, 0.03541218861937523, -0.05496365204453468, -0.02388571947813034, -0.09122754633426666, -0.04531094431877136, 0.04599231109023094, -0.02498347871005535, 0.022182300686836243, -0.03185393288731575, 0.04137415438890457, -0.041109178215265274, -0.09243886917829514, 0.004760109819471836, -0.04103346914052963, -0.06238298863172531, 0.011091150343418121, 0.01782911829650402, -0.05413086712360382, 0.040011417120695114, 0.014091059565544128, 0.07101364433765411, -0.038459412753582, -0.007963483221828938, -0.05303310975432396, 0.021671274676918983, -0.07105149328708649, -0.039632879197597504, -0.005630746018141508, -0.030434418469667435, -0.0413362979888916, 0.01662726141512394, 0.004485670011490583, -0.022712253034114838, 0.007523433770984411, 0.04667367786169052, 0.011299345642328262, -0.002619006671011448, -0.042206935584545135, -0.0533737950026989, -0.01776287332177162, -0.01693955436348915, 0.03777804598212242, 0.06836388260126114, 0.005914648994803429, -0.03194857016205788, 0.06681187450885773, -0.03143754228949547, 0.05920327082276344, 0.031532175838947296, -0.05662921816110611, -0.007589677814394236, 0.018519949167966843, 0.028995975852012634, -0.02952592819929123, 0.03384125605225563, 0.0082095330581069, 0.06798534095287323, 0.01433710940182209, 0.05908970907330513, -0.06495704501867294, 0.08570089936256409, 0.0017010531155392528, 0.057840537279844284, 0.047544315457344055, -0.0341440849006176, -0.03281920403242111, 0.05973322317004204, 0.05833263695240021, -0.0519353523850441, -0.04629513993859291, -0.0038397901225835085, 0.04981553927063942, 0.018463168293237686, 0.03647209331393242, -0.021633420139551163, 0.052578866481781006, 0.011233101598918438, 0.06586553156375885, 0.07722166180610657, -0.03066154010593891, -0.03421979397535324, 0.017308630049228668, 0.02134951762855053, -0.027160068973898888, -0.03442798927426338, 0.014734573662281036, 0.009345145896077156, -0.001552003901451826, -0.014109986834228039, 0.03959502652287483, -0.03469296544790268, 0.006676455959677696, 0.028787780553102493, -0.014062670059502125, -0.007613336201757193, 0.0328381322324276, -0.02778465487062931, 0.05670492351055145, -0.033860184252262115, -0.016191942617297173, -0.04917202517390251, 0.009804122149944305, 0.030718320980668068, -0.01385447382926941, 0.04629513993859291, -0.04012497887015343, -0.03192964196205139, -0.025305233895778656, -0.04550021141767502, 0.013807157054543495, -0.002633201889693737, 0.006189088802784681, -0.07843297719955444, -0.0353175513446331, -0.03412516042590141, 0.050345491617918015, 0.015718771144747734, 0.002486518584191799, 0.007206408306956291, 0.0004918030463159084, 0.0038800097536295652, -0.019040439277887344, 0.02231478877365589, 0.005096061620861292, 0.048944905400276184, -0.011393980123102665, 0.010873490944504738, 0.040465664118528366, 0.007130701094865799, 0.011706273071467876, -0.0258351881057024, 0.0035345943178981543, -0.0199489276856184, 0.030358711257576942, 0.009572268463671207, 0.00364815560169518, 0.07563179731369019, 0.01775341108441353, 0.06700114160776138, 0.04353181645274162, 0.015785016119480133, -0.022560836747288704, -0.04527309164404869, -0.010513880290091038, 0.02206873893737793, 0.11780088394880295, -0.03490116074681282, -0.003451789263635874, -0.004391035530716181, 0.03450369834899902, -0.039405759423971176, -0.005588160362094641, 0.004372108727693558, -0.04871778190135956, -0.08600372821092606, -0.0022889692336320877, 0.02575947903096676, 0.03202427551150322, 0.05333593860268593, -0.022295860573649406, -0.035052575170993805, -0.008010800927877426, 0.06261011213064194, 0.019286487251520157, 0.014166767708957195, -0.03609355539083481, 0.037342727184295654, -0.0037073020357638597, -0.005980893038213253, 0.019513610750436783, 0.053222376853227615, -0.047506462782621384, 0.009416121058166027, 0.019551463425159454, 0.039367903023958206, -0.01624872349202633, -0.047506462782621384, -0.008351484313607216, -0.03227032721042633, -0.007206408306956291, -0.021576639264822006, 0.014507451094686985, -0.053941600024700165, -0.01374091301113367, 0.05458511412143707, 0.0008528924081474543, 0.010722075589001179, -0.0265544094145298, 0.045386649668216705, 0.0327056422829628, -0.018870096653699875, -0.006094454322010279, 0.007121237460523844, 0.007215871941298246, 0.007078652270138264, 0.010788319632411003, -0.011706273071467876, 0.0114791514351964, 0.04519738256931305, 0.04917202517390251, 0.01412891410291195, 0.04796070605516434, 0.02299615554511547, 0.025172745808959007, 0.015964820981025696, 0.00663860235363245, 0.06722826510667801, 0.030301930382847786, -0.024888843297958374, -0.03192964196205139, -0.03535540774464607, 0.025740552693605423, 0.02575947903096676, 0.001238527474924922, 0.002173042157664895, -0.003572448156774044, -0.03194857016205788, 0.07400409132242203, 0.01881331577897072, -0.057197023183107376, -0.04807426780462265, -0.025115966796875, 0.004478572402149439, -0.011024906300008297, -0.10493060946464539, -0.04939914867281914, -0.07146789133548737, 0.03117256611585617, -0.05522862821817398, 0.016106773167848587, 0.074571892619133, -0.024264255538582802, -0.02452923357486725, 0.04224478825926781, -0.027841435745358467, 0.04478099197149277, -0.009553341194987297, -0.03384125605225563, 0.012406568042933941, -0.015150965191423893, 0.0021328225266188383, -0.009983927942812443, -0.061853036284446716, -0.07873580604791641, -0.02761431410908699, 0.024074988439679146, 0.007797873578965664, -0.0344090610742569, -0.0028484950307756662, -0.008876705542206764, 0.05556930974125862, -0.03482545539736748, 0.04917202517390251, 0.0039249612018466, 0.03601784631609917, -0.0470900684595108, -0.021027760580182076, -0.08956198394298553, 0.037210240960121155, -0.05844619497656822, -0.004864207468926907, -0.00952968280762434, 0.016646187752485275, 0.004968305118381977, -0.054244428873062134, -0.06298864632844925, 0.006084991153329611, 0.010002854280173779, 0.02097097970545292, -0.016513699665665627, 0.02231478877365589, -0.02494562417268753, -0.020914198830723763, -0.018870096653699875, -0.0034612526651471853, 0.043266840279102325, 0.001497589168138802, -0.01964609883725643, -0.018879560753703117, -0.027349337935447693, -0.02193625085055828, -0.04656011611223221, -0.035260770469903946, -0.06590338796377182, -0.04239620640873909, -0.010788319632411003, -0.023431474342942238, -0.0018583827186375856, 0.015150965191423893, -0.047165777534246445, -0.046484410762786865, 0.014091059565544128, 0.024850988760590553, 0.051064714789390564, -0.0008688619709573686, 0.017261311411857605, -0.0042940350249409676, -0.013769303448498249, -0.0213873703032732, 0.007991873659193516, -0.01802785135805607, -0.02312864363193512, 0.06957519799470901, -0.009700024500489235, 0.013229887001216412, 0.03533647954463959, 0.016135163605213165, -0.00987036619335413, -0.09629995375871658, -0.007405140902847052, -0.005096061620861292, 0.059619661420583725, -0.0022735910024493933, 0.015330770052969456, 0.011176320724189281, 0.035128284245729446, 0.055380042642354965, 0.06756895035505295, 0.01315417978912592, -0.008900363929569721, 0.00019178249931428581, -0.005100793205201626, 0.03836477920413017, 0.014772427268326283, -0.01287973951548338, -0.004414693918079138, -0.021368443965911865, -0.025948747992515564, 0.014072133228182793, -0.02381001226603985, -0.0038374243304133415, 0.027652166783809662, -0.0147156473249197, 0.004577938467264175, 0.04054136946797371, -0.005233281292021275, 0.042964011430740356, 0.03917863592505455, -0.08804783225059509, -0.041071321815252304, 0.021803762763738632, 0.04909631982445717, -0.0051954276859760284, -0.048528511077165604, -0.018832242116332054, -0.005275866948068142, 0.031361836940050125, -0.03535540774464607, -0.050761885941028595, 0.046446558088064194, 0.02647870033979416, 0.013457009568810463, 0.1196935698390007, 0.05276813358068466, 0.010513880290091038, 0.004814524203538895, 0.03162681311368942, -0.01816980168223381, 0.022977229207754135, -0.018226582556962967, -0.02155771292746067, -0.03355735167860985, 0.005909917410463095, 0.07551824301481247, -0.0034565208479762077, -0.059960346668958664, -0.0027893485967069864, -0.0337466225028038, -0.014526378363370895, -0.03575287014245987, 0.03200535103678703, -0.045727334916591644, -0.04455386847257614, -0.014261402189731598, 0.04519738256931305, 0.04197981208562851, -0.052578866481781006, 0.06151235103607178, -0.004788499791175127, -0.05204891040921211, 0.027311483398079872, 0.014876525849103928, -0.004767206963151693, 0.013826083391904831, 0.04012497887015343, -0.019456829875707626, -0.0050298175774514675, 0.03794838860630989, 0.0013662839774042368, -0.02863636426627636, 0.03565823659300804, 0.027690021321177483, -0.0357150174677372, -0.01071261242032051, 0.044667430222034454, 0.019683951511979103, 0.008815192617475986, 0.040011417120695114, 0.01202803011983633, -0.0038918391801416874, 0.036831703037023544, 0.018188728019595146, 0.05579643324017525, -0.0077600195072591305, -0.0040716445073485374, -0.0559857040643692, -0.012359250336885452, -0.013570571318268776, -0.0603010319173336, -0.06900739669799805, -0.01587018556892872, 0.012103738263249397, -0.020649222657084465, 0.006364162545651197, 0.009775731712579727, -0.0018560169264674187, -0.03245959430932999, 0.032762423157691956, 0.02575947903096676, -0.06393498927354813, -0.00816221535205841, -0.015936430543661118, -0.04939914867281914, -0.034238722175359726, -0.0533737950026989, -0.020384246483445168, -0.007135432679206133, -0.012056420557200909, 0.05405516177415848, 0.012009103782474995, -0.021084541454911232, 0.009326218627393246, -0.02490776963531971, -0.01531184371560812, 0.0062032840214669704, -0.014658866450190544, -0.0016833090921863914, -0.0096479756757617, -0.013570571318268776, -0.026270505040884018, 0.01625818759202957, -0.0341440849006176, 0.04266118258237839, 0.018983658403158188, 0.03647209331393242, -0.030604761093854904, -0.007977678440511227, 0.05874902755022049, 0.04667367786169052, -0.02668689750134945, -0.006941432133316994, 0.005588160362094641, -0.005432013887912035, 0.0034399598371237516, -0.0029857149347662926, 0.08948627859354019, 0.020100343972444534, -0.05341164767742157, -0.007528165355324745, 0.026743676513433456, -0.035052575170993805, -0.04886919632554054, 0.011289882473647594, -0.017715556547045708, 0.01120471116155386, -0.005233281292021275, 0.008370411582291126, 0.04489455372095108, -0.055720727890729904, 0.1308225691318512, 0.006089722737669945, 0.03155110403895378, -0.02418854832649231, -0.014762964099645615, 0.01217944547533989, 0.0370209701359272, -0.026365140452980995, -0.05151895806193352, -0.06870456039905548, -0.03870546445250511, 0.013419155962765217, -0.060376737266778946, -0.026838311925530434, 0.005630746018141508, 0.08191552758216858, -0.02545665018260479, 0.007225335109978914, -0.01096812542527914, 0.013845010660588741, -0.028182119131088257, 0.0003675954358186573, -0.02257976494729519, 0.03211890906095505, 0.031286127865314484, 0.032213546335697174, 0.03802409768104553, -0.01813194900751114, 0.012075347825884819, 0.052541010081768036, -0.002562226029112935, 0.015955356881022453, 0.006614943500608206, 0.04515952989459038, 0.021879469975829124, 0.021955177187919617, -0.06219371780753136, 0.04406176880002022, -0.03717238828539848, -0.016210870817303658, -0.06719041615724564, -0.046181581914424896, 0.022541910409927368, -0.028522804379463196, 0.019854294136166573, 0.012311933562159538, 0.00042289739940315485, 0.014431743882596493, 0.041525568813085556, -0.05666707083582878, -0.029374513775110245, 0.00891455914825201, 0.014526378363370895, -0.0012728325091302395, 0.0032790815457701683, -0.0016572846798226237, 0.07510184496641159, 0.00643986975774169, -0.020308539271354675, -0.007802605163305998, 0.03533647954463959, 0.0029573244974017143, -0.025683771818876266, 0.046446558088064194, -0.007897239178419113, 0.03370876982808113, 0.030699394643306732, -0.024169621989130974, 0.0022037981543689966, 0.03804302215576172, -0.06927236914634705, -0.0416012741625309, 0.045083820819854736, 0.000709166401065886, -0.0010190940229222178, -0.036661360412836075, -0.028409242630004883, -0.0033713500015437603, 0.01853887550532818, 0.04375893995165825, -0.05519077181816101, -0.022693324834108353, -0.052578866481781006, 0.029412366449832916, 0.05276813358068466, 0.0006086173816584051, -0.0019092487636953592 ]
18,497
miarec_s3fs.s3fs
scandir
null
def scandir(self, path, namespaces=None, page=None): _path = self.validatepath(path) namespaces = namespaces or () _s3_key = self._path_to_dir_key(_path) prefix_len = len(_s3_key) info = self.getinfo(path) if not info.is_dir: raise errors.DirectoryExpected(path) paginator = self.client.get_paginator("list_objects") _paginate = paginator.paginate( Bucket=self._bucket_name, Prefix=_s3_key, Delimiter=self.delimiter ) def gen_info(): for result in _paginate: common_prefixes = result.get("CommonPrefixes", ()) for prefix in common_prefixes: _prefix = prefix.get("Prefix") _name = _prefix[prefix_len:] if _name: info = { "basic": { "name": _name.rstrip(self.delimiter), "is_dir": True, } } yield Info(info) for _obj in result.get("Contents", ()): name = _obj["Key"][prefix_len:] if name: with s3errors(path): obj = self.s3.Object(self._bucket_name, _obj["Key"]) info = self._info_from_object(obj, namespaces) yield Info(info) iter_info = iter(gen_info()) if page is not None: start, end = page iter_info = itertools.islice(iter_info, start, end) for info in iter_info: yield info
(self, path, namespaces=None, page=None)
[ -0.03659341111779213, 0.011979429051280022, -0.09104365855455399, -0.054843321442604065, 0.05869920179247856, 0.06124483048915863, 0.0025152121670544147, -0.045446958392858505, -0.01605992205440998, 0.018895676359534264, 0.016144152730703354, 0.06435199081897736, 0.03015446849167347, 0.01292468048632145, -0.02055220678448677, 0.009115596301853657, 0.05570434406399727, 0.0242209080606699, -0.03211984410881996, -0.009742644615471363, -0.006321956403553486, 0.0410669781267643, 0.03240061178803444, -0.00947591569274664, 0.0061581749469041824, -0.03790366277098656, -0.004101550672203302, 0.02669166401028633, 0.01608799770474434, -0.003757609985768795, -0.012643912807106972, 0.03681802749633789, -0.01631261222064495, 0.020421182736754417, -0.032962147146463394, -0.029181139543652534, 0.009976617991924286, -0.05836227908730507, -0.0006100851460359991, 0.028151657432317734, -0.011071613058447838, 0.0484418161213398, 0.01313057728111744, -0.020627079531550407, 0.049826934933662415, 0.037379562854766846, 0.023865267634391785, -0.025100646540522575, -0.009363608434796333, 0.03741699829697609, 0.005124013405293226, 0.02279835008084774, 0.009658414870500565, -0.0809360146522522, 0.05181102827191353, -0.009620978496968746, 0.04091723635792732, -0.02474500797688961, 0.022255532443523407, 0.018362218514084816, 0.05016385763883591, -0.023359885439276695, 0.01590082049369812, -0.002725787926465273, -0.040430571883916855, -0.023341167718172073, -0.01672440581023693, -0.08438010513782501, -0.08595240116119385, -0.00613009836524725, 0.004876001738011837, -0.025830643251538277, 0.03975673019886017, 0.027421660721302032, -0.05349563807249069, 0.0023490912280976772, 0.003820782760158181, 0.001204962027259171, 0.0034464255440980196, -0.007253169547766447, -0.06375302374362946, -0.03771648183465004, -0.054843321442604065, 0.008474510163068771, 0.03107164427638054, 0.03689289838075638, 0.046158235520124435, -0.04900335147976875, -0.00919982697814703, 0.1128312423825264, -0.03376701474189758, 0.01278429664671421, 0.024464240297675133, 0.0413290299475193, -0.013607881963253021, 0.020683232694864273, 0.014384673908352852, -0.04597105830907822, -0.025793207809329033, 0.004178761504590511, -0.0009809327311813831, -0.014263007789850235, 0.058848943561315536, -0.038708530366420746, -0.0009949711384251714, -0.04776797071099281, -0.051474109292030334, 0.018708499148488045, 0.020627079531550407, 0.02360321767628193, -0.04009364917874336, 0.030491389334201813, 0.03576982393860817, 0.041141849011182785, 0.01651850901544094, -0.06315404921770096, 0.039606984704732895, -0.03425367921590805, -0.0372111015021801, -0.07505860924720764, -0.0071315038949251175, -0.02096400037407875, 0.019185803830623627, 0.03191394731402397, -0.011474046856164932, -0.0013406665530055761, 0.04967719316482544, -0.021806303411722183, -0.05416947975754738, 0.0546187087893486, -0.03253163769841194, -0.0119607113301754, -0.003647642442956567, -0.04529721662402153, 0.03279368579387665, -0.011941992677748203, 0.0005235151038505137, -0.025007057934999466, -0.029424471780657768, 0.08108575642108917, 0.051586415618658066, 0.049227964133024216, 0.0038699170108884573, 0.004513343330472708, 0.03131497651338577, -0.0034043104387819767, 0.02710345759987831, -0.02708473987877369, 0.014777748845517635, -0.00011223402543691918, -0.017613504081964493, -0.008198421448469162, 0.11380457133054733, 0.03651854023337364, -0.021394511684775352, -0.017192352563142776, -0.045746441930532455, -0.007810025941580534, -0.06674788147211075, -0.0004743807076010853, -0.008245215751230717, -0.030117033049464226, -0.011427251622080803, 0.013766984455287457, -0.014234930276870728, 0.03352368250489235, -0.055854085832834244, 0.03878340125083923, -0.04016852378845215, -0.01518018264323473, 0.045783881098032, -0.010463282465934753, -0.016902225092053413, -0.016209663823246956, -0.06476378440856934, 0.01984092965722084, -0.003226490691304207, 0.0346841886639595, 0.03700520470738411, -0.03344881162047386, 0.005643433891236782, -0.05207308009266853, 0.03172677010297775, 0.012849809601902962, -0.036050595343112946, 0.021843738853931427, 0.006340674124658108, 0.044211577624082565, 0.08168473094701767, 0.05080026388168335, -0.04050544276833534, 0.055666908621788025, -0.005690228659659624, 0.02901267819106579, -0.03762289509177208, -0.017445042729377747, 0.0028497937601059675, -0.024351932108402252, -0.019971953704953194, 0.07389809936285019, 0.01037905178964138, 0.04630798101425171, 0.024501675739884377, -0.05918586626648903, 0.06311661750078201, 0.03024805709719658, -0.07266272604465485, 0.022536300122737885, -0.03434726968407631, 0.03127754107117653, -0.03904544934630394, 0.00493215536698699, 0.03790366277098656, -0.04956488683819771, 0.001082126167602837, 0.014337878674268723, 0.014543775469064713, 0.0008914379868656397, 0.049826934933662415, -0.06794582307338715, 0.005236320663243532, 0.04383722320199013, -0.06738428771495819, -0.0008148117340169847, -0.0135891642421484, -0.03893314301967621, 0.039082884788513184, -0.035002391785383224, 0.001568790408782661, -0.02669166401028633, 0.02053348906338215, -0.01211045403033495, 0.023865267634391785, 0.03764161095023155, 0.03762289509177208, -0.04709412902593613, 0.028657039627432823, -0.011146483942866325, -0.035638801753520966, -0.024763725697994232, -0.005198884755373001, -0.031352411955595016, -0.04181569442152977, 0.02321014367043972, -0.05416947975754738, 0.021862458437681198, -0.012250837869942188, -0.006672916002571583, 0.030341647565364838, 0.0036546615883708, 0.020327594131231308, 0.019897082820534706, -0.02023400366306305, -0.026934996247291565, 0.008137588389217854, -0.03824058175086975, -0.062218159437179565, 0.00033399678068235517, -0.004129627253860235, 0.031352411955595016, -0.009845593012869358, -0.02332244999706745, -0.000491051294375211, -0.012606477364897728, 0.03150215372443199, 0.02116989716887474, 0.033991627395153046, -0.014581210911273956, 0.004978950135409832, 0.02218066155910492, 0.019073497503995895, 0.0419280007481575, -0.023771679028868675, 0.013926086015999317, -0.024370649829506874, -0.0030135749839246273, -0.03610674664378166, -0.03904544934630394, -0.09066930413246155, -0.0013196090003475547, -0.011820326559245586, -0.0011850743321701884, -0.057501256465911865, -0.02463269978761673, 0.03897057846188545, 0.010032771155238152, 0.012456733733415604, 0.05499306693673134, -0.007192336954176426, 0.04428645223379135, 0.00950867123901844, -0.009836234152317047, -0.0166776105761528, -0.07352374494075775, 0.01572299934923649, -0.009985976852476597, -0.0599345788359642, -0.041553642600774765, -0.011052894406020641, -0.026204999536275864, -0.07105298340320587, 0.0151333874091506, 0.07086580991744995, 0.038278017193078995, 0.017033251002430916, 0.024295778945088387, 0.003114183433353901, 0.035114701837301254, -0.010266744531691074, 0.00991110596805811, -0.0005706021911464632, -0.00029509872547350824, 0.0239214226603508, 0.026186281815171242, -0.03232574090361595, -0.0564156211912632, -0.020421182736754417, -0.01503043994307518, -0.05098744481801987, 0.013214807026088238, -0.008067396469414234, 0.03722981736063957, -0.04934027045965195, 0.00942912045866251, 0.025306543335318565, 0.02852601557970047, -0.02259245328605175, 0.06753402948379517, 0.007707078009843826, 0.013196089304983616, 0.03745443373918533, -0.0006995799485594034, -0.04746848717331886, 0.01365467719733715, 0.03288727626204491, 0.021600406616926193, -0.019298110157251358, -0.011941992677748203, 0.008001884445548058, 0.049939244985580444, 0.052297692745923996, -0.028900371864438057, -0.02536269649863243, 0.0021116083953529596, -0.057388950139284134, 0.006878812797367573, 0.05151154473423958, 0.02985498309135437, -0.019859647378325462, -0.023696808144450188, 0.08819854259490967, 0.07569501549005508, 0.018371576443314552, 0.06435199081897736, 0.020084261894226074, 0.02380911447107792, 0.027646275237202644, -0.007061311509460211, -0.03086574748158455, -0.015198900364339352, 0.05810023099184036, -0.013383268378674984, -0.004946193657815456, -0.040842365473508835, 0.04346286505460739, -0.02075810357928276, 0.004513343330472708, -0.007122144568711519, 0.018277987837791443, -0.0050397831946611404, -0.011679942719638348, -0.028263965621590614, -0.007150221616029739, -0.03494624048471451, 0.04488542303442955, 0.017725810408592224, 0.04900335147976875, -0.034197524189949036, 0.005166128743439913, 0.08610214293003082, -0.02341604046523571, 0.007908294908702374, 0.09740772843360901, 0.0014167078770697117, 0.057089466601610184, -0.010566230863332748, 0.09201698750257492, -0.02556859329342842, -0.024351932108402252, -0.04832950979471207, -0.0005352137377485633, 0.014197494834661484, 0.011258791200816631, -0.012540964409708977, -0.02178758569061756, -0.057089466601610184, 0.06326635926961899, -0.015554539859294891, -0.016162870451807976, -0.021038871258497238, 0.02566218189895153, -0.04424901679158211, -0.049115657806396484, 0.027440378442406654, -0.023771679028868675, -0.06352841109037399, 0.022966811433434486, 0.0022075374145060778, -0.03893314301967621, 0.016275176778435707, 0.03054754249751568, -0.069368377327919, 0.028338836506009102, 0.04245210066437721, 0.04791771620512009, 0.0060365088284015656, -0.03393547609448433, 0.014730953611433506, 0.0018004239536821842, 0.021899893879890442, -0.0033504965249449015, -0.0968836322426796, 0.00947591569274664, -0.013027628883719444, 0.07580732554197311, -0.048104893416166306, 0.005868048407137394, -0.013963521458208561, 0.03610674664378166, 0.0007609978783875704, 0.020084261894226074, -0.012587758712470531, -0.07344887405633926, -0.030940618366003036, 0.021020153537392616, 0.002934024203568697, -0.051885899156332016, -0.021076306700706482, -0.01961631514132023, 0.001987602561712265, -0.0262798722833395, -0.022461429238319397, -0.021825021132826805, 0.018380936235189438, 0.028132939711213112, 0.0025175518821924925, -0.010744050145149231, 0.023472193628549576, 0.07015453279018402, -0.019026702269911766, -0.029087550938129425, -0.06165662407875061, 0.03730468824505806, -0.06248020753264427, 0.026336025446653366, 0.008380920626223087, 0.070304274559021, 0.008862905204296112, -0.02259245328605175, -0.022012200206518173, 0.013748266734182835, -0.019766056910157204, 0.047693099826574326, -0.03994390740990639, 0.03679930791258812, -0.0273093543946743, -0.0333552211523056, 0.060683295130729675, 0.016789918765425682, -0.10646717250347137, -0.0029480624943971634, 0.0023642992600798607, -0.08430522680282593, 0.019560161978006363, 0.03172677010297775, -0.049040786921978, -0.015797872096300125, -0.045446958392858505, -0.050051551312208176, -0.01681799441576004, 0.027215763926506042, -0.07060375809669495, 0.05409460887312889, -0.020215285941958427, -0.047168999910354614, -0.044024400413036346, 0.033898040652275085, 0.03350496664643288, 0.04488542303442955, -0.059447914361953735, 0.05139923840761185, 0.001237718272022903, -0.040730059146881104, -0.001834350056014955, -0.009695850312709808, 0.010182514786720276, -0.08318215608596802, 0.016368767246603966, -0.03331778571009636, -0.04507260024547577, 0.021132461726665497, -0.03054754249751568, 0.012438016012310982, 0.03065985068678856, -0.008254575543105602, 0.09516158699989319, -0.0010054998565465212, -0.02094528265297413, 0.03311188891530037, -0.056977156549692154, 0.005872727837413549, 0.05173615738749504, -0.055854085832834244, 0.022648608312010765, -0.0259803868830204, -0.049115657806396484, -0.021076306700706482, 0.019672468304634094, -0.0015477328561246395, 0.02394014038145542, -0.01205429993569851, -0.055816650390625, -0.002746845595538616, 0.02515679970383644, -0.03397291153669357, -0.01022930908948183, -0.00398222403600812, -0.03792237862944603, -0.008198421448469162, 0.03406650200486183, 0.0033341182861477137, 0.02380911447107792, -0.03219471499323845, 0.060271501541137695, 0.01626581884920597, 0.014066469855606556, 0.010145078413188457, 0.04720643535256386, 0.06109508499503136, 0.008895661681890488, 0.049527451395988464, 0.028394989669322968, -0.024052446708083153, 0.01610671542584896, -0.019260674715042114, 0.007164259906858206, -0.02094528265297413, -0.044922858476638794, 0.05611613765358925, 0.0364811047911644, 0.044099271297454834, -0.0714273452758789, -0.0270098689943552, -0.000986197148449719, 0.09066930413246155, 0.016069279983639717, 0.026822689920663834, -0.05263461545109749, -0.03878340125083923, -0.002206367440521717, -0.0026532562915235758, 0.05705203115940094, -0.029218574985861778, -0.03077215701341629, 0.08812367171049118, 0.013158653862774372, 0.02218066155910492, 0.027215763926506042, 0.00034394062822684646, -0.03054754249751568, 0.06637351959943771, -0.006616762839257717, -0.013074423186480999, 0.0372111015021801, 0.007898936048150063, 0.04746848717331886, -0.04233979433774948, -0.025737054646015167, -0.0016214343486353755, -0.01805337332189083, 0.07663090527057648, -0.06427711993455887, 0.023153990507125854, 0.003259246936067939, -0.04050544276833534, 0.02341604046523571, -0.01899862475693226, -0.02197476476430893, -0.03803468495607376, -0.003022934077307582, 0.008427714928984642, -0.05712690204381943, -0.027533968910574913, 0.012840449810028076, 0.01795978471636772, 0.01416005939245224, 0.022760914638638496, -0.048292070627212524, -0.05042590945959091, -0.014590569771826267, -0.012887245044112206, 0.09793183207511902, 0.02944318950176239, 0.07771654427051544, -0.007047273218631744, 0.022742196917533875, 0.06195610761642456, 0.020701950415968895, -0.018689781427383423, 0.04376235231757164, -0.03631264343857765, 0.02300424687564373, 0.023285014554858208, -0.022966811433434486, -0.0034557844046503305, 0.06120739504694939, -0.023434758186340332, -0.0009587052627466619, 0.01298083458095789, -0.06614890694618225, -0.031109079718589783, -0.05600383132696152, -0.019279392436146736, 0.08228369802236557, -0.0419280007481575, -0.023247579112648964, 0.027533968910574913, 0.014347237534821033, 0.05139923840761185, -0.006757146678864956, 0.018689781427383423, -0.04413670673966408, 0.011277508921921253, -0.03878340125083923, -0.0022016880102455616, 0.03144599869847298, -0.0546187087893486, 0.003872256726026535, -0.026841407641768456, -0.017192352563142776, 0.013401986099779606, -0.015591975301504135, -0.009845593012869358, 0.015591975301504135, -0.015077234245836735, -0.04540952295064926, 0.009798798710107803, -0.009363608434796333, 0.06727197766304016, -0.020215285941958427, 0.019120290875434875, 0.0013781022280454636, -0.04896591603755951, -0.02751525118947029, -0.04099210724234581, -0.0013465158408507705, 0.024969622492790222, -0.04016852378845215, 0.026317307725548744, -0.022049635648727417, 0.03863365948200226, -0.03494624048471451, -0.036743152886629105, 0.0009423271403647959, 0.012849809601902962, -0.039120323956012726, -0.01713619939982891, 0.012915321625769138, 0.027927042916417122, -0.0344221405684948, 0.05008898675441742, 0.07981294393539429, 0.009995335713028908, -0.00853534322232008, -0.013261602260172367, -0.011277508921921253, 0.03535803407430649, -0.0466448999941349, -0.006836697459220886, 0.0069162482395768166, -0.12630809843540192, 0.026186281815171242, 0.01343942154198885, 0.061806365847587585, 0.003928410355001688, -0.03425367921590805, 0.018156321719288826, -0.040954671800136566, -0.013205448165535927, -0.009630337357521057, -0.016003768891096115, 0.007585411891341209, 0.021918611600995064, -0.0185400377959013, -0.05450640246272087, 0.0623304657638073, 0.09194211661815643, 0.007234451826661825, 0.04286389425396919, -0.010079566389322281, 0.03086574748158455, -0.010603666305541992, 0.0073046437464654446, -0.026223719120025635, -0.020121697336435318, -0.008568099699914455, -0.014206853695213795, 0.015245694667100906, 0.019279392436146736, 0.03945724293589592, 0.017660299316048622, 0.019391700625419617, -0.040318265557289124, 0.006504455581307411, -0.003191394731402397, -0.004978950135409832, 0.055067937821149826, -0.005226961802691221, 0.05308384448289871, -0.02884421870112419, 0.021712714806199074, -0.0720263123512268, -0.034497011452913284, 0.059747401624917984, -0.03885827213525772, 0.007342079654335976, 0.04286389425396919, 0.021413229405879974, -0.009639696218073368, 0.033280350267887115, -0.020215285941958427, -0.0019782434683293104, -0.01155827660113573, 0.013579805381596088, 0.02759012207388878, -0.005063180346041918, 0.03743571415543556, -0.007089388556778431, 0.02023400366306305, 0.02506321109831333, -0.012222761288285255, 0.05488075688481331, 0.024520393460989, -0.020084261894226074, -0.059260737150907516, -0.017791323363780975, 0.019372982904314995, -0.001292702043429017, 0.002901267958804965, 0.044436194002628326, 0.018727216869592667, -0.030734721571207047, -0.0021946688648313284, 0.008909700438380241, -0.056677673012018204, -0.011371098458766937, -0.028394989669322968, -0.018933113664388657, 0.020402465015649796, -0.023977575823664665, -0.01899862475693226, -0.051474109292030334, -0.004117928445339203, 0.0005372610175982118, 0.0623304657638073, 0.03638751432299614, 0.02279835008084774, -0.02360321767628193 ]
18,498
fs.base
upload
Set a file to the contents of a binary file object. This method copies bytes from an open binary file to a file on the filesystem. If the destination exists, it will first be truncated. Arguments: path (str): A path on the filesystem. file (io.IOBase): a file object open for reading in binary mode. chunk_size (int, optional): Number of bytes to read at a time, if a simple copy is used, or `None` to use sensible default. **options: Implementation specific options required to open the source file. Raises: fs.errors.ResourceNotFound: If a parent directory of ``path`` does not exist. Note that the file object ``file`` will *not* be closed by this method. Take care to close it after this method completes (ideally with a context manager). Example: >>> with open('~/movies/starwars.mov', 'rb') as read_file: ... my_fs.upload('starwars.mov', read_file) Note: .. deprecated:: 2.2.0 Please use `~upload`
def _new_name(method, old_name): """Return a method with a deprecation warning.""" # Looks suspiciously like a decorator, but isn't! @wraps(method) def _method(*args, **kwargs): warnings.warn( "method '{}' has been deprecated, please rename to '{}'".format( old_name, method.__name__ ), DeprecationWarning, ) return method(*args, **kwargs) deprecated_msg = """ Note: .. deprecated:: 2.2.0 Please use `~{}` """.format( method.__name__ ) if getattr(_method, "__doc__", None) is not None: _method.__doc__ += deprecated_msg return _method
(self, path, file, chunk_size=None, **options)
[ -0.014895708300173283, -0.058030642569065094, 0.04303792491555214, -0.005498800426721573, -0.038310807198286057, -0.06452161073684692, 0.02753368951380253, 0.030144184827804565, 0.0530918650329113, -0.005476752296090126, -0.001075396896339953, -0.03206678107380867, 0.040074657648801804, 0.015477778390049934, -0.000060460071836132556, -0.012346945703029633, -0.005944172386080027, 0.026016777381300926, -0.024570422247052193, 0.008051972836256027, -0.005785426124930382, 0.007712431252002716, 0.015601247549057007, -0.03982771933078766, -0.01668601483106613, 0.13821524381637573, 0.027480773627758026, 0.007302336394786835, 0.017726685851812363, -0.05203355476260185, -0.05358574539422989, 0.019525812938809395, 0.04462539032101631, 0.039086900651454926, 0.03781693056225777, 0.03372479975223541, -0.014772238209843636, -0.0034593495074659586, -0.03700555860996246, -0.01058309618383646, 0.008012285456061363, -0.019790390506386757, -0.023106426000595093, -0.04624813050031662, 0.016394980251789093, 0.001091932994313538, -0.011773694306612015, 0.061170294880867004, -0.021571878343820572, 0.02402362786233425, 0.017021145671606064, -0.05774842947721481, 0.020019689574837685, 0.01176487561315298, 0.011994175612926483, 0.029879609122872353, 0.019472897052764893, 0.04938778281211853, -0.004471358377486467, 0.046565622091293335, 0.019190680235624313, 0.005944172386080027, -0.008889800868928432, -0.019384704530239105, 0.008801608346402645, -0.03423631563782692, 0.026228440925478935, -0.032719407230615616, 0.020143160596489906, 0.035929612815380096, 0.0022356791887432337, 0.03130832687020302, -0.02758660353720188, 0.04070964455604553, -0.00019609044829849154, -0.008713415823876858, -0.03693500533699989, -0.017294542863965034, 0.005578173790127039, -0.02416473627090454, -0.011306274682283401, -0.03319564461708069, 0.016950592398643494, -0.018326394259929657, -0.02340628206729889, -0.043355416506528854, -0.016941772773861885, -0.06900178641080856, -0.05358574539422989, -0.02060176059603691, -0.06311053037643433, 0.0007242806605063379, -0.014613492414355278, 0.011403285898268223, -0.018837912008166313, -0.05129273980855942, 0.0059662205167114735, -0.01780605874955654, 0.027198556810617447, -0.017629673704504967, 0.016192136332392693, 0.03109666518867016, 0.005710462108254433, -0.010750661604106426, 0.019331788644194603, -0.04483705013990402, -0.014516480267047882, -0.008686957880854607, -0.0033954100217670202, -0.03125540912151337, -0.0009403522126376629, -0.05750149115920067, -0.03596488758921623, 0.0243763979524374, -0.02465861476957798, 0.00953360553830862, -0.011191624216735363, -0.05877146124839783, -0.04610702395439148, 0.007752118166536093, -0.02465861476957798, -0.017709048464894295, -0.049281951040029526, -0.05570236220955849, -0.02487027645111084, -0.017021145671606064, -0.01850277930498123, -0.00011692391854012385, 0.06557992100715637, -0.002985315164551139, -0.05944172292947769, 0.022806571796536446, 0.012064729817211628, -0.0014639949658885598, 0.05030498281121254, -0.01309658121317625, -0.014181348495185375, 0.08163094520568848, 0.005939762573689222, 0.04169739782810211, -0.005163669120520353, 0.02130730077624321, 0.041944339871406555, 0.048858627676963806, 0.011879525147378445, -0.02012552134692669, -0.022947680205106735, 0.046495068818330765, -0.006632073782384396, -0.00712595134973526, -0.02885657548904419, 0.022718379274010658, 0.0537974052131176, -0.034959495067596436, 0.06423939764499664, 0.02395307458937168, 0.0007518407655879855, -0.053197696805000305, -0.027992289513349533, -0.042226552963256836, 0.04762393236160278, -0.043214309960603714, -0.04624813050031662, -0.05125746130943298, 0.07041286677122116, -0.03506532683968544, 0.020231353119015694, -0.009965748526155949, 0.021430769935250282, 0.015380766242742538, -0.038522470742464066, 0.010106856934726238, 0.011562032625079155, 0.046847838908433914, -0.037675824016332626, 0.04811780899763107, 0.03383063152432442, 0.03682917356491089, 0.007130361162126064, 0.01850277930498123, 0.006358677055686712, -0.006883422378450632, -0.03368952125310898, -0.039157457649707794, 0.0019755112007260323, 0.022824211046099663, 0.03190803527832031, 0.0214484091848135, -0.03534753993153572, 0.021466046571731567, 0.02033718302845955, 0.03358369320631027, 0.04106241464614868, 0.03296634554862976, -0.026651764288544655, -0.05979449301958084, -0.07217671722173691, 0.0443078950047493, 0.058030642569065094, 0.017153434455394745, 0.03358369320631027, 0.12953709065914154, -0.0075625041499733925, 0.03571794927120209, 0.04032159596681595, 0.04702422395348549, -0.012002995237708092, -0.02060176059603691, -0.02954447641968727, -0.013043666258454323, 0.05937116965651512, 0.03527698665857315, -0.004859405104070902, -0.033777713775634766, -0.05506737902760506, 0.04391985014081001, 0.09672950208187103, -0.01355518214404583, -0.06635601073503494, -0.01015977282077074, 0.05136329308152199, 0.02227741666138172, 0.010318518616259098, -0.011270997114479542, -0.015239658765494823, -0.03065570257604122, 0.04995221272110939, -0.010556638240814209, 0.000035225311876274645, -0.06452161073684692, -0.019737474620342255, -0.03571794927120209, -0.009815821424126625, 0.022647826001048088, -0.04737699404358864, -0.021042723208665848, -0.0479414276778698, -0.012488053180277348, 0.01323768962174654, -0.04589536041021347, -0.07161228358745575, 0.0049079107120633125, -0.010142133571207523, 0.12304612994194031, 0.038451917469501495, -0.06423939764499664, -0.04060381278395653, 0.014331276528537273, 0.020725229755043983, 0.01519556250423193, -0.0071876863949000835, -0.07415223121643066, -0.03095555678009987, 0.024852637201547623, -0.0003825348394457251, 0.03166109696030617, -0.0886157900094986, 0.030232377350330353, 0.0013405255740508437, -0.005203355569392443, -0.02215394750237465, 0.013361158780753613, -0.021977562457323074, -0.018414586782455444, 0.03164345771074295, -0.020002052187919617, 0.05065775290131569, 0.017700228840112686, 0.014913346618413925, -0.0017285724170506, 0.07979654520750046, -0.03379535302519798, -0.023423919454216957, 0.01613040268421173, 0.003933384083211422, -0.036300018429756165, -0.028274504467844963, 0.01577763259410858, 0.014939804561436176, -0.028680190443992615, 0.043637633323669434, -0.02989724650979042, -0.00373054132796824, 0.08621695637702942, -0.00967471394687891, -0.00621756911277771, -0.009912833571434021, 0.020584121346473694, 0.018538057804107666, 0.00470065837725997, 0.020619399845600128, -0.02416473627090454, -0.01593637838959694, 0.024341121315956116, -0.016368521377444267, 0.05217466503381729, -0.022383248433470726, 0.02095453068614006, 0.015495416708290577, -0.04388457164168358, 0.013731567189097404, 0.03827553242444992, -0.07041286677122116, 0.001596283633261919, 0.032313719391822815, -0.04825891926884651, -0.008431199938058853, -0.04667145386338234, -0.03136124089360237, -0.02381196618080139, -0.029932523146271706, -0.02416473627090454, -0.04938778281211853, -0.07598663121461868, 0.02340628206729889, 0.018608611077070236, -0.03806386888027191, 0.009815821424126625, 0.04469594359397888, 0.06466271728277206, 0.003291783854365349, 0.006707037333399057, -0.036511681973934174, 0.0032212298829108477, -0.028115758672356606, 0.005026970524340868, -0.01697704941034317, -0.004127407446503639, 0.02836269699037075, 0.0006344345747493207, -0.012955473735928535, -0.039651334285736084, -0.01600693352520466, -0.028045205399394035, -0.10068052262067795, -0.01844986528158188, 0.02241852506995201, -0.04282626137137413, -0.03501240909099579, 0.01554833259433508, 0.022612549364566803, -0.003794481046497822, -0.02229505591094494, 0.0055958121083676815, -0.004563960246741772, 0.0013129654107615352, -0.02890949137508869, -0.004497815854847431, 0.07746826112270355, -0.029773777350783348, -0.01572471670806408, -0.06233443692326546, -0.05104580149054527, 0.015521874651312828, 0.060253094881772995, 0.013819759711623192, 0.008166622370481491, 0.03515351936221123, -0.0019788185600191355, -0.07443444430828094, -0.07192977517843246, -0.042226552963256836, 0.03577086701989174, 0.0035144698340445757, 0.05203355476260185, 0.016253871843218803, 0.016641918569803238, -0.0276042427867651, -0.010397892445325851, 0.004065672867000103, 0.008395923301577568, 0.0013680856209248304, 0.008400332182645798, 0.015371947549283504, -0.06191111356019974, -0.0017881023231893778, 0.022259779274463654, 0.028168674558401108, -0.011941260658204556, 0.00047568813897669315, 0.005701642949134111, -0.016183318570256233, 0.01837931014597416, 0.04391985014081001, 0.05280965194106102, -0.008916258811950684, -0.02201284095644951, -0.003569590160623193, 0.02465861476957798, -0.02248908020555973, -0.039721887558698654, -0.028168674558401108, -0.04931722953915596, 0.027198556810617447, -0.045436758548021317, -0.036017805337905884, -0.023653220385313034, -0.04487232863903046, -0.033495500683784485, -0.0030117728747427464, 0.007064216770231724, 0.01649199239909649, -0.04772976413369179, -0.013872675597667694, -0.03718194365501404, 0.022665465250611305, 0.032666489481925964, 0.01732981950044632, 0.014154891483485699, -0.009392498061060905, 0.0018939332803711295, 0.017550300806760788, -0.02494082972407341, 0.004065672867000103, 0.07535164803266525, 0.07009537518024445, 0.01393441017717123, -0.018114732578396797, 0.06557992100715637, -0.015954017639160156, 0.0038540109526365995, -0.03725249692797661, 0.03760526701807976, 0.05771315097808838, -0.032454829663038254, -0.02404126711189747, -0.02031954564154148, -0.02906823717057705, -0.006358677055686712, 0.03679389879107475, 0.033424947410821915, -0.0010671288473531604, -0.009366040118038654, -0.04568369686603546, -0.0005837238859385252, -0.06826096773147583, -0.001187291112728417, 0.0033689523115754128, -0.03296634554862976, 0.025205407291650772, 0.021677708253264427, -0.029985439032316208, 0.024358760565519333, -0.015416043810546398, -0.026316633448004723, -0.07542219758033752, -0.030179463326931, -0.02109563909471035, 0.025029022246599197, -0.07775048166513443, 0.060182541608810425, 0.04540148377418518, -0.0005760070635005832, -0.011509116739034653, -0.0060500032268464565, -0.013220051303505898, -0.02892712876200676, -0.06169945001602173, 0.04254404827952385, 0.07464610785245895, -0.0022687511518597603, 0.07238838076591492, -0.027745351195335388, 0.06462743878364563, 0.006768771912902594, 0.01991385966539383, 0.0030360256787389517, -0.03619419038295746, -0.012170560657978058, -0.024852637201547623, 0.0588420145213604, -0.06677933782339096, 0.046142298728227615, -0.004987284075468779, -0.04638923704624176, 0.03190803527832031, -0.05644318088889122, 0.03323092311620712, 0.03100847266614437, 0.028203951194882393, -0.058030642569065094, -0.030197100713849068, 0.00558699294924736, 0.02892712876200676, 0.0027802675031125546, -0.04772976413369179, -0.04847057908773422, 0.02199520170688629, -0.03693500533699989, 0.014084337279200554, -0.027710072696208954, 0.02718091942369938, 0.015292573720216751, -0.013643374666571617, -0.02576983906328678, 0.0625813752412796, 0.010406711138784885, -0.004810899030417204, -0.01492216531187296, 0.020107882097363472, -0.0029279899317771196, -0.09263736754655838, 0.002670027082785964, 0.009515967220067978, 0.06166417524218559, -0.04028632119297981, 0.019155403599143028, 0.032666489481925964, 0.04437845200300217, 0.0016249462496489286, -0.004041419830173254, 0.02626371756196022, 0.04518982023000717, 0.01275263074785471, 0.010741842910647392, -0.02501138485968113, -0.10639539361000061, 0.024976106360554695, 0.023282811045646667, -0.004250877071171999, -0.014481203630566597, 0.0066849892027676105, 0.02298295684158802, -0.034183401614427567, 0.004749164450913668, -0.039298564195632935, 0.010221507400274277, 0.000024080678485915996, 0.009039727970957756, 0.02033718302845955, -0.020725229755043983, 0.03725249692797661, 0.03795803710818291, -0.0480472557246685, 0.015266116708517075, 0.0886157900094986, -0.057113442569971085, -0.0232651736587286, 0.01788543350994587, -0.001249025808647275, 0.017426831647753716, -0.00792850274592638, -0.01561888586729765, 0.039651334285736084, -0.07094202190637589, 0.011306274682283401, -0.033777713775634766, 0.002090161433443427, -0.006909879855811596, -0.06536825746297836, -0.039369117468595505, 0.06801403313875198, -0.024605698883533478, -0.034059930592775345, 0.020301906391978264, -0.006257255561649799, -0.04095658287405968, -0.004147250670939684, 0.004129612352699041, -0.018061816692352295, -0.10639539361000061, -0.027128003537654877, 0.05065775290131569, 0.004775622393935919, -0.013123039156198502, 0.06780236959457397, 0.046918392181396484, 0.014234264381229877, -0.010715384967625141, -0.07111840695142746, 0.0508694164454937, -0.015909921377897263, 0.0705539733171463, -0.023353366181254387, -0.01379330176860094, 0.056549008935689926, 0.06272248178720474, -0.03337202966213226, -0.0232651736587286, -0.025611093267798424, -0.010001026093959808, 0.01844986528158188, -0.06572102755308151, -0.012144102714955807, -0.06861373782157898, -0.03404229134321213, -0.03261357545852661, 0.003238868433982134, 0.07351724058389664, 0.021342577412724495, -0.013440532609820366, -0.07330557703971863, 0.023494472727179527, -0.07302336394786835, 0.003569590160623193, 0.052986033260822296, -0.03848719224333763, -0.01773550547659397, 0.0250819381326437, 0.06554464250802994, 0.011024058796465397, 0.008841294795274734, 0.028397975489497185, 0.017841337248682976, 0.04561314359307289, 0.04857641085982323, -0.02382960543036461, -0.03227844461798668, -0.028309782966971397, 0.05467933043837547, -0.0006234105094335973, -0.0076992022804915905, 0.04561314359307289, 0.02696925774216652, 0.05866562947630882, 0.043425969779491425, 0.0239707138389349, -0.04780031740665436, 0.02515249140560627, 0.010089218616485596, -0.04924667254090309, 0.03739360719919205, 0.04660090059041977, 0.0012975316494703293, -0.029385730624198914, -0.026493016630411148, 0.018538057804107666, -0.030902640894055367, -0.03353077545762062, -0.05101052299141884, -0.07457555085420609, -0.06057058647274971, 0.04868224263191223, -0.06014726310968399, -0.0378522090613842, 0.013114220462739468, 0.02968558482825756, -0.020584121346473694, -0.007368480786681175, 0.023106426000595093, 0.04155629128217697, 0.05069303140044212, -0.02968558482825756, 0.017911890521645546, -0.03511824086308479, 0.0018873187946155667, 0.014049060642719269, -0.03746416047215462, 0.014207806438207626, -0.01058309618383646, -0.04769448563456535, 0.06970732659101486, -0.028521444648504257, 0.029526839032769203, 0.01661546155810356, -0.02033718302845955, -0.03550628945231438, 0.008801608346402645, 0.012734992429614067, -0.04010993614792824, 0.05781898275017738, -0.04332014173269272, 0.012488053180277348, 0.03792276233434677, 0.01243513822555542, 0.07563386112451553, 0.02054884470999241, 0.008991221897304058, 0.029579753056168556, -0.02270074188709259, 0.0740816742181778, 0.03425395488739014, 0.018538057804107666, -0.06466271728277206, 0.03319564461708069, 0.0009453130187466741, 0.020143160596489906, -0.018908465281128883, -0.004832947161048651, 0.03975716605782509, -0.03227844461798668, 0.0038451915606856346, -0.052633266896009445, 0.011129889637231827, 0.008462067693471909, 0.09284903109073639, 0.03771109879016876, 0.0180177204310894, -0.032384272664785385, -0.05898312106728554, 0.03197858855128288, -0.002630340401083231, 0.003602662356570363, 0.020002052187919617, 0.050551921129226685, 0.022647826001048088, -0.01873208023607731, -0.0225067175924778, -0.003809914691373706, 0.00019333443196956068, 0.0588420145213604, -0.011570852249860764, 0.019225958734750748, 0.022577272728085518, -0.0010500415228307247, -0.02746313437819481, 0.011085793375968933, -0.07697438448667526, -0.014789876528084278, 0.0022930041886866093, 0.01970219798386097, -0.029791416600346565, 0.053973790258169174, 0.019755113869905472, 0.03471255674958229, -0.05517320707440376, -0.011218082159757614, -0.06688516587018967, 0.013422893360257149, 0.04420206695795059, 0.028274504467844963, -0.036582235246896744, 0.03374243900179863, -0.006759952753782272, -0.0287154670804739, 0.0218011774122715, 0.012355764396488667, -0.017638493329286575, -0.06381607055664062, -0.006482146214693785, -0.009066185913980007, 0.03157290443778038, -0.024270568042993546, 0.05220993980765343, 0.04744754731655121, -0.02739258110523224, -0.010644830763339996, 0.0633927434682846, 0.03337202966213226, 0.012117644771933556, -0.007791804615408182, 0.05771315097808838, -0.04134462773799896, 0.004242057912051678, -0.0014761214843019843, -0.0035894333850592375, 0.03771109879016876, 0.02024899050593376, 0.016941772773861885, 0.0218011774122715, 0.030690979212522507, 0.010318518616259098, -0.041944339871406555, 0.043073203414678574, -0.003693059552460909, -0.06931927800178528, 0.05129273980855942, 0.02178354002535343, 0.04088602960109711, -0.02409418299794197, 0.004242057912051678, 0.07951433211565018, 0.04416678845882416, 0.030990833416581154, -0.015451320447027683, 0.013881494291126728, -0.011465020477771759, 0.023917797952890396 ]
18,499
fs.base
writebytes
Copy binary data to a file. Arguments: path (str): Destination path on the filesystem. contents (bytes): Data to be written. Raises: TypeError: if contents is not bytes. Note: .. deprecated:: 2.2.0 Please use `~writebytes`
def _new_name(method, old_name): """Return a method with a deprecation warning.""" # Looks suspiciously like a decorator, but isn't! @wraps(method) def _method(*args, **kwargs): warnings.warn( "method '{}' has been deprecated, please rename to '{}'".format( old_name, method.__name__ ), DeprecationWarning, ) return method(*args, **kwargs) deprecated_msg = """ Note: .. deprecated:: 2.2.0 Please use `~{}` """.format( method.__name__ ) if getattr(_method, "__doc__", None) is not None: _method.__doc__ += deprecated_msg return _method
(self, path, contents)
[ -0.01489674486219883, -0.058034684509038925, 0.04300564154982567, -0.0054727233946323395, -0.03827819600701332, -0.0645613819360733, 0.02746504545211792, 0.03012864477932453, 0.053095560520887375, -0.005477133672684431, -0.0010848428355529904, -0.03206901252269745, 0.04007744789123535, 0.015470035374164581, -0.00011024825653294101, -0.012356624938547611, -0.005900486838072538, 0.02600094862282276, -0.02467796951532364, 0.008105452172458172, -0.0057946485467255116, 0.007664458826184273, 0.015628792345523834, -0.03986576944589615, -0.01668717712163925, 0.13822485506534576, 0.027482686564326286, 0.007289614994078875, 0.01768382079899311, -0.05200189724564552, -0.05358947440981865, 0.01954481191933155, 0.04462849348783493, 0.039124902337789536, 0.03781956061720848, 0.03369186818599701, -0.014773266389966011, -0.0034485654905438423, -0.037008136510849, -0.010610292665660381, 0.00803048349916935, -0.01972120814025402, -0.023072754964232445, -0.04625134915113449, 0.016316741704940796, 0.0010644468711689115, -0.01172159519046545, 0.06120983138680458, -0.021573379635810852, 0.02397238090634346, 0.01704879105091095, -0.057752449065446854, 0.01995052397251129, 0.011739234440028667, 0.01195973064750433, 0.02984640747308731, 0.019509531557559967, 0.04939122125506401, -0.004403315484523773, 0.046568863093853, 0.01920965686440468, 0.005918126553297043, -0.008881599642336369, -0.019403694197535515, 0.008780171163380146, -0.0342034213244915, 0.0262479055672884, -0.03277460113167763, 0.02019748091697693, 0.035932112485170364, 0.002260089386254549, 0.03134578466415405, -0.027553245425224304, 0.04067719727754593, -0.00021057417325209826, -0.00870079267770052, -0.0369022972881794, -0.01727810688316822, 0.005543282255530357, -0.02414877898991108, -0.011359980329871178, -0.03318031504750252, 0.01692531257867813, -0.018292391672730446, -0.023372631520032883, -0.043323155492544174, -0.016969412565231323, -0.06900659203529358, -0.053554192185401917, -0.020620834082365036, -0.06311492621898651, 0.000726536032743752, -0.014605688862502575, 0.011386440135538578, -0.018839221447706223, -0.05133158713579178, 0.005953405983746052, -0.017833758145570755, 0.027200449258089066, -0.017586801201105118, 0.016131525859236717, 0.031151747331023216, 0.005688810255378485, -0.010786689817905426, 0.01931549422442913, -0.04487545043230057, -0.01445575151592493, -0.008740481920540333, -0.0034110811538994312, -0.03125758469104767, -0.0009018307318910956, -0.05743493139743805, -0.035985030233860016, 0.02437809482216835, -0.024695610627532005, 0.009534269571304321, -0.011236502788960934, -0.05877555161714554, -0.046110231429338455, 0.007836446166038513, -0.024695610627532005, -0.017727918922901154, -0.04928538203239441, -0.055706240236759186, -0.024889646098017693, -0.017066430300474167, -0.018521707504987717, -0.00010163511615246534, 0.06558448076248169, -0.002939218655228615, -0.05948114022612572, 0.022772880271077156, 0.012056749314069748, -0.0015203234506770968, 0.05034376308321953, -0.013018114492297173, -0.01405003760010004, 0.08156607300043106, 0.005882847122848034, 0.041700299829244614, -0.005159618332982063, 0.021308783441781998, 0.04194725677371025, 0.04893258586525917, 0.01192445121705532, -0.02012692205607891, -0.022896358743309975, 0.04649830609560013, -0.006738373544067144, -0.007113217376172543, -0.02880566567182541, 0.022737599909305573, 0.053801149129867554, -0.034944288432598114, 0.0642438679933548, 0.02391946129500866, 0.0007882750360295177, -0.05316612124443054, -0.02804715745151043, -0.04219421371817589, 0.04759196937084198, -0.043146759271621704, -0.04621607065200806, -0.05126103013753891, 0.07034720480442047, -0.035050127655267715, 0.020232759416103363, -0.010028181597590446, 0.02141462080180645, 0.015355377458035946, -0.038489870727062225, 0.01017811894416809, 0.011562837287783623, 0.04685109853744507, -0.037607885897159576, 0.04812115803360939, 0.03379770740866661, 0.03686701878905296, 0.007126447279006243, 0.0184511486440897, 0.006398808676749468, -0.006923590786755085, -0.03374478593468666, -0.039124902337789536, 0.002019748091697693, 0.022825799882411957, 0.031910255551338196, 0.021449901163578033, -0.03527944162487984, 0.02146754041314125, 0.020338598638772964, 0.03363894671201706, 0.0411711111664772, 0.03293335810303688, -0.02665361948311329, -0.05986921489238739, -0.07218173891305923, 0.04427570104598999, 0.05806996300816536, 0.01704879105091095, 0.03358602896332741, 0.12947554886341095, -0.007558620534837246, 0.03568515554070473, 0.04039496183395386, 0.04702749848365784, -0.012003830634057522, -0.020567914471030235, -0.02961709164083004, -0.013026934117078781, 0.05934002250432968, 0.03527944162487984, -0.004912662319839001, -0.03379770740866661, -0.055071208626031876, 0.04381706938147545, 0.09673622995615005, -0.013538486324250698, -0.06629007309675217, -0.010134019888937473, 0.05136686936020851, 0.02234952710568905, 0.01030159741640091, -0.011307061649858952, -0.015249539166688919, -0.030693115666508675, 0.04992040991783142, -0.010575013235211372, 0.00007038662442937493, -0.06452610343694687, -0.019738847389817238, -0.03582627326250076, -0.009869423694908619, 0.022596482187509537, -0.04738029092550278, -0.02111474610865116, -0.04794476181268692, -0.012436003424227238, 0.013326809741556644, -0.04589855298399925, -0.07154671102762222, 0.004886202979832888, -0.010134019888937473, 0.1229841336607933, 0.03838403522968292, -0.06431442499160767, -0.04060663655400276, 0.014358732849359512, 0.020814871415495872, 0.015178980305790901, -0.007144086994230747, -0.07415738701820374, -0.030940070748329163, 0.024801447987556458, -0.0003833883092738688, 0.03171622008085251, -0.08855140209197998, 0.030234482139348984, 0.0013637709198519588, -0.0052566369995474815, -0.022155489772558212, 0.013300349935889244, -0.02192617394030094, -0.01843350939452648, 0.03164565935730934, -0.02002108283340931, 0.050590720027685165, 0.017657360062003136, 0.014887924306094646, -0.0016945156967267394, 0.07980209589004517, -0.03379770740866661, -0.023460829630494118, 0.016078606247901917, 0.00395791232585907, -0.03626726567745209, -0.028205914422869682, 0.015787551179528236, 0.014923203736543655, -0.02857634797692299, 0.04364066943526268, -0.029934607446193695, -0.003715366357937455, 0.08622295409440994, -0.009622467681765556, -0.006218001712113619, -0.00986060407012701, 0.0205855555832386, 0.01843350939452648, 0.004683346021920443, 0.020691392943263054, -0.024131137877702713, -0.015928668901324272, 0.024307535961270332, -0.016316741704940796, 0.05214301496744156, -0.022384805604815483, 0.020903069525957108, 0.01547885499894619, -0.04392290487885475, 0.013688423670828342, 0.038313474506139755, -0.07034720480442047, 0.0016195469070225954, 0.032386526465415955, -0.04829755797982216, -0.008422967046499252, -0.04670998081564903, -0.03134578466415405, -0.023778343573212624, -0.029934607446193695, -0.024166418239474297, -0.04935593903064728, -0.0759919211268425, 0.0233902707695961, 0.018592266365885735, -0.038031239062547684, 0.009825324639678001, 0.04473433271050453, 0.0646672174334526, 0.0032699634321033955, 0.0066942740231752396, -0.03658478334546089, 0.0031883795745670795, -0.02815299481153488, 0.005058189854025841, -0.01699587143957615, -0.004085800610482693, 0.02839995175600052, 0.0006989739486016333, -0.012982835061848164, -0.03968937322497368, -0.016025686636567116, -0.02804715745151043, -0.10068752616643906, -0.018486427143216133, 0.022420085966587067, -0.042793963104486465, -0.035050127655267715, 0.01553177461028099, 0.022614123299717903, -0.003788130125030875, -0.022296607494354248, 0.005613841116428375, -0.004533408209681511, 0.0013891280395910144, -0.028823304921388626, -0.0044540297240018845, 0.0775442123413086, -0.02972293086349964, -0.015734631568193436, -0.062409333884716034, -0.05108463391661644, 0.015549413859844208, 0.0602925680577755, 0.01379426196217537, 0.008127501234412193, 0.035120684653520584, -0.0020175431855022907, -0.07451017946004868, -0.07197006046772003, -0.04230005294084549, 0.035808634012937546, 0.0035786584485322237, 0.052037179470062256, 0.016210904344916344, 0.01663425751030445, -0.027535604313015938, -0.010416255332529545, 0.004006421659141779, 0.008356817997992039, 0.0013439262984320521, 0.008387687616050243, 0.015381837263703346, -0.06191541999578476, -0.0017606646288186312, 0.022367166355252266, 0.0281706340610981, -0.011942091397941113, 0.0004740675212815404, 0.005697629880160093, -0.01618444360792637, 0.018486427143216133, 0.04392290487885475, 0.05284860357642174, -0.008877189829945564, -0.02204965241253376, -0.0035654285456985235, 0.024589771404862404, -0.022543564438819885, -0.039654094725847244, -0.028205914422869682, -0.04935593903064728, 0.02718281000852585, -0.045475199818611145, -0.03602031245827675, -0.023654866963624954, -0.04487545043230057, -0.033550750464200974, -0.0029877277556806803, 0.007113217376172543, 0.016546059399843216, -0.04776836559176445, -0.013873640447854996, -0.0372198112308979, 0.022667041048407555, 0.032668761909008026, 0.017269287258386612, 0.014173516072332859, -0.009375511668622494, 0.0018929626094177365, 0.017480963841080666, -0.024942565709352493, 0.00405713589861989, 0.07535688579082489, 0.07010025531053543, 0.013979478739202023, -0.018115993589162827, 0.06558448076248169, -0.015955127775669098, 0.0038697137497365475, -0.03718453273177147, 0.037678442895412445, 0.05782300606369972, -0.03236888721585274, -0.02397238090634346, -0.0203738771378994, -0.02908790111541748, -0.0063679395243525505, 0.03676117956638336, 0.03339199349284172, -0.001046807155944407, -0.009375511668622494, -0.04561631754040718, -0.0005234035779722035, -0.0683009997010231, -0.0011972960783168674, 0.0033647767268121243, -0.03298627957701683, 0.025224801152944565, 0.021626297384500504, -0.029952246695756912, 0.024342814460396767, -0.015417116694152355, -0.026318464428186417, -0.07542745023965836, -0.03012864477932453, -0.021167665719985962, 0.02503076381981373, -0.0777558907866478, 0.060186728835105896, 0.04543992131948471, -0.0004897778853774071, -0.011554017663002014, -0.006050424184650183, -0.013212150894105434, -0.028964422643184662, -0.061774302273988724, 0.04258228838443756, 0.07465130090713501, -0.002213784959167242, 0.07239341735839844, -0.027764922007918358, 0.06463193893432617, 0.006782472599297762, 0.019915245473384857, 0.0030362370889633894, -0.03612614795565605, -0.012144948355853558, -0.024872006848454475, 0.05888139083981514, -0.06685454398393631, 0.046110231429338455, -0.005031730514019728, -0.04649830609560013, 0.031857337802648544, -0.0564471073448658, 0.0332685150206089, 0.03101062960922718, 0.0281706340610981, -0.05806996300816536, -0.030181562528014183, 0.005508002825081348, 0.02892914228141308, 0.0027826661244034767, -0.047733087092638016, -0.04836811497807503, 0.021979093551635742, -0.03686701878905296, 0.014032398350536823, -0.027764922007918358, 0.02716517075896263, 0.01527599897235632, -0.013644324615597725, -0.025789272040128708, 0.06262101233005524, 0.010416255332529545, -0.0047803642228245735, -0.014949663542211056, 0.020056363195180893, -0.002972292946651578, -0.09264381229877472, 0.0027319518849253654, 0.009560728445649147, 0.06166846677660942, -0.040289122611284256, 0.019227296113967896, 0.03268640488386154, 0.044416818767786026, 0.001560012809932232, -0.00412989966571331, 0.026265544816851616, 0.045192964375019073, 0.01277115847915411, 0.010742589831352234, -0.02503076381981373, -0.10640279948711395, 0.024942565709352493, 0.02326679229736328, -0.00435039633885026, -0.014482211321592331, 0.006681044586002827, 0.022949276491999626, -0.034132860600948334, 0.004784774500876665, -0.03923074156045914, 0.0102398581802845, 0.000013315921933099162, 0.009084456600248814, 0.02035623788833618, -0.020691392943263054, 0.03725508973002434, 0.03792539983987808, -0.048085879534482956, 0.015267178416252136, 0.08862195909023285, -0.05715269595384598, -0.023302072659134865, 0.017833758145570755, -0.0012138333404436707, 0.017383946105837822, -0.007924645207822323, -0.015699351206421852, 0.03954825550317764, -0.07094696164131165, 0.011333520524203777, -0.033727146685123444, 0.002061642473563552, -0.00686626136302948, -0.06537280976772308, -0.03933657705783844, 0.0679834857583046, -0.024660330265760422, -0.03406229987740517, 0.020320959389209747, -0.006262101233005524, -0.040959432721138, -0.004173999186605215, 0.00412989966571331, -0.018080715090036392, -0.10640279948711395, -0.02711225114762783, 0.05066128075122833, 0.004758314695209265, -0.013212150894105434, 0.06787765026092529, 0.04695693776011467, 0.01419997587800026, -0.010724950581789017, -0.07112335413694382, 0.0508376769721508, -0.015981586650013924, 0.07055888324975967, -0.023354990407824516, -0.01375898253172636, 0.056694064289331436, 0.06279740482568741, -0.03333907201886177, -0.02326679229736328, -0.025630515068769455, -0.010019361972808838, 0.01843350939452648, -0.06572560220956802, -0.012224326841533184, -0.06858323514461517, -0.03404466062784195, -0.03263348340988159, 0.0031949945259839296, 0.07359291613101959, 0.021344061940908432, -0.01346792746335268, -0.07331068068742752, 0.023531388491392136, -0.07302844524383545, 0.0034926647786051035, 0.05298972129821777, -0.03856043145060539, -0.017727918922901154, 0.02513660304248333, 0.06547864526510239, 0.011042465455830097, 0.008788990788161755, 0.028347032144665718, 0.017833758145570755, 0.045581039041280746, 0.04857979342341423, -0.023831263184547424, -0.0322277694940567, -0.028258834034204483, 0.054718416184186935, -0.0006234538741409779, -0.007765887305140495, 0.04554576054215431, 0.026953494176268578, 0.05866971239447594, 0.04339371249079704, 0.023990020155906677, -0.04783892259001732, 0.025171881541609764, 0.010134019888937473, -0.049250103533267975, 0.037396207451820374, 0.046639423817396164, 0.0012281655799597502, -0.029370136559009552, -0.026494860649108887, 0.0184511486440897, -0.030887151136994362, -0.03344491124153137, -0.050943516194820404, -0.07458074390888214, -0.0605042427778244, 0.0486503504216671, -0.060080889612436295, -0.03781956061720848, 0.013079853728413582, 0.02967001125216484, -0.0205855555832386, -0.007408682722598314, 0.023090394213795662, 0.041629742830991745, 0.05069655925035477, -0.029634730890393257, 0.01791313663125038, -0.035173602402210236, 0.001948086661286652, 0.01405003760010004, -0.03746676817536354, 0.014208795502781868, -0.010522093623876572, -0.04776836559176445, 0.06964161992073059, -0.02850578911602497, 0.029546532779932022, 0.01663425751030445, -0.020285679027438164, -0.03547348082065582, 0.008793400600552559, 0.01274469867348671, -0.040112726390361786, 0.057752449065446854, -0.043323155492544174, 0.012383084744215012, 0.03792539983987808, 0.012347805313766003, 0.07556856423616409, 0.020462077111005783, 0.009040357545018196, 0.029546532779932022, -0.022702321410179138, 0.07408683001995087, 0.03429161757230759, 0.018539346754550934, -0.06463193893432617, 0.0332685150206089, 0.0010159376543015242, 0.02012692205607891, -0.01890978030860424, -0.004846513271331787, 0.039830490946769714, -0.032210130244493484, 0.00381899974308908, -0.052566368132829666, 0.011104204691946507, 0.008475885726511478, 0.09292604774236679, 0.037678442895412445, 0.018018975853919983, -0.03236888721585274, -0.05898722633719444, 0.03205137327313423, -0.002595243975520134, 0.0036205528303980827, 0.020056363195180893, 0.05055544152855873, 0.022719960659742355, -0.01873338408768177, -0.022561203688383102, -0.0037616705521941185, 0.00017116042727138847, 0.05884610861539841, -0.011536377482116222, 0.01919201761484146, 0.022614123299717903, -0.0010765742044895887, -0.027429766952991486, 0.011068925261497498, -0.07697974145412445, -0.014711527153849602, 0.0022689092438668013, 0.019738847389817238, -0.02974057011306286, 0.053977545350790024, 0.01972120814025402, 0.034714970737695694, -0.05517704784870148, -0.011157123371958733, -0.06688982248306274, 0.013432648032903671, 0.04420514032244682, 0.0282235536724329, -0.036514222621917725, 0.03367422893643379, -0.0068221623077988625, -0.028717465698719025, 0.02176741510629654, 0.012294885702431202, -0.017604442313313484, -0.06371467560529709, -0.006469367537647486, -0.009128555655479431, 0.03157510235905647, -0.024219337850809097, 0.05224885419011116, 0.047450851649045944, -0.02741212770342827, -0.010583832859992981, 0.06339716166257858, 0.03328615427017212, 0.012092028744518757, -0.0078232167288661, 0.05764660984277725, -0.04134750738739967, 0.004262197762727737, -0.0014277149457484484, -0.003589683212339878, 0.03774900361895561, 0.020285679027438164, 0.016969412565231323, 0.021785056218504906, 0.03065783530473709, 0.010248677805066109, -0.04194725677371025, 0.04307619854807854, -0.0037241862155497074, -0.06939466297626495, 0.05126103013753891, 0.021732136607170105, 0.0408535934984684, -0.024113498628139496, 0.004224713426083326, 0.0795198604464531, 0.04416986182332039, 0.030992990359663963, -0.015522954985499382, 0.013882461003959179, -0.011439358815550804, 0.02397238090634346 ]
18,500
fs.base
writefile
Set a file to the contents of a file object. Arguments: path (str): A path on the filesystem. file (io.IOBase): A file object open for reading. encoding (str, optional): Encoding of destination file, defaults to `None` for binary. errors (str, optional): How encoding errors should be treated (same as `io.open`). newline (str): Newline parameter (same as `io.open`). This method is similar to `~FS.upload`, in that it copies data from a file-like object to a resource on the filesystem, but unlike ``upload``, this method also supports creating files in text-mode (if the ``encoding`` argument is supplied). Note that the file object ``file`` will *not* be closed by this method. Take care to close it after this method completes (ideally with a context manager). Example: >>> with open('myfile.txt') as read_file: ... my_fs.writefile('myfile.txt', read_file) Note: .. deprecated:: 2.2.0 Please use `~writefile`
def _new_name(method, old_name): """Return a method with a deprecation warning.""" # Looks suspiciously like a decorator, but isn't! @wraps(method) def _method(*args, **kwargs): warnings.warn( "method '{}' has been deprecated, please rename to '{}'".format( old_name, method.__name__ ), DeprecationWarning, ) return method(*args, **kwargs) deprecated_msg = """ Note: .. deprecated:: 2.2.0 Please use `~{}` """.format( method.__name__ ) if getattr(_method, "__doc__", None) is not None: _method.__doc__ += deprecated_msg return _method
(self, path, file, encoding=None, errors=None, newline='')
[ -0.01489674486219883, -0.058034684509038925, 0.04300564154982567, -0.0054727233946323395, -0.03827819600701332, -0.0645613819360733, 0.02746504545211792, 0.03012864477932453, 0.053095560520887375, -0.005477133672684431, -0.0010848428355529904, -0.03206901252269745, 0.04007744789123535, 0.015470035374164581, -0.00011024825653294101, -0.012356624938547611, -0.005900486838072538, 0.02600094862282276, -0.02467796951532364, 0.008105452172458172, -0.0057946485467255116, 0.007664458826184273, 0.015628792345523834, -0.03986576944589615, -0.01668717712163925, 0.13822485506534576, 0.027482686564326286, 0.007289614994078875, 0.01768382079899311, -0.05200189724564552, -0.05358947440981865, 0.01954481191933155, 0.04462849348783493, 0.039124902337789536, 0.03781956061720848, 0.03369186818599701, -0.014773266389966011, -0.0034485654905438423, -0.037008136510849, -0.010610292665660381, 0.00803048349916935, -0.01972120814025402, -0.023072754964232445, -0.04625134915113449, 0.016316741704940796, 0.0010644468711689115, -0.01172159519046545, 0.06120983138680458, -0.021573379635810852, 0.02397238090634346, 0.01704879105091095, -0.057752449065446854, 0.01995052397251129, 0.011739234440028667, 0.01195973064750433, 0.02984640747308731, 0.019509531557559967, 0.04939122125506401, -0.004403315484523773, 0.046568863093853, 0.01920965686440468, 0.005918126553297043, -0.008881599642336369, -0.019403694197535515, 0.008780171163380146, -0.0342034213244915, 0.0262479055672884, -0.03277460113167763, 0.02019748091697693, 0.035932112485170364, 0.002260089386254549, 0.03134578466415405, -0.027553245425224304, 0.04067719727754593, -0.00021057417325209826, -0.00870079267770052, -0.0369022972881794, -0.01727810688316822, 0.005543282255530357, -0.02414877898991108, -0.011359980329871178, -0.03318031504750252, 0.01692531257867813, -0.018292391672730446, -0.023372631520032883, -0.043323155492544174, -0.016969412565231323, -0.06900659203529358, -0.053554192185401917, -0.020620834082365036, -0.06311492621898651, 0.000726536032743752, -0.014605688862502575, 0.011386440135538578, -0.018839221447706223, -0.05133158713579178, 0.005953405983746052, -0.017833758145570755, 0.027200449258089066, -0.017586801201105118, 0.016131525859236717, 0.031151747331023216, 0.005688810255378485, -0.010786689817905426, 0.01931549422442913, -0.04487545043230057, -0.01445575151592493, -0.008740481920540333, -0.0034110811538994312, -0.03125758469104767, -0.0009018307318910956, -0.05743493139743805, -0.035985030233860016, 0.02437809482216835, -0.024695610627532005, 0.009534269571304321, -0.011236502788960934, -0.05877555161714554, -0.046110231429338455, 0.007836446166038513, -0.024695610627532005, -0.017727918922901154, -0.04928538203239441, -0.055706240236759186, -0.024889646098017693, -0.017066430300474167, -0.018521707504987717, -0.00010163511615246534, 0.06558448076248169, -0.002939218655228615, -0.05948114022612572, 0.022772880271077156, 0.012056749314069748, -0.0015203234506770968, 0.05034376308321953, -0.013018114492297173, -0.01405003760010004, 0.08156607300043106, 0.005882847122848034, 0.041700299829244614, -0.005159618332982063, 0.021308783441781998, 0.04194725677371025, 0.04893258586525917, 0.01192445121705532, -0.02012692205607891, -0.022896358743309975, 0.04649830609560013, -0.006738373544067144, -0.007113217376172543, -0.02880566567182541, 0.022737599909305573, 0.053801149129867554, -0.034944288432598114, 0.0642438679933548, 0.02391946129500866, 0.0007882750360295177, -0.05316612124443054, -0.02804715745151043, -0.04219421371817589, 0.04759196937084198, -0.043146759271621704, -0.04621607065200806, -0.05126103013753891, 0.07034720480442047, -0.035050127655267715, 0.020232759416103363, -0.010028181597590446, 0.02141462080180645, 0.015355377458035946, -0.038489870727062225, 0.01017811894416809, 0.011562837287783623, 0.04685109853744507, -0.037607885897159576, 0.04812115803360939, 0.03379770740866661, 0.03686701878905296, 0.007126447279006243, 0.0184511486440897, 0.006398808676749468, -0.006923590786755085, -0.03374478593468666, -0.039124902337789536, 0.002019748091697693, 0.022825799882411957, 0.031910255551338196, 0.021449901163578033, -0.03527944162487984, 0.02146754041314125, 0.020338598638772964, 0.03363894671201706, 0.0411711111664772, 0.03293335810303688, -0.02665361948311329, -0.05986921489238739, -0.07218173891305923, 0.04427570104598999, 0.05806996300816536, 0.01704879105091095, 0.03358602896332741, 0.12947554886341095, -0.007558620534837246, 0.03568515554070473, 0.04039496183395386, 0.04702749848365784, -0.012003830634057522, -0.020567914471030235, -0.02961709164083004, -0.013026934117078781, 0.05934002250432968, 0.03527944162487984, -0.004912662319839001, -0.03379770740866661, -0.055071208626031876, 0.04381706938147545, 0.09673622995615005, -0.013538486324250698, -0.06629007309675217, -0.010134019888937473, 0.05136686936020851, 0.02234952710568905, 0.01030159741640091, -0.011307061649858952, -0.015249539166688919, -0.030693115666508675, 0.04992040991783142, -0.010575013235211372, 0.00007038662442937493, -0.06452610343694687, -0.019738847389817238, -0.03582627326250076, -0.009869423694908619, 0.022596482187509537, -0.04738029092550278, -0.02111474610865116, -0.04794476181268692, -0.012436003424227238, 0.013326809741556644, -0.04589855298399925, -0.07154671102762222, 0.004886202979832888, -0.010134019888937473, 0.1229841336607933, 0.03838403522968292, -0.06431442499160767, -0.04060663655400276, 0.014358732849359512, 0.020814871415495872, 0.015178980305790901, -0.007144086994230747, -0.07415738701820374, -0.030940070748329163, 0.024801447987556458, -0.0003833883092738688, 0.03171622008085251, -0.08855140209197998, 0.030234482139348984, 0.0013637709198519588, -0.0052566369995474815, -0.022155489772558212, 0.013300349935889244, -0.02192617394030094, -0.01843350939452648, 0.03164565935730934, -0.02002108283340931, 0.050590720027685165, 0.017657360062003136, 0.014887924306094646, -0.0016945156967267394, 0.07980209589004517, -0.03379770740866661, -0.023460829630494118, 0.016078606247901917, 0.00395791232585907, -0.03626726567745209, -0.028205914422869682, 0.015787551179528236, 0.014923203736543655, -0.02857634797692299, 0.04364066943526268, -0.029934607446193695, -0.003715366357937455, 0.08622295409440994, -0.009622467681765556, -0.006218001712113619, -0.00986060407012701, 0.0205855555832386, 0.01843350939452648, 0.004683346021920443, 0.020691392943263054, -0.024131137877702713, -0.015928668901324272, 0.024307535961270332, -0.016316741704940796, 0.05214301496744156, -0.022384805604815483, 0.020903069525957108, 0.01547885499894619, -0.04392290487885475, 0.013688423670828342, 0.038313474506139755, -0.07034720480442047, 0.0016195469070225954, 0.032386526465415955, -0.04829755797982216, -0.008422967046499252, -0.04670998081564903, -0.03134578466415405, -0.023778343573212624, -0.029934607446193695, -0.024166418239474297, -0.04935593903064728, -0.0759919211268425, 0.0233902707695961, 0.018592266365885735, -0.038031239062547684, 0.009825324639678001, 0.04473433271050453, 0.0646672174334526, 0.0032699634321033955, 0.0066942740231752396, -0.03658478334546089, 0.0031883795745670795, -0.02815299481153488, 0.005058189854025841, -0.01699587143957615, -0.004085800610482693, 0.02839995175600052, 0.0006989739486016333, -0.012982835061848164, -0.03968937322497368, -0.016025686636567116, -0.02804715745151043, -0.10068752616643906, -0.018486427143216133, 0.022420085966587067, -0.042793963104486465, -0.035050127655267715, 0.01553177461028099, 0.022614123299717903, -0.003788130125030875, -0.022296607494354248, 0.005613841116428375, -0.004533408209681511, 0.0013891280395910144, -0.028823304921388626, -0.0044540297240018845, 0.0775442123413086, -0.02972293086349964, -0.015734631568193436, -0.062409333884716034, -0.05108463391661644, 0.015549413859844208, 0.0602925680577755, 0.01379426196217537, 0.008127501234412193, 0.035120684653520584, -0.0020175431855022907, -0.07451017946004868, -0.07197006046772003, -0.04230005294084549, 0.035808634012937546, 0.0035786584485322237, 0.052037179470062256, 0.016210904344916344, 0.01663425751030445, -0.027535604313015938, -0.010416255332529545, 0.004006421659141779, 0.008356817997992039, 0.0013439262984320521, 0.008387687616050243, 0.015381837263703346, -0.06191541999578476, -0.0017606646288186312, 0.022367166355252266, 0.0281706340610981, -0.011942091397941113, 0.0004740675212815404, 0.005697629880160093, -0.01618444360792637, 0.018486427143216133, 0.04392290487885475, 0.05284860357642174, -0.008877189829945564, -0.02204965241253376, -0.0035654285456985235, 0.024589771404862404, -0.022543564438819885, -0.039654094725847244, -0.028205914422869682, -0.04935593903064728, 0.02718281000852585, -0.045475199818611145, -0.03602031245827675, -0.023654866963624954, -0.04487545043230057, -0.033550750464200974, -0.0029877277556806803, 0.007113217376172543, 0.016546059399843216, -0.04776836559176445, -0.013873640447854996, -0.0372198112308979, 0.022667041048407555, 0.032668761909008026, 0.017269287258386612, 0.014173516072332859, -0.009375511668622494, 0.0018929626094177365, 0.017480963841080666, -0.024942565709352493, 0.00405713589861989, 0.07535688579082489, 0.07010025531053543, 0.013979478739202023, -0.018115993589162827, 0.06558448076248169, -0.015955127775669098, 0.0038697137497365475, -0.03718453273177147, 0.037678442895412445, 0.05782300606369972, -0.03236888721585274, -0.02397238090634346, -0.0203738771378994, -0.02908790111541748, -0.0063679395243525505, 0.03676117956638336, 0.03339199349284172, -0.001046807155944407, -0.009375511668622494, -0.04561631754040718, -0.0005234035779722035, -0.0683009997010231, -0.0011972960783168674, 0.0033647767268121243, -0.03298627957701683, 0.025224801152944565, 0.021626297384500504, -0.029952246695756912, 0.024342814460396767, -0.015417116694152355, -0.026318464428186417, -0.07542745023965836, -0.03012864477932453, -0.021167665719985962, 0.02503076381981373, -0.0777558907866478, 0.060186728835105896, 0.04543992131948471, -0.0004897778853774071, -0.011554017663002014, -0.006050424184650183, -0.013212150894105434, -0.028964422643184662, -0.061774302273988724, 0.04258228838443756, 0.07465130090713501, -0.002213784959167242, 0.07239341735839844, -0.027764922007918358, 0.06463193893432617, 0.006782472599297762, 0.019915245473384857, 0.0030362370889633894, -0.03612614795565605, -0.012144948355853558, -0.024872006848454475, 0.05888139083981514, -0.06685454398393631, 0.046110231429338455, -0.005031730514019728, -0.04649830609560013, 0.031857337802648544, -0.0564471073448658, 0.0332685150206089, 0.03101062960922718, 0.0281706340610981, -0.05806996300816536, -0.030181562528014183, 0.005508002825081348, 0.02892914228141308, 0.0027826661244034767, -0.047733087092638016, -0.04836811497807503, 0.021979093551635742, -0.03686701878905296, 0.014032398350536823, -0.027764922007918358, 0.02716517075896263, 0.01527599897235632, -0.013644324615597725, -0.025789272040128708, 0.06262101233005524, 0.010416255332529545, -0.0047803642228245735, -0.014949663542211056, 0.020056363195180893, -0.002972292946651578, -0.09264381229877472, 0.0027319518849253654, 0.009560728445649147, 0.06166846677660942, -0.040289122611284256, 0.019227296113967896, 0.03268640488386154, 0.044416818767786026, 0.001560012809932232, -0.00412989966571331, 0.026265544816851616, 0.045192964375019073, 0.01277115847915411, 0.010742589831352234, -0.02503076381981373, -0.10640279948711395, 0.024942565709352493, 0.02326679229736328, -0.00435039633885026, -0.014482211321592331, 0.006681044586002827, 0.022949276491999626, -0.034132860600948334, 0.004784774500876665, -0.03923074156045914, 0.0102398581802845, 0.000013315921933099162, 0.009084456600248814, 0.02035623788833618, -0.020691392943263054, 0.03725508973002434, 0.03792539983987808, -0.048085879534482956, 0.015267178416252136, 0.08862195909023285, -0.05715269595384598, -0.023302072659134865, 0.017833758145570755, -0.0012138333404436707, 0.017383946105837822, -0.007924645207822323, -0.015699351206421852, 0.03954825550317764, -0.07094696164131165, 0.011333520524203777, -0.033727146685123444, 0.002061642473563552, -0.00686626136302948, -0.06537280976772308, -0.03933657705783844, 0.0679834857583046, -0.024660330265760422, -0.03406229987740517, 0.020320959389209747, -0.006262101233005524, -0.040959432721138, -0.004173999186605215, 0.00412989966571331, -0.018080715090036392, -0.10640279948711395, -0.02711225114762783, 0.05066128075122833, 0.004758314695209265, -0.013212150894105434, 0.06787765026092529, 0.04695693776011467, 0.01419997587800026, -0.010724950581789017, -0.07112335413694382, 0.0508376769721508, -0.015981586650013924, 0.07055888324975967, -0.023354990407824516, -0.01375898253172636, 0.056694064289331436, 0.06279740482568741, -0.03333907201886177, -0.02326679229736328, -0.025630515068769455, -0.010019361972808838, 0.01843350939452648, -0.06572560220956802, -0.012224326841533184, -0.06858323514461517, -0.03404466062784195, -0.03263348340988159, 0.0031949945259839296, 0.07359291613101959, 0.021344061940908432, -0.01346792746335268, -0.07331068068742752, 0.023531388491392136, -0.07302844524383545, 0.0034926647786051035, 0.05298972129821777, -0.03856043145060539, -0.017727918922901154, 0.02513660304248333, 0.06547864526510239, 0.011042465455830097, 0.008788990788161755, 0.028347032144665718, 0.017833758145570755, 0.045581039041280746, 0.04857979342341423, -0.023831263184547424, -0.0322277694940567, -0.028258834034204483, 0.054718416184186935, -0.0006234538741409779, -0.007765887305140495, 0.04554576054215431, 0.026953494176268578, 0.05866971239447594, 0.04339371249079704, 0.023990020155906677, -0.04783892259001732, 0.025171881541609764, 0.010134019888937473, -0.049250103533267975, 0.037396207451820374, 0.046639423817396164, 0.0012281655799597502, -0.029370136559009552, -0.026494860649108887, 0.0184511486440897, -0.030887151136994362, -0.03344491124153137, -0.050943516194820404, -0.07458074390888214, -0.0605042427778244, 0.0486503504216671, -0.060080889612436295, -0.03781956061720848, 0.013079853728413582, 0.02967001125216484, -0.0205855555832386, -0.007408682722598314, 0.023090394213795662, 0.041629742830991745, 0.05069655925035477, -0.029634730890393257, 0.01791313663125038, -0.035173602402210236, 0.001948086661286652, 0.01405003760010004, -0.03746676817536354, 0.014208795502781868, -0.010522093623876572, -0.04776836559176445, 0.06964161992073059, -0.02850578911602497, 0.029546532779932022, 0.01663425751030445, -0.020285679027438164, -0.03547348082065582, 0.008793400600552559, 0.01274469867348671, -0.040112726390361786, 0.057752449065446854, -0.043323155492544174, 0.012383084744215012, 0.03792539983987808, 0.012347805313766003, 0.07556856423616409, 0.020462077111005783, 0.009040357545018196, 0.029546532779932022, -0.022702321410179138, 0.07408683001995087, 0.03429161757230759, 0.018539346754550934, -0.06463193893432617, 0.0332685150206089, 0.0010159376543015242, 0.02012692205607891, -0.01890978030860424, -0.004846513271331787, 0.039830490946769714, -0.032210130244493484, 0.00381899974308908, -0.052566368132829666, 0.011104204691946507, 0.008475885726511478, 0.09292604774236679, 0.037678442895412445, 0.018018975853919983, -0.03236888721585274, -0.05898722633719444, 0.03205137327313423, -0.002595243975520134, 0.0036205528303980827, 0.020056363195180893, 0.05055544152855873, 0.022719960659742355, -0.01873338408768177, -0.022561203688383102, -0.0037616705521941185, 0.00017116042727138847, 0.05884610861539841, -0.011536377482116222, 0.01919201761484146, 0.022614123299717903, -0.0010765742044895887, -0.027429766952991486, 0.011068925261497498, -0.07697974145412445, -0.014711527153849602, 0.0022689092438668013, 0.019738847389817238, -0.02974057011306286, 0.053977545350790024, 0.01972120814025402, 0.034714970737695694, -0.05517704784870148, -0.011157123371958733, -0.06688982248306274, 0.013432648032903671, 0.04420514032244682, 0.0282235536724329, -0.036514222621917725, 0.03367422893643379, -0.0068221623077988625, -0.028717465698719025, 0.02176741510629654, 0.012294885702431202, -0.017604442313313484, -0.06371467560529709, -0.006469367537647486, -0.009128555655479431, 0.03157510235905647, -0.024219337850809097, 0.05224885419011116, 0.047450851649045944, -0.02741212770342827, -0.010583832859992981, 0.06339716166257858, 0.03328615427017212, 0.012092028744518757, -0.0078232167288661, 0.05764660984277725, -0.04134750738739967, 0.004262197762727737, -0.0014277149457484484, -0.003589683212339878, 0.03774900361895561, 0.020285679027438164, 0.016969412565231323, 0.021785056218504906, 0.03065783530473709, 0.010248677805066109, -0.04194725677371025, 0.04307619854807854, -0.0037241862155497074, -0.06939466297626495, 0.05126103013753891, 0.021732136607170105, 0.0408535934984684, -0.024113498628139496, 0.004224713426083326, 0.0795198604464531, 0.04416986182332039, 0.030992990359663963, -0.015522954985499382, 0.013882461003959179, -0.011439358815550804, 0.02397238090634346 ]
18,501
miarec_s3fs.s3fs
setinfo
null
def setinfo(self, path, info): self.getinfo(path)
(self, path, info)
[ 0.04281207174062729, 0.055567387491464615, 0.02441498264670372, 0.03228076174855232, 0.022436272352933884, -0.035322412848472595, 0.04215795174241066, 0.030302051454782486, -0.005531391594558954, 0.02822522446513176, 0.02098085917532444, -0.037742651998996735, 0.04847019910812378, -0.01746497116982937, -0.019100267440080643, -0.015191907994449139, 0.010547664947807789, 0.02681886777281761, -0.031086992472410202, 0.015240966342389584, -0.008487191051244736, -0.031512171030044556, 0.029468050226569176, -0.004239507019519806, 0.009386603720486164, 0.039508771151304245, 0.044512782245874405, 0.023335685953497887, 0.12303973734378815, -0.0464424304664135, -0.05772598087787628, -0.04676948860287666, 0.009525604546070099, 0.019721679389476776, 0.015118319541215897, -0.010220604948699474, -0.012608138844370842, -0.0016782233724370599, -0.029664285480976105, 0.05373585596680641, -0.017219675704836845, 0.028912048786878586, -0.03816783055663109, 0.01299243327230215, 0.03296758607029915, 0.02609933726489544, -0.012918844819068909, 0.014235259033739567, 0.0004893114673905075, -0.006177334114909172, 0.003536329371854663, -0.004983567167073488, -0.03869112208485603, -0.04719466716051102, -0.010204252786934376, 0.032722290605306625, 0.06456152349710464, 0.026998750865459442, 0.017579441890120506, -0.010351428762078285, 0.07136435806751251, -0.022223684936761856, 0.01929650269448757, -0.052885498851537704, -0.018707796931266785, 0.005739891901612282, 0.013155963271856308, -0.019051209092140198, -0.019525444135069847, 0.01792285405099392, 0.04055536165833473, -0.025003688409924507, -0.021749448031187057, 0.012240196578204632, 0.038952771574258804, 0.00877336785197258, -0.0705140009522438, 0.022321801632642746, 0.04997467249631882, -0.0236790981143713, -0.0408824197947979, -0.056319624185562134, 0.024006158113479614, -0.037742651998996735, -0.06390739977359772, 0.025870395824313164, 0.052689265459775925, -0.07744766026735306, 0.0018887678161263466, 0.06737422943115234, -0.042485013604164124, 0.01049042958766222, -0.03600923717021942, 0.027358517050743103, -0.01708885282278061, 0.00043309814645908773, 0.04078430309891701, -0.05550197511911392, -0.009738192893564701, 0.06272998452186584, -0.01735050044953823, -0.07600859552621841, 0.0034055057913064957, -0.03591112047433853, -0.006005627568811178, -0.046834900975227356, 0.04510148614645004, -0.006381745915859938, -0.010425017215311527, -0.008650720119476318, -0.03564947098493576, -0.0085853086784482, -0.06515022367238998, -0.009779075160622597, 0.023450156673789024, 0.00018294883193448186, -0.008143777959048748, -0.06616411358118057, -0.005923863034695387, 0.029778756201267242, -0.018789561465382576, -0.00978725217282772, -0.018266266211867332, 0.034308526664972305, 0.014349729754030704, 0.005743980407714844, -0.005699009634554386, 0.043760545551776886, 0.02766922302544117, -0.06456152349710464, 0.00965642835944891, -0.01627938076853752, 0.024529453366994858, 0.030154874548316002, 0.05507679656147957, -0.01545355562120676, -0.08967968076467514, -0.03195369988679886, -0.04768525809049606, 0.03584570810198784, -0.05883798003196716, -0.06295892596244812, -0.03584570810198784, -0.06855164468288422, 0.022812390699982643, 0.02377721667289734, 0.045624781399965286, -0.021324271336197853, -0.02804534137248993, -0.02812710590660572, 0.030956169590353966, -0.008188748732209206, -0.01679449900984764, -0.03280405327677727, -0.026295574381947517, -0.047390904277563095, -0.0051798028871417046, 0.0222727432847023, 0.024807453155517578, -0.011798666790127754, -0.027440281584858894, -0.06737422943115234, -0.014734025113284588, -0.009705486707389355, -0.0002109277411364019, 0.01867509074509144, -0.02719498611986637, -0.02443133480846882, -0.005825744941830635, 0.0020400327630341053, 0.04817584529519081, -0.041438423097133636, -0.02636098489165306, 0.0287812240421772, 0.05239491164684296, -0.014545965939760208, 0.012755315750837326, -0.04631160572171211, 0.05347420647740364, 0.04222336411476135, 0.009762722067534924, -0.011070960201323032, -0.030710874125361443, 0.12107738107442856, -0.00598518643528223, 0.0015852159122005105, 0.0125345503911376, -0.047227371484041214, 0.010179722681641579, 0.06472504884004593, 0.07188764959573746, 0.004979479126632214, 0.0008682404295541346, -0.044970665127038956, 0.03515888378024101, -0.009836310520768166, 0.033294644206762314, -0.04398948699235916, -0.006545275915414095, 0.05609068274497986, 0.02487286552786827, -0.006005627568811178, -0.007698160130530596, 0.034308526664972305, 0.054095618426799774, 0.04431654512882233, 0.11126559972763062, 0.016328439116477966, -0.05033443868160248, 0.08431590348482132, 0.03172475844621658, 0.013507552444934845, 0.050628792494535446, -0.01780838333070278, 0.020588386803865433, -0.015617084689438343, -0.03911630064249039, 0.016843557357788086, 0.010416841134428978, 0.03275499492883682, 0.02487286552786827, 0.036270882934331894, 0.03535511717200279, 0.03741559386253357, -0.034472059458494186, -0.03558405861258507, 0.03228076174855232, -0.046017251908779144, -0.04467631131410599, -0.03277134895324707, -0.00543327396735549, 0.0250527486205101, -0.05206785351037979, -0.0029230930376797915, -0.10328534990549088, -0.008806074038147926, 0.03371982276439667, -0.011904961429536343, -0.009877192787826061, -0.02626286819577217, -0.011250842362642288, 0.03548594191670418, 0.01911661960184574, 0.0027800046373158693, -0.050726909190416336, -0.04997467249631882, -0.03280405327677727, 0.009059544652700424, -0.009002309292554855, -0.0040453155525028706, 0.06603328883647919, -0.000963292084634304, -0.04611537232995033, 0.02933722548186779, 0.012264726683497429, -0.016680028289556503, -0.03211722895503044, -0.040718890726566315, 0.011962196789681911, -0.03790618106722832, -0.08954885601997375, -0.03695770725607872, 0.01481578964740038, -0.0027738723438233137, 0.017792029306292534, 0.007285247556865215, 0.021373329684138298, -0.019460031762719154, -0.0390181839466095, 0.006533010862767696, 0.0649866983294487, 0.04719466716051102, -0.03224805369973183, 0.035322412848472595, -0.04140571504831314, -0.009353898465633392, 0.0012356712250038981, -0.0362381786108017, -0.06004809960722923, -0.003969683311879635, 0.048797257244586945, -0.029091931879520416, 0.010784782469272614, -0.0075755128636956215, -0.05949210003018379, -0.018168147653341293, 0.025477925315499306, 0.09962228685617447, -0.04353160411119461, 0.02042485773563385, -0.013115081004798412, 0.06815917044878006, -0.06711257994174957, 0.032722290605306625, 0.013532081618905067, -0.0023895774502307177, -0.07672812789678574, 0.06060410290956497, 0.010048898868262768, -0.028110753744840622, -0.013540257699787617, -0.049451377242803574, -0.08928720653057098, 0.00448071351274848, 0.047489020973443985, -0.016720909625291824, 0.029746050015091896, 0.023237569257616997, -0.002751386957243085, 0.0436297208070755, 0.06093116104602814, 0.020261328667402267, -0.08039119094610214, 0.04114406928420067, 0.0343412347137928, -0.009002309292554855, -0.03888735920190811, 0.04843749478459358, -0.0362054742872715, 0.05618879944086075, -0.022321801632642746, -0.02637733891606331, -0.032002758234739304, -0.005523215048015118, 0.04111136123538017, 0.0034525205846875906, 0.02869945950806141, 0.03223169967532158, -0.03131593391299248, 0.027522046118974686, -0.09478180855512619, 0.058445509523153305, 0.030154874548316002, -0.027603810653090477, 0.0007210636977106333, 0.022681567817926407, -0.06102927774190903, -0.05468432605266571, 0.0037938887253403664, 0.03453746810555458, 0.011471607722342014, -0.04045724496245384, -0.06828999519348145, -0.026606280356645584, 0.010138840414583683, 0.012436432763934135, 0.034668292850255966, 0.0008355344762094319, 0.012289255857467651, 0.03842947632074356, -0.06626223027706146, -0.0630570501089096, 0.007710424717515707, -0.019934268668293953, -0.0052697439678013325, -0.027407575398683548, -0.010236958041787148, -0.041078656911849976, 0.003969683311879635, -0.021373329684138298, -0.011226313188672066, 0.04768525809049606, 0.04438195750117302, -0.034864529967308044, -0.008012955076992512, -0.057235389947891235, -0.02413698099553585, 0.06855164468288422, 0.04788149148225784, -0.02385898120701313, 0.01017154660075903, -0.05690833181142807, 0.0042844777926802635, 0.001465634792111814, 0.03398146852850914, 0.03927982971072197, 0.024464040994644165, 0.0222890954464674, -0.09981852024793625, -0.020195916295051575, 0.019051209092140198, 0.0072239236906170845, 0.005273832473903894, -0.008560779504477978, 0.025690514594316483, -0.025510631501674652, 0.021144388243556023, 0.019721679389476776, -0.002906740177422762, 0.028813930228352547, 0.000412656954722479, 0.007902571931481361, 0.004566566552966833, -0.008119248785078526, 0.002095224102959037, -0.00652483431622386, 0.05298361927270889, -0.016663674265146255, -0.0046319784596562386, 0.03914900869131088, 0.009762722067534924, -0.04598454758524895, -0.01697438210248947, 0.016549203544855118, 0.04035912826657295, -0.0264754556119442, -0.008511720225214958, 0.04412030801177025, -0.004476625006645918, -0.06583704799413681, 0.006663834676146507, -0.014635906554758549, 0.04788149148225784, -0.01627938076853752, -0.0020298121962696314, 0.05239491164684296, -0.0011998991249129176, -0.014791260473430157, 0.016606438905000687, 0.024202393367886543, 0.024267805740237236, 0.022436272352933884, -0.05141373351216316, 0.04781607910990715, 0.0036140060983598232, -0.02070285752415657, -0.012330138124525547, -0.019149325788021088, 0.019754385575652122, 0.03888735920190811, 0.030514638870954514, -0.04487254470586777, 0.01031054649502039, 0.018626030534505844, -0.00512665556743741, -0.01012248732149601, -0.029468050226569176, -0.03571488335728645, -0.06616411358118057, 0.00896142702549696, -0.013540257699787617, 0.022141920402646065, -0.005838009994477034, -0.030759934335947037, 0.0046851253136992455, -0.02034309320151806, 0.014635906554758549, -0.018969442695379257, 0.04771796241402626, -0.05033443868160248, -0.028388753533363342, 0.01156154926866293, 0.003577211871743202, 0.004681037273257971, -0.007142159156501293, -0.021226152777671814, -0.030874405056238174, 0.006692452356219292, 0.023630039766430855, 0.0009847553446888924, -0.06609869748353958, 0.019836150109767914, -0.02822522446513176, -0.032444290816783905, 0.055207621306180954, -0.021520506590604782, 0.02219097875058651, 0.028666753321886063, -0.04124218598008156, -0.07411165535449982, -0.03219899535179138, 0.0015402452554553747, -0.04909161105751991, 0.07097188383340836, -0.00807836651802063, 0.00001032440832204884, -0.02619745582342148, 0.026213807985186577, -0.06609869748353958, -0.022796038538217545, 0.010572194121778011, 0.030759934335947037, 0.015715202316641808, -0.006083304528146982, 0.03358899801969528, -0.03914900869131088, 0.024660276249051094, 0.011201783083379269, 0.0053801266476511955, 0.012959728017449379, 0.035878412425518036, -0.012060314416885376, -0.06822458654642105, -0.07790554314851761, 0.012150255963206291, 0.02387533336877823, -0.01846250146627426, 0.015412673354148865, 0.0021504154428839684, 0.010670311748981476, -0.03228076174855232, -0.0695982351899147, 0.022894155234098434, -0.02979510836303234, -0.003370755584910512, 0.05537115037441254, 0.005044891033321619, 0.00980360433459282, 0.01012248732149601, 0.026426397264003754, -0.005903421435505152, 0.026393691077828407, -0.007416071370244026, 0.006929570343345404, 0.054717034101486206, 0.02719498611986637, -0.05363773554563522, 0.009599192999303341, -0.021651331335306168, -0.03424311801791191, 0.0002672688278835267, -0.023728158324956894, 0.08418507874011993, -0.04013018310070038, -0.0028290636837482452, -0.05134832113981247, -0.009705486707389355, 0.007730865851044655, -0.024202393367886543, 0.020016033202409744, 0.02552698366343975, -0.02070285752415657, 0.008789720945060253, 0.01780838333070278, 0.08183025568723679, 0.033458173274993896, 0.06191233918070793, -0.03584570810198784, 0.005147096700966358, -0.04346619173884392, 0.011406195349991322, -0.03349088132381439, -0.045461252331733704, -0.042648542672395706, 0.04657325521111488, -0.07012152671813965, -0.04281207174062729, -0.03090711124241352, 0.06286080926656723, -0.01967262104153633, -0.03757912293076515, -0.05308173596858978, -0.005441450513899326, 0.037284769117832184, 0.0056540388613939285, 0.011880431324243546, 0.025608748197555542, -0.05497867986559868, -0.003109108190983534, 0.014153494499623775, -0.025281690061092377, 0.00175181170925498, -0.013401257805526257, 0.049058906733989716, 0.05239491164684296, -0.00004385278589325026, -0.0062018632888793945, 0.03649982437491417, 0.009051368571817875, -0.03509347140789032, 0.04222336411476135, 0.022714274004101753, 0.000442296703113243, 0.01811908930540085, -0.017955560237169266, 0.015854202210903168, 0.06482316553592682, 0.04120948165655136, 0.09053003787994385, 0.008609837852418423, -0.004852743353694677, 0.04696572571992874, 0.014913907274603844, 0.0649866983294487, 0.012068490497767925, -0.022338155657052994, -0.017710264772176743, 0.01637749746441841, 0.020294034853577614, 0.06272998452186584, -0.06439799070358276, -0.08379261195659637, -0.012886139564216137, -0.03499535098671913, -0.011586078442633152, -0.0125345503911376, 0.02322121523320675, -0.10348158329725266, 0.003548594191670418, -0.006320422515273094, -0.02842145971953869, -0.059655629098415375, -0.06488858163356781, 0.019051209092140198, -0.09124956279993057, -0.003303299658000469, -0.010727547109127045, 0.025952160358428955, -0.0362054742872715, 0.03999936208128929, 0.016001379117369652, -0.0008600639412179589, 0.0011528843315318227, 0.033278290182352066, -0.028732165694236755, 0.06341680884361267, 0.04130759835243225, 0.0036671531852334738, -0.02044120989739895, 0.01593596860766411, -0.04539583995938301, -0.02681886777281761, -0.003930844832211733, -0.007105364929884672, -0.026671690866351128, 0.021422388032078743, 0.0213569775223732, 0.006389922462403774, -0.017432264983654022, -0.061421748250722885, 0.014022670686244965, 0.012420079670846462, -0.022632509469985962, 0.02637733891606331, 0.013891846872866154, -0.057791389524936676, 0.008262337185442448, -0.010662135668098927, -0.00007167199510149658, 0.031888287514448166, -0.0143906120210886, 0.011725078336894512, 0.0015688629355281591, -0.035224296152591705, -0.037840768694877625, 0.022141920402646065, -0.025657808408141136, -0.05030173063278198, 0.04775066673755646, 0.013106903992593288, -0.019263796508312225, -0.005731715355068445, 0.0016823116457089782, 0.05154455825686455, 0.07555071264505386, 0.008528073318302631, 0.0010792958782985806, 0.04199442267417908, -0.031430404633283615, 0.014349729754030704, -0.07620483636856079, 0.019901562482118607, 0.024464040994644165, -0.04500336945056915, 0.06008080765604973, 0.02302497997879982, -0.00807836651802063, -0.01527367252856493, 0.01569885015487671, -0.009942605160176754, 0.02747298777103424, 0.012428255751729012, -0.00740789482370019, -0.010040722787380219, -0.0038858740590512753, -0.05805303901433945, 0.017955560237169266, -0.018527913838624954, 0.03336005657911301, 0.04771796241402626, 0.002491783583536744, -0.0213569775223732, 0.0445454865694046, 0.01921473816037178, 0.030481932684779167, 0.06511752307415009, 0.03947606682777405, 0.016549203544855118, 0.017219675704836845, 0.01828261837363243, -0.022060154005885124, -0.055305738002061844, -0.04075159877538681, 0.021863918751478195, -0.02171674184501171, -0.017514029517769814, 0.014169847592711449, -0.04448007419705391, 0.05412832647562027, -0.020555680617690086, 0.02802898734807968, 0.024087922647595406, 0.02588674984872341, -0.03564947098493576, -0.01838073693215847, -0.06600058078765869, -0.02153685875236988, -0.0464097261428833, -0.038658417761325836, -0.001191722578369081, 0.00471374299377203, 0.02534710057079792, 0.01774297095835209, -0.042485013604164124, 0.011438901536166668, 0.07293424010276794, -0.025118159130215645, -0.02554333768785, -0.006038333754986525, 0.049418672919273376, 0.03118511103093624, -0.016181262210011482, 0.015559849329292774, 0.023417450487613678, -0.008936896920204163, 0.027162279933691025, 0.02359733358025551, -0.025232629850506783, 0.06246833875775337, 0.019525444135069847, -0.07260718196630478, 0.0029026519041508436, -0.05494597554206848, 0.03888735920190811, -0.02052297629415989, -0.021847566589713097, -0.06835541129112244, -0.007346570957452059, 0.06999070197343826, 0.031888287514448166, 0.016164910048246384, 0.033098407089710236, 0.03035110980272293, 0.024382276460528374, -0.026066631078720093, -0.011381666176021099, 0.01903485506772995, 0.004106639418751001, -0.05645044893026352, 0.06070221960544586, 0.013433963991701603, 0.01031054649502039, -0.030596403405070305, 0.03813512250781059, 0.05448809266090393, -0.05412832647562027, 0.03296758607029915, -0.0022342242300510406, 0.09523969143629074, 0.06583704799413681, 0.001339921378530562, 0.0132377278059721, 0.03371982276439667, -0.021242506802082062, 0.04670407995581627, 0.042190659791231155, -0.04343348369002342, -0.00021744337573181838 ]
18,502
fs.base
writetext
Create or replace a file with text. Arguments: path (str): Destination path on the filesystem. contents (str): Text to be written. encoding (str, optional): Encoding of destination file (defaults to ``'utf-8'``). errors (str, optional): How encoding errors should be treated (same as `io.open`). newline (str): Newline parameter (same as `io.open`). Raises: TypeError: if ``contents`` is not a unicode string. Note: .. deprecated:: 2.2.0 Please use `~writetext`
def _new_name(method, old_name): """Return a method with a deprecation warning.""" # Looks suspiciously like a decorator, but isn't! @wraps(method) def _method(*args, **kwargs): warnings.warn( "method '{}' has been deprecated, please rename to '{}'".format( old_name, method.__name__ ), DeprecationWarning, ) return method(*args, **kwargs) deprecated_msg = """ Note: .. deprecated:: 2.2.0 Please use `~{}` """.format( method.__name__ ) if getattr(_method, "__doc__", None) is not None: _method.__doc__ += deprecated_msg return _method
(self, path, contents, encoding='utf-8', errors=None, newline='')
[ -0.01489674486219883, -0.058034684509038925, 0.04300564154982567, -0.0054727233946323395, -0.03827819600701332, -0.0645613819360733, 0.02746504545211792, 0.03012864477932453, 0.053095560520887375, -0.005477133672684431, -0.0010848428355529904, -0.03206901252269745, 0.04007744789123535, 0.015470035374164581, -0.00011024825653294101, -0.012356624938547611, -0.005900486838072538, 0.02600094862282276, -0.02467796951532364, 0.008105452172458172, -0.0057946485467255116, 0.007664458826184273, 0.015628792345523834, -0.03986576944589615, -0.01668717712163925, 0.13822485506534576, 0.027482686564326286, 0.007289614994078875, 0.01768382079899311, -0.05200189724564552, -0.05358947440981865, 0.01954481191933155, 0.04462849348783493, 0.039124902337789536, 0.03781956061720848, 0.03369186818599701, -0.014773266389966011, -0.0034485654905438423, -0.037008136510849, -0.010610292665660381, 0.00803048349916935, -0.01972120814025402, -0.023072754964232445, -0.04625134915113449, 0.016316741704940796, 0.0010644468711689115, -0.01172159519046545, 0.06120983138680458, -0.021573379635810852, 0.02397238090634346, 0.01704879105091095, -0.057752449065446854, 0.01995052397251129, 0.011739234440028667, 0.01195973064750433, 0.02984640747308731, 0.019509531557559967, 0.04939122125506401, -0.004403315484523773, 0.046568863093853, 0.01920965686440468, 0.005918126553297043, -0.008881599642336369, -0.019403694197535515, 0.008780171163380146, -0.0342034213244915, 0.0262479055672884, -0.03277460113167763, 0.02019748091697693, 0.035932112485170364, 0.002260089386254549, 0.03134578466415405, -0.027553245425224304, 0.04067719727754593, -0.00021057417325209826, -0.00870079267770052, -0.0369022972881794, -0.01727810688316822, 0.005543282255530357, -0.02414877898991108, -0.011359980329871178, -0.03318031504750252, 0.01692531257867813, -0.018292391672730446, -0.023372631520032883, -0.043323155492544174, -0.016969412565231323, -0.06900659203529358, -0.053554192185401917, -0.020620834082365036, -0.06311492621898651, 0.000726536032743752, -0.014605688862502575, 0.011386440135538578, -0.018839221447706223, -0.05133158713579178, 0.005953405983746052, -0.017833758145570755, 0.027200449258089066, -0.017586801201105118, 0.016131525859236717, 0.031151747331023216, 0.005688810255378485, -0.010786689817905426, 0.01931549422442913, -0.04487545043230057, -0.01445575151592493, -0.008740481920540333, -0.0034110811538994312, -0.03125758469104767, -0.0009018307318910956, -0.05743493139743805, -0.035985030233860016, 0.02437809482216835, -0.024695610627532005, 0.009534269571304321, -0.011236502788960934, -0.05877555161714554, -0.046110231429338455, 0.007836446166038513, -0.024695610627532005, -0.017727918922901154, -0.04928538203239441, -0.055706240236759186, -0.024889646098017693, -0.017066430300474167, -0.018521707504987717, -0.00010163511615246534, 0.06558448076248169, -0.002939218655228615, -0.05948114022612572, 0.022772880271077156, 0.012056749314069748, -0.0015203234506770968, 0.05034376308321953, -0.013018114492297173, -0.01405003760010004, 0.08156607300043106, 0.005882847122848034, 0.041700299829244614, -0.005159618332982063, 0.021308783441781998, 0.04194725677371025, 0.04893258586525917, 0.01192445121705532, -0.02012692205607891, -0.022896358743309975, 0.04649830609560013, -0.006738373544067144, -0.007113217376172543, -0.02880566567182541, 0.022737599909305573, 0.053801149129867554, -0.034944288432598114, 0.0642438679933548, 0.02391946129500866, 0.0007882750360295177, -0.05316612124443054, -0.02804715745151043, -0.04219421371817589, 0.04759196937084198, -0.043146759271621704, -0.04621607065200806, -0.05126103013753891, 0.07034720480442047, -0.035050127655267715, 0.020232759416103363, -0.010028181597590446, 0.02141462080180645, 0.015355377458035946, -0.038489870727062225, 0.01017811894416809, 0.011562837287783623, 0.04685109853744507, -0.037607885897159576, 0.04812115803360939, 0.03379770740866661, 0.03686701878905296, 0.007126447279006243, 0.0184511486440897, 0.006398808676749468, -0.006923590786755085, -0.03374478593468666, -0.039124902337789536, 0.002019748091697693, 0.022825799882411957, 0.031910255551338196, 0.021449901163578033, -0.03527944162487984, 0.02146754041314125, 0.020338598638772964, 0.03363894671201706, 0.0411711111664772, 0.03293335810303688, -0.02665361948311329, -0.05986921489238739, -0.07218173891305923, 0.04427570104598999, 0.05806996300816536, 0.01704879105091095, 0.03358602896332741, 0.12947554886341095, -0.007558620534837246, 0.03568515554070473, 0.04039496183395386, 0.04702749848365784, -0.012003830634057522, -0.020567914471030235, -0.02961709164083004, -0.013026934117078781, 0.05934002250432968, 0.03527944162487984, -0.004912662319839001, -0.03379770740866661, -0.055071208626031876, 0.04381706938147545, 0.09673622995615005, -0.013538486324250698, -0.06629007309675217, -0.010134019888937473, 0.05136686936020851, 0.02234952710568905, 0.01030159741640091, -0.011307061649858952, -0.015249539166688919, -0.030693115666508675, 0.04992040991783142, -0.010575013235211372, 0.00007038662442937493, -0.06452610343694687, -0.019738847389817238, -0.03582627326250076, -0.009869423694908619, 0.022596482187509537, -0.04738029092550278, -0.02111474610865116, -0.04794476181268692, -0.012436003424227238, 0.013326809741556644, -0.04589855298399925, -0.07154671102762222, 0.004886202979832888, -0.010134019888937473, 0.1229841336607933, 0.03838403522968292, -0.06431442499160767, -0.04060663655400276, 0.014358732849359512, 0.020814871415495872, 0.015178980305790901, -0.007144086994230747, -0.07415738701820374, -0.030940070748329163, 0.024801447987556458, -0.0003833883092738688, 0.03171622008085251, -0.08855140209197998, 0.030234482139348984, 0.0013637709198519588, -0.0052566369995474815, -0.022155489772558212, 0.013300349935889244, -0.02192617394030094, -0.01843350939452648, 0.03164565935730934, -0.02002108283340931, 0.050590720027685165, 0.017657360062003136, 0.014887924306094646, -0.0016945156967267394, 0.07980209589004517, -0.03379770740866661, -0.023460829630494118, 0.016078606247901917, 0.00395791232585907, -0.03626726567745209, -0.028205914422869682, 0.015787551179528236, 0.014923203736543655, -0.02857634797692299, 0.04364066943526268, -0.029934607446193695, -0.003715366357937455, 0.08622295409440994, -0.009622467681765556, -0.006218001712113619, -0.00986060407012701, 0.0205855555832386, 0.01843350939452648, 0.004683346021920443, 0.020691392943263054, -0.024131137877702713, -0.015928668901324272, 0.024307535961270332, -0.016316741704940796, 0.05214301496744156, -0.022384805604815483, 0.020903069525957108, 0.01547885499894619, -0.04392290487885475, 0.013688423670828342, 0.038313474506139755, -0.07034720480442047, 0.0016195469070225954, 0.032386526465415955, -0.04829755797982216, -0.008422967046499252, -0.04670998081564903, -0.03134578466415405, -0.023778343573212624, -0.029934607446193695, -0.024166418239474297, -0.04935593903064728, -0.0759919211268425, 0.0233902707695961, 0.018592266365885735, -0.038031239062547684, 0.009825324639678001, 0.04473433271050453, 0.0646672174334526, 0.0032699634321033955, 0.0066942740231752396, -0.03658478334546089, 0.0031883795745670795, -0.02815299481153488, 0.005058189854025841, -0.01699587143957615, -0.004085800610482693, 0.02839995175600052, 0.0006989739486016333, -0.012982835061848164, -0.03968937322497368, -0.016025686636567116, -0.02804715745151043, -0.10068752616643906, -0.018486427143216133, 0.022420085966587067, -0.042793963104486465, -0.035050127655267715, 0.01553177461028099, 0.022614123299717903, -0.003788130125030875, -0.022296607494354248, 0.005613841116428375, -0.004533408209681511, 0.0013891280395910144, -0.028823304921388626, -0.0044540297240018845, 0.0775442123413086, -0.02972293086349964, -0.015734631568193436, -0.062409333884716034, -0.05108463391661644, 0.015549413859844208, 0.0602925680577755, 0.01379426196217537, 0.008127501234412193, 0.035120684653520584, -0.0020175431855022907, -0.07451017946004868, -0.07197006046772003, -0.04230005294084549, 0.035808634012937546, 0.0035786584485322237, 0.052037179470062256, 0.016210904344916344, 0.01663425751030445, -0.027535604313015938, -0.010416255332529545, 0.004006421659141779, 0.008356817997992039, 0.0013439262984320521, 0.008387687616050243, 0.015381837263703346, -0.06191541999578476, -0.0017606646288186312, 0.022367166355252266, 0.0281706340610981, -0.011942091397941113, 0.0004740675212815404, 0.005697629880160093, -0.01618444360792637, 0.018486427143216133, 0.04392290487885475, 0.05284860357642174, -0.008877189829945564, -0.02204965241253376, -0.0035654285456985235, 0.024589771404862404, -0.022543564438819885, -0.039654094725847244, -0.028205914422869682, -0.04935593903064728, 0.02718281000852585, -0.045475199818611145, -0.03602031245827675, -0.023654866963624954, -0.04487545043230057, -0.033550750464200974, -0.0029877277556806803, 0.007113217376172543, 0.016546059399843216, -0.04776836559176445, -0.013873640447854996, -0.0372198112308979, 0.022667041048407555, 0.032668761909008026, 0.017269287258386612, 0.014173516072332859, -0.009375511668622494, 0.0018929626094177365, 0.017480963841080666, -0.024942565709352493, 0.00405713589861989, 0.07535688579082489, 0.07010025531053543, 0.013979478739202023, -0.018115993589162827, 0.06558448076248169, -0.015955127775669098, 0.0038697137497365475, -0.03718453273177147, 0.037678442895412445, 0.05782300606369972, -0.03236888721585274, -0.02397238090634346, -0.0203738771378994, -0.02908790111541748, -0.0063679395243525505, 0.03676117956638336, 0.03339199349284172, -0.001046807155944407, -0.009375511668622494, -0.04561631754040718, -0.0005234035779722035, -0.0683009997010231, -0.0011972960783168674, 0.0033647767268121243, -0.03298627957701683, 0.025224801152944565, 0.021626297384500504, -0.029952246695756912, 0.024342814460396767, -0.015417116694152355, -0.026318464428186417, -0.07542745023965836, -0.03012864477932453, -0.021167665719985962, 0.02503076381981373, -0.0777558907866478, 0.060186728835105896, 0.04543992131948471, -0.0004897778853774071, -0.011554017663002014, -0.006050424184650183, -0.013212150894105434, -0.028964422643184662, -0.061774302273988724, 0.04258228838443756, 0.07465130090713501, -0.002213784959167242, 0.07239341735839844, -0.027764922007918358, 0.06463193893432617, 0.006782472599297762, 0.019915245473384857, 0.0030362370889633894, -0.03612614795565605, -0.012144948355853558, -0.024872006848454475, 0.05888139083981514, -0.06685454398393631, 0.046110231429338455, -0.005031730514019728, -0.04649830609560013, 0.031857337802648544, -0.0564471073448658, 0.0332685150206089, 0.03101062960922718, 0.0281706340610981, -0.05806996300816536, -0.030181562528014183, 0.005508002825081348, 0.02892914228141308, 0.0027826661244034767, -0.047733087092638016, -0.04836811497807503, 0.021979093551635742, -0.03686701878905296, 0.014032398350536823, -0.027764922007918358, 0.02716517075896263, 0.01527599897235632, -0.013644324615597725, -0.025789272040128708, 0.06262101233005524, 0.010416255332529545, -0.0047803642228245735, -0.014949663542211056, 0.020056363195180893, -0.002972292946651578, -0.09264381229877472, 0.0027319518849253654, 0.009560728445649147, 0.06166846677660942, -0.040289122611284256, 0.019227296113967896, 0.03268640488386154, 0.044416818767786026, 0.001560012809932232, -0.00412989966571331, 0.026265544816851616, 0.045192964375019073, 0.01277115847915411, 0.010742589831352234, -0.02503076381981373, -0.10640279948711395, 0.024942565709352493, 0.02326679229736328, -0.00435039633885026, -0.014482211321592331, 0.006681044586002827, 0.022949276491999626, -0.034132860600948334, 0.004784774500876665, -0.03923074156045914, 0.0102398581802845, 0.000013315921933099162, 0.009084456600248814, 0.02035623788833618, -0.020691392943263054, 0.03725508973002434, 0.03792539983987808, -0.048085879534482956, 0.015267178416252136, 0.08862195909023285, -0.05715269595384598, -0.023302072659134865, 0.017833758145570755, -0.0012138333404436707, 0.017383946105837822, -0.007924645207822323, -0.015699351206421852, 0.03954825550317764, -0.07094696164131165, 0.011333520524203777, -0.033727146685123444, 0.002061642473563552, -0.00686626136302948, -0.06537280976772308, -0.03933657705783844, 0.0679834857583046, -0.024660330265760422, -0.03406229987740517, 0.020320959389209747, -0.006262101233005524, -0.040959432721138, -0.004173999186605215, 0.00412989966571331, -0.018080715090036392, -0.10640279948711395, -0.02711225114762783, 0.05066128075122833, 0.004758314695209265, -0.013212150894105434, 0.06787765026092529, 0.04695693776011467, 0.01419997587800026, -0.010724950581789017, -0.07112335413694382, 0.0508376769721508, -0.015981586650013924, 0.07055888324975967, -0.023354990407824516, -0.01375898253172636, 0.056694064289331436, 0.06279740482568741, -0.03333907201886177, -0.02326679229736328, -0.025630515068769455, -0.010019361972808838, 0.01843350939452648, -0.06572560220956802, -0.012224326841533184, -0.06858323514461517, -0.03404466062784195, -0.03263348340988159, 0.0031949945259839296, 0.07359291613101959, 0.021344061940908432, -0.01346792746335268, -0.07331068068742752, 0.023531388491392136, -0.07302844524383545, 0.0034926647786051035, 0.05298972129821777, -0.03856043145060539, -0.017727918922901154, 0.02513660304248333, 0.06547864526510239, 0.011042465455830097, 0.008788990788161755, 0.028347032144665718, 0.017833758145570755, 0.045581039041280746, 0.04857979342341423, -0.023831263184547424, -0.0322277694940567, -0.028258834034204483, 0.054718416184186935, -0.0006234538741409779, -0.007765887305140495, 0.04554576054215431, 0.026953494176268578, 0.05866971239447594, 0.04339371249079704, 0.023990020155906677, -0.04783892259001732, 0.025171881541609764, 0.010134019888937473, -0.049250103533267975, 0.037396207451820374, 0.046639423817396164, 0.0012281655799597502, -0.029370136559009552, -0.026494860649108887, 0.0184511486440897, -0.030887151136994362, -0.03344491124153137, -0.050943516194820404, -0.07458074390888214, -0.0605042427778244, 0.0486503504216671, -0.060080889612436295, -0.03781956061720848, 0.013079853728413582, 0.02967001125216484, -0.0205855555832386, -0.007408682722598314, 0.023090394213795662, 0.041629742830991745, 0.05069655925035477, -0.029634730890393257, 0.01791313663125038, -0.035173602402210236, 0.001948086661286652, 0.01405003760010004, -0.03746676817536354, 0.014208795502781868, -0.010522093623876572, -0.04776836559176445, 0.06964161992073059, -0.02850578911602497, 0.029546532779932022, 0.01663425751030445, -0.020285679027438164, -0.03547348082065582, 0.008793400600552559, 0.01274469867348671, -0.040112726390361786, 0.057752449065446854, -0.043323155492544174, 0.012383084744215012, 0.03792539983987808, 0.012347805313766003, 0.07556856423616409, 0.020462077111005783, 0.009040357545018196, 0.029546532779932022, -0.022702321410179138, 0.07408683001995087, 0.03429161757230759, 0.018539346754550934, -0.06463193893432617, 0.0332685150206089, 0.0010159376543015242, 0.02012692205607891, -0.01890978030860424, -0.004846513271331787, 0.039830490946769714, -0.032210130244493484, 0.00381899974308908, -0.052566368132829666, 0.011104204691946507, 0.008475885726511478, 0.09292604774236679, 0.037678442895412445, 0.018018975853919983, -0.03236888721585274, -0.05898722633719444, 0.03205137327313423, -0.002595243975520134, 0.0036205528303980827, 0.020056363195180893, 0.05055544152855873, 0.022719960659742355, -0.01873338408768177, -0.022561203688383102, -0.0037616705521941185, 0.00017116042727138847, 0.05884610861539841, -0.011536377482116222, 0.01919201761484146, 0.022614123299717903, -0.0010765742044895887, -0.027429766952991486, 0.011068925261497498, -0.07697974145412445, -0.014711527153849602, 0.0022689092438668013, 0.019738847389817238, -0.02974057011306286, 0.053977545350790024, 0.01972120814025402, 0.034714970737695694, -0.05517704784870148, -0.011157123371958733, -0.06688982248306274, 0.013432648032903671, 0.04420514032244682, 0.0282235536724329, -0.036514222621917725, 0.03367422893643379, -0.0068221623077988625, -0.028717465698719025, 0.02176741510629654, 0.012294885702431202, -0.017604442313313484, -0.06371467560529709, -0.006469367537647486, -0.009128555655479431, 0.03157510235905647, -0.024219337850809097, 0.05224885419011116, 0.047450851649045944, -0.02741212770342827, -0.010583832859992981, 0.06339716166257858, 0.03328615427017212, 0.012092028744518757, -0.0078232167288661, 0.05764660984277725, -0.04134750738739967, 0.004262197762727737, -0.0014277149457484484, -0.003589683212339878, 0.03774900361895561, 0.020285679027438164, 0.016969412565231323, 0.021785056218504906, 0.03065783530473709, 0.010248677805066109, -0.04194725677371025, 0.04307619854807854, -0.0037241862155497074, -0.06939466297626495, 0.05126103013753891, 0.021732136607170105, 0.0408535934984684, -0.024113498628139496, 0.004224713426083326, 0.0795198604464531, 0.04416986182332039, 0.030992990359663963, -0.015522954985499382, 0.013882461003959179, -0.011439358815550804, 0.02397238090634346 ]
18,503
fs.base
settimes
Set the accessed and modified time on a resource. Arguments: path: A path to a resource on the filesystem. accessed (datetime, optional): The accessed time, or `None` (the default) to use the current time. modified (datetime, optional): The modified time, or `None` (the default) to use the same time as the ``accessed`` parameter.
def settimes(self, path, accessed=None, modified=None): # type: (Text, Optional[datetime], Optional[datetime]) -> None """Set the accessed and modified time on a resource. Arguments: path: A path to a resource on the filesystem. accessed (datetime, optional): The accessed time, or `None` (the default) to use the current time. modified (datetime, optional): The modified time, or `None` (the default) to use the same time as the ``accessed`` parameter. """ details = {} # type: dict raw_info = {"details": details} details["accessed"] = ( time.time() if accessed is None else datetime_to_epoch(accessed) ) details["modified"] = ( details["accessed"] if modified is None else datetime_to_epoch(modified) ) self.setinfo(path, raw_info)
(self, path, accessed=None, modified=None)
[ 0.032596223056316376, 0.029949158430099487, 0.01259052474051714, 0.019988730549812317, 0.005625011865049601, -0.0438462495803833, -0.04642543941736221, 0.047375667840242386, 0.03481907770037651, 0.008933843113481998, -0.004708720371127129, 0.03346161171793938, 0.05036209896206856, 0.04774897173047066, -0.0022483079228550196, 0.01942877471446991, -0.0044414689764380455, 0.01898759789764881, -0.07472866773605347, -0.043371133506298065, 0.035124510526657104, -0.020718369632959366, 0.02764146216213703, 0.006524335127323866, 0.00681703956797719, 0.04404986649751663, 0.02959282323718071, -0.012403872795403004, 0.09427621960639954, -0.025214986875653267, 0.0302036851644516, -0.0022122501395642757, -0.03763582557439804, -0.03303740173578262, 0.01820705272257328, -0.005383213050663471, -0.031408436596393585, 0.007461837027221918, -0.027081506326794624, 0.030593957751989365, 0.00028475033468566835, 0.009383504278957844, -0.05216074362397194, -0.045780640095472336, 0.04958155378699303, 0.0145927919074893, 0.06458158791065216, 0.0216346625238657, 0.01443159207701683, -0.03278287500143051, 0.019377870485186577, 0.030101874843239784, -0.00826359260827303, -0.024468379095196724, -0.01036766916513443, 0.025690101087093353, 0.013735889457166195, 0.09400472790002823, 0.011538485996425152, -0.04795259237289429, 0.0609842948615551, -0.013065638951957226, 0.005667433142662048, -0.01392254140228033, 0.012208736501634121, 0.002186797559261322, 0.01651870086789131, -0.04201366379857063, 0.022924257442355156, 0.039536282420158386, -0.0066049350425601006, -0.0043863216415047646, -0.011759075336158276, -0.012870502658188343, -0.00829328689724207, 0.023365434259176254, -0.06984177976846695, 0.008068456314504147, 0.0027658429462462664, -0.043778374791145325, -0.0035866876132786274, -0.03787338361144066, -0.016298111528158188, 0.0005885900463908911, -0.004080891143530607, 0.023331498727202415, 0.016442343592643738, -0.06115397810935974, -0.01902153342962265, 0.04130099341273308, -0.019666330888867378, 0.009112010709941387, -0.03130662813782692, 0.0038263655733317137, -0.0036185032222419977, -0.01588238775730133, -0.04347294569015503, -0.05229649320244789, -0.043574754148721695, 0.01623023860156536, 0.04143673926591873, -0.08049791306257248, 0.03478514403104782, 0.02102380059659481, 0.029321329668164253, -0.019072439521551132, 0.03526025637984276, -0.0209050215780735, 0.0017403176752850413, -0.05266979709267616, -0.0009152310085482895, 0.04184398055076599, -0.041776109486818314, -0.01203905325382948, 0.013931025750935078, 0.03330889344215393, 0.03257925435900688, -0.05297522619366646, 0.0037542502395808697, -0.00028660622774623334, -0.0026513065677136183, -0.010749457404017448, 0.05809967219829559, 0.07819021493196487, -0.001143243396654725, 0.02959282323718071, -0.04221728444099426, 0.04371050000190735, -0.019649364054203033, -0.031119976192712784, -0.044423170387744904, -0.028235355392098427, 0.04343900829553604, 0.10276040434837341, 0.014575823210179806, 0.017171982675790787, 0.006163757760077715, 0.045780640095472336, -0.011385771445930004, 0.03943447396159172, -0.029032867401838303, 0.007228522095829248, 0.03719465062022209, -0.03729645907878876, 0.016281142830848694, 0.00163532595615834, 0.032681066542863846, -0.02082017995417118, -0.0029588581528514624, 0.054434504359960556, 0.01803736947476864, -0.019072439521551132, -0.029609791934490204, -0.005977105349302292, -0.048020463436841965, -0.041945792734622955, 0.009112010709941387, -0.001343682175502181, 0.020429907366633415, -0.002587675116956234, -0.0246889665722847, -0.020565655082464218, -0.009468345902860165, -0.036515913903713226, 0.026097340509295464, 0.0639028549194336, -0.05762455612421036, -0.0035272983368486166, -0.00012507538485806435, -0.019004564732313156, 0.038721803575754166, -0.023280592635273933, 0.031289659440517426, -0.039739903062582016, 0.07703636586666107, -0.06865399330854416, -0.004878404084593058, -0.033987630158662796, 0.07846170663833618, -0.01430432964116335, 0.02233036421239376, -0.040147144347429276, -0.045169781893491745, 0.09509070217609406, -0.006193452049046755, 0.04306570440530777, -0.020192351192235947, 0.005009908694773912, -0.02599553018808365, 0.06335986405611038, 0.06481914222240448, 0.0699775218963623, -0.04489828646183014, -0.01267536636441946, -0.0024201127234846354, 0.022788509726524353, 0.0038603025022894144, -0.09651604294776917, 0.054875683039426804, 0.10893688350915909, -0.0621381439268589, 0.02840503863990307, 0.011394254863262177, 0.014024351723492146, 0.10438936203718185, -0.01367649994790554, 0.073778435587883, 0.011979663744568825, -0.05192318931221962, 0.03763582557439804, -0.012488714419305325, -0.00019566642004065216, 0.02837110124528408, -0.05287341773509979, -0.002712816931307316, 0.02110864222049713, -0.03536206856369972, 0.03797519579529762, -0.032596223056316376, -0.011385771445930004, 0.03415731340646744, 0.045543085783720016, -0.026793044060468674, -0.01963239535689354, 0.030305495485663414, -0.022839415818452835, 0.03882361203432083, -0.028014766052365303, -0.08647077530622482, -0.015559988096356392, 0.007186101283878088, 0.039943523705005646, 0.0025219228118658066, -0.019700268283486366, -0.045373398810625076, 0.011546970345079899, 0.03963809460401535, -0.003669408382847905, -0.031985361129045486, -0.04204760119318962, -0.020277192816138268, 0.028744405135512352, 0.025825846940279007, -0.0345645546913147, -0.03344464302062988, -0.02804870344698429, -0.03184961527585983, -0.004534794948995113, -0.027030600234866142, -0.053721833974123, 0.048563454300165176, 0.08002279698848724, -0.03824668750166893, -0.0047638677060604095, 0.01012162771075964, 0.05470599979162216, 0.029236488044261932, -0.04062226042151451, -0.0038730285596102476, 0.010673100128769875, -0.017087141051888466, -0.03364826366305351, -0.04483041167259216, 0.02183828130364418, 0.049615491181612015, 0.004316327162086964, 0.03828062489628792, 0.028829246759414673, -0.11110883206129074, -0.012395388446748257, 0.013438942842185497, 0.034021567553281784, -0.05511324107646942, -0.0291855838149786, -0.03249441459774971, -0.019530585035681725, 0.012641429901123047, 0.009663482196629047, -0.04289602115750313, -0.01980207860469818, 0.019852982833981514, 0.024519283324480057, 0.027251189574599266, 0.03787338361144066, -0.015441210009157658, -0.037160713225603104, 0.00939198862761259, 0.08884634077548981, -0.04320145025849342, 0.010630679316818714, 0.056267090141773224, 0.039570219814777374, -0.015687251463532448, -0.028354132547974586, 0.0374661423265934, -0.003064910415560007, -0.10927625000476837, -0.03990958631038666, 0.030017033219337463, 0.032019298523664474, -0.01141122356057167, -0.06403859704732895, 0.009459861554205418, -0.0004767049103975296, 0.042997829616069794, -0.019038502126932144, 0.013566205278038979, 0.004369353409856558, 0.03171386942267418, 0.041810043156147, 0.027573589235544205, -0.048020463436841965, -0.08436669409275055, 0.013489848002791405, 0.025198018178343773, 0.015585440210998058, -0.03380097821354866, 0.03303740173578262, -0.03298649564385414, 0.04099556431174278, -0.02343330904841423, -0.004789320286363363, 0.019581489264965057, -0.016153881326317787, 0.02473987266421318, -0.04109737277030945, 0.02506227046251297, 0.017748907208442688, -0.04001139849424362, 0.04805440083146095, -0.022788509726524353, 0.028065670281648636, 0.01120760291814804, 0.0013797399587929249, -0.008013308979570866, 0.026962727308273315, -0.04608607292175293, -0.055452607572078705, 0.025927657261490822, 0.02407810650765896, 0.03453061729669571, 0.006689776666462421, -0.012310546822845936, -0.013192901387810707, 0.02543557435274124, 0.031136944890022278, 0.05494355782866478, 0.006422525271773338, 0.01549211423844099, 0.005913474131375551, -0.023365434259176254, 0.014253424480557442, -0.006931575946509838, -0.026962727308273315, 0.000037582271033897996, -0.0246889665722847, 0.020718369632959366, -0.03257925435900688, 0.002833716571331024, -0.03641410544514656, 0.004882646258920431, 0.05266979709267616, 0.060475241392850876, -0.046391502022743225, 0.045577019453048706, 0.012573556043207645, -0.023908421397209167, 0.02093895897269249, -0.010953078046441078, -0.06196845695376396, 0.012403872795403004, -0.03845030814409256, 0.03464939445257187, 0.03865392878651619, 0.06610874086618423, -0.013337132520973682, 0.040927689522504807, 0.025927657261490822, -0.058846279978752136, 0.027420872822403908, 0.019852982833981514, -0.00450934236869216, 0.060678862035274506, -0.034632425755262375, -0.0006702503305859864, 0.009926491416990757, 0.03824668750166893, -0.032273825258016586, -0.016535669565200806, 0.013413490727543831, -0.008522359654307365, -0.04673086851835251, 0.01963239535689354, -0.05820148065686226, -0.018224021419882774, 0.019089408218860626, 0.07438930124044418, 0.012259641662240028, 0.020955927670001984, -0.002182555617764592, 0.01434675045311451, -0.02041294053196907, -0.05599559471011162, 0.038382433354854584, 0.029440108686685562, 0.0151018425822258, 0.014329781755805016, 0.015288494527339935, -0.022211585193872452, 0.01881791278719902, -0.03828062489628792, -0.00881506409496069, 0.01116518210619688, -0.0051329294219613075, 0.03906117007136345, -0.012548103928565979, -0.045610956847667694, 0.0018442488508298993, 0.02726815827190876, 0.05250011384487152, -0.0029461318626999855, 0.0023967812303453684, -0.010189501568675041, 0.0033470094203948975, 0.08273773640394211, -0.06845037639141083, 0.021821314468979836, -0.011258508078753948, 0.015313946641981602, 0.0479186549782753, 0.02865956351161003, 0.01959845796227455, -0.03970596566796303, 0.0216346625238657, 0.007478805724531412, -0.05911777541041374, 0.013752857223153114, -0.021125610917806625, -0.01885185018181801, -0.03722858801484108, 0.030271558091044426, -0.004653573501855135, 0.03385188430547714, -0.06016981229186058, -0.02477380819618702, -0.057081568986177444, -0.024994397535920143, 0.03665166348218918, 0.09502282738685608, -0.01852945238351822, -0.022194618359208107, 0.046187881380319595, 0.009985880926251411, -0.0018686408875510097, 0.033902786672115326, -0.016620511189103127, -0.024112042039632797, -0.03539600223302841, -0.025656163692474365, -0.03086545132100582, -0.04832589626312256, 0.00788180436939001, -0.00808542501181364, -0.0833485946059227, -0.0008940206025727093, -0.047816842794418335, -0.023586023598909378, 0.02294122613966465, 0.010978530161082745, -0.016569605097174644, -0.0043778372928500175, -0.029457077383995056, -0.05290735140442848, 0.03478514403104782, 0.013515300117433071, -0.039977461099624634, -0.03256228566169739, 0.0090780733153224, -0.04815621301531792, 0.0015876024262979627, 0.04547521099448204, -0.0017222887836396694, 0.02889712154865265, 0.018461577594280243, 0.039570219814777374, -0.026148246601223946, -0.03607473894953728, 0.028438974171876907, -0.02253398485481739, -0.004606910515576601, 0.029983095824718475, -0.021159548312425613, -0.016128428280353546, -0.014380686916410923, -0.07907256484031677, 0.04248877987265587, -0.001869701431132853, 0.020480813458561897, -0.010197985917329788, 0.0339706614613533, -0.03344464302062988, -0.00932411476969719, 0.030475178733468056, 0.013209870085120201, -0.0001527152635389939, 0.03845030814409256, 0.02346724458038807, -0.08463819324970245, 0.02967766486108303, -0.04201366379857063, -0.009646513499319553, -0.05358608812093735, 0.06264719367027283, 0.01430432964116335, 0.004687509965151548, -0.02244914323091507, -0.0563349612057209, 0.016790194436907768, -0.032681066542863846, -0.0060958839021623135, 0.018054338172078133, 0.010995498858392239, 0.06580331176519394, -0.005438359919935465, -0.024417473003268242, -0.07459291815757751, 0.02195706032216549, -0.02784508280456066, 0.029813412576913834, 0.012870502658188343, 0.04958155378699303, -0.026962727308273315, -0.025859784334897995, 0.020548686385154724, 0.05178743973374367, 0.05589378625154495, -0.01514426339417696, -0.07628975808620453, 0.01820705272257328, -0.014160098508000374, 0.027912955731153488, 0.012980797328054905, 0.0026110068429261446, 0.000978862401098013, -0.02093895897269249, -0.04231909662485123, -0.007903014309704304, -0.060068003833293915, 0.08090515434741974, -0.030101874843239784, -0.005234739743173122, -0.10873326659202576, -0.011928758583962917, 0.02750571444630623, -0.049038566648960114, 0.019700268283486366, 0.048190146684646606, -0.01469460129737854, -0.008518117479979992, 0.04004533588886261, -0.0053026131354272366, -0.012293578125536442, 0.051651693880558014, 0.0493779331445694, 0.00300976331345737, -0.014253424480557442, 0.014253424480557442, 0.02143104188144207, 0.001293837558478117, -0.014601275324821472, 0.028422007337212563, 0.05613134056329727, 0.05012454092502594, -0.008874453604221344, -0.005315339658409357, 0.011767558753490448, -0.01881791278719902, 0.01693442463874817, 0.0009942399337887764, 0.037534017115831375, 0.0291855838149786, 0.03176477551460266, -0.01469460129737854, 0.0004963246174156666, 0.023501181975007057, 0.0077290888875722885, 0.03342767432332039, 0.03943447396159172, -0.04085981473326683, 0.029898254200816154, -0.0525679849088192, -0.036549851298332214, 0.007300637662410736, 0.006918849889189005, -0.009222304448485374, -0.009247757494449615, 0.02331453002989292, -0.060882482677698135, -0.06000012904405594, 0.03408943861722946, -0.04968336597084999, -0.015839966014027596, -0.007118227891623974, 0.027369968593120575, -0.058065734803676605, -0.029117709025740623, 0.007109743542969227, 0.00981619767844677, -0.03766976296901703, 0.03783944621682167, 0.02093895897269249, 0.011852401308715343, 0.01963239535689354, 0.08918571472167969, 0.03709283843636513, 0.014329781755805016, -0.028116576373577118, 0.03295255824923515, -0.013065638951957226, -0.1112445816397667, -0.09237576276063919, -0.049208249896764755, -0.010282827541232109, -0.011826948262751102, -0.02514711208641529, -0.0011750591220334172, -0.0026110068429261446, -0.016043586656451225, -0.045407336205244064, -0.06285081058740616, 0.02331453002989292, -0.06750014424324036, -0.025893719866871834, 0.014295845292508602, 0.00635889358818531, -0.027828114107251167, -0.004657815210521221, 0.009315630421042442, -0.00507354037836194, 0.08490968495607376, -0.023365434259176254, 0.013931025750935078, 0.023619960993528366, -0.0365837886929512, -0.043778374791145325, 0.04683268070220947, -0.02326362393796444, -0.027828114107251167, 0.04272633418440819, 0.01995479315519333, -0.006074673496186733, 0.01469460129737854, 0.020667465403676033, 0.0011443039402365685, 0.007461837027221918, 0.004950519651174545, -0.0007879683398641646, -0.07805446535348892, 0.00042288340046070516, -0.015008516609668732, -0.03984171524643898, -0.028472911566495895, 0.029253456741571426, -0.03305437043309212, 0.00633768318220973, -0.045814577490091324, -0.030712734907865524, 0.03756795451045036, 0.00990103930234909, 0.09936673194169998, 0.001032418804243207, -0.011555454693734646, 0.04082588106393814, 0.004746899474412203, 0.00002391147063462995, -0.012395388446748257, 0.04102949798107147, -0.03444577381014824, 0.00934956781566143, 0.01692594215273857, -0.04544127359986305, 0.004365111235529184, -0.009510766714811325, -0.02506227046251297, 0.007075807079672813, 0.03729645907878876, 0.01430432964116335, 0.03207020461559296, -0.03191749006509781, 0.010970045812427998, 0.036923155188560486, -0.05036209896206856, -0.015000032261013985, 0.04391412064433098, -0.0760861337184906, 0.016281142830848694, 0.024264758452773094, 0.020090540871024132, 0.049819111824035645, -0.00482749892398715, -0.009688935242593288, 0.059864383190870285, 0.036957092583179474, -0.03246047720313072, -0.03488695248961449, -0.0569118857383728, -0.056877948343753815, -0.02776024118065834, 0.007177617400884628, -0.024807745590806007, 0.01878397725522518, 0.042997829616069794, 0.03466636314988136, -0.0003298225346952677, 0.00679582916200161, -0.054027266800403595, 0.02241520583629608, -0.016569605097174644, 0.020192351192235947, 0.02485864982008934, -0.01196269504725933, 0.004034228157252073, -0.025045301765203476, -0.06274900585412979, -0.025774942710995674, 0.018580356612801552, -0.024400504305958748, 0.0031073312275111675, 0.028964994475245476, -0.02233036421239376, -0.06105216592550278, -0.007275185082107782, 0.016281142830848694, -0.05175350606441498, -0.00865386426448822, -0.023602992296218872, -0.001361711067147553, -0.04360869154334068, 0.07282821089029312, 0.05898202583193779, 0.01343045849353075, 0.03415731340646744, 0.021685566753149033, -0.017562255263328552, -0.0790046975016594, -0.05514717847108841, -0.07119924575090408, 0.02784508280456066, -0.0016703231958672404, 0.04730779305100441, 0.03885754942893982, -0.027437841519713402, -0.023297561332583427, -0.03566749766469002, 0.08545266836881638, -0.04533946514129639, -0.031493280082941055, 0.013964962214231491, 0.048834946006536484, 0.04832589626312256, -0.05270373448729515, -0.005930442363023758, -0.0038030340801924467, 0.0033342831302434206, 0.07561102509498596, 0.028625626116991043, -0.05782817676663399, 0.0016830493696033955 ]
18,504
fs.base
touch
Touch a file on the filesystem. Touching a file means creating a new file if ``path`` doesn't exist, or update accessed and modified times if the path does exist. This method is similar to the linux command of the same name. Arguments: path (str): A path to a file on the filesystem.
def touch(self, path): # type: (Text) -> None """Touch a file on the filesystem. Touching a file means creating a new file if ``path`` doesn't exist, or update accessed and modified times if the path does exist. This method is similar to the linux command of the same name. Arguments: path (str): A path to a file on the filesystem. """ with self._lock: now = time.time() if not self.create(path): raw_info = {"details": {"accessed": now, "modified": now}} self.setinfo(path, raw_info)
(self, path)
[ 0.07174010574817657, 0.040306154638528824, -0.0009768956806510687, 0.05247078090906143, 0.036528535187244415, -0.04779207706451416, -0.02739640139043331, 0.07783974707126617, -0.02195524424314499, -0.007901808246970177, 0.024485209956765175, -0.023809395730495453, 0.04020218178629875, 0.0018509032670408487, -0.010899643413722515, -0.01744982786476612, 0.024450551718473434, -0.016028888523578644, -0.08844480663537979, -0.00845198892056942, 0.04945561662316322, -0.03044622205197811, 0.01604621671140194, 0.0010716611286625266, 0.022197842597961426, 0.039924927055835724, 0.021591344848275185, 0.02519567869603634, 0.06570977717638016, -0.0659523755311966, 0.006389894522726536, -0.028384128585457802, 0.01680867187678814, -0.015786288306117058, -0.03372131288051605, 0.03465705364942551, -0.027431057766079903, -0.010206502862274647, 0.031000735238194466, -0.001256318180821836, 0.02774297259747982, 0.02732708677649498, -0.04051409661769867, 0.0040960307233035564, 0.021851273253560066, 0.007624552119523287, -0.006506862118840218, 0.0013527082046493888, 0.009591340087354183, -0.01501516904681921, -0.004570398945361376, 0.03673647716641426, -0.024641165509819984, -0.023532139137387276, -0.027240443974733353, 0.024069324135780334, 0.061377644538879395, 0.049178361892700195, -0.03860795870423317, -0.011488813906908035, 0.06238269805908203, 0.017848383635282516, 0.049594245851039886, -0.02720578759908676, -0.004325633402913809, 0.014833219349384308, 0.00935740489512682, -0.02961445227265358, 0.012641160748898983, -0.005952348932623863, 0.006389894522726536, 0.005987006239593029, 0.012580511160194874, 0.01061372272670269, 0.040375467389822006, 0.041068609803915024, -0.039197128266096115, 0.029285211116075516, 0.043009404093027115, -0.04096463695168495, 0.004314803518354893, -0.06792782992124557, 0.004821662791073322, 0.02145271748304367, -0.021695315837860107, 0.03448376804590225, 0.06051121652126312, -0.05576319992542267, -0.07423540949821472, 0.03989027068018913, 0.01680867187678814, 0.033981241285800934, -0.05427294597029686, -0.018853437155485153, 0.05659497156739235, -0.06283324211835861, 0.019754521548748016, -0.01909603737294674, -0.03288954496383667, 0.05801590904593468, 0.010353795252740383, -0.00934007577598095, -0.0067841182462871075, -0.027985570952296257, 0.008222386240959167, 0.021729974076151848, 0.020447662100195885, 0.018697481602430344, -0.003922745585441589, -0.020187733694911003, -0.060233961790800095, -0.011142242699861526, -0.010674373246729374, -0.017848383635282516, -0.016150187700986862, -0.03930110111832619, 0.031537920236587524, -0.018610838800668716, -0.0015465710312128067, -0.021747302263975143, 0.030082322657108307, -0.03505561128258705, 0.018628166988492012, 0.030688822269439697, -0.008703253231942654, -0.012389897368848324, 0.00626859487965703, 0.05202024057507515, 0.03663250803947449, -0.041068609803915024, -0.09218776226043701, -0.017562462016940117, 0.08366212993860245, 0.0666801705956459, -0.006814443506300449, -0.01188736967742443, 0.03715236112475395, -0.014157406985759735, -0.002696752082556486, 0.018194952979683876, -0.012294590473175049, -0.07388883829116821, -0.003903250675648451, -0.024589180946350098, 0.02961445227265358, 0.01874946616590023, -0.02233647182583809, 0.004791337996721268, 0.0027140805032104254, 0.0640462338924408, -0.0034527091775089502, -0.011064264923334122, 0.004570398945361376, -0.009764624759554863, 0.048762474209070206, -0.02335885539650917, -0.03340940177440643, -0.03718702122569084, -0.0075422413647174835, 0.0030909760389477015, -0.020534304901957512, -0.03642456606030464, 0.02923322468996048, -0.01063105184584856, 0.0014675096608698368, 0.032941531389951706, -0.09468307346105576, 0.06449677795171738, 0.007932133041322231, -0.00013944049715064466, 0.03037690743803978, 0.028903983533382416, 0.03472637012600899, -0.013828164897859097, 0.03718702122569084, -0.025732863694429398, -0.008967513218522072, 0.004345128312706947, 0.04401445761322975, -0.0010564986150711775, 0.010847657918930054, -0.04942096024751663, -0.022994956001639366, 0.06227872520685196, 0.01985849253833294, 0.04120723903179169, -0.024381237104535103, -0.0008826718549244106, 0.03829604387283325, 0.07998847961425781, 0.02259640023112297, 0.011662098579108715, -0.001103069051168859, -0.001198917510919273, 0.02119278907775879, 0.01658339984714985, 0.0013451268896460533, -0.06737331300973892, -0.017649104818701744, 0.06969533860683441, 0.010709029622375965, 0.00455307075753808, 0.042662832885980606, 0.03739496320486069, 0.02793358638882637, 0.012476539239287376, 0.10244625061750412, 0.029943695291876793, -0.03372131288051605, 0.031728532165288925, 0.013342966325581074, -0.0031906149815768003, 0.02971842512488365, 0.020707590505480766, 0.016826000064611435, -0.043737202882766724, -0.01642744429409504, 0.025161022320389748, -0.07589895278215408, 0.03200579062104225, 0.021851273253560066, 0.05552060157060623, -0.06993793696165085, -0.020898204296827316, 0.02043033391237259, -0.01455596275627613, -0.009807946160435677, -0.026876546442508698, -0.041449837386608124, -0.0198238343000412, 0.03566211089491844, -0.014036106877028942, 0.01158412080258131, -0.019529249519109726, -0.04678702354431152, -0.03236968815326691, -0.012675818055868149, -0.02119278907775879, -0.04290543496608734, -0.035124924033880234, 0.008521303534507751, 0.025507591664791107, 0.062105443328619, 0.0182989239692688, 0.02049964852631092, -0.04255886375904083, -0.029562467709183693, -0.02198990061879158, -0.028522755950689316, -0.049524929374456406, 0.05399569123983383, 0.036147307604551315, -0.056352369487285614, 0.028782684355974197, 0.014131413772702217, -0.0008122746949084103, 0.024398567155003548, -0.0003685019619297236, -0.02049964852631092, 0.03280290216207504, -0.018992066383361816, -0.020031778141856194, -0.02278701402246952, 0.0005290615954436362, 0.03836536034941673, -0.03760290518403053, 0.0029306872747838497, 0.03181517496705055, -0.060996416956186295, 0.005740074440836906, -0.009608668275177479, -0.0033379076048731804, -0.0012509030057117343, -0.04640579596161842, 0.01425271388143301, -0.04103395342826843, -0.004280146211385727, 0.02854008413851261, 0.004479424096643925, 0.02595813386142254, -0.0016776180127635598, 0.018350910395383835, 0.059887390583753586, -0.008620942011475563, -0.057946596294641495, -0.023601453751325607, -0.013420944102108479, 0.04318268969655037, -0.04772276431322098, 0.016566071659326553, 0.06369966268539429, 0.05229749530553818, -0.05195092409849167, -0.00858195312321186, 0.023272212594747543, 0.009972567670047283, -0.09648524224758148, -0.01226859726011753, 0.04897041991353035, -0.03742961958050728, 0.023012284189462662, 0.010154517367482185, -0.10071340203285217, 0.011306864209473133, 0.01766643300652504, -0.017328526824712753, -0.021972572430968285, 0.020898204296827316, -0.024797122925519943, 0.021296760067343712, 0.010345131158828735, -0.039578355848789215, -0.09648524224758148, 0.04474225640296936, 0.018992066383361816, 0.012424553744494915, -0.022735027596354485, 0.011679427698254585, -0.0034310484770685434, 0.012199283577501774, -0.019494593143463135, 0.006766790058463812, 0.003075813641771674, 0.007854155264794827, 0.018073653802275658, -0.013949464075267315, 0.06040724739432335, 0.0060346596874296665, -0.03110470622777939, 0.03857330232858658, -0.018004339188337326, 0.06657620519399643, 0.07804768532514572, -0.01251986064016819, -0.09211844950914383, -0.016228165477514267, -0.008967513218522072, -0.05846644937992096, 0.01608087308704853, 0.0348823256790638, 0.017501812428236008, -0.006918414495885372, -0.022769683972001076, -0.0400288961827755, 0.043737202882766724, 0.035124924033880234, 0.06699208915233612, 0.010293145664036274, 0.05974876135587692, 0.002893863944336772, -0.0023241888266056776, 0.025213006883859634, -0.02160867303609848, -0.02328954078257084, -0.003073647618293762, -0.07499786466360092, 0.019771849736571312, -0.015214446932077408, -0.009747296571731567, -0.07056176662445068, -0.059506163001060486, 0.04366789013147354, -0.005341518670320511, -0.04550471156835556, 0.008759570308029652, -0.03451842814683914, -0.05517403036355972, 0.057600025087594986, -0.025247665122151375, -0.010076538659632206, -0.001536823809146881, -0.05202024057507515, 0.011402171105146408, 0.06411555409431458, 0.04786139354109764, -0.04779207706451416, 0.048415906727313995, 0.024190623313188553, -0.026512647047638893, 0.05479280278086662, 0.03429315611720085, -0.031416621059179306, -0.0008344769012182951, -0.02367076836526394, 0.003966066520661116, 0.043737202882766724, 0.019009394571185112, -0.028678713366389275, 0.021244773641228676, -0.013845493085682392, 0.00883321650326252, 0.006342241074889898, -0.008781231008470058, -0.018056325614452362, 0.010111195966601372, 0.04481157287955284, 0.07832494378089905, 0.017467156052589417, -0.028401456773281097, 0.04768810793757439, 0.016089538112282753, 0.013594229705631733, -0.03148593381047249, 0.028210842981934547, -0.002015524310991168, 0.01188736967742443, -0.006246934179216623, -0.04290543496608734, 0.012753795832395554, 0.025888819247484207, -0.018056325614452362, 0.01814296841621399, -0.010215166956186295, -0.006259930320084095, 0.043459948152303696, 0.03642456606030464, -0.03429315611720085, -0.03552348166704178, 0.022960297763347626, 0.018004339188337326, -0.024710480123758316, 0.05728811025619507, -0.06418486684560776, 0.050703272223472595, -0.008460653014481068, -0.024381237104535103, 0.01107292901724577, 0.027223115786910057, -0.010405780747532845, 0.056075114756822586, 0.0362166203558445, 0.02103683166205883, -0.024779794737696648, 0.06116970255970955, -0.019407950341701508, -0.04051409661769867, -0.007971122860908508, -0.08539498597383499, -0.0362166203558445, -0.005865706596523523, 0.010449102148413658, 0.021175460889935493, 0.046024568378925323, -0.05545128881931305, -0.005129244178533554, -0.03978629782795906, -0.03587005287408829, -0.011081593111157417, 0.10410979390144348, -0.03704839199781418, 0.04214297980070114, 0.011688091792166233, 0.04429171606898308, 0.041519150137901306, -0.04713359475135803, -0.05163901299238205, -0.07818631827831268, -0.016826000064611435, 0.055208686739206314, -0.007620220072567463, -0.05763468146324158, 0.06196681410074234, -0.0024844775907695293, -0.09759426862001419, 0.05170832574367523, -0.046024568378925323, -0.04869316145777702, -0.00027387196314521134, 0.014703255146741867, -0.035159580409526825, 0.03148593381047249, -0.07222530245780945, -0.057496052235364914, 0.030203623697161674, -0.01493719033896923, -0.022683043032884598, -0.014573291875422001, -0.007550905924290419, 0.0007722025038674474, 0.009019498713314533, 0.04547005519270897, -0.0346917100250721, -0.041831064969301224, 0.05087655782699585, 0.04467294365167618, -0.0099119171500206, -0.007962457835674286, 0.011514806188642979, -0.012372568249702454, -0.04214297980070114, 0.001916968380101025, -0.06754659861326218, -0.011124914512038231, -0.04962890222668648, -0.018992066383361816, 0.008490978740155697, -0.05305995047092438, 0.021868601441383362, -0.044880885630846024, 0.005679424852132797, -0.030047666281461716, -0.026807231828570366, 0.041831064969301224, 0.02983972430229187, -0.016063544899225235, 0.08893000334501266, 0.04408377408981323, -0.04235092177987099, -0.002341517247259617, -0.018732137978076935, -0.014382678084075451, -0.014590620063245296, 0.019754521548748016, 0.03548882529139519, 0.05545128881931305, -0.007243324536830187, -0.05999135971069336, -0.01668737269937992, -0.03188449144363403, -0.052955977618694305, -0.0077458517625927925, -0.0022678710520267487, 0.05614442750811577, -0.04061806946992874, -0.02446787990629673, -0.05125778540968895, 0.019754521548748016, -0.004817330744117498, 0.05198558047413826, 0.025663549080491066, 0.02354946918785572, -0.013256323523819447, 0.013394951820373535, -0.005779063794761896, 0.050287384539842606, 0.015968237072229385, -0.013273651711642742, -0.03216174617409706, -0.0758296325802803, -0.05735742673277855, 0.041900377720594406, -0.013611557893455029, 0.000323556101648137, -0.000190072285477072, 0.0027487375773489475, -0.046128541231155396, -0.020932860672473907, -0.11464553326368332, 0.03555813804268837, -0.027621673420071602, -0.04165777936577797, -0.032560303807258606, 0.0016884483629837632, 0.03015163727104664, -0.01253718975931406, 0.0024628168903291225, 0.06369966268539429, -0.037325646728277206, 0.024831779301166534, 0.008443324826657772, -0.03746427595615387, -0.015110475942492485, 0.024329252541065216, 0.03129532188177109, 0.027985570952296257, 0.048381246626377106, -0.01118556410074234, 0.03505561128258705, 0.04585128277540207, -0.0678585097193718, 0.04813864827156067, 0.026096761226654053, 0.044984858483076096, 0.009643325582146645, 0.02328954078257084, 0.020915532484650612, 0.023306868970394135, 0.043009404093027115, -0.006450544111430645, -0.024000009521842003, -0.033444058150053024, -0.002226715674623847, -0.0156303308904171, -0.01951192133128643, -0.010717693716287613, -0.022579070180654526, 0.02529964968562126, 0.042697492986917496, -0.06120435893535614, 0.018922751769423485, -0.05461951717734337, -0.07340364158153534, 0.019407950341701508, -0.019650550559163094, -0.06491266191005707, 0.007061374839395285, 0.04817330464720726, -0.06955670565366745, -0.037290990352630615, 0.026287375018000603, -0.03361734375357628, -0.02290831319987774, 0.0033010845072567463, -0.004020218271762133, -0.07423540949821472, 0.009010834619402885, -0.03377329930663109, 0.04855453222990036, 0.012953073717653751, 0.017181234434247017, 0.02519567869603634, 0.023913368582725525, -0.010769680142402649, 0.08061230927705765, 0.03178051859140396, 0.07742386311292648, 0.016886649653315544, -0.001937545952387154, 0.0030671493150293827, 0.009755960665643215, -0.05974876135587692, -0.0302902664989233, 0.014720584265887737, -0.01642744429409504, -0.013342966325581074, 0.010968958027660847, 0.021470045670866966, 0.020482318475842476, -0.033288102596998215, -0.055278003215789795, 0.003836102783679962, -0.04983684420585632, -0.027309758588671684, 0.02510903589427471, 0.023029612377285957, -0.04862384870648384, -0.04775742068886757, -0.01640145108103752, 0.010431773029267788, 0.06435815244913101, -0.031122034415602684, -0.021487373858690262, 0.003454875200986862, -0.031763192266225815, -0.04962890222668648, -0.019962463527917862, -0.006121302489191294, -0.045643340796232224, 0.05233215168118477, 0.028020229190587997, 0.01859351061284542, -0.03701373562216759, -0.00016773473180364817, 0.02367076836526394, 0.057981252670288086, 0.013862822204828262, 0.014027442783117294, -0.06255598366260529, -0.06265995651483536, 0.0365978479385376, -0.011956684291362762, -0.004644045140594244, 0.006636825855821371, 0.009244768880307674, 0.033322758972644806, -0.01336029451340437, -0.013923471793532372, 0.008270039223134518, -0.017779069021344185, 0.05281735211610794, -0.025213006883859634, 0.019650550559163094, 0.03791481629014015, 0.018766794353723526, 0.04027149826288223, -0.05805056542158127, 0.051119156181812286, -0.0000889440780156292, 0.00929675530642271, 0.044880885630846024, -0.02983972430229187, -0.00026859217905439436, 0.025334306061267853, -0.05770399421453476, -0.02309892699122429, 0.038053445518016815, 0.025750191882252693, 0.018350910395383835, -0.04696030914783478, -0.039197128266096115, -0.013637551106512547, -0.019719863310456276, -0.022128529846668243, 0.017935026437044144, -0.0609617605805397, -0.022111201658844948, 0.02564622089266777, 0.05822385102510452, 0.014685926958918571, -0.012849102728068829, 0.021903257817029953, 0.05805056542158127, 0.06467006355524063, 0.0028657051734626293, -0.02652997523546219, -0.021937916055321693, -0.06914082169532776, -0.03684045001864433, 0.0358353927731514, -0.06616031378507614, 0.015942245721817017, -0.007507584523409605, 0.0674426257610321, 0.03190181776881218, 0.07645346224308014, -0.04134586453437805, -0.031572576612234116, -0.04730688035488129, 0.04706427827477455, 0.05309460684657097, -0.015387732535600662, 0.0047870054841041565, -0.01271047443151474, -0.037706874310970306, -0.029527811333537102, -0.027153803035616875, -0.025213006883859634, -0.041172582656145096, 0.026495318859815598, 0.017181234434247017, -0.04810399189591408, -0.02964911051094532, -0.00008907946175895631, -0.024606509134173393, 0.015500367619097233, -0.006008666940033436, -0.029735753312706947, -0.0037191351875662804, 0.049906156957149506, 0.05018341541290283, -0.03190181776881218, -0.0027833946514874697, -0.03025560826063156, -0.04134586453437805, 0.020932860672473907, -0.03209243342280388, 0.03301084414124489, 0.0404101237654686, -0.04678702354431152, 0.06085778772830963, 0.017683761194348335, -0.012441882863640785, -0.01712924987077713, 0.01833358220756054, 0.055971141904592514, -0.02088087610900402, 0.002506138291209936, -0.021556688472628593, 0.08380075544118881, -0.0016267155297100544, 0.00284837675280869, -0.027500372380018234, -0.029163911938667297, -0.018992066383361816, 0.03313214331865311, 0.03276824578642845, -0.037256333976984024, 0.0731956958770752 ]
18,505
fs.base
tree
Render a tree view of the filesystem to stdout or a file. The parameters are passed to :func:`~fs.tree.render`. Keyword Arguments: path (str): The path of the directory to start rendering from (defaults to root folder, i.e. ``'/'``). file (io.IOBase): An open file-like object to render the tree, or `None` for stdout. encoding (str): Unicode encoding, or `None` to auto-detect. max_levels (int): Maximum number of levels to display, or `None` for no maximum. with_color (bool): Enable terminal color output, or `None` to auto-detect terminal. dirs_first (bool): Show directories first. exclude (list): Option list of directory patterns to exclude from the tree render. filter (list): Optional list of files patterns to match in the tree render.
def tree(self, **kwargs): # type: (**Any) -> None """Render a tree view of the filesystem to stdout or a file. The parameters are passed to :func:`~fs.tree.render`. Keyword Arguments: path (str): The path of the directory to start rendering from (defaults to root folder, i.e. ``'/'``). file (io.IOBase): An open file-like object to render the tree, or `None` for stdout. encoding (str): Unicode encoding, or `None` to auto-detect. max_levels (int): Maximum number of levels to display, or `None` for no maximum. with_color (bool): Enable terminal color output, or `None` to auto-detect terminal. dirs_first (bool): Show directories first. exclude (list): Option list of directory patterns to exclude from the tree render. filter (list): Optional list of files patterns to match in the tree render. """ from .tree import render render(self, **kwargs)
(self, **kwargs)
[ 0.0067743402905762196, -0.03271638974547386, 0.034939493983983994, -0.013890023343265057, 0.07092927396297455, 0.028585266321897507, -0.041591301560401917, 0.005155150778591633, -0.010065234266221523, -0.006835607346147299, 0.06592290848493576, -0.006170426495373249, -0.018677573651075363, 0.013452405110001564, -0.015675509348511696, -0.00039823318365961313, -0.027727533131837845, -0.022861210629343987, 0.00807406846433878, 0.057240553200244904, -0.0303532462567091, 0.041836366057395935, 0.0626320168375969, -0.00946132093667984, -0.016060613095760345, -0.024104049429297447, -0.016436966136097908, -0.020795650780200958, 0.003107094205915928, -0.047682955861091614, -0.005220793653279543, -0.01784609816968441, -0.023648925125598907, -0.037355147302150726, -0.07457026094198227, -0.006564283277839422, -0.021985974162817, 0.037215109914541245, -0.006555531173944473, -0.05076379328966141, -0.046772707253694534, -0.003932005725800991, -0.06508268415927887, -0.006555531173944473, -0.049713507294654846, -0.005916607566177845, 0.05948115885257721, -0.008450420573353767, -0.04446208104491234, -0.033066485077142715, -0.010065234266221523, 0.04582745209336281, -0.015246642753481865, -0.026029571890830994, -0.0006974551361054182, -0.0037810271605849266, -0.00813095923513174, -0.030020656064152718, 0.0671132355928421, -0.0242615919560194, 0.023648925125598907, 0.07267974317073822, 0.0293904859572649, -0.001530572073534131, -0.03977080434560776, 0.03332905471324921, -0.03686501458287239, 0.012165805324912071, -0.05612024664878845, 0.061336666345596313, -0.07681086659431458, -0.006183554884046316, 0.07330992072820663, 0.028007609769701958, 0.03037075139582157, 0.04778798297047615, -0.05247925966978073, -0.00042066117748618126, 0.007592687848955393, 0.028060123324394226, -0.005785321816802025, -0.02574949525296688, 0.02620461955666542, 0.0206731166690588, 0.01760978437960148, -0.041381243616342545, -0.0006826854660175741, 0.01671704277396202, 0.0014528947649523616, -0.01664702221751213, -0.031368523836135864, 0.014817776158452034, -0.01736471801996231, 0.03889556601643562, -0.06116161867976189, 0.0015557351289317012, 0.02764000929892063, 0.011745691299438477, -0.01631443202495575, 0.009601358324289322, 0.0014868101570755243, 0.0759006217122078, 0.02503180131316185, -0.013373633846640587, -0.02965305559337139, -0.005719678942114115, -0.04383190721273422, 0.04708779230713844, 0.01707588881254196, 0.03369665518403053, -0.05559510365128517, 0.002546941861510277, 0.07856134325265884, 0.045547373592853546, 0.0019889778923243284, -0.010476596653461456, -0.07520043104887009, -0.04621255397796631, -0.014984071254730225, -0.011386843398213387, -0.032226257026195526, 0.016393203288316727, 0.048138078302145004, 0.017811089754104614, -0.022248543798923492, 0.03802033141255379, 0.013207338750362396, -0.02879532426595688, -0.0015251018339768052, -0.0075095403008162975, 0.023841477930545807, 0.03935069218277931, 0.006376107223331928, -0.002651970600709319, 0.0759006217122078, 0.014528946951031685, -0.005487740971148014, -0.015920575708150864, 0.013014785945415497, 0.08353269845247269, -0.0134611576795578, -0.08941429108381271, 0.014791518449783325, 0.0068793692626059055, -0.008319134823977947, 0.025469420477747917, 0.005107012577354908, -0.025189343839883804, -0.025189343839883804, 0.0701940730214119, 0.013592442497611046, -0.03809034824371338, 0.07253970950841904, 0.03441435098648071, 0.04169632866978645, -0.00046305550495162606, -0.015911823138594627, -0.0425015464425087, -0.000784431875217706, 0.050938840955495834, -0.002249361015856266, -0.017469746991991997, 0.04197640344500542, 0.027097361162304878, -0.01729469932615757, 0.022073497995734215, -0.034886978566646576, -0.01777607947587967, -0.028200162574648857, -0.0019966361578553915, 0.054124705493450165, -0.005505245644599199, -0.08997444808483124, 0.02783256210386753, -0.032226257026195526, -0.014178852550685406, 0.005373959895223379, 0.08864408731460571, -0.020042944699525833, 0.03558716922998428, -0.02424408681690693, -0.02210850641131401, -0.01631443202495575, 0.031368523836135864, 0.021425820887088776, -0.017994888126850128, 0.03907061368227005, 0.021758411079645157, 0.0360247865319252, 0.011098015122115612, -0.015430442057549953, -0.0026738515589386225, 0.04635259509086609, -0.03471193090081215, 0.03647991269826889, -0.04043598473072052, -0.012690948322415352, -0.07716096192598343, 0.054894912987947464, 0.013154824264347553, -0.012419624254107475, 0.007343245204538107, 0.08325261622667313, -0.018485022708773613, -0.011281815357506275, 0.013793747872114182, -0.015430442057549953, 0.025661971420049667, 0.026239629834890366, 0.02490926720201969, -0.014485185034573078, -0.010756672360002995, 0.015447947196662426, 0.03210372105240822, -0.004945093300193548, -0.04103114828467369, -0.050553735345602036, 0.016375700011849403, -0.04614253714680672, -0.023508887737989426, 0.028777819126844406, 0.06466256827116013, -0.03535960614681244, -0.016016852110624313, -0.023823972791433334, -0.07190953940153122, 0.027850067242980003, -0.03854547068476677, 0.0020699372980743647, -0.02146083116531372, 0.009601358324289322, -0.058395866304636, -0.018887631595134735, 0.03278640657663345, -0.06585288792848587, -0.03264636918902397, 0.028130142018198967, -0.0031508561223745346, -0.02821766585111618, -0.0032712011598050594, -0.012883500196039677, -0.04075106978416443, 0.03739015758037567, -0.02457667700946331, 0.021670887246727943, -0.026169609278440475, 0.0024397254455834627, -0.021285783499479294, 0.039945852011442184, -0.0023346967063844204, -0.03394172340631485, -0.0025644467677921057, -0.01806490868330002, 0.004282101057469845, 0.028952866792678833, 0.007785240188241005, -0.01306730043143034, 0.0018303410615772009, -0.0018686327384784818, 0.0500636026263237, -0.014590214006602764, -0.05125392600893974, -0.028007609769701958, 0.06266702711582184, 0.01433639507740736, -0.07940157502889633, -0.0017734505236148834, -0.07422016561031342, 0.0005978968110866845, -0.0002984013990499079, -0.01703212782740593, 0.07316987961530685, 0.016296926885843277, -0.0011082699056714773, -0.008870534598827362, -0.05566512420773506, -0.0071944547817111015, -0.006778716575354338, -0.009653872810304165, 0.02991562709212303, -0.018450012430548668, -0.05065876245498657, -0.049118343740701675, 0.005527126602828503, -0.027079857885837555, 0.0017931434558704495, -0.037670236080884933, 0.02646719105541706, -0.037810273468494415, -0.050028592348098755, 0.07751105725765228, 0.01755727082490921, -0.0812220647931099, -0.004314922261983156, 0.06091655045747757, -0.055034954100847244, -0.06315715610980988, -0.024471648037433624, 0.020112965255975723, 0.011876977048814297, -0.05471986532211304, -0.05471986532211304, 0.10110747069120407, -0.014975318685173988, 0.0348694734275341, 0.05643533170223236, -0.018817612901329994, -0.0039560748264193535, -0.006529273930937052, 0.03229627385735512, -0.04544234648346901, -0.00211698142811656, 0.05426474288105965, 0.023771459236741066, -0.035849738866090775, -0.010310301557183266, 0.02340385876595974, -0.01652448996901512, -0.002363142091780901, 0.017714813351631165, -0.03551714867353439, 0.04477716609835625, -0.04659765958786011, 0.005352078936994076, 0.003886055899783969, -0.0027613751590251923, 0.06546778976917267, 0.007041288074105978, 0.04565240442752838, 0.04071606323122978, -0.013723728246986866, 0.009382548741996288, 0.05391464754939079, -0.007290730718523264, -0.05254927650094032, 0.013960042968392372, 0.05195411667227745, -0.009242511354386806, -0.0006203248049132526, 0.020235497504472733, 0.022651154547929764, 0.03240130469202995, -0.0026235252153128386, -0.014712747186422348, -0.02235357277095318, 0.036444902420043945, 0.06462755799293518, -0.013356128707528114, 0.045617394149303436, 0.058290835469961166, 0.020375534892082214, 0.01748725026845932, -0.047227829694747925, -0.03420429304242134, -0.0409611277282238, -0.01937776431441307, 0.021635878831148148, 0.05356455221772194, -0.050868820399045944, 0.012857243418693542, 0.00059133255854249, 0.059061046689748764, -0.04988855496048927, 0.00023973309725988656, 0.027062352746725082, -0.0629471018910408, 0.0016706101596355438, 0.020323021337389946, 0.01614813692867756, 0.00880489218980074, 0.04498722404241562, -0.009303777478635311, -0.00007979707152117044, 0.005369584076106548, 0.035079531371593475, 0.05090383067727089, -0.011150529608130455, -0.007789616473019123, -0.0005008001462556422, 0.01779358461499214, -0.001421167398802936, 0.035062026232481, 0.04523228853940964, -0.038335416465997696, 0.0018981719622388482, 0.005811579059809446, 0.0332065224647522, 0.0269223153591156, -0.04043598473072052, -0.03374917060136795, -0.0758306011557579, -0.02191595360636711, -0.023193800821900368, 0.0050194887444376945, -0.023316334933042526, -0.01732095517218113, 0.01846751756966114, 0.03184115141630173, -0.040996138006448746, -0.0027985728811472654, 0.03198118880391121, -0.005627778824418783, -0.06977395713329315, -0.00803468283265829, 0.026642238721251488, 0.008660477586090565, 0.03928067162632942, 0.02335134521126747, 0.010380320250988007, -0.03294394910335541, 0.05668039992451668, 0.0008281937334686518, -0.04687773436307907, 0.05471986532211304, 0.03924566134810448, -0.005544631276279688, 0.02944299951195717, 0.016822069883346558, 0.012830985710024834, -0.04299167916178703, -0.032278768718242645, 0.03240130469202995, 0.006616797763854265, 0.02230105921626091, 0.09606610238552094, 0.010030224919319153, -0.007877140305936337, -0.015561727806925774, 0.038790538907051086, 0.05892100930213928, -0.025451915338635445, -0.03264636918902397, -0.033976729959249496, 0.02419157326221466, 0.04467213526368141, -0.02651970461010933, -0.03809034824371338, -0.05195411667227745, -0.02821766585111618, 0.051463983952999115, 0.003693503560498357, -0.01486153807491064, 0.06504767388105392, -0.028760313987731934, 0.009452568367123604, 0.015482956543564796, -0.02926795184612274, 0.03268137946724892, 0.003155232174322009, -0.023263821378350258, 0.06781342625617981, 0.04610752686858177, 0.009610110893845558, -0.01732095517218113, -0.01037156768143177, -0.04376189038157463, -0.026817286387085915, 0.014117585495114326, -0.016533242538571358, 0.028270181268453598, 0.013084804639220238, -0.01777607947587967, 0.03693503513932228, 0.008183473721146584, 0.014126338064670563, -0.056260284036397934, 0.007080673705786467, 0.019097689539194107, -0.026047077029943466, -0.09144484251737595, 0.07064919173717499, -0.009750149212777615, -0.10103745013475418, -0.0017329708207398653, 0.015579232946038246, 0.03623484447598457, -0.02639717236161232, -0.1290450543165207, -0.05612024664878845, -0.06770839542150497, -0.05181407555937767, -0.017688555642962456, 0.007553302217274904, -0.024594182148575783, -0.022913726046681404, -0.0010114467004314065, 0.03921065479516983, 0.021828429773449898, 0.040085889399051666, -0.07618069648742676, -0.005535879172384739, 0.007513916585594416, -0.06462755799293518, 0.007566430605947971, 0.0066999453119933605, 0.07082424312829971, -0.04848817363381386, -0.026309648528695107, -0.0833926573395729, -0.0301606934517622, 0.0254169050604105, -0.02730741910636425, 0.07653079181909561, 0.013242348097264767, -0.008314759470522404, 0.03914063423871994, 0.08787387609481812, -0.005085131619125605, 0.0007784146000631154, -0.01930774562060833, 0.009828920476138592, -0.01983288861811161, 0.0048269364051520824, 0.009925196878612041, -0.013224842958152294, 0.04201141372323036, -0.009531339630484581, 0.029040390625596046, 0.023683935403823853, 0.03269888460636139, -0.03009067475795746, -0.0367949977517128, 0.005120140966027975, -0.03346909210085869, 0.012244576588273048, 0.016638269647955894, 0.04659765958786011, 0.045547373592853546, 0.027797551825642586, 0.049048326909542084, -0.00022154457110445946, -0.019815383478999138, 0.001353336381725967, 0.02307126857340336, -0.021425820887088776, -0.011063005775213242, -0.005623403005301952, 0.08150213956832886, -0.014135090634226799, -0.012043272145092487, 0.039560746401548386, -0.01897515542805195, -0.04225648194551468, -0.003969203215092421, 0.0016312244115397334, -0.0512189157307148, 0.08857406675815582, -0.038720518350601196, 0.11784201860427856, 0.01873008906841278, -0.005960369482636452, -0.05745060741901398, -0.002711049048230052, 0.036759987473487854, 0.04757792502641678, 0.05573514103889465, 0.0003670528531074524, 0.009128729812800884, 0.008174721151590347, -0.06312215328216553, 0.0060041313990950584, 0.05531502887606621, -0.026309648528695107, 0.011185538955032825, 0.06494264304637909, 0.02508431486785412, 0.0073826308362185955, 0.045162271708250046, 0.005741559900343418, -0.025661971420049667, 0.036900024861097336, 0.0663430243730545, 0.002330320654436946, -0.005356455221772194, -0.013049795292317867, 0.03003816120326519, 0.017469746991991997, 0.07443021982908249, -0.04103114828467369, -0.025731991976499557, -0.00576781714335084, -0.021688392385840416, -0.03595476970076561, -0.00009682318341219798, -0.04386691749095917, 0.010459091514348984, 0.058360856026411057, 0.02483924850821495, -0.03556966409087181, -0.013356128707528114, 0.03612981736660004, -0.05296939238905907, 0.05300439894199371, 0.020235497504472733, 0.022266048938035965, -0.026642238721251488, -0.040085889399051666, -0.018379993736743927, 0.003188053611665964, -0.00470002694055438, -0.035464636981487274, 0.01794237457215786, -0.016585756093263626, 0.031368523836135864, -0.0003979596949648112, -0.013995052315294743, 0.09774655848741531, 0.014870289713144302, -0.05990127474069595, 0.03346909210085869, 0.019815383478999138, 0.03087838925421238, 0.035604674369096756, 0.005107012577354908, -0.012953518889844418, -0.01040657702833414, 0.04953845962882042, -0.05433476343750954, -0.032086215913295746, -0.01270845253020525, -0.02093568816781044, 0.021373307332396507, -0.023613914847373962, -0.03329404443502426, -0.013758738525211811, -0.010494100861251354, 0.0009665907127782702, -0.022476106882095337, 0.01628817617893219, -0.030055666342377663, 0.023036258295178413, -0.05671541020274162, -0.04610752686858177, -0.028305189684033394, -0.0447421558201313, -0.07604066282510757, -0.03511454164981842, -0.01990290731191635, -0.02991562709212303, -0.020795650780200958, -0.05566512420773506, -0.02235357277095318, -0.028585266321897507, -0.05377461016178131, 0.018187440931797028, -0.02814764715731144, -0.04414699599146843, 0.06770839542150497, 0.012568415142595768, -0.018309975042939186, -0.01606936566531658, 0.0058903503231704235, 0.008848654106259346, 0.006682440638542175, -0.015281652100384235, 0.055560093373060226, 0.025521934032440186, -0.04659765958786011, 0.030143190175294876, 0.02814764715731144, 0.006507392972707748, -0.03763522580265999, 0.028042618185281754, 0.01310230977833271, 0.03581473231315613, -0.01703212782740593, 0.0024375373031944036, 0.007780863903462887, -0.008927425369620323, -0.007019407115876675, -0.021075725555419922, 0.010739168152213097, 0.04803305119276047, -0.046842727810144424, -0.02125077322125435, -0.0022351385559886694, 0.033118996769189835, 0.028130142018198967, 0.06798847019672394, 0.02307126857340336, -0.08024179935455322, 0.08976438641548157, -0.008087197318673134, -0.015220385044813156, -0.016900841146707535, 0.054509811103343964, -0.07905147969722748, 0.03401174023747444, 0.02203848771750927, -0.020725630223751068, -0.019027668982744217, -0.021093230694532394, -0.010642891749739647, -0.01134308148175478, -0.03255884721875191, 0.06567784398794174, 0.08178222179412842, -0.04596748948097229, -0.0009600264602340758, -0.023106276988983154, 0.0516040213406086, -0.025399399921298027, 0.005549007561057806, 0.0015196315944194794, -0.0005732807330787182, -0.020445555448532104, -0.011255557648837566, 0.04673769697546959, -0.029407989233732224, -0.037355147302150726, -0.045862458646297455, 0.02088317461311817, 0.03499200567603111, 0.040155909955501556, -0.002647594315931201, -0.03633987158536911, 0.013076053000986576, 0.01681331731379032, 0.025014296174049377, -0.038790538907051086, -0.02196846902370453, -0.015010328032076359, -0.0011389032006263733, 0.03199869394302368, 0.03788029029965401, 0.029880618676543236, -0.015614242292940617, -0.05317944660782814, 0.016393203288316727, -0.01873008906841278, 0.005912231281399727, 0.037355147302150726, -0.011001738719642162, -0.08374275267124176, -0.013434899970889091, -0.05181407555937767, -0.015019080601632595, -0.016209403052926064, -0.00926876813173294, 0.0054483553394675255, 0.03142103552818298, 0.013259852305054665, -0.04939842224121094, -0.05559510365128517, 0.018607554957270622, -0.05944615229964256, 0.04533731937408447, 0.06182679906487465, -0.03746017813682556, 0.04491720348596573, 0.021355802193284035, -0.03308399021625519, -0.0027307418640702963, 0.06420744210481644, 0.03777526319026947, 0.021618373692035675, 0.02223104052245617, -0.034361835569143295, 0.022581135854125023, -0.025049306452274323, -0.0020316457375884056, -0.062246911227703094, -0.010546615347266197, -0.034029245376586914, 0.047682955861091614, 0.04568741098046303, 0.007553302217274904, 0.009925196878612041 ]
18,506
miarec_s3fs.s3fs
upload
null
def upload(self, path, file, chunk_size=None, **options): _path = self.validatepath(path) _key = self._path_to_key(_path) if self.strict: if not self.isdir(dirname(path)): raise errors.ResourceNotFound(path) try: info = self._getinfo(path) if info.is_dir: raise errors.FileExpected(path) except errors.ResourceNotFound: pass with s3errors(path): self.client.upload_fileobj( file, self._bucket_name, _key, ExtraArgs=self._get_upload_args(_key) )
(self, path, file, chunk_size=None, **options)
[ -0.03868335112929344, 0.03399120271205902, -0.09255349636077881, 0.07708016037940979, -0.013986896723508835, 0.0029684097971767187, 0.044056039303541183, 0.0022610060404986143, -0.01355708111077547, -0.026755983009934425, -0.00662183715030551, 0.0031273518688976765, 0.027812613174319267, -0.046993106603622437, -0.04487985000014305, -0.014918162487447262, 0.0650811567902565, -0.06672877818346024, -0.015258432365953922, 0.0367133654654026, 0.01076328381896019, 0.018643226474523544, 0.00039595586713403463, -0.011443824507296085, 0.06393498182296753, 0.03843262419104576, 0.006227840203791857, 0.033633023500442505, 0.02883342280983925, -0.031197406351566315, 0.01616283506155014, 0.06769586354494095, -0.012769087217748165, 0.030642228201031685, -0.03442101925611496, -0.06894949078559875, 0.019449129700660706, -0.0158852469176054, -0.0601382814347744, 0.018267137929797173, -0.031286951154470444, 0.0795874148607254, -0.0011920650722458959, 0.0006128221866674721, 0.05107634887099266, 0.012240773066878319, -0.0005092860083095729, 0.045166391879320145, -0.009805154986679554, 0.01139905210584402, -0.009545475244522095, -0.011076690629124641, 0.012294500134885311, -0.038540080189704895, 0.016109108924865723, 0.006433793343603611, 0.027812613174319267, -0.020595302805304527, -0.04391276463866234, 0.029352782294154167, -0.00917834136635065, 0.01746123470366001, 0.08624954521656036, -0.058992110192775726, -0.0703105702996254, -0.007374013774096966, -0.028493152931332588, -0.018714861944317818, -0.014613710343837738, -0.020219214260578156, -0.038934074342250824, 0.0028609561268240213, 0.04620511084794998, -0.012769087217748165, -0.012016911059617996, 0.07528926432132721, 0.0021770577877759933, 0.07528926432132721, 0.0465632900595665, 0.03506574034690857, -0.044951487332582474, -0.054550688713788986, -0.021240023896098137, -0.05086144059896469, -0.017165737226605415, -0.00840377900749445, 0.02263692393898964, -0.0693793073296547, -0.0009710013400763273, -0.003590746084228158, -0.008188871666789055, -0.0066576553508639336, -0.00990365445613861, -0.04505893960595131, 0.034564290195703506, 0.0014472677139565349, -0.019270040094852448, -0.04419931024312973, -0.09649346768856049, 0.047637827694416046, -0.04667074605822563, -0.05000181123614311, 0.05745193734765053, -0.04351877048611641, 0.008448551408946514, -0.03900571167469025, -0.020380394533276558, -0.016431469470262527, -0.004924963694065809, 0.03750135749578476, 0.01770300604403019, -0.017165737226605415, -0.03168094903230667, 0.05949356034398079, -0.02387264184653759, -0.020774392411112785, 0.03932807222008705, -0.00480407802388072, -0.01607329025864601, -0.01989685371518135, 0.0564490370452404, -0.04419931024312973, 0.028296153992414474, 0.056914668530225754, 0.04359040409326553, 0.0026818665210157633, 0.03972207009792328, 0.01082596555352211, -0.03336438909173012, -0.006442748010158539, -0.02387264184653759, -0.010691648349165916, 0.029961686581373215, -0.010118561796844006, -0.02634407766163349, 0.029048331081867218, 0.008699276484549046, -0.017864186316728592, -0.021168388426303864, 0.06157099828124046, 0.08424373716115952, -0.02630825899541378, -0.01597479172050953, -0.04344713315367699, 0.07944414019584656, -0.013512308709323406, -0.0808052197098732, -0.023926367983222008, -0.03259430453181267, 0.06346935033798218, -0.06114118546247482, 0.007396399974822998, 0.08152157813310623, 0.019484946504235268, 0.029693052172660828, -0.04928545281291008, 0.015365886501967907, -0.049822721630334854, -0.03750135749578476, 0.0140316691249609, -0.03510155901312828, 0.01533006876707077, -0.0010616654762998223, 0.041190605610609055, -0.0021916087716817856, -0.015867337584495544, -0.02186683751642704, -0.010897601023316383, -0.029961686581373215, 0.042086053639650345, 0.013028766959905624, 0.004145924001932144, 0.0177298691123724, 0.03710736334323883, -0.006639746483415365, -0.005171211902052164, -0.008551527746021748, 0.02840360812842846, 0.044557489454746246, -0.03241521492600441, -0.02510835975408554, -0.01347649097442627, 0.09878581762313843, -0.0009900296572595835, -0.043626222759485245, 0.01420180406421423, -0.00771876098588109, 0.023496553301811218, 0.06303953379392624, 0.000859630003105849, 0.05193597823381424, 0.00021518733410630375, 0.033794205635786057, -0.003454190446063876, 0.03682081773877144, -0.007100902032107115, 0.028815513476729393, -0.07729506492614746, 0.019789399579167366, 0.13553500175476074, -0.048748183995485306, 0.019287947565317154, 0.04265913739800453, -0.023514462634921074, -0.011103554628789425, 0.06286044418811798, 0.024141276255249977, 0.06973748654127121, -0.0724596455693245, 0.0308392271399498, -0.006254703737795353, 0.0068233129568398, -0.014004805125296116, 0.023586098104715347, -0.0088649345561862, -0.016583696007728577, 0.028672242537140846, -0.03096458874642849, -0.012294500134885311, 0.04957199841737747, 0.07708016037940979, 0.01597479172050953, -0.010109607130289078, -0.035638827830553055, 0.04025933891534805, -0.0422651432454586, -0.011622914113104343, -0.020004305988550186, -0.02877969667315483, -0.04642001911997795, 0.008784344419836998, 0.04548875615000725, 0.04265913739800453, -0.005493572913110256, -0.035334374755620956, 0.00034446761128492653, 0.01056628581136465, -0.014094349928200245, 0.008721662685275078, -0.06375589221715927, 0.018893951550126076, -0.060747187584638596, -0.04330386221408844, 0.006424838677048683, -0.085748091340065, 0.020917663350701332, 0.013198901899158955, -0.045667845755815506, -0.000773443141952157, -0.036408912390470505, 0.03066013753414154, 0.0225115604698658, -0.06436479836702347, 0.021813111379742622, 0.04312477260828018, 0.026720166206359863, 0.05906374379992485, -0.00665317801758647, -0.025609809905290604, 0.005601026583462954, -0.045381300151348114, -0.023675642907619476, 0.0585981123149395, -0.009276840835809708, -0.02174147590994835, -0.04047424718737602, -0.02242201566696167, -0.013019813224673271, 0.013189948163926601, 0.013601853512227535, 0.021293751895427704, 0.057165395468473434, -0.021257933229207993, -0.0113363703712821, 0.022368289530277252, -0.01533006876707077, -0.023944277316331863, 0.021974291652441025, -0.024105457589030266, 0.003429565578699112, 0.03868335112929344, 0.0014080918626859784, 0.017846276983618736, 0.011945275589823723, 0.0032280897721648216, 0.02797379344701767, -0.029442327097058296, 0.013861534185707569, 0.009473838843405247, 0.022439925000071526, -0.01813282072544098, -0.005117484834045172, -0.03519110381603241, 0.0028811036609113216, -0.058920472860336304, -0.022601105272769928, -0.042300958186388016, 0.013001903891563416, 0.02288764901459217, -0.06515279412269592, -0.0277588851749897, 0.022314561530947685, -0.036498457193374634, 0.029191602021455765, 0.008932093158364296, -0.026970891281962395, 0.02340700849890709, 0.018482044339179993, -0.05995919182896614, 0.03710736334323883, -0.05856229364871979, -0.03655218333005905, -0.08094849437475204, -0.018858132883906364, 0.06275299191474915, 0.01591210998594761, 0.04505893960595131, 0.0064203618094325066, -0.030695954337716103, -0.029227420687675476, -0.016700103878974915, -0.024785999208688736, -0.04022352024912834, -0.01148859690874815, -0.01717469096183777, -0.023729369044303894, 0.005972637794911861, -0.02895878627896309, -0.01575988344848156, -0.04154878482222557, -0.029137875884771347, 0.0561266764998436, -0.008394824340939522, 0.014228667132556438, -0.03322111815214157, -0.05773848295211792, 0.0112557802349329, 0.03617609664797783, 0.04359040409326553, 0.07750996947288513, 0.03433147445321083, 0.04545293748378754, 0.013977942056953907, -0.000772323808632791, -0.021759385243058205, 0.016816511750221252, -0.01662846840918064, -0.007284468971192837, -0.010781193152070045, 0.02911996655166149, -0.023980095982551575, -0.019717764109373093, 0.0272932518273592, -0.03316739201545715, -0.0206669382750988, -0.0033825545106083155, 0.018464136868715286, -0.006912857759743929, -0.026720166206359863, 0.0051264395006000996, 0.03168094903230667, -0.0010448758257552981, 0.0005711278645321727, -0.02242201566696167, 0.04416349157691002, 0.008564959280192852, 0.013333219103515148, 0.02174147590994835, -0.043626222759485245, 0.016476241871714592, 0.03066013753414154, -0.04312477260828018, -0.01761346124112606, 0.05745193734765053, -0.012160182930529118, 0.07271037250757217, 0.042050234973430634, 0.0004636741359718144, 0.01995057985186577, 0.006962107494473457, 0.026415713131427765, -0.017353780567646027, -0.003104965668171644, 0.0015065910993143916, 0.02032666839659214, -0.006738245487213135, 0.044056039303541183, -0.02011176012456417, 0.04047424718737602, -0.008739572018384933, 0.002225188072770834, -0.011730367317795753, 0.022905558347702026, -0.05286724492907524, -0.029012512415647507, 0.005399550776928663, 0.02596798911690712, -0.04308895394206047, -0.02648734860122204, 0.017506007105112076, -0.031233223155140877, -0.013440673239529133, -0.03753717616200447, 0.06221572309732437, 0.006845699157565832, 0.025735173374414444, -0.022314561530947685, 0.05659230798482895, 0.0438053123652935, 0.03768044710159302, 0.016852330416440964, 0.019968489184975624, -0.02233247086405754, 0.009321613237261772, -0.036534275859594345, -0.0010504723759368062, -0.07317600399255753, -0.0947025716304779, -0.043841131031513214, -0.05358360335230827, -0.021257933229207993, 0.026755983009934425, -0.05369105562567711, -0.00943802110850811, -0.003431804245337844, -0.07356999814510345, -0.018553681671619415, -0.06214408576488495, 0.010951328091323376, 0.0010476741008460522, 0.012070638127624989, 0.07736670225858688, -0.009070887230336666, 0.02190265618264675, 0.005189120769500732, 0.03191376477479935, -0.050753988325595856, 0.012518362142145634, 0.023299554362893105, 0.022601105272769928, -0.02732907049357891, -0.008260507136583328, -0.02720370702445507, -0.022744378075003624, 0.050718169659376144, -0.0015950165688991547, -0.06912858039140701, -0.00414144666865468, 0.0663347840309143, -0.010906555689871311, -0.00256769685074687, -0.05354778468608856, 0.01533006876707077, 0.007844123989343643, -0.009093273431062698, -0.000054391464800573885, 0.0030646705999970436, -0.02288764901459217, 0.03479710593819618, -0.08259611576795578, 0.026684347540140152, 0.029406510293483734, 0.10988936573266983, -0.03950716182589531, -0.021025117486715317, 0.09935890138149261, -0.025484448298811913, 0.026791801676154137, 0.04813928157091141, -0.07758160680532455, 0.010620011948049068, 0.026415713131427765, -0.058311570435762405, 0.04491566866636276, 0.045381300151348114, -0.008685844950377941, -0.0075575802475214005, 0.030821317806839943, -0.03492246940732002, 0.000003895723239111248, 0.050933077931404114, -0.05268815532326698, 0.03186003863811493, 0.015321114100515842, 0.0229771938174963, 0.016449378803372383, 0.009057455696165562, 0.01255417987704277, 0.07328345626592636, -0.03957879915833473, 0.03160931169986725, -0.04881982132792473, 0.014416711404919624, -0.0027579795569181442, -0.011130417697131634, -0.02408754825592041, -0.09792618453502655, -0.001368916011415422, -0.008188871666789055, 0.01619865372776985, 0.013422763906419277, 0.014309258200228214, -0.016610559076070786, 0.016726966947317123, 0.009124614298343658, 0.09169387072324753, -0.0007135600899346173, 0.006832267623394728, 0.02639780379831791, -0.0585981123149395, -0.03447474539279938, 0.05569685995578766, -0.05505213886499405, 0.020469939336180687, 0.07836960256099701, 0.018643226474523544, -0.022690650075674057, 0.007530717179179192, -0.053834330290555954, -0.04065333679318428, 0.006339771207422018, 0.015195751562714577, 0.019592400640249252, 0.0178910493850708, -0.017479144036769867, -0.010378241539001465, 0.024911360815167427, -0.0521150678396225, 0.00028612359892576933, 0.005721912253648043, 0.028260337188839912, -0.018679043278098106, -0.035334374755620956, 0.05422832444310188, 0.0285289715975523, 0.06902112811803818, 0.004759305622428656, -0.004546636715531349, 0.03492246940732002, 0.000049004785978468135, -0.01189154852181673, 0.007177015300840139, -0.003454190446063876, -0.022529469802975655, -0.04154878482222557, -0.019789399579167366, 0.01807013899087906, -0.052509065717458725, -0.01918049529194832, -0.0434829518198967, 0.029907960444688797, -0.010790147818624973, 0.009787245653569698, 0.06834058463573456, 0.05035999044775963, -0.01344962790608406, 0.025000905618071556, -0.05816829577088356, 0.006183067802339792, -0.040295157581567764, -0.005359255708754063, 0.026254532858729362, 0.0019464798970147967, 0.026379896327853203, 0.026290351524949074, 0.00959024764597416, 0.00831423420459032, 0.0252874493598938, 0.03284503147006035, -0.03325693681836128, 0.006993448361754417, 0.03843262419104576, -0.05422832444310188, 0.008520186878740788, 0.0434829518198967, -0.017282145097851753, -0.03818190097808838, -0.005377164576202631, -0.005793548189103603, 0.003084818134084344, -0.01631506159901619, -0.025806808844208717, 0.012160182930529118, 0.005739821121096611, -0.042086053639650345, 0.03519110381603241, 0.042945683002471924, 0.024929270148277283, -0.04190696403384209, -0.014783845283091068, -0.001533454516902566, -0.08567645400762558, 0.0026079921517521143, -0.011837821453809738, 0.002903489861637354, -0.030266139656305313, 0.026290351524949074, -0.09362803399562836, 0.025394903495907784, 0.006133818067610264, -0.012142273597419262, 0.0067516774870455265, -0.021598203107714653, 0.10788356512784958, -0.05018090084195137, 0.060962095856666565, -0.05129125714302063, 0.07256709784269333, 0.03746554255485535, -0.01912676729261875, -0.03447474539279938, -0.01613597199320793, -0.026576893404126167, 0.02430245652794838, 0.005793548189103603, 0.016386697068810463, -0.041656237095594406, 0.025770992040634155, 0.012115410529077053, 0.016861284151673317, -0.004705579020082951, -0.03818190097808838, 0.005323437973856926, 0.050968896597623825, -0.03900571167469025, -0.007785919588059187, 0.029907960444688797, -0.002377414144575596, -0.04967945069074631, -0.039220619946718216, -0.019377492368221283, -0.004522012080997229, -0.031967490911483765, -0.015894200652837753, 0.02972887083888054, -0.007297900505363941, -0.044951487332582474, 0.05147034674882889, 0.008900752291083336, 0.00891418382525444, -0.0009486151393502951, -0.031877946108579636, -0.007100902032107115, 0.03957879915833473, -0.003982504829764366, 0.026326168328523636, 0.04280241206288338, -0.046097658574581146, -0.008359006606042385, 0.00205841101706028, 0.01986103504896164, 0.017595551908016205, -0.010664784349501133, -0.0367133654654026, 0.03710736334323883, -0.00787994172424078, 0.07027475535869598, -0.05508795753121376, 0.0004944551619701087, -0.033543478697538376, 0.02827824465930462, -0.0031318292021751404, 0.010243924334645271, 0.04330386221408844, 0.02045203000307083, 0.014354030601680279, -0.00480407802388072, -0.054944682866334915, -0.003185556037351489, 0.0524374283850193, -0.03667754679918289, -0.024660635739564896, -0.003863857826218009, 0.014094349928200245, 0.0017438848735764623, 0.04727964848279953, 0.06336189806461334, -0.04839000478386879, -0.03169885650277138, 0.016512060537934303, -0.029316965490579605, -0.02834988199174404, 0.021454932168126106, 0.038934074342250824, -0.02494717948138714, -0.010414059273898602, -0.005986069329082966, -0.0019184971461072564, -0.003543735248968005, -0.04015188291668892, 0.021025117486715317, 0.000936302705667913, -0.05598340556025505, -0.04312477260828018, -0.04376949369907379, 0.008188871666789055, 0.08646444976329803, 0.015088297426700592, 0.06948675960302353, -0.009706655517220497, 0.05351196601986885, -0.006756154354661703, 0.037429723888635635, -0.029710961505770683, -0.03622982278466225, -0.026845527812838554, -0.011882593855261803, 0.008788821287453175, 0.08517500758171082, -0.00017755053704604506, 0.038540080189704895, -0.03340020775794983, 0.018822316080331802, 0.015580793842673302, 0.021275842562317848, 0.07074038684368134, 0.005023462697863579, -0.0022610060404986143, -0.026326168328523636, -0.004924963694065809, -0.016726966947317123, -0.07500271499156952, -0.03510155901312828, 0.004902577493339777, -0.00013802490138914436, -0.04559620842337608, -0.0012278829235583544, 0.05068235099315643, -0.04376949369907379, 0.023156283423304558, 0.02220710925757885, -0.013673489913344383, 0.0136466259136796, -0.009849927388131618, -0.015598703175783157, -0.016521014273166656, -0.009563383646309376, 0.0280633382499218, 0.06830476969480515, 0.045166391879320145, 0.012124365195631981, -0.022439925000071526, -0.010620011948049068, -0.09964544326066971, 0.07915759831666946, -0.013610808178782463, 0.03605073317885399, 0.034868743270635605, -0.06776750087738037, 0.005426414310932159, 0.0074098315089941025, 0.0004804637865163386, 0.015491249039769173, 0.060747187584638596, 0.030516864731907845, -0.06726604700088501, -0.05261651799082756, -0.00137451256159693, 0.037644632160663605, -0.05755939334630966, -0.02217129059135914, -0.05422832444310188, 0.017255282029509544, 0.009715610183775425, 0.0021692225709557533, 0.05000181123614311, 0.020308759063482285, 0.0055114817805588245 ]
18,507
fs.base
validatepath
Validate a path, returning a normalized absolute path on sucess. Many filesystems have restrictions on the format of paths they support. This method will check that ``path`` is valid on the underlaying storage mechanism and throw a `~fs.errors.InvalidPath` exception if it is not. Arguments: path (str): A path. Returns: str: A normalized, absolute path. Raises: fs.errors.InvalidPath: If the path is invalid. fs.errors.FilesystemClosed: if the filesystem is closed. fs.errors.InvalidCharsInPath: If the path contains invalid characters.
def validatepath(self, path): # type: (Text) -> Text """Validate a path, returning a normalized absolute path on sucess. Many filesystems have restrictions on the format of paths they support. This method will check that ``path`` is valid on the underlaying storage mechanism and throw a `~fs.errors.InvalidPath` exception if it is not. Arguments: path (str): A path. Returns: str: A normalized, absolute path. Raises: fs.errors.InvalidPath: If the path is invalid. fs.errors.FilesystemClosed: if the filesystem is closed. fs.errors.InvalidCharsInPath: If the path contains invalid characters. """ self.check() if isinstance(path, bytes): raise TypeError( "paths must be unicode (not str)" if six.PY2 else "paths must be str (not bytes)" ) meta = self.getmeta() invalid_chars = typing.cast(six.text_type, meta.get("invalid_path_chars")) if invalid_chars: if set(path).intersection(invalid_chars): raise errors.InvalidCharsInPath(path) max_sys_path_length = typing.cast(int, meta.get("max_sys_path_length", -1)) if max_sys_path_length != -1: try: sys_path = self.getsyspath(path) except errors.NoSysPath: # pragma: no cover pass else: if len(sys_path) > max_sys_path_length: _msg = "path too long (max {max_chars} characters in sys path)" msg = _msg.format(max_chars=max_sys_path_length) raise errors.InvalidPath(path, msg=msg) path = abspath(normpath(path)) return path
(self, path)
[ 0.06357390433549881, 0.03753725811839104, 0.00553820701315999, 0.051960162818431854, 0.006386613007634878, -0.06670358031988144, 0.0395168736577034, 0.012914626859128475, 0.05260118097066879, -0.029204025864601135, 0.08122075349092484, 0.03936604782938957, 0.03199433907866478, 0.024132441729307175, -0.04079890996217728, 0.046832021325826645, 0.0386873222887516, 0.014715133234858513, 0.0239250548183918, 0.016779588535428047, -0.0037518406752496958, -0.009365461766719818, -0.01205679401755333, 0.005948269739747047, 0.0014623223105445504, 0.0798633024096489, 0.04283508285880089, -0.011868259869515896, 0.0239250548183918, -0.08318150788545609, 0.04423024132847786, 0.037405285984277725, 0.05588168650865555, 0.02769574709236622, -0.011971953324973583, -0.03239026293158531, -0.005703174974769354, -0.027111290022730827, -0.06666587293148041, -0.06990867108106613, -0.06511988490819931, 0.0478501096367836, 0.02134212851524353, 0.011264948174357414, 0.016232838854193687, -0.027299825102090836, -0.03959228843450546, 0.017882516607642174, -0.09562480449676514, 0.04132680594921112, -0.009728390723466873, 0.005891709588468075, -0.012839213013648987, -0.026451418176293373, -0.003890885040163994, 0.01216991525143385, 0.023397156968712807, 0.0570128932595253, -0.0006410179776139557, -0.04656807333230972, 0.013734753243625164, -0.018269013613462448, 0.045248329639434814, -0.0608212947845459, 0.013122015632689, -0.010633356869220734, 0.020286334678530693, -0.07729922980070114, -0.029713070020079613, 0.03738643229007721, -0.05904906988143921, 0.043249860405921936, -0.051092904061079025, -0.0005670770187862217, 0.0751122236251831, -0.013631058856844902, -0.03823483735322952, 0.08468978852033615, 0.05659811943769455, -0.010407115332782269, 0.043325275182724, -0.03516172245144844, 0.02175690419971943, -0.05723913758993149, 0.003688210155814886, 0.000053761850722366944, 0.025772694498300552, 0.016468506306409836, -0.003004771890118718, 0.066892109811306, 0.02976962924003601, -0.02686619572341442, -0.020644549280405045, 0.00021593115525320172, 0.019928118214011192, -0.03135332092642784, 0.030844276770949364, -0.061009831726551056, -0.02792198956012726, -0.01576150208711624, -0.029882751405239105, 0.07631884515285492, 0.006000116933137178, 0.007795909885317087, 0.017825955525040627, 0.026112057268619537, 0.002309550065547228, -0.05886053293943405, 0.0116043109446764, -0.025753840804100037, -0.04762386530637741, -0.03199433907866478, -0.0040511395782232285, 0.03602898120880127, -0.006622281391173601, -0.01811818592250347, -0.041666168719530106, -0.050904370844364166, 0.012424437329173088, -0.006306485738605261, 0.03080657124519348, 0.06255581229925156, -0.05056500807404518, -0.01567666046321392, 0.09087372571229935, 0.06470511108636856, -0.02515053004026413, 0.003839037846773863, -0.020550282672047615, 0.04694513976573944, -0.016609907150268555, 0.03563305735588074, 0.04374005272984505, 0.060293398797512054, -0.04087432473897934, 0.04355151578783989, 0.013517938554286957, 0.03936604782938957, -0.006575147621333599, 0.039893943816423416, 0.03521828353404999, 0.02479231357574463, 0.03259764984250069, -0.08008953928947449, 0.03693394735455513, 0.033559177070856094, 0.0007806515204720199, -0.04407941550016403, -0.023849640041589737, 0.05863429233431816, -0.025169383734464645, -0.03180580586194992, 0.05501442775130272, 0.0232086218893528, 0.04200553148984909, -0.0388004407286644, -0.027884282171726227, -0.04984857514500618, 0.0516585074365139, -0.002703116275370121, -0.04019559919834137, -0.06259351968765259, 0.038988977670669556, -0.032371409237384796, 0.003544452367350459, 0.04468272626399994, -0.0036481465213000774, -0.01622341200709343, -0.023189768195152283, 0.0254710391163826, 0.00019516288011800498, 0.020418308675289154, -0.057389963418245316, 0.0012620041379705071, -0.05226181820034981, -0.016845576465129852, 0.018476400524377823, 0.05271430313587189, 0.015205323696136475, -0.02111588604748249, -0.007946738041937351, -0.02728097140789032, -0.013112588785588741, 0.03327637538313866, 0.033427201211452484, 0.055617738515138626, -0.03947916626930237, 0.026338297873735428, 0.04193011671304703, 0.023397156968712807, -0.07918457686901093, 0.036500319838523865, 0.0357084721326828, 0.016826722770929337, 0.009591703303158283, -0.025112822651863098, 0.04340068995952606, -0.023755373433232307, -0.035859301686286926, 0.033879686146974564, 0.03770694136619568, -0.004934895783662796, 0.021738050505518913, -0.009294761344790459, -0.04407941550016403, -0.014432331547141075, -0.0016237550880759954, 0.03139102831482887, -0.043212153017520905, 0.03925292566418648, -0.03800859674811363, -0.025452185422182083, -0.016430798918008804, -0.007145465351641178, 0.004744004458189011, -0.05769161880016327, -0.0003355328517500311, 0.06131148710846901, 0.02121015451848507, 0.09517231583595276, 0.09841511398553848, 0.020456016063690186, 0.014404051005840302, -0.02337830327451229, 0.03768808767199516, -0.037989743053913116, -0.012886347249150276, 0.040572669357061386, 0.014130676165223122, 0.0014764623483642936, 0.01567666046321392, -0.022228240966796875, 0.03271077200770378, 0.014884814620018005, -0.016327105462551117, 0.02682848833501339, 0.040723495185375214, -0.0319000706076622, -0.026130909100174904, -0.018184171989560127, -0.013829020783305168, -0.04962233453989029, -0.033332936465740204, -0.00039386076969094574, -0.02401932142674923, -0.023302888497710228, -0.018646081909537315, 0.013150295242667198, -0.00006484562618425116, -0.07096446305513382, -0.05056500807404518, 0.07782712578773499, -0.02198314666748047, -0.015535259619355202, 0.021681491285562515, 0.02809167094528675, -0.08446354418992996, -0.055353790521621704, 0.024452950805425644, 0.04091203212738037, -0.01576150208711624, 0.012283035553991795, -0.022492190822958946, 0.03235255554318428, -0.020738817751407623, -0.061198364943265915, -0.011227241717278957, 0.024320976808667183, 0.02256760373711586, 0.026262884959578514, -0.10361867398023605, 0.04340068995952606, -0.03167383000254631, -0.0008719729958102107, -0.005283684935420752, 0.02198314666748047, 0.01979614421725273, 0.014809400774538517, 0.04347610101103783, 0.030938545241951942, -0.01943792775273323, 0.015016789548099041, 0.0204748697578907, -0.04155305027961731, 0.02153066359460354, 0.0011453483020886779, -0.03981852903962135, -0.10037587583065033, -0.058935947716236115, 0.029204025864601135, 0.05746537819504738, -0.04852883145213127, -0.004708654247224331, 0.01420609001070261, 0.03240911662578583, 0.03227714076638222, -0.004317444749176502, -0.06662816554307938, 0.0018983087502419949, -0.09758556634187698, 0.00023478461662307382, 0.06757083535194397, -0.01357449870556593, 0.02899663709104061, 0.012678958475589752, -0.013913861475884914, -0.05769161880016327, 0.008512341417372227, 0.008950685150921345, 0.028299059718847275, -0.016242263838648796, -0.043325275182724, -0.017590288072824478, 0.04242030903697014, 0.08574558049440384, 0.10233663767576218, 0.04890590161085129, -0.028751542791724205, -0.054675064980983734, 0.025866961106657982, 0.0002744063676800579, 0.060557346791028976, 0.019871557131409645, -0.018269013613462448, -0.09645435214042664, -0.03018440678715706, 0.02373651973903179, 0.02021091990172863, -0.008205972611904144, 0.04038413241505623, 0.0201732125133276, 0.04283508285880089, 0.026998169720172882, -0.040723495185375214, 0.018287865445017815, -0.018466973677277565, 0.011698578484356403, -0.02609320357441902, 0.005641900934278965, -0.0029599948320537806, 0.08634889125823975, -0.0004518941277638078, 0.008616035804152489, -0.010953865945339203, -0.015440992079675198, -0.002601778833195567, -0.030957398936152458, 0.023849640041589737, 0.0254710391163826, 0.0074094138108193874, 0.013442524708807468, -0.010953865945339203, -0.07556471228599548, -0.05765391141176224, -0.03371000662446022, -0.0173169132322073, -0.019645316526293755, 0.015026215463876724, -0.009200493805110455, 0.0024320976808667183, 0.06907911598682404, -0.014573732390999794, -0.04622871056199074, -0.02134212851524353, 0.005590053740888834, -0.009794377721846104, 0.016562772914767265, 0.040572669357061386, 0.007824189960956573, 0.03651917353272438, 0.014102395623922348, 0.0025782121811062098, 0.006919223815202713, -0.05912448465824127, 0.018071051687002182, 0.02931714616715908, 0.02428326942026615, -0.003337064292281866, -0.05814410373568535, 0.050640422850847244, 0.08114533871412277, 0.02479231357574463, -0.008809284307062626, -0.028676128014922142, 0.005255404859781265, 0.010557943023741245, -0.006589287891983986, -0.025263650342822075, -0.021719198673963547, 0.013338830322027206, -0.003742413828149438, -0.020493721589446068, 0.05795556679368019, -0.02786542847752571, -0.010548517107963562, 0.019965825602412224, 0.03883814811706543, 0.015591819770634174, 0.006740115582942963, 0.01635538600385189, -0.009026098996400833, 0.017458314076066017, -0.04336298257112503, 0.05211099237203598, -0.0023260468151420355, 0.06447886675596237, 0.042759671807289124, 0.054712772369384766, -0.04656807333230972, 0.052488062530756, 0.016025450080633163, -0.010162020102143288, -0.0050574433989822865, -0.016063157469034195, 0.01690213568508625, -0.0067024086602032185, -0.042307186871767044, -0.0516585074365139, 0.037084776908159256, -0.025546452030539513, -0.047736987471580505, 0.014960228465497494, -0.03222057968378067, 0.029335999861359596, 0.05271430313587189, -0.006688268389552832, -0.047699280083179474, 0.01026571448892355, 0.012433864176273346, 0.021681491285562515, 0.004739291034638882, 0.0026465558912605047, -0.06738230586051941, -0.05599480867385864, -0.03887585550546646, -0.03212631493806839, -0.03171153739094734, -0.02256760373711586, 0.0008065750589594245, -0.017873089760541916, -0.01775996945798397, 0.020456016063690186, 0.05776703357696533, 0.05316678807139397, 0.07729922980070114, -0.041213687509298325, -0.039667703211307526, 0.04313674196600914, 0.022624164819717407, -0.028035109862685204, -0.02628173679113388, 0.002075060037896037, 0.0330878421664238, -0.006862663198262453, -0.026885049417614937, -0.031824659556150436, -0.024358684197068214, -0.018476400524377823, -0.04690743610262871, 0.028016256168484688, -0.03587815538048744, 0.08642430603504181, 0.03876273334026337, -0.07364165782928467, -0.0019112705485895276, 0.019381366670131683, 0.013631058856844902, 0.03887585550546646, 0.05501442775130272, 0.020154360681772232, -0.023227475583553314, -0.05030106008052826, -0.01875920221209526, 0.042608842253685, 0.038536492735147476, 0.011312082409858704, 0.007366993464529514, -0.000808931712526828, -0.036406051367521286, -0.01336711086332798, 0.042344894260168076, -0.01640251837670803, 0.0017463027033954859, 0.06059505417943001, 0.01585576869547367, -0.022096266970038414, -0.0016602837713435292, 0.030146699398756027, -0.012066220864653587, -0.0039474451914429665, 0.02043716236948967, 0.044758137315511703, -0.028223644942045212, -0.0018511750968173146, -0.01716608554124832, -0.011500616557896137, -0.06398867815732956, 0.026979316025972366, -0.005750308278948069, -0.003028338775038719, -0.002884580986574292, 0.003890885040163994, 0.011585457250475883, 0.03753725811839104, 0.012660105712711811, 0.06802332401275635, 0.017618568614125252, -0.03080657124519348, 0.016053730621933937, -0.06059505417943001, -0.08989334851503372, 0.00790431722998619, 0.02731867879629135, 0.030259819701313972, 0.0008837564382702112, 0.014074116013944149, -0.023397156968712807, -0.012188768945634365, 0.041402220726013184, 0.01962646283209324, -0.06666587293148041, -0.018089905381202698, -0.014375771395862103, -0.0751122236251831, -0.008380367420613766, -0.05071583390235901, -0.003822541097179055, -0.031202493235468864, 0.05180933699011803, 0.005175277590751648, 0.027790015563368797, 0.018796909600496292, 0.07232191413640976, 0.015205323696136475, 0.050187937915325165, 0.0827290266752243, -0.05769161880016327, -0.023189768195152283, -0.11349789053201675, 0.04822717607021332, -0.0030141985043883324, 0.03847993165254593, -0.006495020352303982, -0.0069380770437419415, 0.012895774096250534, -0.01925881952047348, 0.019909264519810677, -0.041628461331129074, 0.004645023960620165, 0.009624696336686611, -0.041666168719530106, -0.019909264519810677, 0.032145168632268906, 0.032145168632268906, 0.009030812419950962, -0.013027748093008995, 0.034162487834692, 0.021266713738441467, 0.014404051005840302, -0.02844988740980625, -0.057616204023361206, -0.031070519238710403, -0.013065454550087452, -0.029901603236794472, -0.029430266469717026, 0.012396156787872314, -0.0031296759843826294, -0.015516405925154686, 0.021738050505518913, -0.013404817320406437, -0.024490658193826675, 0.021398689597845078, 0.02999587170779705, -0.030844276770949364, -0.024170149117708206, 0.03680197522044182, -0.029713070020079613, 0.007008777465671301, -0.002625345718115568, 0.023755373433232307, 0.059162188321352005, 0.0050055962055921555, -0.022548750042915344, 0.011189534328877926, -0.021229008212685585, -0.03551993891596794, 0.01929652690887451, 0.0471336767077446, -0.08205030113458633, -0.025621866807341576, -0.008644316345453262, -0.04441877454519272, 0.04830259084701538, 0.01577092707157135, -0.012895774096250534, -0.021172447130084038, -0.008795144036412239, -0.039893943816423416, -0.008630176074802876, -0.014347490854561329, -0.037857767194509506, 0.03887585550546646, 0.020003532990813255, 0.041251394897699356, 0.028694981709122658, 0.010435395874083042, 0.0360666885972023, 0.026583394035696983, -0.044343363493680954, 0.018344426527619362, -0.0033017140813171864, 0.023397156968712807, -0.02252989634871483, 0.007131325080990791, 0.021266713738441467, 0.007805336732417345, -0.01212278101593256, -0.04087432473897934, -0.012546984478831291, 0.005349672399461269, -0.017298059538006783, -0.014488891698420048, 0.01152889709919691, -0.017778823152184486, -0.03239026293158531, 0.0012785010039806366, -0.010737051256000996, 0.0016308252234011889, -0.05889824032783508, -0.056447289884090424, 0.007480114232748747, -0.054675064980983734, -0.018193598836660385, -0.006688268389552832, 0.01830671913921833, -0.05207328498363495, -0.032333701848983765, 0.008564189076423645, 0.027205558493733406, 0.05030106008052826, -0.044758137315511703, -0.04453189671039581, -0.07096446305513382, 0.024641485884785652, -0.04732220992445946, 0.020625697448849678, -0.06044422462582588, -0.0463041216135025, 0.05840805172920227, -0.0008654920966364443, 0.036915093660354614, 0.07624343782663345, 0.0021316204220056534, -0.055806271731853485, 0.09072289615869522, 0.04875507578253746, 0.061386898159980774, -0.05904906988143921, -0.015440992079675198, -0.016666468232870102, -0.010275141336023808, -0.034011662006378174, -0.000707005150616169, 0.06002945080399513, -0.023265182971954346, -0.0025075115263462067, 0.03838566690683365, -0.0013704115990549326, 0.009266480803489685, -0.01985270343720913, -0.0026724794879555702, 0.0025027981027960777, -0.034954335540533066, -0.01781652867794037, -0.0018641368951648474, 0.018617801368236542, 0.028242498636245728, -0.0204748697578907, -0.0002590879157651216, 0.015129909850656986, -0.036179810762405396, 0.011717432178556919, -0.06025569140911102, -0.014404051005840302, 0.01522417739033699, 0.0005971247446723282, 0.00586814247071743, 0.051319144666194916, 0.015356151387095451, -0.03286159783601761, -0.028713835403323174, -0.047736987471580505, -0.0017498377710580826, 0.010171446949243546, -0.032918158918619156, -0.00022624163830187172, 0.05720143020153046, 0.007593235000967979, 0.0008095208904705942, 0.00360336946323514, 0.014290930703282356, -0.02447180449962616, -0.005316678434610367, -0.0010557943023741245, 0.014470038935542107, -0.02079537697136402, -0.0546373575925827, -0.008776290342211723, -0.03936604782938957, 0.027676895260810852, 0.017298059538006783, -0.02415129542350769, 0.032691918313503265, -0.07465974241495132, 0.048830486834049225, -0.045964762568473816, 0.007183172274380922, -0.015375005081295967, 0.02234136313199997, -0.02134212851524353, -0.02405702881515026, -0.0463041216135025, 0.02034289389848709, -0.013781886547803879, -0.042571134865283966, 0.02573498710989952, -0.06395097076892853, -0.0025947089307010174, 0.06640192121267319, 0.0005467506125569344, -0.053996339440345764, 0.027752308174967766, -0.04042183980345726, 0.0508289560675621, -0.008069285191595554, -0.03425675630569458, -0.025753840804100037, 0.012914626859128475, 0.014960228465497494, 0.03529369831085205, 0.04151534289121628, 0.03086313046514988, -0.014620866626501083, -0.07526305317878723, 0.011708005331456661, -0.009082659147679806, -0.003360631177201867, 0.04159075394272804, -0.01929652690887451, -0.00942673534154892, 0.023906201124191284, -0.022982381284236908, -0.01139692310243845, 0.0464172437787056, 0.05395863205194473, -0.024848874658346176, 0.009370175190269947, -0.003525598905980587, -0.0173169132322073, 0.009709537029266357, -0.04664348438382149, 0.032239433377981186, 0.00252165156416595, 0.00657043419778347, 0.03516172245144844, -0.006678842008113861, -0.040572669357061386, 0.02234136313199997 ]
18,508
miarec_s3fs.s3fs
writebytes
null
def writebytes(self, path, contents): if not isinstance(contents, bytes): raise TypeError("contents must be bytes") _path = self.validatepath(path) _key = self._path_to_key(_path) if self.strict: if not self.isdir(dirname(path)): raise errors.ResourceNotFound(path) try: info = self._getinfo(path) if info.is_dir: raise errors.FileExpected(path) except errors.ResourceNotFound: pass bytes_file = io.BytesIO(contents) with s3errors(path): self.client.upload_fileobj( bytes_file, self._bucket_name, _key, ExtraArgs=self._get_upload_args(_key), )
(self, path, contents)
[ -0.0005329511477611959, -0.008826101198792458, -0.08991844952106476, 0.07897752523422241, -0.0015589457470923662, -0.040430698543787, -0.017317090183496475, 0.05401628091931343, 0.049668893218040466, -0.016637811437249184, 0.051299162209033966, 0.0604286752641201, 0.02459896355867386, -0.05042968690395355, -0.035177603363990784, 0.029109377413988113, 0.010370329022407532, 0.0025676751974970102, 0.02003420703113079, 0.07883261144161224, -0.027533449232578278, 0.04119148850440979, 0.04133640229701996, 0.00415039574727416, 0.023113606497645378, -0.011167350225150585, -0.004157188814133406, 0.006910533644258976, -0.008097007870674133, -0.04159000143408775, 0.006222197320312262, -0.02282378077507019, -0.005805572960525751, 0.025486554950475693, -0.00156800274271518, -0.029797714203596115, 0.03927139565348625, 0.03383716195821762, -0.028330471366643906, -0.012308538891375065, -0.0046123056672513485, 0.07665891945362091, 0.011430004611611366, -0.06948573142290115, 0.0739055722951889, 0.028131214901804924, 0.03202575072646141, 0.06452246755361557, -0.011239806190133095, 0.012589307501912117, 0.012779505923390388, 0.004272665828466415, 0.021628249436616898, -0.05970411002635956, 0.038800425827503204, 0.028511611744761467, 0.020976141095161438, -0.02199053205549717, -0.04937906935811043, 0.027714591473340988, 0.01468148734420538, 0.003059020498767495, 0.058363668620586395, -0.05959542840719223, -0.02414610981941223, 0.03941630572080612, -0.008744587190449238, -0.06872493773698807, -0.009269896894693375, -0.011448118835687637, -0.027714591473340988, -0.036536164581775665, 0.012661764398217201, 0.0048500532284379005, -0.033402420580387115, 0.047205373644828796, -0.02037837542593479, 0.053581543266773224, 0.03678975999355316, 0.04680686444044113, -0.007725668605417013, -0.07336214929819107, -0.01166548766195774, -0.020414603874087334, -0.029978854581713676, 0.014799228869378567, 0.006602593697607517, 0.0007290929788723588, 0.025830723345279694, 0.014400718733668327, -0.017009150236845016, 0.027823274955153465, -0.030920788645744324, -0.04666195064783096, 0.038365688174963, -0.004881753120571375, 0.03807586431503296, -0.041082803159952164, -0.07868769764900208, 0.08216560631990433, -0.026790771633386612, 0.018268082290887833, 0.04053938016295433, -0.0046304198913276196, -0.013241415843367577, -0.058834634721279144, -0.020541401579976082, -0.03052227757871151, -0.04021332785487175, 0.012000598944723606, 0.03146421164274216, 0.0001760465238476172, -0.037043359130620956, -0.004809296689927578, -0.006041056010872126, -0.042930442839860916, 0.037641122937202454, -0.05256715044379234, -0.013051217421889305, -0.0030952487140893936, 0.09629461914300919, 0.0003809624176938087, 0.04840090498328209, 0.04742274433374405, 0.032895226031541824, 0.02278755232691765, 0.00681543443351984, 0.04564756155014038, -0.019128501415252686, -0.00005207807043916546, -0.024164224043488503, -0.03034113720059395, 0.018838675692677498, 0.0029933569021523, 0.012208911590278149, -0.004220588132739067, 0.024997474625706673, -0.00458966288715601, -0.03501457720994949, 0.02887389436364174, 0.0702102929353714, -0.023023035377264023, 0.007838881574571133, -0.050647057592868805, 0.07173188030719757, -0.034199442714452744, -0.03680787608027458, -0.06071850284934044, -0.047205373644828796, 0.045357733964920044, -0.08339736610651016, 0.036191996186971664, -0.028511611744761467, 0.03164535388350487, -0.015079997479915619, -0.02349400334060192, 0.020142892375588417, -0.022044872865080833, -0.01610344462096691, 0.020106663927435875, 0.006679578684270382, 0.04101034998893738, 0.012498737312853336, 0.030793989077210426, 0.029598457738757133, 0.02508804388344288, -0.07336214929819107, 0.028185557574033737, -0.018331481143832207, -0.015541907399892807, -0.003803963540121913, 0.011375661939382553, -0.007571698632091284, 0.004372293595224619, 0.041082803159952164, -0.03202575072646141, 0.005284791812300682, 0.0018329216400161386, 0.018304308876395226, -0.041626229882240295, -0.019454555585980415, 0.02132030948996544, 0.05166144669055939, 0.043582551181316376, 0.009043470025062561, -0.002730702282860875, -0.03555800020694733, 0.060501132160425186, 0.049994949251413345, -0.01920095831155777, -0.02575826644897461, 0.05148030444979668, 0.029308632016181946, 0.009872190654277802, 0.023566458374261856, -0.04101034998893738, 0.02496124617755413, -0.05477707460522652, 0.03660861775279045, 0.13694268465042114, -0.02579449489712715, -0.009700106456875801, 0.059486743062734604, -0.0270805973559618, 0.028330471366643906, 0.031228728592395782, 0.043691236525774, -0.00968199223279953, -0.10151147842407227, -0.017471060156822205, -0.009165740571916103, 0.011131121776998043, -0.02066820114850998, -0.05148030444979668, 0.016701210290193558, -0.028765209019184113, 0.007123374380171299, -0.01836770959198475, -0.0020446302369236946, 0.021845618262887, 0.011583974584937096, 0.07260135561227798, -0.076731376349926, -0.035177603363990784, 0.03606519475579262, -0.01443694718182087, -0.007218473590910435, -0.008414004929363728, -0.005515746772289276, -0.010877523571252823, 0.01854884997010231, 0.04959643632173538, 0.08477403968572617, -0.02430913783609867, -0.022062987089157104, 0.013902580365538597, 0.0027850447222590446, -0.020161006599664688, -0.0009543872438371181, -0.035376861691474915, -0.020468946546316147, -0.053762681782245636, -0.03332996368408203, 0.027153052389621735, -0.027026254683732986, -0.00830079149454832, 0.002594846533611417, -0.033384308218955994, -0.0030318493954837322, -0.026700200513005257, 0.031120043247938156, 0.015867961570620537, -0.06934081763029099, -0.021374652162194252, 0.07082617282867432, -0.020758772268891335, 0.08173087239265442, -0.10172884911298752, 0.04227833449840546, 0.012779505923390388, -0.014645258896052837, -0.012290424667298794, 0.04499545320868492, -0.03296768292784691, -0.010225416161119938, -0.003785849316045642, -0.029978854581713676, 0.0037767922040075064, -0.0095280222594738, 0.05593637749552727, -0.04115526005625725, 0.05119048058986664, -0.021936189383268356, -0.017199348658323288, 0.020776886492967606, -0.05897954851388931, 0.016791781410574913, 0.035539887845516205, -0.007299987133592367, 0.022570183500647545, -0.004682498052716255, -0.008898557163774967, 0.023023035377264023, 0.015206797048449516, 0.06618896126747131, -0.021102940663695335, -0.009537079371511936, 0.008142293430864811, -0.02546844072639942, 0.004646269604563713, -0.0015215853927657008, 0.008975542150437832, -0.02295057848095894, -0.02017912082374096, -0.013603697530925274, -0.02443593554198742, -0.049994949251413345, -0.04648080840706825, 0.055429182946681976, -0.029254289343953133, -0.016447613015770912, 0.09238196909427643, 0.02478010393679142, 0.013576526194810867, -0.007589812856167555, 0.017317090183496475, 0.007775482255965471, 0.00627201097086072, -0.06934081763029099, 0.07970209419727325, -0.014536574482917786, -0.019400212913751602, -0.02526918612420559, 0.030649077147245407, 0.001006465288810432, 0.055248040705919266, 0.046227212995290756, 0.02559524029493332, -0.0008943842840380967, -0.010488070547580719, 0.010315986350178719, -0.05796515569090843, -0.05202372744679451, -0.019943635910749435, 0.03774980828166008, -0.026718314737081528, -0.014500346034765244, -0.01887490414083004, -0.022081101313233376, -0.04314781352877617, 0.05945051461458206, 0.026211120188236237, 0.028185557574033737, 0.03202575072646141, 0.03689844533801079, -0.03474286571145058, 0.007182245142757893, 0.027026254683732986, 0.030993245542049408, 0.011583974584937096, 0.055392954498529434, 0.04053938016295433, 0.05003117769956589, 0.0172536913305521, -0.02362080104649067, -0.02066820114850998, -0.06792791932821274, 0.02985205501317978, -0.017117835581302643, 0.058001384139060974, -0.003758678212761879, 0.007988323457539082, 0.05517558380961418, -0.01936398446559906, -0.024526506662368774, -0.00066625967156142, 0.02526918612420559, -0.03977859020233154, -0.026229234412312508, -0.025323528796434402, 0.0823105201125145, 0.008884971961379051, 0.0174257755279541, -0.017199348658323288, 0.008549860678613186, 0.012498737312853336, -0.018340537324547768, 0.04253193363547325, 0.010116731747984886, -0.0057784016244113445, 0.03677164763212204, -0.03140987083315849, -0.030304908752441406, 0.025559011846780777, 0.026066206395626068, 0.01872999221086502, 0.00047606148291379213, -0.01437354739755392, 0.012697991915047169, -0.015369823202490807, 0.022896237671375275, -0.037858493626117706, -0.01477205753326416, -0.04988626390695572, 0.06941327452659607, -0.006389752961695194, 0.06332693248987198, -0.028149329125881195, 0.04187982529401779, -0.03528628870844841, 0.03550365939736366, 0.010388443246483803, 0.011212634854018688, -0.06220385804772377, -0.03624633699655533, -0.01755257323384285, 0.02363891527056694, 0.0038333989214152098, 0.024671420454978943, 0.015668706968426704, -0.04245947673916817, -0.019400212913751602, -0.012199854478240013, 0.051154252141714096, 0.008504575118422508, 0.007635097950696945, -0.058508578687906265, 0.03927139565348625, 0.03774980828166008, 0.03566668555140495, -0.017380490899086, 0.018621306866407394, -0.025142386555671692, 0.027334194630384445, -0.009890304878354073, -0.00036935805110260844, -0.016384214162826538, -0.10143902152776718, -0.018838675692677498, -0.028276128694415092, -0.040611837059259415, 0.012063998728990555, 0.030993245542049408, 0.028946349397301674, 0.015116225928068161, -0.09600479155778885, 0.0036341436207294464, -0.05988525226712227, 0.0007953227031975985, 0.0016291378997266293, 0.041300173848867416, -0.022769438102841377, -0.026700200513005257, 0.010651097632944584, 0.010995266027748585, 0.03084833174943924, -0.02478010393679142, -0.02923617511987686, 0.029127491638064384, 0.0439448356628418, 0.009582364931702614, 0.004329272545874119, -0.018838675692677498, -0.02936297468841076, -0.02968902885913849, -0.015550964511930943, -0.021899960935115814, 0.005067422520369291, 0.10027971863746643, -0.0052440352737903595, -0.029471660032868385, -0.05832744017243385, 0.02561335451900959, -0.04166245833039284, -0.008391362614929676, 0.0041277529671788216, 0.05709568038582802, -0.08419439196586609, 0.0016223450656980276, -0.08267280459403992, 0.037858493626117706, -0.0008089083130471408, 0.09107775241136551, -0.05140784755349159, -0.013232358731329441, -0.02246149815618992, -0.06477606296539307, 0.007929452694952488, 0.07271004468202591, -0.053436629474163055, 0.034760981798172, 0.030649077147245407, -0.026790771633386612, 0.0354493148624897, 0.07343460619449615, -0.015297367237508297, 0.0033080896828323603, 0.0262654609978199, -0.10491693764925003, -0.004111903253942728, 0.021863732486963272, -0.04727783054113388, 0.017615973949432373, 0.010234473273158073, 0.02854784019291401, -0.00787058100104332, -0.009826905094087124, -0.007354329340159893, 0.11332188546657562, 0.01934587024152279, 0.02036026120185852, -0.034561723470687866, -0.017434831708669662, 0.015550964511930943, -0.04919792711734772, -0.02608432061970234, -0.06582668423652649, -0.020414603874087334, -0.09325144439935684, -0.03807586431503296, -0.027334194630384445, -0.021936189383268356, -0.0354493148624897, -0.025504669174551964, 0.013331986032426357, 0.011049607768654823, 0.04582870379090309, -0.052458468824625015, 0.06358052790164948, -0.051118023693561554, -0.035068921744823456, 0.028674637898802757, -0.04546641930937767, -0.0077392542734742165, 0.00500402320176363, 0.03666296228766441, -0.04090166464447975, -0.02793196029961109, -0.02117539569735527, -0.009718220680952072, -0.03200763463973999, 0.005207807291299105, 0.032569173723459244, 0.01967192441225052, 0.009070641361176968, -0.015143397264182568, -0.03566668555140495, -0.074159175157547, 0.003971518948674202, 0.031898949295282364, -0.0239468552172184, -0.0013438406167551875, 0.01010767463594675, -0.0002221808972535655, 0.0354493148624897, 0.05242224037647247, 0.014599974267184734, -0.041771139949560165, -0.03934384882450104, 0.006022942252457142, 0.00991747621446848, -0.008318905718624592, 0.01018013060092926, -0.06296464800834656, -0.03034113720059395, 0.028022531419992447, -0.006783734541386366, -0.05202372744679451, -0.006896947976201773, -0.0525309219956398, -0.011593031696975231, -0.00919743999838829, -0.0064169238321483135, 0.028982577845454216, 0.024164224043488503, -0.01033410057425499, -0.019780609756708145, -0.009700106456875801, -0.0039624618366360664, 0.03200763463973999, 0.05119048058986664, 0.006457680836319923, -0.0030975129920989275, 0.01577739045023918, -0.00836419127881527, 0.028185557574033737, -0.024091769009828568, 0.0009464623290114105, 0.038836654275655746, -0.015695877373218536, 0.037351299077272415, 0.03363790363073349, -0.012408166192471981, 0.005117236636579037, 0.06329070776700974, -0.027279851958155632, -0.016456671059131622, 0.019164729863405228, -0.004256816115230322, -0.0374237559735775, -0.029417317360639572, -0.05042968690395355, -0.04847336187958717, -0.01123074907809496, 0.017806172370910645, 0.03793095052242279, 0.05513935536146164, 0.03858305886387825, -0.06216762959957123, -0.005733116529881954, 0.0010098617058247328, 0.0011259051971137524, 0.023439660668373108, -0.021592020988464355, 0.036028966307640076, 0.02249772660434246, -0.0018634892767295241, -0.055900149047374725, -0.009899361990392208, -0.009084226563572884, -0.010234473273158073, 0.009899361990392208, -0.018422052264213562, 0.05329171568155289, -0.005538389552384615, 0.07082617282867432, -0.06144306808710098, 0.04430711641907692, 0.04615475609898567, 0.021302195265889168, -0.029471660032868385, -0.0051353503949940205, 0.024580849334597588, 0.033402420580387115, 0.013821067288517952, 0.013884466141462326, -0.0567333959043026, 0.0021136903669685125, -0.04876318946480751, 0.023258518427610397, -0.002194071654230356, -0.005642545875161886, -0.004152660258114338, -0.002692209789529443, -0.07549961656332016, 0.021048597991466522, -0.00903894193470478, -0.014138064347207546, -0.004523999523371458, 0.0072365873493254185, -0.003856041468679905, 0.030594734475016594, -0.0262654609978199, 0.05724059417843819, 0.027968188747763634, -0.028801437467336655, -0.03970613330602646, 0.001819336088374257, 0.047531429678201675, -0.004179831128567457, 0.012987817637622356, 0.01418334897607565, -0.023566458374261856, 0.027805160731077194, -0.021284081041812897, -0.018449222669005394, 0.024997474625706673, -0.04590115696191788, -0.09607724845409393, -0.049487750977277756, 0.025975635275244713, -0.01838582381606102, -0.004109639208763838, 0.0027216451708227396, 0.0739055722951889, 0.03461606800556183, 0.12049507349729538, -0.018838675692677498, 0.020795000717043877, -0.007091674488037825, 0.0525309219956398, -0.03445304185152054, -0.04140885919332504, 0.021229738369584084, -0.02479821816086769, 0.004963266663253307, -0.015460394322872162, -0.01142094749957323, 0.00968199223279953, -0.036536164581775665, 0.03756866604089737, 0.010315986350178719, -0.034869663417339325, -0.03774980828166008, -0.0007421125192195177, -0.005511218216270208, 0.03351110592484474, -0.020487060770392418, 0.01610344462096691, 0.00275108078494668, -0.033710360527038574, -0.0012249668361619115, 0.009029884822666645, 0.03300391137599945, 0.00029633555095642805, 0.0023548344615846872, 0.03745998442173004, 0.053074344992637634, -0.039452534168958664, -0.09455566108226776, 0.010098617523908615, -0.039452534168958664, -0.012761391699314117, -0.005855386611074209, -0.017199348658323288, 0.06285596638917923, 0.0509006530046463, 0.0348515510559082, 0.057711560279130936, -0.0012883661547675729, -0.0041277529671788216, 0.01722652092576027, 0.03427189961075783, 0.011683601886034012, -0.01836770959198475, -0.06582668423652649, 0.006086341571062803, -0.04510413855314255, 0.05839989706873894, -0.02496124617755413, -0.001374408253468573, -0.039959728717803955, -0.0008247581426985562, -0.04318404197692871, -0.03320316597819328, 0.03941630572080612, 0.020106663927435875, -0.005628960207104683, 0.03637313470244408, -0.03139175474643707, -0.024001197889447212, -0.02579449489712715, -0.020595744252204895, -0.017308034002780914, -0.03977859020233154, -0.04666195064783096, -0.0581100694835186, 0.023892512544989586, 0.011765115894377232, -0.006222197320312262, 0.03992350026965141, -0.02691756933927536, 0.04590115696191788, 0.01999797858297825, -0.04024955630302429, 0.00578745873644948, -0.02168259210884571, -0.024562735110521317, -0.00035888582351617515, 0.05318303033709526, -0.007372443564236164, 0.029815828427672386, -0.0032129904720932245, -0.07455768436193466, 0.06408772617578506, -0.02496124617755413, 0.03148232400417328, 0.06829020380973816, -0.03265974298119545, 0.02034214697778225, 0.02135653793811798, -0.007943037897348404, -0.016474785283207893, 0.03923516720533371, 0.06267482787370682, 0.010198244825005531, -0.051444076001644135, 0.011810400523245335, 0.022860009223222733, -0.016021931543946266, -0.021899960935115814, -0.012254196219146252, -0.0413726307451725, 0.011448118835687637, 0.024345366284251213, 0.07962963730096817, -0.029906397685408592, 0.027678363025188446 ]
18,509
fs.base
writefile
Set a file to the contents of a file object. Arguments: path (str): A path on the filesystem. file (io.IOBase): A file object open for reading. encoding (str, optional): Encoding of destination file, defaults to `None` for binary. errors (str, optional): How encoding errors should be treated (same as `io.open`). newline (str): Newline parameter (same as `io.open`). This method is similar to `~FS.upload`, in that it copies data from a file-like object to a resource on the filesystem, but unlike ``upload``, this method also supports creating files in text-mode (if the ``encoding`` argument is supplied). Note that the file object ``file`` will *not* be closed by this method. Take care to close it after this method completes (ideally with a context manager). Example: >>> with open('myfile.txt') as read_file: ... my_fs.writefile('myfile.txt', read_file)
def writefile( self, path, # type: Text file, # type: IO encoding=None, # type: Optional[Text] errors=None, # type: Optional[Text] newline="", # type: Text ): # type: (...) -> None """Set a file to the contents of a file object. Arguments: path (str): A path on the filesystem. file (io.IOBase): A file object open for reading. encoding (str, optional): Encoding of destination file, defaults to `None` for binary. errors (str, optional): How encoding errors should be treated (same as `io.open`). newline (str): Newline parameter (same as `io.open`). This method is similar to `~FS.upload`, in that it copies data from a file-like object to a resource on the filesystem, but unlike ``upload``, this method also supports creating files in text-mode (if the ``encoding`` argument is supplied). Note that the file object ``file`` will *not* be closed by this method. Take care to close it after this method completes (ideally with a context manager). Example: >>> with open('myfile.txt') as read_file: ... my_fs.writefile('myfile.txt', read_file) """ mode = "wb" if encoding is None else "wt" with self._lock: with self.open( path, mode=mode, encoding=encoding, errors=errors, newline=newline ) as dst_file: tools.copy_file_data(file, dst_file)
(self, path, file, encoding=None, errors=None, newline='')
[ -0.04141627997159958, -0.020840277895331383, -0.025389650836586952, 0.07622558623552322, -0.0046697137877345085, -0.003499335842207074, 0.0017602861626073718, 0.0006955018034204841, 0.026239119470119476, -0.05100582540035248, 0.05119459703564644, -0.01925460435450077, 0.005346928257495165, -0.0007014009170234203, 0.014941195957362652, 0.037414342164993286, 0.0014216789277270436, -0.0249177236109972, -0.012119075283408165, 0.029183940961956978, 0.012449423782527447, -0.004374759737402201, 0.013657555915415287, 0.002219234826043248, 0.015120528638362885, 0.001296618371270597, -0.010052036494016647, 0.009948212653398514, -0.011269607581198215, -0.0012942587491124868, 0.0030344880651682615, -0.042171359062194824, 0.011533886194229126, -0.025219757109880447, -0.013006296940147877, -0.02486109361052513, -0.025333018973469734, 0.004587126430124044, -0.046852871775627136, -0.026390135288238525, -0.024502428248524666, 0.03486593812704086, 0.02689981646835804, -0.004058568738400936, 0.03237416595220566, -0.010325754061341286, -0.0025012108962982893, 0.0417938195168972, -0.013600924983620644, 0.018990326672792435, -0.014488146640360355, 0.026692168787121773, -0.010637225583195686, -0.02448355220258236, -0.01804647222161293, 0.0433417372405529, -0.013610363006591797, 0.013213944621384144, -0.040321409702301025, -0.002741893520578742, 0.02593708597123623, -0.009608425199985504, 0.05776381492614746, -0.042020343244075775, -0.004030253272503614, 0.032827213406562805, -0.07078898698091507, -0.04670185595750809, 0.005205350462347269, 0.028523243963718414, 0.031524695456027985, 0.015856733545660973, 0.03178897500038147, -0.005724469665437937, 0.05704648792743683, 0.08268153667449951, -0.047683462500572205, 0.04609778895974159, 0.06576769053936005, -0.015063896775245667, -0.007178003434091806, -0.015611331909894943, -0.010561717674136162, -0.012439984828233719, -0.001239987090229988, -0.06089740991592407, 0.02757938951253891, -0.025672806426882744, -0.03614957630634308, -0.029618114233016968, 0.001465332112275064, -0.03241191804409027, -0.009141217917203903, -0.019990811124444008, 0.006026502698659897, -0.05863216146826744, -0.030448704957962036, -0.0125343706458807, -0.09370574355125427, 0.050439514219760895, -0.061274949461221695, 0.0005978720146231353, 0.0331292487680912, -0.001501906430348754, 0.04258665442466736, -0.03422411531209946, -0.009778318926692009, -0.0016080898931249976, -0.041000984609127045, -0.039755094796419144, -0.029788006097078323, -0.013166751712560654, 0.0017992201028391719, -0.0025861577596515417, 0.0010376486461609602, -0.016753394156694412, -0.0368291512131691, -0.01714981347322464, 0.01819748990237713, -0.023577453568577766, 0.03888675197958946, 0.005186473485082388, 0.02593708597123623, 0.021689746528863907, 0.037659741938114166, -0.041152000427246094, -0.01405397430062294, 0.01165658701211214, 0.011071397922933102, -0.005578172393143177, -0.04847630113363266, -0.029146187007427216, 0.06482383608818054, 0.005653680767863989, 0.011448939330875874, -0.009108182974159718, -0.0028999890200793743, 0.011439500376582146, -0.011533886194229126, 0.0662584975361824, 0.05244048312306404, -0.08675898611545563, -0.021519852802157402, -0.04190708324313164, 0.04692837968468666, 0.003404950490221381, -0.03762198984622955, -0.04945790767669678, -0.03750872611999512, 0.06724010407924652, -0.035583265125751495, 0.01736689917743206, -0.022746862843632698, 0.023067772388458252, 0.04141627997159958, -0.02287900075316429, 0.04126526042819023, -0.012109636329114437, -0.040623441338539124, 0.013638678938150406, -0.03409197926521301, 0.03439401090145111, 0.021746378391981125, 0.03261956572532654, -0.004570608958601952, 0.03941531106829643, -0.03941531106829643, -0.006460675038397312, 0.029334956780076027, -0.04847630113363266, -0.019056396558880806, -0.017565108835697174, -0.004452627617865801, 0.019726531580090523, -0.026635536924004555, -0.01395958848297596, 0.03237416595220566, -0.013789694756269455, -0.008961886167526245, 0.016413606703281403, 0.03135480359196663, -0.07377156615257263, 0.008985482156276703, -0.016734516248106956, 0.037999529391527176, -0.002878752304241061, -0.04428559169173241, 0.04538046196103096, -0.0007232275092974305, 0.052176203578710556, 0.03192111477255821, -0.023766223341226578, 0.021444344893097878, -0.012355037964880466, -0.013789694756269455, -0.07652761787176132, 0.04092547297477722, -0.056782208383083344, 0.01891481876373291, 0.08064281940460205, 0.014195552095770836, 0.014865688048303127, 0.04292644187808037, 0.023294296115636826, -0.004072726704180241, 0.03552663326263428, 0.052855778485536575, 0.0032043815590441227, -0.05636691302061081, -0.001464152242988348, 0.0368291512131691, -0.01318562962114811, -0.004200146533548832, -0.00637572817504406, 0.04662634804844856, -0.018150296062231064, -0.023822855204343796, 0.010533401742577553, -0.03847145661711693, 0.08872219920158386, 0.005738627631217241, 0.06206778436899185, -0.073054239153862, 0.022312689572572708, 0.005804697051644325, -0.03786738961935043, -0.003657431108877063, -0.019518883898854256, 0.024162642657756805, -0.03516796976327896, 0.01521491352468729, 0.05236497521400452, 0.05070379376411438, 0.0033318018540740013, -0.029278326779603958, -0.012071882374584675, -0.014469269663095474, -0.023879485204815865, -0.06550341099500656, -0.006479552015662193, -0.037074554711580276, -0.044587623327970505, 0.005908520892262459, 0.0931771844625473, 0.0009226165129803121, -0.04730592295527458, -0.02346418984234333, -0.009108182974159718, 0.019320674240589142, -0.013789694756269455, 0.05553632229566574, -0.014601408503949642, -0.07513071596622467, 0.008334224112331867, 0.01671564020216465, 0.023483067750930786, -0.014384322799742222, -0.06116168573498726, -0.012666509486734867, 0.028995169326663017, -0.010420138947665691, -0.030297687277197838, 0.02138771302998066, -0.021689746528863907, 0.008249277248978615, -0.04353050887584686, -0.06270960718393326, -0.022727984935045242, -0.025389650836586952, -0.017291391268372536, 0.04911812022328377, 0.08811813592910767, -0.009787757880985737, -0.013874641619622707, 0.017357461154460907, -0.044096820056438446, -0.010014282539486885, 0.0034427044447511435, 0.04001937434077263, 0.01275145635008812, 0.03150581941008568, 0.037905145436525345, 0.031562451273202896, -0.010174737311899662, 0.032204270362854004, 0.03314812481403351, -0.027843669056892395, 0.005814135540276766, -0.051081333309412, -0.013006296940147877, 0.001409880700521171, 0.02284124679863453, -0.0309583842754364, 0.08034078776836395, 0.027994686737656593, 0.032921601086854935, -0.093479223549366, -0.06652276962995529, 0.04470088705420494, -0.11439500749111176, 0.011835918761789799, 0.05761279910802841, -0.0020764770451933146, 0.028655383735895157, -0.02588045410811901, -0.050968073308467865, 0.0007179183303378522, 0.03860359638929367, -0.04677736386656761, 0.05228946730494499, -0.0020021486561745405, -0.08366315066814423, -0.04451211541891098, 0.005129842087626457, 0.031373679637908936, -0.02065150812268257, 0.021784132346510887, -0.02355857565999031, 0.0025507633108645678, -0.05089256539940834, -0.02138771302998066, -0.05999130755662918, 0.009976528584957123, 0.012921350076794624, 0.0402459017932415, -0.043568264693021774, 0.042737673968076706, 0.01630978286266327, -0.014941195957362652, -0.033506788313388824, 0.004679152276366949, 0.08011426031589508, 0.009995405562222004, 0.0017732641426846385, -0.07229915261268616, -0.03356342017650604, 0.019990811124444008, 0.0020576000679284334, 0.07354503870010376, 0.009344146586954594, 0.02486109361052513, 0.055800601840019226, 0.004816011060029268, -0.06153922900557518, -0.035885296761989594, 0.006536183413118124, -0.05413942039012909, -0.01129792258143425, -0.01156220119446516, 0.06165248900651932, 0.0002518908295314759, 0.002569640288129449, 0.022482583299279213, -0.04972218722105026, -0.04609778895974159, -0.009108182974159718, 0.009514040313661098, -0.0155547009781003, -0.004337005317211151, -0.011014766991138458, 0.041000984609127045, 0.017263075336813927, 0.0010234907967969775, -0.024842215701937675, 0.034998077899217606, -0.007050583604723215, 0.01258156355470419, 0.09861378371715546, -0.060406602919101715, -0.02433253452181816, 0.050968073308467865, -0.07041145116090775, 0.013610363006591797, 0.031562451273202896, 0.023294296115636826, 0.02975025214254856, 0.038244932889938354, -0.009226164780557156, -0.02878752164542675, 0.006753269582986832, 0.05172315612435341, -0.03735771030187607, -0.021803008392453194, -0.0482875294983387, 0.014591970480978489, -0.005181754007935524, 0.030071163550019264, -0.003775412682443857, 0.015611331909894943, -0.0006282522808760405, 0.0022829449735581875, 0.03139255568385124, -0.016772272065281868, -0.0021154109854251146, -0.019481129944324493, 0.021784132346510887, 0.0578770786523819, 0.007362055126577616, 0.03341240435838699, 0.025899332016706467, -0.01705542765557766, -0.0188865028321743, 0.021255573257803917, 0.05549856647849083, -0.009098744951188564, 0.03178897500038147, -0.007178003434091806, 0.050817057490348816, 0.07943468540906906, 0.03820717707276344, -0.005917959380894899, 0.008645695634186268, -0.01194918155670166, -0.006838216446340084, 0.005210069473832846, 0.009481005370616913, -0.031033892184495926, -0.07260118424892426, 0.04345500096678734, -0.03382769972085953, -0.05444145202636719, 0.02516312710940838, -0.00949044432491064, 0.04587126523256302, 0.019613269716501236, -0.09196905791759491, -0.005054333712905645, -0.03363892808556557, 0.0012093118857592344, 0.0021850201301276684, 0.06539014726877213, -0.012930789031088352, -0.007966120727360249, 0.04677736386656761, 0.004034972283989191, -0.0017319705802947283, -0.0501374825835228, -0.07158182561397552, 0.027201849967241287, 0.0439458042383194, 0.00637572817504406, -0.015394245274364948, 0.015620770864188671, -0.028806399554014206, -0.0743001252412796, -0.03903776779770851, -0.02278461679816246, -0.0009639100753702223, 0.04447436332702637, 0.017933210358023643, -0.012940227054059505, -0.011769849807024002, 0.034186363220214844, 0.003961823880672455, -0.03482818230986595, -0.0071119340136647224, 0.0017307908274233341, -0.0987647995352745, 0.033015985041856766, 0.0014948274474591017, 0.04118975251913071, 0.06270960718393326, 0.09227108955383301, -0.045116182416677475, 0.036545995622873306, -0.005238385405391455, -0.05134561285376549, 0.003006172366440296, 0.007541386876255274, -0.03356342017650604, -0.015620770864188671, 0.04779672622680664, -0.06263409554958344, 0.005559295415878296, 0.09785869717597961, -0.025955962017178535, -0.037659741938114166, -0.0331292487680912, -0.051081333309412, 0.018829870969057083, 0.04454987123608589, 0.003039207309484482, -0.0051015266217291355, 0.01281752623617649, 0.028579873964190483, 0.020538246259093285, 0.047532446682453156, -0.021595360711216927, 0.008867500349879265, 0.030561966821551323, 0.02618248760700226, -0.05055277794599533, -0.02148209884762764, -0.04881608858704567, -0.08147341012954712, 0.017074303701519966, -0.0352812334895134, 0.007975559681653976, -0.057310767471790314, 0.000571326119825244, -0.007149687968194485, 0.007697122637182474, -0.0006636467878706753, 0.0225958451628685, 0.014591970480978489, 0.040132638067007065, -0.022709107026457787, -0.033072616904973984, 0.04243563860654831, -0.0362250842154026, -0.012109636329114437, 0.010712733492255211, -0.042397886514663696, 0.021312205120921135, 0.007588579785078764, 0.02287900075316429, -0.0863814428448677, -0.02791917696595192, -0.00023817546025384218, -0.01810310408473015, -0.05568733811378479, 0.021010171622037888, 0.05950050428509712, -0.024445798248052597, 0.008456924930214882, -0.01306292787194252, 0.00713553000241518, -0.04432334750890732, -0.0021661431528627872, 0.010514524765312672, 0.017791632562875748, -0.05055277794599533, -0.03192111477255821, 0.02907067909836769, 0.03520572558045387, 0.06263409554958344, -0.03463941067457199, 0.015063896775245667, -0.03594192862510681, 0.0181125421077013, 0.015734033659100533, 0.03696129098534584, -0.03845258057117462, -0.031524695456027985, -0.019273482263088226, -0.0758480429649353, -0.013997343368828297, -0.06992064416408539, 0.05202518776059151, -0.025465158745646477, -0.04862731695175171, -0.035337865352630615, 0.036527119576931, 0.07101551443338394, 0.029485974460840225, 0.036074068397283554, 0.00474522216245532, 0.04817426577210426, 0.04681511968374252, 0.022765738889575005, -0.012222899124026299, 0.010269123129546642, 0.0029967338778078556, -0.0182635597884655, 0.0004710417415481061, 0.058896441012620926, 0.04417232796549797, 0.027692653238773346, 0.008763676509261131, -0.0678064152598381, 0.0591229647397995, 0.06742887198925018, -0.040472425520420074, -0.019877547398209572, 0.03363892808556557, -0.011807603761553764, 0.02689981646835804, 0.06497485190629959, 0.00023655321274418384, -0.04617329686880112, -0.05157214030623436, -0.014148359186947346, -0.041680555790662766, -0.00446442561224103, -0.010882627218961716, 0.05228946730494499, 0.01944337598979473, 0.03299710899591446, -0.07441338896751404, -0.0066400072537362576, 0.0036007999442517757, 0.014837372116744518, 0.05897194892168045, -0.054403699934482574, -0.0011933844070881605, 0.000676624767947942, -0.01807478815317154, -0.0640687569975853, 0.026767676696181297, 0.03014667145907879, -0.03294047713279724, -0.02516312710940838, -0.025521790608763695, 0.054403699934482574, -0.0005710311816073954, 0.08502229303121567, -0.04639982432126999, 0.034998077899217606, -0.0048891594633460045, 0.006465394515544176, -0.038395948708057404, 0.0071119340136647224, 0.034771550446748734, -0.03322363272309303, -0.002078836550936103, 0.0171781275421381, 0.0016387650975957513, -0.013921834528446198, -0.02374734729528427, 0.027994686737656593, -0.006168080493807793, -0.00608313363045454, 0.00613032653927803, 0.013827449642121792, -0.04360601678490639, -0.0015455596148967743, -0.012364476919174194, -0.011713217943906784, -0.04809875786304474, -0.031807851046323776, -0.052704762667417526, -0.04945790767669678, -0.045644741505384445, 0.05636691302061081, 0.03337464854121208, -0.023634083569049835, -0.06520137935876846, -0.028863031417131424, 0.037036798894405365, 0.022123919799923897, 0.011156344786286354, 0.00718272291123867, 0.04541821405291557, -0.012666509486734867, -0.050288498401641846, 0.004664994310587645, 0.017933210358023643, -0.05236497521400452, -0.01224177610129118, -0.05549856647849083, -0.010052036494016647, 0.014705232344567776, -0.0009167173993773758, -0.0315813273191452, 0.12541921436786652, -0.05659343674778938, 0.08124688267707825, -0.012666509486734867, 0.0021142312325537205, 0.04345500096678734, 0.042020343244075775, 0.010457893833518028, 0.023162158206105232, 0.0021708623971790075, -0.004346443805843592, 0.010929820127785206, 0.005615926347672939, -0.019122466444969177, 0.010099229402840137, 0.02433253452181816, -0.004469145089387894, 0.021878516301512718, -0.02017958089709282, -0.008471082895994186, 0.03178897500038147, 0.004176550544798374, 0.027107464149594307, -0.036602627485990524, 0.031713467091321945, 0.0050779301673173904, 0.03328026458621025, -0.004115200135856867, -0.024351412430405617, -0.04938239976763725, -0.007697122637182474, 0.05965152382850647, -0.015903925523161888, 0.06848599016666412, -0.05225171148777008, -0.030203301459550858, -0.005988748744130135, 0.01950000785291195, -0.06085965409874916, -0.03246854990720749, 0.02776816114783287, 0.03395983949303627, 0.06467282027006149, -0.00874479953199625, 0.04881608858704567, 0.001612809137441218, -0.021803008392453194, -0.0018829870969057083, 0.07214813679456711, 0.005677276756614447, -0.014223868027329445, -0.031241541728377342, 0.013487662188708782, -0.042737673968076706, 0.07686740159988403, -0.04764571040868759, 0.009169533848762512, -0.00748475594446063, 0.058896441012620926, -0.00955179426819086, 0.06395549327135086, 0.01074104942381382, -0.018999764695763588, -0.012562685646116734, -0.024559060111641884, -0.019367868080735207, -0.026295749470591545, -0.011817041784524918, 0.030071163550019264, -0.06150147318840027, -0.012723141349852085, -0.05315781384706497, -0.07441338896751404, -0.010542839765548706, 0.030694106593728065, -0.009929335676133633, 0.012619317509233952, 0.016979919746518135, 0.020255088806152344, 0.009910458698868752, -0.019462252035737038, 0.011411185376346111, -0.010712733492255211, 0.02714521810412407, 0.00477589713409543, 0.059727031737565994, 0.0004955229233019054, 0.023501943796873093, -0.0037117027677595615, -0.08351212739944458, 0.07860409468412399, 0.00834366213530302, 0.032581813633441925, 0.04723041504621506, -0.05957601219415665, 0.030882876366376877, 0.03571540489792824, -0.025861578062176704, -0.0028032439295202494, 0.07161957770586014, 0.04968443140387535, -0.01374250277876854, 0.005762223619967699, 0.004679152276366949, 0.03241191804409027, 0.005738627631217241, -0.06837272644042969, 0.016300344839692116, -0.010099229402840137, 0.03082624450325966, 0.031524695456027985, 0.07754697650671005, -0.02791917696595192, 0.052704762667417526 ]
18,510
fs.base
writetext
Create or replace a file with text. Arguments: path (str): Destination path on the filesystem. contents (str): Text to be written. encoding (str, optional): Encoding of destination file (defaults to ``'utf-8'``). errors (str, optional): How encoding errors should be treated (same as `io.open`). newline (str): Newline parameter (same as `io.open`). Raises: TypeError: if ``contents`` is not a unicode string.
def writetext( self, path, # type: Text contents, # type: Text encoding="utf-8", # type: Text errors=None, # type: Optional[Text] newline="", # type: Text ): # type: (...) -> None """Create or replace a file with text. Arguments: path (str): Destination path on the filesystem. contents (str): Text to be written. encoding (str, optional): Encoding of destination file (defaults to ``'utf-8'``). errors (str, optional): How encoding errors should be treated (same as `io.open`). newline (str): Newline parameter (same as `io.open`). Raises: TypeError: if ``contents`` is not a unicode string. """ if not isinstance(contents, six.text_type): raise TypeError("contents must be unicode") with closing( self.open( path, mode="wt", encoding=encoding, errors=errors, newline=newline ) ) as write_file: write_file.write(contents)
(self, path, contents, encoding='utf-8', errors=None, newline='')
[ 0.013156802393496037, -0.04539274051785469, 0.0016457084566354752, 0.02636679820716381, 0.026668235659599304, -0.01035521924495697, -0.0018451883224770427, 0.016091370955109596, 0.061705756932497025, 0.018405336886644363, 0.06128019839525223, -0.004470564424991608, 0.022075766697525978, 0.000005887425231776433, -0.004045007284730673, 0.037768177688121796, -0.05298183858394623, 0.012881963513791561, 0.0006887594936415553, 0.03688159957528114, -0.011649621650576591, -0.006995092146098614, 0.012793305329978466, -0.01849399507045746, 0.024168087169528008, -0.02033807523548603, -0.022536786273121834, 0.0007774171535857022, -0.007464977912604809, -0.04103078320622444, 0.011162003502249718, -0.05010933056473732, 0.011569829657673836, -0.008409182541072369, -0.028920140117406845, -0.0016412755940109491, -0.013475969433784485, -0.03218274191021919, 0.018742237240076065, -0.0768839567899704, -0.004410720430314541, 0.06472011655569077, 0.021561551839113235, -0.00304095889441669, 0.001547076739370823, 0.0020756982266902924, -0.010372950695455074, 0.001932737766765058, -0.028299536556005478, 0.004809679929167032, -0.00011573985102586448, 0.022270813584327698, -0.00940658152103424, -0.01811276748776436, -0.06571308523416519, 0.017465565353631973, -0.0013520298525691032, 0.026118557900190353, -0.011791473254561424, -0.07525265216827393, 0.061918534338474274, -0.007416216190904379, 0.07496894896030426, 0.029132919386029243, -0.0012600475456565619, 0.04599561169743538, -0.0095041049644351, -0.0635852962732315, 0.04333588108420372, 0.005341626238077879, 0.01883089542388916, -0.02074590139091015, 0.017829062417149544, -0.05649268254637718, 0.0598616749048233, 0.0756072849035263, -0.06589040160179138, 0.053230080753564835, 0.056634534150362015, 0.010310890153050423, -0.00470329076051712, -0.020816827192902565, 0.016898157075047493, 0.008063417859375477, 0.013068144209682941, -0.04071161523461342, 0.022873684763908386, 0.00005444136695587076, 0.046243853867053986, -0.02372479997575283, 0.010231098160147667, -0.05872685834765434, -0.029115187004208565, -0.043442271649837494, 0.007136944681406021, -0.024806423112750053, 0.03904484957456589, -0.10504163801670074, -0.046633947640657425, 0.034913402050733566, -0.019717471674084663, 0.060393624007701874, 0.04525088891386986, -0.01977066695690155, 0.03762632608413696, -0.06996865570545197, -0.01977066695690155, 0.0018296731868758798, 0.0072078704833984375, -0.019096868112683296, -0.002535609994083643, 0.007323125842958689, 0.012190433219075203, -0.01715526357293129, 0.007784145884215832, -0.06184760853648186, -0.04610200226306915, -0.032306864857673645, -0.026881013065576553, -0.022341739386320114, 0.03521483764052391, -0.009273595176637173, 0.002322831656783819, 0.012944023124873638, 0.030994730070233345, -0.019150061532855034, -0.0062193372286856174, 0.006640461273491383, 0.056599073112010956, -0.02712925523519516, -0.04095985367894173, -0.014947687275707722, 0.07390505820512772, 0.0026198348496109247, 0.04897451028227806, -0.007230035029351711, -0.025373833253979683, 0.024824155494570732, 0.010319755412638187, 0.030976999551057816, 0.009468642063438892, -0.09340974688529968, -0.010479339398443699, -0.03218274191021919, 0.024735497310757637, 0.023068731650710106, -0.00924699753522873, -0.08000470697879791, -0.014353681355714798, 0.06745077669620514, -0.017864525318145752, 0.03207635506987572, -0.05149238929152489, 0.022164423018693924, -0.0014473368646577, -0.02278502844274044, 0.02276729606091976, 0.014539862051606178, -0.005753884557634592, 0.05177609249949455, 0.034736085683107376, 0.05940065532922745, 0.026242677122354507, 0.05234350264072418, 0.00006687422137474641, 0.06060640141367912, -0.0561380535364151, -0.007323125842958689, 0.008910098113119602, -0.07113893330097198, 0.013475969433784485, -0.011091077700257301, 0.0031983263324946165, -0.0005579893477261066, -0.03415094316005707, -0.0006555128493346274, 0.0624859444797039, -0.003493113210424781, 0.017988646402955055, 0.0015260205836966634, -0.023689337074756622, -0.041349947452545166, -0.025497952476143837, 0.02615402080118656, 0.046988580375909805, 0.005802646279335022, -0.03971864655613899, 0.048123396933078766, 0.0054613142274320126, 0.0003438256389927119, 0.02427447773516178, -0.02150835655629635, 0.02808675728738308, 0.010798507370054722, -0.026331335306167603, -0.04471893981099129, 0.03294520080089569, -0.054506752640008926, -0.022909147664904594, 0.07326672226190567, 0.031172046437859535, 0.019859323278069496, 0.07159995287656784, 0.027466153725981712, 0.03975411131978035, 0.024185819551348686, 0.03826466202735901, -0.03565812483429909, -0.07447246462106705, 0.00801908876746893, 0.013316385447978973, -0.013050412759184837, 0.0074694110080599785, -0.01084283646196127, 0.020072102546691895, -0.02111826278269291, -0.023263778537511826, 0.021809794008731842, -0.019327377900481224, 0.031207509338855743, -0.005013592541217804, 0.060925569385290146, -0.09603401273488998, 0.03168626129627228, 0.021561551839113235, -0.0036105846520513296, -0.0012389912735670805, 0.029061991721391678, 0.025373833253979683, -0.024753227829933167, 0.03716530650854111, 0.017970914021134377, 0.0033157977741211653, 0.006822209805250168, -0.02771439589560032, -0.034913402050733566, -0.02581712044775486, -0.034753818064928055, -0.02411489374935627, -0.023671604692935944, -0.038548365235328674, -0.018352143466472626, 0.012394345365464687, 0.06837281584739685, 0.008834739215672016, -0.033796314150094986, -0.06447187811136246, 0.0027395228389650583, 0.03071102499961853, -0.06635142117738724, 0.021331042051315308, 0.01923871971666813, -0.07525265216827393, 0.008045685477554798, 0.003987379837781191, 0.0020579667761921883, 0.031367093324661255, -0.09206215292215347, 0.027253376320004463, 0.021189188584685326, 0.010594594292342663, 0.009539567865431309, -0.02636679820716381, -0.0007624561549164355, 0.027749858796596527, -0.06776994466781616, -0.07184819877147675, 0.04280393570661545, -0.03918670117855072, -0.011463440023362637, -0.008843605406582355, 0.09794902056455612, -0.02072816900908947, -0.06081917881965637, -0.009060816839337349, -0.0028946737293154, 0.014123170636594296, 0.0436905138194561, 0.028796019032597542, 0.008799276314675808, -0.004964830819517374, 0.022891417145729065, 0.003408888354897499, -0.026278140023350716, 0.07333764433860779, 0.0004208470054436475, -0.03278561681509018, -0.00017551453493069857, 0.0005155999097041786, -0.008817007765173912, 0.04127902165055275, 0.026650503277778625, -0.012101775035262108, 0.05706009268760681, 0.01828121766448021, 0.0005923442076891661, -0.08050118386745453, -0.06372714787721634, 0.03129616752266884, -0.10376496613025665, 0.02826407365500927, 0.0388675332069397, -0.008998756296932697, -0.022270813584327698, -0.028902409598231316, -0.0042400541715323925, -0.0176960751414299, 0.021348772570490837, 0.026118557900190353, 0.06475558131933212, -0.013156802393496037, -0.08993436396121979, 0.009122876450419426, 0.07787691801786423, 0.015949519351124763, 0.03587090224027634, 0.004681126214563847, -0.029452087357640266, -0.007793011609464884, -0.057166483253240585, 0.006582833826541901, -0.04535727575421333, -0.008063417859375477, 0.007300961297005415, 0.028583241626620293, -0.04986108839511871, 0.007970326580107212, -0.01213723886758089, -0.001948252902366221, -0.028512313961982727, 0.032094087451696396, 0.04854895547032356, 0.022182155400514603, -0.00023702080943621695, -0.061386588960886, -0.02865416742861271, 0.04120809584856033, -0.015586023218929768, 0.050747666507959366, 0.006591699551790953, 0.03634965419769287, 0.028512313961982727, -0.03993142768740654, -0.037413548678159714, 0.02503693290054798, 0.014734908938407898, -0.022341739386320114, -0.0017554223304614425, 0.024168087169528008, 0.0038344452623277903, 0.022341739386320114, 0.01696908287703991, 0.00924699753522873, -0.050605811178684235, -0.04542820155620575, -0.03392043337225914, 0.019345108419656754, -0.013502567075192928, -0.043264955282211304, -0.07440153509378433, -0.000694854708854109, 0.05273359641432762, -0.013866063207387924, -0.003889856394380331, 0.004876173101365566, -0.005288431420922279, -0.015515096485614777, 0.08901232481002808, -0.021331042051315308, 0.011268393136560917, 0.08397656679153442, -0.02640226110816002, 0.003555173519998789, 0.053407397121191025, 0.05404572933912277, 0.009238132275640965, -0.0009436503751203418, -0.003368992358446121, -0.05369110032916069, -0.007491575088351965, 0.03968318551778793, -0.024239014834165573, -0.037555400282144547, -0.06645780801773071, 0.018121633678674698, -0.019504692405462265, 0.025586610659956932, -0.0070261224173009396, 0.02640226110816002, -0.046066537499427795, 0.011410245671868324, 0.0010256586829200387, 0.030037228018045425, -0.046421170234680176, -0.0005283444770611823, 0.03181038051843643, 0.013821735046803951, 0.03519710525870323, 0.03184584528207779, 0.060748253017663956, -0.029913106933236122, 0.005802646279335022, 0.004911636468023062, 0.02750161662697792, -0.0005186475464142859, 0.059471581131219864, 0.000005991320904286113, 0.037555400282144547, 0.05713101848959923, 0.05539332702755928, -0.00658726692199707, 0.009663688950240612, -0.005252968519926071, 0.022678637877106667, -0.006015424616634846, 0.007052719593048096, -0.019150061532855034, -0.056776389479637146, 0.0013376229908317327, -0.01385719794780016, -0.067911796271801, 0.016862694174051285, 0.0027107091154903173, 0.04503810778260231, 0.021579282358288765, -0.05447128787636757, 0.00884803757071495, -0.0192209891974926, 0.0036194503773003817, -0.008063417859375477, 0.032679226249456406, -0.09532475471496582, -0.014646251685917377, 0.04315856471657753, -0.028334999457001686, 0.0041447472758591175, -0.028530046343803406, -0.05440036207437515, -0.03865475580096245, -0.0007979192305356264, 0.03780364245176315, -0.005266267340630293, -0.009761212393641472, -0.0005405349074862897, -0.03716530650854111, -0.030196812003850937, 0.00969028566032648, -0.03335302323102951, 0.05202433466911316, 0.021916182711720467, -0.017438968643546104, 0.028317267075181007, 0.025763927027583122, 0.01886635832488537, -0.007886102423071861, -0.009424312971532345, 0.028352731838822365, -0.09007621556520462, 0.01216383557766676, -0.008165373466908932, 0.027395227923989296, 0.053442858159542084, 0.0663868859410286, -0.07511080056428909, 0.056599073112010956, -0.07440153509378433, -0.04262661933898926, -0.0026641637086868286, 0.019646545872092247, -0.05110229551792145, 0.0069596292451024055, 0.04337134584784508, -0.05184702202677727, 0.01566581428050995, 0.034611962735652924, -0.011986520141363144, -0.03925762698054314, -0.044151533395051956, -0.04620838910341263, 0.012509601190686226, 0.05106683075428009, -0.014158633537590504, 0.010576862841844559, -0.006813344080001116, 0.03968318551778793, 0.0008466810104437172, 0.03560493141412735, -0.0497901625931263, 0.04482533037662506, 0.027377495542168617, 0.04088892787694931, -0.039470404386520386, -0.005625330843031406, -0.04393875226378441, -0.06993319094181061, -0.02055085450410843, -0.07652932405471802, 0.021809794008731842, -0.07376319915056229, -0.04195282235741615, 0.004964830819517374, -0.01884862594306469, -0.012305688112974167, 0.017846794798970222, 0.030640099197626114, 0.02941662259399891, 0.030675562098622322, -0.015568291768431664, 0.03484247252345085, -0.01251846645027399, -0.030374126508831978, 0.018777700141072273, 0.003923103213310242, -0.008613094687461853, 0.054506752640008926, 0.0035086283460259438, -0.08844491839408875, -0.05369110032916069, -0.006157277151942253, -0.013972452841699123, -0.09858735650777817, 0.040640689432621, 0.011498902924358845, -0.02470003440976143, 0.020072102546691895, -0.01656125672161579, -0.03847743943333626, -0.007637860253453255, 0.013804003596305847, 0.026898745447397232, -0.011073346249759197, -0.01433594897389412, -0.00021887368347961456, -0.003404455492272973, 0.028866944834589958, 0.016348479315638542, -0.007159108761698008, 0.015302318148314953, -0.013768539763987064, 0.06461372971534729, 0.028370462357997894, 0.05372656509280205, -0.08099766820669174, -0.054719530045986176, -0.0011813638266175985, -0.04315856471657753, -0.003497546073049307, -0.0764583945274353, 0.0504639595746994, 0.012970620766282082, -0.04234291613101959, -0.03705891594290733, -0.009477507323026657, 0.03677521273493767, -0.011711681261658669, 0.065535768866539, -0.010807372629642487, 0.04372597485780716, 0.027005134150385857, 0.019150061532855034, 0.02695193886756897, -0.02961166948080063, 0.011543232016265392, 0.0010439443867653608, 0.01938057132065296, 0.035161640495061874, 0.011986520141363144, 0.0008067850139923394, 0.02427447773516178, -0.029434354975819588, 0.06716707348823547, 0.019096868112683296, 0.012997218407690525, -0.04252023249864578, -0.01810390129685402, -0.05315915495157242, 0.045109037309885025, 0.03301612660288811, 0.0026663802564144135, -0.010115843266248703, -0.043796900659799576, -0.02732430212199688, -0.05085405334830284, 0.003559606382623315, 0.06177668273448944, 0.040605224668979645, 0.025196516886353493, 0.04578283429145813, -0.0670606791973114, 0.008883501403033733, 0.011091077700257301, 0.03262603282928467, 0.035303495824337006, -0.05787574499845505, 0.009734614752233028, 0.05479045584797859, 0.023068731650710106, -0.03329982981085777, 0.008267330005764961, -0.01281990297138691, -0.058123983442783356, -0.004716589581221342, -0.03622553497552872, 0.034771546721458435, -0.0012888612691313028, 0.08057211339473724, 0.009264728985726833, -0.0047387536615133286, 0.007363021839410067, 0.016250954940915108, -0.01902594231069088, 0.01619776152074337, 0.0313316285610199, -0.03826466202735901, 0.018316680565476418, 0.01016017235815525, 0.02524971216917038, -0.03030320070683956, -0.024256745353341103, 0.03537442162632942, 0.00574501883238554, 0.03198769688606262, -0.0002914621727541089, -0.017988646402955055, -0.05443582683801651, 0.05372656509280205, -0.023494290187954903, -0.048300713300704956, -0.03126070275902748, -0.02016076073050499, -0.014548728242516518, -0.01035521924495697, -0.04450616240501404, 0.08461490273475647, -0.02335243672132492, -0.04262661933898926, -0.061918534338474274, -0.04103078320622444, 0.05354924872517586, -0.010630058124661446, -0.04666941240429878, 0.0027040597051382065, -0.002433653688058257, -0.0116850845515728, -0.03161533549427986, -0.0233701691031456, -0.025107858702540398, -0.0519888736307621, -0.03840651363134384, -0.05525147542357445, 0.018121633678674698, -0.01537324395030737, 0.03698799014091492, -0.021153725683689117, 0.10255922377109528, 0.0493646040558815, 0.07901173830032349, -0.037768177688121796, 0.047378674149513245, 0.05617351457476616, 0.045676443725824356, 0.012873097322881222, 0.002387108514085412, 0.012305688112974167, 0.01962881349027157, -0.014832432381808758, -0.007185706403106451, 0.0012600475456565619, 0.017376909032464027, 0.0013963587116450071, 0.041172634810209274, 0.032094087451696396, 0.013919258490204811, 0.0020635079126805067, 0.039470404386520386, -0.010044916532933712, 0.02936342917382717, -0.026295872405171394, 0.026650503277778625, 0.00008062308916123584, -0.017642881721258163, 0.01713753305375576, -0.0064409817568957806, -0.05762750282883644, -0.01320113055408001, 0.009663688950240612, 0.005434716586023569, 0.05205979943275452, -0.005297297146171331, -0.05734379589557648, -0.015453035943210125, 0.02127784676849842, -0.06496836245059967, -0.015931786969304085, 0.04932914301753044, 0.02376026287674904, 0.05993260070681572, -0.01044387649744749, 0.05649268254637718, -0.007176840677857399, 0.002974465722218156, 0.047414135187864304, 0.02448725514113903, -0.028583241626620293, -0.029097456485033035, -0.08645898103713989, -0.024398596957325935, -0.04837163910269737, 0.034204140305519104, -0.05784028023481369, -0.02487734891474247, -0.01673857308924198, 0.073834128677845, -0.03126070275902748, 0.0056341965682804585, 0.003945267293602228, 0.03521483764052391, -0.020267149433493614, 0.028742825612425804, -0.03858382999897003, -0.00475648557767272, -0.003550740657374263, 0.02106506936252117, -0.06649327278137207, -0.03932855278253555, -0.007562501356005669, -0.06542938202619553, -0.013990184292197227, 0.05181155726313591, -0.04528634995222092, 0.0190082099288702, 0.011933325789868832, 0.005416985135525465, 0.007163541857153177, -0.042271990329027176, 0.02106506936252117, -0.012589393183588982, -0.003865475533530116, -0.0006671491428278387, 0.05230804160237312, -0.023689337074756622, 0.026455456390976906, -0.020976411178708076, -0.06837281584739685, 0.062450479716062546, -0.003049824619665742, 0.020657243207097054, 0.06734438240528107, -0.04876173287630081, 0.06454280018806458, 0.020958678796887398, -0.020639510825276375, -0.016871560364961624, 0.0690111517906189, 0.035338956862688065, 0.03705891594290733, 0.028033563867211342, -0.005035757087171078, 0.03459423407912254, 0.025497952476143837, -0.05064127594232559, 0.017013411968946457, -0.01102901715785265, 0.01585199683904648, -0.005656361114233732, 0.040250591933727264, -0.03611914440989494, 0.04471893981099129 ]
18,519
ua_generator
generate
null
def generate(**kwargs): return user_agent.UserAgent(**kwargs)
(**kwargs)
[ -0.024420302361249924, -0.049568090587854385, -0.011408265680074692, -0.046625085175037384, -0.008279259316623211, 0.0008943708380684257, -0.04206177964806557, 0.0005466460715979338, -0.04559999704360962, 0.0012803298886865377, 0.049336615949869156, 0.10965162515640259, -0.018782304599881172, 0.06811892241239548, 0.014285133220255375, -0.03085191920399666, 0.023709353059530258, 0.03878810256719589, 0.054925013333559036, -0.03663872182369232, -0.028950542211532593, 0.02792545035481453, 0.005261856131255627, -0.010994923301041126, 0.014855545945465565, 0.03895344212651253, -0.02041914314031601, 0.016260912641882896, 0.011507468298077583, -0.014797678217291832, -0.013111239299178123, -0.061604637652635574, -0.003949492238461971, 0.05168440565466881, 0.05581783503293991, -0.03448933735489845, -0.04259086027741432, 0.0553879588842392, -0.09913618117570877, -0.01840202882885933, -0.05760347470641136, -0.05750427395105362, -0.01554169598966837, -0.009862363338470459, -0.014896880835294724, -0.041466567665338516, 0.0020150470081716776, -0.026106741279363632, -0.07565829902887344, -0.018616966903209686, 0.01282189879566431, 0.04361594840884209, 0.03318317234516144, -0.017046263441443443, -0.022270919755101204, 0.062464389950037, -0.04133429750800133, 0.018931107595562935, 0.01698012836277485, 0.1251271814107895, -0.045765332877635956, 0.0172612015157938, -0.0006654821918345988, -0.015607830137014389, 0.009581290185451508, 0.03465467318892479, -0.025445392355322838, 0.046625085175037384, 0.031562868505716324, 0.02060101367533207, 0.0506262481212616, 0.021675705909729004, 0.026222478598356247, 0.00612574303522706, 0.07188861072063446, 0.024618707597255707, -0.10865960270166397, -0.030918054282665253, 0.021311962977051735, -0.0002782314841169864, 0.014467003755271435, 0.011697606183588505, -0.008254459127783775, -0.06623407453298569, 0.0276609119027853, -0.02202291414141655, -0.0345224030315876, -0.05211428180336952, 0.04226018488407135, -0.006303480360656977, -0.018616966903209686, -0.002552392892539501, -0.018947642296552658, 0.03749847412109375, -0.06378708779811859, 0.004571573343127966, 0.019972732290625572, 0.07817142456769943, 0.0168230589479208, -0.015963304787874222, 0.04282233119010925, 0.0007507341797463596, -0.05396605655550957, 0.012284552678465843, -0.006927628070116043, -0.004517838824540377, -0.016029439866542816, 0.024486437439918518, 0.07883276790380478, 0.019807394593954086, -0.03558056429028511, -0.0749308168888092, 0.03351384773850441, -0.016947060823440552, -0.046724289655685425, -0.023312542587518692, 0.0217087734490633, 0.01323524210602045, 0.001968545839190483, 0.015880636870861053, -0.05108918994665146, 0.006005873437970877, -0.007241768762469292, 0.04847686365246773, 0.023510947823524475, -0.008696735836565495, -0.04249165579676628, -0.012086148373782635, 0.034820012748241425, 0.00710949907079339, 0.022353587672114372, 0.00007698512490605935, 0.03448933735489845, -0.026635820046067238, 0.013913124799728394, -0.007270702626556158, -0.03177780658006668, 0.01014343649148941, 0.06441536545753479, 0.053734585642814636, -0.04242552071809769, -0.008696735836565495, 0.033579982817173004, -0.0672260969877243, -0.007175634149461985, 0.014971282333135605, 0.011705872602760792, -0.016541985794901848, -0.008200724609196186, -0.022551992908120155, 0.07823755592107773, 0.021262362599372864, 0.04920434579253197, 0.002132849767804146, -0.031612470746040344, -0.023097604513168335, -0.023659750819206238, -0.031926609575748444, -0.013127773068845272, 0.009573022834956646, 0.04381435364484787, -0.0217087734490633, 0.0073120370507240295, -0.028322260826826096, 0.025147786363959312, 0.031066857278347015, 0.04262392595410347, 0.03319970890879631, 0.040772151201963425, 0.015401159413158894, -0.05022943764925003, -0.031926609575748444, -0.03716779872775078, -0.0002149383508367464, 0.0006835659150965512, -0.006559752859175205, -0.03305090218782425, -0.0032261419110000134, -0.0434836819767952, 0.07803915441036224, 0.022270919755101204, -0.038721971213817596, -0.0654735267162323, -0.03759767487645149, 0.05548715963959694, -0.005708266515284777, 0.0228992011398077, -0.014136329293251038, -0.0049973162822425365, 0.007580710109323263, 0.0020832484588027, 0.00945728737860918, 0.03524988889694214, 0.027115298435091972, 0.056479182094335556, -0.036241911351680756, -0.04050761088728905, -0.007601377088576555, -0.030438575893640518, 0.03144713491201401, 0.011003189720213413, 0.08438809961080551, -0.021907176822423935, -0.005443727131932974, 0.004650108516216278, 0.018831904977560043, 0.04044147580862045, -0.025924870744347572, 0.023048004135489464, -0.024916313588619232, 0.007068164646625519, 0.0027590643148869276, -0.016756923869252205, 0.04328527674078941, -0.018286293372511864, -0.009953298605978489, 0.014591006562113762, 0.022320520132780075, -0.04176417365670204, -0.0012059281580150127, 0.014293399639427662, -0.003079405054450035, 0.012350687757134438, -0.07407105714082718, 0.0282891932874918, -0.019526321440935135, -0.015533428639173508, -0.055288754403591156, -0.0630926713347435, -0.01767454482614994, 0.019079910591244698, -0.04073908179998398, 0.11930731683969498, 0.08604147285223007, -0.08557853102684021, 0.000505828473251313, 0.019542856141924858, 0.041135892271995544, -0.01559129636734724, 0.029000142589211464, -0.018964175134897232, 0.06296040117740631, 0.027214501053094864, 0.047782447189092636, 0.06061261147260666, 0.03730006888508797, -0.023725885897874832, -0.0014467004220932722, -0.0327698290348053, -0.028239591047167778, -0.0028686001896858215, -0.01321044098585844, -0.006878027226775885, 0.022089047357439995, -0.0027301302179694176, 0.06348948180675507, 0.072682224214077, -0.03138099983334541, 0.011325597763061523, 0.003589883679524064, 0.012127482332289219, 0.0065680197440087795, -0.03561362996697426, 0.020485278218984604, -0.04702189564704895, -0.016153443604707718, 0.010317040607333183, 0.03521681949496269, -0.09483741223812103, -0.007564176339656115, -0.0060306740924716, 0.05800028517842293, -0.009523422457277775, -0.025015516206622124, 0.0276609119027853, -0.03951558843255043, -0.004488904494792223, 0.006733356975018978, -0.024254964664578438, -0.022188249975442886, 0.013450180180370808, 0.03978012874722481, 0.04358288273215294, 0.008671935647726059, -0.02078288421034813, -0.010159970261156559, 0.004683176055550575, 0.030802318826317787, 0.002773531246930361, -0.046360548585653305, 0.0012431290233507752, -0.04900594428181648, -0.0006820159032940865, -0.0470549650490284, 0.012276286259293556, -0.010837852954864502, 0.035878170281648636, 0.034687742590904236, 0.011350397951900959, -0.036241911351680756, -0.001125326263718307, 0.0065473527647554874, -0.06524205207824707, -0.04414502903819084, -0.023643217980861664, 0.010862653143703938, 0.027826249599456787, -0.040639881044626236, -0.052444957196712494, -0.01035010814666748, -0.0583309605717659, -0.006861493457108736, 0.019906597211956978, 0.010697316378355026, -0.08676895499229431, -0.017525741830468178, -0.004369035363197327, 0.025528062134981155, 0.056743722409009933, -0.0111685274168849, -0.022932268679142, -0.0021049489732831717, 0.028322260826826096, -0.03630804643034935, -0.005844669416546822, 0.01946018636226654, -0.049336615949869156, 0.0168230589479208, -0.05925684794783592, 0.013913124799728394, -0.023097604513168335, -0.0046790423803031445, 0.03528295457363129, 0.032207682728767395, -0.01430993340909481, 0.042293254286050797, 0.03730006888508797, 0.023544015362858772, 0.00207394827157259, -0.02394082397222519, -0.04011080041527748, -0.023279476910829544, -0.05036170780658722, 0.06692849099636078, 0.010226105339825153, -0.041466567665338516, 0.02129543013870716, -0.004972516093403101, 0.04513705149292946, -0.07360811531543732, -0.0014394668396562338, 0.02756170928478241, 0.05383379012346268, 0.030570846050977707, 0.07248382270336151, -0.010697316378355026, -0.018187090754508972, -0.010184770449995995, -0.0004314267134759575, 0.015029150061309338, -0.0666639506816864, -0.0013939992059022188, 0.027727046981453896, 0.0019706126768141985, -0.015235821716487408, -0.01762494444847107, 0.03329890966415405, 0.07413719594478607, 0.02893400751054287, -0.016136908903717995, -0.006997896358370781, 0.008105655200779438, -0.016996663063764572, 0.012416822835803032, 0.008986076340079308, -0.034720808267593384, -0.04140043258666992, -0.06702769547700882, -0.07208701223134995, 0.02160957083106041, -0.040639881044626236, 0.0565783865749836, 0.028404928743839264, 0.004472370725125074, 0.06587033718824387, -0.046261344105005264, 0.009854095987975597, 0.03974705934524536, -0.04192950949072838, -0.016773458570241928, -0.008531399071216583, -0.015897169709205627, -0.011267729103565216, 0.03915184736251831, 0.013094705529510975, -0.06639941781759262, -0.03845743089914322, 0.022651195526123047, -0.015368091873824596, -0.03209194913506508, 0.003674618899822235, -0.0019716459792107344, -0.012193617410957813, 0.012325887568295002, -0.0494358204305172, -0.035547494888305664, 0.03693632781505585, -0.03139753267168999, 0.05370151996612549, -0.01599637232720852, -0.07572443038225174, -0.007766714319586754, -0.07764234393835068, -0.02761130966246128, 0.016806524246931076, 0.03905264288187027, 0.01494648214429617, 0.01674039103090763, 0.028768669813871384, 0.004302900284528732, 0.007849383167922497, 0.011309063993394375, 0.001571736647747457, 0.05545409396290779, 0.04239245504140854, 0.026900360360741615, 0.03782914951443672, -0.03025670535862446, 0.02632168121635914, 0.010680782608687878, 0.035646699368953705, -0.010341840796172619, -0.07340971380472183, 0.026569686830043793, 0.040639881044626236, -0.0162278451025486, -0.05998433008790016, -0.012499491684138775, -0.003044270910322666, -0.02041914314031601, -0.014921681024134159, -0.052544157952070236, 0.002430456690490246, 0.0750630795955658, 0.0135493827983737, -0.03134793043136597, -0.053503114730119705, -0.0428554005920887, 0.003976359497755766, -0.06686235964298248, 0.007572443224489689, -0.004943581763654947, -0.009771428070962429, -0.012681362219154835, 0.03146366775035858, 0.007138432934880257, -0.03604350611567497, 0.01643451675772667, 0.021361565217375755, -0.020485278218984604, 0.06210064888000488, -0.008547932840883732, 0.043516747653484344, 0.014136329293251038, 0.0010039067128673196, 0.0679205134510994, -0.02613980881869793, -0.007679912261664867, -0.01005250122398138, 0.010077301412820816, -0.020766351372003555, -0.03534908965229988, 0.010589847341179848, -0.012292820028960705, -0.010507178492844105, 0.026272078976035118, -0.0689786747097969, 0.015252355486154556, -0.053271640092134476, -0.03425786644220352, -0.004517838824540377, 0.028322260826826096, 0.05879390239715576, 0.048609133809804916, -0.023510947823524475, 0.026387814432382584, 0.030322840437293053, -0.019856996834278107, 0.014450469985604286, 0.012739229947328568, -0.03607657551765442, 0.030008699744939804, -0.022055981680750847, -0.029678024351596832, 0.0062125446274876595, 0.04090442135930061, 0.059455253183841705, 0.011689338833093643, -0.06104249134659767, 0.021411165595054626, 0.008386729285120964, -0.022089047357439995, 0.041003622114658356, -0.01578970067203045, 0.00877113826572895, -0.04189644381403923, 0.0012524292105808854, 0.015665698796510696, -0.0252800565212965, 0.05241188779473305, 0.018154023215174675, 0.022320520132780075, -0.020617546513676643, -0.0011232595425099134, 0.03799448534846306, 0.0081139225512743, -0.014748076908290386, 0.004893980920314789, -0.038259025663137436, 0.023742420598864555, 0.027760114520788193, 0.08862072974443436, 0.0035733499098569155, -0.027809714898467064, 0.014086727984249592, 0.03442320227622986, 0.055189553648233414, 0.0595213882625103, 0.06024887040257454, 0.05545409396290779, 0.001046274439431727, 0.012962435372173786, -0.0235274825245142, 0.0637209489941597, 0.027495574206113815, -0.04483944550156593, -0.038027554750442505, 0.0350845530629158, 0.0494358204305172, -0.007845249958336353, 0.03938331827521324, 0.002136983210220933, -0.0506262481212616, 0.0026371281128376722, -0.06345641613006592, -0.050560113042593, 0.03090151958167553, 0.014880347065627575, 0.004563306458294392, -0.04014386981725693, -0.04311993718147278, -0.005724800284951925, 0.02481711097061634, 0.01702973060309887, -0.025528062134981155, 0.014963015913963318, -0.04235938936471939, -0.00022100932255852968, 0.023742420598864555, 0.017856415361166, 0.03855663165450096, -0.05049397796392441, -0.024006959050893784, 0.01632704772055149, -0.05604930594563484, 0.08736416697502136, -0.0499979667365551, 0.021212760359048843, -0.041731107980012894, -0.057901084423065186, 0.009986366145312786, -0.023428279906511307, -0.025577662512660027, 0.04133429750800133, -0.045864537358284, 0.04057374596595764, 0.017757214605808258, 0.01573183387517929, 0.053040169179439545, -0.016839591786265373, -0.0068449596874415874, 0.05680985748767853, -0.002653661882504821, -0.11031296849250793, -0.0014570339117199183, -0.04973342642188072, 0.04282233119010925, -0.009515155106782913, 0.002552392892539501, 0.036010440438985825, -0.003554749535396695, -0.027644377201795578, -0.06378708779811859, 0.014748076908290386, -0.06977229565382004, 0.01202001329511404, 0.028818272054195404, -0.027875849977135658, -0.03796141967177391, -0.013301377184689045, -0.019493253901600838, 0.08743030577898026, 0.011821608990430832, 0.01291283406317234, 0.016103841364383698, 0.029959097504615784, -0.05654531717300415, -0.045897603034973145, -0.0009140046313405037, -0.013425379991531372, 0.008014719933271408, 0.024139229208230972, -0.05809948593378067, 0.06596953421831131, -0.04401275888085365, 0.04328527674078941, -0.01481421198695898, -0.023659750819206238, 0.0007791515090502799, -0.039912398904561996, -0.02966149151325226, -0.04070601612329483, -0.004214031621813774, 0.010308773256838322, 0.017327336594462395, 0.006778824608772993, 0.01433473452925682, 0.0333319753408432, -0.00135886506177485, 0.02691689506173134, 0.0012823966098949313, -0.03131486475467682, 0.049799561500549316, -0.06104249134659767, 0.03703552857041359, 0.00377795472741127, -0.003802755381911993, 0.05548715963959694, -0.02523045428097248, -0.04847686365246773, -0.04199564456939697, 0.05740507319569588, -0.022518925368785858, 0.010606380179524422, -0.04831152781844139, -0.024552572518587112, -0.05991819500923157, 0.05261029303073883, 0.028967075049877167, -0.046129073947668076, 0.04583146795630455, 0.003184807486832142, 0.05466047301888466, 0.04811312258243561, -0.0446741096675396, 0.04788164794445038, -0.014318200759589672, 0.02129543013870716, 0.03736620396375656, -0.03498534858226776, -0.007679912261664867, 0.04311993718147278, 0.10416242480278015, -0.05227961763739586, -0.05585090070962906, 0.03736620396375656, 0.002399455988779664, -0.0833299458026886, 0.0081139225512743, -0.021626103669404984, 0.03882117196917534, 0.029330817982554436, 0.05985206365585327, -0.036704856902360916, 0.01112719252705574, -0.03187701106071472, -0.010383175686001778, -0.05396605655550957, 0.018335893750190735, 0.016451049596071243, 0.019559388980269432, 0.02028687298297882, -0.03501841798424721, -0.04927048087120056, -0.027346771210432053, -0.025081651285290718, 0.005741334054619074, 0.04870833456516266, -0.016451049596071243, -0.010184770449995995, -0.02929775044322014, -0.05211428180336952, -0.01032530702650547, 0.06530819088220596, 0.015558229759335518, 0.02833879366517067, 0.004443436861038208, -0.033861055970191956, -0.001080891815945506, 0.022948801517486572, -0.01721160113811493, -0.005575996823608875, -0.01570703275501728, 0.04847686365246773, -0.03882117196917534, 0.027313703671097755, 0.024932848289608955, 0.02792545035481453, -0.0030112036038190126, -0.032207682728767395, 0.018616966903209686, -0.03812675550580025, 0.04857606440782547, 0.05548715963959694, 0.04153270274400711, -0.059455253183841705, -0.04321914166212082, 0.08372674882411957, -0.04559999704360962, 0.014822479337453842, 0.008068454451858997, 0.02486671321094036, -0.011350397951900959, -0.016789991408586502, -0.01798868551850319, 0.022270919755101204, -0.026156343519687653, -0.039085712283849716, 0.041830308735370636, 0.012201884761452675, 0.01780681498348713, -0.04212791472673416, 0.02450297214090824, -0.045302391052246094, -0.04900594428181648, -0.01583930291235447, -0.044211164116859436, -0.016475850716233253, -0.00496838241815567, -0.007473241072148085, -0.04986569657921791, 0.048642199486494064, -0.043020736426115036, 0.037432339042425156, -0.016103841364383698, -0.009821029379963875, 0.031480200588703156, -0.025792600587010384, 0.050427842885255814, 0.03108339197933674, 0.001447733724489808, -0.029843362048268318, 0.001596537185832858, 0.0067168232053518295, 0.0187327042222023, -0.004898114129900932, 0.027264101430773735, -0.0428554005920887, 0.01552516222000122, -0.014557939022779465, 0.024486437439918518, 0.004703843034803867, -0.05036170780658722, -0.02215518243610859, 0.03465467318892479, 0.027644377201795578, 0.022403188049793243, -0.02536272443830967 ]
18,524
reportlab
_fake_import
null
def _fake_import(fn,name): from importlib.util import spec_from_loader, module_from_spec from importlib.machinery import SourceFileLoader spec = spec_from_loader(name, SourceFileLoader(name, fn)) module = module_from_spec(spec) try: spec.loader.exec_module(module) except FileNotFoundError: raise ImportError('file %s not found' % ascii(fn)) sys.modules[name] = module
(fn, name)
[ 0.04208535701036453, -0.012280789203941822, 0.004699236713349819, 0.029371334239840508, -0.031634747982025146, -0.02114877477288246, 0.035542674362659454, 0.08650485426187515, -0.04707194119691849, -0.028575602918863297, -0.008138565346598625, -0.005410974379628897, -0.032076820731163025, 0.018885361030697823, -0.030414626002311707, 0.015030483715236187, 0.048132915049791336, 0.08685851842164993, -0.04236828163266182, -0.04364145174622536, -0.005822102073580027, 0.04721340164542198, -0.005026370752602816, 0.005822102073580027, 0.012961582280695438, 0.030874382704496384, 0.019875604659318924, -0.044278036803007126, 0.00549496803432703, -0.06627559661865234, 0.0468951091170311, -0.04523291438817978, 0.038195110857486725, 0.05856584012508392, 0.009548777714371681, -0.08275607973337173, 0.02095426246523857, -0.024756090715527534, 0.019221337512135506, -0.0570097416639328, 0.04006950184702873, 0.045940231531858444, 0.06832680851221085, -0.017249690368771553, 0.0030193589627742767, -0.00014546966121997684, -0.04010486975312233, 0.034729260951280594, -0.01518962997943163, 0.051846329122781754, -0.0011283914791420102, -0.011971338652074337, 0.06475485861301422, 0.030220113694667816, 0.04463169723749161, 0.06761949509382248, 0.01538414228707552, -0.019893288612365723, -0.0016931397840380669, 0.028964627534151077, 0.011529264971613884, 0.015949996188282967, 0.009460363537073135, -0.04311096668243408, -0.013164935633540154, -0.013023472391068935, -0.005570120643824339, -0.06829144805669785, -0.03646218776702881, 0.0023871944285929203, -0.034746941179037094, 0.0030768285505473614, 0.05004267022013664, -0.020635969936847687, 0.10326826572418213, 0.03780608996748924, -0.04116584360599518, -0.08240241557359695, 0.03624999150633812, -0.006463108118623495, 0.00252202688716352, 0.0077672237530350685, -0.04197925701737404, 0.03600243106484413, -0.04215608537197113, -0.0035962644033133984, 0.013660057447850704, -0.05842437595129013, 0.0448085255920887, -0.0030237797182053328, -0.03052072413265705, -0.008987345732748508, -0.04781462252140045, 0.007440089713782072, 0.015958838164806366, -0.017868593335151672, 0.07639022171497345, -0.011016461066901684, -0.04088291525840759, 0.00028624231345020235, 0.03971584513783455, -0.0005896149668842554, -0.08424144238233566, 0.00201032729819417, 0.0173027403652668, 0.002426980994641781, 0.04456096515059471, -0.027231700718402863, -0.033084746450185776, 0.02709023654460907, -0.0488755963742733, -0.035719502717256546, -0.05563047528266907, -0.007784906774759293, 0.01687834970653057, -0.09428533911705017, 0.06694754213094711, -0.01994633674621582, 0.0305384062230587, 0.006502894684672356, -0.014924386516213417, 0.011051826179027557, -0.02728474885225296, 0.010636277496814728, 0.07020120322704315, 0.028876211494207382, 0.026011578738689423, -0.009831705130636692, 0.08445363491773605, -0.040210966020822525, 0.06369388848543167, -0.030273163691163063, -0.03476462513208389, -0.017364630475640297, -0.030909748747944832, 0.023924993351101875, -0.031846944242715836, 0.05927315726876259, 0.04056462273001671, 0.013748472556471825, -0.03971584513783455, -0.030184747651219368, 0.003651523496955633, 0.02300548180937767, 0.006374693475663662, -0.0274615790694952, -0.033456090837717056, 0.028434138745069504, -0.03570181876420975, 0.010317984968423843, 0.060157302767038345, -0.004650608636438847, -0.05410974100232124, 0.0631280317902565, -0.024101823568344116, -0.010645119473338127, 0.025746334344148636, -0.03373901546001434, -0.019009141251444817, -0.02097194641828537, -0.0015273623866960406, -0.01262560673058033, 0.014181703329086304, -0.027355480939149857, -0.008779571391642094, -0.01792164146900177, -0.005371187813580036, -0.029565846547484398, -0.004553352482616901, -0.02648901753127575, -0.03890242800116539, 0.016984447836875916, 0.05354388803243637, 0.03488840535283089, 0.08898046612739563, -0.028363406658172607, -0.029159139841794968, 0.020830482244491577, 0.01251066755503416, 0.013262191787362099, 0.03276645392179489, 0.047956086695194244, -0.015260362066328526, 0.01930975168943405, 0.0011328122345730662, 0.057752422988414764, -0.007532924879342318, 0.004491462372243404, 0.017603348940610886, 0.003837194060906768, 0.00996432639658451, 0.037381697446107864, 0.05573657155036926, 0.03076828457415104, -0.011423167772591114, -0.008412650786340237, -0.06429510563611984, 0.03844267502427101, -0.017559142783284187, 0.04827437922358513, -0.06563901156187057, 0.029565846547484398, -0.031493283808231354, 0.04258047789335251, 0.012059752829372883, 0.023146945983171463, 0.03762925788760185, -0.009769815020263195, -0.03161706402897835, -0.004960059653967619, 0.005176675505936146, -0.08204875886440277, -0.026365237310528755, 0.07759266346693039, 0.003717834362760186, 0.008054571226239204, -0.00758155295625329, 0.04360608756542206, 0.042262185364961624, -0.014685667119920254, 0.02240426279604435, 0.10503655672073364, -0.0029972554184496403, -0.0037532001733779907, 0.06454266607761383, -0.020299995318055153, -0.021131092682480812, 0.0013195880455896258, -0.0019616992212831974, 0.03589633107185364, 0.05128047615289688, -0.025357311591506004, -0.008607162162661552, -0.04983047395944595, 0.05987437441945076, 0.003125456627458334, 0.02381889708340168, 0.01992865279316902, -0.01212164293974638, -0.008540851064026356, 0.03589633107185364, 0.0752585157752037, -0.0007388145895674825, -0.0610768124461174, -0.022139018401503563, -0.017399996519088745, -0.05251827836036682, -0.04173169657588005, -0.0366743803024292, -0.017426520586013794, 0.04134267196059227, 0.04399511218070984, 0.02180304378271103, 0.030892064794898033, -0.0223688967525959, -0.013562801294028759, 0.0234298724681139, -0.004115700256079435, 0.030449992045760155, 0.034110356122255325, -0.037134137004613876, -0.03769998997449875, -0.017886275425553322, -0.04222681745886803, -0.0034680631943047047, -0.049370720982551575, -0.05679754540324211, 0.05860120430588722, 0.03278413787484169, -0.00886356458067894, 0.03925608843564987, -0.012935057282447815, 0.018425604328513145, 0.0007277627591975033, -0.03297865018248558, -0.027231700718402863, -0.03646218776702881, 0.0009150912519544363, 0.01830182410776615, 0.07879510521888733, 0.0122100580483675, -0.022121336311101913, -0.034534748643636703, 0.03540121018886566, -0.07249998301267624, -0.033915843814611435, 0.0018257617484778166, 0.001419054577127099, -0.022492676973342896, 0.02240426279604435, 0.013324081897735596, 0.022085970267653465, -0.006834449712187052, -0.0610060840845108, -0.0427219420671463, 0.009990851394832134, -0.06620486080646515, -0.03239511325955391, 0.011935972608625889, 0.01304115541279316, 0.0013527435949072242, -0.034092675894498825, -0.025976212695240974, 0.0630926638841629, 0.01334176491945982, -0.06280974298715591, -0.038760967552661896, -0.03787681832909584, -0.049795109778642654, 0.03094511479139328, -0.0030591455288231373, 0.05011340230703354, -0.003043673001229763, -0.05520608276128769, 0.09690241515636444, 0.0325542613863945, 0.017965849488973618, 0.004548931960016489, 0.013545118272304535, 0.0223688967525959, -0.02608231082558632, 0.0833926647901535, -0.033279258757829666, 0.05623169243335724, 0.02809816412627697, -0.012139325961470604, 0.043853648006916046, 0.00997316837310791, -0.01567590981721878, -0.0018688638228923082, -0.04972437769174576, 0.012749386951327324, 0.027178652584552765, 0.0016489324625581503, -0.009716765955090523, 0.0193274337798357, 0.009398473426699638, -0.05174022912979126, -0.007519662845879793, 0.0006222178344614804, 0.046541452407836914, -0.0427573062479496, -0.024968286976218224, -0.02120182476937771, -0.03602011129260063, 0.04424267262220383, -0.023924993351101875, 0.016834141686558723, 0.0448085255920887, -0.021714629605412483, 0.0049379561096429825, -0.035931698977947235, -0.014517678879201412, -0.00769207114353776, -0.007311888504773378, 0.056302424520254135, -0.022510360926389694, -0.01253719162195921, -0.023765847086906433, -0.08898046612739563, 0.017806703224778175, -0.03968047723174095, -0.02325304225087166, -0.030909748747944832, -0.015454874373972416, -0.030184747651219368, 0.000008103233994916081, -0.005141309462487698, -0.02095426246523857, 0.05460486561059952, -0.030060967430472374, -0.029601212590932846, -0.024579262360930443, 0.016842983663082123, 0.045728038996458054, -0.02321767620742321, 0.023907311260700226, -0.036568284034729004, -0.03278413787484169, 0.03154633194208145, 0.0005896149668842554, 0.03324389457702637, -0.011281704530119896, -0.008921034634113312, -0.011529264971613884, -0.025498773902654648, 0.03830121085047722, 0.003322178963571787, -0.008739784359931946, -0.06595730036497116, 0.04788535460829735, -0.021290238946676254, 0.0037554106675088406, 0.02974267490208149, 0.018867678940296173, -0.021024994552135468, -0.03202377259731293, -0.0032271333038806915, 0.01099877804517746, 0.03379206359386444, 0.01609145849943161, 0.009814022108912468, 0.045126818120479584, 0.048380475491285324, -0.007714174687862396, 0.038195110857486725, 0.002570654731243849, -0.04314633086323738, 0.004148855805397034, 0.003132087644189596, -0.02463231049478054, 0.023765847086906433, -0.017364630475640297, -0.09393168240785599, -0.011617680080235004, 0.07837071269750595, 0.01058322936296463, -0.03170548006892204, -0.010786582715809345, -0.045940231531858444, 0.008823778480291367, -0.05478169396519661, -0.03543657809495926, 0.01853170245885849, 0.0036493130028247833, 0.010132314637303352, -0.011653046123683453, 0.00894755870103836, -0.0407414548099041, 0.023730481043457985, -0.06662925332784653, -0.011874082498252392, 0.0077583822421729565, -0.021007312461733818, 0.04862803593277931, -0.05354388803243637, -0.018478654325008392, 0.007360516581684351, -0.010936887934803963, -0.028451822698116302, 0.008412650786340237, 0.04017559811472893, 0.03232438117265701, -0.01610914245247841, -0.009937802329659462, 0.00023015428450889885, -0.02360670082271099, 0.058141447603702545, -0.016117984429001808, -0.010848472826182842, -0.05145730450749397, -0.02118414081633091, 0.035914015024900436, -0.01546371541917324, -0.00988475326448679, -0.04983047395944595, 0.009831705130636692, -0.017850909382104874, 0.027373163029551506, 0.06344632804393768, -0.0447377935051918, 0.021307921037077904, 0.007351675070822239, -0.03702804073691368, 0.07639022171497345, 0.014880179427564144, 0.005057315807789564, 0.015012800693511963, 0.03296096622943878, 0.014332008548080921, 0.07702680677175522, -0.010141155682504177, 0.023111579939723015, 0.017886275425553322, -0.022740237414836884, 0.032872553914785385, -0.00040256278589367867, 0.04498535394668579, 0.07660242170095444, 0.03780608996748924, 0.01587042212486267, -0.05944998562335968, 0.006533839739859104, 0.06673534959554672, -0.0052606696262955666, -0.008845881558954716, 0.036568284034729004, -0.014721033163368702, -0.02362438477575779, -0.035135965794324875, 0.009805180132389069, 0.008178351446986198, 0.012961582280695438, 0.04314633086323738, 0.0064233215525746346, 0.0033818588126450777, 0.04760242626070976, 0.06185486167669296, 0.03946828097105026, -0.038760967552661896, -0.0009996377630159259, -0.012183533981442451, -0.018690848723053932, 0.02730243280529976, 0.006914022844284773, 0.07695607841014862, 0.01231615524739027, -0.015764325857162476, 0.002897789003327489, 0.0006912917597219348, -0.011025302112102509, 0.03319084644317627, -0.02728474885225296, 0.00844801589846611, 0.03766462579369545, -0.028168896213173866, -0.03607316315174103, 0.039821941405534744, -0.03833657503128052, 0.0007835744763724506, 0.02565792016685009, -0.07631949335336685, -0.005004267208278179, -0.05354388803243637, 0.002895578509196639, -0.0004768863145727664, 0.029848773032426834, 0.07051949203014374, 0.06425973773002625, 0.040210966020822525, 0.04540974646806717, 0.012634447775781155, 0.02482682280242443, -0.04088291525840759, 0.07108534872531891, 0.023535970598459244, -0.026842676103115082, -0.00803688820451498, -0.011423167772591114, -0.0854438841342926, -0.008288869634270668, -0.03706340491771698, 0.03138718754053116, 0.012643289752304554, 0.020724385976791382, -0.010945728980004787, -0.08254387974739075, 0.02648901753127575, -0.03457011282444, -0.05594876781105995, 0.00503963278606534, 0.01771828904747963, 0.005587803665548563, -0.057328034192323685, -0.0013527435949072242, -0.10673411935567856, 0.007267680950462818, -0.03117499127984047, -0.014614935033023357, -0.011635363101959229, -0.009760973043739796, 0.05064389109611511, 0.06468413025140762, 0.013279874809086323, -0.016347860917448997, -0.03292560204863548, -0.03525974601507187, -0.008165089413523674, 0.016825301572680473, -0.04424267262220383, 0.029212187975645065, -0.0021904720924794674, 0.04038779437541962, 0.03131645545363426, -0.02403109148144722, 0.10503655672073364, 0.0692816898226738, -0.018248775973916054, 0.03485304117202759, -0.014791764318943024, -0.029654260724782944, -0.039821941405534744, -0.01874389685690403, 0.017647556960582733, -0.05665608495473862, -0.08869753777980804, -0.02220975048840046, 0.06687681376934052, 0.05251827836036682, -0.004206325393170118, -0.029618894681334496, -0.038690235465765, 0.014234752394258976, -0.02588779851794243, 0.022669507190585136, 0.00063050672179088, -0.07716827094554901, 0.055878035724163055, 0.01414633821696043, -0.0034216453786939383, -0.014650301076471806, -0.03833657503128052, 0.013960666954517365, 0.001081421272829175, 0.04236828163266182, 0.057929255068302155, -0.05400364473462105, -0.0366036482155323, -0.028151212260127068, 0.08402924984693527, -0.013633533380925655, -0.014287801459431648, 0.024596944451332092, -0.024314017966389656, 0.013279874809086323, 0.012563716620206833, -0.010238411836326122, -0.0508560836315155, 0.048380475491285324, -0.029866455122828484, -0.027850603684782982, 0.005906096193939447, -0.020105483010411263, -0.009040393866598606, 0.0427219420671463, -0.00009635811147745699, -0.00762576051056385, 0.011865240521728992, -0.008620425127446651, -0.016162190586328506, -0.029565846547484398, -0.014782923273742199, 0.00371562410145998, -0.04975974187254906, 0.02487987093627453, -0.055099986493587494, 0.03780608996748924, -0.02503901720046997, 0.004321264103055, 0.053048767149448395, 0.027992065995931625, -0.04972437769174576, -0.03423413634300232, -0.013209142722189426, -0.035348162055015564, -0.04045852646231651, -0.005870730150490999, -0.043287795037031174, 0.08013900369405746, -0.026153042912483215, 0.019875604659318924, 0.005746949929744005, 0.0024888713378459215, 0.03244816139340401, 0.06814998388290405, -0.028770115226507187, -0.009407314471900463, -0.0046948157250881195, 0.051846329122781754, 0.03373901546001434, -0.007723016198724508, -0.040599990636110306, 0.007448931224644184, 0.020034750923514366, 0.013845727778971195, -0.04176706448197365, 0.032854869961738586, -0.05637315660715103, -0.05453413352370262, 0.003032621229067445, -0.02588779851794243, 0.02991950511932373, -0.014897862449288368, -0.05474632605910301, 0.0024999231100082397, -0.014164021238684654, 0.0027342219837009907, 0.01538414228707552, 0.01251066755503416, 0.02910608984529972, -0.03377438336610794, -0.00251981639303267, -0.006909601856023073, -0.011989021673798561, -0.010132314637303352, 0.04031706228852272, -0.004597560036927462, 0.0037333068903535604, 0.03336767479777336, -0.007855637930333614, 0.004995425697416067, 0.0468951091170311, -0.00682560820132494, 0.03359755128622055, -0.058141447603702545, 0.0004893196164630353, 0.011370118707418442, -0.047107305377721786, -0.019893288612365723, 0.028593285009264946, 0.03791218623518944, -0.00894755870103836, 0.0004011813143733889, -0.011935972608625889, -0.03545425832271576, -0.01508353278040886, -0.10404631495475769, 0.00018014476518146694, -0.07108534872531891, -0.041271939873695374, -0.0033288102131336927, -0.019610360264778137, 0.006025455892086029, 0.041413404047489166, 0.03373901546001434, -0.001631249557249248, -0.07221705466508865, 0.0021097937133163214, 0.026559749618172646, -0.020512189716100693, 0.01994633674621582, -0.03212986886501312, 0.002022484317421913, 0.005278352182358503, -0.03379206359386444, -0.02670121192932129, -0.09831704944372177, 0.015207313001155853, 0.010344509966671467, 0.047567062079906464, -0.011661887168884277, -0.005578962154686451, -0.053013402968645096, 0.05863657221198082, 0.005808840040117502, -0.032289016991853714, 0.016560057178139687, 0.03032621182501316, 0.034304868429899216, -0.04173169657588005, -0.07653168588876724, -0.045303646475076675, -0.042686574161052704, 0.0040604411624372005, 0.03893779590725899, 0.053473155945539474, 0.06825608015060425, -0.011237497441470623, -0.02832804247736931, 0.07681461423635483, 0.012192375026643276, 0.055913399904966354, -0.008496643975377083, 0.014332008548080921, 0.03356218710541725, -0.053473155945539474, -0.028805481269955635, 0.05032559856772423, -0.005711583886295557, -0.051846329122781754, -0.004506934899836779, -0.022510360926389694, -0.008483381941914558, -0.053685352206230164, 0.028770115226507187, -0.013518594205379486, -0.0009073549299500883, 0.006471949629485607 ]
18,525
reportlab
cmp
null
def cmp(a,b): return -1 if a<b else (1 if a>b else 0)
(a, b)
[ -0.023321878165006638, 0.013096404261887074, -0.008528612554073334, 0.009817872196435928, -0.010296360589563847, -0.01514327060431242, 0.007744423113763332, 0.044623471796512604, -0.012777411378920078, -0.0927204117178917, 0.023782644420862198, 0.004379497841000557, 0.051924850791692734, -0.04224875196814537, -0.042213309556245804, 0.012440698221325874, -0.023942140862345695, 0.004882353823632002, -0.016339492052793503, -0.0319523885846138, 0.020769940689206123, 0.01485972199589014, -0.017783818766474724, -0.023711757734417915, 0.044623471796512604, 0.07592015713453293, 0.026795348152518272, -0.03409672901034355, -0.023002885282039642, 0.03259037435054779, -0.013167290948331356, -0.01353944931179285, -0.017845844849944115, -0.04324117302894592, -0.0013391028624027967, 0.0380309633910656, 0.03909427300095558, 0.05536287650465965, -0.02465101145207882, 0.025483936071395874, 0.0010345096234232187, -0.045899439603090286, 0.007434291765093803, -0.02608647756278515, -0.03615245595574379, -0.012600193731486797, -0.02902829460799694, -0.060324978083372116, 0.06252247840166092, 0.010384970344603062, -0.009419132024049759, -0.044056374579668045, 0.05369702726602554, 0.024615569040179253, -0.054228682070970535, 0.03735753521323204, 0.015409098006784916, 0.029737167060375214, -0.06812256574630737, 0.012582472525537014, 0.012795133516192436, 0.003531066933646798, -0.03609928861260414, -0.0236763134598732, -0.014895166270434856, -0.03166884183883667, -0.05355525389313698, -0.05298815667629242, -0.07797588407993317, 0.055256545543670654, -0.0450487956404686, 0.021425645798444748, 0.015240740962326527, -0.00610515708103776, 0.005582364276051521, 0.038881611078977585, -0.003362709889188409, 0.022807946428656578, 0.03927148878574371, -0.0016237591626122594, 0.04476524516940117, -0.04334750398993492, 0.07577838003635406, -0.023321878165006638, 0.009720402769744396, -0.016605319455266, 0.04568677768111229, -0.002961754333227873, 0.026051033288240433, 0.012866021133959293, -0.03682588413357735, -0.0071817561984062195, 0.03358279541134834, -0.030321985483169556, 0.012653359211981297, 0.055717311799526215, 0.010996371507644653, 0.020840827375650406, -0.027663717046380043, 0.020610444247722626, 0.07627458870410919, 0.04937291145324707, 0.0004197849484626204, -0.06174272298812866, 0.03459293767809868, -0.00785075407475233, 0.016880007460713387, -0.02426113374531269, -0.05242105945944786, 0.0342562235891819, -0.01531162764877081, -0.06730736792087555, -0.010509022511541843, -0.03714487701654434, -0.007717840373516083, 0.01419515535235405, 0.02349909581243992, -0.01890915259718895, 0.0048912144266068935, 0.02264844998717308, -0.026104198768734932, -0.04809694364666939, 0.061636392027139664, -0.018182558938860893, -0.02723839320242405, -0.010571048595011234, 0.05805658921599388, -0.02810676209628582, -0.059970542788505554, 0.022347180172801018, 0.06184905394911766, -0.045615892857313156, -0.022276291623711586, 0.02029145136475563, -0.008754565380513668, -0.03322836011648178, 0.033476464450359344, 0.042496856302022934, 0.045084238052368164, 0.00696909474208951, 0.05146408453583717, -0.022258570417761803, -0.009348245337605476, 0.002149874810129404, 0.04076012223958969, -0.010641936212778091, 0.0016891083214432001, 0.03728665038943291, -0.010854597203433514, 0.08187467604875565, 0.007531761657446623, -0.02879791148006916, 0.03710943087935448, 0.006091865710914135, 0.01828888989984989, -0.035727132111787796, -0.011014093644917011, -0.07684168964624405, -0.053129930049180984, -0.01462933886796236, 0.09832049906253815, 0.009374828077852726, 0.015488846227526665, 0.029648557305336, 0.010074838995933533, -0.007000107783824205, 0.01097865030169487, 0.06507442146539688, -0.015364793129265308, 0.010269777849316597, 0.009906481951475143, 0.008900769986212254, -0.042390525341033936, -0.028833355754613876, -0.004044998902827501, -0.02608647756278515, -0.000827939948067069, 0.015834420919418335, 0.037038546055555344, 0.047104522585868835, -0.008431142196059227, 0.045155126601457596, 0.012369810603559017, 0.018412942066788673, -0.001249386346898973, 0.009809011593461037, 0.00552033819258213, 0.02459784597158432, 0.00692479033023119, 0.009853316470980644, -0.06124651059508324, 0.029985271394252777, -0.0052678026258945465, -0.0223649013787508, 0.016109108924865723, 0.04338294640183449, -0.056638848036527634, 0.04182342812418938, 0.04040568321943283, 0.040901895612478256, -0.01615341380238533, 0.025253552943468094, 0.015896447002887726, -0.0029196650721132755, 0.0828671008348465, 0.03292708843946457, 0.008227341808378696, -0.013858441263437271, -0.062451593577861786, -0.037853747606277466, -0.023233268409967422, -0.0237294789403677, -0.03500054031610489, 0.010225473903119564, -0.00689820758998394, 0.03103085793554783, 0.01752685196697712, 0.012795133516192436, 0.01190018281340599, 0.009693820029497147, 0.01092548482120037, -0.017429381608963013, 0.06713014841079712, -0.031757451593875885, 0.08194556832313538, 0.029985271394252777, -0.01396477222442627, -0.02006106823682785, -0.020504113286733627, 0.0356208011507988, 0.016995199024677277, -0.010411552153527737, 0.06096296384930611, -0.03189922496676445, -0.005263372324407101, -0.01678253710269928, -0.0030924526508897543, 0.03143845871090889, -0.13667045533657074, 0.018235724419355392, -0.018519273027777672, 0.0876874253153801, 0.027894100174307823, 0.030658699572086334, 0.000023104093997972086, -0.07024918496608734, 0.024845952168107033, -0.01712811179459095, -0.023516817018389702, 0.06957575678825378, -0.07205680757761002, -0.01109384186565876, -0.05369702726602554, -0.056071747094392776, -0.050896987318992615, -0.04363105073571205, -0.03973225876688957, -0.053378038108348846, 0.008311520330607891, 0.009233053773641586, 0.005307676736265421, 0.0011928981402888894, -0.044907018542289734, -0.009073557332158089, -0.01631290838122368, -0.024225689470767975, 0.0025475076399743557, 0.056071747094392776, 0.03062325529754162, 0.08357597142457962, 0.0354081392288208, -0.11696382611989975, 0.03191694617271423, 0.0223649013787508, 0.014824278652668, 0.022435788065195084, 0.007070994935929775, -0.006362123414874077, -0.014186293818056583, -0.010376108810305595, 0.07095805555582047, 0.04611210152506828, -0.10555098950862885, 0.009525462985038757, -0.0637984499335289, 0.006636810954660177, -0.011802713386714458, -0.05855279788374901, -0.05780848488211632, -0.020947158336639404, 0.009295079857110977, 0.04519056901335716, -0.043489277362823486, -0.01197993103414774, 0.030711865052580833, -0.010526744648814201, 0.009100140072405338, -0.03376001492142677, 0.07120615988969803, 0.021585142239928246, -0.053484369069337845, -0.03110174462199211, -0.01174954790621996, -0.03866894915699959, 0.012033096514642239, 0.036365117877721786, -0.05057799443602562, 0.014062241651117802, -0.020787661895155907, -0.002001454820856452, 0.008767856284976006, -0.03257265314459801, 0.01947624981403351, -0.02328643389046192, -0.01146599929779768, 0.030215654522180557, -0.003473471151664853, -0.017376216128468513, -0.010198891162872314, 0.00815645419061184, 0.014593895524740219, 0.013122987002134323, -0.049691904336214066, 0.00719947787001729, 0.014824278652668, -0.029648557305336, -0.0471399649977684, -0.0020202843006700277, 0.04671464115381241, 0.05157041549682617, -0.029754888266324997, 0.04058290272951126, 0.10328260064125061, 0.00005891111140954308, 0.0012482786551117897, 0.01132422499358654, 0.04653742536902428, 0.03280303627252579, -0.014700226485729218, -0.019972458481788635, -0.025732042267918587, 0.013193873688578606, 0.0008395698969252408, 0.01711925119161606, 0.0706036165356636, -0.00025419695884920657, -0.0356208011507988, 0.015772394835948944, -0.007367834914475679, -0.021354759112000465, -0.0026073185727000237, -0.004873492754995823, -0.03827907145023346, -0.02006106823682785, 0.03973225876688957, 0.05125142261385918, 0.004379497841000557, -0.04671464115381241, 0.023321878165006638, 0.024119358509778976, 0.02139020338654518, -0.008829882368445396, -0.03333469107747078, 0.006512758322060108, -0.03966137021780014, -0.019405361264944077, -0.025785207748413086, -0.018767377361655235, -0.05812747776508331, -0.03262581676244736, 0.021691473200917244, -0.00896722637116909, 0.07499862462282181, -0.028727024793624878, -0.05631985515356064, -0.007815309800207615, -0.016977475956082344, 0.021744638681411743, -0.03058781288564205, -0.025430770590901375, 0.02380036562681198, 0.029861219227313995, -0.054972998797893524, 0.04270951822400093, -0.05412235110998154, -0.0011784991947934031, -0.02454468235373497, 0.001175176352262497, 0.01379641517996788, 0.027716882526874542, -0.02730928175151348, -0.046076659113168716, -0.03976770117878914, -0.03069414384663105, 0.013725527562201023, 0.016295187175273895, 0.04306395351886749, -0.0001780486200004816, -0.00433740857988596, -0.07613281905651093, 0.05777304247021675, 0.06110473722219467, -0.01947624981403351, -0.008076706901192665, 0.03546130657196045, 0.052846383303403854, 0.06053764000535011, 0.03973225876688957, -0.05763126537203789, 0.10243195295333862, -0.10158131271600723, 0.0010516776237636805, -0.05982876941561699, -0.06723647564649582, -0.04214242100715637, -0.009463436901569366, 0.001251601497642696, 0.07655814290046692, -0.01880282163619995, -0.058304693549871445, -0.046182990074157715, -0.04650198295712471, 0.007403278257697821, -0.05741860345005989, 0.012928047217428684, -0.04104366898536682, 0.05869457498192787, -0.006410858128219843, -0.07407709211111069, 0.014469843357801437, 0.005905786994844675, 0.02339276485145092, -0.0016315124230459332, -0.0118381567299366, 0.09023936092853546, 0.024402907118201256, 0.009959646500647068, -0.013344509527087212, -0.0052678026258945465, 0.04696274921298027, 0.08081136643886566, 0.019972458481788635, 0.018838264048099518, 0.04994000867009163, -0.05362614244222641, 0.01683570258319378, 0.012378671206533909, -0.025732042267918587, 0.0031699854880571365, -0.03097769245505333, 0.03097769245505333, 0.018519273027777672, 0.01235208846628666, -0.0068627637811005116, 0.029861219227313995, -0.07677080482244492, -0.09378372132778168, 0.003178846323862672, -0.021868690848350525, -0.03827907145023346, 0.007948223501443863, 0.029170069843530655, -0.0015827774768695235, -0.045615892857313156, -0.06684660166501999, 0.007934932596981525, -0.0011962209828197956, 0.0009348245221190155, -0.01106725912541151, 0.003107959171757102, 0.020433226600289345, -0.05125142261385918, -0.032094165682792664, -0.01462933886796236, -0.029754888266324997, 0.03671955317258835, -0.028709301725029945, -0.0378183051943779, 0.04384371265769005, 0.0042244321666657925, 0.01204195711761713, 0.00037935710861347616, 0.009702680632472038, 0.027220671996474266, 0.04760073125362396, -0.0224180668592453, -0.03898794203996658, 0.006778585258871317, -0.0016204363200813532, -0.07925185561180115, 0.06280603259801865, -0.03230682760477066, 0.013495144434273243, 0.014948331750929356, -0.006317818537354469, -0.0294890608638525, 0.012706524692475796, 0.027681438252329826, -0.025820650160312653, 0.03133212774991989, 0.008342533372342587, -0.0011718535097315907, -0.004944379907101393, -0.007748853415250778, 0.038491733372211456, -0.0017311975825577974, 0.05086154118180275, -0.04097278416156769, -0.003174416022375226, 0.017854705452919006, 0.02333959937095642, -0.005148180294781923, 0.025359883904457092, 0.01580783911049366, 0.028230814263224602, 0.06383389234542847, 0.015728089958429337, -0.055610980838537216, 0.040370240807533264, 0.015329349786043167, 0.05461856350302696, -0.06659848988056183, 0.020539555698633194, -0.03710943087935448, 0.014009076170623302, -0.013282482512295246, -0.009676097892224789, -0.009596350602805614, 0.017624322324991226, 0.008608360774815083, -0.06890232861042023, -0.03657777979969978, -0.01855471543967724, -0.02190413512289524, -0.07032006978988647, 0.03466382622718811, -0.0830797627568245, 0.05323626101016998, -0.016933171078562737, 0.0006213703309185803, 0.023977583274245262, 0.015152132138609886, 0.06415288895368576, -0.040547460317611694, 0.011829296126961708, 0.039909474551677704, -0.09945469349622726, 0.02298516407608986, 0.02890424244105816, 0.016179995611310005, -0.028018152341246605, -0.01695089414715767, -0.04625387489795685, 0.00902039185166359, -0.01949397101998329, 0.01718127727508545, -0.04699819162487984, 0.009587489068508148, 0.028035873547196388, 0.03764108568429947, 0.042390525341033936, 0.04324117302894592, 0.0294890608638525, -0.08017338812351227, -0.06305413693189621, -0.016623040661215782, 0.058304693549871445, -0.027380168437957764, 0.038881611078977585, -0.025023169815540314, 0.03570941090583801, 0.0025630141608417034, -0.07861386984586716, -0.004064936190843582, -0.028727024793624878, 0.0448361337184906, 0.007815309800207615, 0.01804078370332718, -0.01621543988585472, -0.005538059864193201, -0.01163435634225607, -0.04869948327541351, 0.004780453164130449, -0.020025623962283134, -0.021921856328845024, -0.043595608323812485, -0.00400733994320035, 0.021018045023083687, 0.017730653285980225, 0.000662905746139586, -0.059226226061582565, -0.039342377334833145, 0.0059545221738517284, -0.04079556465148926, -0.007886197417974472, 0.02989666350185871, -0.02293199859559536, 0.05610719323158264, -0.05880090594291687, 0.003278531366959214, 0.002707003615796566, -0.0015849927440285683, -0.003176631173118949, -0.043312057852745056, 0.050152670592069626, 0.006441871169954538, 0.007452013436704874, -0.03553219139575958, -0.051924850791692734, 0.00856848619878292, 0.04278040677309036, -0.01563061960041523, 0.04597032815217972, -0.003898794064298272, 0.04171709716320038, -0.00019646267173811793, 0.037038546055555344, -0.040547460317611694, 0.001037832465954125, 0.022099073976278305, -0.043134842067956924, 0.007195047568529844, 0.027911821380257607, 0.02654724381864071, 0.0356208011507988, -0.022542119026184082, 0.08059871196746826, -0.004383928142488003, 0.0567806214094162, 0.03788919001817703, -0.027557386085391045, 0.012493862770497799, 0.08563169836997986, -0.03927148878574371, -0.03661322221159935, -0.020840827375650406, 0.009295079857110977, -0.0064950366504490376, 0.002489911625161767, -0.01913953572511673, -0.0316333994269371, 0.03230682760477066, 0.007638092152774334, -0.04260318726301193, 0.005285524297505617, -0.024243410676717758, 0.012591333128511906, 0.02792954444885254, 0.05086154118180275, -0.03895249962806702, 0.0066811153665184975, 0.0022949720732867718, 0.03234227001667023, 0.03028654120862484, -0.06188449636101723, 0.022807946428656578, 0.04058290272951126, 0.0112356161698699, 0.038775280117988586, -0.040441129356622696, 0.0141685726121068, -0.009543185122311115, 0.037499312311410904, -0.005489325150847435, -0.01598505675792694, -0.0017976542003452778, 0.010881179943680763, -0.030304264277219772, -0.02380036562681198, -0.015666063874959946, -0.010057116858661175, 0.033884067088365555, 0.013512866571545601, -0.012476141564548016, -0.020716775208711624, -0.011519164778292179, -0.0010289715137332678, 0.009073557332158089, 0.0006950265378691256, -0.034167613834142685, 0.00908241793513298, 0.014983775094151497, -0.06018320471048355, 0.0025120640639215708, 0.005839330144226551, -0.006853902712464333, -0.02690167911350727, 0.04625387489795685, 0.025076335296034813, 0.010225473903119564, -0.0002393826434854418, 0.005608947016298771, -0.004913366865366697, -0.04132721945643425, -0.04217786341905594, 0.05132230743765831, -0.03516003489494324, 0.039342377334833145, 0.017792679369449615, 0.009693820029497147, 0.04636020585894585, -0.029046015813946724, -0.007567205000668764, -0.012688802555203438, -0.04076012223958969, -0.04171709716320038, 0.025271274149417877, 0.0014099900145083666, 0.03757019713521004, -0.06546429544687271, -0.0643301010131836, 0.03718031942844391, -0.023038329556584358, -0.0340435616672039, -0.01903320476412773, 0.018944595009088516, -0.0010151263559237123, 0.04816782847046852, 0.02162058651447296, 0.0471399649977684, -0.0379246324300766, 0.001836420618928969, 0.05142863839864731, -0.037038546055555344, 0.030162489041686058, -0.04391460120677948, 0.07818854600191116, -0.08662411570549011, -0.0340435616672039, -0.0270788986235857, -0.009569767862558365, 0.018926873803138733, 0.015063523314893246, 0.004036137834191322, -0.009640654549002647, 0.03774741664528847, 0.007066564634442329, -0.02000790275633335, 0.014071102254092693, 0.0519602932035923, 0.055256545543670654, 0.03150934725999832, 0.02131931483745575, -0.041291773319244385, 0.031527068465948105, -0.005126028321683407, 0.0284434761852026, 0.05327170714735985, -0.03558535873889923, 0.009348245337605476, -0.04143355041742325, -0.02167375199496746, 0.021815525367856026, 0.01811167038977146, 0.0224180668592453, -0.01445212122052908, -0.004620957188308239, 0.016233161091804504, 0.0008268323144875467, 0.005112736951559782, -0.02798270992934704, 0.022258570417761803, -0.0736517682671547, 0.023924419656395912, -0.02270161546766758, 0.024278854951262474, 0.013362230733036995, 0.09612299501895905 ]
18,528
grafana_client.api
AsyncGrafanaApi
null
class AsyncGrafanaApi(GrafanaApi): def __init__( self, auth=None, host="localhost", port=None, url_path_prefix="", protocol="http", verify=True, timeout=DEFAULT_TIMEOUT, user_agent: str = None, organization_id: int = None, ): self.client = AsyncGrafanaClient( auth, host=host, port=port, url_path_prefix=url_path_prefix, protocol=protocol, verify=verify, timeout=timeout, user_agent=user_agent, organization_id=organization_id, ) self.url = None self.admin = AsyncAdmin(self.client) self.alerting = AsyncAlerting(self.client) self.alertingprovisioning = AsyncAlertingProvisioning(self.client) self.dashboard = AsyncDashboard(self.client, self) self.dashboard_versions = AsyncDashboardVersions(self.client) self.datasource = AsyncDatasource(self.client, self) self.folder = AsyncFolder(self.client) self.health = AsyncHealth(self.client) self.organization = AsyncOrganization(self.client) self.organizations = AsyncOrganizations(self.client, self) self.search = AsyncSearch(self.client) self.user = AsyncUser(self.client) self.users = AsyncUsers(self.client) self.rbac = AsyncRbac(self.client) self.teams = AsyncTeams(self.client, self) self.annotations = AsyncAnnotations(self.client) self.snapshots = AsyncSnapshots(self.client) self.notifications = AsyncNotifications(self.client) self.plugin = AsyncPlugin(self.client) self.serviceaccount = AsyncServiceAccount(self.client) self.libraryelement = AsyncLibraryElement(self.client, self) self._grafana_info = None async def connect(self): try: self._grafana_info = await self.health.check() except niquests.exceptions.ConnectionError as ex: # pragma: no cover logger.critical(f"Unable to connect to Grafana at {self.url or self.client.url_host}: {ex}") raise logger.info(f"Connected to Grafana at {self.url}: {self._grafana_info}") return self._grafana_info @property async def version(self): if not self._grafana_info: self._grafana_info = await self.health.check() version = self._grafana_info["version"] logger.info(f"Inquired Grafana version: {version}") return version
(auth=None, host='localhost', port=None, url_path_prefix='', protocol='http', verify=True, timeout=5.0, user_agent: str = None, organization_id: int = None)
[ 0.009731903672218323, -0.08865377306938171, -0.07747765630483627, 0.024881957098841667, 0.02816682867705822, 0.02444775030016899, -0.057768430560827255, -0.00013524726091418415, -0.04368501529097557, -0.01783081144094467, 0.02979038655757904, -0.010647513903677464, -0.014413789846003056, -0.004271276760846376, 0.006923716049641371, 0.0026312009431421757, -0.02206904999911785, 0.027222899720072746, 0.050972145050764084, -0.02203129231929779, -0.058938901871442795, 0.03537844493985176, -0.00881157349795103, 0.018869131803512573, 0.004549735691398382, 0.05504991486668587, 0.017764735966920853, -0.021144000813364983, 0.034189093858003616, -0.021729236468672752, 0.025146257132291794, -0.029450571164488792, 0.017594829201698303, 0.06418714672327042, 0.001131534343585372, -0.03288647159934044, -0.0009209203417412937, 0.009580874815583229, -0.1220310851931572, 0.05112317204475403, 0.0002989598724525422, -0.031527213752269745, -0.01268639974296093, -0.040664441883563995, 0.07845934480428696, -0.013970143161714077, -0.015036782249808311, 0.06075124442577362, -0.05327532812952995, -0.02116287872195244, -0.01151592843234539, -0.021766992285847664, -0.038040321320295334, 0.0647912546992302, -0.004809316247701645, 0.11765126138925552, -0.033113013952970505, 0.030318986624479294, 0.0172361359000206, -0.0018406606977805495, -0.02327727898955345, -0.015121735632419586, 0.02575037069618702, 0.022710921242833138, -0.0005648822407238185, -0.024598779156804085, -0.0582592710852623, 0.013800235465168953, -0.0029403374064713717, 0.015905195847153664, 0.057390857487916946, 0.06362078338861465, 0.05720207095146179, -0.05131195858120918, 0.05406823009252548, -0.003282511606812477, -0.048971015959978104, 0.006522546522319317, -0.01041153259575367, 0.012761914171278477, -0.006225208751857281, 0.009108910337090492, 0.03643564134836197, -0.035774894058704376, 0.07626942545175552, -0.029016364365816116, 0.010751346126198769, -0.02920515090227127, -0.03341507166624069, -0.05331308767199516, -0.0044647823087871075, -0.03877658769488335, 0.015763606876134872, -0.014545938931405544, -0.035038627684116364, -0.0016683937283232808, -0.02616569958627224, -0.050594571977853775, -0.03407582268118858, -0.044666700065135956, -0.03209357336163521, -0.025467192754149437, 0.016537629067897797, 0.027052992954850197, 0.031904786825180054, -0.06603724509477615, -0.022087927907705307, -0.030356742441654205, 0.011553686112165451, 0.0748346596956253, -0.015565382316708565, 0.0060836197808384895, -0.001008233753964305, 0.03530292958021164, 0.001664854004047811, 0.003114964347332716, -0.017500435933470726, -0.01720781810581684, -0.010298260487616062, -0.027392806485295296, 0.015584261156618595, 0.05108541622757912, 0.012346586212515831, 0.03360385820269585, 0.025335043668746948, 0.05565403029322624, -0.013214999809861183, 0.028431128710508347, 0.028657671064138412, -0.02616569958627224, 0.01748155802488327, 0.043798286467790604, 0.00014896372158546, 0.04685661569237709, 0.07200287282466888, 0.04644128680229187, -0.0015681013464927673, 0.0020695633720606565, -0.047347456216812134, 0.019020160660147667, -0.04009808599948883, 0.0029002204537391663, -0.005564459133893251, -0.07800626009702682, 0.010892936028540134, -0.001434771460480988, -0.06335648894309998, -0.06226152926683426, -0.026977479457855225, -0.0658484548330307, 0.05082111433148384, -0.04360949993133545, 0.005875955335795879, 0.013922946527600288, -0.04353398457169533, -0.018010158091783524, -0.011751910671591759, -0.025391679257154465, 0.029224028810858727, -0.022333350032567978, -0.045006513595581055, -0.015886317938566208, 0.015348278917372227, -0.05089662969112396, -0.035774894058704376, 0.00537095358595252, 0.03524629399180412, -0.04077771306037903, -0.045384086668491364, 0.02637336403131485, -0.0644892007112503, 0.008868209086358547, -0.10828748345375061, 0.02578812837600708, -0.01909567601978779, 0.05667347088456154, 0.012252192944288254, -0.005503103602677584, 0.046894371509552, -0.00036872210330329835, -0.0858597457408905, -0.018123429268598557, -0.03960724174976349, -0.05686225742101669, -0.0056918892078101635, 0.044213615357875824, -0.002952136564999819, 0.027845893055200577, 0.03320740908384323, 0.0010601497488096356, -0.017434360459446907, 0.016027906909585, 0.042590055614709854, 0.03366049379110336, 0.06864248961210251, -0.031036371365189552, -0.011600881814956665, 0.018123429268598557, 0.02912963554263115, 0.020728671923279762, -0.013262196443974972, 0.022729801014065742, 0.004724362399429083, 0.02833673544228077, 0.014357153326272964, -0.02695859968662262, 0.013469860889017582, 0.01748155802488327, -0.02116287872195244, -0.015093417838215828, -0.09235396981239319, 0.02816682867705822, -0.04036238417029381, 0.025561586022377014, -0.008372646756470203, -0.0444779135286808, 0.08480254560709, 0.03020571358501911, 0.0399848148226738, 0.031036371365189552, 0.04972615838050842, -0.030621042475104332, 0.018217820674180984, -0.05520094186067581, -0.03350946307182312, 0.03717190772294998, 0.03702087700366974, -0.002838865155354142, -0.01193125732243061, -0.06645257025957108, 0.035284049808979034, -0.011468731798231602, 0.04296762868762016, 0.031281791627407074, -0.014593135565519333, 0.008934283629059792, 0.020917456597089767, 0.041079770773649216, 0.003815831383690238, 0.0060836197808384895, 0.016178935766220093, -0.00980741810053587, 0.0150839788839221, -0.0040872106328606606, -0.05761739984154701, -0.01785912923514843, -0.02444775030016899, 0.023598214611411095, 0.004261837340891361, -0.028487764298915863, -0.052218127995729446, -0.04749848693609238, 0.020426614210009575, 0.018661467358469963, -0.032867591828107834, -0.0799696296453476, -0.032490022480487823, 0.008556712418794632, 0.07706233114004135, -0.012053968384861946, -0.017283331602811813, 0.019954649731516838, -0.07868588715791702, 0.09703585505485535, -0.031225157901644707, -0.02237110771238804, 0.016150617972016335, -0.01802903600037098, -0.014574257656931877, 0.010383214801549911, 0.09605417400598526, 0.0417216420173645, 0.004755040165036917, -0.015697531402111053, -0.017434360459446907, -0.012346586212515831, -0.043798286467790604, -0.004297235049307346, -0.011874621734023094, -0.04814035817980766, -0.022673163563013077, -0.016084542497992516, 0.01158200390636921, -0.021502692252397537, 0.020672036334872246, -0.06411162763834, 0.008485917933285236, 0.041042014956474304, -0.02520289272069931, -0.018699225038290024, 0.00880685355514288, -0.07117221504449844, -0.02257877215743065, -0.043458472937345505, -0.007027548272162676, 0.031867027282714844, -0.05640917271375656, 0.08804965764284134, -0.025731492787599564, -0.0479138158261776, 0.0002244780189357698, -0.008674703538417816, 0.012997896410524845, -0.0010920073837041855, 0.02286195009946823, -0.012082286179065704, 0.0386066772043705, 0.018368849530816078, 0.019331656396389008, 0.018944647163152695, -0.03856892138719559, -0.04130631312727928, 0.04885774478316307, 0.0212006364017725, -0.042590055614709854, -0.006489508785307407, -0.0036459241528064013, 0.0010288821067661047, 0.04610147327184677, 0.047347456216812134, -0.05433252826333046, 0.06690565496683121, 0.020388856530189514, -0.0027137945871800184, 0.04995270073413849, -0.007839326746761799, 0.023315036669373512, 0.05048130080103874, -0.02761935070157051, -0.003457138314843178, -0.04746072739362717, -0.0603359155356884, -0.014555378817021847, 0.005824039224535227, -0.043043144047260284, -0.005333196371793747, -0.0004097239871043712, -0.03013020008802414, 0.03316964954137802, -0.0393051877617836, 0.008783255703747272, -0.005517262499779463, -0.016943518072366714, 0.04712091386318207, -0.010572000406682491, -0.0368887297809124, 0.019218385219573975, -0.05640917271375656, -0.008712461218237877, -0.07396624237298965, 0.022937463596463203, 0.019595956429839134, -0.017434360459446907, 0.08940891176462173, 0.0606757290661335, -0.007315446622669697, 0.020672036334872246, -0.06195947155356407, -0.021521572023630142, -0.002230031182989478, -0.09401528537273407, -0.004405786748975515, -0.02020007185637951, 0.001254245056770742, -0.030639922246336937, -0.03602031618356705, -0.01230882853269577, -0.026052428409457207, 0.07098343223333359, -0.041117530316114426, 0.0033698249608278275, -0.02699635736644268, -0.009816857054829597, -0.023522699251770973, 0.017358846962451935, 0.007976196706295013, -0.01858595386147499, -0.02407017908990383, -0.05123644322156906, -0.013951264321804047, 0.04209921509027481, 0.04696988686919212, -0.03571825847029686, 0.030696557834744453, 0.025939157232642174, -0.056522443890571594, -0.019161749631166458, -0.012271071784198284, -0.02950720675289631, 0.04402482882142067, 0.018850253894925117, -0.032773200422525406, 0.014404349960386753, 0.010713589377701283, -0.010949571616947651, -0.04946185648441315, -0.0017226696945726871, 0.003497255267575383, 0.0034429794177412987, -0.04610147327184677, 0.038663312792778015, -0.058976657688617706, 0.06505555659532547, 0.05244467034935951, 0.06222377344965935, -0.012384342961013317, 0.11040188372135162, -0.037662751972675323, -0.007206894923001528, 0.03471769392490387, -0.031111886724829674, -0.05818375572562218, -0.03020571358501911, 0.030243471264839172, -0.03258441388607025, 0.011043963953852654, -0.03838013485074043, 0.01627332903444767, 0.04073995724320412, 0.06558416038751602, -0.018047913908958435, 0.020426614210009575, 0.02812907099723816, 0.0212006364017725, 0.04013584181666374, 0.001572820940054953, 0.012195557355880737, 0.0037804339081048965, -0.07355091720819473, -0.0005489534814842045, 0.06509331613779068, 0.025844763964414597, -0.016084542497992516, -0.03683209419250488, 0.007235212717205286, -0.008783255703747272, -0.04874447360634804, 0.004382188431918621, 0.024353357031941414, 0.0037497563753277063, 0.03154609352350235, 0.004825834650546312, 0.040249112993478775, 0.0021627764217555523, 0.022805314511060715, -0.0006967372610233724, -0.007329605519771576, 0.0020554044749587774, 0.06871800124645233, -0.0274116862565279, -0.06732098758220673, 0.02123839221894741, -0.013535935431718826, 0.007419278845191002, -0.025467192754149437, -0.01310172863304615, 0.03143282234668732, -0.00461109122261405, -0.01218611840158701, 0.006673574913293123, 0.00589483417570591, -0.021464936435222626, -0.05946750193834305, 0.0019751705694943666, -0.008434002287685871, -0.025674857199192047, 0.10156671702861786, 0.02357933670282364, -0.07079464197158813, -0.018076231703162193, -0.005408710800111294, 0.011157236061990261, -0.006494228728115559, -0.046630073338747025, 0.011563125066459179, -0.004091930575668812, -0.012761914171278477, -0.004696044605225325, -0.02206904999911785, -0.046592313796281815, -0.015839122235774994, 0.005040578544139862, 0.04519530013203621, 0.04606371372938156, 0.005739085841923952, -0.009675268083810806, 0.06750977039337158, -0.0317160002887249, 0.012337146326899529, -0.06218601390719414, -0.006801005452871323, 0.014262760989367962, -0.017745858058333397, 0.0475739985704422, -0.021634843200445175, -0.007570307236164808, 0.009797978214919567, 0.033698249608278275, -0.00529071968048811, 0.013781357556581497, 0.03800256550312042, -0.004297235049307346, 0.0020105678122490644, 0.012252192944288254, 0.07441932708024979, -0.05905217304825783, -0.0517272874712944, -0.004205201752483845, -0.0014748884132131934, 0.024730928242206573, -0.04251454398036003, 0.01406453549861908, -0.015914635732769966, -0.02374924346804619, 0.008547273464500904, -0.0045922123827040195, -0.026184579357504845, -0.009113630279898643, 0.024334479123353958, -0.009113630279898643, 0.017434360459446907, 0.027298415079712868, 0.038531165570020676, 0.004165085032582283, -0.02733617089688778, 0.02003016509115696, 0.03643564134836197, 0.009500641375780106, -0.058976657688617706, 0.004228800069540739, -0.019463807344436646, -0.022559892386198044, 0.005861796438694, -0.019180629402399063, 0.027487199753522873, -0.011865181848406792, -0.022503256797790527, -0.0144798643887043, 0.007943158969283104, -0.01058143936097622, 0.028147950768470764, 0.06026040017604828, -0.03417021408677101, -0.05278448760509491, -0.027524957433342934, -0.06392284482717514, 0.015905195847153664, 0.03813471272587776, 0.09122125804424286, -0.000048413210606668144, 0.04436464235186577, 0.03626573458313942, 0.06547088921070099, 0.005323756951838732, -0.10081157088279724, 0.03201805800199509, -0.029809264466166496, -0.06626378744840622, 0.05523870140314102, -0.015914635732769966, 0.0056730108335614204, -0.00440342677757144, -0.062148258090019226, 0.0015834402292966843, -0.029601600021123886, 0.028601035475730896, 0.05803272873163223, 0.077213354408741, -0.03258441388607025, -0.009066433645784855, -0.03322628512978554, -0.02486307919025421, -0.03720966354012489, -0.03383040055632591, -0.04319417104125023, 0.012639204040169716, -0.014111732132732868, 0.006555583793669939, 0.015433232299983501, -0.037077516317367554, 0.015735289081931114, -0.019039038568735123, 0.00885877013206482, -0.059354230761528015, -0.023522699251770973, 0.04840465635061264, 0.01596183143556118, 0.023560456931591034, 0.07154978811740875, -0.01366808544844389, -0.009425126947462559, 0.007943158969283104, -0.005281280260533094, -0.05165177211165428, -0.027298415079712868, 0.09801754355430603, 0.009283537976443768, 0.0014902272960171103, 0.04092874377965927, -0.018869131803512573, -0.034189093858003616, 0.056522443890571594, -0.0009657569462433457, -0.08117786049842834, 0.027675986289978027, 0.06354527175426483, -0.020218949764966965, -0.04402482882142067, -0.010647513903677464, -0.043798286467790604, -0.004193402826786041, -0.011780228465795517, 0.000703226774930954, 0.0009604473016224802, 0.005234084092080593, -0.007084183860570192, -0.0796675756573677, 0.029035242274403572, 0.004162725061178207, -0.005904273129999638, 0.014357153326272964, 0.041117530316114426, -0.008089467883110046, 0.010336018167436123, -0.05701328441500664, 0.020766429603099823, 0.04519530013203621, -0.07706233114004135, -0.03558610752224922, -0.004842353519052267, -0.001160442247055471, -0.004731441847980022, -0.023635972291231155, -0.0196525938808918, 0.03726629912853241, -0.09560108929872513, 0.03360385820269585, 0.024296721443533897, -0.01312060747295618, -0.013441543094813824, -0.006211049854755402, -0.01034545712172985, -0.026429999619722366, 0.03713415190577507, 0.01896352507174015, -0.023447185754776, -0.054936643689870834, -0.030602164566516876, 0.046214744448661804, -0.01920894719660282, -0.028601035475730896, 0.06739649921655655, -0.015659775584936142, 0.014678088948130608, -0.03592592105269432, 0.018434925004839897, -0.015980711206793785, 0.001925614313222468, 0.039493970572948456, 0.02537279948592186, 0.014045657590031624, 0.004542656242847443, -0.026278970763087273, 0.010383214801549911, 0.027392806485295296, 0.019086236134171486, 0.012035089544951916, 0.010732468217611313, 0.05210485681891441, 0.04085322842001915, 0.06547088921070099, 0.02137054316699505, 0.04326968640089035, 0.027732621878385544, 0.02257877215743065, 0.045384086668491364, 0.019086236134171486, 0.005059457384049892, 0.02595803514122963, -0.004832914099097252, -0.008589750155806541, 0.043420713394880295, -0.054181501269340515, 0.03817247226834297, -0.0441380999982357, 0.021125121042132378, 0.04292987287044525, -0.04912204295396805, 0.05304878577589989, -0.01174247171729803, -0.03475544974207878, 0.0008194479742087424, -0.03033786453306675, 0.05078335851430893, -0.007626942824572325, -0.0043562306091189384, -0.014602575451135635, -0.07373970001935959, -0.005016980227082968, -0.021389421075582504, 0.06683014333248138, -0.06800061464309692, -0.010855178348720074, 0.03841789439320564, 0.01731164939701557, 0.06498004496097565, 0.008641665801405907, 0.007773251738399267, -0.02182362787425518, -0.0048753912560641766, 0.04814035817980766, 0.031734880059957504, 0.0465545579791069, 0.016348842531442642, 0.026429999619722366, 0.040324628353118896, 0.011081721633672714, -0.009434565901756287, -0.022937463596463203, 0.045346327126026154, -0.03196142241358757, 0.02637336403131485, 0.03838013485074043, 0.03164048492908478, 0.08646386116743088, 0.018916329368948936, -0.0009816857054829597, -0.006413994822651148, 0.007320166099816561, 0.030564406886696815, 0.027732621878385544, 0.016320524737238884, -0.06044918671250343, 0.004304314497858286, -0.0056918892078101635, -0.02478756383061409, 0.048178113996982574, 0.018699225038290024, -0.010317139327526093, 0.020181192085146904, -0.0292995423078537, -0.038078077137470245, -0.050254758447408676, 0.0008159082499332726, -0.014517621137201786, 0.00173918844666332, 0.04493100196123123, 0.022805314511060715, -0.00865110568702221, 0.007740214467048645, 0.03592592105269432, 0.004785717930644751, -0.032603293657302856, 0.09560108929872513, -0.01139321830123663, -0.04100425913929939, 0.0465545579791069, 0.005753244739025831, 0.010430410504341125, -0.03926742821931839, 0.006017544772475958, -0.013384907506406307, -0.00537095358595252, 0.01703791134059429, -0.012997896410524845, 0.043458472937345505, 0.0006961473263800144, 0.003829990280792117 ]
18,529
grafana_client.api
__init__
null
def __init__( self, auth=None, host="localhost", port=None, url_path_prefix="", protocol="http", verify=True, timeout=DEFAULT_TIMEOUT, user_agent: str = None, organization_id: int = None, ): self.client = AsyncGrafanaClient( auth, host=host, port=port, url_path_prefix=url_path_prefix, protocol=protocol, verify=verify, timeout=timeout, user_agent=user_agent, organization_id=organization_id, ) self.url = None self.admin = AsyncAdmin(self.client) self.alerting = AsyncAlerting(self.client) self.alertingprovisioning = AsyncAlertingProvisioning(self.client) self.dashboard = AsyncDashboard(self.client, self) self.dashboard_versions = AsyncDashboardVersions(self.client) self.datasource = AsyncDatasource(self.client, self) self.folder = AsyncFolder(self.client) self.health = AsyncHealth(self.client) self.organization = AsyncOrganization(self.client) self.organizations = AsyncOrganizations(self.client, self) self.search = AsyncSearch(self.client) self.user = AsyncUser(self.client) self.users = AsyncUsers(self.client) self.rbac = AsyncRbac(self.client) self.teams = AsyncTeams(self.client, self) self.annotations = AsyncAnnotations(self.client) self.snapshots = AsyncSnapshots(self.client) self.notifications = AsyncNotifications(self.client) self.plugin = AsyncPlugin(self.client) self.serviceaccount = AsyncServiceAccount(self.client) self.libraryelement = AsyncLibraryElement(self.client, self) self._grafana_info = None
(self, auth=None, host='localhost', port=None, url_path_prefix='', protocol='http', verify=True, timeout=5.0, user_agent: Optional[str] = None, organization_id: Optional[int] = None)
[ -0.00038539283559657633, -0.05452294647693634, -0.05249103531241417, 0.0022600307129323483, 0.010893301106989384, 0.02434530481696129, -0.04078873246908188, -0.013734213076531887, -0.07190707325935364, -0.008823761716485023, 0.04368608817458153, 0.021335065364837646, -0.016236474737524986, 0.00015065891784615815, -0.008795540779829025, 0.012106803245842457, -0.020469622686505318, 0.02498498000204563, 0.0304410383105278, -0.04346032068133354, -0.05275443196296692, 0.03377111256122589, -0.00263631041161716, 0.052001871168613434, 0.0011282515479251742, 0.03932124003767967, -0.020018085837364197, -0.012840548530220985, 0.04899163171648979, -0.016236474737524986, 0.05234052240848541, -0.015022971667349339, 0.006462606135755777, 0.05979086458683014, 0.007986539043486118, -0.021598462015390396, 0.02261441759765148, 0.014261005446314812, -0.09858531504869461, 0.044626787304878235, -0.01054524164646864, -0.03367704525589943, 0.0045835585333406925, -0.02620789036154747, 0.0798465758562088, 0.007723143324255943, 0.03435434773564339, 0.04451390355825424, -0.05493685230612755, -0.042783014476299286, -0.06250007450580597, 0.005503092426806688, -0.026000935584306717, 0.05617857724428177, -0.02278374321758747, 0.11484060436487198, -0.030177641659975052, 0.04763702675700188, 0.014054051600396633, 0.010611090809106827, -0.0499323308467865, -0.014091678895056248, 0.03015882708132267, 0.019829945638775826, -0.011072034016251564, -0.02041318081319332, -0.074691541492939, 0.01594485715031624, -0.009877345524728298, 0.005324359517544508, 0.06682729721069336, 0.07273489236831665, 0.04090161621570587, -0.05847388505935669, 0.075632244348526, -0.004089691210538149, -0.0525662899017334, 0.006086326204240322, -0.03501283749938011, 0.005615976173430681, 0.013743620365858078, 0.019905202090740204, 0.015982484444975853, -0.022031184285879135, 0.07160604745149612, -0.04613190516829491, 0.0005291434936225414, -0.030723247677087784, -0.028446754440665245, -0.02460869960486889, -0.014326853677630424, -0.0625753328204155, 0.015719089657068253, -0.03286804258823395, -0.033281948417425156, 0.013339119963347912, -0.01934078335762024, -0.015512135811150074, -0.02092115767300129, -0.03798544779419899, -0.02874777838587761, -0.03843698278069496, -0.016866743564605713, 0.02293425425887108, 0.021504390984773636, -0.04786279425024986, -0.01833423413336277, -0.05155033618211746, 0.01464669220149517, 0.08127643913030624, -0.0057947090826928616, 0.04037482291460037, 0.01771337166428566, 0.055275507271289825, -0.017083104699850082, 0.019133828580379486, -0.028202172368764877, -0.036179304122924805, -0.008983680978417397, -0.033545345067977905, -0.005681825336068869, 0.04549223184585571, 0.016528090462088585, 0.06366654485464096, 0.03326313570141792, 0.04116501286625862, -0.02506023645401001, -0.006956472992897034, 0.024477003142237663, -0.03326313570141792, 0.044024739414453506, 0.013743620365858078, 0.014176342636346817, 0.03474944084882736, 0.056855879724025726, 0.022200509905815125, 0.004971597343683243, 0.0010494679445400834, -0.05392089858651161, 0.023686815053224564, -0.0399232879281044, 0.022106438875198364, -0.02163608931005001, -0.07439052313566208, 0.018324827775359154, 0.0015368679305538535, -0.06430622190237045, -0.09527405351400375, -0.02199355512857437, -0.038643937557935715, 0.03544555976986885, -0.07499256730079651, 0.03535148873925209, 0.025304818525910378, -0.044664416462183, -0.01499475073069334, -0.010498207062482834, -0.051324568688869476, 0.027675380930304527, -0.0014110492775216699, -0.03540793061256409, -0.024646328762173653, 0.03061036393046379, -0.034617744386196136, -0.04263250529766083, -0.008052388206124306, 0.032228365540504456, -0.061070214956998825, -0.05478634312748909, 0.0038004261441528797, -0.07002567499876022, -0.009364663623273373, -0.1082933321595192, 0.029387453570961952, -0.04214334115386009, 0.03905784711241722, 0.03403450921177864, 0.007360973861068487, 0.00639675697311759, 0.004863416776061058, -0.08150220662355423, 0.013611922040581703, -0.02434530481696129, -0.027637753635644913, -0.01904916577041149, 0.04026193916797638, 0.002481095027178526, 0.045755624771118164, 0.037684425711631775, 0.00962335616350174, -0.03230362385511398, 0.021297438070178032, 0.03648032993078232, 0.018795177340507507, 0.05997900292277336, -0.02393139712512493, -0.006599007174372673, 0.0074644507840275764, -0.004557689186185598, 0.02603856287896633, -0.006269762292504311, 0.02462751418352127, -0.004376604687422514, 0.024382932111620903, 0.031607504934072495, -0.009303518570959568, -0.006185099482536316, 0.032585833221673965, 0.00848510954529047, -0.00621802406385541, -0.06539743393659592, 0.01799558289349079, -0.05106117203831673, 0.028691336512565613, -0.02603856287896633, -0.026264332234859467, 0.03535148873925209, 0.03444841876626015, 0.03851224109530449, 0.02673468180000782, 0.04985707625746727, 0.00481167808175087, 0.02592567913234234, -0.07999709248542786, -0.03928361460566521, 0.046997349709272385, 0.04586850851774216, -0.023178836330771446, -0.013282678090035915, -0.03965989127755165, 0.03510690852999687, -0.020526064559817314, 0.05000758916139603, 0.02268967404961586, -0.010056078433990479, -0.00434368010610342, -0.0001581551186973229, 0.03879445046186447, -0.04214334115386009, 0.0009054233087226748, 0.031776830554008484, -0.01749701239168644, 0.018635258078575134, -0.018588222563266754, -0.0399232879281044, -0.006655449513345957, -0.05128693953156471, 0.016208253800868988, 0.0015227573458105326, -0.038982588797807693, -0.08330835402011871, -0.019547736272215843, 0.020601321011781693, -0.0024575775023549795, -0.043836597353219986, -0.05881253629922867, -0.00676833325996995, -0.010244217701256275, 0.06306450068950653, -0.006119250785559416, -0.0004303700407035649, -0.00048916379455477, -0.0557270422577858, 0.11897967755794525, -0.015935450792312622, -0.02434530481696129, 0.022031184285879135, -0.020770646631717682, -0.00492456229403615, 0.017224209383130074, 0.10573463141918182, 0.04451390355825424, 0.04827670007944107, 0.0005585403414443135, -0.014232784509658813, -0.011156696826219559, -0.037232886999845505, -0.01468432042747736, -0.011881035752594471, -0.03269871696829796, -0.0053290631622076035, -0.005672418512403965, 0.012586560100317001, -0.006274465937167406, 0.0028385608457028866, -0.06261296570301056, -0.01746879145503044, 0.04379897192120552, -0.04609427973628044, -0.023517489433288574, -0.002399959834292531, -0.04293352738022804, -0.03977277874946594, -0.04613190516829491, 0.01041354425251484, 0.010215996764600277, -0.0330749973654747, 0.09188753366470337, -0.02575635351240635, -0.02575635351240635, -0.007525596302002668, -0.025380073115229607, 0.01367777120321989, 0.002582220360636711, 0.034166209399700165, 0.0035111610777676105, 0.031776830554008484, 0.02250153385102749, 0.04394948482513428, 0.028634894639253616, -0.0006790675106458366, -0.0346553698182106, 0.049631308764219284, 0.04680921137332916, -0.03211548179388046, 0.01112847588956356, -0.005225585773587227, -0.027205031365156174, 0.042594876140356064, 0.035050466656684875, -0.04526646062731743, 0.050346240401268005, 0.010009042918682098, -0.0289171040058136, 0.02560584247112274, 0.004505950957536697, 0.037421029061079025, 0.0787929967045784, -0.03422265127301216, 0.013959981501102448, -0.04718548804521561, -0.033206693828105927, 0.003659321228042245, -0.017130138352513313, -0.05734504386782646, -0.03096782974898815, -0.006655449513345957, -0.02110929787158966, 0.022445091977715492, -0.05979086458683014, 0.02460869960486889, -0.01763811707496643, -0.022482719272375107, 0.04872823506593704, 0.003567602951079607, -0.050948288291692734, 0.008621511049568653, -0.07096637040376663, -0.02084590122103691, -0.07638480514287949, 0.026320774108171463, 0.030045943334698677, -0.03247294947504997, 0.05937695503234863, 0.06916023045778275, 0.0036169898230582476, 0.006006366573274136, -0.05313071236014366, -0.026678239926695824, 0.003442960325628519, -0.07856722921133041, -0.012031546793878078, -0.02972610667347908, -0.013753027655184269, -0.027280287817120552, -0.02453344501554966, 0.0019307858310639858, -0.036179304122924805, 0.08413616567850113, -0.044024739414453506, 0.03843698278069496, -0.032077856361866, -0.0023470453452318907, -0.012708851136267185, 0.017600487917661667, 0.014496180228888988, -0.035915907472372055, -0.024834468960762024, -0.06234956532716751, -0.010441765189170837, 0.023235278204083443, 0.05422192066907883, -0.005742970854043961, 0.023874955251812935, -0.00010972378368023783, -0.0650964081287384, -0.022031184285879135, 0.005211475305259228, -0.02225695177912712, 0.05964035168290138, 0.022200509905815125, -0.055012110620737076, 0.020977599546313286, 0.0006155702867545187, 0.02462751418352127, -0.01873873546719551, -0.009176524356007576, 0.016330543905496597, -0.016208253800868988, -0.03369585797190666, 0.03747747093439102, -0.05162559077143669, 0.06961176544427872, 0.04236910864710808, 0.05990374833345413, -0.02056369185447693, 0.10550886392593384, -0.014590250328183174, 0.012906397692859173, 0.04549223184585571, 0.0016156515339389443, -0.049556050449609756, -0.0373457707464695, 0.0196982491761446, -0.04609427973628044, -0.00811353325843811, -0.036273375153541565, 0.0215420201420784, 0.05407141149044037, 0.03096782974898815, -0.030403409153223038, 0.03226599469780922, 0.01941603794693947, -0.021259808912873268, 0.04504069313406944, 0.015766125172376633, 0.004717608448117971, -0.002982017584145069, -0.044438645243644714, -0.03747747093439102, 0.04406236857175827, 0.0594145841896534, -0.016885556280612946, -0.03463655710220337, 0.03429790586233139, 0.02329172007739544, -0.06012951582670212, 0.00455298600718379, 0.038041889667510986, -0.01742175593972206, 0.012605373747646809, -0.008202900178730488, 0.053958527743816376, -0.0019331375369802117, 0.00945403054356575, 0.0020542526617646217, -0.022049997001886368, 0.012407827191054821, 0.06174751743674278, -0.025079049170017242, -0.03111834079027176, 0.020789459347724915, 0.003624045057222247, -0.008659139275550842, -0.03458011522889137, -0.01658453233540058, 0.021692531183362007, 0.01838126964867115, -0.002495205495506525, 0.024420559406280518, 0.0018955095438286662, -0.043648459017276764, -0.044626787304878235, -0.03789137676358223, -0.01867288537323475, 0.003304207231849432, 0.09241432696580887, 0.03981040418148041, -0.02381851337850094, -0.016358764842152596, -0.023235278204083443, 0.017224209383130074, -0.016941998153924942, -0.004411880858242512, 0.012351385317742825, -0.008922534994781017, 0.017534639686346054, -0.034147392958402634, -0.02434530481696129, -0.04417525231838226, -0.007337456569075584, 0.024495815858244896, 0.04334743693470955, 0.053318850696086884, -0.005150330252945423, -0.009538693353533745, 0.055087365210056305, -0.04605665057897568, 0.01926552690565586, -0.03559607267379761, -0.012652409262955189, 0.02637721598148346, -0.03819240257143974, 0.017290057614445686, 0.004150836728513241, 0.0006479067960754037, 0.010705160908401012, 0.04334743693470955, -0.0304410383105278, 0.018004989251494408, 0.03409095108509064, -0.02558702789247036, 0.0399232879281044, -0.004609427880495787, 0.06441910564899445, -0.05749555677175522, -0.04545460268855095, -0.02524837665259838, -0.012125616893172264, 0.017083104699850082, -0.018973909318447113, 0.03491876646876335, -0.030365781858563423, -0.025210747495293617, -0.015446286648511887, 0.01871992088854313, -0.04842721298336983, -0.0035887688864022493, 0.024947352707386017, 0.008419261313974857, 0.020902343094348907, 0.04267013072967529, 0.050948288291692734, 0.004040304571390152, -0.023780884221196175, -0.007473858073353767, 0.041202642023563385, 0.034147392958402634, -0.04680921137332916, 0.004468322731554508, -0.014082272537052631, -0.0315510630607605, -0.019641807302832603, -0.012548931874334812, 0.035050466656684875, 0.015107634477317333, -0.04914214462041855, -0.023856140673160553, 0.0006302687106654048, -0.018089652061462402, 0.02314120903611183, 0.05847388505935669, -0.03508809208869934, -0.07333693653345108, -0.029613221064209938, -0.0698375329375267, 0.005761784967035055, 0.04323454946279526, 0.07119214534759521, 0.009736239910125732, 0.0646824985742569, 0.012614781036973, 0.028540823608636856, 0.004597669001668692, -0.09166176617145538, 0.019641807302832603, -0.019811132922768593, -0.058511510491371155, 0.055614158511161804, -0.009087157435715199, 0.023874955251812935, -0.0012158541940152645, -0.10611090809106827, 0.025003794580698013, -0.0027633048593997955, 0.005987552460283041, 0.050873029977083206, 0.05568941310048103, -0.023348161950707436, -0.0013452003477141261, -0.047712281346321106, -0.02726147323846817, -0.05106117203831673, -0.016866743564605713, -0.04748651385307312, 0.011485941708087921, -0.022971883416175842, 0.02927456982433796, 0.017656929790973663, -0.009392884559929371, 0.03032815270125866, -0.007055246736854315, -0.024834468960762024, -0.04891637712717056, -0.04157891869544983, 0.036612026393413544, 0.018964502960443497, 0.01728065125644207, 0.05155033618211746, -0.05418429523706436, 0.0004094982868991792, 0.002405839040875435, -0.02268967404961586, -0.017365314066410065, -0.0467715822160244, 0.07119214534759521, -0.0009359960677102208, 0.0022835482377558947, 0.01903035119175911, -0.038305286318063736, -0.044099994003772736, 0.07292302697896957, 0.001942544593475759, -0.052265267819166183, 0.011382464319467545, 0.03981040418148041, -0.018136687576770782, -0.01867288537323475, -0.024232421070337296, -0.04319692403078079, 0.003043163102120161, -0.02056369185447693, 0.005559534300118685, 0.0010365332709625363, 0.007158723659813404, -0.021805414929986, -0.048841118812561035, 0.034862324595451355, -0.013555480167269707, -0.0004500659415498376, 0.012426640838384628, 0.039095472544431686, 0.013414375483989716, 0.027825891971588135, -0.06103258579969406, 0.009543396532535553, 0.05979086458683014, -0.08323309570550919, -0.021598462015390396, 0.023987838998436928, -0.003163102315738797, -0.0038615716621279716, -0.06513403356075287, -0.03330076485872269, 0.025380073115229607, -0.06987516582012177, 0.03849342465400696, 0.027581309899687767, 0.02524837665259838, -0.014609063975512981, -0.0015662647783756256, -0.006979990750551224, -0.015756716951727867, 0.023178836330771446, 0.026847565546631813, -0.0014616119442507625, -0.0594145841896534, -0.0010330056538805366, 0.03333839029073715, 0.00490104453638196, -0.0037886674981564283, 0.0608820766210556, -0.018607037141919136, 0.011213138699531555, -0.05964035168290138, 0.037251703441143036, -0.002405839040875435, 0.01446795929223299, 0.04703497886657715, 0.040487710386514664, 0.01116610411554575, 0.006359128747135401, 0.009472844190895557, 0.021824229508638382, 0.02927456982433796, 0.00743152666836977, 0.010827451944351196, -0.001468667178414762, 0.03702593594789505, 0.040751103311777115, 0.039960917085409164, 0.018616443499922752, 0.06065630540251732, 0.04387422651052475, 0.025022607296705246, 0.04078873246908188, 0.013103945180773735, -0.01941603794693947, 0.03499402478337288, 0.006749519146978855, -0.027374356985092163, 0.02664061076939106, -0.04105212911963463, -0.006693077273666859, -0.043309807777404785, 0.03200259804725647, 0.04105212911963463, -0.017600487917661667, 0.052265267819166183, -0.027468426153063774, -0.042256224900484085, 0.006011070217937231, -0.03527623414993286, 0.045153576880693436, -0.00223533739335835, 0.02278374321758747, -0.02331053465604782, -0.10377797484397888, 0.02400665171444416, 0.013837690465152264, 0.07691159844398499, -0.06423096358776093, -0.03172038868069649, 0.03999854624271393, -0.006401460617780685, 0.047260746359825134, 0.01336734090000391, 0.018315419554710388, -0.013480224646627903, -0.01521111186593771, 0.051663219928741455, 0.036367446184158325, 0.06031765416264534, 0.017873290926218033, 0.022990696132183075, 0.021504390984773636, 0.005220882594585419, 0.0026339588221162558, -0.028277428820729256, 0.021429136395454407, -0.026508912444114685, -0.0004835783620364964, 0.03427909314632416, 0.004668221343308687, 0.1056593731045723, 0.006998804863542318, -0.007257496938109398, 0.005517202895134687, 0.03792900592088699, 0.00910597201436758, 0.003915661945939064, 0.011457720771431923, -0.05873728170990944, 0.008889610879123211, -0.03034696727991104, -0.0314946211874485, 0.046207163482904434, 0.013376747258007526, -0.0034194428008049726, 0.0457179993391037, -0.014213969931006432, -0.031438179314136505, -0.045605115592479706, 0.0010588748846203089, -0.036348629742860794, -0.01521111186593771, 0.03685660660266876, 0.005225585773587227, 0.012539524585008621, 0.012784106656908989, -0.015540356747806072, -0.004037952981889248, -0.019754691049456596, 0.11017473042011261, -0.022802557796239853, -0.06460724771022797, 0.049443166702985764, 0.023498674854636192, 0.006119250785559416, -0.05000758916139603, -0.0090589364990592, -0.04432576149702072, -0.003936827648431063, -0.0189080610871315, 0.006726001854985952, 0.04124026745557785, 0.022708486765623093, -0.0045294682495296 ]
18,531
grafana_client.api
GrafanaApi
null
class GrafanaApi: def __init__( self, auth=None, host="localhost", port=None, url_path_prefix="", protocol="http", verify=True, timeout=DEFAULT_TIMEOUT, user_agent: str = None, organization_id: int = None, ): self.client = GrafanaClient( auth, host=host, port=port, url_path_prefix=url_path_prefix, protocol=protocol, verify=verify, timeout=timeout, user_agent=user_agent, organization_id=organization_id, ) self.url = None self.admin = Admin(self.client) self.alerting = Alerting(self.client) self.alertingprovisioning = AlertingProvisioning(self.client) self.dashboard = Dashboard(self.client, self) self.dashboard_versions = DashboardVersions(self.client) self.datasource = Datasource(self.client, self) self.folder = Folder(self.client) self.health = Health(self.client) self.organization = Organization(self.client) self.organizations = Organizations(self.client, self) self.search = Search(self.client) self.user = User(self.client) self.users = Users(self.client) self.rbac = Rbac(self.client) self.teams = Teams(self.client, self) self.annotations = Annotations(self.client) self.snapshots = Snapshots(self.client) self.notifications = Notifications(self.client) self.plugin = Plugin(self.client) self.serviceaccount = ServiceAccount(self.client) self.libraryelement = LibraryElement(self.client, self) self._grafana_info = None def connect(self): try: self._grafana_info = self.health.check() except niquests.exceptions.ConnectionError as ex: logger.critical(f"Unable to connect to Grafana at {self.url or self.client.url_host}: {ex}") raise logger.info(f"Connected to Grafana at {self.url}: {self._grafana_info}") return self._grafana_info @property def version(self): if not self._grafana_info: self._grafana_info = self.health.check() version = self._grafana_info["version"] logger.info(f"Inquired Grafana version: {version}") return version @classmethod def from_url( cls, url: str = None, credential: Union[str, Tuple[str, str], niquests.auth.AuthBase] = None, timeout: Union[float, Tuple[float, float]] = DEFAULT_TIMEOUT, ): """ Factory method to create a `GrafanaApi` instance from a URL. Accepts an optional credential, which is either an authentication token, or a tuple of (username, password). """ # Sanity checks and defaults. if url is None: url = "http://admin:admin@localhost:3000" if credential is not None and not isinstance(credential, (str, Tuple, niquests.auth.AuthBase)): raise TypeError(f"Argument 'credential' has wrong type: {type(credential)}") original_url = url url = urlparse(url) # Use username and password from URL. if credential is None and url.username: credential = (url.username, url.password) # Optionally turn off SSL verification. verify = as_bool(parse_qs(url.query).get("verify", [True])[0]) if verify is False: warnings.filterwarnings("ignore", category=InsecureRequestWarning) grafana = cls( credential, protocol=url.scheme, host=url.hostname, port=url.port, url_path_prefix=url.path.lstrip("/"), verify=verify, timeout=timeout, ) grafana.url = original_url return grafana @classmethod def from_env(cls, timeout: Union[float, Tuple[float, float]] = None): """ Factory method to create a `GrafanaApi` instance from environment variables. """ if timeout is None: if "GRAFANA_TIMEOUT" in os.environ: try: timeout = float(os.environ["GRAFANA_TIMEOUT"]) except Exception as ex: raise ValueError( f"Unable to parse invalid `float` value from " f"`GRAFANA_TIMEOUT` environment variable: {ex}" ) if timeout is None: timeout = DEFAULT_TIMEOUT return cls.from_url( url=os.environ.get("GRAFANA_URL"), credential=os.environ.get("GRAFANA_TOKEN"), timeout=timeout )
(auth=None, host='localhost', port=None, url_path_prefix='', protocol='http', verify=True, timeout=5.0, user_agent: str = None, organization_id: int = None)
[ 0.009878314100205898, -0.09409044682979584, -0.04937185347080231, -0.0031522864010185003, 0.00600388552993536, -0.0012668296694755554, -0.03880343586206436, 0.004184974357485771, -0.057810813188552856, 0.022398732602596283, -0.014078075997531414, -0.01964818313717842, -0.016483573243021965, 0.01835670694708824, 0.020288992673158646, 0.00447580311447382, -0.019470728933811188, 0.02454790659248829, 0.04089346155524254, -0.04148497432470322, -0.0268153827637434, 0.007014391478151083, 0.006383441388607025, 0.03389385715126991, 0.022871945053339005, 0.03367696702480316, 0.027643505483865738, -0.007310149725526571, 0.028668800368905067, -0.01607937179505825, 0.017725756391882896, -0.026677362620830536, 0.0010172839974984527, 0.06483013182878494, -0.01534983515739441, -0.04704522341489792, -0.018770769238471985, -0.004465944599360228, -0.1220099925994873, 0.05280264467000961, -0.029063142836093903, -0.0077389986254274845, -0.0012347892625257373, -0.046887487173080444, 0.08454732596874237, 0.015724461525678635, 0.0021849116310477257, 0.07248040288686752, -0.0805644541978836, -0.018198970705270767, -0.035116322338581085, -0.04361443221569061, -0.021767782047390938, 0.05347302928566933, 0.003810347756370902, 0.060886695981025696, -0.012983771972358227, 0.015369552187621593, 0.005979239009320736, -0.0005526975728571415, -0.02582952380180359, -0.01135710347443819, 0.004889864008873701, 0.00035213676164858043, 0.017715899273753166, -0.0072312806732952595, -0.07886877655982971, 0.0265984944999218, 0.026677362620830536, 0.009355808608233929, 0.07220436632633209, 0.050712622702121735, 0.0373837985098362, -0.052289996296167374, 0.06948339194059372, 0.0073052202351391315, -0.03069967031478882, -0.017765192314982414, -0.01099233515560627, -0.015103370882570744, -0.002989619504660368, -0.006758068222552538, 0.018839778378605843, -0.01736098900437355, 0.08367977291345596, 0.0005717986496165395, 0.005974309518933296, -0.03470226004719734, 0.006378512363880873, -0.017696181312203407, -0.0005536218523047864, -0.05599683150649071, -0.0023660631850361824, -0.023660631850361824, -0.02300996519625187, -0.008192493580281734, -0.021038245409727097, -0.03213902562856674, 0.012875327840447426, -0.038211923092603683, -0.02993069961667061, -0.01788349449634552, -0.03890202194452286, 0.03898089379072189, 0.03371640294790268, -0.05441945418715477, -0.01418652106076479, -0.03543179854750633, 0.025376029312610626, 0.08454732596874237, -0.048938073217868805, -0.0006146219093352556, -0.002607598900794983, 0.019756628200411797, 0.0032410137355327606, 0.029319467023015022, -0.002274871338158846, -0.0023611339274793863, 0.0012803853023797274, -0.010775445960462093, -0.00753689743578434, 0.05615456774830818, 0.008202352561056614, 0.028451910242438316, 0.06561882048845291, 0.044363684952259064, -0.024469036608934402, 0.016523009166121483, 0.04369330033659935, -0.016818765550851822, 0.031212318688631058, 0.04542841389775276, -0.03158694505691528, 0.05603626370429993, 0.06822148710489273, 0.010933184064924717, 0.009119202382862568, 0.03067995421588421, -0.05587852746248245, 0.02807728387415409, -0.03955269232392311, 0.016503291204571724, -0.005215197801589966, -0.06897074729204178, -0.028274456039071083, -0.01866232417523861, -0.030955994501709938, -0.06810318678617477, -0.04937185347080231, -0.022536752745509148, 0.04499463737010956, -0.032533369958400726, 0.00518069276586175, 0.0034480441827327013, -0.03391357511281967, -0.0602557435631752, -0.014078075997531414, -0.028826536610722542, 0.0332234725356102, 0.009483969770371914, -0.0331248864531517, -0.021373437717556953, 0.03113344870507717, -0.04870146885514259, -0.04034137725830078, -0.0024646492674946785, 0.02170863002538681, -0.0054419455118477345, -0.012471125461161137, 0.02346346154808998, -0.058914974331855774, -0.02015097253024578, -0.10465886443853378, 0.00946425274014473, -0.01940171793103218, 0.053551897406578064, 0.015477997250854969, -0.02399582415819168, 0.06135990843176842, -0.0032779835164546967, -0.06680185347795486, -0.03415017947554588, -0.05154074355959892, -0.07082416117191315, -0.005663763731718063, 0.018967939540743828, 0.008019968867301941, 0.04578332230448723, 0.004086388275027275, 0.035648684948682785, 0.009814233519136906, 0.015675168484449387, 0.035668402910232544, 0.037935879081487656, 0.03898089379072189, -0.03635850548744202, -0.020308708772063255, -0.006141905672848225, 0.03860626369714737, 0.042786311358213425, -0.035609252750873566, 0.06822148710489273, 0.010814880952239037, 0.009089626371860504, 0.024843664839863777, -0.03732464835047722, -0.011928902007639408, -0.0025607706047594547, -0.035136040300130844, -0.013555570505559444, -0.05102809891104698, 0.028708234429359436, -0.055326446890830994, -0.02709142491221428, -0.03314460441470146, -0.05903327837586403, 0.08904284983873367, 0.026361888274550438, 0.024666208773851395, 0.04105119779706001, 0.055326446890830994, -0.03576698899269104, -0.005737703293561935, -0.07468873262405396, -0.0255337655544281, 0.052250564098358154, 0.04428481683135033, 0.004384610801935196, -0.03371640294790268, -0.10323922336101532, 0.0377189926803112, -0.04878033697605133, 0.02577037177979946, 0.02399582415819168, 0.02172834798693657, -0.026184434071183205, 0.04113006591796875, 0.04373273625969887, 0.0018176787998527288, -0.00753689743578434, 0.059112146496772766, -0.023621197789907455, 0.027505485340952873, 0.04771560803055763, -0.05315755307674408, -0.004692692309617996, -0.052013956010341644, 0.008498110808432102, 0.004633540753275156, -0.042273662984371185, -0.02091994322836399, -0.030482782050967216, 0.02224099449813366, 0.034091029316186905, -0.02123541757464409, -0.05647004395723343, -0.04925354942679405, -0.00793617032468319, 0.061951421201229095, -0.03249393403530121, -0.027209727093577385, 0.010381102561950684, -0.048425428569316864, 0.08785981684923172, -0.023029683157801628, 0.00934594962745905, 0.007704493589699268, -0.016256825998425484, 0.0342882014811039, -0.026499908417463303, 0.08730773627758026, 0.05075205862522125, 0.007275644689798355, -0.0036427516024559736, -0.019234122708439827, -0.0348205640912056, -0.021255135536193848, 0.01096276007592678, 0.021393155679106712, -0.04732126370072365, -0.04002590477466583, -0.03673313185572624, 0.030857408419251442, -0.02275364100933075, 0.0030044075101614, -0.015892058610916138, -0.004867682233452797, 0.07961802929639816, -0.00007309225475182757, -0.022379014641046524, 0.011899326927959919, -0.04396934062242508, -0.01341755036264658, -0.032848846167325974, -0.012835892848670483, 0.05288151279091835, -0.06573712080717087, 0.07484646886587143, -0.006762997712939978, -0.041445542126894, -0.007965746335685253, -0.014462561346590519, 0.022398732602596283, 0.00154656742233783, 0.019214404746890068, -0.009138919413089752, 0.03545151278376579, -0.00535814743489027, 0.04803108423948288, 0.03115316666662693, -0.007226351648569107, -0.053275857120752335, 0.028944840654730797, 0.018563738092780113, -0.030068719759583473, -0.046374838799238205, -0.0017227898351848125, -0.012027488090097904, 0.04621710255742073, 0.052447736263275146, 0.00459164148196578, 0.07405778020620346, -0.010213506408035755, 0.0035983878187835217, 0.0510675311088562, 0.007507321424782276, 0.04732126370072365, 0.048898641020059586, -0.011682437732815742, -0.025632351636886597, -0.03403187543153763, -0.0402822270989418, -0.009143848903477192, 0.009173423983156681, -0.032592520117759705, -0.027623789384961128, -0.021334003657102585, -0.028747668489813805, 0.021807216107845306, -0.013595005497336388, -0.004258913919329643, -0.0020148507319390774, -0.03980901464819908, 0.024646492674946785, 0.0025484473444521427, -0.02941805310547352, 0.0016845877980813384, -0.06313445419073105, -0.010164213366806507, -0.07220436632633209, -0.010637425817549229, 0.02450847253203392, 0.011090921238064766, 0.07421551644802094, 0.0805644541978836, -0.017272261902689934, 0.01664131134748459, -0.05055488646030426, -0.01835670694708824, -0.010252940468490124, -0.09243420511484146, -0.003369175596162677, -0.03911891207098961, 0.017430000007152557, -0.025139421224594116, -0.02760407142341137, 0.004226873628795147, -0.04566502198576927, 0.06029517948627472, -0.030601084232330322, 0.020032668486237526, -0.027978697791695595, -0.008315726183354855, -0.06380484253168106, 0.030009569600224495, 0.006437663920223713, 0.027781525626778603, -0.016286402940750122, -0.05331529304385185, 0.02196495421230793, 0.06471183151006699, 0.05422228202223778, -0.04416651278734207, 0.04775504395365715, 0.04191875457763672, -0.052013956010341644, -0.01611880585551262, -0.010183930397033691, -0.001152223558165133, 0.018770769238471985, -0.0028047708328813314, -0.05903327837586403, 0.04211592674255371, 0.037640124559402466, -0.005550390109419823, -0.02857021428644657, -0.03062080219388008, 0.0003792479110416025, -0.0036156403366476297, -0.028826536610722542, 0.05422228202223778, -0.050712622702121735, 0.048149388283491135, 0.040972329676151276, 0.049687329679727554, -0.024705644696950912, 0.08565148711204529, -0.016256825998425484, -0.023700067773461342, 0.020367860794067383, -0.028688516467809677, -0.05615456774830818, -0.0332234725356102, 0.045586153864860535, -0.0073052202351391315, 0.02271420694887638, -0.050949227064847946, 0.034623391926288605, 0.03592472895979881, 0.040203358978033066, -0.027209727093577385, -0.02375921793282032, 0.031508076936006546, 0.0353529267013073, 0.012973913922905922, 0.030068719759583473, -0.010489546693861485, -0.005072248168289661, -0.06400201469659805, -0.008236858062446117, 0.06514561176300049, 0.02147202380001545, -0.003790630493313074, -0.06203029304742813, 0.016700463369488716, -0.015754038468003273, -0.055129274725914, -0.0003530610119923949, 0.04318065568804741, 0.009760010987520218, 0.04960845783352852, -0.025159139186143875, 0.06553994864225388, 0.027229445055127144, -0.0034554381854832172, 0.030561650171875954, -0.035885293036699295, -0.0033322058152407408, 0.05367020145058632, -0.013644298538565636, -0.028274456039071083, -0.028037849813699722, -0.011189507320523262, -0.00223543681204319, -0.024685926735401154, -0.032848846167325974, -0.00931144505739212, 0.008409382775425911, 0.021511457860469818, 0.026361888274550438, 0.032809410244226456, -0.01866232417523861, -0.04574389010667801, -0.003300165291875601, -0.040459681302309036, -0.0007769806543365121, 0.10252940654754639, 0.021866368129849434, -0.04724239557981491, -0.022891661152243614, -0.0016217392403632402, 0.006491885986179113, -0.03036447800695896, -0.030344761908054352, 0.02091994322836399, 0.027446333318948746, 0.010144496336579323, -0.004894793499261141, -0.03633878752589226, -0.034643109887838364, -0.02427186630666256, 0.007300291210412979, 0.008226999081671238, 0.026440756395459175, 0.008093908429145813, -0.03217846155166626, 0.038468245416879654, -0.020841073244810104, 0.003987802658230066, -0.05083092674612999, -0.025178857147693634, 0.03249393403530121, -0.03602331131696701, 0.042786311358213425, -0.034347351640462875, 0.023838087916374207, 0.020062245428562164, 0.0020012950990349054, -0.02091994322836399, 0.013437267392873764, 0.03612189739942551, 0.00671370467171073, -0.036693695932626724, 0.030187023803591728, 0.07390004396438599, -0.05434058606624603, -0.06692015379667282, -0.00007513329182984307, -0.008645989932119846, 0.0255337655544281, -0.059664227068424225, 0.015576583333313465, 0.020032668486237526, -0.016956787556409836, -0.021274851635098457, 0.0059250169433653355, -0.027722373604774475, -0.013338681310415268, -0.0002683386846911162, -0.009976900182664394, 0.02021012455224991, 0.05516870692372322, 0.05410398170351982, 0.0027973768301308155, -0.013397833332419395, 0.015044218860566616, 0.039690710604190826, 0.0025238008238375187, -0.03651624172925949, 0.021353721618652344, -0.004825782962143421, -0.013003489002585411, -0.004258913919329643, -0.004581782966852188, 0.05540531501173973, -0.01940171793103218, -0.03196157142519951, -0.04732126370072365, 0.030068719759583473, -0.016000503674149513, 0.038685135543346405, 0.023128269240260124, -0.051185835152864456, -0.042786311358213425, -0.03902032598853111, -0.07283531129360199, -0.0014664663467556238, 0.03521490842103958, 0.0536307655274868, -0.015132945962250233, 0.06699902564287186, 0.02348317764699459, 0.059821967035532, 0.020643901079893112, -0.08084049820899963, 0.06502730399370193, -0.0028688516467809677, -0.03807390108704567, 0.0709424614906311, -0.016217391937971115, 0.0009932536631822586, -0.01892850548028946, -0.06199085712432861, 0.015359694138169289, -0.062424637377262115, 0.0009519707527942955, 0.05438002198934555, 0.0765027105808258, -0.04452142491936684, -0.00150097138248384, -0.032079875469207764, -0.0291617289185524, -0.011721871793270111, -0.01656244322657585, -0.044600293040275574, 0.01265843864530325, -0.029437771067023277, 0.02939833514392376, 0.01916511170566082, -0.023108551278710365, 0.015399128198623657, 0.00777843315154314, -0.03067995421588421, -0.07693649083375931, -0.029516639187932014, 0.03754153847694397, 0.031527791172266006, -0.009735364466905594, 0.05729816481471062, -0.023818369954824448, -0.01606951281428337, 0.004921904299408197, 0.0007098189671523869, -0.03785701096057892, -0.06277954578399658, 0.09653538465499878, 0.018248263746500015, -0.0120176300406456, 0.055287010967731476, -0.004424045328050852, -0.027722373604774475, 0.048188820481300354, 0.008355161175131798, -0.09566782414913177, 0.01584276556968689, 0.04538898169994354, -0.016730038449168205, -0.010893750004470348, 0.0020703054033219814, -0.056351739913225174, 0.00793124083429575, -0.01912567764520645, -0.037935879081487656, 0.011347245424985886, 0.0006201673531904817, 0.0015416380483657122, -0.05236886814236641, 0.04318065568804741, 0.002614992903545499, -0.025632351636886597, 0.014797753654420376, 0.03140949085354805, -0.030305325984954834, 0.026243584230542183, -0.051461875438690186, 0.009094555862247944, 0.05343359708786011, -0.07831669598817825, -0.03501773625612259, -0.0054912385530769825, 0.023581763729453087, -0.0011682437034323812, -0.05883610621094704, -0.02525772526860237, -0.004140610806643963, -0.05027884244918823, 0.05686438828706741, 0.021610043942928314, -0.035628970712423325, 0.030443347990512848, -0.0070488969795405865, 0.002352507784962654, -0.02046644687652588, 0.06360767036676407, 0.011406396515667439, -0.03014758974313736, -0.05126470327377319, -0.025139421224594116, 0.050476014614105225, -0.026775948703289032, -0.03925693407654762, 0.051698483526706696, -0.0051215412095189095, 0.004803601186722517, -0.06155708059668541, -0.009671283885836601, -0.00995225366204977, 0.038428809493780136, 0.03221789374947548, 0.018780626356601715, 0.020860791206359863, 0.009617061354219913, 0.018967939540743828, -0.00002828570177371148, -0.03754153847694397, 0.010213506408035755, 0.03446565568447113, -0.022063540294766426, 0.04491576924920082, 0.07228323072195053, 0.047400135546922684, -0.003923721611499786, 0.05008167400956154, 0.02780124358832836, 0.021629761904478073, 0.031291186809539795, 0.02196495421230793, 0.022931097075343132, 0.0046113585121929646, 0.004921904299408197, -0.009000899270176888, 0.060374047607183456, -0.034899432212114334, 0.04554671794176102, -0.022871945053339005, 0.018208827823400497, 0.036220483481884, -0.0327896922826767, 0.019303131848573685, 0.020249558612704277, -0.05994027107954025, 0.004840570967644453, -0.0038251355290412903, 0.02322685346007347, -0.018494727090001106, -0.016907494515180588, -0.029201164841651917, -0.04034137725830078, -0.0030783468391746283, 0.00829600915312767, 0.03582614287734032, -0.0301278717815876, -0.0015675169415771961, 0.07997293770313263, 0.029753245413303375, 0.05753477290272713, 0.02758435346186161, -0.01864260621368885, -0.02480422891676426, -0.024212714284658432, 0.04322008788585663, 0.036141615360975266, 0.07326909154653549, 0.023345157504081726, 0.02606613002717495, 0.04933241754770279, 0.0041923681274056435, -0.006299643311649561, -0.04732126370072365, 0.036910586059093475, -0.008631201460957527, 0.023581763729453087, 0.029299750924110413, 0.01785391941666603, 0.09140890836715698, -0.0005021722754463553, -0.006511603482067585, -0.03915834799408913, -0.018751051276922226, -0.009410031139850616, 0.013033065013587475, 0.048188820481300354, -0.04621710255742073, 0.009572697803378105, -0.018494727090001106, -0.04168214648962021, 0.0531969889998436, 0.00007436308806063607, 0.01715395785868168, 0.020269274711608887, -0.016907494515180588, -0.013358399271965027, -0.057100992649793625, -0.019362283870577812, -0.019845355302095413, 0.00606796657666564, 0.0485042966902256, -0.01656244322657585, -0.02271420694887638, 0.018997516483068466, 0.015142804943025112, -0.025494331493973732, 0.0017375777242705226, 0.07587175816297531, -0.029575791209936142, -0.048938073217868805, 0.012431690469384193, 0.026125282049179077, 0.03273054212331772, -0.044797465205192566, 0.01534983515739441, -0.009355808608233929, 0.020900225266814232, 0.006511603482067585, -0.00499337911605835, 0.049411289393901825, -0.007157341577112675, -0.001478789490647614 ]
18,532
grafana_client.api
__init__
null
def __init__( self, auth=None, host="localhost", port=None, url_path_prefix="", protocol="http", verify=True, timeout=DEFAULT_TIMEOUT, user_agent: str = None, organization_id: int = None, ): self.client = GrafanaClient( auth, host=host, port=port, url_path_prefix=url_path_prefix, protocol=protocol, verify=verify, timeout=timeout, user_agent=user_agent, organization_id=organization_id, ) self.url = None self.admin = Admin(self.client) self.alerting = Alerting(self.client) self.alertingprovisioning = AlertingProvisioning(self.client) self.dashboard = Dashboard(self.client, self) self.dashboard_versions = DashboardVersions(self.client) self.datasource = Datasource(self.client, self) self.folder = Folder(self.client) self.health = Health(self.client) self.organization = Organization(self.client) self.organizations = Organizations(self.client, self) self.search = Search(self.client) self.user = User(self.client) self.users = Users(self.client) self.rbac = Rbac(self.client) self.teams = Teams(self.client, self) self.annotations = Annotations(self.client) self.snapshots = Snapshots(self.client) self.notifications = Notifications(self.client) self.plugin = Plugin(self.client) self.serviceaccount = ServiceAccount(self.client) self.libraryelement = LibraryElement(self.client, self) self._grafana_info = None
(self, auth=None, host='localhost', port=None, url_path_prefix='', protocol='http', verify=True, timeout=5.0, user_agent: Optional[str] = None, organization_id: Optional[int] = None)
[ -0.0010692535433918238, -0.06397336721420288, -0.0357842743396759, -0.009758489206433296, -0.00668829632923007, 0.006107321474701166, -0.03279910236597061, -0.015010879375040531, -0.07326896488666534, 0.032742422074079514, 0.002467962447553873, -0.003119787899777293, -0.017495373263955116, 0.010825971141457558, 0.0000874562028911896, 0.011921793222427368, -0.02371133305132389, 0.021859770640730858, 0.042056914418935776, -0.03773030266165733, -0.034631770104169846, 0.003211893606930971, 0.015908321365714073, 0.07682093977928162, 0.0072739943861961365, 0.021708622574806213, -0.02014046348631382, -0.01770320162177086, 0.0386749804019928, -0.0131026366725564, 0.026035232469439507, -0.020367184653878212, -0.004836733918637037, 0.05856982618570328, -0.007236207369714975, -0.03251570090651512, 0.010835417546331882, 0.00578613206744194, -0.09696140140295029, 0.07126625627279282, -0.029681676998734474, -0.003542529884725809, 0.02701769396662712, -0.025789616629481316, 0.07481823116540909, 0.026413101702928543, 0.045986760407686234, 0.05305292457342148, -0.06544705480337143, -0.02322010137140751, -0.07319338619709015, -0.010703163221478462, -0.010410314425826073, 0.044021837413311005, -0.033573735505342484, 0.08071299642324448, -0.00598923722282052, 0.04557110369205475, 0.0018964342307299376, 0.019516978412866592, -0.0524861216545105, 0.0028033219277858734, 0.026431996375322342, 0.01007023174315691, 0.012498045340180397, -0.0028623640537261963, -0.06922575831413269, 0.014869178645312786, -0.00086969108087942, 0.010259166359901428, 0.07073723524808884, 0.05686940997838974, 0.027112161740660667, -0.047347091138362885, 0.09288040548563004, -0.00925781112164259, -0.043228309601545334, -0.007004762068390846, -0.02813241071999073, 0.004744628444314003, 0.028907043859362602, 0.007637694478034973, 0.003242595586925745, -0.0032567656598985195, 0.10293174535036087, -0.01875179074704647, 0.00779356574639678, -0.01850617490708828, 0.0009682914824225008, -0.0010533122112974524, -0.008298966102302074, -0.07085059583187103, -0.0008200956508517265, -0.030512990429997444, -0.02344682440161705, 0.005762515123933554, -0.02869921550154686, -0.009711255319416523, -0.011128267273306847, -0.024164777249097824, -0.026866545900702477, -0.006447404157370329, -0.055055636912584305, 0.035179682075977325, 0.035198576748371124, -0.01903519406914711, -0.026942120864987373, -0.06310426443815231, 0.031911108642816544, 0.09461861103773117, -0.03011622652411461, 0.042623717337846756, 0.009352278895676136, 0.051994889974594116, -0.011487243697047234, 0.01848728209733963, -0.020272716879844666, -0.03064524382352829, 0.0010409133974462748, -0.028226876631379128, 0.009607341140508652, 0.047876108437776566, 0.018543962389230728, 0.051503658294677734, 0.06877230852842331, 0.020839521661400795, -0.03663448244333267, -0.020367184653878212, 0.03329033404588699, -0.018043285235762596, 0.05411096289753914, 0.024372605606913567, -0.015861086547374725, 0.016087809577584267, 0.052297186106443405, -0.012668086215853691, 0.022010918706655502, 0.015813853591680527, -0.06540927290916443, 0.030834179371595383, -0.036577802151441574, 0.025317279621958733, -0.0016720740823075175, -0.06574935466051102, -0.025260599330067635, 0.012082388624548912, -0.04360618069767952, -0.09333385527133942, -0.043190523982048035, -0.015247047878801823, 0.02569514885544777, -0.07640527933835983, 0.021651942282915115, 0.007297611329704523, -0.02535506710410118, -0.04243478551506996, -0.010892098769545555, -0.05747400224208832, 0.035765379667282104, 0.020027101039886475, -0.014122885651886463, -0.03561423346400261, 0.030512990429997444, -0.01904463954269886, -0.06023245304822922, -0.011288861744105816, 0.012422471307218075, -0.036577802151441574, -0.04473979026079178, 0.00268996087834239, -0.06023245304822922, -0.02871810831129551, -0.12333671748638153, 0.02701769396662712, -0.053657516837120056, 0.041565682739019394, 0.028529172763228416, 0.009442023001611233, 0.022464362904429436, -0.00199916772544384, -0.07965496182441711, -0.001541000441648066, -0.02561957575380802, -0.041225600987672806, -0.0043218862265348434, 0.024202562868595123, 0.006230128929018974, 0.06503140181303024, 0.022256534546613693, 0.028812576085329056, -0.0027419179677963257, 0.002850555581972003, 0.017448140308260918, 0.032194510102272034, 0.02095288224518299, -0.034046072512865067, 0.006329319905489683, -0.025846296921372414, -0.012913702055811882, 0.03478292003273964, -0.007174803875386715, 0.050936855375766754, 0.0008065159781835973, 0.014869178645312786, 0.024637114256620407, 0.0027938750572502613, -0.007637694478034973, 0.04303937405347824, -0.015010879375040531, -0.01789213716983795, -0.021066244691610336, 0.004610012285411358, -0.05566022917628288, 0.00010716152610257268, -0.04470200091600418, -0.053695306181907654, 0.01547376997768879, 0.03223229944705963, 0.014217352494597435, 0.03281799703836441, 0.04908529296517372, 0.00049979193136096, 0.001545723876915872, -0.07394912838935852, -0.041263386607170105, 0.058003019541502, 0.06522033363580704, -0.01716473698616028, -0.017986604943871498, -0.0663539469242096, 0.03619993105530739, -0.03610546514391899, 0.03372488543391228, 0.032969143241643906, -0.009427852928638458, -0.035727594047784805, 0.022747764363884926, 0.04273707792162895, -0.047347091138362885, -0.013480506837368011, 0.05207046493887901, -0.045117661356925964, 0.048707421869039536, 0.012734213843941689, -0.02405141480267048, -0.0038353789132088423, -0.0524105466902256, 0.006433234084397554, 0.0026781526394188404, -0.0525239072740078, -0.06540927290916443, -0.016739634796977043, 0.02231321483850479, 0.018855705857276917, -0.015889426693320274, -0.06865894794464111, -0.029889505356550217, -0.03062635101377964, 0.05728507041931152, -0.02429703064262867, -0.016371211037039757, 0.0031646599527448416, -0.02652646228671074, 0.10973340272903442, -0.010476441122591496, -0.014170119538903236, 0.005285454448312521, -0.007477099541574717, 0.015946106985211372, -0.008672112599015236, 0.10716389119625092, 0.03361152112483978, 0.042661506682634354, 0.009815169498324394, -0.03778698295354843, -0.037975918501615524, -0.0468936488032341, 0.01596500165760517, -0.002439622301608324, -0.012979828752577305, -0.012583065778017044, -0.01790158450603485, 0.014255139976739883, 0.003603933611884713, -0.006178171839565039, -0.020593905821442604, -0.021104030311107635, 0.05297735333442688, -0.04530659317970276, -0.027131054550409317, -0.002982810139656067, -0.014226799830794334, -0.026091912761330605, -0.03283688798546791, -0.007708544842898846, 0.03372488543391228, -0.04103666543960571, 0.07829463481903076, 0.003398466855287552, -0.022804444655776024, -0.010722056962549686, -0.02783011458814144, 0.012800341472029686, -0.0013992992462590337, -0.006003407295793295, 0.01708916388452053, 0.03982748091220856, 0.020008208230137825, 0.07912594825029373, 0.021916450932621956, 0.01434960775077343, -0.0303051620721817, 0.03952518478035927, 0.04118781164288521, -0.021349646151065826, -0.006839444395154715, -0.0179110299795866, -0.04330388456583023, 0.0332147590816021, 0.04526880756020546, -0.005143753252923489, 0.07153075933456421, 0.006126214750111103, -0.02208649180829525, 0.03483960032463074, 0.012658639810979366, 0.05543350800871849, 0.06181950494647026, -0.021916450932621956, -0.0009688818827271461, -0.02261551097035408, -0.022162066772580147, 0.022502148523926735, -0.025544000789523125, -0.05898548290133476, -0.04912307858467102, -0.00995687022805214, -0.01656014658510685, 0.0103630805388093, -0.03510410711169243, 0.0331391841173172, -0.014255139976739883, -0.03117426298558712, 0.026356421411037445, 0.013924503698945045, -0.03661558777093887, -0.025241706520318985, -0.0717952698469162, -0.017807116732001305, -0.08124201744794846, 0.023012273013591766, 0.03750358149409294, -0.009711255319416523, 0.047044795006513596, 0.07557396590709686, -0.01157226413488388, -0.014793604612350464, -0.03281799703836441, -0.0179204773157835, 0.014755817130208015, -0.055093422532081604, -0.010013550519943237, -0.04111224040389061, -0.012101281434297562, -0.023503504693508148, -0.027395563200116158, 0.00979627575725317, -0.03497185558080673, 0.06593828648328781, -0.03398939222097397, 0.05959007516503334, -0.03892059251666069, -0.0038731659296900034, -0.04379511624574661, 0.039638545364141464, 0.009881296195089817, 0.0068583376705646515, -0.0030560223385691643, -0.07606519758701324, -0.0021633049473166466, 0.030154014006257057, 0.07413806021213531, -0.026564249768853188, 0.025336172431707382, 0.003688954282552004, -0.0552445724606514, -0.02425924502313137, 0.004262844100594521, 0.0018066902412101626, 0.05388424172997475, 0.013499400578439236, -0.0715685486793518, 0.03121204860508442, 0.016645167022943497, 0.005672771017998457, -0.014708584174513817, -0.023673545569181442, 0.010278060100972652, -0.01790158450603485, -0.022728871554136276, 0.05732285603880882, -0.07425142824649811, 0.03359263017773628, 0.040998879820108414, 0.05826753005385399, -0.02295559272170067, 0.08267792314291, -0.0008112392970360816, 0.0021491346415132284, 0.04387068748474121, 0.026035232469439507, -0.04439970850944519, -0.03332811966538429, 0.024108096957206726, -0.05021890252828598, 0.00662216916680336, -0.04364396631717682, 0.02040497213602066, 0.0524483360350132, 0.020518332719802856, -0.04632684215903282, 0.012960935942828655, 0.030418522655963898, 0.0014477138174697757, 0.04001641646027565, 0.031079795211553574, -0.024372605606913567, 0.0012540555326268077, -0.03283688798546791, -0.038221534341573715, 0.03952518478035927, 0.046515777707099915, -0.011175500229001045, -0.04825397953391075, 0.028585853055119514, 0.00939006544649601, -0.06578713655471802, 0.0005668047815561295, 0.033271439373493195, 0.005011498928070068, 0.027112161740660667, -0.03141987696290016, 0.08373595774173737, 0.0124319177120924, -0.009380619041621685, 0.005875876173377037, -0.04530659317970276, 0.007850246503949165, 0.02675318531692028, -0.013452166691422462, -0.021028457209467888, -0.008931898511946201, -0.0039038679096847773, -0.03009733371436596, -0.026356421411037445, -0.030191801488399506, 0.005342134740203619, 0.0248638354241848, 0.027187734842300415, 0.026904333382844925, 0.01202570740133524, -0.028340239077806473, -0.04610012099146843, -0.04462642967700958, -0.040734369307756424, 0.00922474730759859, 0.07769004255533218, 0.0386749804019928, -0.00675442349165678, -0.0008301328052766621, -0.020064888522028923, 0.027962367981672287, -0.04164125770330429, 0.006603275425732136, 0.030550777912139893, 0.013225444592535496, 0.013414379209280014, -0.05399760231375694, -0.05210825055837631, -0.0331013984978199, -0.026639824733138084, 0.005417708773165941, 0.03429168835282326, 0.04364396631717682, -0.005502729676663876, -0.031873323023319244, 0.04526880756020546, -0.03733354061841965, -0.0065513183362782, -0.023560184985399246, -0.017570948228240013, 0.035689808428287506, -0.06537148356437683, 0.012951488606631756, 0.006749700289219618, 0.026923226192593575, 0.014141779392957687, 0.04462642967700958, -0.0442107729613781, 0.018628982827067375, 0.03833489492535591, -0.016153935343027115, -0.005370475351810455, 0.007382632233202457, 0.07387355715036392, -0.05989237129688263, -0.029643889516592026, -0.01794881746172905, -0.0064993612468242645, 0.01987595297396183, -0.02730109728872776, 0.026110805571079254, -0.020915096625685692, -0.014094545505940914, -0.034310583025217056, 0.02624306082725525, -0.06540927290916443, -0.0012080026790499687, 0.015917766839265823, 0.03457508981227875, 0.014897518791258335, 0.05411096289753914, 0.06688296049833298, -0.014330714009702206, -0.00896023865789175, -0.00939951278269291, 0.017816564068198204, 0.027263309806585312, -0.017438692972064018, 0.022218747064471245, -0.013924503698945045, -0.03177885338664055, -0.03697456419467926, 0.003268574131652713, 0.04553331807255745, 0.027716754004359245, -0.05569801479578018, -0.04526880756020546, 0.018628982827067375, -0.031344301998615265, 0.027792327105998993, 0.0357842743396759, -0.03483960032463074, -0.07073723524808884, -0.02920933999121189, -0.0800328329205513, -0.007604630663990974, 0.029757250100374222, 0.061366062611341476, -0.0019035193836316466, 0.08192218095064163, -0.00036783269024454057, 0.021670835092663765, 0.040734369307756424, -0.07194641977548599, 0.0524105466902256, -0.006560765206813812, -0.020064888522028923, 0.077312171459198, 0.00013136881170794368, 0.014245693571865559, -0.01768430881202221, -0.08388710767030716, 0.03746579587459564, -0.01116605382412672, -0.01577606610953808, 0.051201365888118744, 0.030550777912139893, -0.0414523221552372, 0.008577645756304264, -0.04806504398584366, -0.023068953305482864, -0.038504935801029205, -0.008605985902249813, -0.054224323481321335, -0.006877231411635876, -0.03508521616458893, 0.035765379667282104, 0.017023036256432533, -0.02259661629796028, 0.003091447753831744, 0.007684927899390459, -0.02731999009847641, -0.04507987201213837, -0.04987882077693939, 0.02733888290822506, 0.03330922871828079, -0.012913702055811882, 0.03502853587269783, -0.04938758909702301, -0.00021269939315970987, -0.026091912761330605, -0.012819234281778336, -0.010655929334461689, -0.05581137537956238, 0.06469132006168365, 0.01407565176486969, -0.022464362904429436, 0.034367263317108154, -0.028056835755705833, -0.05301513895392418, 0.0524861216545105, 0.010013550519943237, -0.05762515217065811, 0.004442332312464714, 0.022407682612538338, -0.005233497358858585, 0.009862403385341167, -0.020631693303585052, -0.048442915081977844, 0.0023250803351402283, -0.01741980016231537, -0.019129661843180656, 0.007122846785932779, 0.014103991910815239, -0.01957365870475769, -0.025714043527841568, 0.031646598130464554, -0.008898834697902203, -0.009172790683805943, 0.013858377002179623, 0.041225600987672806, -0.016342870891094208, 0.04330388456583023, -0.06442680954933167, 0.005219327285885811, 0.07005707174539566, -0.08766580373048782, -0.012630299665033817, 0.03141987696290016, 0.020083783194422722, -0.03529304265975952, -0.07580069452524185, -0.03892059251666069, 0.0020676564890891314, -0.040469858795404434, 0.042661506682634354, 0.0131120840087533, 0.013707228936254978, 0.020858416333794594, 0.0014819583157077432, -0.004284099210053682, -0.011931240558624268, 0.030815286561846733, 0.020877309143543243, -0.010835417546331882, -0.06178171932697296, -0.0050776260904967785, 0.04111224040389061, 0.010032444261014462, -0.00551689974963665, 0.0635954961180687, -0.012120175175368786, 0.018884046003222466, -0.055584654211997986, 0.025827404111623764, 0.017344225198030472, 0.039865270256996155, 0.025827404111623764, 0.03512300178408623, 0.008525688201189041, 0.006782763637602329, 0.04829176515340805, 0.015643810853362083, 0.00965457409620285, -0.012960935942828655, 0.04160346835851669, -0.01337659265846014, 0.008280073292553425, 0.07617855817079544, 0.0442485585808754, 0.01046699471771717, 0.042623717337846756, 0.049009718000888824, 0.019091874361038208, 0.03149545192718506, 0.008969685062766075, 0.002223527990281582, 0.02095288224518299, -0.013395486399531364, -0.03533083200454712, 0.04281265288591385, -0.02983282506465912, -0.003967633470892906, -0.029719462618231773, 0.03332811966538429, 0.026828758418560028, -0.0054366025142371655, 0.017013588920235634, -0.026035232469439507, -0.08025955408811569, 0.0038731659296900034, -0.016956908628344536, 0.02949274145066738, -0.020008208230137825, 0.02322010137140751, -0.026337528601288795, -0.08464284241199493, 0.01659793220460415, 0.009153896942734718, 0.058872122317552567, -0.03776809200644493, -0.016191722825169563, 0.07617855817079544, -0.007595183793455362, 0.04632684215903282, 0.02065058797597885, -0.012224089354276657, -0.023919161409139633, -0.0331013984978199, 0.054224323481321335, 0.0468936488032341, 0.07572511583566666, 0.012469705194234848, 0.03417832776904106, 0.033573735505342484, 0.00046613789163529873, 0.012309109792113304, -0.03442394360899925, 0.0017027759458869696, -0.0026073020417243242, -0.012413023971021175, 0.02291780523955822, 0.017013588920235634, 0.1241680309176445, -0.009739595465362072, -0.007028379011899233, -0.012932595796883106, 0.014699136838316917, -0.0179110299795866, -0.0015008518239483237, 0.028623640537261963, -0.040734369307756424, 0.011912346817553043, -0.026923226192593575, -0.025827404111623764, 0.04942537471652031, -0.0015008518239483237, 0.012224089354276657, 0.05078570544719696, 0.010155252180993557, -0.024750474840402603, -0.050332263112068176, -0.010429208166897297, -0.03330922871828079, -0.0016720740823075175, 0.03807038813829422, -0.001406384282745421, -0.0010533122112974524, 0.01963033899664879, -0.02843470498919487, -0.0442107729613781, -0.008842154406011105, 0.07806791365146637, -0.03944961354136467, -0.06877230852842331, 0.03208114951848984, 0.03773030266165733, 0.01060869637876749, -0.04587339982390404, -0.009243641048669815, -0.0635954961180687, 0.013017616234719753, -0.010306400246918201, 0.026639824733138084, 0.0552067831158638, 0.019460296258330345, 0.0023014636244624853 ]
18,533
grafana_client.api
connect
null
def connect(self): try: self._grafana_info = self.health.check() except niquests.exceptions.ConnectionError as ex: logger.critical(f"Unable to connect to Grafana at {self.url or self.client.url_host}: {ex}") raise logger.info(f"Connected to Grafana at {self.url}: {self._grafana_info}") return self._grafana_info
(self)
[ 0.002234670566394925, -0.1146998181939125, 0.01753086782991886, -0.0009680840885266662, 0.04030601307749748, 0.02271895483136177, 0.0067379591055214405, -0.008236323483288288, -0.017624516040086746, 0.006658358499407768, -0.02365543320775032, -0.022756414487957954, 0.048472099006175995, 0.009346050210297108, 0.04742324352264404, -0.04450143128633499, -0.05019522085785866, 0.009964125230908394, 0.051094237715005875, 0.02183866687119007, -0.048284802585840225, 0.017212465405464172, 0.051581207662820816, -0.010226339101791382, -0.017240559682250023, 0.05394113063812256, 0.020958377048373222, 0.002153899287804961, 0.04573758319020271, 0.0122304018586874, -0.029873646795749664, 0.01111599337309599, -0.02090218849480152, 0.051468830555677414, -0.01522713154554367, 0.0317840613424778, -0.01107853464782238, -0.04952095448970795, -0.0414297841489315, 0.05637597292661667, -0.02496650256216526, -0.03970666602253914, -0.017811810597777367, -0.016716131940484047, 0.06427984684705734, -0.000691237801220268, -0.02477920614182949, 0.059147950261831284, -0.004958651028573513, -0.060571394860744476, -0.05693786218762398, 0.014065898954868317, -0.013878603465855122, 0.045475371181964874, 0.002577655715867877, 0.02466682903468609, 0.004216492176055908, -0.01517094299197197, -0.008297194726765156, 0.013784955255687237, -0.030791396275162697, 0.014300018548965454, -0.0017090722685679793, 0.01629471592605114, 0.015985678881406784, -0.04480110481381416, -0.04161708056926727, 0.0008808745769783854, 0.02397383563220501, -0.017399759963154793, 0.09184975922107697, 0.059260327368974686, 0.0014421760570257902, -0.04982062801718712, 0.011069169268012047, -0.030192049220204353, -0.014833810739219189, -0.0056984685361385345, -0.012642452493309975, 0.0035609574988484383, -0.029236841946840286, 0.0413174070417881, 0.012192943133413792, -0.051393911242485046, 0.09274877607822418, -0.00877479836344719, -0.03277672827243805, 0.010881873778998852, -0.04232880473136902, -0.0030856949742883444, 0.02034030109643936, -0.029798729345202446, 0.0006625581881962717, 0.00039683253271505237, -0.027682289481163025, -0.02509761042892933, -0.015489345416426659, -0.013775590807199478, 0.03515538200736046, -0.0054456195794045925, -0.05487760901451111, 0.014374936930835247, -0.0062884497456252575, 0.024985231459140778, 0.005918540526181459, -0.05734990909695625, -0.004902462009340525, -0.018476709723472595, 0.010994250886142254, 0.06105836480855942, -0.017193734645843506, -0.035792186856269836, 0.05135645344853401, 0.0022018938325345516, 0.03627915680408478, -0.00004034903031424619, -0.003778688609600067, -0.025303633883595467, -0.02766355872154236, -0.010928697884082794, -0.046973735094070435, 0.05416588485240936, 0.05528965964913368, -0.01707199402153492, 0.030060943216085434, 0.07068535685539246, -0.031240904703736305, -0.04982062801718712, 0.03309513255953789, 0.009748735465109348, 0.0675387904047966, 0.03257070481777191, -0.014215735718607903, 0.07821463793516159, 0.010029679164290428, 0.01551743969321251, 0.02809433825314045, 0.009842383675277233, -0.031671684235334396, 0.011677879840135574, -0.0159482192248106, 0.006236943416297436, -0.03772133216261864, -0.03215865418314934, -0.005675056483596563, 0.019497470930218697, -0.015245861373841763, -0.02215706929564476, 0.01551743969321251, -0.0507945641875267, 0.03208373486995697, -0.07390683889389038, 0.028937168419361115, -0.026109006255865097, -0.07836447656154633, -0.05210563540458679, -0.007351351901888847, -0.035230301320552826, 0.03064155951142311, 0.018392426893115044, -0.04157962277531624, -0.04236626252532005, 0.017249925062060356, 0.0011413325555622578, -0.07173421233892441, -0.011780892498791218, -0.002917128847911954, -0.002790704369544983, 0.006817559711635113, -0.02309354580938816, -0.04427667707204819, -0.024741748347878456, -0.06693944334983826, -0.0042867278680205345, 0.019553659483790398, 0.017465313896536827, 0.01819576695561409, 0.007182786241173744, 0.055776629596948624, -0.03519284352660179, -0.07761529088020325, -0.01712818257510662, -0.06315607577562332, -0.03213992342352867, -0.004455293994396925, 0.03309513255953789, 0.03243959695100784, 0.004635565914213657, 0.025266176089644432, 0.05686294287443161, 0.015695370733737946, 0.03208373486995697, -0.010535377077758312, 0.03993142023682594, 0.07046060264110565, -0.028056880459189415, 0.004284386523067951, 0.01779308170080185, -0.003923842683434486, 0.04427667707204819, 0.0034626272972673178, 0.027569910511374474, -0.04933365806937218, 0.05547695606946945, 0.0012185919331386685, -0.008924635127186775, -0.025434741750359535, 0.009598899632692337, -0.05289227515459061, -0.0030552593525499105, -0.08375859260559082, 0.00010337838466512039, -0.09140025079250336, -0.0012045447947457433, -0.0309037733823061, -0.04169199988245964, 0.06705182045698166, -0.019403822720050812, 0.017727527767419815, 0.02234436385333538, 0.031428199261426926, -0.032495785504579544, 0.04888414964079857, -0.03287037834525108, -0.03828321769833565, 0.06199484318494797, -0.013944157399237156, -0.008592185564339161, 0.008896540850400925, -0.09604518115520477, 0.006119883619248867, 0.0027509040664881468, 0.026933105662465096, 0.029161924496293068, -0.003411120967939496, 0.009683182463049889, 0.024179860949516296, 0.034743331372737885, -0.0076369778253138065, -0.010095232166349888, -0.001362575450912118, -0.030229508876800537, 0.014702703803777695, 0.01621979847550392, -0.03258943185210228, -0.06206975877285004, -0.019815873354673386, 0.009383508935570717, -0.017961647361516953, -0.005253641400486231, -0.03127836436033249, -0.03654136881232262, 0.0749182403087616, -0.017381031066179276, -0.03687850385904312, -0.05573916807770729, -0.04420176148414612, 0.029854917898774147, 0.04262847825884819, -0.04382716864347458, 0.017680704593658447, 0.05150628834962845, -0.01784927025437355, 0.04015617445111275, -0.08083678036928177, 0.007421588059514761, 0.015124118886888027, 0.00508507527410984, 0.009481839835643768, -0.023018628358840942, 0.11642294377088547, 0.037477847188711166, 0.02766355872154236, -0.020808540284633636, -0.03358209878206253, -0.05394113063812256, -0.007819591090083122, -0.010338717140257359, 0.004270339384675026, -0.015966949984431267, -0.05169358476996422, -0.008339336141943932, -0.020508866757154465, -0.0290870051831007, -0.025809332728385925, -0.010760132223367691, 0.019759684801101685, 0.037178173661231995, -0.016369635239243507, -0.02384272962808609, -0.02715786173939705, -0.060758691281080246, -0.03356337174773216, -0.023636704310774803, -0.001599036157131195, 0.04498840123414993, -0.019066691398620605, 0.06757625192403793, -0.03345099464058876, 0.005014839582145214, 0.0005358409835025668, -0.05637597292661667, -0.07109740376472473, 0.02185739576816559, 0.027494993060827255, -0.00850790273398161, 0.030360614880919456, 0.0357547290623188, 0.004865002818405628, 0.008760751225054264, -0.028131797909736633, -0.030604099854826927, 0.0695241242647171, 0.032495785504579544, -0.037552766501903534, -0.03777752071619034, -0.007969427853822708, 0.028674954548478127, 0.03749657794833183, 0.06465443968772888, 0.0002791874867398292, 0.09140025079250336, -0.018673371523618698, 0.01635090447962284, 0.011293924413621426, 0.031990088522434235, 0.05851114168763161, 0.031428199261426926, 0.010582201182842255, 0.004310139920562506, -0.024198589846491814, -0.04427667707204819, 0.019572390243411064, -0.02084599994122982, 0.01607932709157467, -0.04742324352264404, -0.008367430418729782, 0.009936030954122543, -0.036672476679086685, -0.030435534194111824, -0.03839559853076935, 0.0188419371843338, -0.018738923594355583, -0.0021152696572244167, 0.04352749511599541, -0.01323243323713541, -0.054016049951314926, -0.08480744808912277, -0.03390050306916237, -0.05101931840181351, -0.049595873802900314, 0.05712515488266945, -0.046224553138017654, 0.020490137860178947, 0.020452678203582764, -0.0011073851492255926, -0.02504142001271248, 0.0055018081329762936, -0.028637496754527092, 0.02015300653874874, -0.040530767291784286, -0.000025442204787395895, -0.008512584492564201, 0.006588122341781855, -0.06405509263277054, -0.01557362824678421, -0.011368842795491219, 0.009945396333932877, 0.059897132217884064, -0.000003850168013741495, 0.01923525705933571, -0.025490930303931236, -0.019460011273622513, -0.020677434280514717, 0.004045584704726934, 0.028862250968813896, 0.030042212456464767, 0.009547392837703228, -0.022943710908293724, -0.005525220185518265, 0.03818957135081291, 0.04637438803911209, -0.07746545970439911, -0.01142503134906292, 0.02996729500591755, -0.028262905776500702, -0.0470486544072628, -0.024142401292920113, -0.03288910537958145, 0.051581207662820816, -0.02389891818165779, -0.055776629596948624, -0.0036546052433550358, 0.026951836422085762, -0.005614185240119696, -0.0042750220745801926, 0.017512137070298195, -0.007791496813297272, -0.010984886437654495, -0.02034030109643936, 0.03154057636857033, -0.0807618573307991, 0.031372010707855225, 0.029030816629529, 0.0131387859582901, -0.0037365471944212914, 0.04019363597035408, -0.017493408173322678, 0.0015487003838643432, -0.02416113205254078, -0.005806163419038057, -0.024104943498969078, -0.020302841439843178, 0.06049647554755211, -0.05899811163544655, 0.03026696853339672, -0.02609027549624443, 0.015086660161614418, 0.06371796131134033, 0.09244910627603531, -0.05270497873425484, -0.059897132217884064, 0.03125963360071182, 0.002481666626408696, 0.006766053382307291, 0.010947427712380886, -0.009851748123764992, 0.013990980572998524, -0.01584520749747753, -0.03654136881232262, 0.05450301617383957, 0.02558457851409912, 0.05311702936887741, -0.060758691281080246, -0.005768704228103161, -0.0036452405620366335, -0.03455603867769241, 0.02614646404981613, 0.01120027620345354, 0.014440489932894707, 0.022681497037410736, -0.0020110863260924816, 0.047161031514406204, 0.02453572303056717, 0.012239767238497734, 0.026801999658346176, -0.010956792160868645, -0.03266435116529465, -0.013129421509802341, -0.0007497676997445524, -0.044838566333055496, -0.03918223828077316, -0.007782131899148226, -0.021688830107450485, -0.0005765192327089608, 0.03609186038374901, -0.037552766501903534, 0.01979714445769787, 0.05761212483048439, 0.02728896774351597, 0.004808814264833927, -0.0015931831439957023, -0.06870002299547195, -0.03539886698126793, -0.027139130979776382, -0.0786641463637352, 0.07012347131967545, 0.004443587735295296, -0.020696163177490234, -0.03633534535765648, -0.00939287431538105, 0.03243959695100784, -0.04199167340993881, 0.008273783139884472, 0.013082597404718399, -0.011930729262530804, -0.010067137889564037, 0.005038251634687185, 0.005778069142252207, -0.005408160388469696, -0.07941333204507828, 0.018870031461119652, 0.03895748406648636, -0.014683974906802177, -0.0006672405288554728, -0.03588583692908287, 0.03176533430814743, -0.03478079289197922, 0.01282974798232317, -0.030997421592473984, -0.018148943781852722, 0.037740062922239304, -0.011312654241919518, -0.005646962206810713, -0.027607370167970657, 0.013625754043459892, 0.0025167844723910093, -0.02803814969956875, -0.003345567500218749, 0.05697531998157501, 0.019169703125953674, 0.027757206931710243, -0.024685559794306755, 0.06446714699268341, 0.05349162220954895, -0.06308115273714066, -0.021688830107450485, 0.005202135071158409, 0.027008024975657463, 0.030491722747683525, -0.02004062943160534, 0.03715944662690163, -0.015901396051049232, 0.007135962136089802, -0.041729457676410675, 0.002668962115421891, -0.006686452776193619, 0.004635565914213657, -0.015039836056530476, -0.026689622551202774, -0.028993356972932816, 0.07694102823734283, 0.05941016227006912, -0.007370081730186939, -0.06727657467126846, -0.0215951818972826, 0.052967194467782974, -0.00002538733315304853, -0.12331541627645493, 0.0015170943224802613, -0.016472646966576576, -0.01482444629073143, -0.04386462643742561, -0.03363828733563423, 0.004841591231524944, -0.02659597434103489, -0.028169257566332817, -0.0393320731818676, -0.06439222395420074, -0.030847584828734398, 0.07716578245162964, -0.05412842705845833, -0.042665936052799225, -0.07248339802026749, 0.015264591202139854, -0.0678759217262268, 0.004703460726886988, 0.045100778341293335, 0.010376175865530968, 0.006447650957852602, 0.10398651659488678, 0.013326081447303295, 0.009018282406032085, -0.00742627028375864, -0.026071546599268913, 0.06678961217403412, 0.022438012063503265, -0.06817559897899628, 0.03253324329853058, 0.012155484408140182, 0.017680704593658447, -0.06128311902284622, -0.05337924510240555, 0.030978690832853317, -0.028506388887763023, -0.06491665542125702, 0.020452678203582764, 0.07918857783079147, -0.05967237427830696, 0.009626993909478188, -0.015292685478925705, 0.012099294923245907, 0.005651644431054592, -0.022831331938505173, -0.02127677947282791, -0.014646515250205994, -0.04918382316827774, 0.044838566333055496, 0.04161708056926727, 0.006489792373031378, -0.009823653846979141, -0.001812084810808301, -0.028375282883644104, 0.040530767291784286, 0.012089930474758148, 0.05206817388534546, -0.04015617445111275, -0.012277225963771343, 0.029686352238059044, 0.007894509471952915, -0.010750766843557358, -0.05375383421778679, -0.007576106581836939, -0.030866313725709915, 0.01979714445769787, 0.022512929514050484, 0.06693944334983826, -0.025865521281957626, 0.0712847039103508, -0.008334653452038765, -0.04090535640716553, 0.01848607510328293, 0.006517886649817228, -0.11559884250164032, -0.017193734645843506, 0.02483539655804634, 0.010638389736413956, 0.0216513704508543, 0.002098881173878908, -0.08720482885837555, 0.00870924536138773, -0.00536601897329092, -0.05753720551729202, 0.00024011881032492965, 0.0017465314595028758, 0.0159482192248106, -0.019253987818956375, 0.029761269688606262, -0.008489172905683517, 0.06705182045698166, 0.05135645344853401, 0.020021898671984673, -0.014253194443881512, 0.03109106793999672, 0.01045109424740076, 0.00660216948017478, 0.043415118008852005, -0.05536457896232605, -0.027101673185825348, 0.027850855141878128, 0.04236626252532005, 0.019572390243411064, -0.03639153391122818, -0.003769323928281665, -0.023692892864346504, -0.012895301915705204, 0.053266867995262146, -0.004134550224989653, -0.00870924536138773, 0.05000792443752289, -0.023767810314893723, 0.03390050306916237, 0.014815081842243671, 0.018898125737905502, 0.05686294287443161, -0.04169199988245964, -0.05120661482214928, -0.02558457851409912, 0.015742193907499313, -0.030753936618566513, -0.008161405101418495, -0.005408160388469696, 0.00670986482873559, 0.03951936960220337, -0.016332175582647324, -0.030547911301255226, -0.004991427529603243, 0.03135328367352486, -0.05075710639357567, 0.01897304318845272, -0.015742193907499313, 0.018738923594355583, 0.001297021983191371, 0.011724703945219517, 0.07446872442960739, 0.04738578572869301, 0.009088519029319286, 0.0072623868472874165, 0.012942125089466572, 0.03052918240427971, 0.08757942169904709, -0.01214611902832985, 0.022756414487957954, 0.06634009629487991, 0.005941952578723431, 0.029854917898774147, 0.02609027549624443, 0.03612931817770004, 0.01320433896034956, -0.02427350915968418, 0.025678226724267006, 0.026670891791582108, -0.02640867792069912, 0.09424713999032974, 0.021332968026399612, 0.003975349012762308, 0.037421658635139465, -0.06255672872066498, 0.006316544022411108, 0.05911048874258995, -0.06671468913555145, -0.0036803584080189466, 0.010694578289985657, 0.06660231202840805, -0.0015662594232708216, 0.0107414023950696, -0.01105044037103653, -0.053079571574926376, -0.0131387859582901, -0.027944503352046013, 0.06068377196788788, -0.028600037097930908, 0.003844242077320814, 0.06892477720975876, 0.0430779866874218, -0.008845034055411816, 0.0234681386500597, 0.02397383563220501, -0.021145671606063843, 0.022269446402788162, 0.031128527596592903, 0.01806465908885002, 0.035174112766981125, 0.02092091739177704, 0.0031208128202706575, 0.05000792443752289, 0.007613565772771835, -0.030060943216085434, -0.04281577095389366, 0.045849960297346115, -0.029536515474319458, -0.036297887563705444, 0.022868791595101357, 0.00608710665255785, 0.08975204825401306, 0.04907144606113434, 0.008100534789264202, -0.0563010536134243, -0.0374591201543808, 0.022644037380814552, -0.03639153391122818, -0.014290654100477695, -0.057574667036533356, 0.0431903637945652, -0.005333242006599903, 0.02940540760755539, 0.042104050517082214, 0.05349162220954895, 0.04629947245121002, -0.008681151084601879, 0.053529080003499985, -0.027682289481163025, -0.022681497037410736, 0.0010669996263459325, 0.029555244371294975, -0.03858289122581482, 0.012398968450725079, -0.00986111257225275, -0.028000691905617714, 0.035043004900217056, -0.004902462009340525, -0.0008861422538757324, 0.008521949872374535, 0.028450200334191322, -0.019684767350554466, -0.020246652886271477, -0.0032566022127866745, 0.01551743969321251, 0.03815211355686188, -0.010600931011140347, 0.06469190120697021, 0.04277831315994263, 0.017184371128678322, 0.051393911242485046, -0.046973735094070435, 0.04712356999516487, 0.008545361459255219, -0.004319504834711552 ]
18,534
grafana_client.client
HeaderAuth
null
class HeaderAuth(niquests.auth.AuthBase): def __init__(self, name, value): self.name = name self.value = value def __call__(self, request): request.headers.update({self.name: self.value}) return request
(name, value)
[ -0.04534954950213432, 0.008096164092421532, -0.05465485155582428, -0.004767587874084711, -0.020596714690327644, -0.014353334903717041, -0.0396854542195797, 0.03269728273153305, 0.005645706318318844, -0.02081739343702793, 0.028485991060733795, 0.01710262894630432, -0.005857190582901239, 0.00825707521289587, 0.006845648866146803, -0.031078970059752464, 0.07127933949232101, 0.05950979143381119, -0.007673195563256741, -0.07591360062360764, 0.014003926888108253, 0.03416847810149193, -0.004813562612980604, 0.02824692241847515, 0.00232862401753664, 0.05638350546360016, -0.014132656157016754, -0.05583180859684944, 0.08356381207704544, -0.010252382606267929, -0.008680043742060661, -0.03177778795361519, 0.026021741330623627, 0.02692284807562828, 0.019989846274256706, -0.07138968259096146, 0.0002827450807671994, 0.01897840015590191, -0.06190048158168793, 0.02859633043408394, -0.037184424698352814, 0.0010637420928105712, -0.036044251173734665, -0.03407652676105499, 0.04700464382767677, 0.07249307632446289, 0.013286720030009747, 0.07826751470565796, 0.01809568516910076, 0.04130376875400543, -0.020946122705936432, 0.014638379216194153, 0.017553182318806648, -0.051307886838912964, -0.024991905316710472, 0.02806302346289158, 0.04424615576863289, 0.025304535403847694, -0.04170834645628929, 0.0694771334528923, -0.021277140825986862, 0.009080024436116219, 0.0016481968341395259, -0.025378094986081123, -0.04185546562075615, -0.0028550357092171907, -0.03847172111272812, 0.0041032517328858376, 0.011824720539152622, -0.005075619090348482, 0.03575001284480095, -0.03236626461148262, 0.002781475894153118, -0.007709975354373455, 0.07414817065000534, 0.039501555263996124, -0.09283233433961868, 0.0013849911047145724, 0.027437765151262283, -0.03188812732696533, 0.03620975837111473, -0.0366327278316021, -0.05079296976327896, -0.004487141501158476, -0.0124683678150177, -0.013700492680072784, -0.06708644330501556, -0.09945270419120789, 0.058994874358177185, 0.04840227961540222, -0.05274229869246483, -0.00048273548600263894, -0.007126095239073038, 0.009599540382623672, 0.004144628997892141, -0.0022240313701331615, 0.026683779433369637, 0.019953066483139992, -0.03521670401096344, 0.015704995021224022, -0.014969397336244583, 0.023962069302797318, -0.027621664106845856, 0.03367194905877113, -0.014748718589544296, -0.03780968114733696, 0.015263636596500874, -0.04722532257437706, 0.014215410687029362, 0.011695991270244122, 0.018104879185557365, -0.06624050438404083, -0.03861884027719498, 0.031060580164194107, 0.003503280458971858, -0.02903768979012966, 0.0248080063611269, -0.03295474126935005, -0.01442689448595047, -0.0006660600192844868, 0.019732387736439705, 0.01451884489506483, 0.03541899099946022, 0.04237038269639015, 0.020412815734744072, 0.03696374595165253, -0.01674402505159378, -0.045864470303058624, 0.04663684591650963, -0.03271567448973656, -0.03516153246164322, -0.017691105604171753, -0.02368622086942196, -0.02501029521226883, 0.008542119525372982, 0.006261768750846386, -0.009443225339055061, 0.009406445547938347, 0.002781475894153118, 0.04994703084230423, -0.008528326638042927, 0.008790383115410805, 0.012367223389446735, -0.04170834645628929, 0.003666491014882922, 0.0036297112237662077, 0.01668885536491871, -0.04391513764858246, -0.006381303537636995, -0.0707276463508606, 0.024716056883335114, -0.00951678492128849, 0.05840639770030975, 0.04803448170423508, 0.005682486109435558, -0.004588285926729441, -0.03214558586478233, -0.051307886838912964, -0.004680235404521227, 0.018104879185557365, 0.03534543141722679, -0.018794501200318336, -0.01451884489506483, -0.005231933202594519, 0.024568937718868256, -0.015511900186538696, 0.050572291016578674, -0.04398869723081589, -0.0020941526163369417, -0.019015179947018623, -0.05208026245236397, -0.0526687391102314, -0.0027791771572083235, 0.027217086404561996, 0.008086969144642353, -0.03091346099972725, -0.023520711809396744, -0.01694631390273571, -0.036577556282281876, -0.0003445237234700471, 0.035989079624414444, -0.027309035882353783, 0.005314687732607126, 0.041230209171772, 0.025690723210573196, 0.026021741330623627, 0.03780968114733696, 0.026242420077323914, 0.020707054063677788, 0.024513768032193184, 0.033929407596588135, -0.011787940748035908, -0.059730470180511475, -0.0006401992286555469, 0.02215985767543316, 0.0012528134975582361, 0.016881950199604034, -0.03183295577764511, 0.0404578298330307, 0.007061730604618788, -0.05127110704779625, 0.03449949622154236, -0.03473856672644615, -0.0012079881271347404, 0.03264211490750313, 0.028430821374058723, 0.067674919962883, -0.04531276971101761, -0.05524332821369171, -0.006344523746520281, 0.025286145508289337, -0.00504343630746007, -0.036908578127622604, 0.03475695475935936, -0.04865973815321922, -0.02725386619567871, 0.009015659801661968, -0.01485905796289444, 0.10283645242452621, -0.013277525082230568, 0.07414817065000534, 0.029019299894571304, 0.023391982540488243, -0.03887629881501198, 0.024054020643234253, 0.020210525020956993, 0.03707408532500267, -0.05531688779592514, -0.07006561011075974, -0.03700052574276924, 0.006767491810023785, -0.005558354314416647, 0.008532924577593803, 0.04696786403656006, -0.04928499460220337, -0.004034289624541998, 0.018886450678110123, -0.010601790621876717, -0.05921555310487747, -0.006390498485416174, 0.0371476449072361, 0.05984080955386162, 0.0042342799715697765, 0.03755222260951996, -0.026113690808415413, -0.03369034081697464, -0.07311833649873734, 0.06384981423616409, -0.016173938289284706, -0.020615104585886, -0.036301709711551666, -0.009719074703752995, -0.040090031921863556, -0.02116680145263672, -0.017166992649435997, 0.04111986979842186, -0.03821426257491112, 0.0023677025455981493, 0.031593888998031616, -0.03733154386281967, -0.012238494120538235, -0.05119754746556282, -0.009415640495717525, -0.009599540382623672, 0.017093433067202568, 0.019199080765247345, -0.0001212585557368584, 0.031612277030944824, -0.0218840092420578, -0.021332310512661934, 0.12666979432106018, 0.016403811052441597, -0.010555815882980824, -0.013847612775862217, 0.025617163628339767, -0.021038072183728218, -0.0236678309738636, 0.042407162487506866, -0.0234103724360466, -0.015944063663482666, 0.06024538725614548, -0.042958859354257584, -0.021773669868707657, 0.002186102094128728, -0.00812834594398737, 0.009098414331674576, -0.027750395238399506, 0.0631142184138298, -0.0338374599814415, -0.03437076508998871, -0.008965088054537773, 0.00236310507170856, -0.0062111965380609035, -0.006850246340036392, 0.006657152436673641, -0.02646310068666935, -0.05936267226934433, 0.0396854542195797, 0.0460483692586422, 0.016606101766228676, 0.02686767838895321, 0.0016229107277467847, -0.09614252299070358, -0.07620783895254135, 0.02585623227059841, -0.0404578298330307, 0.024789616465568542, 0.04899075627326965, -0.06936679035425186, -0.008873137645423412, 0.035915520042181015, 0.07503088563680649, -0.06484287232160568, -0.015888893976807594, -0.010978784412145615, 0.017856616526842117, -0.001521766185760498, 0.007309994660317898, -0.011558067053556442, 0.043473780155181885, -0.040237151086330414, -0.05060907080769539, -0.05211704224348068, -0.016652075573801994, 0.05958335101604462, -0.014767108485102654, 0.026812508702278137, 0.0010194913484156132, -0.04178190603852272, 0.052631959319114685, -0.061643023043870926, 0.03437076508998871, 0.027419375255703926, -0.03593391180038452, -0.02839404158294201, 0.0374051034450531, 0.019530098885297775, 0.010298357345163822, 0.008850150741636753, -0.039170537143945694, -0.07157358527183533, -0.04836549982428551, -0.040752071887254715, 0.0356212817132473, -0.08400516957044601, -0.09511268138885498, -0.03946477547287941, 0.029129639267921448, 0.033984579145908356, -0.04869651794433594, -0.04490819200873375, -0.04531276971101761, 0.05991436913609505, 0.01263387780636549, 0.08018006384372711, -0.0043791006319224834, -0.012587902136147022, -0.0590316541492939, 0.004346918314695358, -0.039832573384046555, 0.07142646610736847, -0.011889085173606873, 0.01150289736688137, 0.024035630747675896, -0.015732578933238983, -0.026242420077323914, -0.01352578867226839, 0.020045015960931778, 0.01982433721423149, -0.007521478459239006, 0.01031674724072218, -0.031465157866477966, -0.00048445953871123493, 0.01150289736688137, 0.013406254351139069, -0.03648560866713524, -0.016652075573801994, -0.017764665186405182, -0.08326957374811172, -0.05145500600337982, 0.012560317292809486, 0.02447698824107647, 0.005121593829244375, 0.045864470303058624, -0.02765844389796257, -0.016863560304045677, 0.05811215937137604, 0.025433264672756195, 0.046526506543159485, 0.040715292096138, -0.015208466909825802, -0.07138968259096146, 0.0012505147606134415, 0.017111822962760925, -0.07024950534105301, -0.037515442818403244, -0.07642852514982224, -0.024973515421152115, -0.004243474919348955, -0.028485991060733795, 0.06601982563734055, -0.0366327278316021, 0.026886068284511566, 0.035455770790576935, 0.04398869723081589, 0.007792729884386063, 0.020008236169815063, -0.0250654648989439, 0.028099803254008293, -0.03394779935479164, -0.03556611016392708, -0.05542723089456558, 0.0245505478233099, -0.032605335116386414, 0.0531836599111557, -0.02096451260149479, 0.03725798428058624, 0.0014585508033633232, 0.01478549838066101, -0.00014783773804083467, 0.020081795752048492, -0.019603658467531204, -0.038839519023895264, 0.0376625619828701, -0.03861884027719498, 0.02181044965982437, 0.01842670328915119, -0.03466500714421272, 0.00742952898144722, -0.025966571643948555, 0.006841051392257214, 0.07183104008436203, -0.043142762035131454, -0.005990517325699329, 0.03733154386281967, 0.0049514868296682835, -0.031189309433102608, 0.01207298506051302, -0.010969589464366436, -0.0037584404926747084, -0.017387673258781433, 0.02773200534284115, -0.017314113676548004, -0.0055951341055333614, 0.016265887767076492, 0.01416024100035429, -0.05811215937137604, 0.02361266128718853, -0.004156122915446758, -0.05914199352264404, 0.0246792770922184, -0.008100761100649834, -0.025102244690060616, -0.005912360269576311, 0.005636511370539665, -0.03010430373251438, -0.011254632845520973, -0.023594271391630173, 0.008027201518416405, -0.020743833854794502, 0.00982021912932396, 0.00882716290652752, -0.022987404838204384, -0.007765145041048527, -0.032991521060466766, 0.010371916927397251, 0.01791178621351719, 0.01982433721423149, -0.01535558607429266, -0.0249367356300354, -0.015640629455447197, -0.004671040456742048, -0.06535778939723969, 0.007935252040624619, 0.00566869368776679, 0.020982902497053146, 0.0442829355597496, 0.029460657387971878, -0.069219671189785, 0.01592567376792431, 0.015530290082097054, 0.04490819200873375, -0.0014608495403081179, 0.014307360164821148, 0.05259517952799797, -0.028761839494109154, 0.04994703084230423, -0.023428762331604958, 0.05244806036353111, -0.012183324433863163, 0.03277084231376648, 0.04979991167783737, -0.04395191743969917, 0.04634260758757591, 0.017985345795750618, 0.06226827949285507, -0.0009493798133917153, -0.014776303432881832, -0.027161916717886925, -0.00891911331564188, 0.004638858139514923, -0.03363516926765442, -0.002769982209429145, -0.007673195563256741, 0.01857382245361805, -0.02806302346289158, -0.0727873146533966, -0.004721612669527531, 0.01353498362004757, 0.011916670016944408, -0.0034228244330734015, 0.018592212349176407, 0.00806398130953312, -0.02434825897216797, 0.03582357242703438, 0.009590345434844494, -0.08915434777736664, 0.03249499574303627, -0.049983810633420944, 0.009052439592778683, 0.02414597012102604, 0.04696786403656006, 0.03865562006831169, -0.0055215745232999325, 0.009875388815999031, 0.04111986979842186, 0.008413390256464481, 0.005360662471503019, 0.05910521373152733, 0.06414405256509781, -0.025984961539506912, -0.006280158646404743, -0.025286145508289337, 0.029828455299139023, 0.06510032713413239, 0.05336755886673927, -0.056677743792533875, 0.026371149346232414, 0.0016252094646915793, -0.04398869723081589, 0.024090800434350967, 0.009829414077103138, 0.0019205976277589798, 0.004625065717846155, -0.05303654074668884, 0.010794885456562042, -0.02539648488163948, -0.008997269906103611, -0.027088357135653496, -0.05417671427130699, -0.08584415912628174, -0.03137321025133133, 0.0033147837966680527, -0.05524332821369171, -0.06944034993648529, 0.007314592134207487, -0.00396992452442646, -0.043400220572948456, 0.004675637930631638, 0.035253483802080154, 0.04358411952853203, 0.02228858694434166, 0.017231358215212822, 0.06418083608150482, -0.08047430217266083, -0.01956687867641449, 0.028026243671774864, 0.02488156594336033, -0.0011620132718235254, -0.0024297686759382486, -0.0037193619646131992, 0.0248080063611269, -0.04259106144309044, 0.06425439566373825, -0.01353498362004757, 0.05653062462806702, 0.05274229869246483, 0.06852085143327713, 0.015116517432034016, -0.013985536992549896, 0.009332885965704918, 0.017819834873080254, -0.0023837939370423555, -0.10158593952655792, -0.05656740441918373, -0.012284468859434128, -0.024127580225467682, 0.040090031921863556, 0.001928643207065761, 0.032329484820365906, -0.0653945654630661, -0.04608514904975891, -0.02572750300168991, -0.020357646048069, -0.01190747506916523, -0.0131028201431036, -0.04737244173884392, -0.046452946960926056, -0.03457305580377579, -0.00201599532738328, 0.01492342259734869, 0.01283616665750742, -0.05425027385354042, 0.03328576311469078, 0.026315979659557343, 0.0014102772111073136, -0.06215794011950493, -0.03346966207027435, -0.05373535677790642, -0.03304669260978699, 0.019658828154206276, 0.029938794672489166, -0.0325685553252697, 0.05516976863145828, 0.011217853054404259, 0.026886068284511566, -0.05373535677790642, -0.014261385425925255, -0.006790479179471731, -0.05248484015464783, 0.0046894303523004055, -0.02109324187040329, -0.04575413092970848, 0.05491231009364128, -0.010050092823803425, -0.0028895167633891106, 0.06215794011950493, 0.009801829233765602, -0.041561227291822433, -0.014767108485102654, 0.002013696590438485, 0.010500646196305752, -0.008146735839545727, -0.0115764569491148, 0.021773669868707657, 0.04417259618639946, 0.006238781381398439, 0.011861500330269337, 0.025819452479481697, 0.0079490439966321, 0.01283616665750742, -0.006206599064171314, 0.04395191743969917, -0.008197308517992496, -0.028964130207896233, 0.01612796261906624, -0.03821426257491112, -0.048512618988752365, 0.03218236565589905, -0.10276289284229279, -0.0017286527436226606, 0.06167980283498764, 0.028927350416779518, 0.021920789033174515, -0.00245505478233099, -0.044871412217617035, -0.020523155108094215, 0.060576409101486206, 0.06454863399267197, -0.030196255072951317, 0.030288204550743103, -0.014978592284023762, 0.1618313193321228, -0.03163066878914833, 0.006542215123772621, 0.03348805010318756, 0.013783247210085392, -0.052889421582221985, 0.008408792316913605, 0.01633944734930992, 0.029957184568047523, 0.0017424452817067504, 0.008059384301304817, 0.03269728273153305, 0.020799003541469574, -0.04836549982428551, 0.022049518302083015, -0.062378618866205215, 0.018592212349176407, 0.035584501922130585, 0.02043120563030243, -0.01150289736688137, 0.048255160450935364, -0.0032573151402175426, 0.02699640765786171, -0.009902973659336567, 0.07775259763002396, 0.006758296862244606, -0.03010430373251438, -0.026481490582227707, 0.023594271391630173, -0.06841051578521729, 0.0018723240355029702, 0.04968957230448723, -0.005493989679962397, 0.008937503211200237, -0.00213782861828804, -0.028945740312337875, 0.009994923137128353, 0.06418083608150482, -0.0002484076248947531, -0.032734062522649765, 0.00945242028683424, -0.01582452841103077, -0.025819452479481697, -0.014390114694833755, 0.053882475942373276, -0.03050888329744339, 0.046452946960926056, -0.024035630747675896, -0.022270197048783302, 0.018031319603323936, 0.03979579359292984, 0.017130212858319283, 0.052889421582221985, 0.0684472918510437, 0.00428025471046567, 0.01465676911175251, 0.0010056989267468452, 0.048255160450935364, 0.033267371356487274, 0.024899955838918686, 0.02513902448117733, 0.0028044632636010647, -0.005870983004570007, -0.0338374599814415, -0.015208466909825802, 0.013553373515605927, -0.04119342938065529, 0.0013137301430106163, 0.03117091953754425, 0.025157414376735687, -0.07315511256456375, 0.024513768032193184, -0.044209375977516174, -0.019217470660805702, -0.0051997508853673935, 0.043547339737415314, -0.01007767766714096, 0.08621196448802948, -0.011263827793300152, -0.005020448938012123, 0.02554360404610634, 0.01661529578268528, 0.017314113676548004, 0.005631913896650076, 0.038839519023895264, -0.04163478687405586, 0.025378094986081123, 0.08819807320833206, 0.014279775321483612, 0.02149781957268715, 0.002590680494904518, -0.02839404158294201, 0.017360087484121323, -0.017470426857471466, -0.040972750633955, 0.02839404158294201, 0.04593802988529205, 0.03354322165250778, -0.0014125759480521083, -0.0012355729704722762, -0.04093597084283829, -0.020982902497053146, 0.01648656651377678, 0.03803035989403725, 0.06002470850944519, 0.049579232931137085 ]
18,535
grafana_client.client
__call__
null
def __call__(self, request): request.headers.update({self.name: self.value}) return request
(self, request)
[ -0.026182085275650024, -0.01193875353783369, -0.08060824126005173, -0.026424672454595566, -0.03773963078856468, -0.00012081977183697745, -0.053958311676979065, 0.025263719260692596, 0.012969749048352242, -0.03394487500190735, 0.024276042357087135, -0.012666515074670315, 0.04577966034412384, 0.01850593462586403, 0.021035771816968918, 0.002999850083142519, 0.054790038615465164, 0.05659211799502373, 0.0422101654112339, -0.04234878346323967, 0.018887141719460487, -0.012077374383807182, -0.016565237194299698, 0.007524533662945032, 0.008286950178444386, 0.05998833477497101, -0.022370001301169395, -0.032298747450113297, 0.07423166930675507, -0.011626855470240116, 0.016651874408125877, -0.04238343983888626, -0.015222343616187572, 0.01812472566962242, 0.033390387892723083, -0.03477660194039345, -0.06404300779104233, -0.013004403561353683, -0.06040420010685921, 0.034378062933683395, -0.04370034113526344, -0.018384641036391258, -0.0521562360227108, -0.01916438527405262, 0.04020015522837639, 0.04903725907206535, -0.024899838492274284, 0.09966865926980972, 0.06220627576112747, 0.016859807074069977, -0.005674806423485279, 0.029006492346525192, 0.011661510914564133, -0.05149778723716736, -0.044809311628341675, 0.008772124536335468, 0.03961101546883583, 0.01764821447432041, 0.005891402252018452, 0.05797832831740379, 0.013056387193500996, 0.029699597507715225, -0.00259265024214983, -0.03009813465178013, -0.048413462936878204, -0.023808196187019348, -0.018852487206459045, -0.008087682537734509, 0.00429942412301898, 0.02554096095263958, 0.0628993809223175, -0.03718514367938042, -0.0023002459201961756, 0.011392932385206223, 0.03981894627213478, 0.013169016689062119, -0.03805152699351311, -0.008603179827332497, 0.005280602257698774, -0.053750380873680115, 0.035365741699934006, 0.004033011384308338, -0.04342310130596161, -0.04065067321062088, -0.04539845138788223, -0.026927173137664795, -0.04876001551747322, -0.05662677064538002, -0.00016596642672084272, 0.0385020449757576, -0.03794756159186363, 0.011990736238658428, -0.05156709626317024, -0.01080379169434309, 0.02077585645020008, 0.011479570530354977, 0.03708117827773094, -0.03157098591327667, -0.022543277591466904, 0.013662855140864849, -0.02297646924853325, 0.06213696673512459, -0.00933094136416912, 0.01978817954659462, 0.04130912572145462, -0.03697721287608147, 0.0385020449757576, -0.04785897955298424, 0.009261630475521088, -0.005085666198283434, 0.03794756159186363, -0.04474000260233879, -0.05922592058777809, 0.012042718939483166, 0.009616848081350327, 0.0018269844586029649, 0.0006367912865243852, -0.009876762516796589, -0.03212546929717064, 0.010344608686864376, 0.027758900076150894, 0.011063707061111927, 0.03579893335700035, 0.023288365453481674, 0.009937409311532974, 0.05607228726148605, -0.01330763753503561, -0.042868614196777344, 0.048205532133579254, -0.018800504505634308, -0.06920664757490158, 0.008191647939383984, -0.021035771816968918, 0.007975052110850811, 0.026753896847367287, 0.02136499620974064, -0.03242003917694092, -0.015863467007875443, 0.013281646184623241, 0.058671433478593826, 0.014676522463560104, 0.01444259937852621, 0.041378434747457504, -0.06199834495782852, 0.028365368023514748, -0.005102993920445442, 0.042695339769124985, 0.019736196845769882, -0.029786236584186554, -0.03013278916478157, 0.024120094254612923, 0.01899110898375511, 0.05139382183551788, 0.027966832742094994, -0.009408915415406227, 0.017396964132785797, -0.03635341674089432, -0.018575243651866913, -0.010032711550593376, 0.006822763476520777, 0.0262860506772995, 0.01227664202451706, -0.000893998600076884, -0.019649559631943703, 0.03877928853034973, -0.02798416092991829, 0.036284107714891434, -0.0018952121026813984, -0.004056836944073439, -0.023271039128303528, -0.04390827566385269, -0.05319589748978615, -0.008824107237160206, 0.041621021926403046, -0.02748165838420391, 0.0014111207565292716, 0.002635969314724207, -0.002369556576013565, -0.024570612236857414, 0.007359921000897884, 0.029664942994713783, -0.029664942994713783, 0.010483230464160442, 0.03465530648827553, 0.02035999298095703, -0.004700126126408577, 0.0039225476793944836, 0.012259314768016338, 0.009590855799615383, 0.07014234364032745, 0.06785508990287781, -0.01523100771009922, -0.004292926285415888, -0.026597948744893074, -0.016695193946361542, -0.02583553083240986, -0.004420717712491751, -0.03877928853034973, 0.045259829610586166, 0.024362681433558464, -0.03912584111094475, 0.0096255112439394, -0.044809311628341675, 0.02727372571825981, 0.019805507734417915, 0.0031926201190799475, 0.07256821542978287, -0.036076173186302185, -0.06005764752626419, -0.0029565307777374983, -0.027880193665623665, 0.011011723428964615, -0.00098334439098835, 0.007424899376928806, -0.04214085265994072, -0.04647276550531387, -0.03656134754419327, -0.016816487535834312, 0.06865216046571732, -0.049314502626657486, 0.04806691035628319, 0.00438173022121191, 0.008806779980659485, -0.03572962060570717, 0.036526694893836975, -0.010214651934802532, -0.0049817003309726715, -0.06671146303415298, -0.07589512318372726, -0.03228141739964485, -0.0167558416724205, 0.021624911576509476, 0.018679210916161537, 0.020429303869605064, -0.02082783915102482, 0.01874852180480957, 0.006025691516697407, -0.003879228373989463, -0.09793590009212494, -0.019649559631943703, 0.04002688080072403, 0.02905847504734993, 0.04359637573361397, 0.024899838492274284, -0.035036515444517136, -0.025592943653464317, -0.029075803235173225, 0.1014014258980751, -0.016010751947760582, 0.00401568366214633, -0.02354828082025051, -0.0175875686109066, -0.053785037249326706, -0.014044063165783882, -0.023253710940480232, 0.013775484636425972, -0.007845095358788967, 0.007359921000897884, 0.04858674108982086, -0.03358099237084389, -0.00035007274709641933, -0.01776084490120411, 0.03508849814534187, -0.05264141038060188, -0.021087754517793655, 0.027758900076150894, -0.0014674356207251549, 0.028573300689458847, -0.03494987636804581, 0.007485546171665192, 0.051601752638816833, -0.010526549071073532, -0.000801403948571533, -0.001123048597946763, -0.0013233994832262397, -0.0172843337059021, -0.026511309668421745, 0.017007092013955116, -0.055448491126298904, -0.01912972889840603, 0.08906413614749908, -0.04623017832636833, -0.023236382752656937, -0.0020262524485588074, -0.04657673090696335, -0.002497348003089428, 0.02115706540644169, 0.11519423872232437, 0.003485024208202958, -0.035694967955350876, -0.018038086593151093, 0.03624945133924484, 0.003881394397467375, -0.012831127271056175, -0.006692806258797646, -0.017353644594550133, -0.03046201542019844, 0.042695339769124985, 0.0649787038564682, 0.04702725261449814, 0.0254543237388134, 0.0034113817382603884, -0.05617625266313553, -0.06636491417884827, 0.004756440874189138, -0.022785864770412445, 0.050977956503629684, 0.061027996242046356, -0.07111269235610962, 0.008360592648386955, 0.00825662724673748, 0.10001521557569504, -0.07402373850345612, -0.03302650898694992, 0.001472850563004613, 0.010994396172463894, 0.013541561551392078, 0.020515941083431244, -0.0006394986994564533, 0.06931061297655106, -0.03870997950434685, -0.0732613205909729, -0.05894867703318596, 0.007377248257398605, 0.0529879629611969, -0.011514225974678993, 0.020342664793133736, 0.01095107663422823, -0.006450219079852104, 0.01277048047631979, -0.023530952632427216, 0.005128985270857811, 0.01690312661230564, -0.01692911796271801, -0.020845167338848114, 0.015750836580991745, 0.028140109032392502, 0.012406599707901478, 0.012172676622867584, -0.00690073799341917, -0.07048889249563217, 0.004160802811384201, -0.02760295197367668, -0.0008663826738484204, -0.05496331676840782, -0.0770040899515152, -0.02483052760362625, 0.02905847504734993, 0.051636409014463425, -0.04082395136356354, -0.03898721933364868, -0.05080467835068703, 0.07104337960481644, 0.05607228726148605, 0.07852892577648163, -0.017691534012556076, -0.02115706540644169, -0.06931061297655106, -0.010517885908484459, -0.010517885908484459, 0.07714271545410156, 0.002417207695543766, 0.01068249810487032, 0.013333628885447979, 0.011574872769415379, -0.038016870617866516, -0.024310698732733727, 0.015742173418402672, 0.006354916840791702, -0.04006153345108032, 0.012423927895724773, -0.011852115392684937, 0.014771824702620506, 0.013047723099589348, 0.01065650675445795, 0.004082828294485807, -0.045017242431640625, -0.016825150698423386, -0.07014234364032745, -0.0262860506772995, 0.03254133462905884, 0.0049383812583982944, -0.00904503557831049, 0.026441998779773712, 0.028382696211338043, -0.02413742057979107, 0.09280691295862198, -0.009677494876086712, 0.0233923327177763, 0.05295331031084061, 0.0155255775898695, -0.08005376160144806, -0.006619163788855076, 0.040373433381319046, -0.06587973982095718, -0.04661138728260994, -0.04817087575793266, -0.022370001301169395, -0.007693478371948004, -0.03555634617805481, 0.06636491417884827, -0.027187088504433632, -0.034672632813453674, 0.040546707808971405, 0.0372544564306736, -0.04304189234972, 0.003344237105920911, 0.03443004563450813, 0.0260781180113554, -0.015343637205660343, -0.0467846654355526, -0.08351928740739822, -0.009712149389088154, -0.023669574409723282, 0.0065585169941186905, -0.0021605417132377625, 0.04917588084936142, 0.008767792955040932, 0.01850593462586403, 0.004986032377928495, 0.04210619628429413, 0.009235639125108719, -0.0006839008419774473, 0.04324982315301895, -0.006619163788855076, -0.03297452628612518, 0.01937231607735157, -0.012267978861927986, 0.01630532182753086, -0.004687130451202393, 0.022162068635225296, 0.048413462936878204, -0.030860550701618195, -0.002051160903647542, 0.04785897955298424, 0.010257970541715622, -0.030929861590266228, -0.021122409030795097, -0.00017043371917679906, 0.031016498804092407, -0.004362236708402634, 0.012068710289895535, -0.020931804552674294, -0.01895645260810852, -0.03216012567281723, 0.007879750803112984, -0.05021553859114647, -0.007082678377628326, -0.015057730488479137, -0.06605301797389984, 0.06504800915718079, -0.008984388783574104, 0.02822674810886383, -0.01463320292532444, 0.0045701684430241585, -0.04442810267210007, 0.011704829521477222, -0.09322277456521988, 0.01330763753503561, -0.022283362224698067, 0.0182113628834486, -0.016218682751059532, -0.015984760597348213, 0.0047044577077031136, -0.04536379501223564, 0.04380430653691292, 0.01761355996131897, 0.0175875686109066, -0.025107769295573235, -0.04855208471417427, -0.03138038143515587, -0.030444687232375145, -0.08580654114484787, -0.015577560290694237, -0.013385612517595291, 0.004509521648287773, -0.010604524053633213, 0.01916438527405262, -0.061201270669698715, 0.012311297468841076, 0.034048840403556824, 0.0014046229189261794, 0.03423944488167763, 0.025315701961517334, 0.034915219992399216, -0.017726190388202667, 0.07499408721923828, 0.006017027888447046, 0.051220543682575226, 0.0013580548111349344, 0.033459700644016266, 0.02926640585064888, -0.015101050026714802, 0.02658062055706978, -0.014650531113147736, 0.04245275259017944, -0.005514525808393955, -0.006263946648687124, -0.022075431421399117, -0.004258270841091871, -0.004912389907985926, -0.04324982315301895, -0.02512509748339653, 0.020256027579307556, -0.004416385665535927, -0.008009707555174828, -0.05128985270857811, -0.0016385462367907166, -0.03572962060570717, -0.021018443629145622, -0.03129374235868454, 0.04349241033196449, -0.03274926543235779, 0.011366941034793854, 0.010257970541715622, 0.016703857108950615, -0.08137065917253494, 0.04349241033196449, -0.054582107812166214, -0.005471206735819578, 0.031033826991915703, 0.05000760778784752, 0.06359248608350754, 0.005328253377228975, -0.016149373725056648, 0.035036515444517136, 0.004574500489979982, 0.0014024568954482675, 0.05329986289143562, 0.03127641603350639, -0.048240188509225845, -0.03519246354699135, -0.006302934139966965, 0.0472005270421505, 0.0786675438284874, 0.056522805243730545, -0.04321516677737236, 0.015014411881566048, -0.06189437955617905, -0.02110508270561695, 0.00818298477679491, 0.013177680782973766, -0.03455134108662605, -0.016677865758538246, -0.06244886294007301, -0.020221371203660965, -0.0001380120520479977, -0.0009432741208001971, -0.03314780071377754, -0.07624167203903198, -0.12801671028137207, -0.03895256668329239, 0.01345492247492075, 0.0005276812007650733, -0.05499797314405441, 0.012484574690461159, 0.02467457763850689, -0.025090442970395088, 0.010093358345329762, 0.014399279840290546, 0.012146685272455215, 0.003660466754809022, 0.030947189778089523, 0.06054282188415527, -0.07998444885015488, 0.022699225693941116, 0.014979756437242031, 0.041413091123104095, -0.014650531113147736, -0.035625655204057693, 0.017630888149142265, 0.028365368023514748, -0.0017750015249475837, 0.035694967955350876, 0.004007020033895969, 0.043076545000076294, 0.02992485836148262, 0.0341528058052063, 0.0013970420695841312, 0.005046679172664881, 0.01937231607735157, -0.01854058913886547, -0.029647614806890488, -0.08407377451658249, -0.0703502744436264, -0.005856746807694435, -0.0372544564306736, 0.054166246205568314, 0.018107397481799126, 0.024570612236857414, -0.05787436291575432, -0.04380430653691292, -0.028833216056227684, -0.0049817003309726715, -0.017327653244137764, 0.007892746478319168, -0.057562462985515594, -0.05243347957730293, -0.047165874391794205, 0.027429675683379173, 0.02753364108502865, 0.009599519893527031, 0.0020295013673603535, 0.051878996193408966, 0.013489577919244766, 0.009166328236460686, -0.04602224752306938, -0.004258270841091871, -0.04817087575793266, -0.047165874391794205, 0.0175875686109066, 0.010699826292693615, 0.0005496115190908313, 0.035694967955350876, -0.0035131818149238825, -0.006523861549794674, -0.028088126331567764, -0.014529237523674965, -0.010838447138667107, -0.07873685657978058, 0.0026099777314811945, -0.02976890839636326, -0.03877928853034973, 0.03995756804943085, -0.008975724689662457, 0.02139965258538723, 0.06882543861865997, -0.03216012567281723, -0.0324893519282341, -0.005774440709501505, -0.004864738788455725, 0.016443943604826927, 0.02330569364130497, -0.025055786594748497, 0.05073536932468414, 0.048448119312524796, 0.01117633655667305, 0.03257598727941513, -0.015239670872688293, -0.05108192190527916, 0.04044274240732193, 0.022924484685063362, 0.04855208471417427, -0.021763533353805542, -0.04681931808590889, 0.044636037200689316, -0.026563292369246483, -0.06231024116277695, 0.0035868242848664522, -0.05939919501543045, -0.026424672454595566, 0.04619552567601204, -0.0013937931507825851, 0.011704829521477222, 0.0695532038807869, -0.009027707390487194, -0.019320333376526833, 0.04744311422109604, 0.045017242431640625, -0.028261402621865273, 0.006346253212541342, -0.017353644594550133, 0.12053115665912628, -0.06518663465976715, 0.0166605394333601, 0.02205810323357582, -0.002156209899112582, -0.038675323128700256, 0.015603551641106606, 0.037358421832323074, 0.014009407721459866, 0.008204643614590168, -0.036942556500434875, 0.054790038615465164, 0.01393143367022276, -0.040997229516506195, 0.036492038518190384, -0.043769653886556625, 0.005271938629448414, 0.02434535324573517, -0.006272610742598772, 0.020793184638023376, 0.029283734038472176, 0.033598318696022034, 0.036284107714891434, -0.04747777059674263, 0.03221210837364197, 0.01871386542916298, 0.008338932879269123, -0.020966460928320885, 0.025922169908881187, -0.09211380779743195, -0.026597948744893074, 0.022006120532751083, -0.028711922466754913, 0.03746238723397255, -0.017535585910081863, -0.088578961789608, -0.017916793003678322, 0.08629171550273895, 0.0038120837416499853, -0.01854058913886547, 0.04023481160402298, -0.03212546929717064, -0.009123009629547596, -0.015456266701221466, 0.06685008853673935, -0.019181711599230766, 0.029855547472834587, -0.015239670872688293, -0.007377248257398605, 0.019926801323890686, 0.009123009629547596, 0.03787824884057045, 0.03763566166162491, 0.0786675438284874, -0.041378434747457504, 0.023998800665140152, 0.015196352265775204, 0.07381580024957657, 0.0012270144652575254, 0.04706190526485443, 0.05943385139107704, -0.011210992000997066, -0.014044063165783882, -0.04900260269641876, 0.0019504439551383257, 0.024154748767614365, -0.03656134754419327, -0.018072742968797684, 0.04383896291255951, 0.03877928853034973, -0.04772035777568817, -0.010968404822051525, 0.0231844000518322, -0.04432413727045059, -0.02360026352107525, 0.04709656164050102, 0.023323021829128265, 0.08275686949491501, -0.015811484307050705, 0.01446859072893858, 0.007819104008376598, -0.012467246502637863, -0.007342593278735876, 0.01567286252975464, 0.033546335995197296, -0.015577560290694237, 0.033962201327085495, 0.06428559124469757, 0.0009107847581617534, -0.001602807897143066, 0.03352900967001915, 0.0015995589783415198, 0.051220543682575226, -0.033632975071668625, -0.03293986991047859, 0.03269728273153305, 0.05025019496679306, 0.03815549239516258, -0.008949733339250088, 0.011687502264976501, -0.02455328404903412, 0.01537829264998436, 0.03968032822012901, 0.02753364108502865, 0.07187511026859283, 0.03522711992263794 ]
18,536
grafana_client.client
__init__
null
def __init__(self, name, value): self.name = name self.value = value
(self, name, value)
[ 0.05872426554560661, -0.0005457798251882195, -0.002810150384902954, -0.055922869592905045, -0.03577032685279846, -0.0222886074334383, -0.029484694823622704, 0.00876749400049448, 0.028066487982869148, -0.017745094373822212, -0.047903873026371, 0.05886433646082878, -0.005370801780372858, 0.04818401485681534, 0.0189619492739439, 0.02193843387067318, 0.07402689009904861, 0.04639812186360359, -0.028854379430413246, 0.014488470740616322, 0.011433198116719723, 0.003906634636223316, -0.014567259699106216, 0.06656817346811295, 0.04044515639543533, 0.02808399684727192, 0.0146372951567173, 0.014663557521998882, 0.014252102933824062, -0.0012759483652189374, -0.03009749948978424, -0.0011238413862884045, -0.011336900293827057, 0.005305144004523754, 0.002346169203519821, -0.05504743382334709, -0.06551764905452728, 0.04072529450058937, -0.08614292740821838, 0.034159522503614426, 0.06597287952899933, -0.003484236542135477, -0.08446209132671356, -0.014672311954200268, 0.006412570830434561, 0.0379238985478878, 0.008110917173326015, 0.014812381938099861, -0.005038135685026646, 0.00390225718729198, -0.02379435859620571, 0.05053018406033516, 0.0023680550511926413, -0.010829146951436996, -0.036978427320718765, 0.06418699026107788, 0.04573279246687889, 0.06222601234912872, -0.002525633666664362, 0.06709343940019608, -0.04027006775140762, 0.049479659646749496, 0.022656291723251343, -0.056588202714920044, -0.06051015481352806, -0.006325026974081993, -0.02193843387067318, -0.004981232341378927, -0.017622532323002815, 0.051090460270643234, 0.061595696955919266, -0.000044045387767255306, -0.005764747969806194, 0.022236082702875137, 0.04730857536196709, 0.020555244758725166, -0.043806832283735275, 0.04384185001254082, 0.004696715623140335, -0.03352921083569527, 0.015328889712691307, 0.015967957675457, -0.06334657222032547, -0.022551238536834717, -0.04520753026008606, 0.0014171125367283821, -0.05074028670787811, -0.03303896635770798, 0.03823905810713768, 0.06306643038988113, -0.048604223877191544, 0.025790352374315262, -0.017097270116209984, 0.06593786180019379, -0.0379238985478878, -0.0454876683652401, 0.06495737284421921, -0.06527253240346909, -0.007988356053829193, 0.07549762725830078, 0.005436459556221962, -0.005900440737605095, -0.03701344504952431, -0.009787377901375294, -0.030517708510160446, -0.06236607953906059, -0.033003948628902435, -0.0340544730424881, 0.023496709764003754, -0.0058260285295546055, 0.017053499817848206, 0.0209579449146986, -0.03356422856450081, 0.06698838621377945, -0.01980236917734146, 0.0032216054387390614, -0.035175029188394547, -0.022481203079223633, 0.005961721297353506, -0.030955426394939423, 0.01992492936551571, 0.013157807290554047, -0.035297591239213943, 0.06915947049856186, 0.04821903258562088, 0.050285059958696365, -0.006443210877478123, -0.03841414302587509, 0.02144818939268589, -0.0024643531069159508, 0.03694341331720352, -0.04639812186360359, -0.019837386906147003, -0.027803856879472733, 0.051790811121463776, -0.018891915678977966, 0.03557772934436798, -0.002295831684023142, 0.008434828370809555, 0.03900944069027901, 0.032496195286512375, 0.016414429992437363, 0.024004463106393814, -0.05865423008799553, -0.0018679621862247586, -0.02628059685230255, 0.009507237933576107, 0.007861417718231678, -0.03354671970009804, 0.003854108275845647, 0.010067516937851906, 0.013648051768541336, 0.014663557521998882, 0.013578017242252827, -0.004968101158738136, -0.03228608891367912, -0.007878926582634449, -0.10526245832443237, 0.006316273007541895, -0.003805959364399314, 0.010960462503135204, -0.005961721297353506, 0.0143659096211195, -0.02458225190639496, 0.009927447885274887, 0.07115545868873596, 0.02108050510287285, -0.051265548914670944, -0.0045303828082978725, 0.011809635907411575, -0.026525719091296196, -0.09209589660167694, -0.05298140272498131, 0.04986485093832016, -0.0372585691511631, -0.020677804946899414, 0.004543514456599951, 0.006132431328296661, 0.03652320057153702, -0.035350117832422256, -0.01503124088048935, 0.004880557302385569, -0.022883905097842216, 0.013201579451560974, 0.04223104566335678, -0.055922869592905045, 0.006219974718987942, 0.05350666493177414, 0.08908439427614212, 0.03452720865607262, 0.041145507246255875, -0.02295393869280815, -0.04555770382285118, 0.013070263899862766, 0.0052044689655303955, -0.009988727979362011, 0.02558024786412716, -0.00852237269282341, 0.011021742597222328, 0.07486730813980103, -0.005874177441000938, 0.0012529682135209441, -0.012641300447285175, -0.03191840648651123, 0.029694799333810806, 0.002224702388048172, 0.07161068916320801, -0.0331440195441246, -0.0029436545446515083, -0.04968976229429245, -0.018681811168789864, 0.01579287089407444, 0.03375682234764099, 0.04520753026008606, 0.04219602793455124, -0.0887342244386673, -0.02162327617406845, -0.06373175978660583, 0.040480174124240875, 0.049444641917943954, 0.08229101449251175, 0.010163815692067146, 0.05200091749429703, -0.016528237611055374, 0.009078274480998516, -0.02361927181482315, -0.0056684501469135284, -0.07906940579414368, -0.027681294828653336, -0.020205069333314896, 0.00032965646823868155, -0.005046890117228031, 0.00786579493433237, 0.010513990186154842, -0.02111552283167839, 0.01503124088048935, 0.014602277427911758, -0.04688836634159088, -0.13425691425800323, -0.06065022572875023, 0.04009498283267021, -0.0030005578882992268, -0.017079761251807213, 0.009288378991186619, 0.00005830542431795038, -0.019189562648534775, -0.006618298124521971, 0.07780877500772476, -0.023514218628406525, -0.03953470289707184, 0.0003362222632858902, -0.013796876184642315, -0.024354636669158936, 0.033494193106889725, -0.021413171663880348, -0.033003948628902435, -0.009918693453073502, -0.014917434193193913, 0.03778383135795593, -0.022901413962244987, -0.03904445841908455, -0.06138559430837631, -0.013105281628668308, 0.07682828605175018, 0.024144532158970833, -0.01826160028576851, 0.012431195005774498, 0.009944955818355083, -0.029992448166012764, -0.014348400756716728, 0.1229112520813942, 0.010347656905651093, -0.015013732016086578, 0.007900812663137913, -0.05266624689102173, -0.08257114887237549, -0.003696529660373926, -0.01843668892979622, -0.0405852273106575, -0.0256152655929327, 0.034667275846004486, -0.03454471752047539, -0.011336900293827057, 0.012912685051560402, 0.00461792666465044, -0.027226068079471588, 0.004359672777354717, 0.03328408673405647, -0.04338662326335907, -0.013201579451560974, -0.006745236460119486, 0.00664893863722682, -0.025195056572556496, 0.01229987945407629, 0.041635751724243164, 0.02542266994714737, -0.03722355142235756, 0.05025004222989082, -0.010584024712443352, -0.013595525175333023, 0.045312583446502686, -0.04933958873152733, -0.007826399989426136, 0.006425702478736639, -0.052771300077438354, -0.031813353300094604, 0.024214567616581917, 0.033319104462862015, -0.013411683961749077, 0.03528008237481117, 0.06359168887138367, 0.07689832150936127, -0.022376151755452156, 0.09258614480495453, 0.034824855625629425, 0.02459975890815258, 0.03293391317129135, -0.07871922850608826, 0.018086513504385948, 0.04275630787014961, -0.03044767491519451, -0.07654815167188644, -0.03988487645983696, -0.053121473640203476, -0.0017694756388664246, 0.009594781324267387, -0.016624534502625465, 0.03559523820877075, 0.021413171663880348, 0.025370143353939056, -0.07899937033653259, 0.006320650223642588, 0.054627224802970886, 0.011249355971813202, -0.0026985323056578636, -0.0021502904128283262, -0.029642272740602493, 0.015967957675457, 0.0012507796054705977, -0.04359672591090202, 0.05053018406033516, -0.0030662156641483307, -0.06541260331869125, -0.009253361262381077, -0.003963537979871035, -0.014068260788917542, -0.007095410954207182, -0.02493242546916008, 0.079839788377285, -0.03419454023241997, -0.013087772764265537, -0.00443189637735486, 0.00003200813807779923, 0.020082509145140648, 0.03939463198184967, 0.014926188625395298, 0.00033293935121037066, -0.03352921083569527, -0.027856383472681046, -0.04968976229429245, 0.07829902321100235, -0.029694799333810806, 0.012501230463385582, 0.01645820215344429, 0.00028998826746828854, -0.01829661801457405, 0.003659323789179325, -0.008881301619112492, 0.026543227955698967, -0.0187518447637558, 0.008793757297098637, -0.011319391429424286, -0.01447096187621355, -0.011660811491310596, -0.008942581713199615, -0.00286486535333097, 0.01778886467218399, 0.016099274158477783, -0.02512502111494541, -0.0750073790550232, -0.008916318416595459, -0.009761114604771137, 0.022988956421613693, 0.03226858004927635, -0.021308118477463722, -0.007003490347415209, 0.049304571002721786, 0.032338615506887436, 0.04832408204674721, 0.0441570058465004, -0.0525611937046051, -0.008176575414836407, -0.019994964823126793, -0.03223356604576111, 0.0002578433486633003, -0.012842650525271893, 0.027453681454062462, -0.03023756854236126, -0.06355667114257812, 0.0012573454296216369, 0.01827910915017128, -0.04884934425354004, 0.0007326307240873575, 0.027156034484505653, 0.0013109658611938357, -0.027033472433686256, 0.04688836634159088, 0.03585787117481232, 0.021062996238470078, 0.01587166078388691, 0.0151362931355834, -0.04503244161605835, -0.054452136158943176, -0.10897430777549744, 0.025860387831926346, -0.022411169484257698, 0.0104789724573493, -0.019837386906147003, 0.03907947614789009, -0.05137060210108757, -0.028154030442237854, 0.016659552231431007, -0.01105676032602787, 0.06082531437277794, -0.01994243822991848, 0.045942895114421844, 0.04352669417858124, 0.00792707595974207, 0.04051519185304642, -0.013901928439736366, -0.05336659774184227, 0.03708348050713539, -0.039674773812294006, -0.030797848477959633, 0.047798819839954376, -0.01943468488752842, -0.02642066776752472, -0.07374675571918488, -0.01246621273458004, 0.02943216823041439, -0.03988487645983696, -0.01798146218061447, 0.043141499161720276, 0.01946970261633396, -0.033844366669654846, -0.0412505567073822, -0.035315100103616714, 0.021395662799477577, 0.038169022649526596, -0.0714356005191803, 0.027313612401485443, 0.032986439764499664, 0.05396189168095589, -0.04387686774134636, 0.02892441488802433, -0.04986485093832016, -0.09573771059513092, -0.06607793271541595, 0.07042009383440018, -0.042791325598955154, -0.025230074301362038, -0.007419322617352009, 0.0031187417916953564, -0.02029261365532875, -0.04765875265002251, 0.06593786180019379, 0.04517251253128052, 0.026175545528531075, -0.003560837125405669, -0.023479200899600983, -0.013481718488037586, 0.025160038843750954, -0.018839389085769653, -0.023829376325011253, -0.02710350789129734, -0.015757853165268898, -0.03918452933430672, -0.03352921083569527, -0.06887932866811752, -0.0614556260406971, -0.0017235152190551162, -0.03624306246638298, 0.034999944269657135, 0.07234605401754379, 0.008614293299615383, -0.00840418878942728, 0.024529725313186646, -0.02309400960803032, 0.02827659249305725, 0.01071534026414156, -0.04174080118536949, -0.002573782578110695, 0.0007140277302823961, -0.012545001693069935, -0.021833380684256554, 0.024879898875951767, -0.008776248432695866, 0.0196272823959589, -0.035997942090034485, 0.01829661801457405, -0.01786765456199646, -0.00022364660981111228, -0.03956972062587738, -0.04009498283267021, 0.029992448166012764, -0.054452136158943176, -0.014138296246528625, -0.02011752687394619, -0.0212906114757061, -0.01945219375193119, 0.007703839335590601, -0.010636551305651665, 0.014225839637219906, -0.00009458815475227311, 0.013866910710930824, 0.0036615123972296715, -0.060265034437179565, 0.021710820496082306, -0.0707702711224556, 0.007288007065653801, 0.030815357342362404, 0.012247353792190552, 0.010120043531060219, -0.03394941985607147, -0.04734359309077263, 0.01878686249256134, -0.030867883935570717, -0.020362647250294685, 0.043316587805747986, 0.04874429106712341, 0.018489213660359383, -0.06443211436271667, -0.04475230351090431, 0.043316587805747986, 0.00602737907320261, 0.03809898719191551, 0.0058260285295546055, 0.04002494737505913, -0.006937832571566105, 0.037643760442733765, 0.04121553897857666, 0.04023505374789238, 0.03652320057153702, -0.012509984895586967, -0.0010133174946531653, -0.038484178483486176, -0.040795329958200455, 0.00115448166616261, -0.00001776520184648689, -0.038134004920721054, 0.02209601178765297, -0.04832408204674721, -0.05252617597579956, -0.04832408204674721, -0.028504205867648125, 0.00029354472644627094, 0.006228729151189327, -0.04968976229429245, 0.03221605718135834, 0.02939715050160885, 0.03328408673405647, 0.022673800587654114, 0.01698346436023712, 0.03424706682562828, 0.009831149131059647, 0.0049768551252782345, -0.010085025802254677, -0.018664302304387093, 0.009043256752192974, 0.005274503491818905, 0.03111300617456436, -0.002956785960122943, 0.03645316883921623, 0.07206591218709946, 0.0057428618893027306, 0.027191050350666046, 0.042966414242982864, 0.07178577780723572, -0.05375178903341293, -0.027506208047270775, -0.004810522310435772, 0.04440212994813919, -0.07801888138055801, -0.043806832283735275, -0.018576757982373238, 0.02127310261130333, -0.021378153935074806, 0.02010001800954342, 0.00029053541948087513, 0.013245350681245327, -0.00752437487244606, 0.00923585332930088, -0.06754866242408752, 0.01702723652124405, -0.0036221176851540804, -0.03606797382235527, -0.0034426532220095396, -0.07458717375993729, 0.01712353341281414, 0.014611031860113144, -0.0532265268266201, 0.0056509412825107574, -0.03669828921556473, 0.04153069853782654, -0.0068984380923211575, -0.0066576930694282055, -0.02841666154563427, 0.01222984492778778, -0.009340905584394932, 0.02046770043671131, 0.06317148357629776, -0.02677084133028984, -0.018681811168789864, 0.005375178996473551, 0.01786765456199646, 0.013542999513447285, 0.01098672579973936, 0.026630772277712822, -0.007419322617352009, -0.026052983477711678, -0.01073284912854433, 0.007699462119489908, -0.002236739732325077, 0.05375178903341293, -0.04891937971115112, -0.051090460270643234, -0.002154667628929019, -0.06264621764421463, -0.0269459281116724, -0.05238610878586769, 0.026350632309913635, -0.011100532487034798, -0.019557246938347816, -0.0750073790550232, -0.013936946168541908, 0.016703324392437935, 0.03785386681556702, -0.02143068052828312, 0.009656062349677086, 0.04335160553455353, -0.017683813348412514, 0.007139183115214109, 0.013315386138856411, 0.03809898719191551, -0.042616236954927444, 0.007126051466912031, -0.025510214269161224, -0.05630806088447571, 0.025545230135321617, -0.0020528980530798435, -0.02726108580827713, 0.0412505567073822, -0.008671196177601814, 0.02941465936601162, 0.03841414302587509, -0.020572753623127937, -0.003974480554461479, 0.04576781019568443, 0.0365932360291481, -0.01496120635420084, -0.08061017096042633, -0.014926188625395298, 0.0632065013051033, -0.01995994709432125, 0.038974422961473465, 0.0392545647919178, -0.028836870566010475, -0.011030497029423714, -0.015801625326275826, 0.05872426554560661, -0.00247091893106699, 0.05952966958284378, 0.00962979905307293, 0.0037906391080468893, -0.021553240716457367, -0.04569777473807335, 0.010172570124268532, 0.013586771674454212, 0.054101962596178055, 0.04419202357530594, 0.0220785029232502, 0.01622183434665203, 0.0385892316699028, -0.01980236917734146, 0.03610299155116081, 0.035490188747644424, -0.02312902733683586, 0.033669278025627136, 0.04044515639543533, -0.046643245965242386, -0.04555770382285118, -0.028556732460856438, -0.026963436976075172, 0.010995480231940746, -0.043106481432914734, -0.0029589745681732893, 0.0222886074334383, -0.04555770382285118, 0.045277565717697144, 0.051265548914670944, 0.0006483700126409531, 0.026525719091296196, -0.0093759223818779, 0.008793757297098637, 0.0018198131583631039, -0.010531498119235039, -0.005720976274460554, -0.0029611631762236357, 0.07059518247842789, -0.04884934425354004, 0.02459975890815258, 0.08537254482507706, -0.036803342401981354, -0.030185043811798096, 0.022673800587654114, 0.029502203688025475, -0.0027204183861613274, 0.03904445841908455, -0.04716850817203522, 0.03851919621229172, 0.03893940523266792, 0.015101276338100433, 0.059564683586359024, -0.004954969510436058, 0.02328660525381565, 0.005812896881252527, -0.051440637558698654, -0.042826343327760696, -0.0011435386259108782, -0.007843908853828907, 0.02677084133028984, 0.051440637558698654, -0.048569206148386, 0.02291892282664776, -0.01046146359294653, -0.04905945062637329, 0.0711904764175415, 0.03270630165934563, 0.047448646277189255, 0.09881924837827682, 0.0006888589123263955, 0.03107798844575882, 0.01637941226363182, -0.014015735127031803, -0.028504205867648125, 0.036978427320718765, 0.029152028262615204, 0.008990731090307236, -0.004854294005781412, 0.045277565717697144, 0.005847914610058069, 0.00581727409735322, -0.01387566514313221, 0.05235109105706215, 0.020485209301114082, -0.05690335854887962, 0.024074498564004898, -0.010584024712443352, -0.0013197201769798994, -0.016493219882249832, -0.038134004920721054, 0.010794129222631454, 0.03718853369355202, -0.0068152714520692825, 0.02943216823041439, 0.01843668892979622, 0.007913944311439991, 0.013236596249043941 ]
18,539
grafana_client.client
TokenAuth
null
class TokenAuth(niquests.auth.AuthBase): def __init__(self, token): self.token = token def __call__(self, request): request.headers.update({"Authorization": f"Bearer {self.token}"}) return request
(token)
[ -0.03400110825896263, 0.00031527664395980537, -0.04232487455010414, 0.027033666148781776, 0.018709897994995117, -0.012392752803862095, -0.03231034055352211, 0.03323933482170105, -0.028445735573768616, -0.010135302320122719, 0.06257689744234085, 0.0028496829327195883, -0.011342992074787617, -0.0012390430783852935, 0.0108970757573843, -0.03325791284441948, 0.06666446477174759, 0.03987233713269234, -0.011082874611020088, -0.0448145717382431, -0.0006410044734366238, 0.04202759638428688, -0.025287162512540817, 0.01833830215036869, 0.006498299073427916, 0.07186681777238846, -0.020809421315789223, -0.033332232385873795, 0.05759750306606293, -0.03608204796910286, -0.02729378454387188, -0.013340325094759464, 0.06068175658583641, 0.056222595274448395, 0.025157103314995766, -0.0866563692688942, -0.01913723535835743, 0.0359148308634758, -0.11705298721790314, 0.03405684605240822, -0.031752947717905045, -0.009670807048678398, -0.003664873307570815, -0.001056147739291191, 0.043811261653900146, 0.03766133636236191, 0.02883591130375862, 0.08115673810243607, 0.008300543762743473, 0.024358170107007027, -0.023596396669745445, -0.012058315798640251, 0.004315167665481567, -0.04566924646496773, -0.025324322283267975, 0.04150736331939697, 0.03680666163563728, 0.015421266667544842, -0.02276030369102955, 0.04466593638062477, -0.03831163048744202, 0.010962105356156826, 0.01128725241869688, -0.008960127830505371, 0.0008511889027431607, 0.017084162682294846, -0.06023583933711052, 0.04719279333949089, 0.028167037293314934, 0.0360448881983757, 0.04704415425658226, -0.011881807819008827, 0.008342348039150238, 0.006934924982488155, 0.06514091789722443, 0.012950148433446884, -0.10620236396789551, -0.00448470888659358, 0.007826757617294788, 0.010646248236298561, 0.01521688885986805, -0.035710450261831284, -0.02746100351214409, 0.012402042746543884, -0.02276030369102955, -0.027256624773144722, -0.06350589543581009, -0.11683003604412079, -0.0003591134736780077, 0.010441869497299194, -0.0513918362557888, 0.032236021012067795, -0.040987126529216766, -0.0025198906660079956, -0.008161194622516632, -0.006855960935354233, -0.0017383762169629335, 0.005592531990259886, -0.03164146840572357, 0.0045241909101605415, -0.04659823700785637, 0.04752723127603531, -0.0491994172334671, 0.03539459407329559, 0.005671496037393808, -0.021701252087950706, 0.002933292184025049, -0.04299375042319298, 0.019174395129084587, 0.019564570859074593, -0.03216170147061348, -0.025807397440075874, -0.02067936211824417, 0.03597056865692139, -0.025138523429632187, -0.003578941570594907, 0.011166484095156193, 0.0067677064798772335, 0.023280538618564606, -0.025324322283267975, 0.038014352321624756, 0.0021250692661851645, 0.04503753036260605, 0.028965970501303673, 0.013275295495986938, 0.04581788554787636, -0.012058315798640251, -0.04295659065246582, 0.040206775069236755, -0.06038447842001915, -0.057300224900245667, 0.025008464232087135, -0.017669428139925003, -0.02276030369102955, -0.009763705544173717, -0.008500277064740658, -0.013553992845118046, 0.0031423154287040234, -0.031139811500906944, 0.029820643365383148, 0.012513522058725357, 0.035673294216394424, 0.011649559251964092, -0.045111849904060364, -0.027646802365779877, 0.02428385056555271, -0.01262500137090683, -0.006721257232129574, 0.026141835376620293, -0.07706917822360992, 0.04644959792494774, -0.01002382393926382, 0.10003385692834854, 0.030062180012464523, 0.006739836651831865, 0.03134419023990631, -0.02963484451174736, -0.0324961394071579, 0.022500185295939445, -0.0002853747282642871, 0.015319078229367733, -0.016192330047488213, -0.023484917357563972, -0.012327724136412144, 0.03338797390460968, -0.011547370813786983, 0.013721211813390255, -0.03361092880368233, -0.02872443199157715, -0.015885762870311737, -0.018533390015363693, -0.03539459407329559, -0.009159861132502556, 0.008792908862233162, -0.019527411088347435, -0.022704564034938812, -0.02476692572236061, 0.009838025085628033, -0.023094741627573967, 0.018747057765722275, -0.0015502553433179855, -0.030954012647271156, 0.002777686109766364, -0.018050314858555794, 0.012058315798640251, 0.016935523599386215, 0.04685835540294647, 0.01629452034831047, -0.012745769694447517, 0.02084658108651638, 0.023912254720926285, 0.017232801765203476, -0.032867737114429474, -0.02240728586912155, -0.021868471056222916, -0.008244804106652737, 0.013721211813390255, -0.002770718652755022, 0.024581128731369972, -0.0017151514766737819, -0.04277079179883003, 0.06532671302556992, -0.010228201746940613, -0.004120079334825277, 0.033499449491500854, 0.031269870698451996, 0.02383793517947197, -0.024896984919905663, -0.0477130301296711, -0.006605132948607206, 0.03795861452817917, -0.011983996257185936, -0.04425717890262604, 0.054959166795015335, -0.03764275461435318, 0.00045927040628157556, 0.030508097261190414, -0.01090636570006609, 0.08048786222934723, -0.018830668181180954, 0.07929875701665878, 0.016972683370113373, 0.004324457608163357, -0.06042163819074631, 0.005025846883654594, 0.028631532564759254, 0.05863797292113304, -0.04002097621560097, -0.09029801934957504, -0.03058241680264473, -0.03056383691728115, -0.045074690133333206, 0.019100075587630272, 0.06421192735433578, -0.09906770288944244, -0.032068803906440735, 0.057188745588064194, -0.01388842985033989, -0.05239514634013176, -0.002717301482334733, 0.02902171015739441, 0.032997794449329376, 0.017678717151284218, 0.018849248066544533, -0.019973328337073326, 0.019508831202983856, -0.05365857854485512, 0.049013618379831314, -0.012950148433446884, -0.01310807652771473, -0.035506073385477066, -0.023763615638017654, -0.048530541360378265, -0.020159125328063965, -0.01764155738055706, 0.0007431936101056635, -0.06599558889865875, -0.004312845412641764, 0.02132965624332428, -0.02853863313794136, -0.032700516283512115, 0.0020472661126405, -0.03011791966855526, 0.010060982778668404, 0.010321101173758507, 0.019211554899811745, -0.020512143149971962, 0.022816043347120285, 0.0017302476335316896, -0.04221339523792267, 0.11630979925394058, 0.006660872604697943, 0.014083518646657467, -0.008690720424056053, 0.010525478981435299, -0.013117366470396519, -0.01764155738055706, 0.028427155688405037, -0.05469904839992523, -0.0208280012011528, 0.023131901398301125, -0.05663135275244713, -0.005782975349575281, 0.009480363689363003, -0.022165749222040176, 0.0133960647508502, 0.0017883095424622297, 0.053844377398490906, -0.03875754401087761, -0.03712252154946327, 0.0008622207096777856, 0.009791575372219086, 0.006879185792058706, 0.0016048336401581764, 0.02822277694940567, -0.025751657783985138, -0.05640839412808418, 0.048233263194561005, 0.035060156136751175, -0.0030540612060576677, 0.007083564065396786, 0.0010364067275077105, -0.09364239126443863, -0.08695364743471146, 0.03905482217669487, -0.0277582798153162, 0.03901766240596771, 0.057634662836790085, -0.06023583933711052, -0.013702631928026676, 0.04418285936117172, 0.07119794934988022, -0.04986828938126564, -0.03156714886426926, -0.04719279333949089, 0.00842131208628416, -0.019016465172171593, 0.018747057765722275, 0.02194279059767723, 0.05514496564865112, -0.017000554129481316, -0.028259936720132828, -0.014928901568055153, -0.02918892912566662, 0.05926968902349472, -0.016824044287204742, 0.014613044448196888, 0.0011130485218018293, -0.07175534218549728, 0.05555371940135956, -0.025788817554712296, 0.010869205929338932, -0.016768304631114006, -0.05265526473522186, -0.05469904839992523, 0.02480408549308777, 0.010748437605798244, -0.008662850596010685, 0.022463025525212288, -0.006345015484839678, -0.0856902226805687, -0.05302686244249344, -0.015960082411766052, 0.055405084043741226, -0.09676380455493927, -0.08242017030715942, -0.026476271450519562, -0.005132680758833885, 0.028743011876940727, -0.06384032964706421, -0.035376016050577164, -0.0138791399076581, 0.07900147885084152, 0.02805555798113346, 0.09111553430557251, -0.014919611625373363, 0.0030470937490463257, -0.01734428107738495, -0.010711277835071087, -0.04864202067255974, 0.009053027257323265, 0.002249321900308132, 0.015802154317498207, 0.04306806996464729, -0.040206775069236755, -0.03125128895044327, 0.015616355463862419, -0.011250092647969723, 0.038014352321624756, -0.0044730962254107, -0.0025245356373488903, -0.038032930344343185, -0.02853863313794136, 0.04173032194375992, 0.016238780692219734, 0.00417349673807621, -0.052469465881586075, -0.016889074817299843, -0.07833260297775269, -0.02339201793074608, 0.02053072303533554, 0.03935210034251213, 0.05800626054406166, 0.05960412696003914, -0.0094942981377244, -0.009540747851133347, -0.005522857420146465, 0.014176418073475361, 0.05830353870987892, 0.045074690133333206, -0.012736479751765728, -0.07391060143709183, -0.01593221351504326, 0.035840511322021484, -0.09297351539134979, -0.02759106270968914, -0.06149927154183388, -0.030359458178281784, -0.017214221879839897, -0.02162693440914154, 0.07561995089054108, -0.012364882975816727, 0.05094591900706291, 0.011575240641832352, 0.04749007150530815, 0.02181273140013218, 0.03104691207408905, -0.03453992307186127, -0.008504921570420265, -0.02445106953382492, -0.05507064610719681, -0.0693771243095398, 0.05388153716921806, -0.015718543902039528, 0.052283670753240585, -0.03587767109274864, 0.039463579654693604, 0.005750460550189018, 0.027163725346326828, 0.008839358575642109, 0.027999818325042725, -0.010088852606713772, -0.003934280946850777, 0.03831163048744202, -0.048976458609104156, 0.011482341215014458, 0.03292347490787506, -0.04410853981971741, 0.0016954103484749794, -0.052135031670331955, 0.004756439011543989, 0.06625571101903915, -0.0455206073820591, 0.00006847686745459214, 0.027349524199962616, 0.007301877252757549, -0.029523365199565887, 0.0011095647932961583, -0.01622948981821537, 0.014863871969282627, 0.018161794170737267, 0.023577816784381866, 0.013433224521577358, 0.008867228403687477, 0.02556585893034935, -0.0010433741845190525, -0.047601550817489624, 0.04715563356876373, 0.02385651506483555, -0.06677594780921936, 0.025918876752257347, 0.003063351148739457, -0.046523917466402054, 0.013219555839896202, -0.0025733078364282846, -0.03624926880002022, 0.022667404264211655, 0.009294564835727215, 0.04094996675848961, 0.0013876818120479584, 0.02088373899459839, 0.016768304631114006, -0.029449045658111572, 0.001592059968970716, -0.023429177701473236, 0.014139258302748203, 0.012745769694447517, 0.02459970861673355, -0.01766013726592064, -0.028482893481850624, -0.008151904679834843, -0.01574641466140747, -0.0674448162317276, -0.00729258731007576, -0.0006026835762895644, 0.02759106270968914, 0.059492647647857666, 0.011120034381747246, -0.065512515604496, 0.01081346720457077, -0.01559777557849884, 0.05131751671433449, -0.009605777449905872, 0.014399375766515732, 0.014371505938470364, -0.004637992475181818, 0.022816043347120285, -0.029820643365383148, 0.049013618379831314, -0.02931898646056652, 0.016889074817299843, 0.07591722905635834, -0.046821195632219315, 0.04971965029835701, 0.01840333081781864, 0.082791768014431, -0.017446469515562057, -0.023169059306383133, -0.02510136365890503, 0.01002382393926382, 0.0029820643831044436, -0.020623622462153435, -0.025825977325439453, -0.012968728318810463, 0.01842191070318222, 0.0021215854212641716, -0.1125195100903511, -0.024971304461359978, -0.00533241406083107, 0.0108970757573843, 0.017502209171652794, 0.012820089235901833, 0.013767661526799202, -0.025844557210803032, 0.036936722695827484, 0.011974706314504147, -0.07383628189563751, 0.03401968628168106, -0.03231034055352211, 0.024581128731369972, 0.016006531193852425, 0.04247351363301277, 0.0392034612596035, -0.0293375663459301, 0.011389441788196564, 0.0334622897207737, 0.008393442258238792, 0.013340325094759464, 0.0317901074886322, 0.06785357743501663, -0.0213110763579607, -0.00416188407689333, -0.023429177701473236, 0.02071652188897133, 0.03879470378160477, 0.04514900967478752, -0.03422406315803528, 0.02603035606443882, 0.03842310979962349, -0.030972592532634735, 0.0024269914720207453, -0.0189885962754488, 0.0071439482271671295, -0.00721362279728055, -0.07796100527048111, 0.015839314088225365, -0.043848421424627304, -0.010999265126883984, -0.014129968360066414, -0.016471028327941895, -0.07231273502111435, -0.032700516283512115, 0.005429957993328571, -0.01724209077656269, -0.043513983488082886, 0.017223510891199112, -0.0006305532879196107, -0.04749007150530815, 0.014287896454334259, 0.04213907569646835, 0.031288448721170425, 0.05302686244249344, 0.005095520988106728, 0.04284511134028435, -0.059492647647857666, -0.020029067993164062, 0.03448418155312538, 0.022648824378848076, -0.020735101774334908, 0.010794887319207191, -0.01145447138696909, -0.00831447821110487, -0.03439128398895264, 0.03669518232345581, -0.020456403493881226, 0.06755629926919937, 0.003620746312662959, 0.03998381644487381, 0.025361482053995132, -0.03232892230153084, 0.015551325865089893, 0.028185617178678513, -0.004431291949003935, -0.11935689300298691, -0.034595660865306854, -0.014362215995788574, -0.04864202067255974, 0.010404710657894611, 0.015960082411766052, 0.02476692572236061, -0.03338797390460968, -0.04708131402730942, -0.024358170107007027, -0.002192421117797494, -0.01772516779601574, 0.008235514163970947, -0.05287822335958481, -0.05726306512951851, -0.029913542792201042, -0.004556705709546804, 0.03532027453184128, 0.04440581798553467, -0.07684621959924698, 0.020493563264608383, 0.044628776609897614, 0.015625644475221634, -0.058266378939151764, -0.0520978718996048, -0.07409640401601791, -0.02071652188897133, 0.011027134954929352, 0.03634216636419296, -0.016591796651482582, 0.05313834175467491, -0.0008064811700023711, 0.06027299910783768, -0.05886093154549599, 0.002536148065701127, 0.043848421424627304, -0.031920164823532104, 0.031771525740623474, -0.001226269407197833, -0.04678403586149216, 0.048939298838377, -0.02350349724292755, 0.01051618903875351, 0.08189993351697922, -0.02746100351214409, -0.04983112961053848, -0.0032212797086685896, -0.0024177017621695995, -0.010646248236298561, -0.009949504397809505, -0.004196721129119396, 0.006776996422559023, 0.027981238439679146, -0.003671840764582157, 0.016703275963664055, 0.040243931114673615, 0.00029045515111647546, -0.0016210910398513079, -0.004491676110774279, 0.03431696444749832, -0.01797599531710148, -0.02586313709616661, -0.003657905850559473, -0.05562803894281387, -0.02398657239973545, 0.014836002141237259, -0.07038043439388275, -0.007450515870004892, 0.06439772248268127, 0.016666116192936897, 0.023169059306383133, -0.02335485816001892, -0.07026895135641098, -0.030062180012464523, 0.041804637759923935, 0.08888595551252365, -0.019638890400528908, 0.02196137048304081, 0.016452448442578316, 0.11630979925394058, 0.003179475199431181, -0.04265931248664856, 0.023782195523381233, 0.020289184525609016, -0.0778866857290268, -0.005374218802899122, 0.047452911734580994, 0.03485577926039696, -0.015904342755675316, 0.02383793517947197, 0.027646802365779877, 0.04544628784060478, -0.011473051272332668, 0.03561755269765854, -0.03329507261514664, 0.01671256497502327, 0.03437270224094391, -0.014092808589339256, -0.012922278605401516, 0.048939298838377, -0.002065845998004079, -0.0133960647508502, 0.027386683970689774, 0.04187895730137825, 0.02526858262717724, -0.024841245263814926, -0.04693267494440079, 0.02931898646056652, -0.035060156136751175, -0.019545990973711014, 0.008918323554098606, -0.009995954111218452, 0.030972592532634735, -0.05458756908774376, -0.012550681829452515, 0.011918967589735985, 0.04410853981971741, 0.033648088574409485, -0.05020272731781006, 0.02573307789862156, -0.019341614097356796, -0.007492320612072945, -0.00408291956409812, 0.040206775069236755, -0.03511589765548706, -0.012587841600179672, -0.018616998568177223, -0.006818801164627075, 0.02069794200360775, 0.037568435072898865, 0.01779019646346569, 0.05477336794137955, 0.06317145377397537, 0.010144592262804508, 0.027535323053598404, 0.007380841299891472, 0.01364689227193594, 0.012903698720037937, -0.0001344135234830901, 0.02558443881571293, 0.030935432761907578, 0.0411357656121254, -0.032719098031520844, 0.005899099167436361, 0.03623068705201149, -0.020029067993164062, -0.03532027453184128, 0.044145699590444565, 0.0033884982112795115, -0.05388153716921806, -0.001819663099013269, -0.021571194753050804, -0.021924210712313652, -0.027851179242134094, 0.0217941515147686, -0.001671024365350604, 0.09111553430557251, -0.0070556942373514175, -0.0038042222149670124, -0.01976894959807396, 0.009275984950363636, 0.008648915216326714, 0.026532011106610298, 0.023559236899018288, -0.055739518254995346, 0.02556585893034935, 0.07900147885084152, 0.01677759550511837, 0.009577907621860504, 0.011277962476015091, -0.0019369482761248946, 0.006233536172658205, 0.028315676376223564, -0.026773549616336823, 0.035487495362758636, 0.04715563356876373, 0.026550590991973877, -0.0015165794175118208, -0.04050404950976372, -0.04158168286085129, -0.032681938260793686, 0.0007455160957761109, 0.051354676485061646, 0.06960008293390274, 0.025956036522984505 ]
18,540
grafana_client.client
__call__
null
def __call__(self, request): request.headers.update({"Authorization": f"Bearer {self.token}"}) return request
(self, request)
[ -0.039037227630615234, -0.0012832004576921463, -0.06979912519454956, 0.012090018019080162, 0.01819176785647869, -0.009820411913096905, -0.03617403283715248, 0.02894620969891548, -0.029085878282785416, -0.015712659806013107, 0.05656557157635689, -0.036139115691185, 0.021159714087843895, 0.009715660475194454, 0.007572628557682037, -0.02161363512277603, 0.04640471935272217, 0.04535720869898796, 0.017484698444604874, -0.026746436953544617, 0.005329210311174393, -0.022800814360380173, -0.037291377782821655, 0.00583987170830369, 0.019291654229164124, 0.07786495238542557, -0.023970535025000572, -0.008698702789843082, 0.058416176587343216, -0.03812938556075096, -0.010291791521012783, -0.0024834731593728065, 0.029382672160863876, 0.046684056520462036, 0.022346893325448036, -0.04958216845989227, -0.04280826821923256, -0.006686609238386154, -0.08945740759372711, 0.034934479743242264, -0.04291301965713501, -0.0032189127523452044, 0.006271969992667437, 0.01421995647251606, 0.03404409438371658, 0.01857585459947586, -0.002219413174316287, 0.08931773900985718, 0.050105925649404526, 0.014761170372366905, -0.0019018864259123802, -0.005014956928789616, 0.00559545261785388, -0.04849974066019058, -0.03310133516788483, 0.012543939985334873, 0.03470751643180847, -0.005412138067185879, 0.025140253826975822, 0.053423039615154266, -0.003751397365704179, 0.026414725929498672, -0.0017578537808731198, -0.005481972359120846, 0.005014956928789616, -0.005678380373865366, -0.056251320987939835, 0.04361135885119438, 0.008009091950953007, 0.047661732882261276, 0.039735570549964905, -0.013189904391765594, 0.013207362964749336, 0.005032415501773357, 0.030936479568481445, -0.020880378782749176, -0.0875718891620636, -0.022364351898431778, -0.009960079565644264, -0.02259131148457527, 0.028003450483083725, -0.004787996411323547, -0.02962709218263626, 0.0036793809849768877, -0.02522754669189453, -0.004980039782822132, -0.047347478568553925, -0.0831025093793869, -0.039037227630615234, 0.018506020307540894, -0.016987130045890808, 0.03306641802191734, -0.060755614191293716, -0.022346893325448036, 0.010640962049365044, 0.0015243461821228266, -0.002263059373944998, -0.019483696669340134, -0.014595314860343933, 0.025070421397686005, -0.056041818112134933, 0.06592333316802979, -0.02121208980679512, 0.04231942817568779, 0.051362935453653336, -0.018209226429462433, 0.03261249512434006, -0.04221467673778534, 0.023132525384426117, 0.002439826726913452, -0.027514612302184105, -0.04986150562763214, -0.03109360672533512, 0.02288810722529888, -0.01600072532892227, 0.0011337120085954666, 0.01632370613515377, 0.0047399853356182575, 0.003020322183147073, -0.007459148298949003, 0.037396129220724106, 0.0008358261547982693, 0.061803124845027924, 0.019623365253210068, 0.023202359676361084, 0.04392561316490173, -0.020880378782749176, -0.04623013362288475, 0.026955939829349518, -0.03715170919895172, -0.08093765377998352, 0.03956098482012749, -0.020793085917830467, -0.014185039326548576, -0.012334437109529972, -0.01845364458858967, -0.0030312337912619114, -0.032507747411727905, -0.026257598772644997, 0.04458903521299362, 0.012002726085484028, 0.02618776448071003, 0.04263368248939514, -0.05289928615093231, -0.0104663772508502, 0.027706654742360115, 0.004744349978864193, 0.013888244517147541, 0.021089879795908928, -0.040608495473861694, 0.06047628074884415, 0.00481418427079916, 0.07081171870231628, 0.01925673708319664, 0.0038103198166936636, 0.0183838102966547, -0.04671897366642952, -0.005320481024682522, 0.03086664527654648, 0.011863057501614094, 0.0231674425303936, 0.014281061477959156, -0.02297540009021759, -0.003991452045738697, 0.051258184015750885, -0.050978850573301315, 0.006795724853873253, 0.020880378782749176, -0.029277920722961426, -0.0490933321416378, -0.011382948607206345, -0.035929612815380096, -0.026170305907726288, 0.020985128358006477, -0.05464513599872589, -0.015354759991168976, -0.011906703934073448, 0.021648552268743515, -0.0183838102966547, -0.0006055920966900885, -0.002682063728570938, -0.03283945843577385, 0.0004004545626230538, -0.012456647120416164, 0.010562398470938206, -0.0009149350225925446, 0.025157712399959564, 0.008353897370398045, -0.018837733194231987, 0.05583231523633003, 0.018750440329313278, 0.013582720421254635, 0.005158989690244198, -0.03760563209652901, -0.05199144408106804, -0.03165227919816971, -0.0034305972512811422, 0.00445846701040864, 0.010920298285782337, -0.0018975217826664448, -0.021439051255583763, 0.03496939688920975, -0.006638598628342152, 0.01836635172367096, 0.04497312381863594, 0.02452920749783516, 0.031914155930280685, -0.018732981756329536, -0.0665169209241867, 0.006285063456743956, 0.0176418237388134, 0.004192224703729153, -0.02452920749783516, 0.02070579305291176, -0.05789241939783096, -0.0176418237388134, 0.011705931276082993, -0.022207224741578102, 0.0665169209241867, -0.028265327215194702, 0.05178194120526314, 0.008803453296422958, -0.005687109660357237, -0.06585349887609482, 0.026851188391447067, 0.002692975103855133, 0.037954799830913544, -0.05237552896142006, -0.11501666158437729, -0.038653142750263214, -0.03020322322845459, -0.059952523559331894, 0.015127799473702908, 0.03489956259727478, -0.10551923513412476, -0.011601179838180542, 0.034218680113554, -0.004368992056697607, -0.09113342314958572, -0.019989993423223495, 0.054470550268888474, 0.016864920035004616, 0.0658884197473526, 0.024162577465176582, -0.043157435953617096, 0.016454646363854408, -0.04874416068196297, 0.062222130596637726, -0.01436835341155529, -0.013862056657671928, -0.03886264190077782, -0.007537711877375841, -0.040887828916311264, -0.011208363808691502, -0.026414725929498672, -0.013512887060642242, -0.016053099185228348, -0.025943346321582794, 0.039351481944322586, -0.02589097060263157, -0.02161363512277603, 0.03322354331612587, 0.02170092798769474, -0.0255068838596344, -0.003701204201206565, 0.01855839602649212, -0.005416502710431814, 0.028789082542061806, -0.011138529516756535, -0.031215816736221313, 0.04727764427661896, -0.0006879743887111545, 0.030622227117419243, 0.005486337002366781, 0.00045501242857426405, -0.007576993200927973, -0.012081288732588291, 0.016454646363854408, -0.0673898458480835, 0.005324845667928457, 0.0786331295967102, -0.04231942817568779, -0.026659144088625908, 0.036418452858924866, -0.06414256989955902, 0.007415502332150936, 0.022346893325448036, 0.0875718891620636, -0.02669406123459339, -0.04015457257628441, -0.0055212536826729774, 0.02239926904439926, 0.024337163195014, -0.001586542115546763, 0.0252973809838295, -0.009436325170099735, -0.03189669921994209, 0.04141158610582352, 0.05792733654379845, 0.0329442098736763, 0.009060966782271862, 0.013329572044312954, -0.06623758375644684, -0.08051864802837372, 0.05310878902673721, -0.02569892629981041, 0.035213813185691833, 0.05181685835123062, -0.06501549482345581, 0.005071697290986776, 0.024983128532767296, 0.07042762637138367, -0.03196653351187706, -0.04584604874253273, -0.06407273560762405, -0.016611771658062935, -0.0080789253115654, 0.025489425286650658, 0.030726978555321693, 0.05729883164167404, -0.013469240628182888, -0.04710305854678154, -0.012954214587807655, -0.010291791521012783, 0.0635489746928215, -0.013425594195723534, 0.0070226858370006084, 0.006097384728491306, -0.039910152554512024, 0.0312507338821888, -0.010623503476381302, 0.0013388495426625013, -0.0178513266146183, -0.027427319437265396, -0.046858642250299454, 0.009244280867278576, 0.003417503321543336, -0.023813407868146896, 0.019082151353359222, 0.013285926543176174, -0.09259993582963943, -0.0016771081136539578, -0.003908523824065924, 0.030465099960565567, -0.07563026249408722, -0.0673898458480835, 0.003048692364245653, 0.010099748149514198, 0.040887828916311264, -0.0701482966542244, -0.017912430688738823, -0.02463395707309246, 0.08121699094772339, 0.040817998349666595, 0.10321471095085144, -0.023534072563052177, -0.025437049567699432, -0.02278335578739643, -0.025873512029647827, -0.020077286288142204, 0.04172584041953087, 0.00459158793091774, 0.01226460374891758, 0.05188669264316559, -0.030150847509503365, -0.04808073863387108, -0.010789358988404274, -0.008419366553425789, 0.01568647101521492, -0.04151633754372597, 0.011644826270639896, -0.02356898784637451, -0.0032909291330724955, 0.03645337000489235, 0.007576993200927973, 0.03477735072374344, -0.07451292127370834, -0.018628230318427086, -0.08847972750663757, 0.011513886973261833, 0.050978850573301315, 0.04741731286048889, 0.04563654586672783, 0.050280507653951645, 0.0331537090241909, -0.02657185308635235, -0.003090156242251396, -0.02901604399085045, 0.03997998684644699, 0.05405154824256897, 0.017222819849848747, -0.07905213534832001, -0.009506158530712128, 0.04797598719596863, -0.05813683941960335, -0.017310112714767456, -0.04993133991956711, -0.027392402291297913, -0.025733843445777893, -0.02639726735651493, 0.08638470619916916, -0.0151976328343153, 0.011801952496170998, 0.011767036281526089, 0.03119835816323757, -0.008646327070891857, 0.022556394338607788, 0.011784493923187256, -0.01299786102026701, -0.0032407359685748816, -0.05708932876586914, -0.0882003903388977, 0.028474830090999603, 0.015660284087061882, 0.021875513717532158, -0.008999861776828766, 0.03540585935115814, 0.01495321374386549, 0.03261249512434006, 0.023289652541279793, 0.05583231523633003, 0.004757443908601999, 0.005866059567779303, 0.04200517386198044, -0.028492288663983345, -0.022346893325448036, 0.013416864909231663, -0.03097139671444893, 0.003605182282626629, -0.06285063922405243, 0.012500293552875519, 0.06337439268827438, -0.03262995555996895, 0.025000587105751038, 0.024180036038160324, 0.018244143575429916, -0.02999372035264969, -0.008890746161341667, -0.014490563422441483, 0.035336025059223175, 0.046579305082559586, 0.00038599674007855356, 0.001261377357877791, -0.022224683314561844, -0.02882399968802929, 0.016987130045890808, -0.05300403758883476, 0.03439326584339142, 0.009488699957728386, -0.05408646538853645, 0.07521126419305801, 0.03603436425328255, -0.008541575632989407, 0.011417865753173828, -0.01724027842283249, -0.043157435953617096, 0.03760563209652901, -0.03578994423151016, 0.03771038353443146, 0.0017262102337554097, 0.04829023778438568, -0.006367991678416729, -0.015450781211256981, 0.017275195568799973, 0.005634733941406012, 0.029679467901587486, 0.012674878351390362, 0.018139392137527466, -0.036802537739276886, -0.028754165396094322, -0.015346030704677105, -0.060162026435136795, -0.08952724188566208, -0.008140030317008495, 0.004246782511472702, 0.0048621948808431625, 0.03097139671444893, 0.022364351898431778, -0.0610000342130661, 0.01251775212585926, -0.005608546547591686, 0.017249008640646935, -0.0010033186990767717, 0.03126819059252739, 0.02327219396829605, 0.008572128601372242, 0.04242417961359024, -0.014254873618483543, 0.03353779762983322, -0.015415864065289497, 0.01568647101521492, 0.06267604976892471, -0.04029424116015434, 0.02823041006922722, -0.01965828239917755, 0.05775275081396103, -0.008921299129724503, -0.003895430127158761, -0.022853190079331398, 0.028858916833996773, 0.009095883928239346, -0.028125660493969917, -0.03048255853354931, 0.007655556779354811, 0.003280017524957657, 0.017144257202744484, -0.07147514075040817, -0.04773156717419624, -0.04029424116015434, -0.016821274533867836, -0.029365213587880135, 0.02863195724785328, -0.017126798629760742, -0.00036390082095749676, 0.027217816561460495, 0.027444778010249138, -0.0678088515996933, 0.06634233891963959, -0.03757071495056152, 0.014787358231842518, 0.019797950983047485, 0.03970065340399742, 0.06183804199099541, -0.01758071966469288, -0.0022074102889746428, 0.030674602836370468, 0.01964082382619381, 0.011400407180190086, 0.028963668271899223, 0.03840872272849083, -0.06512024253606796, -0.013966808095574379, -0.029365213587880135, 0.02599572204053402, 0.045880965888500214, 0.036523204296827316, -0.036523204296827316, 0.01436835341155529, -0.023411862552165985, -0.008371355943381786, 0.0045348480343818665, -0.03596452996134758, -0.015991995111107826, -0.019885243847966194, -0.08547686785459518, -0.0069353929720819, -0.018261602148413658, -0.03746596351265907, -0.018017182126641273, -0.0442049466073513, -0.10098002105951309, -0.048918746411800385, 0.005564900115132332, 0.03477735072374344, -0.0391070619225502, 0.00771666131913662, 0.020374082028865814, -0.043366938829422, 0.011400407180190086, 0.011348031461238861, -0.00229579396545887, 0.03802463412284851, -0.013844598084688187, 0.03489956259727478, -0.06278080493211746, -0.007118707522749901, 0.023603904992341995, 0.038059551268815994, -0.020688334479928017, -0.016192767769098282, 0.005918434821069241, -0.006852465216070414, -0.01182814035564661, 0.005586723331362009, -0.02032170630991459, 0.04629996791481972, -0.005259376019239426, 0.03760563209652901, 0.02444191463291645, -0.018698064610362053, 0.03011593036353588, -0.01289310958236456, -0.008035278879106045, -0.10216720402240753, -0.06581858545541763, -0.020670875906944275, -0.03559790179133415, 0.012168581597507, 0.042075008153915405, 0.022032639011740685, -0.02688610553741455, -0.0410274975001812, -0.01436835341155529, -0.007000862620770931, -0.048674326390028, 0.024337163195014, -0.048220403492450714, -0.06400290131568909, -0.034148845821619034, 0.02601318061351776, 0.04106241464614868, 0.051747024059295654, -0.02756698802113533, 0.04532229155302048, 0.02276589721441269, 0.038059551268815994, -0.05394679680466652, -0.03029051423072815, -0.06574875116348267, -0.034550391137599945, -0.0000449079270765651, 0.026362350210547447, -0.0023438050411641598, 0.04577621445059776, 0.00027033413061872125, 0.03617403283715248, -0.021334299817681313, -0.020688334479928017, 0.05757816508412361, -0.0514327697455883, 0.0178513266146183, -0.007367491256445646, -0.05593706667423248, 0.03603436425328255, -0.022032639011740685, 0.019588448107242584, 0.08547686785459518, -0.0582415908575058, -0.024406997486948967, 0.01770292967557907, -0.0015843597939237952, -0.025681467726826668, 0.022538935765624046, -0.008140030317008495, 0.05202636122703552, 0.039735570549964905, -0.017519615590572357, 0.028108201920986176, 0.0019619001541286707, -0.04406527802348137, 0.025384673848748207, 0.01725773699581623, 0.044623952358961105, -0.019693199545145035, -0.03432343155145645, 0.026065556332468987, -0.05667032301425934, -0.027130525559186935, 0.010911568999290466, -0.05502922460436821, -0.03276962414383888, 0.062222130596637726, 0.01589597389101982, 0.01876789890229702, 0.015066694468259811, -0.06340930610895157, -0.014769899658858776, 0.03687237203121185, 0.06009219214320183, -0.027130525559186935, 0.028195492923259735, 0.007197270635515451, 0.11543566733598709, -0.010562398470938206, -0.03214111551642418, 0.0016640143003314734, 0.006848100572824478, -0.047452230006456375, -0.010160853154957294, 0.06965945661067963, 0.013058966025710106, -0.031041231006383896, 0.010885381139814854, 0.04664913937449455, 0.049617085605859756, -0.025349756702780724, 0.04944249987602234, -0.04616029933094978, 0.014508021995425224, 0.026257598772644997, -0.038269054144620895, 0.010414001531898975, 0.035999447107315063, -0.0011337120085954666, -0.006883017718791962, 0.00022205042478162795, 0.013416864909231663, 0.031407859176397324, -0.02208501473069191, -0.039526067674160004, 0.017161715775728226, -0.06246655061841011, -0.028876375406980515, -0.002780267735943198, -0.033467963337898254, 0.05667032301425934, -0.06766918301582336, -0.04542704299092293, -0.01435962412506342, 0.0627109706401825, 0.04507787153124809, -0.024651415646076202, 0.04986150562763214, -0.0041289376094937325, -0.013338301330804825, -0.0041180262342095375, 0.047068145126104355, -0.008471742272377014, -0.03448055684566498, -0.025454508140683174, -0.004609046503901482, 0.018628230318427086, 0.013443052768707275, 0.04836007207632065, 0.0777951180934906, 0.05492447316646576, -0.03648828715085983, 0.02754952944815159, 0.03673270344734192, 0.01993761770427227, -0.007009591907262802, 0.03428851440548897, 0.04410019516944885, 0.015756305307149887, 0.047068145126104355, -0.04465886950492859, 0.008829641155898571, 0.04176075756549835, -0.029469965025782585, -0.06693592667579651, 0.044903289526700974, 0.009156988933682442, -0.030901562422513962, 0.003733938792720437, 0.020688334479928017, -0.02971438504755497, -0.04856957495212555, 0.04018948972225189, 0.035999447107315063, 0.08512769639492035, -0.015572991222143173, 0.01936148852109909, -0.05171210691332817, -0.010379084385931492, -0.02356898784637451, 0.016926025971770287, 0.03098885528743267, -0.06012710928916931, 0.04574129730463028, 0.0714053064584732, -0.010440189391374588, -0.009218093007802963, 0.03596452996134758, 0.01621895655989647, 0.017571991309523582, 0.013792223297059536, -0.032385535538196564, 0.04064341261982918, 0.052061278373003006, 0.021578717976808548, -0.010152123868465424, -0.0363486185669899, -0.026449643075466156, -0.006874288432300091, 0.03411392867565155, 0.0461253821849823, 0.08254383504390717, 0.017545802518725395 ]
18,541
grafana_client.client
__init__
null
def __init__(self, token): self.token = token
(self, token)
[ 0.020440511405467987, 0.01624438911676407, -0.008280068635940552, 0.027686091139912605, -0.0032613417133688927, -0.0122310696169734, -0.0044121588580310345, 0.04739539697766304, 0.014856761321425438, 0.0063689639791846275, 0.024794505909085274, 0.03202346712350845, -0.00120378821156919, 0.023498278111219406, -0.013203240931034088, 0.005263846833258867, 0.0580311082303524, 0.04752834141254425, -0.03285438194870949, 0.017848055809736252, -0.049622248858213425, 0.03968450427055359, -0.0071666426956653595, 0.043274056166410446, -0.004952253773808479, 0.03892006352543831, -0.007449153810739517, -0.0011902858968824148, -0.004333222284913063, -0.05613662302494049, -0.016909122467041016, -0.014698888175189495, 0.02471141517162323, 0.0481930747628212, -0.011408464051783085, -0.0902041420340538, -0.02143760956823826, 0.030826948583126068, -0.14065730571746826, -0.007640263997018337, -0.02216881513595581, 0.000571773445699364, -0.04776099696755409, 0.009937744587659836, -0.01738274283707142, 0.01070218626409769, 0.018978100270032883, 0.03272143751382828, -0.023132676258683205, -0.010976388119161129, -0.023531515151262283, 0.019061191007494926, -0.010270110331475735, -0.028483768925070763, -0.033901333808898926, 0.04098073020577431, 0.05703401193022728, 0.02025770954787731, 0.005579594522714615, 0.05846318602561951, -0.013211550191044807, 0.034167226403951645, 0.019692687317728996, 0.026772083714604378, 0.012147978879511356, 0.027719326317310333, -0.021886304020881653, 0.03270481899380684, 0.03323660418391228, 0.03622789680957794, 0.050486400723457336, -0.004075638484209776, -0.01952650398015976, 0.036194659769535065, 0.050120797008275986, -0.036294370889663696, -0.090802401304245, 0.0199087243527174, -0.006614083889871836, 0.028550243005156517, -0.022019250318408012, 0.019343702122569084, -0.027021357789635658, 0.021703502163290977, -0.024944070726633072, -0.034300174564123154, 0.004732061177492142, -0.055438652634620667, -0.08202793449163437, 0.060656800866127014, -0.06487785279750824, 0.04397202655673027, -0.05969293788075447, 0.02876628004014492, -0.03636084496974945, -0.02700473926961422, 0.011317063122987747, -0.01811394840478897, -0.03928566351532936, 0.021072005853056908, -0.006530992686748505, 0.06624054908752441, -0.08275914192199707, -0.0011155034881085157, -0.025907931849360466, -0.011450009420514107, -0.04523501545190811, -0.03446635603904724, 0.044669993221759796, -0.0012411794159561396, -0.046564482152462006, 0.013494061306118965, 0.01926061138510704, 0.08807700127363205, 0.0117159029468894, -0.029347920790314674, -0.019227374345064163, 0.002577913925051689, 0.003942692186683416, -0.016668155789375305, 0.07371878623962402, -0.027087831869721413, -0.032272741198539734, 0.02306620217859745, 0.018097329884767532, 0.023032965138554573, 0.031990230083465576, -0.03602847829461098, 0.025758367031812668, -0.052414122968912125, 0.009339485317468643, 0.033668678253889084, 0.008504415862262249, -0.04141280800104141, 0.013319568708539009, -0.05081876739859581, 0.01057754922658205, -0.034266937524080276, -0.07285463064908981, 0.010228564962744713, 0.04400526359677315, 0.04194459319114685, 0.0061986264772713184, -0.09319543838500977, -0.05600367486476898, 0.04842573031783104, -0.05985912308096886, 0.008192822337150574, 0.02813478372991085, -0.03160800784826279, 0.032771289348602295, -0.022850165143609047, 0.07046160101890564, 0.0022767072077840567, -0.013967682607471943, 0.041745174676179886, -0.003165786387398839, -0.010677258484065533, 0.0094391955062747, -0.015014635398983955, 0.0387871153652668, -0.028932463377714157, -0.044038500636816025, -0.0044869412668049335, 0.032887618988752365, 0.03079371340572834, 0.027270633727312088, -0.054840393364429474, -0.052048519253730774, -0.0031969458796083927, 0.00309100397862494, -0.022085722535848618, -0.06703823059797287, 0.03180743008852005, -0.044902652502059937, 0.004299985710531473, -0.019160902127623558, 0.08329092711210251, -0.006946450099349022, 0.01350236963480711, -0.013577152043581009, 0.01659337431192398, -0.012737927958369255, -0.03456606715917587, 0.030826948583126068, 0.0015870478237047791, 0.04280874505639076, 0.055073052644729614, 0.019576359540224075, 0.013170003890991211, 0.008766153827309608, -0.029962798580527306, 0.01526391040533781, -0.02318252995610237, -0.013975991867482662, -0.020839350298047066, -0.01198179554194212, 0.01773172803223133, -0.0017916606739163399, 0.0436396598815918, -0.01057754922658205, 0.060523852705955505, -0.02509363554418087, -0.05580425634980202, -0.0029829852283000946, 0.02941439300775528, 0.006933986209332943, 0.04284198209643364, -0.039086245000362396, -0.019543122500181198, -0.0011175808031111956, -0.015347001142799854, 0.04397202655673027, 0.05158320814371109, 0.028483768925070763, -0.07558003813028336, 0.004869162570685148, -0.0016161298844963312, 0.020241091027855873, 0.009613687172532082, 0.12835976481437683, 0.007565481588244438, -0.008093113079667091, -0.05673488229513168, -0.016393953934311867, -0.013610389083623886, 0.02545923739671707, -0.0496554858982563, -0.06467843055725098, -0.04221048578619957, -0.0013034980511292815, -0.05856289342045784, 0.03345264121890068, 0.04161222651600838, -0.026323389261960983, -0.03715852275490761, 0.05058610811829567, -0.017715109512209892, -0.10376467555761337, -0.05055287480354309, 0.006003361660987139, -0.008383933454751968, -0.0013980146031826735, 0.019676068797707558, 0.027154304087162018, 0.07744128257036209, 0.009273012168705463, 0.03533050790429115, -0.016069898381829262, -0.010145473293960094, -0.01877867989242077, -0.013319568708539009, -0.05108465999364853, 0.014923234470188618, 0.0000864671019371599, -0.07916958630084991, -0.0016150912269949913, 0.016884194687008858, 0.06514374166727066, 0.009347794577479362, -0.02977999672293663, -0.016759557649493217, 0.022484561428427696, 0.04889104142785072, 0.001357507542707026, 0.019343702122569084, -0.005666840821504593, 0.0037744317669421434, 0.027951983734965324, -0.04563385620713234, 0.0874122679233551, 0.008965573273599148, 0.011150880716741085, 0.009655233472585678, -0.02954733930528164, -0.05866260454058647, -0.02191953919827938, 0.0025529866106808186, -0.051516734063625336, -0.009946053847670555, 0.04284198209643364, -0.054308608174324036, 0.002949748421087861, 0.030012652277946472, -0.025392765179276466, 0.025891313329339027, 0.027204159647226334, 0.03400104492902756, -0.019543122500181198, -0.035795822739601135, -0.029879705980420113, 0.02092244103550911, 0.03463254123926163, 0.05148349702358246, 0.08442097157239914, 0.022135578095912933, -0.025675276294350624, 0.05590396746993065, 0.006418819073587656, -0.028550243005156517, -0.0030951586086302996, -0.017066996544599533, -0.034300174564123154, -0.029098646715283394, -0.023514896631240845, 0.005072736646980047, 0.01799762062728405, 0.06614083796739578, 0.013543915934860706, -0.012131360359489918, 0.07784012705087662, 0.09060297906398773, -0.013128458522260189, 0.056103385984897614, -0.03559640049934387, 0.029331302270293236, 0.006975532043725252, -0.03079371340572834, 0.06414664536714554, 0.06069003790616989, -0.011940249241888523, -0.04184488207101822, 0.02002505399286747, -0.031491681933403015, 0.020723022520542145, -0.013593770563602448, -0.025542329996824265, -0.015288837254047394, -0.04676390066742897, 0.040615130215883255, -0.01950988546013832, 0.00009581489575793967, -0.001001772005110979, -0.03818885609507561, -0.06148771569132805, -0.007037850562483072, -0.04257608950138092, -0.006281718146055937, 0.006867513060569763, -0.044437337666749954, 0.020623311400413513, -0.0646451935172081, -0.017964383587241173, 0.032106559723615646, 0.0005426913849078119, -0.057499323040246964, -0.03941861167550087, -0.02600764110684395, 0.056103385984897614, -0.01839645951986313, -0.014067391864955425, 0.0012764933053404093, 0.07418409734964371, 0.038953300565481186, 0.06833445280790329, -0.04576680436730385, -0.006356500554829836, 0.022451326251029968, -0.008633207529783249, -0.05394300818443298, 0.0367264449596405, 0.007299588993191719, -0.00465727923437953, 0.0033527424093335867, -0.006913213524967432, -0.045201778411865234, -0.005010418128222227, 0.006431282497942448, 0.039717741310596466, 0.0032343368511646986, 0.007204033900052309, -0.02751990780234337, -0.04064836725592613, -0.0011227739742025733, -0.015014635398983955, 0.012546817772090435, -0.041246622800827026, 0.016510281711816788, -0.05334474891424179, -0.022501179948449135, 0.0028936618473380804, 0.03828856721520424, 0.06866682320833206, 0.033402785658836365, -0.02469479665160179, -0.009788179770112038, -0.05224794149398804, 0.019426794722676277, 0.09352780133485794, 0.08581691235303879, -0.04875809699296951, -0.019543122500181198, -0.023980209603905678, -0.004061097279191017, -0.05321180075407028, 0.010336583480238914, -0.010211946442723274, -0.041279859840869904, -0.035164326429367065, -0.01572922244668007, 0.06614083796739578, 0.012330779805779457, 0.02889922633767128, 0.005608676932752132, 0.028483768925070763, 0.01672632060945034, 0.028433913365006447, 0.03842151165008545, -0.03652702644467354, 0.01438314002007246, -0.02220205031335354, -0.06338220089673996, 0.011233971454203129, -0.07072748988866806, -0.004470323212444782, -0.06913213431835175, 0.05517276003956795, 0.030627530068159103, 0.018911628052592278, -0.004279212560504675, -0.027985218912363052, 0.016776176169514656, 0.003597862320020795, 0.03125902637839317, -0.061022404581308365, 0.03556316718459129, 0.03968450427055359, -0.030760476365685463, 0.003302887547761202, -0.0321730300784111, -0.06939803063869476, 0.026589281857013702, -0.02067316696047783, -0.011990104801952839, 0.019177520647644997, 0.01184884924441576, -0.052680015563964844, -0.03240568935871124, -0.009422576986253262, 0.06248481571674347, -0.0022164660040289164, 0.024013446643948555, 0.07245579361915588, 0.057233430445194244, 0.024877596646547318, -0.0496554858982563, -0.05371034890413284, 0.030627530068159103, 0.00491070793941617, -0.059892360121011734, -0.04347347840666771, 0.02801845595240593, 0.0016742938896641135, -0.02153731882572174, 0.014142174273729324, -0.030461346730589867, -0.018064094707369804, 0.028035074472427368, 0.07770717889070511, 0.00357916671782732, -0.03765707090497017, 0.049256645143032074, 0.0011061556870117784, 0.007976784370839596, -0.03609495237469673, 0.05035345256328583, 0.011965177021920681, 0.05071905627846718, -0.014225265942513943, -0.043274056166410446, -0.009671851061284542, 0.0188783910125494, -0.048093363642692566, -0.02507701702415943, -0.00862489826977253, -0.0006263022660277784, 0.02331547625362873, -0.05513952299952507, -0.04779423400759697, -0.034266937524080276, -0.04270903393626213, -0.027187541127204895, -0.00494394451379776, 0.017798200249671936, -0.02447875775396824, 0.0029082028195261955, 0.0034960752818733454, -0.04719597473740578, 0.05095171183347702, -0.011317063122987747, -0.0650772675871849, 0.06933155655860901, -0.032505396753549576, -0.02509363554418087, 0.013535606674849987, 0.059393808245658875, -0.031857285648584366, 0.03818885609507561, -0.018080711364746094, -0.015006326138973236, -0.027735944837331772, 0.0025114407762885094, -0.03965126723051071, -0.08003374189138412, 0.02811816707253456, -0.016385644674301147, -0.06534316390752792, -0.020706404000520706, -0.006713793613016605, -0.0007535361219197512, 0.02280030958354473, 0.00035599517286755145, -0.00930624920874834, -0.0033298921771347523, 0.020972296595573425, 0.03742441534996033, -0.043041400611400604, 0.01952650398015976, -0.037457652390003204, 0.04081454873085022, -0.0067678033374249935, 0.008741226978600025, 0.030826948583126068, -0.09485726803541183, -0.0123058520257473, 0.004669742658734322, -0.034433118999004364, -0.006348191294819117, 0.007752437610179186, 0.030228691175580025, 0.021886304020881653, -0.03722499683499336, -0.015513184480369091, 0.019177520647644997, 0.005828869063407183, 0.0600917786359787, 0.011308753862977028, 0.015380238182842731, 0.02268398180603981, 0.04580003768205643, -0.008271759375929832, -0.036194659769535065, -0.02432919293642044, -0.03582905977964401, -0.048359256237745285, -0.0029829852283000946, -0.05680135637521744, -0.001003329991362989, -0.03715852275490761, 0.014532704837620258, -0.011466627940535545, -0.0545080304145813, -0.05115113407373428, -0.014358212240040302, 0.012264306657016277, -0.0065642292611300945, -0.00975494273006916, -0.021254807710647583, 0.06939803063869476, 0.03855445981025696, 0.013784880749881268, 0.014939852990210056, -0.02444552071392536, 0.02042389288544655, 0.005031190812587738, -0.014815215952694416, -0.013992609456181526, -0.01799762062728405, -0.04476970434188843, 0.0380559116601944, 0.05161644518375397, -0.04928988218307495, 0.0316578634083271, 0.06251805275678635, -0.00930624920874834, 0.05537218227982521, -0.00956383254379034, 0.06703823059797287, -0.00725804315879941, -0.004229357931762934, 0.04523501545190811, 0.05796463415026665, -0.023381950333714485, -0.056967537850141525, -0.01611144281923771, 0.014557632617652416, -0.018296750262379646, -0.0013045367086306214, 0.0010739577701315284, -0.002606996102258563, -0.01927722990512848, -0.020723022520542145, -0.029846468940377235, 0.03616142272949219, -0.006364809349179268, -0.003959310241043568, 0.03868740424513817, -0.05005432292819023, -0.010295038111507893, -0.010934842750430107, 0.01051107607781887, 0.038953300565481186, -0.055837493389844894, 0.02712106890976429, 0.040249526500701904, 0.009522287175059319, -0.054541267454624176, 0.015945259481668472, -0.02763623557984829, 0.025276437401771545, 0.026290152221918106, -0.0011954790679737926, -0.008259295485913754, 0.03056105598807335, -0.012339089065790176, 0.055571600794792175, 0.025957787409424782, 0.03729146718978882, 0.030743857845664024, 0.02713768556714058, 0.0464315339922905, 0.01312014926224947, -0.040615130215883255, 0.036560263484716415, -0.04486941546201706, -0.0050145722925662994, 0.01977577805519104, -0.07491530478000641, -0.034931670874357224, -0.006801039911806583, 0.019958579912781715, -0.012829328887164593, -0.017083613201975822, -0.053411222994327545, -0.024993926286697388, 0.03016221709549427, 0.013211550191044807, -0.0380559116601944, 0.034931670874357224, 0.028168020769953728, -0.043905552476644516, -0.006468673702329397, 0.0011071943445131183, 0.00875784456729889, -0.05550512671470642, -0.03192375600337982, -0.043141111731529236, 0.002579991240054369, 0.01977577805519104, 0.03242230787873268, 0.0005759280174970627, 0.04244314134120941, 0.00488162599503994, 0.05427537113428116, -0.006364809349179268, -0.061022404581308365, -0.025027161464095116, 0.053178563714027405, 0.07710891962051392, -0.03612818941473961, -0.03739117830991745, 0.01738274283707142, 0.011474937200546265, 0.008874173276126385, -0.05882878601551056, 0.00855011586099863, 0.011450009420514107, -0.014898307621479034, -0.03463254123926163, 0.04350671172142029, 0.008396396413445473, 0.02712106890976429, 0.023032965138554573, -0.016801102086901665, 0.037191759794950485, -0.041246622800827026, 0.03582905977964401, -0.029846468940377235, 0.06866682320833206, 0.032006848603487015, -0.013843045569956303, 0.021520700305700302, 0.044802941381931305, -0.061288297176361084, -0.039717741310596466, 0.081097312271595, 0.009597069583833218, 0.06225215643644333, 0.03152491897344589, -0.08481980860233307, -0.04623211547732353, -0.0041130296885967255, -0.01636902615427971, -0.008321614935994148, -0.031209170818328857, 0.04413820803165436, -0.06913213431835175, -0.06201950088143349, 0.018047476187348366, 0.004370613489300013, 0.02635662630200386, -0.012181214988231659, 0.011017933487892151, -0.037457652390003204, -0.00038351924740709364, -0.03928566351532936, 0.02647295407950878, -0.016568446531891823, -0.008840936236083508, -0.004243898671120405, 0.04344024136662483, -0.0006569422548636794, 0.0052098375745117664, -0.03159139305353165, 0.03308703750371933, 0.028201257809996605, -0.023980209603905678, 0.037457652390003204, -0.001065648626536131, 0.011333681643009186, 0.0006195510504767299, -0.06886623799800873, 0.04599945992231369, 0.06690528243780136, 0.07285463064908981, -0.008899100124835968, -0.01444130390882492, 0.025642039254307747, 0.010502766817808151, -0.04068160057067871, 0.001067725825123489, 0.04609916731715202, -0.05630280449986458, 0.03331969305872917, -0.04865838587284088, -0.05184910073876381, -0.004669742658734322, -0.00835485104471445, 0.04992137849330902, 0.10655654966831207, -0.012289234437048435, 0.014798597432672977, -0.03652702644467354, 0.015122654847800732, -0.003564625745639205, 0.024794505909085274, -0.005592058412730694, -0.018329987302422523, 0.008255140855908394, 0.033402785658836365, -0.006518528796732426, -0.009987599216401577, 0.0006044906913302839, 0.04580003768205643, -0.031391970813274384, 0.04018305242061615, 0.016560137271881104, 0.030959896743297577, 0.00354593014344573, -0.0029705213382840157, -0.031358733773231506, -0.026340007781982422, 0.015604585409164429, -0.007017077878117561, -0.00615292601287365, 0.03639408200979233, 0.03779001906514168, -0.0016587142599746585 ]
18,549
traceback2
FrameSummary
A single frame from a traceback. - :attr:`filename` The filename for the frame. - :attr:`lineno` The line within filename for the frame that was active when the frame was captured. - :attr:`name` The name of the function or method that was executing when the frame was captured. - :attr:`line` The text from the linecache module for the of code that was running when the frame was captured. - :attr:`locals` Either None if locals were not supplied, or a dict mapping the name to the repr() of the variable.
class FrameSummary: """A single frame from a traceback. - :attr:`filename` The filename for the frame. - :attr:`lineno` The line within filename for the frame that was active when the frame was captured. - :attr:`name` The name of the function or method that was executing when the frame was captured. - :attr:`line` The text from the linecache module for the of code that was running when the frame was captured. - :attr:`locals` Either None if locals were not supplied, or a dict mapping the name to the repr() of the variable. """ __slots__ = ('filename', 'lineno', 'name', '_line', 'locals') def __init__(self, filename, lineno, name, lookup_line=True, locals=None, line=None): """Construct a FrameSummary. :param lookup_line: If True, `linecache` is consulted for the source code line. Otherwise, the line will be looked up when first needed. :param locals: If supplied the frame locals, which will be captured as object representations. :param line: If provided, use this instead of looking up the line in the linecache. """ self.filename = filename self.lineno = lineno self.name = name self._line = line if lookup_line: self.line self.locals = \ dict((k, repr(v)) for k, v in locals.items()) if locals else None def __eq__(self, other): return (self.filename == other.filename and self.lineno == other.lineno and self.name == other.name and self.locals == other.locals) def __getitem__(self, pos): return (self.filename, self.lineno, self.name, self.line)[pos] def __iter__(self): return iter([self.filename, self.lineno, self.name, self.line]) def __repr__(self): return "<FrameSummary file {filename}, line {lineno} in {name}>".format( filename=self.filename, lineno=self.lineno, name=self.name) @property def line(self): if self._line is None: self._line = linecache.getline(self.filename, self.lineno).strip() return self._line
(filename, lineno, name, lookup_line=True, locals=None, line=None)
[ 0.014245791360735893, -0.021437397226691246, -0.02962758019566536, 0.034849509596824646, 0.014822951517999172, -0.052768975496292114, 0.024955328553915024, 0.04511014372110367, 0.005377671681344509, -0.04657594859600067, -0.04459711164236069, 0.015537532046437263, 0.018157657235860825, 0.046539306640625, -0.02803351916372776, 0.04500021040439606, 0.017378948628902435, -0.028345001861453056, -0.04796846583485603, -0.031001772731542587, 0.013796888291835785, 0.02075946144759655, 0.013293017633259296, 0.010791988112032413, 0.006733541376888752, 0.024625521153211594, 0.029829129576683044, -0.04661259427666664, 0.022390170022845268, 0.002107094507664442, -0.038623958826065063, -0.04019969701766968, -0.0859694555401802, -0.032815705984830856, -0.01485043577849865, -0.0418853759765625, -0.048481497913599014, -0.02959093637764454, -0.039063699543476105, -0.04562317579984665, -0.00634418660774827, 0.008107732981443405, -0.008066507056355476, 0.0033873834181576967, -0.0024827069137245417, -0.015345145016908646, 0.030085645616054535, -0.013686953112483025, 0.026549391448497772, -0.0949108675122261, 0.027502164244651794, 0.009710957296192646, 0.02061288058757782, 0.009509408846497536, 0.029096227139234543, 0.014538952149450779, 0.02832667902112007, 0.048921238631010056, -0.025138553231954575, 0.014529790729284286, -0.00026968520251102746, 0.05394161865115166, 0.01272501889616251, 0.0056845746003091335, -0.019861655309796333, -0.062406644225120544, -0.0062617352232337, -0.011506568640470505, -0.02315971627831459, -0.056836582720279694, -0.004754704423248768, 0.013934307731688023, 0.0010518295457586646, 0.021180881187319756, 0.005863219499588013, -0.048078399151563644, -0.09285873919725418, -0.004255414940416813, 0.048518139868974686, -0.04533001407980919, 0.019311979413032532, 0.0070221214555203915, -0.0415189228951931, -0.05452794209122658, 0.012935727834701538, -0.04965414106845856, 0.014438178390264511, 0.0213091392070055, 0.004649349953979254, 0.05108330026268959, -0.03479454293847084, 0.058485615998506546, -0.032559189945459366, 0.03781776502728462, -0.011021020822227001, -0.06020793691277504, 0.02493700571358204, -0.02090604230761528, -0.03076357953250408, -0.013118953444063663, 0.03605879843235016, -0.0015894821844995022, -0.08662907034158707, 0.017003336921334267, -0.06629102677106857, 0.08611603826284409, -0.00198112684302032, -0.0003650197759270668, 0.043974146246910095, -0.009078828617930412, -0.016013918444514275, -0.08208507299423218, -0.058448970317840576, 0.024222426116466522, 0.04635607823729515, -0.019843334332108498, -0.057752713561058044, 0.00011079423711635172, 0.01572991907596588, 0.004385963082313538, 0.031184999272227287, 0.018240109086036682, -0.0469057559967041, 0.022188620641827583, -0.012138696387410164, -0.02603635936975479, 0.011085149832069874, -0.025871455669403076, 0.056836582720279694, -0.07842056453227997, 0.02781364694237709, -0.04276485741138458, -0.007374831009656191, 0.08802158385515213, 0.024185780435800552, 0.0277403574436903, 0.022738298401236534, 0.04485362768173218, -0.06537489593029022, 0.016490304842591286, 0.036443572491407394, 0.015400112606585026, -0.008116894401609898, 0.007416056469082832, -0.013631985522806644, -0.02468048967421055, 0.005840316414833069, 0.02090604230761528, -0.026750938966870308, -0.001438321080058813, -0.005345607176423073, -0.06039116159081459, -0.043900854885578156, 0.05907193571329117, 0.02722732536494732, -0.024057522416114807, -0.01879894733428955, -0.016334563493728638, 0.02072281576693058, 0.0013215147191658616, -0.032449256628751755, -0.0508267842233181, 0.0057624452747404575, -0.07332688570022583, 0.018459979444742203, 0.04034627974033356, 0.0088497968390584, -0.05643348768353462, -0.07651501148939133, 0.002365900669246912, -0.057899292558431625, -0.013897662051022053, 0.02167559042572975, 0.07570882141590118, 0.00327286752872169, 0.03407996520400047, -0.04159221425652504, 0.025101909413933754, -0.029645903035998344, -0.021748879924416542, 0.043241243809461594, -0.04994730278849602, -0.06885618716478348, -0.03616873547434807, -0.005194446071982384, 0.005840316414833069, 0.0159223061054945, -0.018185142427682877, 0.07988636940717697, 0.06500844657421112, 0.0020143366418778896, -0.00008474184141959995, 0.019953269511461258, -0.005455542355775833, 0.010352247394621372, -0.026366164907813072, -0.03407996520400047, 0.014603081159293652, 0.06779347360134125, -0.014593919739127159, -0.020063204690814018, 0.053355298936367035, 0.020063204690814018, 0.011515729129314423, -0.004795930348336697, 0.0707983747124672, 0.003000319469720125, 0.026256229728460312, -0.12041587382555008, 0.06387244910001755, -0.019293656572699547, -0.05951167643070221, 0.048408206552267075, -0.0007655394729226828, 0.012660889886319637, -0.04001647233963013, -0.010077408514916897, 0.043607696890830994, 0.013906823471188545, 0.03191789984703064, 0.1306765079498291, -0.0536484569311142, -0.07043192535638809, 0.008336765691637993, -0.031972870230674744, -0.04437724128365517, 0.03058035485446453, 0.010462182573974133, 0.018295077607035637, -0.066620834171772, 0.012074567377567291, -0.03532589599490166, -0.03822086378931999, -0.005070768762379885, 0.02526681125164032, 0.028766421601176262, 0.038807183504104614, 0.03807428106665611, -0.05071684718132019, -0.07252069562673569, -0.03730473294854164, 0.0493609793484211, 0.03254086896777153, 0.020997654646635056, 0.043754275888204575, -0.06951579451560974, 0.031001772731542587, 0.029719194397330284, -0.07622185349464417, 0.0004082495579496026, 0.031239965930581093, 0.075928695499897, -0.022005395963788033, 0.003295770613476634, -0.006742702331393957, -0.02548668161034584, -0.004596672486513853, -0.007241992279887199, 0.043277889490127563, -0.004182124510407448, 0.032119449228048325, -0.04243505001068115, 0.05610368028283119, 0.007241992279887199, 0.026586035266518593, 0.04646601527929306, -0.029609259217977524, -0.02766706794500351, -0.048628076910972595, 0.00018208044639322907, 0.04192201793193817, -0.0061518000438809395, 0.02799687348306179, 0.04192201793193817, -0.07285050302743912, -0.07193437218666077, -0.034226544201374054, -0.021858815103769302, -0.0084970872849226, -0.015968112275004387, 0.04104253649711609, -0.017965270206332207, -0.02231687866151333, -0.0029201582074165344, 0.035472478717565536, -0.0005084510776214302, -0.026256229728460312, -0.01143327821046114, 0.00827263668179512, -0.02348952367901802, 0.05672664940357208, -0.001394804916344583, 0.04642936959862709, -0.02282991074025631, 0.05496768280863762, 0.048151690512895584, -0.0625898689031601, 0.049141108989715576, -0.003011771012097597, 0.02803351916372776, -0.0036049638874828815, 0.005029542837291956, 0.052732329815626144, 0.0519261360168457, -0.0025101909413933754, -0.0171774011105299, -0.02123584784567356, -0.011369149200618267, -0.012917405925691128, -0.03748796135187149, 0.07138469815254211, 0.057642776519060135, 0.03997982665896416, -0.023397909477353096, 0.012211986817419529, 0.021217525005340576, -0.029389386996626854, -0.01658191718161106, 0.0016318530542775989, 0.07340017706155777, 0.006225090008229017, -0.05852225795388222, 0.04723556339740753, 0.00020498364756349474, 0.06541154533624649, -0.019660107791423798, 0.023178039118647575, -0.024772102013230324, 0.00019825583149213344, -0.028839711099863052, -0.011259214021265507, -0.048188336193561554, -0.0018299657385796309, 0.028454937040805817, 0.014465661719441414, 0.03763454034924507, -0.08252481371164322, 0.029242807999253273, 0.03180796653032303, -0.08215836435556412, 0.04159221425652504, -0.01732398197054863, -0.03309054672718048, -0.024717135354876518, 0.05111994594335556, -0.04236176237463951, 0.032046157866716385, 0.018350044265389442, 0.10502491891384125, 0.004143189173191786, -0.037103187292814255, -0.0295176450163126, -0.0159223061054945, 0.005290639586746693, -0.006907605566084385, 0.02468048967421055, 0.0036278669722378254, -0.062333352863788605, 0.01795610971748829, 0.0032247707713395357, 0.0415189228951931, 0.02748384140431881, -0.03580228239297867, -0.03635196015238762, -0.036810025572776794, -0.01134166494011879, -0.015638304874300957, 0.036626800894737244, -0.004809672478586435, -0.005446381401270628, -0.029077904298901558, 0.005606703460216522, 0.02348952367901802, -0.035252608358860016, -0.04206860065460205, -0.05441800504922867, 0.07431630790233612, 0.013183082453906536, -0.05130317062139511, -0.0275571309030056, 0.06856302171945572, 0.014603081159293652, -0.03180796653032303, -0.007571798283606768, -0.010810310952365398, 0.02374603971838951, 0.00018508649372961372, -0.02119920216500759, -0.00938115082681179, 0.043534405529499054, -0.03036048263311386, -0.04950755834579468, -0.027044100686907768, 0.0006619025371037424, 0.00792450737208128, -0.0690760537981987, 0.032009512186050415, 0.028693130239844322, -0.04166550189256668, -0.02959093637764454, 0.02818009816110134, 0.015363466925919056, -0.036700088530778885, -0.011927987448871136, 0.0038798023015260696, 0.01168979424983263, 0.039503440260887146, -0.013512888923287392, -0.0029224485624581575, -0.025761520490050316, 0.022005395963788033, -0.022243589162826538, -0.04536665976047516, -0.05115659162402153, -0.0016662079142406583, 0.02097933180630207, 0.024020876735448837, -0.036590155214071274, 0.039466794580221176, 0.020447978749871254, -0.03307222202420235, 0.0014566435711458325, -0.016829272732138634, 0.02603635936975479, -0.04932433366775513, -0.012844115495681763, -0.08318442851305008, -0.022133653983473778, 0.057239681482315063, 0.013448759913444519, -0.04063944146037102, -0.013741920702159405, 0.009967473335564137, 0.017498046159744263, -0.009371990337967873, -0.09066002815961838, -0.025944747030735016, -0.018743980675935745, 0.019311979413032532, 0.07812739908695221, -0.006852637976408005, 0.02534010261297226, 0.0422518253326416, 0.039136990904808044, -0.06083090230822563, 0.017296496778726578, -0.048188336193561554, 0.008501668460667133, -0.037103187292814255, 0.022628363221883774, -0.008323023095726967, 0.02733726054430008, -0.02290320210158825, -0.019403591752052307, -0.05533413589000702, -0.04631943255662918, -0.06068432331085205, 0.012505147606134415, -0.002393384464085102, 0.026476100087165833, -0.000033191747206728905, 0.039613377302885056, 0.014099210500717163, -0.038550667464733124, -0.031972870230674744, 0.008487926796078682, 0.061856966465711594, -0.03807428106665611, -0.05679994076490402, -0.016242951154708862, 0.017498046159744263, 0.0031010934617370367, -0.04569646716117859, -0.03354860842227936, 0.03763454034924507, 0.05170626565814018, -0.00842379778623581, -0.028583195060491562, -0.037066541612148285, -0.03028719313442707, -0.007333605084568262, -0.04760201275348663, 0.027044100686907768, -0.013027341105043888, 0.016316240653395653, 0.04716227203607559, 0.02737390622496605, 0.005446381401270628, 0.01728733628988266, 0.035032738000154495, -0.048811301589012146, 0.01890888251364231, -0.04221517965197563, 0.006257154513150454, -0.039686668664216995, 0.06020793691277504, 0.03638860583305359, 0.030378805473446846, -0.0171774011105299, -0.04980072006583214, -0.0006223944947123528, -0.02345287799835205, 0.02581648901104927, 0.001105652074329555, 0.036810025572776794, 0.027941904962062836, 0.03017725795507431, -0.0037103185895830393, 0.01636204682290554, -0.031533125787973404, 0.04049285873770714, 0.029041258618235588, -0.007819152437150478, -0.01628875732421875, -0.02992074191570282, -0.01710410974919796, -0.05060691386461258, 0.005588381085544825, 0.0009430393110960722, -0.0064770253375172615, 0.031130030751228333, 0.030195580795407295, 0.08985383808612823, -0.018569914624094963, -0.008167281746864319, 0.014117533341050148, 0.03543583303689957, 0.05518755316734314, 0.02017313987016678, 0.034153252840042114, 0.0447070486843586, 0.021510686725378036, -0.013604501262307167, -0.02290320210158825, 0.0848701000213623, 0.062406644225120544, 0.023929264396429062, -0.07460946589708328, -0.04287479445338249, 0.0038752215914428234, 0.039833247661590576, 0.003050706349313259, -0.024882037192583084, 0.01887223869562149, -0.0046539306640625, -0.039906539022922516, -0.004367640241980553, -0.006495347712188959, -0.02345287799835205, -0.044194016605615616, 0.03866060450673103, -0.009307861328125, 0.009720118716359138, -0.013531210832297802, -0.01584901474416256, 0.04291143640875816, 0.032082803547382355, 0.0358206070959568, 0.048664722591638565, -0.0033828027080744505, 0.020851073786616325, 0.03356693312525749, 0.029022935777902603, -0.048224981874227524, -0.019495204091072083, 0.0045210919342935085, 0.02973751723766327, 0.036846671253442764, -0.02370939403772354, -0.021290816366672516, -0.00840089377015829, 0.04522008076310158, 0.04661259427666664, 0.024130811914801598, -0.005249413661658764, 0.015720756724476814, -0.031001772731542587, 0.05445465072989464, 0.044157370924949646, -0.015253531746566296, 0.03638860583305359, -0.024222426116466522, 0.03756124898791313, -0.043461114168167114, -0.048371560871601105, 0.03561905771493912, -0.04518343508243561, 0.007086250465363264, 0.003529383335262537, 0.011057665571570396, -0.014767983928322792, -0.029371066018939018, 0.014227468520402908, -0.0015619982732459903, 0.07600197941064835, 0.010929407551884651, -0.006811412051320076, 0.02315971627831459, -0.016673531383275986, 0.048408206552267075, -0.05104665458202362, -0.0354541540145874, -0.01821262575685978, 0.02367274835705757, -0.024167457595467567, -0.04719891771674156, 0.032229386270046234, 0.05962161347270012, 0.002862900262698531, 0.043167952448129654, -0.004360769409686327, 0.04217853397130966, 0.02028307504951954, -0.018743980675935745, -0.02493700571358204, -0.039686668664216995, 0.02149236388504505, 0.044340599328279495, -0.000050351256504654884, 0.005377671681344509, 0.008923087269067764, -0.002134578302502632, -0.04243505001068115, 0.0257798433303833, 0.039833247661590576, 0.06035451591014862, 0.007782507687807083, -0.04719891771674156, -0.008006959222257137, -0.03567402437329292, -0.0018082077149301767, 0.02836332470178604, -0.013375469483435154, -0.06482522189617157, 0.008465022780001163, 0.0037286411970853806, 0.017672110348939896, -0.001510466099716723, -0.0522925890982151, 0.05390497297048569, -0.000591475167311728, -0.06423889845609665, -0.03486783429980278, 0.020667849108576775, -0.07222753763198853, 0.0036965766921639442, 0.00396225368604064, -0.08860790729522705, 0.11213407665491104, -0.007846636697649956, 0.016902562230825424, 0.044157370924949646, 0.014080887660384178, -0.004924188368022442, 0.04576975852251053, 0.04309466481208801, -0.0454399511218071, -0.012935727834701538, -0.0033461577259004116, 0.010755343362689018, -0.005350187886506319, -0.05929180607199669, 0.036736734211444855, -0.030195580795407295, 0.022151976823806763, 0.019385268911719322, 0.010187343694269657, 0.03464796394109726, 0.0522925890982151, 0.004083640873432159, 0.0015253531746566296, 0.016591079533100128, 0.003160641761496663, -0.01123172976076603, -0.029535967856645584, -0.00468141445890069, -0.015455080196261406, -0.002984287217259407, -0.01267005130648613, -0.062260061502456665, 0.038990408182144165, 0.05068020522594452, -0.024039199575781822, -0.06881953775882721, 0.01232192199677229, 0.06134393438696861, -0.013577017933130264, 0.033218804746866226, 0.006843476556241512, -0.06365257501602173, -0.017855335026979446, -0.01584901474416256, 0.03332873806357384, 0.034409768879413605, -0.08076585084199905, 0.007370250299572945, 0.008208507671952248, -0.05005723610520363, 0.03250422328710556, -0.062369998544454575, -0.029426032677292824, 0.05144974961876869, 0.04111582785844803, 0.01662772335112095, -0.010104892775416374, 0.026274552568793297, -0.02352616749703884, 0.02046629972755909, -0.01687507890164852, 0.015968112275004387, 0.011305020190775394, 0.00009490513912169263, 0.007915345951914787, 0.0033621899783611298, 0.0372314453125, -0.0059823160991072655, -0.01625211164355278, 0.012926566414535046, -0.023178039118647575, 0.022335201501846313, 0.03021390363574028, 0.07526908069849014, 0.02585313282907009, 0.02948100119829178, 0.016041401773691177, 0.022701652720570564, -0.01409004908055067, -0.008020700886845589, -0.029939064756035805, -0.0061792838387191296, -0.0005067333113402128, 0.053575169295072556, -0.02275662124156952, 0.03371351212263107, 0.007713797967880964, -0.015079467557370663, -0.015674950554966927, -0.011195085011422634, 0.02261004038155079, 0.034922800958156586, 0.008121475577354431, -0.006591541226953268, -0.004012641031295061, 0.028784742578864098, -0.022335201501846313, 0.02814345434308052, -0.006069348193705082, 0.019385268911719322, 0.028821388259530067, 0.004159221425652504, 0.037029895931482315, -0.0016501756617799401, -0.05544406920671463, -0.011918826028704643, 0.026805907487869263, -0.07307036966085434, 0.007237411569803953, -0.009601022116839886, 0.039100345224142075, -0.024369006976485252, -0.036187056452035904, -0.056836582720279694, 0.02981080673635006, 0.07186108082532883, 0.002789609832689166, 0.04565982148051262, -0.05947503447532654, 0.04620949923992157 ]
18,550
traceback2
__eq__
null
def __eq__(self, other): return (self.filename == other.filename and self.lineno == other.lineno and self.name == other.name and self.locals == other.locals)
(self, other)
[ 0.04476014897227287, -0.018785806372761726, 0.007011478766798973, 0.04362697899341583, -0.0455746129155159, -0.06317413598299026, -0.0004202350100968033, 0.05949133634567261, 0.01928156614303589, -0.005599444732069969, -0.020609498023986816, -0.0923532173037529, 0.04355615749955177, 0.09745247662067413, -0.020680321380496025, -0.014828569255769253, -0.028630204498767853, 0.03672173619270325, -0.03962548077106476, -0.02763868309557438, -0.02158331498503685, 0.022468602284789085, 0.02269877679646015, 0.04079405963420868, 0.024221472442150116, 0.0751432254910469, 0.03898807242512703, 0.013606872409582138, 0.010650011710822582, 0.04858459159731865, -0.03905889391899109, -0.051311276853084564, 0.030241429805755615, 0.030878836289048195, 0.03590727224946022, -0.024841174483299255, -0.03718208521604538, 0.025478580966591835, -0.005829619709402323, -0.053719259798526764, 0.014474454335868359, 0.0004083389649167657, -0.007578062824904919, 0.02207907661795616, -0.01718343421816826, -0.0075559308752417564, -0.04869082570075989, -0.017856253311038017, 0.04373321309685707, 0.019865857437253, 0.0024057694245129824, -0.0024677396286278963, 0.014846275560557842, 0.05853522568941116, 0.02087508514523506, 0.011367094703018665, 0.032720234245061874, 0.04897411912679672, -0.03842148929834366, -0.0059358542785048485, -0.004979743622243404, -0.003481393912807107, 0.016041412949562073, -0.050709281116724014, -0.051134221255779266, -0.05694170668721199, -0.04876164719462395, 0.0029524345882236958, -0.012739290483295918, 0.034437693655490875, -0.03599580004811287, -0.0011475542560219765, -0.020857378840446472, 0.003063095500692725, -0.008211043663322926, 0.0233893021941185, -0.055419012904167175, 0.0680963322520256, 0.022964363917708397, -0.05329432338476181, -0.016209619119763374, -0.046530723571777344, -0.04433520883321762, -0.03110901080071926, -0.07953424751758575, 0.0122523820027709, 0.014483307488262653, 0.009446020238101482, 0.003167116781696677, 0.01022507343441248, -0.008450071327388287, 0.06632575392723083, 0.008777627721428871, -0.021211493760347366, 0.04507885128259659, -0.02870102785527706, 0.007808237802237272, -0.031020483002066612, 0.003574349218979478, 0.006214719731360674, 0.024788057431578636, 0.001911114901304245, -0.010596893727779388, 0.001506095752120018, -0.020591793581843376, 0.04610578343272209, -0.0003599248011596501, -0.045857906341552734, -0.018148398026823997, -0.037429966032505035, -0.07939260452985764, -0.005121389403939247, -0.04493720456957817, 0.06618411093950272, 0.04422897472977638, -0.043945685029029846, -0.03838607668876648, -0.004477342590689659, 0.0002296215097885579, -0.015156125649809837, 0.044122740626335144, 0.09454873204231262, 0.0010114412289112806, 0.047663889825344086, 0.06377612799406052, -0.002348225796595216, 0.03760702162981033, -0.02087508514523506, -0.0017163516022264957, -0.051240455359220505, 0.05506489798426628, -0.02282271720468998, -0.02037932351231575, 0.06781303882598877, 0.04663695767521858, 0.013907870277762413, 0.01435051392763853, 0.0564105361700058, 0.026062870398163795, 0.028470853343605995, 0.04483097046613693, 0.00004879456901107915, 0.004559231922030449, 0.003808950539678335, -0.060801561921834946, 0.01700637675821781, -0.07036267220973969, 0.00767101813107729, 0.0028395603876560926, 0.022008253261446953, 0.006511291489005089, -0.035712506622076035, 0.0062368521466851234, -0.021158376708626747, -0.035641685128211975, -0.018980568274855614, -0.04486638307571411, -0.03606662154197693, 0.0035876284819096327, -0.0014253132976591587, 0.007166404277086258, -0.027744917199015617, -0.001338997739367187, -0.0170240830630064, 0.014881687238812447, -0.004860229790210724, -0.029657138511538506, -0.05513571947813034, -0.01848480850458145, -0.0013567034620791674, -0.010189661756157875, -0.00791004579514265, 0.00034885870991274714, 0.018104134127497673, -0.031516242772340775, -0.010889039374887943, 0.008180058561265469, -0.004167492035776377, -0.03220676630735397, 0.0027997223660349846, 0.03588956594467163, -0.06515717506408691, -0.0282052680850029, 0.02990501932799816, 0.04422897472977638, -0.016209619119763374, -0.0053338585421442986, 0.007485107984393835, 0.06512176245450974, 0.03167559579014778, -0.021122965961694717, -0.017449021339416504, -0.028523970395326614, 0.01766148954629898, 0.001975298160687089, -0.04295416176319122, -0.009268962778151035, -0.012668467126786709, 0.05014269798994064, 0.05934968963265419, -0.05453372374176979, -0.04175017029047012, -0.026788806542754173, -0.016607997938990593, 0.00540025532245636, 0.013571460731327534, 0.020060619339346886, -0.030365370213985443, 0.022344661876559258, 0.06349283456802368, -0.034437693655490875, -0.04564543440937996, 0.03496886417269707, -0.0008299572509713471, 0.04068782553076744, 0.030931953340768814, 0.018838923424482346, -0.0051568010821938515, 0.005856178235262632, 0.07092925161123276, 0.11388341337442398, -0.018254633992910385, -0.014412484131753445, 0.03372946381568909, -0.0312152449041605, -0.01082706917077303, -0.0014197801938280463, 0.029657138511538506, -0.028665617108345032, -0.04429979994893074, 0.05949133634567261, 0.013102258555591106, 0.013916723430156708, -0.005856178235262632, -0.0063165281899273396, 0.04072323441505432, -0.010278190486133099, 0.04982399195432663, -0.08902453631162643, -0.03256088122725487, -0.021884312853217125, 0.02099902555346489, 0.04805341735482216, -0.002028415445238352, 0.060376621782779694, -0.13095176219940186, 0.007100007496774197, 0.02507134899497032, -0.039235953241586685, 0.005041713826358318, 0.016262736171483994, 0.011951384134590626, -0.057826995849609375, 0.0009544508648104966, -0.01015425007790327, 0.0041807712987065315, -0.05081551522016525, -0.02994043193757534, 0.046424489468336105, 0.0003322595439385623, 0.014226573519408703, 0.04720354080200195, 0.0325077660381794, 0.0015968377701938152, -0.01689128950238228, 0.0005859498050995171, -0.03224217891693115, 0.008087103255093098, 0.005811913870275021, -0.053648438304662704, 0.018378572538495064, -0.007883487269282341, -0.010818216018378735, 0.08498762547969818, -0.05949133634567261, -0.04536214470863342, 0.021848902106285095, -0.04490179568529129, -0.04252922162413597, -0.010349013842642307, 0.00704246386885643, 0.02091049589216709, -0.018998274579644203, -0.038669370114803314, -0.014385925605893135, -0.02091049589216709, -0.05088634043931961, -0.05796864256262779, 0.0047584217973053455, -0.03675714507699013, 0.017139170318841934, -0.009516843594610691, 0.04192722588777542, -0.013173081912100315, 0.018254633992910385, 0.05014269798994064, 0.0005065505974926054, -0.026576338335871696, 0.022539425641298294, 0.05495866388082504, -0.025354640558362007, -0.017944782972335815, 0.05085092782974243, 0.005440093111246824, -0.0026027460116893053, 0.004864655900746584, -0.01224352978169918, 0.051877859979867935, 0.010074574500322342, -0.007436417043209076, 0.058393578976392746, 0.058464400470256805, 0.010039162822067738, 0.04876164719462395, 0.04932823404669762, 0.0022076861932873726, -0.0006772451451979578, -0.0354292169213295, -0.008945832960307598, 0.061509791761636734, -0.026505514979362488, 0.003707142313942313, 0.005984545219689608, -0.015536800026893616, 0.02753244899213314, -0.07457663863897324, 0.00955225434154272, 0.03470328077673912, 0.036792557686567307, 0.04656613618135452, -0.024310002103447914, -0.024345412850379944, 0.06813174486160278, 0.018130693584680557, -0.006865406408905983, -0.010402130894362926, -0.04146687686443329, 0.035075098276138306, 0.06646740436553955, -0.02647010236978531, 0.03364093229174614, -0.05109880864620209, 0.0257972851395607, -0.08038412779569626, 0.011898267082870007, -0.022574836388230324, -0.06285542994737625, -0.002203259849920869, 0.030790306627750397, -0.009127316996455193, -0.0739392340183258, 0.019423212856054306, 0.007440843619406223, -0.0305247213691473, -0.013031435199081898, 0.04635366424918175, 0.0146603649482131, 0.0023969165049493313, -0.01289864256978035, 0.021494785323739052, 0.07684297859668732, 0.0361197404563427, -0.029834195971488953, -0.03672173619270325, -0.012960612773895264, -0.00856515858322382, 0.002059400547295809, -0.02639928087592125, -0.05556065961718559, -0.03351699188351631, -0.05350679159164429, 0.012960612773895264, 0.00793660432100296, -0.0782594382762909, -0.021388551220297813, -0.05626888945698738, -0.027992798015475273, 0.026629455387592316, -0.013943281956017017, -0.03109130449593067, 0.07422251999378204, 0.020609498023986816, -0.02225613407790661, 0.04667237028479576, -0.06505094468593597, 0.0030055518727749586, -0.010189661756157875, -0.007241653744131327, 0.0644843578338623, 0.11834526807069778, -0.06235966831445694, -0.04082946851849556, 0.019582564011216164, 0.037536200135946274, 0.0021479292772710323, -0.0010385531932115555, -0.03856313228607178, -0.000680011638905853, -0.1011352688074112, -0.03355240449309349, 0.01607682555913925, 0.030808012932538986, -0.038669370114803314, 0.010596893727779388, -0.0036761572118848562, 0.01497021596878767, 0.04337909817695618, 0.0354292169213295, -0.012509115971624851, 0.030383074656128883, -0.045857906341552734, -0.020219972357153893, 0.0006888645002618432, -0.05566689372062683, -0.03406587243080139, -0.0068565537221729755, 0.030931953340768814, -0.051275864243507385, 0.1080051064491272, 0.010561482980847359, -0.029674844816327095, 0.02693045325577259, 0.008888288401067257, -0.022645659744739532, -0.039837948977947235, -0.047097306698560715, -0.01534203626215458, 0.03123295120894909, 0.015616475604474545, -0.010499512776732445, -0.08321704715490341, -0.04121899604797363, 0.0799591913819313, 0.0300112534314394, 0.04337909817695618, -0.012491409666836262, 0.00034166572731919587, -0.060801561921834946, 0.03355240449309349, 0.0787551999092102, 0.015191537328064442, -0.010844774544239044, -0.015828944742679596, -0.006706054788082838, -0.11218366026878357, -0.03997959569096565, -0.022468602284789085, 0.03599580004811287, 0.026204517111182213, 0.03764243423938751, 0.004669892601668835, 0.04507885128259659, -0.09660259634256363, -0.06232425570487976, -0.018856627866625786, -0.030754895880818367, -0.053081851452589035, 0.028470853343605995, 0.011322829872369766, 0.006502438336610794, -0.06016415357589722, 0.02156560868024826, 0.024363119155168533, -0.015111861750483513, -0.01862645335495472, 0.03962548077106476, -0.014987921342253685, 0.03054242767393589, 0.04260004684329033, 0.03668632358312607, -0.0023659314028918743, -0.022397778928279877, -0.07556816190481186, 0.017856253311038017, -0.017068346962332726, 0.02577957883477211, -0.036296796053647995, 0.027904270216822624, -0.021158376708626747, 0.0013179720845073462, -0.038138195872306824, -0.04330827668309212, 0.011278565973043442, -0.02816985547542572, 0.07184994965791702, -0.048867881298065186, 0.0007973122410476208, -0.0014795371098443866, -0.0026027460116893053, 0.00658211437985301, 0.013022582978010178, -0.03429604694247246, -0.07641803473234177, 0.0025518417824059725, -0.00017193947860505432, 0.024858878925442696, 0.00994178093969822, 0.02388506382703781, -0.029125966131687164, -0.028311502188444138, 0.01256223302334547, 0.01138480007648468, -0.017519844695925713, 0.025000525638461113, 0.010933303274214268, 0.026115987449884415, -0.0015625328524038196, -0.07015019655227661, -0.02632845751941204, 0.003459261730313301, 0.03156936168670654, -0.03912971913814545, 0.012792407535016537, -0.005342711694538593, 0.053117264062166214, 0.07280606031417847, -0.035075098276138306, -0.02108755335211754, -0.04065241292119026, 0.003251219168305397, 0.019423212856054306, -0.026009753346443176, 0.021229200065135956, -0.0610494427382946, -0.05690629407763481, 0.015164978802204132, 0.0015315477503463626, 0.030188310891389847, 0.030737189576029778, -0.02937384694814682, -0.018998274579644203, -0.033215995877981186, -0.0318172425031662, -0.011712356470525265, -0.006785730365663767, 0.07316017895936966, -0.022504014894366264, -0.020627204328775406, 0.02045014686882496, 0.037429966032505035, 0.015156125649809837, 0.022486308589577675, 0.029090555384755135, -0.005931427702307701, -0.020804261788725853, -0.0029457949567586184, -0.04777012765407562, -0.007901192642748356, 0.012110736221075058, 0.024380823597311974, 0.03583644703030586, -0.028541676700115204, 0.026080576702952385, -0.0479825958609581, -0.04366239160299301, 0.004877935629338026, 0.018086427822709084, 0.02753244899213314, 0.061509791761636734, 0.03257858753204346, 0.06016415357589722, 0.020644910633563995, 0.06653822958469391, -0.026700278744101524, -0.034508515149354935, -0.05874769389629364, 0.02045014686882496, -0.007130992598831654, 0.0005837365752086043, 0.03217135742306709, 0.0010994167532771826, 0.042847927659749985, -0.0030918673146516085, 0.0027377523947507143, 0.02048555761575699, -0.01078280434012413, -0.007945457473397255, 0.06388236582279205, -0.009782429784536362, -0.024132942780852318, -0.0007076768670231104, 0.042316753417253494, 0.0025784005410969257, -0.006498011760413647, -0.027709506452083588, -0.025443170219659805, 0.013394403271377087, 0.030365370213985443, 0.03217135742306709, 0.010242778807878494, -0.030188310891389847, 0.011499887332320213, 0.01169465109705925, -0.05683547258377075, 0.05896016210317612, -0.03160477057099342, 0.04553920030593872, -0.014695776626467705, -0.016599144786596298, 0.001537080854177475, -0.00008569308556616306, -0.061509791761636734, -0.032065123319625854, -0.032631706446409225, -0.024168355390429497, -0.03427834063768387, -0.004061257466673851, -0.0009444913594052196, 0.011021832004189491, 0.07401005178689957, 0.0455746129155159, 0.0015614262083545327, 0.026629455387592316, -0.07415170222520828, 0.026629455387592316, -0.0019775114487856627, 0.00675031915307045, 0.047699302434921265, -0.04355615749955177, 0.04511426389217377, -0.02875414490699768, -0.0006506865029223263, -0.010791657492518425, 0.03229529783129692, -0.027213744819164276, 0.0018004539888352156, 0.04720354080200195, -0.005590592045336962, 0.024221472442150116, -0.04876164719462395, -0.042281340807676315, -0.01640438102185726, 0.006617525592446327, -0.042812515050172806, 0.010897891595959663, -0.06115567684173584, 0.024717234075069427, -0.029125966131687164, -0.01077395211905241, 0.06331577897071838, 0.015120714902877808, -0.024363119155168533, -0.02213219366967678, 0.04564543440937996, -0.10290584713220596, 0.020768851041793823, 0.011163478717207909, -0.07107090204954147, 0.08796218782663345, -0.03891724720597267, -0.01984815113246441, 0.04571625962853432, 0.01915762573480606, 0.005479930900037289, -0.0221853107213974, 0.017962487414479256, -0.03194118291139603, 0.005723385140299797, 0.04628284275531769, 0.012774702161550522, 0.061474379152059555, -0.02397359162569046, 0.029586317017674446, -0.037500787526369095, 0.040475353598594666, 0.03643844276666641, 0.03125065565109253, -0.012756995856761932, 0.009463725611567497, 0.017962487414479256, -0.054817017167806625, 0.04026288539171219, 0.0045857904478907585, -0.01915762573480606, -0.04182099178433418, -0.04985940456390381, 0.013102258555591106, 0.018183810636401176, -0.022893540561199188, -0.05081551522016525, -0.027142921462655067, 0.028329206630587578, 0.01523580215871334, -0.03764243423938751, 0.031498536467552185, 0.11338765174150467, -0.04954070225358009, 0.028470853343605995, 0.05938510224223137, -0.008149073459208012, -0.017484432086348534, -0.03316287696361542, 0.020733438432216644, 0.03767784684896469, -0.02632845751941204, 0.027319978922605515, -0.0033109760843217373, -0.026186810806393623, -0.041643936187028885, -0.011765474453568459, -0.033871110528707504, 0.0146603649482131, 0.04674319177865982, -0.0221853107213974, 0.005391402170062065, -0.05074469372630119, -0.023159127682447433, 0.020644910633563995, 0.0305247213691473, 0.0061438968405127525, -0.05853522568941116, 0.009658489376306534, 0.0110926553606987, -0.027780329808592796, 0.05995168536901474, -0.007046890445053577, -0.02041473425924778, -0.004176344722509384, 0.0007884593796916306, 0.016607997938990593, -0.025992047041654587, 0.012491409666836262, 0.020751144737005234, 0.018166104331612587, 0.004320204257965088, 0.03433145955204964, 0.018183810636401176, -0.04727436602115631, -0.018785806372761726, 0.0126419086009264, -0.008467777632176876, 0.08180058747529984, -0.018068723380565643, 0.04727436602115631, -0.02643469162285328, 0.01137594785541296, -0.033924225717782974, 0.001537080854177475, 0.029692551121115685, 0.0959651917219162, 0.03277335315942764, 0.02448705956339836, 0.01103953830897808, -0.019316978752613068, -0.037996549159288406, 0.00824645534157753, 0.01983044482767582, 0.018838923424482346, -0.02455788105726242, 0.007237227167934179, 0.02168954908847809, 0.013872458599507809, -0.006781304255127907, 0.004625628236681223, 0.015713857486844063, 0.04082946851849556, 0.00033087629708461463, -0.016917848959565163, 0.06264296174049377, -0.0026005327235907316, -0.022946657612919807, 0.002275189384818077, 0.009392903186380863, 0.06441353261470795, -0.022539425641298294, 0.008622702211141586, -0.00962307769805193, 0.06529882550239563 ]
18,551
traceback2
__getitem__
null
def __getitem__(self, pos): return (self.filename, self.lineno, self.name, self.line)[pos]
(self, pos)
[ 0.04079665243625641, -0.013689017854630947, -0.05688547343015671, 0.013477767817676067, 0.016553571447730064, -0.03525344654917717, 0.0213785283267498, 0.04620466008782387, 0.04485265910625458, -0.02955813892185688, -0.0024145906791090965, -0.010892064310610294, 0.012920066714286804, 0.03677444905042648, -0.010959664359688759, 0.03091013990342617, 0.014204468578100204, 0.037281449884176254, -0.07990330457687378, 0.051815468817949295, -0.009666812606155872, 0.02920323796570301, 0.06256388127803802, -0.04187825694680214, 0.016046570613980293, 0.061211880296468735, 0.05036206543445587, 0.0012379266554489732, 0.09376132488250732, -0.07922730594873428, -0.03170444071292877, -0.04424425959587097, 0.00512915663421154, 0.01923222467303276, -0.022561529651284218, 0.027023134753108025, -0.017964724451303482, -0.017930923029780388, 0.06743109226226807, 0.012979216873645782, 0.017542222514748573, -0.020685628056526184, -0.005699532572180033, -0.009692163206636906, -0.03542244806885719, 0.006181183271110058, -0.016781721264123917, -0.03775465115904808, 0.008116235956549644, -0.02827373705804348, 0.022257329896092415, 0.03880245238542557, 0.019046325236558914, -0.060772478580474854, -0.01772812381386757, 0.009802012704312801, 0.026245733723044395, 0.05820367857813835, 0.009354162029922009, 0.056006673723459244, 0.04218245670199394, 0.008880961686372757, 0.0030060915742069483, -0.002708228537812829, 0.020601127296686172, -0.059150077402591705, 0.01859002374112606, -0.017212672159075737, -0.016198670491576195, 0.005923457909375429, 0.04268945753574371, 0.0122187165543437, -0.018133724108338356, -0.04671166092157364, 0.0025730284396559, 0.006979709025472403, -0.055161673575639725, 0.045055460184812546, 0.11201334744691849, 0.004567231051623821, -0.058305077254772186, 0.039917852729558945, -0.023981131613254547, 0.0068402839824557304, -0.021496828645467758, -0.014432619325816631, 0.027327336370944977, -0.02322063036262989, -0.050598666071891785, 0.07408969849348068, -0.02813853695988655, 0.05161266773939133, -0.02705693617463112, 0.0068445089273154736, -0.03276914358139038, -0.042554255574941635, 0.045190658420324326, -0.03562524542212486, 0.020550427958369255, 0.04492025822401047, 0.01253136619925499, 0.011982115916907787, -0.027192136272788048, -0.022324929013848305, -0.046306062489748, 0.011061064898967743, -0.011415964923799038, 0.0037750424817204475, 0.026330234482884407, -0.002995528979226947, -0.014694569632411003, -0.007313484791666269, -0.035354845225811005, 0.05178166925907135, -0.01980682648718357, -0.05935287848114967, -0.05313367024064064, -0.011618765071034431, -0.005226331762969494, 0.006569883786141872, 0.025299333035945892, -0.016367672011256218, -0.06354408711194992, 0.07828090339899063, -0.02029692754149437, -0.023372730240225792, -0.022054528817534447, -0.011610315181314945, 0.057798076421022415, -0.08416210860013962, 0.041709255427122116, -0.047759462147951126, -0.013917168602347374, -0.031586140394210815, 0.0009347824961878359, 0.007486709859222174, 0.04681306332349777, -0.010342814028263092, -0.07348129898309708, 0.021243328228592873, 0.038633450865745544, -0.01874212548136711, -0.020127926021814346, 0.0005408007418736815, -0.029253939166665077, -0.003077916568145156, 0.02071942761540413, 0.02029692754149437, -0.014981869608163834, -0.005209431983530521, -0.008661261759698391, -0.006189633160829544, 0.006595233920961618, -0.009261212311685085, 0.012894717045128345, -0.05647987499833107, -0.06969568878412247, -0.03704484924674034, 0.015767721459269524, -0.01772812381386757, 0.009979463182389736, -0.07699650526046753, -0.02264603041112423, -0.0008608449134044349, 0.026871034875512123, 0.0771993026137352, -0.0205842275172472, -0.026516135782003403, -0.011576515622437, -0.012979216873645782, 0.01879282481968403, 0.018640724942088127, -0.02237563021481037, 0.04617086052894592, -0.037349049001932144, 0.01894492469727993, -0.06303708255290985, 0.09180092066526413, 0.017474623396992683, -0.04407525807619095, 0.02627953514456749, -0.02051662653684616, -0.03209314122796059, 0.0014375580940395594, 0.017761923372745514, 0.04106705263257027, 0.021057426929473877, 0.03667304664850235, 0.047827061265707016, 0.03758564963936806, -0.0006754727801308036, -0.010224513709545135, -0.002094546565786004, -0.02535003423690796, 0.0026744285132735968, 0.015167769975960255, -0.04350065812468529, 0.054654672741889954, 0.02499513328075409, 0.04823266342282295, -0.01299611758440733, -0.02322063036262989, -0.032583244144916534, 0.03751805052161217, -0.05698687583208084, 0.06476088613271713, 0.0537082701921463, -0.010672364383935928, -0.12580376863479614, 0.058305077254772186, -0.047117263078689575, -0.001265389146283269, 0.029794739559292793, -0.021530628204345703, 0.058305077254772186, -0.04843546450138092, -0.04160785675048828, 0.0017417585477232933, 0.020550427958369255, 0.06340888142585754, 0.09423452615737915, -0.030960841104388237, 0.03674064949154854, 0.013798868283629417, 0.040424853563308716, -0.03167064115405083, -0.013680567964911461, -0.05533067137002945, -0.04015445336699486, 0.021040527150034904, 0.023592431098222733, -0.06482848525047302, 0.029811639338731766, -0.003937705419957638, 0.014559369534254074, 0.04154025390744209, 0.010444213636219501, 0.04032345488667488, 0.004028542898595333, 0.013984768651425838, -0.02807093784213066, 0.08159330487251282, 0.008678161539137363, 0.03488164767622948, 0.015505770221352577, 0.015919821336865425, 0.04045865312218666, 0.04208105430006981, -0.046677861362695694, 0.03207624331116676, 0.03552384674549103, 0.08470290899276733, -0.0006443133461289108, 0.04289225488901138, 0.0096499128267169, -0.017423922196030617, -0.03295504301786423, -0.031231241300702095, 0.001347776735201478, -0.019637826830148697, -0.03640264645218849, -0.012903166934847832, 0.03954605385661125, -0.04806366190314293, -0.017212672159075737, 0.03562524542212486, 0.008348611183464527, 0.030436940491199493, -0.013131317682564259, 0.056074272841215134, 0.05604047328233719, 0.08139050751924515, -0.0401882529258728, 0.03545624762773514, -0.0016741584986448288, -0.009049962274730206, -0.012193365953862667, -0.004351755604147911, 0.010790664702653885, -0.005175631958991289, 0.03410424664616585, 0.04701586067676544, -0.07949770241975784, 0.03846444934606552, 0.0094048622995615, -0.02920323796570301, 0.027378035709261894, 0.008297910913825035, 0.020060326904058456, 0.02499513328075409, -0.004495406057685614, 0.014305869117379189, -0.01335946749895811, -0.021023627370595932, 0.06682268530130386, 0.015894470736384392, -0.02643163502216339, 0.061583682894706726, 0.016367672011256218, 0.018775925040245056, -0.025535933673381805, -0.041709255427122116, -0.015683220699429512, 0.029220137745141983, -0.0011037826770916581, 0.03020033985376358, 0.026448534801602364, 0.022122129797935486, -0.03305644541978836, -0.049043864011764526, 0.042993657290935516, -0.020837727934122086, -0.01502411998808384, 0.033462043851614, -0.007131809368729591, -0.022189728915691376, -0.06560588628053665, 0.04052625223994255, 0.014804419130086899, 0.045055460184812546, -0.07043929398059845, -0.055296871811151505, 0.005243232008069754, -0.028223037719726562, 0.07219689339399338, 0.007114909589290619, -0.042148657143116, -0.031214341521263123, -0.01681552268564701, 0.0778077021241188, -0.0033314169850200415, -0.026161234825849533, -0.03816024959087372, 0.027327336370944977, -0.008221860975027084, 0.020111026242375374, -0.03876865282654762, 0.05377586930990219, 0.004410905763506889, -0.04437945783138275, -0.009548512287437916, -0.05718967691063881, -0.013080617412924767, 0.01466921903192997, 0.07841610163450241, -0.04928046464920044, 0.018556224182248116, 0.023457231000065804, 0.04535965994000435, 0.013663668185472488, -0.011922965757548809, -0.025181032717227936, -0.04140505567193031, -0.010570963844656944, 0.0002447862643748522, 0.025164132937788963, 0.014086168259382248, -0.07084489613771439, -0.0005444975686259568, 0.04221625626087189, 0.04559626057744026, -0.01852242462337017, 0.007419109810143709, -0.02164892852306366, -0.015497320331633091, -0.023153031244874, -0.0326339416205883, 0.011872265487909317, 0.015150870196521282, 0.0029025787953287363, -0.05107186734676361, 0.031011540442705154, -0.002342765685170889, -0.030893240123987198, -0.00997101329267025, -0.06182027980685234, 0.030301740393042564, 0.042486656457185745, -0.07280529290437698, -0.0938965231180191, 0.010832914151251316, -0.019215324893593788, 0.03347894549369812, 0.08450011163949966, -0.050024066120386124, -0.002725128550082445, -0.018759025260806084, 0.013156667351722717, 0.01985752582550049, 0.04387245699763298, -0.0601302795112133, -0.01681552268564701, -0.02257842943072319, -0.011508915573358536, -0.0015315645141527057, -0.05783187597990036, 0.03619984909892082, -0.0585416778922081, -0.07963290810585022, -0.04329785704612732, 0.010866714641451836, 0.01373971812427044, -0.07003369182348251, 0.03961365297436714, -0.010672364383935928, -0.0323297418653965, 0.004753131419420242, 0.052728068083524704, -0.025535933673381805, -0.007744435220956802, 0.0003551645204424858, 0.009776663035154343, -0.005898107774555683, -0.07314329594373703, 0.03481404483318329, 0.0065487585961818695, -0.003984180279076099, 0.047184862196445465, 0.0021325715351849794, 0.009548512287437916, -0.07571209967136383, -0.03758564963936806, -0.004317955579608679, -0.004850306548178196, -0.036639247089624405, -0.021530628204345703, -0.04025585204362869, -0.010841364040970802, -0.0028138537891209126, -0.006050208117812872, -0.07179129123687744, -0.05164646729826927, 0.007364184595644474, 0.041269853711128235, 0.03427324444055557, -0.06675508618354797, -0.022899530827999115, -0.007727534975856543, -0.014432619325816631, 0.05938667804002762, 0.06175268068909645, 0.059792280197143555, 0.03418874368071556, 0.01965472660958767, -0.00908376183360815, -0.026685135439038277, -0.06161748245358467, -0.030656641349196434, 0.018049223348498344, -0.038430649787187576, -0.020533526316285133, 0.05577007308602333, 0.030605940148234367, 0.025823233649134636, 0.033732444047927856, -0.0068191587924957275, -0.10667294263839722, -0.03718004748225212, 0.045325860381126404, -0.022308029234409332, 0.0030229915864765644, 0.06144848093390465, 0.012244066223502159, -0.045055460184812546, -0.0016583147225901484, -0.020415227860212326, -0.002105108927935362, 0.011804665438830853, -0.038498252630233765, -0.04971986636519432, -0.006645933724939823, -0.021986929699778557, -0.07861890643835068, -0.07726690173149109, -0.0194519255310297, 0.03467884659767151, 0.028256837278604507, 0.03211004287004471, 0.022037629038095474, -0.035794246941804886, -0.037720851600170135, -0.11485255509614944, -0.022595329210162163, 0.020060326904058456, -0.005222106818109751, 0.03226214274764061, 0.0028793413657695055, 0.005424906965345144, -0.018978724256157875, -0.01523537002503872, 0.04079665243625641, 0.010511813685297966, -0.012666566297411919, -0.025096533820033073, 0.008145811036229134, 0.066924087703228, 0.009920313023030758, 0.017542222514748573, -0.019570225849747658, -0.019908227026462555, 0.025941533967852592, -0.018978724256157875, 0.027868136763572693, -0.05235626921057701, -0.0005460819811560214, -0.014618519693613052, 0.052390068769454956, 0.017204223200678825, -0.026820335537195206, -0.08679851144552231, 0.025873934850096703, 0.011618765071034431, -0.018894225358963013, -0.007499384693801403, 0.017111273482441902, 0.05005786567926407, -0.04096565395593643, 0.037349049001932144, -0.024403631687164307, 0.04252045601606369, 0.04745526239275932, -0.01553112082183361, -0.006802259013056755, -0.0323297418653965, -0.016266271471977234, 0.017897123470902443, 0.022392529994249344, 0.022527730092406273, 0.01723802275955677, 0.040762852877378464, -0.007330384571105242, -0.022612228989601135, 0.0007953572785481811, -0.0016826085047796369, 0.030927041545510292, 0.05783187597990036, 0.039208050817251205, 0.017407022416591644, 0.0022667155135422945, 0.04535965994000435, 0.032160744071006775, -0.019992725923657417, 0.0024441657587885857, -0.09295012056827545, 0.016638072207570076, -0.02306853048503399, -0.05641227588057518, -0.064659483730793, 0.035726647824048996, -0.027969537302851677, 0.055296871811151505, -0.025535933673381805, -0.02450503222644329, -0.013274967670440674, 0.027749836444854736, 0.04542725905776024, -0.062056880444288254, -0.020550427958369255, -0.00872041191905737, -0.010655463673174381, 0.029794739559292793, 0.01779572293162346, 0.019992725923657417, 0.009954113513231277, -0.05492507293820381, 0.006650158669799566, -0.037856049835681915, 0.009709062986075878, 0.0006923727924004197, -0.026313334703445435, 0.006472708657383919, 0.002777941059321165, -0.0030103165190666914, 0.044548459351062775, -0.012522916309535503, -0.015970520675182343, 0.010959664359688759, -0.018759025260806084, 0.01943502575159073, -0.006358633283525705, 0.042114853858947754, 0.049821265041828156, 0.041269853711128235, -0.006916333921253681, -0.027749836444854736, 0.0026364035438746214, 0.0023131906054913998, 0.003295504255220294, 0.03559144586324692, 0.0005455538630485535, 0.026685135439038277, -0.02450503222644329, -0.010325913317501545, -0.0011101202107965946, 0.05262666940689087, -0.04279085621237755, -0.0038109549786895514, -0.00879646185785532, -0.061076682060956955, -0.002363890642300248, -0.037281449884176254, -0.018606925383210182, -0.016731021925807, 0.027614636346697807, -0.010469564236700535, -0.026380935683846474, 0.027885036543011665, 0.0019487838726490736, -0.014449519105255604, 0.04671166092157364, 0.004269368015229702, -0.014010118320584297, -0.006996609270572662, -0.005462932400405407, -0.04907766357064247, -0.001342495554126799, 0.03349584341049194, 0.049888864159584045, -0.0094048622995615, 0.016680322587490082, -0.05506027117371559, 0.019333625212311745, -0.03880245238542557, 0.021885529160499573, -0.0014629082288593054, -0.04748906195163727, 0.061718881130218506, -0.0323297418653965, 0.04410905763506889, -0.024690931662917137, -0.006371308583766222, 0.035997048020362854, 0.0488748662173748, -0.06161748245358467, -0.060772478580474854, 0.01324961706995964, 0.01689157262444496, -0.05080146715044975, -0.03488164767622948, 0.03660544753074646, 0.008957011625170708, -0.03454364463686943, -0.006979709025472403, -0.013722818344831467, -0.02435293234884739, -0.012480666860938072, -0.0002711925480980426, -0.02734423615038395, 0.07300809770822525, -0.0010514982277527452, 0.007752885110676289, 0.022308029234409332, -0.014939620159566402, 0.0237952321767807, -0.006481158547103405, 0.040762852877378464, -0.02399803139269352, -0.02049972675740719, -0.022122129797935486, 0.0029553913045674562, -0.0350506454706192, -0.028797637671232224, 0.0068191587924957275, -0.04417665675282478, -0.00016477522149216384, -0.010908964090049267, -0.029287738725543022, 0.01724647358059883, 0.02242632955312729, -0.0015336769865825772, 0.0021526403725147247, 0.00676423404365778, -0.019215324893593788, 0.0043306308798491955, 0.021125027909874916, -0.062496282160282135, 0.050091665238142014, -0.006967034190893173, 0.008619011379778385, -0.003698992310091853, 0.03452674672007561, 0.01659582182765007, 0.022527730092406273, -0.018928024917840958, 0.012235616333782673, 0.11688055098056793, 0.014001668430864811, -0.004020093008875847, 0.048604462295770645, -0.027732936665415764, -0.0023089656606316566, 0.017187323421239853, 0.003960942849516869, 0.04194585606455803, -0.04167545586824417, 0.018471725285053253, 0.015539570711553097, -0.026397835463285446, 0.01750842295587063, 0.004108817782253027, -0.01402701810002327, 0.024319132789969444, 0.027597736567258835, -0.01987442560493946, -0.02435293234884739, -0.07834850251674652, 0.006392433308064938, 0.0035532296169549227, -0.06040067970752716, 0.020770126953721046, 0.0006152664427645504, 0.015159320086240768, 0.01178776565939188, 0.009337262250483036, 0.042926058173179626, 0.009987913072109222, -0.006831834092736244, 0.012015915475785732, -0.03718004748225212, 0.024657132104039192, 0.0040919180028140545, 0.007169834338128567, 0.029997538775205612, 0.057358674705028534, -0.006899434141814709, -0.02607673406600952, -0.029676439240574837, -0.044616058468818665, -0.05800087749958038, 0.05306607112288475, -0.010621664114296436, -0.02357553131878376, -0.0005268054082989693, -0.021564427763223648, -0.00793456006795168, -0.0006358633399941027, -0.00975131243467331, -0.015404370613396168, 0.030876340344548225, 0.0659438893198967, -0.01823512464761734, 0.05222106724977493, -0.051240868866443634, 0.03467884659767151, -0.06516648828983307, -0.006861409172415733, 0.01958712562918663, 0.043906256556510925, -0.04809746518731117, 0.033935245126485825, 0.04356825724244118, 0.03197484090924263, -0.00459680613130331, 0.05391107127070427, -0.01631697081029415, -0.08247210830450058, 0.07544170320034027, -0.02507963217794895, 0.03256634250283241, 0.028679337352514267, -0.045055460184812546, 0.023761430755257607, -0.05279567092657089, 0.09862852841615677, -0.04944946616888046, -0.01339326798915863, -0.04566385969519615, 0.05492507293820381 ]
18,552
traceback2
__init__
Construct a FrameSummary. :param lookup_line: If True, `linecache` is consulted for the source code line. Otherwise, the line will be looked up when first needed. :param locals: If supplied the frame locals, which will be captured as object representations. :param line: If provided, use this instead of looking up the line in the linecache.
def __init__(self, filename, lineno, name, lookup_line=True, locals=None, line=None): """Construct a FrameSummary. :param lookup_line: If True, `linecache` is consulted for the source code line. Otherwise, the line will be looked up when first needed. :param locals: If supplied the frame locals, which will be captured as object representations. :param line: If provided, use this instead of looking up the line in the linecache. """ self.filename = filename self.lineno = lineno self.name = name self._line = line if lookup_line: self.line self.locals = \ dict((k, repr(v)) for k, v in locals.items()) if locals else None
(self, filename, lineno, name, lookup_line=True, locals=None, line=None)
[ -0.03535027429461479, -0.011098743416368961, -0.0041577136144042015, 0.0197464432567358, -0.011979048140347004, -0.043324802070856094, -0.0020583595614880323, 0.058686982840299606, -0.07822629064321518, -0.02917088195681572, -0.057858459651470184, 0.05050532519817352, -0.018089398741722107, 0.051540978252887726, -0.004444675985723734, 0.053577762097120285, 0.020540444180369377, -0.02998214401304722, -0.0646592453122139, -0.045465148985385895, 0.00961430836468935, 0.02911909855902195, -0.012997440062463284, 0.03167371079325676, 0.023940837010741234, 0.02932623028755188, 0.011806439608335495, -0.04294506087899208, -0.0066022854298353195, 0.0078062317334115505, -0.027979880571365356, -0.0060413070023059845, -0.0645902007818222, -0.01218617893755436, -0.024044401943683624, -0.040355928242206573, -0.050816021859645844, -0.03976906090974808, -0.06604011356830597, -0.012272483669221401, 0.020695790648460388, 0.03533301502466202, -0.027065055444836617, 0.00855707935988903, -0.00812555756419897, 0.014680375345051289, 0.05361228436231613, -0.044394973665475845, 0.03484971076250076, -0.06331289559602737, -0.02713409811258316, 0.037007320672273636, 0.038940537720918655, -0.0020076557993888855, 0.00910511240363121, 0.02290518395602703, 0.03519492968916893, 0.04228914901614189, 0.005929111037403345, 0.02325040102005005, -0.03055175207555294, 0.05820367857813835, 0.022922445088624954, -0.004979763180017471, -0.033537883311510086, -0.013109635561704636, 0.004518034402281046, -0.03371049091219902, -0.010848460718989372, -0.04415332153439522, 0.060758285224437714, 0.03336527571082115, -0.013006070628762245, 0.039907146245241165, 0.03438366577029228, 0.003745610360056162, -0.11668352782726288, -0.04646627977490425, 0.0250973142683506, -0.004949556663632393, 0.028445925563573837, 0.03250223025679588, -0.03569549322128296, -0.05430271849036217, -0.005035860929638147, -0.031432054936885834, 0.06207011267542839, -0.00044177056406624615, 0.01972918212413788, 0.0822998583316803, -0.017252245917916298, 0.038181059062480927, -0.040770191699266434, 0.011383548378944397, 0.03272662311792374, -0.06262245774269104, 0.03279566764831543, 0.003844860242679715, -0.015923159196972847, 0.004940926097333431, 0.032674841582775116, -0.07539550960063934, -0.08209273219108582, 0.0176406167447567, -0.08416403830051422, 0.05961906909942627, 0.022715313360095024, 0.00010005914373323321, 0.020833877846598625, 0.02718588151037693, 0.005739241372793913, -0.060378547757864, -0.049089934676885605, 0.03655853867530823, 0.02356109768152237, 0.0007006837404333055, 0.002334533492103219, 0.0034974850714206696, -0.0002318081824341789, 0.0016257588285952806, 0.022197486832737923, -0.01346348412334919, -0.04691506177186966, 0.023181358352303505, -0.006015415769070387, -0.0126953748986125, 0.003788762493059039, -0.0656948983669281, 0.07028628885746002, -0.05982619896531105, 0.04553419351577759, -0.06341645866632462, 0.011055591516196728, 0.04184036701917648, 0.01789953000843525, -0.0312594473361969, 0.0341765359044075, 0.02867031656205654, -0.04636271670460701, 0.01581096276640892, 0.026132967323064804, 0.02658175118267536, 0.0015653457958251238, -0.018676267936825752, 0.0038470178842544556, 0.002770370803773403, -0.020316051319241524, -0.020868400111794472, -0.056684721261262894, -0.0005021836259402335, 0.010900244116783142, -0.07249568402767181, -0.06607463955879211, 0.02564966306090355, 0.047812629491090775, -0.01836557313799858, 0.028376881033182144, -0.03405570983886719, 0.03388310223817825, 0.027651924639940262, 0.014464614912867546, -0.004466251935809851, 0.019953573122620583, -0.04518897458910942, -0.028877446427941322, 0.030931491404771805, -0.024337835609912872, -0.056684721261262894, -0.06935420632362366, 0.001840441022068262, -0.032364144921302795, -0.03065531700849533, 0.01614755019545555, 0.07221950590610504, -0.002994762035086751, -0.005471698008477688, 0.012609070166945457, 0.0250973142683506, -0.03569549322128296, -0.012332896701991558, 0.026892445981502533, -0.004200865980237722, -0.059135764837265015, -0.04239271208643913, -0.01933218166232109, 0.003808181034401059, 0.0041577136144042015, 0.025943098589777946, 0.09113743156194687, 0.0523349791765213, 0.017968572676181793, -0.004045518115162849, 0.001773555064573884, -0.02340574935078621, 0.01810665987432003, -0.04184036701917648, -0.012807570397853851, 0.0027099577710032463, 0.03911314532160759, -0.005510535091161728, 0.00164194090757519, 0.07629307359457016, 0.012807570397853851, -0.01983274705708027, -0.00536813260987401, 0.07677637785673141, -0.004190078005194664, 0.027410272508859634, -0.08740907907485962, 0.05865246057510376, 0.008246383629739285, -0.07594785839319229, 0.017528420314192772, 0.021558836102485657, 0.014956549741327763, -0.02554609812796116, -0.0437735840678215, 0.03081066533923149, -0.011702874675393105, 0.018192963674664497, 0.1164763942360878, -0.030361881479620934, -0.031432054936885834, -0.011866852641105652, -0.015500267036259174, -0.014861615374684334, 0.042461756616830826, -0.04146062582731247, 0.004608653951436281, -0.02825605496764183, -0.04135706275701523, -0.03232962265610695, -0.039251234382390976, -0.0057478719390928745, -0.00012864747259300202, 0.006887089926749468, 0.020626747980713844, 0.06103445962071419, -0.07518837600946426, -0.06648889929056168, -0.004233229905366898, 0.05630498006939888, 0.04090827703475952, 0.004077882040292025, 0.04380810633301735, -0.05212784931063652, 0.012617700733244419, 0.021179096773266792, -0.07470507174730301, -0.006541872397065163, 0.029913099482655525, 0.04025236517190933, -0.029809534549713135, 0.011987678706645966, 0.007193470373749733, -0.02100648730993271, 0.016941551119089127, -0.05381941422820091, 0.037973929196596146, -0.012911136262118816, 0.013515266589820385, -0.03935479745268822, 0.0560978502035141, 0.04080471396446228, -0.00971787329763174, 0.018279269337654114, -0.053370632231235504, -0.022732574492692947, -0.015068745240569115, -0.02860127203166485, 0.0486411526799202, 0.04688054323196411, 0.05968811362981796, 0.027065055444836617, -0.057306110858917236, -0.09707517176866531, -0.02861853316426277, -0.06006785109639168, -0.01381733175367117, 0.007633622735738754, 0.057306110858917236, -0.01501696277409792, 0.017778703942894936, 0.027876315638422966, 0.058721501380205154, -0.02815249003469944, -0.020574964582920074, 0.021127313375473022, -0.03529849275946617, -0.05734063312411308, -0.005312034860253334, 0.041080888360738754, 0.028169751167297363, -0.0176406167447567, 0.025666924193501472, 0.030310099944472313, -0.040977321565151215, 0.06721385568380356, -0.03148384019732475, 0.04083923622965813, -0.010753526352345943, -0.030413664877414703, 0.09603951871395111, 0.037145406007766724, -0.021765965968370438, -0.05119575932621956, -0.043877147138118744, -0.012514135800302029, -0.013342658057808876, -0.013377179391682148, 0.07574072480201721, 0.09251829981803894, 0.046086542308330536, -0.020488660782575607, -0.008639069274067879, 0.03075888194143772, -0.03134575113654137, -0.020989226177334785, 0.022318312898278236, 0.02963692508637905, 0.01512052770704031, -0.10812213271856308, 0.04042497277259827, -0.026340097188949585, 0.07025177031755447, -0.025390749797225, 0.03500505909323692, -0.061068981885910034, -0.016432354226708412, -0.01748526841402054, -0.006597970146685839, -0.036282364279031754, 0.053474195301532745, 0.0002509569749236107, -0.01737307198345661, 0.022559966892004013, -0.07864055782556534, 0.017390333116054535, 0.010960657149553299, -0.06852567940950394, 0.025839531794190407, -0.011746026575565338, -0.023181358352303505, -0.0226980522274971, 0.02131718210875988, -0.055165763944387436, 0.014930658042430878, -0.04401523619890213, 0.08734003454446793, -0.03170822933316231, -0.027651924639940262, -0.027203142642974854, -0.008289536461234093, 0.013428961858153343, 0.009528003633022308, 0.06058567762374878, 0.001264359219931066, -0.048468541353940964, 0.0055364263243973255, -0.03524671122431755, 0.03438366577029228, 0.026892445981502533, -0.05040176212787628, -0.013152788393199444, -0.03759418800473213, 0.005294774193316698, -0.011875483207404613, 0.045016366988420486, -0.025425272062420845, 0.02447592280805111, -0.01236741803586483, -0.009579787030816078, 0.010106243193149567, 0.01134902611374855, -0.02794536016881466, -0.05654663220047951, 0.053957499563694, 0.014447353780269623, -0.057754892855882645, -0.07284089922904968, 0.015155049972236156, 0.023906314745545387, -0.04484375938773155, -0.01737307198345661, -0.02306053228676319, 0.00884619913995266, -0.03507409989833832, 0.02207666076719761, 0.007353133521974087, 0.030016664415597916, 0.0007249568006955087, -0.0326230563223362, 0.000209827529033646, -0.010598178021609783, 0.015672875568270683, -0.03790488466620445, 0.02872209995985031, 0.04494732245802879, -0.019850008189678192, -0.034659840166568756, 0.011150526814162731, -0.014671745710074902, -0.04712219536304474, -0.015638355165719986, -0.0026344412472099066, 0.01364472322165966, 0.020022617653012276, -0.023992618545889854, 0.006218230817466974, -0.02259448729455471, 0.07028628885746002, -0.018676267936825752, -0.061172548681497574, -0.038422711193561554, -0.04619010537862778, 0.02029879204928875, 0.01134902611374855, -0.05243854224681854, 0.01769239827990532, -0.018348312005400658, -0.023802749812602997, 0.041391581296920776, -0.020971965044736862, 0.02530444599688053, -0.016052614897489548, 0.00544580677524209, -0.07025177031755447, -0.017649246379733086, 0.07346229255199432, -0.008289536461234093, -0.07284089922904968, 0.009579787030816078, 0.006067198235541582, 0.03707636520266533, -0.007430807687342167, -0.05012558773159981, -0.040355928242206573, -0.024510445073246956, -0.013394440524280071, 0.07539550960063934, 0.019453007727861404, -0.04432593286037445, 0.054647937417030334, 0.040977321565151215, -0.08264508098363876, 0.012384679168462753, -0.026288315653800964, -0.013791440986096859, -0.05157550051808357, 0.024406880140304565, 0.018797094002366066, 0.048019759356975555, -0.042461756616830826, -0.027323968708515167, -0.026443663984537125, -0.03635140508413315, -0.04308314993977547, -0.0034543329384177923, 0.011979048140347004, 0.02397535741329193, -0.018538182601332664, 0.015431223437190056, 0.02993036061525345, -0.031552884727716446, -0.023492053151130676, 0.020385095849633217, 0.03405570983886719, -0.01466311514377594, -0.009933634661138058, -0.043531931936740875, -0.0014984598383307457, 0.032105229794979095, -0.029050055891275406, -0.004317376762628555, 0.02867031656205654, 0.025511575862765312, -0.010753526352345943, -0.03697279840707779, -0.03207070752978325, 0.0092086773365736, -0.01586274616420269, -0.026685316115617752, 0.029895838350057602, 0.01216028816998005, 0.022784357890486717, 0.0341765359044075, 0.0045266649685800076, -0.03655853867530823, 0.019556572660803795, 0.039907146245241165, -0.033779535442590714, 0.04453306272625923, -0.027531098574399948, 0.01623385399580002, -0.023077791556715965, 0.0662817656993866, 0.06365811079740524, 0.04477471485733986, -0.020419618114829063, -0.011331765912473202, -0.016138920560479164, 0.00026727389195002615, -0.0028286261949688196, -0.007461014203727245, 0.02309505268931389, 0.03484971076250076, 0.03662757948040962, -0.019159574061632156, -0.0016958811320364475, -0.02105826884508133, 0.012540026567876339, -0.011789178475737572, -0.02382001094520092, -0.003503957996144891, -0.03196714445948601, 0.02085113897919655, -0.06617820262908936, 0.015267245471477509, -0.010546395555138588, 0.025718705728650093, 0.061379678547382355, 0.019038747996091843, 0.09244925528764725, -0.04619010537862778, -0.006144871935248375, -0.013851854018867016, 0.04477471485733986, 0.06586750596761703, 0.04132254049181938, 0.046535324305295944, 0.01948752999305725, -0.009605677798390388, -0.03548836335539818, -0.02085113897919655, 0.07429081201553345, 0.07076959311962128, -0.022784357890486717, -0.024234270676970482, -0.03415927663445473, -0.033434320241212845, 0.02804892510175705, 0.002835099119693041, -0.0035276918206363916, -0.0006925927009433508, -0.010106243193149567, -0.044602107256650925, 0.029861316084861755, 0.009950895793735981, 0.0168293546885252, -0.04632819443941116, 0.04619010537862778, -0.03279566764831543, -0.007849384099245071, -0.035108622163534164, 0.0075300573371350765, 0.052196890115737915, 0.03479792922735214, 0.018935181200504303, 0.04798523709177971, -0.009329504333436489, 0.013955418951809406, 0.05620141327381134, 0.03583357855677605, -0.02494196780025959, -0.024061663076281548, -0.0012373891659080982, 0.01537944097071886, -0.001627916470170021, -0.04152967035770416, -0.031777273863554, 0.010796678252518177, 0.054647937417030334, 0.03780132159590721, 0.04477471485733986, -0.02917088195681572, -0.0014229435473680496, 0.0036830396857112646, 0.08091899007558823, 0.015129158273339272, 0.0084146773442626, -0.00566156767308712, -0.03519492968916893, -0.013230462558567524, -0.031777273863554, -0.09023986756801605, 0.02397535741329193, -0.043428365141153336, -0.022473661229014397, 0.00878147128969431, 0.00664543779566884, 0.023699183017015457, -0.05033271759748459, -0.021144574508070946, 0.016432354226708412, 0.016760312020778656, 0.0009094324777834117, 0.0011057748924940825, -0.019245877861976624, -0.017174571752548218, 0.038526277989149094, -0.05606332793831825, -0.013316766358911991, -0.028704838827252388, 0.024165228009223938, 0.0012093401746824384, -0.023440271615982056, 0.005333610810339451, 0.07104577124118805, -0.03555740788578987, 0.04895184561610222, 0.019694659858942032, 0.051540978252887726, 0.015586571767926216, 0.0015599516918882728, -0.018538182601332664, -0.039803583174943924, 0.03324444964528084, 0.0023604249581694603, -0.00790548138320446, -0.03522944822907448, -0.009269091300666332, -0.00910511240363121, -0.028946490958333015, 0.04049401730298996, 0.012678113766014576, 0.028842926025390625, 0.034608058631420135, -0.05426819622516632, 0.01234152726829052, -0.03769775480031967, -0.000028942309654667042, 0.022266531363129616, -0.03024105541408062, -0.06227724254131317, 0.05119575932621956, 0.01581096276640892, 0.02136896550655365, 0.02979227341711521, -0.017761442810297012, 0.04477471485733986, -0.00489777373149991, -0.01902148686349392, -0.009743764996528625, -0.023267662152647972, -0.04708767309784889, -0.002208313439041376, -0.012514135800302029, -0.059791676700115204, 0.10694839060306549, 0.005355187226086855, -0.0000054319507398759015, 0.007732872851192951, 0.007495536003261805, 0.0200398787856102, 0.08851377665996552, 0.05654663220047951, -0.04446401819586754, -0.013825962319970131, 0.013938157819211483, 0.013756918720901012, -0.04957323893904686, -0.05350871756672859, 0.04049401730298996, -0.0060585676692426205, 0.014861615374684334, 0.030120229348540306, 0.036178797483444214, -0.010106243193149567, -0.03673114627599716, 0.01959109492599964, -0.03583357855677605, 0.026633532717823982, 0.052093327045440674, 0.02055770345032215, -0.021455269306898117, 0.028998272493481636, -0.0411154069006443, -0.005419915542006493, 0.007702666334807873, -0.018279269337654114, 0.015741920098662376, 0.033382534980773926, 0.00010592514445306733, -0.07132194191217422, 0.006852568127214909, 0.06334742158651352, -0.02601214125752449, 0.038836974650621414, -0.04070114716887474, -0.03132849186658859, -0.03003392554819584, 0.02090292237699032, 0.011383548378944397, 0.021714182570576668, -0.06217367947101593, 0.00809966679662466, 0.01114189624786377, -0.07180524617433548, 0.05202428251504898, -0.010416938923299313, -0.03507409989833832, 0.05333610996603966, 0.01800309494137764, 0.03825010359287262, -0.03024105541408062, 0.004729480482637882, -0.0030077078845351934, 0.04905541241168976, -0.007991786114871502, 0.005523480474948883, 0.02564966306090355, -0.005670198239386082, 0.02963692508637905, 0.0432557575404644, 0.0016192860202863812, 0.012496874667704105, 0.0014833565801382065, 0.016026724129915237, -0.02085113897919655, -0.00634768744930625, 0.04726028069853783, 0.06614367663860321, -0.011392178945243359, 0.007776025217026472, 0.01933218166232109, 0.0013690033229067922, -0.03800845146179199, -0.0046431757509708405, -0.009743764996528625, -0.04142610356211662, 0.031949881464242935, 0.03245044872164726, -0.030310099944472313, 0.02136896550655365, -0.008030623197555542, -0.016682637855410576, 0.008082405664026737, 0.033537883311510086, 0.05651210993528366, 0.01928040012717247, 0.004164186771959066, 0.02606392465531826, 0.001307511469349265, 0.0200398787856102, -0.04315219074487686, 0.051540978252887726, 0.0038189690094441175, -0.0060585676692426205, 0.021714182570576668, 0.017329920083284378, 0.008354264311492443, -0.017286768183112144, -0.03055175207555294, 0.03474614396691322, 0.00969198253005743, -0.0908612534403801, -0.000049557595048099756, 0.017079638317227364, 0.06348550319671631, -0.03110410086810589, -0.013377179391682148, -0.06683411449193954, 0.028031663969159126, 0.05675376206636429, 0.011547526344656944, 0.03869888558983803, -0.0108139393851161, 0.040873754769563675 ]
18,553
traceback2
__iter__
null
def __iter__(self): return iter([self.filename, self.lineno, self.name, self.line])
(self)
[ 0.017163697630167007, -0.027430882677435875, -0.06051690876483917, 0.005952553357928991, -0.03112051822245121, -0.02189643122255802, 0.010612010024487972, 0.050930753350257874, 0.06782720983028412, 0.01636197790503502, 0.006021518260240555, -0.03565497696399689, -0.009086156263947487, 0.08399953693151474, -0.015767155215144157, 0.028723979368805885, -0.01467233244329691, 0.04748249799013138, -0.09634429216384888, 0.049413520842790604, -0.046965256333351135, 0.02936190739274025, 0.02481020800769329, -0.025534341111779213, 0.008413746953010559, 0.07958576828241348, 0.029982592910528183, -0.01965506374835968, 0.08406849950551987, -0.03051707334816456, -0.05720658227801323, -0.03544808179140091, 0.01151717733591795, -0.02970673330128193, 0.018051624298095703, 0.013663717545568943, -0.07820646464824677, 0.02001713030040264, 0.009267190471291542, 0.020258508622646332, 0.08165472000837326, 0.014939572662115097, -0.012249932624399662, 0.030792932957410812, -0.02291366644203663, -0.014137852936983109, 0.004607733339071274, -0.05682727321982384, 0.029689490795135498, -0.05206867679953575, 0.02115505561232567, 0.038413580507040024, 0.005806002300232649, -0.05675830692052841, 0.00276507087983191, 0.043930791318416595, 0.029913628473877907, 0.013810268603265285, 0.0023081768304109573, 0.05031006783246994, -0.01756024733185768, -0.0704478845000267, 0.06024104729294777, -0.05275832861661911, 0.018327485769987106, -0.04313769191503525, -0.04199976846575737, -0.012956825084984303, -0.0065991017036139965, 0.05768933519721031, -0.0006966556538827717, -0.004219804424792528, 0.0009450378711335361, 0.005211178213357925, -0.02399986796081066, 0.02060333453118801, -0.08924088627099991, 0.05465487018227577, 0.06889617443084717, -0.06786169111728668, -0.03941357508301735, 0.07413752377033234, -0.07393062859773636, 0.003090500133112073, -0.00328877498395741, -0.03343084827065468, 0.0007338321302086115, -0.06251689791679382, -0.05882726237177849, 0.11351661384105682, -0.054689351469278336, 0.06020656228065491, 0.0012349069584161043, 0.003066793316975236, -0.00736633874475956, -0.018327485769987106, -0.029741214588284492, -0.012249932624399662, 0.016189565882086754, 0.00333403330296278, 0.00006579974433407187, 0.045551471412181854, 0.03968943655490875, 0.009267190471291542, 0.007349097169935703, 0.0021185227669775486, -0.03160327300429344, -0.05582727864384651, 0.02399986796081066, -0.007012892514467239, -0.04165494069457054, 0.0169826652854681, -0.0051077306270599365, 0.031034311279654503, 0.015301639214158058, -0.07003409415483475, -0.03662048652768135, -0.0005996734253130853, 0.04382734373211861, -0.014543022960424423, 0.015310260467231274, 0.04434458166360855, -0.05362039431929588, 0.08179265260696411, -0.0029504147823899984, -0.004045236390084028, -0.013456822372972965, -0.021206779405474663, 0.05906863883137703, -0.09110294282436371, 0.01953437551856041, -0.005422384012490511, -0.002831880934536457, -0.022517116740345955, 0.023430904373526573, -0.008030127733945847, 0.02622399292886257, 0.005987036041915417, -0.03858599439263344, 0.03244809806346893, 0.040999773889780045, -0.018189555034041405, 0.0004013986326754093, 0.04010322690010071, -0.06144793704152107, -0.005599107127636671, 0.030861899256706238, 0.04365492984652519, 0.011180972680449486, -0.008409435860812664, -0.023327456787228584, 0.0027930880896747112, 0.040999773889780045, 0.03548256307840347, -0.02667226642370224, -0.0029461043886840343, -0.06437895447015762, 0.01836196705698967, 0.015568879432976246, -0.043103210628032684, -0.02667226642370224, -0.03827565163373947, -0.03672393411397934, 0.005956863518804312, 0.03755151852965355, 0.02772398479282856, -0.04199976846575737, -0.04210321605205536, -0.013810268603265285, -0.027310194447636604, 0.01637060008943081, -0.04165494069457054, 0.0023577455431222916, 0.04858594015240669, -0.056930720806121826, 0.07075823098421097, 0.00003936535358661786, 0.08793054521083832, 0.005689623765647411, 0.05217212438583374, 0.009525809437036514, -0.046034228056669235, -0.057137615978717804, 0.0006411602371372283, 0.0435514822602272, 0.012258552946150303, 0.022258497774600983, 0.00929305236786604, 0.04489630460739136, 0.0038081686943769455, 0.011655108071863651, -0.026258476078510284, -0.0024245555978268385, 0.0191723071038723, -0.021482640877366066, -0.00267455424182117, -0.04551699012517929, 0.0416894257068634, 0.02398262545466423, 0.02832742966711521, -0.05710313469171524, -0.010017186403274536, -0.03606876730918884, 0.004017219413071871, -0.04079287871718407, 0.08206851035356522, -0.011370627209544182, -0.046034228056669235, -0.028689496219158173, 0.06141345575451851, -0.0157757755368948, -0.05706864967942238, 0.014948192983865738, -0.00412066699936986, 0.05524107441306114, -0.03367222845554352, -0.005025834310799837, -0.04582733288407326, 0.022672288119792938, 0.03593083471059799, 0.06724100559949875, 0.003487049601972103, -0.006969789043068886, -0.04131011664867401, 0.0016573184402659535, -0.02936190739274025, 0.013956819660961628, -0.029568802565336227, -0.05734451115131378, 0.012232691049575806, -0.004228424746543169, -0.011887865141034126, 0.0004520449147094041, -0.0196378231048584, 0.014887848868966103, 0.044516995549201965, -0.010663733817636967, 0.029775697737932205, -0.044861819595098495, 0.003864202881231904, -0.025655031204223633, 0.03565497696399689, 0.006012897938489914, -0.025792960077524185, 0.0002653541450854391, -0.02467227727174759, 0.022189533337950706, 0.0735168382525444, -0.01918954961001873, 0.032948095351457596, 0.0488617978990078, 0.027999846264719963, -0.041448045521974564, 0.006370654329657555, 0.013034410774707794, -0.020775746554136276, -0.029413631185889244, -0.061241041868925095, 0.05517210811376572, 0.002461193362250924, 0.04962041601538658, -0.016198186203837395, 0.024534346535801888, 0.031534310430288315, -0.0019127049017697573, 0.03903426602482796, -0.001576499897055328, -0.005068937316536903, -0.010499942116439342, 0.057275544852018356, 0.07572372257709503, 0.02375848963856697, -0.03382739797234535, 0.03751703351736069, -0.046723879873752594, 0.0026680887676775455, -0.015741292387247086, -0.020775746554136276, -0.05931001901626587, -0.014603368006646633, 0.03465498238801956, 0.04037908837199211, -0.05606865510344505, -0.014120611362159252, -0.0034374811220914125, -0.04199976846575737, -0.013594752177596092, 0.028810186311602592, -0.01322406530380249, -0.008784433826804161, 0.05396521836519241, 0.02632744051516056, -0.005068937316536903, -0.04782732203602791, 0.09951668977737427, -0.028034327551722527, -0.030861899256706238, 0.002978431759402156, 0.03512049466371536, -0.0033642055932432413, 0.00866374559700489, -0.05368935689330101, 0.015051640570163727, 0.02631019987165928, -0.05720658227801323, -0.0014331816928461194, 0.0282929465174675, 0.04734456539154053, -0.03851702809333801, -0.006909444462507963, 0.04993075877428055, 0.015741292387247086, -0.038620475679636, -0.012413724325597286, 0.022086085751652718, -0.0631031021475792, -0.01379302702844143, 0.027086056768894196, -0.029982592910528183, 0.061482418328523636, -0.0921374186873436, -0.00032515983912162483, 0.04741353169083595, -0.039723917841911316, 0.0336894690990448, 0.036310143768787384, 0.033982571214437485, 0.03518946096301079, -0.010577527806162834, 0.03962047025561333, 0.017525766044855118, -0.07206856459379196, -0.013991301879286766, 0.06875824183225632, -0.001270467066206038, 0.03296533599495888, 0.000029010481739533134, 0.010120633989572525, 0.034930840134620667, -0.08875813335180283, -0.00918960478156805, -0.03941357508301735, -0.00929305236786604, -0.02560330741107464, -0.028965357691049576, -0.009680980816483498, -0.012008554302155972, -0.0006691773305647075, 0.07158581167459488, 0.006116345524787903, 0.019827477633953094, 0.01393095776438713, -0.006693928502500057, 0.0035689459182322025, 0.01042235642671585, 0.0063361721113324165, -0.030241211876273155, 0.003224120009690523, -0.009362016804516315, 0.04017219319939613, 0.05631003528833389, 0.018568862229585648, -0.02584468573331833, -0.02236194536089897, 0.0018308088183403015, -0.04713767021894455, -0.01164648775011301, 0.0036034283693879843, 0.020086096599698067, -0.011422351002693176, -0.05051696300506592, 0.03332740068435669, -0.01929299719631672, -0.09379258751869202, -0.013284409418702126, -0.07172374427318573, 0.0404825359582901, 0.03906875103712082, -0.04472389072179794, 0.0004865274822805077, 0.0196378231048584, 0.008331850171089172, 0.05382728949189186, 0.015474052168428898, -0.042413558810949326, -0.04017219319939613, 0.030120523646473885, 0.009206845425069332, 0.010905112139880657, 0.03541359677910805, -0.03827565163373947, -0.06155138462781906, -0.05437900871038437, 0.013818888925015926, -0.0030150695238262415, -0.06872376054525375, 0.04162045940756798, -0.0348963588476181, -0.06889617443084717, -0.056792788207530975, -0.0008453617338091135, 0.016198186203837395, -0.037861861288547516, 0.05968932434916496, 0.008025817573070526, -0.05079282447695732, 0.041344597935676575, 0.007969783619046211, 0.000395202572690323, -0.015301639214158058, 0.025068826973438263, -0.015732672065496445, -0.011672349646687508, -0.06875824183225632, 0.041448045521974564, 0.01661197654902935, -0.007922369986772537, -0.010370632633566856, 0.06613756716251373, 0.03336188569664955, -0.030206730589270592, -0.004905145149677992, 0.027448125183582306, 0.044516995549201965, -0.03910323232412338, -0.026258476078510284, -0.020999884232878685, -0.01696542277932167, 0.013086134567856789, -0.03353429585695267, -0.061344489455223083, -0.024361934512853622, 0.007176684681326151, 0.011491315439343452, 0.041930802166461945, -0.07003409415483475, -0.055965207517147064, -0.01316372025758028, 0.008344781585037708, 0.053896255791187286, 0.033051542937755585, 0.031068794429302216, 0.034241192042827606, -0.015361984260380268, 0.006038759835064411, -0.011594763956964016, -0.03253430128097534, 0.04817214608192444, 0.024879172444343567, -0.0036874795332551003, -0.03613772988319397, 0.02455158904194832, 0.023430904373526573, -0.045448023825883865, -0.0017898607766255736, 0.04034460335969925, -0.033154990524053574, -0.04610319435596466, 0.0013760699657723308, 0.02305159717798233, 0.010387873277068138, 0.052930742502212524, 0.04948248714208603, -0.06062035635113716, 0.009172363206744194, -0.04524112865328789, 0.01011201273649931, 0.024189522489905357, -0.01151717733591795, -0.03343084827065468, 0.024155039340257645, -0.0011174507671967149, -0.060068633407354355, -0.07862025499343872, -0.03406877815723419, 0.0491376593708992, -0.00219179829582572, 0.02867225557565689, 0.01624990999698639, -0.0615169033408165, -0.030448107048869133, -0.07496510446071625, 0.007693923078477383, -0.01246544811874628, 0.014430955052375793, -0.009922359138727188, 0.030723968520760536, -0.0376894474029541, -0.013017169199883938, -0.003775841323658824, 0.03837909922003746, -0.0026939506642520428, -0.0460687093436718, -0.0073749590665102005, 0.01683611422777176, 0.06396516412496567, 0.049068693071603775, 0.018172312527894974, -0.01953437551856041, -0.027189504355192184, 0.006900824140757322, -0.017172319814562798, 0.028603291139006615, -0.001186415902338922, 0.008193920366466045, 0.06444791704416275, 0.028568807989358902, -0.048482492566108704, -0.0355515293776989, -0.04962041601538658, 0.028723979368805885, -0.028241222724318504, -0.03672393411397934, -0.023896420374512672, 0.013939578086137772, -0.048620421439409256, -0.04531009495258331, 0.027206746861338615, -0.045344576239585876, 0.06730997562408447, 0.03565497696399689, -0.03065500222146511, -0.02501710318028927, -0.02024126797914505, -0.021689536049962044, 0.023327456787228584, 0.004987041465938091, 0.013844750821590424, 0.03298257663846016, -0.003752134507521987, 0.03417222574353218, -0.02948259562253952, 0.020034372806549072, 0.005405142437666655, -0.024275727570056915, 0.01509474404156208, 0.03799979016184807, 0.010232701897621155, 0.0014191732043400407, 0.06224103644490242, 0.04724111780524254, 0.024499865248799324, 0.014836125075817108, -0.0404825359582901, -0.017353352159261703, -0.03979288414120674, -0.06796514242887497, -0.04410320520401001, 0.044413547962903976, -0.026861920952796936, 0.04258597269654274, -0.03851702809333801, -0.07289615273475647, 0.004499975126236677, 0.0070473747327923775, 0.017827488481998444, 0.0010684208245947957, 0.001247837906703353, -0.031137758865952492, 0.004943937994539738, 0.026396406814455986, 0.048241112381219864, -0.07462027668952942, -0.04248252511024475, 0.016991285607218742, 0.015456811524927616, 0.024706760421395302, 0.047103188931941986, -0.01731024868786335, 0.016767147928476334, 0.008793055079877377, 0.03968943655490875, -0.0050129033625125885, 0.01767231710255146, 0.01999988965690136, 0.03448256850242615, 0.0056206583976745605, -0.00017066177679225802, 0.0040366156026721, -0.07779267430305481, 0.046172160655260086, -0.019224030897021294, 0.03131017088890076, -0.022775735706090927, -0.07303407788276672, -0.028948115184903145, -0.07372373342514038, 0.035017047077417374, 0.011310282163321972, 0.01731886900961399, 0.0273619182407856, -0.02832742966711521, -0.02068954147398472, -0.045585956424474716, 0.011094766668975353, -0.037723928689956665, 0.00006071491225156933, -0.041585978120565414, -0.06675825268030167, 0.015749912708997726, -0.010775802657008171, -0.00241162464953959, -0.01625853031873703, 0.0648617073893547, -0.004780145827680826, -0.06620652973651886, 0.0320170633494854, 0.021930912509560585, 0.006198241841048002, 0.09324086457490921, -0.019706787541508675, -0.00005512496500159614, 0.0411377027630806, -0.06955134123563766, -0.03568945825099945, 0.021551605314016342, 0.03672393411397934, 0.04248252511024475, -0.00245688296854496, 0.022258497774600983, -0.022379186004400253, -0.009068915620446205, -0.019137825816869736, 0.05941346660256386, -0.04224114492535591, -0.041448045521974564, 0.027310194447636604, -0.03239637240767479, 0.059482429176568985, -0.031292930245399475, -0.0167068038135767, -0.0015258536441251636, 0.023224009200930595, -0.06375826895236969, 0.00381463416852057, 0.006607722025364637, 0.007624957710504532, -0.03191361576318741, -0.04717215150594711, -0.01094821561127901, 0.01941368542611599, -0.02598261460661888, -0.012362000532448292, -0.026361923664808273, -0.07558578997850418, -0.0002631989773362875, 0.00197520456276834, -0.020879194140434265, 0.08013749122619629, -0.07027547061443329, 0.004321096930652857, 0.057861749082803726, 0.015732672065496445, 0.028051570057868958, -0.03686186671257019, -0.015637844800949097, -0.01789645291864872, -0.004491354338824749, 0.02653433568775654, 0.020086096599698067, 0.02068954147398472, -0.008168058469891548, 0.05417211353778839, -0.035723939538002014, 0.011706831865012646, -0.0031314482912421227, 0.0017866280395537615, 0.007521510124206543, 0.006060311570763588, -0.0010037659667432308, -0.0395515039563179, 0.06317206472158432, -0.011767175979912281, -0.03146534413099289, -0.031396377831697464, -0.023672282695770264, 0.008538746275007725, -0.00018076409469358623, 0.030017076060175896, -0.010077530518174171, -0.06424102187156677, 0.0270343329757452, -0.0031271378975361586, -0.022068843245506287, 0.010560286231338978, 0.07330994307994843, -0.016353357583284378, -0.01193096861243248, 0.07717198878526688, -0.029430871829390526, -0.006724101025611162, 0.011715452186763287, 0.02899983897805214, 0.02118953876197338, -0.0074568553827703, 0.07427544891834259, 0.022844702005386353, -0.05975829064846039, 0.010844768024981022, -0.007482717279344797, 0.02481020800769329, 0.031292930245399475, 0.04724111780524254, 0.0002990285283885896, 0.02549985982477665, -0.05031006783246994, -0.0010457916650921106, 0.03544808179140091, -0.021327467635273933, 0.03203430399298668, 0.0029719662852585316, 0.051068682223558426, -0.03624117746949196, -0.012672344222664833, 0.054344527423381805, -0.03132741153240204, 0.05120661482214928, 0.0040883393958210945, 0.030810175463557243, 0.02244815230369568, 0.047103188931941986, 0.006987030152231455, 0.013387857005000114, 0.0645858496427536, -0.026258476078510284, 0.01848265714943409, -0.05517210811376572, 0.031172242015600204, -0.016568874940276146, 0.040999773889780045, -0.011905106715857983, -0.03181016817688942, -0.047689393162727356, 0.020672298967838287, -0.009034432470798492, -0.04817214608192444, 0.008896502666175365, 0.052344538271427155, 0.022310221567749977, 0.021810224279761314, -0.008974088355898857, 0.013732682913541794, -0.014163714833557606, 0.04782732203602791, -0.03486187756061554, -0.026948127895593643, 0.04682732746005058, 0.01918954961001873, -0.02024126797914505, 0.020292991772294044, 0.020310232415795326, -0.015517155639827251, 0.012232691049575806, 0.025120550766587257, 0.008034438826143742, -0.027689501643180847, 0.04682732746005058, -0.05358590930700302, 0.0005304389051161706, 0.024741243571043015, -0.031137758865952492, -0.019672304391860962, 0.021258503198623657, 0.034792911261320114, 0.010318908840417862, 0.014525781385600567, 0.02934466488659382, 0.019603339955210686 ]
18,554
traceback2
__repr__
null
def __repr__(self): return "<FrameSummary file {filename}, line {lineno} in {name}>".format( filename=self.filename, lineno=self.lineno, name=self.name)
(self)
[ -0.009243298321962357, -0.03876166418194771, 0.019312044605612755, 0.03160778060555458, 0.015597528778016567, -0.06407540291547775, 0.007755772210657597, 0.027308572083711624, -0.003269548062235117, -0.008993944153189659, -0.04254496842622757, -0.01085120253264904, 0.0006524049094878137, 0.0690280944108963, -0.017257023602724075, 0.04722250625491142, 0.018469400703907013, -0.057918936014175415, -0.046156302094459534, 0.02674107626080513, -0.003570492612197995, 0.023112544789910316, -0.01592426747083664, -0.02574366144835949, 0.014367954805493355, 0.031160663813352585, -0.008159898221492767, -0.041925881057977676, -0.02557169273495674, -0.014634505845606327, -0.0889420285820961, -0.06012013182044029, -0.014737687073647976, -0.04773841053247452, -0.020980138331651688, 0.023284513503313065, -0.07126367837190628, -0.02166801132261753, -0.022218309342861176, -0.055064260959625244, 0.06056724861264229, -0.004400239791721106, -0.019174469634890556, -0.009913974441587925, 0.011126351542770863, 0.009294888935983181, 0.05637122318148613, -0.03680122643709183, 0.01570930704474449, -0.07518456131219864, 0.004866703879088163, 0.0884605124592781, -0.028357580304145813, 0.04079088941216469, -0.04037816822528839, 0.010017155669629574, 0.03766106814146042, 0.02584684081375599, 0.004327153321355581, 0.05028354376554489, -0.039174389094114304, 0.04543403536081314, 0.03645728901028633, -0.03649168089032173, -0.02185717597603798, -0.02765250951051712, -0.011220933869481087, -0.01573510281741619, -0.03869287669658661, -0.00989677757024765, 0.04749765619635582, -0.01097157970070839, -0.024557078257203102, 0.04529646039009094, -0.026104794815182686, -0.05530501902103424, -0.04825431481003761, -0.016053244471549988, 0.00940666813403368, -0.04543403536081314, 0.015477150678634644, 0.019260454922914505, -0.019948327913880348, -0.03171096369624138, 0.009784998372197151, -0.05248473584651947, 0.023095348849892616, -0.017454786226153374, -0.07332730293273926, 0.03649168089032173, 0.018503792583942413, 0.025365330278873444, -0.04158194363117218, 0.00620375806465745, -0.013465121388435364, -0.05760939419269562, -0.013508113101124763, -0.017506377771496773, 0.02166801132261753, -0.03160778060555458, 0.019982721656560898, -0.04017180576920509, -0.07772968709468842, -0.008417850360274315, -0.06496963649988174, 0.06042967364192009, 0.0072312685661017895, 0.012020586989820004, -0.002502139424905181, 0.0246774572879076, 0.0049655856564641, 0.02584684081375599, -0.010576052591204643, 0.00892515666782856, 0.06541675329208374, -0.030438397079706192, 0.007003410719335079, 0.021117711439728737, 0.04268254339694977, -0.019226061180233955, 0.01786751113831997, 0.013465121388435364, -0.028013642877340317, 0.007343048229813576, -0.0596042275428772, 0.03656046837568283, -0.013723073527216911, -0.04082528501749039, 0.039036814123392105, -0.099122554063797, 0.03652607649564743, -0.04147876426577568, -0.011091957800090313, 0.028305988758802414, 0.06345631927251816, -0.012622476555407047, 0.05372291058301926, 0.04075649753212929, -0.03255360573530197, 0.09602712094783783, 0.02576085738837719, -0.011478886939585209, 0.02177119255065918, 0.03855530172586441, -0.0295785553753376, -0.012459106743335724, -0.020103098824620247, 0.056887127459049225, 0.0013596246717497706, -0.029217422008514404, 0.015047229826450348, -0.02364564687013626, -0.02775569073855877, -0.008813377469778061, 0.05368851497769356, -0.0005500299739651382, 0.030180443078279495, 0.010206321254372597, 0.005004278849810362, -0.011616460978984833, -0.02287178859114647, -0.02564048022031784, 0.012433310970664024, -0.040034230798482895, -0.005769537761807442, 0.0016229512402787805, -0.017480581998825073, -0.0198451466858387, -0.04467737674713135, 0.0029600050766021013, -0.00468183821067214, -0.0690280944108963, -0.036044564098119736, 0.08508993685245514, -0.022562246769666672, 0.030954301357269287, -0.011160745285451412, 0.09561439603567123, -0.041134826838970184, -0.016500363126397133, 0.027188194915652275, -0.028237201273441315, -0.0592602901160717, -0.01185721717774868, 0.004823712166398764, -0.04326723515987396, 0.014118600636720657, -0.005958702880889177, 0.0685809776186943, 0.011229532770812511, 0.037179555743932724, 0.01564052142202854, -0.017643950879573822, 0.005567475222051144, 0.013207168318331242, -0.06534796953201294, -0.013783262111246586, -0.0098451878875494, 0.06108315289020538, -0.012003390118479729, 0.0011564870364964008, 0.042992085218429565, 0.02264823019504547, -0.013241562061011791, 0.010300903581082821, 0.028220005333423615, 0.0007835307624191046, -0.024023978039622307, -0.014625906944274902, 0.034101322293281555, 0.008968149311840534, -0.024075567722320557, 0.002300076652318239, -0.018435006961226463, 0.01871015504002571, -0.0005701825139112771, -0.0685809776186943, -0.016594944521784782, -0.04564039781689644, 0.01779872365295887, 0.05513304844498634, -0.027893265709280968, -0.02283739484846592, -0.024539882317185402, -0.05840044841170311, -0.014402348548173904, 0.06586387753486633, -0.02269982174038887, -0.004875302314758301, -0.0034415163099765778, -0.0026526115834712982, -0.0497332438826561, -0.03186573460698128, 0.017317211255431175, -0.017540771514177322, 0.06424736976623535, -0.026930242776870728, 0.030988695099949837, -0.04478055611252785, -0.02680986374616623, -0.02679266780614853, 0.021066121757030487, 0.03539108484983444, 0.016405779868364334, 0.08715355396270752, -0.10208040475845337, 0.00398321682587266, 0.03687001392245293, -0.04636266455054283, 0.022992167621850967, 0.06631099432706833, 0.03783303499221802, -0.042957693338394165, -0.00035065418342128396, 0.005030074156820774, -0.08110027015209198, -0.039139993488788605, -0.040137410163879395, 0.03745470568537712, 0.017987888306379318, 0.037145160138607025, -0.042888905853033066, 0.02359405718743801, 0.007446228992193937, 0.03484078496694565, 0.05499547719955444, -0.06397221982479095, -0.012665468268096447, 0.015081623569130898, 0.004445381462574005, 0.06789310276508331, 0.001349951489828527, -0.023318907245993614, 0.043920714408159256, -0.05358533561229706, -0.08433327078819275, -0.02259664051234722, -0.03731713071465492, -0.027085013687610626, -0.055958498269319534, 0.036078959703445435, -0.0295097678899765, -0.004574357997626066, -0.007003410719335079, 0.03545987233519554, -0.01532237883657217, 0.010395485907793045, -0.02166801132261753, -0.006440214347094297, -0.019501209259033203, 0.03165937215089798, 0.0590883232653141, -0.014703293330967426, -0.039105601608753204, 0.027428951114416122, -0.006018891930580139, -0.003359831403940916, 0.028082430362701416, -0.03054157644510269, 0.07786726206541061, -0.005730845034122467, -0.04646584391593933, 0.0691656693816185, 0.04085967689752579, -0.06496963649988174, 0.0029299105517566204, -0.027962051331996918, 0.02287178859114647, 0.01673251949250698, -0.03580380976200104, 0.04388631880283356, 0.05375730246305466, 0.059844981878995895, 0.04443661868572235, 0.020447036251425743, 0.03845212236046791, -0.03590698912739754, -0.040103018283843994, 0.04178830608725548, 0.05850362777709961, -0.004346499685198069, -0.027239784598350525, 0.00847803894430399, 0.01534817460924387, 0.07140125334262848, -0.03160778060555458, -0.009036935865879059, -0.023955190554261208, 0.006895930506289005, 0.00794493779540062, 0.0023323206696659327, -0.06128951534628868, 0.0494924895465374, 0.017437590286135674, 0.011315517127513885, 0.04464298114180565, -0.02373163029551506, 0.024144355207681656, -0.013852049596607685, -0.0695783942937851, 0.061736635863780975, 0.002740745432674885, 0.006711064372211695, -0.027085013687610626, -0.010008557699620724, -0.02067059464752674, 0.006474608089774847, -0.016130629926919937, 0.07188276946544647, -0.02889068052172661, -0.06122072786092758, -0.0029557058587670326, 0.0002974514791276306, 0.018314627930521965, -0.005498687736690044, 0.051900044083595276, -0.02067059464752674, 0.016551952809095383, -0.019982721656560898, 0.009148715995252132, 0.036285318434238434, 0.006160765886306763, -0.01877894252538681, -0.010034352540969849, -0.04034377261996269, -0.0017390298889949918, -0.004264814779162407, 0.021427255123853683, -0.003407122800126672, 0.03205489739775658, -0.056955914944410324, 0.005386908072978258, -0.01891651749610901, -0.06538236141204834, -0.058813173323869705, -0.004535664804279804, 0.011797028593719006, 0.0055889710783958435, -0.053860485553741455, -0.10978458821773529, 0.056887127459049225, 0.023301709443330765, -0.033103905618190765, 0.01285463385283947, 0.0002794485480990261, 0.0199311301112175, -0.01596726104617119, 0.010120336897671223, -0.0027321469970047474, -0.010980178602039814, -0.028185611590743065, -0.031005891039967537, -0.01695607788860798, 0.023490875959396362, -0.019191667437553406, -0.07387760281562805, 0.049973998218774796, 0.02969893254339695, -0.04742886871099472, -0.0397934727370739, 0.0098451878875494, -0.0022054938599467278, -0.022923380136489868, -0.02667228877544403, 0.006216655485332012, -0.023232921957969666, 0.021358467638492584, -0.0023022261448204517, -0.008211487904191017, -0.04581236466765404, 0.05441078171133995, -0.010154730640351772, -0.0592602901160717, -0.024539882317185402, 0.0392775684595108, 0.039105601608753204, -0.02674107626080513, -0.03372299298644066, 0.007368843536823988, -0.007201174274086952, -0.056990306824445724, 0.058778777718544006, 0.01386064849793911, 0.006294041406363249, -0.03069634921848774, 0.015537339262664318, -0.05434199422597885, 0.01082540675997734, 0.048013560473918915, 0.05468593165278435, -0.04464298114180565, 0.009097125381231308, -0.01043847855180502, 0.028288792818784714, 0.04536524787545204, -0.08020603656768799, -0.022149521857500076, -0.03477199748158455, -0.031091876327991486, 0.1082024797797203, 0.04564039781689644, -0.030025672167539597, 0.04140997678041458, 0.03573502227663994, -0.027016226202249527, -0.00046297101653181016, -0.056818339973688126, -0.01865856535732746, -0.005103160627186298, 0.027325769886374474, 0.011599265038967133, 0.03275996819138527, -0.021186498925089836, -0.037282735109329224, -0.031057482585310936, -0.04326723515987396, -0.03157338872551918, -0.03351663053035736, -0.003450114745646715, 0.0028224303387105465, -0.0394495390355587, 0.02591562829911709, -0.008744589984416962, -0.006797048728913069, -0.014625906944274902, -0.048839010298252106, 0.04364556446671486, -0.014918253757059574, -0.049870818853378296, -0.007398937828838825, 0.01996552385389805, 0.0013187822187319398, -0.033017922192811966, -0.01876174658536911, -0.025176165625452995, 0.05265670642256737, -0.02479783445596695, 0.008830574341118336, -0.02178838849067688, -0.00717537896707654, -0.06366267800331116, -0.07091974467039108, -0.0073172529228031635, 0.012321531772613525, 0.00714098522439599, 0.057059094309806824, 0.0001902399817481637, 0.0199311301112175, 0.011100556701421738, -0.00016202642291318625, 0.0051504517905414104, 0.044127076864242554, -0.10517583787441254, 0.03263959288597107, -0.008207188919186592, 0.05169368162751198, 0.04567478969693184, 0.005520183593034744, -0.07257063686847687, -0.011435894295573235, 0.025898432359099388, -0.02464306354522705, 0.03762667253613472, -0.011977595277130604, 0.029286207631230354, 0.011195139028131962, 0.04567478969693184, -0.01772993616759777, 0.017385998740792274, -0.03666365146636963, 0.05351654812693596, -0.020309461280703545, -0.012020586989820004, 0.01580389030277729, -0.021066121757030487, -0.025176165625452995, -0.010576052591204643, 0.036113351583480835, -0.0029793514404445887, 0.024522684514522552, 0.055924102663993835, -0.027893265709280968, 0.007003410719335079, -0.007747173774987459, -0.0392775684595108, 0.028374776244163513, 0.011435894295573235, 0.06637977808713913, -0.019329242408275604, 0.0592602901160717, 0.030146049335598946, 0.012398917227983475, 0.020412642508745193, -0.018177052959799767, -0.003149170195683837, 0.08096269518136978, -0.03296633064746857, 0.012003390118479729, -0.04711932688951492, 0.011427296325564384, 0.020085902884602547, -0.049217339605093, 0.01279444433748722, -0.01582108810544014, -0.01538256835192442, -0.02679266780614853, 0.02263103425502777, 0.019552800804376602, 0.05826287344098091, -0.03532229736447334, 0.055717743933200836, -0.016285402700304985, -0.020601807162165642, -0.041994668543338776, 0.0295785553753376, 0.08433327078819275, 0.02856394089758396, 0.04567478969693184, 0.021255286410450935, 0.0008705897489562631, 0.012484901584684849, 0.034066926687955856, 0.052863068878650665, -0.030885513871908188, 0.016182221472263336, 0.029183028265833855, 0.010980178602039814, 0.006165064871311188, -0.05272549390792847, -0.031263843178749084, 0.003998263739049435, 0.04158194363117218, 0.052828673273324966, -0.024986999109387398, 0.004694735631346703, -0.005374010652303696, 0.031263843178749084, 0.09561439603567123, 0.012983609922230244, -0.0049440898001194, 0.004901097621768713, -0.03140141814947128, 0.03855530172586441, -0.03766106814146042, -0.060979973524808884, 0.016276802867650986, -0.07091974467039108, -0.02675827406346798, 0.03580380976200104, -0.007046402897685766, -0.002435501664876938, -0.06149587780237198, -0.002502139424905181, -0.004858105443418026, 0.04612191021442413, -0.008048118092119694, -0.011848618276417255, -0.016672329977154732, -0.01587267778813839, 0.06834021955728531, 0.022545048967003822, 0.005765238776803017, 0.01779872365295887, 0.05609607324004173, 0.005180546082556248, -0.03828015178442001, 0.04367996007204056, 0.04037816822528839, -0.031057482585310936, 0.05736863985657692, 0.0197591632604599, 0.05616486072540283, 0.016964677721261978, -0.044023893773555756, -0.02472904697060585, -0.034135714173316956, 0.020051509141921997, 0.023387694731354713, -0.04581236466765404, 0.02557169273495674, 0.008637109771370888, 0.015159009024500847, -0.09781559556722641, 0.0295097678899765, 0.008813377469778061, 0.015270788222551346, 0.024264732375741005, 0.008942353539168835, 0.05062748119235039, -0.03848651424050331, 0.024127157405018806, 0.006349931005388498, 0.004097145516425371, -0.08385176211595535, -0.028495153412222862, -0.0012263492681086063, 0.008288874290883541, 0.03047279082238674, -0.050111573189496994, 0.03439366817474365, 0.026328353211283684, -0.05220958963036537, -0.06297480314970016, -0.02268262393772602, -0.03353382647037506, -0.01586407981812954, -0.011668051593005657, -0.07415274530649185, 0.05451396480202675, -0.01791910082101822, 0.002185072749853134, -0.018177052959799767, 0.014978442341089249, -0.0049956804141402245, 0.042923297733068466, 0.06490085273981094, -0.03556305170059204, 0.02089415304362774, -0.024006780236959457, 0.010326698422431946, -0.04653463140130043, -0.07642272859811783, 0.055786531418561935, -0.03652607649564743, 0.05516744405031204, 0.04364556446671486, 0.001019987277686596, 0.025434117764234543, -0.02177119255065918, -0.04488373547792435, -0.041134826838970184, 0.040103018283843994, -0.007351646665483713, -0.02170240506529808, -0.043920714408159256, 0.017489179968833923, -0.0030094459652900696, 0.012355925515294075, 0.024350717663764954, -0.03793621435761452, -0.016190819442272186, 0.028220005333423615, -0.04367996007204056, -0.07573485374450684, 0.022132325917482376, 0.047944772988557816, -0.019535603001713753, 0.025950022041797638, -0.003682272043079138, -0.046018727123737335, -0.05248473584651947, -0.008830574341118336, 0.023284513503313065, 0.0198451466858387, -0.002656910801306367, 0.010283706709742546, 0.0695096030831337, -0.045984335243701935, 0.05461714416742325, -0.031195057556033134, -0.0061349705792963505, 0.027325769886374474, 0.05733424425125122, 0.02782447822391987, 0.05423881486058235, 0.009380873292684555, 0.041994668543338776, 0.021306877955794334, -0.03446245566010475, 0.010644840076565742, 0.011504681780934334, 0.05076505243778229, -0.0007147433934733272, 0.017420392483472824, -0.017626754939556122, 0.004819412715733051, 0.0068787336349487305, 0.014445340260863304, -0.004733428359031677, 0.002274281345307827, -0.018022282049059868, 0.06637977808713913, 0.02870151586830616, 0.0395183265209198, 0.027514934539794922, 0.07607879489660263, -0.031005891039967537, -0.022132325917482376, -0.03074793890118599, 0.012502098456025124, 0.007803063374012709, 0.04478055611252785, -0.025554494932293892, 0.0024140055757015944, 0.02276860922574997, 0.012949216179549694, 0.021083317697048187, 0.005051570013165474, 0.040962859988212585, 0.04048134759068489, 0.03865848481655121, 0.02870151586830616, -0.006005994509905577, 0.02662069909274578, -0.02486662194132805, -0.00466894032433629, -0.006470308639109135, 0.041891489177942276, -0.011564871296286583, 0.031074678525328636, 0.041134826838970184, 0.0034243196714669466, -0.05162489414215088, 0.03437647223472595, 0.020189084112644196, -0.05310382321476936, 0.042166635394096375, 0.0017809470882639289, 0.06393782794475555, -0.024935409426689148, 0.0008238358423113823, -0.04233860597014427, 0.012811641208827496, 0.06239011511206627, -0.028477957472205162, 0.07043823599815369, -0.04484934359788895, -0.01382625475525856 ]
18,555
traceback2
StackSummary
A stack of frames.
class StackSummary(list): """A stack of frames.""" @classmethod def extract(klass, frame_gen, limit=None, lookup_lines=True, capture_locals=False): """Create a StackSummary from a traceback or stack object. :param frame_gen: A generator that yields (frame, lineno) tuples to include in the stack. :param limit: None to include all frames or the number of frames to include. :param lookup_lines: If True, lookup lines for each frame immediately, otherwise lookup is deferred until the frame is rendered. :param capture_locals: If True, the local variables from each frame will be captured as object representations into the FrameSummary. """ if limit is None: limit = getattr(sys, 'tracebacklimit', None) result = klass() fnames = set() for pos, (f, lineno) in enumerate(frame_gen): if limit is not None and pos >= limit: break co = f.f_code filename = co.co_filename name = co.co_name fnames.add(filename) linecache.lazycache(filename, f.f_globals) # Must defer line lookups until we have called checkcache. if capture_locals: f_locals = f.f_locals else: f_locals = None result.append(FrameSummary( filename, lineno, name, lookup_line=False, locals=f_locals)) for filename in fnames: linecache.checkcache(filename) # If immediate lookup was desired, trigger lookups now. if lookup_lines: for f in result: f.line return result @classmethod def from_list(klass, a_list): """Create a StackSummary from a simple list of tuples. This method supports the older Python API. Each tuple should be a 4-tuple with (filename, lineno, name, line) elements. """ if isinstance(a_list, StackSummary): return StackSummary(a_list) result = StackSummary() for filename, lineno, name, line in a_list: result.append(FrameSummary(filename, lineno, name, line=line)) return result def format(self): """Format the stack ready for printing. Returns a list of strings ready for printing. Each string in the resulting list corresponds to a single frame from the stack. Each string ends in a newline; the strings may contain internal newlines as well, for those items with source text lines. """ result = [] for frame in self: row = [] row.append(u(' File "{0}", line {1}, in {2}\n').format( _some_fs_str(frame.filename), frame.lineno, frame.name)) if frame.line: row.append(u(' {0}\n').format(frame.line.strip())) if frame.locals: for name, value in sorted(frame.locals.items()): row.append(u(' {name} = {value}\n').format(name=name, value=value)) result.append(u('').join(row)) return result
(iterable=(), /)
[ 0.0014372880104929209, -0.028944339603185654, -0.039406150579452515, 0.027297573164105415, 0.01274790894240141, -0.0016043863724917173, 0.024546505883336067, 0.007526691071689129, 0.005405268166214228, -0.03956114128232002, -0.02811126969754696, 0.010132456198334694, -0.01717480458319187, -0.0012423399602994323, -0.013677847571671009, 0.04215721786022186, 0.03987111896276474, -0.02646450325846672, -0.005405268166214228, -0.006088192109018564, -0.0010631330078467727, 0.031152945011854172, 0.015314927324652672, 0.006984226871281862, 0.010103396140038967, 0.008878007531166077, 0.03035862185060978, -0.059167347848415375, 0.020032428205013275, 0.0017291046679019928, -0.04638069123029709, -0.030629854649305344, -0.09617115557193756, -0.03990986570715904, -0.04320339858531952, -0.02514709159731865, -0.04700065031647682, -0.03247035667300224, -0.049286749213933945, -0.030300501734018326, 0.0176978949457407, -0.006829237099736929, -0.010771789588034153, -0.020962366834282875, 0.013193504884839058, 0.010568365454673767, 0.03555078059434891, -0.025050222873687744, 0.025282707065343857, -0.0800522193312645, 0.036771323531866074, 0.02065238729119301, 0.0026227175258100033, -0.020245539024472237, 0.03192789480090141, 0.016535472124814987, 0.013387241400778294, 0.02813064306974411, 0.018492218106985092, -0.004724766593426466, 0.027626927942037582, 0.0558350645005703, 0.02904120832681656, 0.011149576865136623, -0.026793858036398888, -0.028944339603185654, -0.024372141808271408, -0.023074103519320488, -0.049286749213933945, -0.0502554327249527, -0.015576472505927086, 0.009875754825770855, 0.00038505272823385894, 0.03262534737586975, 0.006335206795483828, -0.026677614077925682, -0.06025227531790733, -0.004276749212294817, 0.03983237221837044, -0.043125905096530914, 0.007638089824467897, 0.009662644006311893, -0.003521173959597945, -0.023325961083173752, 0.026406383141875267, -0.03824372589588165, 0.049286749213933945, 0.04138226807117462, 0.018908752128481865, 0.04529576003551483, -0.04568323493003845, 0.04738812521100044, -0.008693957701325417, 0.008718174882233143, -0.018918439745903015, -0.045373257249593735, 0.015150250867009163, -0.02832438051700592, -0.03295470029115677, -0.004027312621474266, 0.0503329299390316, -0.005444015841931105, -0.06308083981275558, -0.0029641794972121716, -0.06563816964626312, 0.07292269170284271, -0.008228988386690617, 0.03448522463440895, 0.01921873167157173, 0.009531871415674686, -0.010490870103240013, -0.0950862243771553, -0.007972286082804203, -0.01845346949994564, 0.05478888377547264, -0.02162107266485691, -0.05428516864776611, 0.020942993462085724, 0.00967717356979847, -0.026232019066810608, 0.029467429965734482, -0.023325961083173752, -0.04878303036093712, 0.010384314693510532, -0.022880366072058678, -0.019121862947940826, 0.019974306225776672, -0.040181100368499756, 0.060988474637269974, -0.07036535441875458, 0.027820663526654243, -0.02255101129412651, -0.0317147821187973, 0.06060100346803665, 0.032877206802368164, -0.024120284244418144, -0.029525551944971085, 0.015343987382948399, -0.06552192568778992, -0.004710236098617315, 0.025476444512605667, -0.010452122427523136, 0.001002590055577457, 0.03217975050210953, -0.031249813735485077, -0.03154041990637779, 0.049093011766672134, 0.05196032300591469, -0.00846147257834673, -0.002898793201893568, -0.0008911911863833666, -0.04901551455259323, -0.04157600551843643, 0.03878619149327278, 0.025050222873687744, -0.001276243943721056, -0.018521277233958244, -0.0008597088744863868, 0.013270999304950237, -0.001684302929788828, -0.043668366968631744, -0.030997954308986664, -0.023035354912281036, -0.050604160875082016, -0.024856485426425934, 0.02497272752225399, -0.004601258784532547, -0.03262534737586975, -0.07331016659736633, 0.024817736819386482, -0.046845659613609314, -0.025457071140408516, 0.024275273084640503, 0.061220962554216385, 0.011401435360312462, 0.03198601305484772, -0.04603196308016777, 0.04080105945467949, -0.026890724897384644, 0.002102048834785819, -0.008170867338776588, -0.06381703913211823, -0.05568007752299309, -0.0410335436463356, -0.03378777205944061, 0.01605112850666046, 0.03002926893532276, -0.02105923555791378, 0.06319708377122879, 0.06831174343824387, -0.016884198412299156, -0.007671993691474199, 0.04700065031647682, -0.020768629387021065, 0.008945816196501255, -0.03388464078307152, -0.07230272889137268, 0.019092801958322525, 0.07342640310525894, -0.032722216099500656, -0.048899274319410324, 0.040529824793338776, 0.047426871955394745, -0.03516330569982529, -0.004780465736985207, 0.08508938550949097, -0.028227511793375015, 0.028963714838027954, -0.12205445021390915, 0.09206392616033554, -0.014007200486958027, -0.05118537321686745, 0.028033776208758354, -0.008446943014860153, 0.021369215101003647, -0.01462715957313776, -0.024914605543017387, 0.02592203952372074, 0.01711668260395527, -0.0010334670078009367, 0.08462441712617874, -0.06424326449632645, -0.11949711292982101, 0.014966200105845928, -0.02084612473845482, -0.008844103664159775, 0.025980161502957344, 0.013774716295301914, 0.051301613450050354, -0.05819866061210632, 0.0167970173060894, -0.04897676780819893, -0.008538967929780483, 0.0023405877873301506, 0.04917050525546074, -0.012651040218770504, 0.05738496407866478, 0.01042306236922741, -0.01842440851032734, -0.0447145514190197, -0.06021352857351303, 0.040723562240600586, 0.03465958684682846, 0.005855707451701164, 0.049286749213933945, -0.04541200399398804, 0.011478929780423641, 0.007991660386323929, -0.04804683104157448, 0.007638089824467897, 0.005037167575210333, 0.08237706124782562, -0.027278199791908264, -0.04083980619907379, -0.015343987382948399, -0.05936108157038689, 0.00638364115729928, -0.020749256014823914, 0.039038050919771194, 0.0013452627463266253, 0.029196199029684067, -0.0744725838303566, 0.047039397060871124, -0.011895464733242989, -0.011953586712479591, 0.0353957898914814, -0.022376649081707, -0.03589950501918793, -0.038088735193014145, 0.03950301930308342, 0.05420767515897751, -0.0034630526788532734, 0.03037799522280693, 0.04773684963583946, -0.07021036744117737, -0.04304840788245201, -0.02010992355644703, -0.003610777435824275, -0.022841617465019226, -0.030261753126978874, 0.04393960162997246, -0.028227511793375015, -0.034368980675935745, -0.010965526103973389, 0.03398150950670242, -0.0053858947940170765, -0.027646301314234734, -0.023907173424959183, 0.015508663840591908, -0.003167603397741914, 0.062499627470970154, 0.004695705603808165, 0.04343588277697563, -0.07741738855838776, 0.036984436213970184, 0.011914839036762714, -0.03037799522280693, 0.037740010768175125, -0.009018467739224434, 0.043900854885578156, -0.011943899095058441, -0.02105923555791378, 0.06218964606523514, 0.0354345366358757, 0.02328721433877945, -0.012544484809041023, -0.005565101746469736, -0.026154523715376854, -0.031579166650772095, -0.04680691286921501, 0.04824056848883629, 0.07470507174730301, 0.06544443219900131, -0.03340029716491699, 0.012873837724328041, 0.015702402219176292, -0.04452081397175789, 0.025379575788974762, 0.0025306923780590296, 0.05242529138922691, 0.000016242520359810442, -0.03857307881116867, 0.041653502732515335, 0.01389095839112997, 0.09144396334886551, -0.006514413747936487, 0.011876091361045837, -0.025592686608433723, 0.00498873321339488, -0.013493796810507774, -0.012592919170856476, -0.0483955554664135, 0.014917765744030476, 0.051495350897312164, 0.016525784507393837, 0.07001662999391556, -0.06257712095975876, 0.033070944249629974, 0.010025900788605213, -0.10903530567884445, 0.022822244092822075, -0.010074335150420666, -0.03834059461951256, -0.005526354070752859, 0.05347147211432457, -0.04250594601035118, 0.0728064477443695, 0.02754943259060383, 0.061027225106954575, 0.047426871955394745, -0.00967717356979847, -0.036422595381736755, 0.0004916081670671701, 0.025631433352828026, 0.0015971212415024638, 0.035124558955430984, -0.0012641353532671928, -0.021369215101003647, 0.01902499422430992, 0.028634360060095787, 0.05478888377547264, 0.02220228500664234, -0.016826076433062553, -0.03570576757192612, -0.012864151038229465, -0.022454142570495605, -0.001857455587014556, 0.05165034160017967, 0.004887021146714687, -0.014326867647469044, -0.01582833006978035, -0.002889106282964349, 0.011052708141505718, -0.027103837579488754, -0.05126286670565605, -0.05664876103401184, 0.04417208582162857, 0.01713605597615242, -0.06583190709352493, -0.007192494347691536, 0.05126286670565605, 0.02607703022658825, -0.028440622612833977, -0.013309746980667114, 0.010965526103973389, 0.011449869722127914, -0.001333154272288084, -0.0023163706064224243, -0.0214467104524374, 0.020439276471734047, -0.019635267555713654, -0.052851513028144836, -0.04130477458238602, -0.010277759283781052, 0.0005548754706978798, -0.06602564454078674, 0.021466083824634552, 0.0540914312005043, -0.043319642543792725, -0.010839597322046757, 0.022957859560847282, 0.010568365454673767, -0.0016903572250157595, -0.015343987382948399, -0.006030071061104536, -0.00959967914968729, 0.02311285026371479, -0.02071050927042961, -0.026871351525187492, 0.012370121665298939, 0.055215105414390564, -0.03301282227039337, -0.03748815134167671, -0.04645818471908569, 0.01184703130275011, 0.033051569014787674, -0.01582833006978035, 0.002188019687309861, 0.02177606336772442, 0.0005990717909298837, 0.015760522335767746, 0.0027074776589870453, -0.018337227404117584, 0.0317341573536396, -0.04754311218857765, -0.024449637159705162, -0.10926779359579086, -0.01713605597615242, 0.007531534414738417, 0.029215572401881218, -0.01581864431500435, -0.03756564483046532, -0.0075751254335045815, 0.016855137422680855, -0.00396676966920495, -0.0802072063088417, -0.01675826869904995, -0.01606081612408161, 0.011420808732509613, 0.047426871955394745, 0.008422725833952427, 0.044985782355070114, 0.05905110388994217, 0.04207972437143326, -0.013668160885572433, 0.03132730722427368, -0.05936108157038689, 0.01498557347804308, -0.050952889025211334, 0.008069154806435108, -0.03202476352453232, 0.003232989925891161, -0.016651714220643044, 0.0050516980700194836, -0.03002926893532276, -0.03384589031338692, -0.021466083824634552, 0.042234715074300766, -0.035880133509635925, 0.06416576355695724, 0.02406216226518154, 0.02460462599992752, 0.04060732200741768, -0.014423735439777374, -0.018201611936092377, -0.01878282241523266, 0.04820181801915169, -0.0019942824728786945, -0.057656195014715195, -0.04382335767149925, 0.028614986687898636, 0.002046349458396435, -0.07303892821073532, -0.03710067644715309, 0.01804662123322487, 0.057113733142614365, 0.022434769198298454, -0.027685048058629036, -0.019228419288992882, -0.02607703022658825, -0.01014214288443327, -0.04235095530748367, 0.0484343059360981, -0.02103986218571663, -0.011207697913050652, 0.02270600199699402, 0.05490512773394585, -0.028440622612833977, 0.015498977154493332, 0.02999052032828331, -0.05327773466706276, -0.017242612317204475, -0.032722216099500656, -0.003015035530552268, -0.0428546741604805, 0.04080105945467949, 0.002697790740057826, 0.02964179404079914, -0.009560931473970413, -0.06191841512918472, 0.02441088855266571, -0.046845659613609314, 0.043900854885578156, 0.004066059831529856, 0.0317341573536396, 0.044637054204940796, 0.08144712448120117, 0.032160378992557526, 0.020729882642626762, -0.027278199791908264, 0.05680375173687935, 0.03562827408313751, -0.019073428586125374, 0.0023442204110324383, -0.015159937553107738, -0.01274790894240141, -0.0316954106092453, 0.011604859493672848, 0.03706192970275879, 0.022860990837216377, 0.029913026839494705, 0.01231200061738491, 0.06470823287963867, -0.0031724469736218452, -0.0042864358983933926, 0.0008330700220540166, 0.06548318266868591, 0.060639750212430954, 0.011517677456140518, 0.055253855884075165, 0.03863120079040527, 0.058818619698286057, 0.0007749488577246666, -0.03574451804161072, 0.0763712078332901, 0.055408842861652374, 0.012951333075761795, -0.07424010336399078, 0.007948068901896477, -0.013987827114760876, 0.025205211713910103, 0.010200264863669872, -0.013212878257036209, 0.017087623476982117, -0.017581652849912643, -0.04207972437143326, -0.008664896711707115, -0.018685953691601753, -0.01675826869904995, -0.050565414130687714, 0.022802870720624924, -0.014830583706498146, 0.0335746593773365, -0.011207697913050652, 0.029854904860258102, 0.016874510794878006, 0.03564764931797981, 0.03990986570715904, 0.03558952733874321, -0.004247688688337803, 0.019703075289726257, 0.06381703913211823, -0.0005912012420594692, -0.07098531723022461, -0.013251625932753086, -0.0011793753365054727, -0.0035623430740088224, 0.05382020026445389, -0.04118853062391281, -0.04114978387951851, -0.019683701917529106, 0.048899274319410324, 0.017048874869942665, 0.018676267936825752, 0.009217048063874245, 0.0056474399752914906, -0.006620969623327255, 0.04645818471908569, 0.07885104417800903, -0.012670413590967655, 0.04990670830011368, -0.04188598692417145, 0.05509886518120766, -0.048744283616542816, -0.03706192970275879, 0.038844313472509384, -0.053587716072797775, -0.014414048753678799, -0.012002021074295044, 0.03775938227772713, 0.010955839417874813, -0.022492891177535057, 0.013551918789744377, 0.0012072250247001648, 0.0725739598274231, 0.005012950394302607, -0.022667255252599716, 0.012224818579852581, -0.05517635866999626, 0.03452397137880325, -0.02477899007499218, 0.009323603473603725, -0.013474423438310623, 0.014346241019666195, 0.017048874869942665, -0.04738812521100044, 0.03814685717225075, 0.009468906559050083, 0.016690460965037346, 0.060988474637269974, -0.02164044789969921, 0.05537009611725807, 0.03619011119008064, -0.0502554327249527, -0.05738496407866478, -0.03134668245911598, 0.01917029730975628, 0.038088735193014145, 0.008393664844334126, 0.00995809305459261, 0.005293869413435459, 0.02196980081498623, -0.05788867920637131, 0.030823592096567154, 0.042738430202007294, 0.06575441360473633, -0.013949079439043999, -0.021872932091355324, 0.005192157346755266, -0.014694968238472939, 0.006189904175698757, 0.020788002759218216, 0.014995260164141655, -0.039231788367033005, -0.011595172807574272, -0.00456008967012167, 0.00316518172621727, 0.006683934014290571, -0.054866380989551544, 0.0353957898914814, -0.00939141120761633, -0.08028469979763031, -0.06404952704906464, 0.003930443897843361, -0.060833487659692764, -0.024159030988812447, -0.0020511928014457226, -0.08446943014860153, 0.10702043771743774, 0.0015426325844600797, 0.010984900407493114, 0.02830500714480877, -0.00012017761764582247, 0.026774482801556587, 0.004591572098433971, 0.07102406024932861, -0.03801124170422554, -0.0013815885176882148, -0.004061216488480568, -0.00304893939755857, 0.014414048753678799, -0.05947732552886009, 0.032160378992557526, 0.011759849265217781, 0.001610440667718649, 0.01995493285357952, 0.006417545489966869, 0.040684815496206284, 0.05575757101178169, 0.01369722094386816, -0.009449533186852932, -0.005589318927377462, 0.01878282241523266, -0.028091896325349808, -0.024933980777859688, 0.006015540566295385, -0.028750602155923843, 0.03601574897766113, -0.023442203179001808, -0.051340363919734955, 0.048705536872148514, 0.027316948398947716, -0.024469010531902313, -0.03930928185582161, -0.013493796810507774, 0.0726514533162117, -0.01899593509733677, 0.012350747361779213, 0.011740474961698055, -0.018511591479182243, -0.011808283627033234, -0.0062431818805634975, 0.04328089579939842, 0.033245306462049484, -0.09531871229410172, 0.04246719926595688, 0.007066565100103617, -0.05478888377547264, 0.05126286670565605, -0.07323266565799713, -0.021466083824634552, 0.05664876103401184, 0.02720070444047451, 0.0024289803113788366, -0.023887798190116882, 0.0038529490120708942, -0.04568323493003845, 0.02778191678225994, -0.040723562240600586, 0.02754943259060383, -0.007977129891514778, 0.0035357042215764523, 0.02925431914627552, 0.007875418290495872, -0.005913828499615192, -0.043900854885578156, 0.02832438051700592, 0.02272537536919117, -0.012331373989582062, 0.02220228500664234, 0.027297573164105415, 0.08997156471014023, 0.006301302928477526, 0.0317147821187973, -0.02834375575184822, 0.053161490708589554, 0.011643607169389725, -0.008534124121069908, -0.0372169204056263, 0.004221049603074789, 0.003753658616915345, 0.05203781649470329, -0.010839597322046757, 0.03390401229262352, 0.0058508641086518764, -0.04603196308016777, -0.04940298944711685, 0.013300060294568539, 0.012864151038229465, -0.0032087727449834347, 0.030513612553477287, -0.029661167412996292, -0.023616567254066467, 0.0484730526804924, -0.007517003919929266, -0.009996840730309486, 0.02216353826224804, 0.008844103664159775, -0.02107860893011093, 0.004196832422167063, 0.043125905096530914, -0.011856717988848686, -0.0576949417591095, -0.01624486595392227, 0.01228293962776661, -0.04707814380526543, -0.007909322157502174, -0.04746561869978905, 0.00656284810975194, -0.014229998923838139, -0.025612059980630875, -0.06071724370121956, 0.005894454661756754, 0.051340363919734955, 0.029157450422644615, 0.042195964604616165, -0.03942552208900452, 0.03002926893532276 ]
18,556
traceback2
format
Format the stack ready for printing. Returns a list of strings ready for printing. Each string in the resulting list corresponds to a single frame from the stack. Each string ends in a newline; the strings may contain internal newlines as well, for those items with source text lines.
def format(self): """Format the stack ready for printing. Returns a list of strings ready for printing. Each string in the resulting list corresponds to a single frame from the stack. Each string ends in a newline; the strings may contain internal newlines as well, for those items with source text lines. """ result = [] for frame in self: row = [] row.append(u(' File "{0}", line {1}, in {2}\n').format( _some_fs_str(frame.filename), frame.lineno, frame.name)) if frame.line: row.append(u(' {0}\n').format(frame.line.strip())) if frame.locals: for name, value in sorted(frame.locals.items()): row.append(u(' {name} = {value}\n').format(name=name, value=value)) result.append(u('').join(row)) return result
(self)
[ -0.008819918148219585, -0.0033820068929344416, -0.0020214165560901165, -0.005388961173593998, 0.005660411436110735, -0.03042026236653328, -0.00463690934702754, -0.03179086372256279, 0.024421650916337967, -0.03129246458411217, -0.019562240689992905, -0.03317926824092865, -0.0017744411015883088, 0.014248928986489773, -0.042684487998485565, 0.04460689052939415, 0.01833403669297695, -0.0571737177670002, 0.03962288051843643, 0.02586345374584198, -0.0012749276356771588, 0.05304411053657532, 0.03157726302742958, -0.04044168442487717, 0.022499246522784233, 0.020683642476797104, -0.017034634947776794, -0.060769323259592056, 0.010386321693658829, -0.004412184003740549, -0.03479907289147377, -0.029174258932471275, -0.03608067333698273, -0.03586707264184952, -0.02993966080248356, 0.013910728506743908, -0.02678905427455902, -0.05446811020374298, -0.04261328652501106, -0.061659324914216995, -0.017435135319828987, -0.01804923638701439, -0.008223616518080235, -0.022534845396876335, -0.010235020890831947, -0.01004812028259039, 0.08066976815462112, 0.0024052299559116364, 0.014444729313254356, -0.04756169766187668, 0.06521933525800705, 0.021805044263601303, -0.01729273609817028, -0.03380227088928223, -0.020274242386221886, 0.013056326657533646, 0.008673068135976791, -0.007796416059136391, 0.058028120547533035, -0.013501327484846115, 0.025792252272367477, 0.06383093446493149, 0.05749411880970001, -0.0036423325072973967, -0.01918843947350979, -0.0013561402447521687, 0.02219664491713047, -0.02833765745162964, -0.027607856318354607, -0.027963858097791672, -0.030295662581920624, 0.0012115149293094873, -0.02312224730849266, 0.05614131689071655, -0.021858444437384605, -0.0003827007894869894, -0.07718095928430557, 0.007983316667377949, -0.008112366311252117, -0.0457816943526268, 0.008957868441939354, 0.0035555572248995304, -0.030954264104366302, -0.000171047227922827, 0.05051650479435921, -0.037415675818920135, 0.014676130376756191, 0.058206118643283844, 0.013145326636731625, 0.021805044263601303, -0.02791045792400837, 0.025525251403450966, 0.010421921499073505, 0.031221263110637665, -0.04852290078997612, -0.024190248921513557, 0.020078441128134727, -0.04628009349107742, -0.05340011045336723, -0.00034098196192644536, 0.010128220543265343, -0.006323462817817926, -0.0572805181145668, -0.021822845563292503, -0.04944850131869316, 0.036045074462890625, -0.005166460759937763, 0.015993332490324974, 0.006225562654435635, -0.003811432747170329, 0.015281331725418568, -0.10822422057390213, 0.04984010383486748, -0.04891449958086014, 0.09170578420162201, -0.008944517932832241, -0.04307608678936958, 0.018725639209151268, 0.02285524643957615, -0.020292041823267937, 0.03677487373352051, -0.02082604356110096, 0.004320958629250526, -0.019544439390301704, -0.028284257277846336, -0.010270620696246624, -0.017221534624695778, -0.03113226406276226, 0.03691727668046951, -0.06589573621749878, 0.012041724286973476, 0.011053822934627533, -0.05126410350203514, 0.03298346698284149, 0.057316116988658905, -0.017328334972262383, -0.036062873899936676, -0.019063839688897133, 0.01084912195801735, 0.031256865710020065, 0.004832709673792124, -0.03163066506385803, -0.026842454448342323, 0.017764436081051826, -0.03816327825188637, -0.008032266050577164, 0.0756145566701889, 0.04442889243364334, -0.011988324113190174, 0.009701020084321499, 0.030811863020062447, -0.005371160805225372, -0.013065226376056671, -0.005446811206638813, 0.028302058577537537, 0.016046732664108276, -0.017782235518097878, -0.011837024241685867, 0.03816327825188637, 0.0166163332760334, -0.03357086703181267, -0.0017978036776185036, -0.042898088693618774, -0.004984010010957718, 0.011507723480463028, 0.030028661713004112, 0.003835907904431224, -0.005687111523002386, -0.011934924870729446, 0.021858444437384605, -0.01590433344244957, -0.053649310022592545, -0.05973692238330841, 0.06788934022188187, 0.0039249081164598465, 0.008103466592729092, -0.0457816943526268, 0.0665009394288063, -0.04005008190870285, -0.023674048483371735, 0.0015786407748237252, -0.055714115500450134, -0.019775841385126114, -0.010920322500169277, -0.0021215418819338083, -0.02447504922747612, 0.008592967875301838, -0.009167018346488476, 0.04264888912439346, 0.023407047614455223, -0.006554863415658474, 0.00120150251314044, 0.018173838034272194, -0.026967056095600128, -0.003419832093641162, -0.043111689388751984, -0.037914078682661057, -0.02173384465277195, 0.046814095228910446, -0.07725215703248978, -0.005144210532307625, 0.035404272377491, 0.008997918106615543, -0.04435769096016884, 0.016865534707903862, 0.058918122202157974, -0.020683642476797104, 0.002776805777102709, -0.11114342510700226, 0.026397453621029854, -0.012531225569546223, -0.04001448303461075, 0.029209859669208527, -0.02424364909529686, -0.004890560172498226, -0.006083162501454353, 0.004877210129052401, 0.03293006867170334, -0.023478247225284576, 0.013625928200781345, 0.04720569774508476, -0.0548953115940094, -0.09540819376707077, -0.02447504922747612, -0.04510529339313507, -0.0039093331433832645, 0.004846059717237949, 0.020042840391397476, 0.03997888043522835, -0.05585651472210884, 0.024599650874733925, -0.05564291402697563, -0.0503385029733181, 0.001726603484712541, 0.016295934095978737, 0.014578229747712612, 0.03362426906824112, -0.02675345540046692, 0.003270756686106324, -0.044535692781209946, -0.03389126807451248, 0.03677487373352051, 0.03709527477622032, -0.0053088609129190445, 0.07219694554805756, -0.06689253449440002, 0.005994162056595087, -0.0014540405245497823, -0.0004864416259806603, 0.01990044116973877, -0.0251336507499218, 0.0458172932267189, -0.03590267524123192, -0.029583660885691643, -0.0434320904314518, -0.06322573125362396, 0.013563627377152443, 0.013910728506743908, 0.030811863020062447, 0.04168768599629402, 0.012095124460756779, -0.0526169091463089, 0.02009624056518078, -0.011427623219788074, 0.017844537273049355, 0.024119049310684204, -0.03844808042049408, -0.02335364744067192, -0.012015024200081825, 0.01901043951511383, 0.060982923954725266, -0.006950914394110441, 0.0006235575419850647, 0.05852651968598366, -0.04706329479813576, -0.041509684175252914, -0.020754842087626457, 0.03344626724720001, -0.02312224730849266, -0.04485609009861946, 0.058241717517375946, -0.025988053530454636, -0.02541845291852951, 0.0228908471763134, 0.04948410019278526, -0.022801846265792847, -0.02767905592918396, -0.03919567912817001, -0.006617163773626089, 0.007996666245162487, 0.04414409026503563, 0.032823268324136734, 0.007164514623582363, -0.03426507115364075, 0.04731249809265137, 0.0005100822891108692, 0.01922404021024704, 0.031701866537332535, 0.01004812028259039, 0.0018411913188174367, -0.01405312865972519, 0.00909136887639761, 0.05874012038111687, 0.030544862151145935, 0.0011063835117965937, 0.0013127527199685574, -0.02399444952607155, -0.04019248113036156, -0.04325408861041069, -0.04389489069581032, -0.012157425284385681, 0.04094008356332779, 0.10502021759748459, -0.012664726004004478, 0.012255324982106686, 0.026415254920721054, -0.03403367102146149, 0.03042026236653328, 0.003537757322192192, 0.01247782539576292, -0.01692783460021019, 0.0019713540095835924, 0.03773607686161995, 0.002827980788424611, 0.10445061326026917, 0.02194744534790516, -0.04047728329896927, -0.023246847093105316, 0.003742457600310445, 0.004828259814530611, 0.009309419430792332, -0.014115428552031517, 0.020754842087626457, 0.03912448137998581, -0.001317202695645392, 0.06012852489948273, -0.05304411053657532, 0.03065166249871254, -0.021573644131422043, -0.09989380836486816, 0.04439328983426094, 0.005108610261231661, -0.02470645122230053, -0.018173838034272194, 0.016785433515906334, -0.004269783850759268, 0.026005852967500687, 0.035101670771837234, 0.024813251569867134, 0.02353164739906788, -0.019580040127038956, 0.006697263568639755, 0.01336782705038786, 0.03755807876586914, -0.03392687067389488, 0.004525659140199423, -0.014044228941202164, -0.002643305342644453, -0.00961202010512352, 0.07675375789403915, 0.07002534717321396, 0.04236408695578575, -0.00833931751549244, -0.004561259411275387, -0.000876095553394407, -0.010804622434079647, 0.03385566920042038, 0.03759367763996124, -0.009442918933928013, 0.00971881952136755, -0.010510921478271484, -0.00010554865730227903, 0.020772643387317657, -0.033019065856933594, -0.10103300958871841, 0.017248235642910004, 0.03766487538814545, -0.00022458640160039067, -0.06753333657979965, -0.09483859688043594, 0.04261328652501106, 0.03844808042049408, -0.02449285052716732, -0.011952724307775497, 0.008045616559684277, -0.0171948354691267, -0.011863724328577518, 0.003477682126685977, -0.017826735973358154, 0.018458638340234756, -0.05660411715507507, -0.05646171420812607, -0.03709527477622032, 0.02951246127486229, -0.027305256575345993, -0.058028120547533035, 0.009576419368386269, 0.03134586289525032, -0.0412604846060276, 0.009460719302296638, 0.02995746210217476, -0.014088728465139866, -0.02881825901567936, -0.06340373307466507, -0.02561425231397152, -0.01615353301167488, 0.03437187150120735, 0.04001448303461075, -0.023015446960926056, 0.051157303154468536, 0.07276654988527298, -0.0194554403424263, -0.08045616745948792, -0.02771465666592121, 0.04692089557647705, -0.007266865111887455, -0.029815061017870903, 0.04250648617744446, 0.006853014230728149, -0.009407319128513336, -0.02353164739906788, -0.0020458917133510113, -0.019989440217614174, 0.06468532979488373, -0.015290231443941593, -0.011214022524654865, -0.10110420733690262, 0.020470041781663895, 0.05304411053657532, 0.048166897147893906, -0.028729258105158806, 0.002478655194863677, 0.03823447972536087, 0.02449285052716732, 0.02926325984299183, -0.08180896937847137, 0.01588653214275837, 0.00033236006856895983, 0.011276323348283768, 0.0754721537232399, 0.04692089557647705, 0.006501463241875172, 0.02036324143409729, 0.002178279450163245, -0.02333584800362587, 0.03485247120261192, -0.039729680866003036, 0.0036312073934823275, -0.06226452812552452, 0.031274665147066116, -0.04877210035920143, 0.05236770585179329, -0.0007487140246666968, -0.023246847093105316, -0.0038670578505843878, -0.017328334972262383, 0.023175647482275963, 0.020220842212438583, -0.03955168277025223, 0.050302904099226, 0.013029626570641994, 0.04595969244837761, 0.03141706436872482, 0.04912810027599335, 0.007983316667377949, -0.0777505561709404, 0.06094732508063316, -0.01812043786048889, -0.041331686079502106, -0.028978459537029266, 0.04079768434166908, 0.027412056922912598, -0.08629457652568817, -0.008624117821455002, 0.02223224565386772, 0.034460872411727905, -0.01485413033515215, -0.005015160422772169, -0.03755807876586914, -0.01598443277180195, -0.07632655650377274, -0.08287697285413742, 0.000725907739251852, 0.030384661629796028, -0.014426929876208305, -0.002485329983755946, 0.06671454012393951, -0.01496983040124178, 0.014863030053675175, -0.023496048524975777, 0.00031261314870789647, 0.0006992077105678618, -0.06244252622127533, -0.0005223198095336556, -0.060270924121141434, 0.018476437777280807, -0.04556809365749359, -0.027821457013487816, -0.0733361467719078, -0.022588245570659637, 0.035404272377491, -0.01650063320994377, -0.003152831457555294, -0.007573915645480156, 0.026611054316163063, 0.017648736014962196, 0.10551861673593521, 0.018147137016057968, 0.03497707098722458, -0.02588125318288803, 0.02839105762541294, 0.017088035121560097, -0.0216982439160347, 0.006488113198429346, -0.02675345540046692, 0.00016075657913461328, -0.03383786976337433, 0.038590479642152786, 0.0665009394288063, 0.06258492916822433, -0.013314426876604557, -0.035582274198532104, 0.038590479642152786, -0.004663609433919191, -0.007137814536690712, 0.021609244868159294, 0.056176915764808655, 0.07191214710474014, -0.035119470208883286, 0.026005852967500687, 0.014097629114985466, 0.05105050280690193, 0.03109666332602501, -0.04140288382768631, 0.0038759580347687006, 0.05980812385678291, 0.00007446812378475443, -0.013901828788220882, -0.01165012363344431, -0.004610209260135889, 0.03609847277402878, 0.00807676650583744, -0.028462259098887444, -0.019348639994859695, -0.018405238166451454, -0.05154890567064285, 0.019277440384030342, -0.04777529835700989, 0.028319858014583588, -0.03794967755675316, 0.002411904977634549, -0.03355306759476662, 0.006590463686734438, 0.04047728329896927, 0.04717009514570236, -0.004935060162097216, 0.05293731018900871, 0.07718095928430557, 0.042435288429260254, -0.0018311787862330675, -0.017230436205863953, 0.046351294964551926, -0.010537621565163136, -0.061694927513599396, -0.05688891559839249, 0.002478655194863677, -0.00897566881030798, 0.08629457652568817, -0.01611793227493763, 0.005362261086702347, 0.024208050221204758, 0.019081639125943184, 0.06571773439645767, -0.006390213035047054, 0.020274242386221886, -0.03228926658630371, -0.002903630957007408, 0.08622337877750397, 0.03866167739033699, 0.014515929855406284, 0.045425694435834885, -0.037914078682661057, 0.017684336751699448, -0.02675345540046692, -0.055927716195583344, 0.03522627055644989, -0.023905448615550995, -0.03449647128582001, 0.03198666498064995, 0.02629065327346325, -0.008094566874206066, -0.022072045132517815, 0.053186509758234024, 0.001717703533358872, 0.07298015058040619, 0.013714928179979324, -0.00811681617051363, 0.014275629073381424, -0.03709527477622032, 0.026628853753209114, 0.011400923132896423, 0.03325046971440315, 0.013011826202273369, 0.013563627377152443, 0.03161286562681198, -0.026166053488850594, 0.06756893545389175, -0.0038270079530775547, -0.006973164156079292, 0.047454897314310074, -0.016803234815597534, 0.03132806345820427, -0.0045657092705369, -0.07426175475120544, -0.06091172620654106, -0.0019557790365070105, 0.0065993634052574635, -0.00716006476432085, 0.003693507518619299, -0.005785011686384678, -0.008383817039430141, 0.06361733376979828, -0.11078742891550064, -0.0023451547604054213, 0.06069812551140785, 0.05977252125740051, -0.032858867198228836, -0.040406081825494766, -0.02059464156627655, -0.05425450950860977, 0.04097568243741989, 0.008063416928052902, 0.0010351833188906312, -0.051335304975509644, -0.03912448137998581, -0.003871507942676544, -0.004863860085606575, -0.008219166658818722, -0.08871538192033768, 0.0389108806848526, 0.011819223873317242, -0.06254933029413223, -0.049092501401901245, -0.025311652570962906, -0.03600947558879852, -0.013670427724719048, -0.035386472940444946, -0.08835937827825546, 0.047526098787784576, -0.03501267358660698, -0.027340855449438095, 0.026860255748033524, 0.0028969559352844954, 0.025151452049613, 0.0007158952066674829, 0.049982503056526184, -0.014667229726910591, 0.018832437694072723, -0.006901964079588652, -0.017924636602401733, 0.025044651702046394, -0.02264164574444294, 0.010920322500169277, 0.025667652487754822, 0.007787515874952078, -0.00904241856187582, -0.00416520843282342, 0.06091172620654106, 0.04022808372974396, -0.007596165407449007, 0.022819647565484047, 0.024831051006913185, 0.020648041740059853, -0.011988324113190174, -0.030064262449741364, 0.029904061928391457, 0.03983648121356964, 0.04279128834605217, 0.026486454531550407, -0.06084052473306656, 0.01988263987004757, 0.0008315954473800957, -0.023282447829842567, -0.061872925609350204, 0.013074127025902271, 0.05760091915726662, -0.033962469547986984, 0.0365256741642952, 0.005785011686384678, 0.0017989161424338818, -0.06361733376979828, -0.027732456102967262, 0.04001448303461075, 0.026415254920721054, -0.0039827581495046616, 0.05197610706090927, 0.03937368094921112, -0.07903216034173965, 0.022374646738171577, -0.044322092086076736, 0.013465727679431438, 0.03017106093466282, 0.03020666167140007, -0.02080824226140976, 0.017034634947776794, -0.0003668476128950715, 0.025952452793717384, 0.014231129549443722, -0.07668256014585495, 0.019046038389205933, -0.005104160401970148, 0.02771465666592121, 0.03252066671848297, 0.031007664278149605, -0.015130030922591686, -0.04069088399410248, 0.0177021361887455, 0.011908224783837795, 0.011641223914921284, 0.025062451139092445, -0.03410486876964569, 0.10509141534566879, -0.0006141012418083847, -0.012878326699137688, 0.02810625731945038, 0.07867616415023804, -0.03599167242646217, 0.012824926525354385, -0.029886260628700256, -0.018476437777280807, -0.011258522979915142, 0.05425450950860977, -0.037202075123786926, 0.027127254754304886, 0.006230012979358435, -0.01575303263962269, -0.016901135444641113, 0.04645809531211853, 0.040833283215761185, -0.010751222260296345, 0.034211669117212296, 0.03599167242646217, 0.01132972352206707, 0.0010218333918601274, 0.0007559452787972987, -0.0036334325559437275, 0.012148524634540081, -0.012282025068998337, -0.04891449958086014, 0.026860255748033524, 0.034211669117212296, 0.02198304422199726, -0.055464912205934525, -0.04706329479813576, 0.037878476083278656, -0.022036444395780563, 0.0020481166429817677, -0.02906746044754982, 0.003228481626138091, -0.0031239064410328865, -0.0480244979262352, -0.0365612767636776, 0.047917697578668594, 0.07123574614524841, 0.02767905592918396, 0.03294786810874939, -0.044998493045568466, 0.0103151211515069 ]
18,557
traceback2
TracebackException
An exception ready for rendering. The traceback module captures enough attributes from the original exception to this intermediary form to ensure that no references are held, while still being able to fully print or format it. Use `from_exception` to create TracebackException instances from exception objects, or the constructor to create TracebackException instances from individual components. - :attr:`__cause__` A TracebackException of the original *__cause__*. - :attr:`__context__` A TracebackException of the original *__context__*. - :attr:`__suppress_context__` The *__suppress_context__* value from the original exception. - :attr:`stack` A `StackSummary` representing the traceback. - :attr:`exc_type` The class of the original traceback. - :attr:`filename` For syntax errors - the filename where the error occured. - :attr:`lineno` For syntax errors - the linenumber where the error occured. - :attr:`text` For syntax errors - the text where the error occured. - :attr:`offset` For syntax errors - the offset into the text where the error occured. - :attr:`msg` For syntax errors - the compiler error message.
class TracebackException: """An exception ready for rendering. The traceback module captures enough attributes from the original exception to this intermediary form to ensure that no references are held, while still being able to fully print or format it. Use `from_exception` to create TracebackException instances from exception objects, or the constructor to create TracebackException instances from individual components. - :attr:`__cause__` A TracebackException of the original *__cause__*. - :attr:`__context__` A TracebackException of the original *__context__*. - :attr:`__suppress_context__` The *__suppress_context__* value from the original exception. - :attr:`stack` A `StackSummary` representing the traceback. - :attr:`exc_type` The class of the original traceback. - :attr:`filename` For syntax errors - the filename where the error occured. - :attr:`lineno` For syntax errors - the linenumber where the error occured. - :attr:`text` For syntax errors - the text where the error occured. - :attr:`offset` For syntax errors - the offset into the text where the error occured. - :attr:`msg` For syntax errors - the compiler error message. """ def __init__(self, exc_type, exc_value, exc_traceback, limit=None, lookup_lines=True, capture_locals=False, _seen=None): # NB: we need to accept exc_traceback, exc_value, exc_traceback to # permit backwards compat with the existing API, otherwise we # need stub thunk objects just to glue it together. # Handle loops in __cause__ or __context__. if _seen is None: _seen = set() _seen.add(exc_value) # Gracefully handle (the way Python 2.4 and earlier did) the case of # being called with no type or value (None, None, None). if (exc_value and getattr(exc_value, '__cause__', None) is not None and exc_value.__cause__ not in _seen): cause = TracebackException( type(exc_value.__cause__), exc_value.__cause__, exc_value.__cause__.__traceback__, limit=limit, lookup_lines=False, capture_locals=capture_locals, _seen=_seen) else: cause = None if (exc_value and getattr(exc_value, '__context__', None) is not None and exc_value.__context__ not in _seen): context = TracebackException( type(exc_value.__context__), exc_value.__context__, exc_value.__context__.__traceback__, limit=limit, lookup_lines=False, capture_locals=capture_locals, _seen=_seen) else: context = None self.__cause__ = cause self.__context__ = context self.__suppress_context__ = \ getattr(exc_value, '__suppress_context__', False) if exc_value else False # TODO: locals. self.stack = StackSummary.extract( walk_tb(exc_traceback), limit=limit, lookup_lines=lookup_lines, capture_locals=capture_locals) self.exc_type = exc_type # Capture now to permit freeing resources: only complication is in the # unofficial API _format_final_exc_line self._str = _some_str(exc_value) if exc_type and issubclass(exc_type, SyntaxError): # Handle SyntaxError's specially self.filename = exc_value.filename self.lineno = str(exc_value.lineno) self.text = exc_value.text self.offset = exc_value.offset self.msg = exc_value.msg if lookup_lines: self._load_lines() @classmethod def from_exception(self, exc, *args, **kwargs): """Create a TracebackException from an exception. Only useful in Python 3 specific code. """ return TracebackException( type(exc), exc, exc.__traceback__, *args, **kwargs) def _load_lines(self): """Private API. force all lines in the stack to be loaded.""" for frame in self.stack: frame.line if self.__context__: self.__context__._load_lines() if self.__cause__: self.__cause__._load_lines() def __eq__(self, other): return self.__dict__ == other.__dict__ def __str__(self): return self._str def format_exception_only(self): """Format the exception part of the traceback. The return value is a generator of strings, each ending in a newline. Normally, the generator emits a single string; however, for SyntaxError exceptions, it emites several lines that (when printed) display detailed information about where the syntax error occurred. The message indicating which exception occurred is always the last string in the output. """ if self.exc_type is None: yield _format_final_exc_line(None, self._str) return stype = getattr(self.exc_type, '__qualname__', self.exc_type.__name__) smod = u(self.exc_type.__module__) if smod not in ("__main__", "builtins", "exceptions"): stype = smod + u('.') + stype if not issubclass(self.exc_type, SyntaxError): yield _format_final_exc_line(stype, self._str) return # It was a syntax error; show exactly where the problem was found. filename = _some_fs_str(self.filename) or u("<string>") lineno = str(self.lineno) or u('?') yield u(' File "{0}", line {1}\n').format(filename, lineno) badline = None if self.text is not None: if type(self.text) is bytes: # Not decoded - get the line via linecache which will decode # for us. if self.lineno: badline = linecache.getline(filename, int(lineno)) if not badline: # But we can't for some reason, so fallback to attempting a # u cast. badline = u(self.text) else: badline = self.text offset = self.offset if badline is not None: yield u(' {0}\n').format(badline.strip()) if offset is not None: caretspace = badline.rstrip('\n') offset = min(len(caretspace), offset) - 1 caretspace = caretspace[:offset].lstrip() # non-space whitespace (likes tabs) must be kept for alignment caretspace = ((c.isspace() and c or ' ') for c in caretspace) yield u(' {0}^\n').format(''.join(caretspace)) msg = self.msg or u("<no detail available>") yield u("{0}: {1}\n").format(stype, msg) def format(self, chain=True): """Format the exception. If chain is not *True*, *__cause__* and *__context__* will not be formatted. The return value is a generator of strings, each ending in a newline and some containing internal newlines. `print_exception` is a wrapper around this method which just prints the lines to a file. The message indicating which exception occurred is always the last string in the output. """ if chain: if self.__cause__ is not None: for line in self.__cause__.format(chain=chain): yield line yield _cause_message elif (self.__context__ is not None and not self.__suppress_context__): for line in self.__context__.format(chain=chain): yield line yield _context_message yield u('Traceback (most recent call last):\n') for line in self.stack.format(): yield line for line in self.format_exception_only(): yield line
(exc_type, exc_value, exc_traceback, limit=None, lookup_lines=True, capture_locals=False, _seen=None)
[ 0.01717587187886238, -0.011854481883347034, -0.003945603966712952, 0.048952750861644745, -0.014631298370659351, -0.053516827523708344, -0.0027742921374738216, 0.048427678644657135, 0.057798173278570175, -0.06971324235200882, 0.0307772234082222, 0.031261906027793884, 0.014863541349768639, 0.024819690734148026, -0.015328026376664639, 0.12028159201145172, -0.02934337593615055, -0.011904969811439514, 0.03196873143315315, -0.01821591518819332, -0.03663378208875656, 0.0024738910142332315, 0.02465813048183918, -0.012440137565135956, 0.008300157263875008, 0.016580117866396904, 0.0017228884389624, -0.03408920764923096, 0.043217360973358154, -0.04329814016819, 0.0026404999662190676, -0.06078703701496124, -0.060504306107759476, -0.01852893829345703, 0.0009971295949071646, -0.02758640982210636, -0.03784548491239548, -0.014722175896167755, 0.01757977344095707, -0.04018810763955116, -0.0034836423583328724, 0.014944321475923061, 0.0010116447228938341, -0.021830826997756958, 0.004364650696516037, -0.016065144911408424, 0.006588628049939871, 0.011581849306821823, -0.07827593386173248, -0.05375916510820389, 0.015206856653094292, 0.023769548162817955, 0.027121923863887787, -0.013268133625388145, 0.003529081353917718, 0.01398505736142397, -0.022436676546931267, 0.028697136789560318, -0.0009207670809701085, -0.032190874218940735, 0.02090185508131981, 0.08170908689498901, -0.008173937909305096, 0.02568807639181614, -0.012430040165781975, -0.044792573899030685, 0.010026832111179829, -0.04085454344749451, -0.03410940244793892, -0.0026177805848419666, -0.007871012203395367, 0.021164389327168465, -0.03536149486899376, 0.025970807299017906, 0.02425422891974449, -0.06498759984970093, -0.07007674872875214, 0.013187353499233723, 0.022638626396656036, -0.02821245603263378, 0.02786913886666298, 0.0441463328897953, -0.042813461273908615, -0.03402862325310707, 0.08465755730867386, -0.054566968232393265, -0.028798110783100128, 0.035846177488565445, -0.025223590433597565, 0.040410254150629044, -0.03400842845439911, -0.00027373729972168803, -0.04652934521436691, 0.00473825866356492, -0.014005252160131931, -0.0357653945684433, 0.04826612025499344, -0.06773412972688675, -0.004569125361740589, -0.02821245603263378, 0.060585085302591324, 0.02568807639181614, -0.00018001974967774004, -0.02016473561525345, -0.01988200657069683, 0.02318389341235161, -0.01621660776436329, -0.015328026376664639, 0.07185391336679459, -0.04931626096367836, -0.024092668667435646, -0.10533726960420609, 0.007845768705010414, -0.030030008405447006, 0.013035890646278858, -0.03485662117600441, -0.04761987924575806, -0.007366136647760868, 0.038128215819597244, -0.013429693877696991, 0.07149039953947067, -0.03497778996825218, -0.08780798316001892, 0.03067624941468239, 0.0037840434815734625, -0.007068260107189417, -0.015257344581186771, -0.025546710938215256, 0.05662686005234718, -0.0374617800116539, -0.00936039537191391, 0.007583233527839184, -0.006018118467181921, 0.013813399709761143, -0.004912440665066242, 0.028878891840577126, -0.08025504648685455, 0.031140733510255814, -0.041440200060606, 0.02362818457186222, 0.025546710938215256, 0.01985171250998974, 0.010753853246569633, 0.014520226046442986, -0.06628008186817169, -0.02330506406724453, 0.017498992383480072, 0.02391091361641884, -0.008239571936428547, 0.01117794867604971, 0.028757721185684204, -0.019064107909798622, -0.015237148851156235, 0.0326351672410965, 0.001156165380962193, 0.013924472033977509, -0.030837809666991234, -0.012601697817444801, 0.021689461544156075, 0.004480772186070681, -0.009446225129067898, -0.07342912256717682, 0.045317646116018295, -0.019377131015062332, 0.014086032286286354, 0.052385903894901276, -0.005101769231259823, -0.04192487895488739, -0.034594085067510605, -0.011581849306821823, -0.04087473824620247, 0.02029600366950035, -0.014782761223614216, 0.03695690259337425, -0.04794299975037575, 0.034169986844062805, -0.002395635237917304, 0.05254746600985527, -0.028757721185684204, -0.013964862562716007, 0.039582256227731705, -0.05323409661650658, -0.03196873143315315, 0.0019879480823874474, -0.011894871480762959, -0.0009775656508281827, 0.007643818389624357, 0.006760285701602697, 0.05178005248308182, 0.02308291755616665, -0.005866656079888344, -0.03853211551904678, 0.03548266738653183, 0.019306447356939316, -0.00518002500757575, 0.004500966984778643, -0.009092811495065689, -0.032493799924850464, 0.07011713832616806, -0.018145233392715454, -0.04370204359292984, 0.0596965067088604, 0.023870524019002914, -0.021810630336403847, -0.0032488752622157335, 0.032392825931310654, -0.011894871480762959, -0.006174630019813776, -0.08942358940839767, 0.043459702283144, -0.028474990278482437, -0.04879118874669075, 0.03245341032743454, 0.04309619218111038, 0.03394784405827522, -0.04891236126422882, 0.031686000525951385, -0.006729993503540754, 0.014974613673985004, 0.0605446957051754, 0.08724252134561539, -0.017741333693265915, -0.060504306107759476, -0.04568115621805191, 0.024294620379805565, -0.027929725125432014, -0.012440137565135956, 0.016984019428491592, 0.04337892308831215, -0.035098958760499954, 0.028131674975156784, -0.020134443417191505, -0.024839885532855988, 0.03134268522262573, 0.03451330587267876, -0.0010274221422150731, 0.049154698848724365, -0.013005598448216915, -0.031988926231861115, -0.020437369123101234, -0.03322082385420799, 0.020558539777994156, 0.00878483708947897, -0.004092017654329538, 0.05109342187643051, -0.0495586022734642, 0.03277653083205223, 0.07027869671583176, -0.06571462005376816, -0.021871216595172882, 0.028454795479774475, 0.08603082597255707, -0.0374617800116539, -0.03742138668894768, -0.03461427986621857, -0.07892217487096786, 0.011773701757192612, -0.037704117596149445, 0.03259477764368057, 0.03099936991930008, 0.022921357303857803, -0.019629567861557007, -0.003051973646506667, 0.00946641992777586, 0.03582598268985748, -0.01831689104437828, -0.06628008186817169, -0.012228090316057205, 0.022416481748223305, 0.06833997368812561, 0.01622670516371727, 0.02498125098645687, 0.0018730888841673732, 0.07896256446838379, -0.08384975790977478, 0.004750880412757397, -0.024294620379805565, 0.007290405221283436, -0.02486008033156395, 0.038956210017204285, -0.018397672101855278, 0.016933532431721687, 0.008093157783150673, 0.004326784983277321, 0.018670303747057915, -0.012945013120770454, -0.021245170384645462, -0.05743466317653656, 0.004745831713080406, 0.03275633603334427, 0.06623969227075577, 0.0003830744535662234, 0.02217414230108261, -0.04899314045906067, 0.041339222341775894, 0.012500722892582417, -0.023789742961525917, -0.011460678651928902, 0.010329756885766983, -0.03907737880945206, 0.021265365183353424, 0.02694016881287098, 0.08158791810274124, 0.06272576004266739, 0.00025385781191289425, -0.04297501966357231, 0.025243785232305527, -0.02651607245206833, -0.02724309451878071, -0.027505628764629364, 0.02310311235487461, 0.026596853509545326, 0.04903353005647659, -0.0056243157014250755, 0.03120131976902485, 0.019013619050383568, 0.04402516409754753, -0.0025824392214417458, 0.004311638418585062, 0.06720905750989914, -0.01953868940472603, -0.04107668995857239, 0.07019791752099991, -0.04992211237549782, 0.04236917197704315, 0.007138942833989859, -0.007931597530841827, -0.0015701635275036097, -0.010703365318477154, 0.0038799699395895004, -0.01665080152451992, -0.03972361981868744, -0.028535576537251472, 0.011915067210793495, 0.0000809378907433711, -0.0012508295476436615, -0.019993077963590622, -0.002437287475913763, 0.002648073248565197, -0.10937627404928207, 0.0393197201192379, 0.03295828774571419, 0.003231204580515623, -0.01410622801631689, 0.007517599500715733, -0.023688768967986107, 0.0497201606631279, 0.007966938428580761, 0.028232650831341743, 0.07258093357086182, -0.009320005774497986, -0.007386331912130117, -0.019185276702046394, 0.0030065348837524652, -0.04467140510678291, -0.022335702553391457, -0.021871216595172882, -0.06377590447664261, -0.0009750412427820265, 0.030918588861823082, 0.04475218430161476, 0.04378282278776169, -0.025344761088490486, -0.011935262009501457, -0.04588310420513153, -0.016307486221194267, -0.014772663824260235, 0.013288329355418682, -0.02277999185025692, 0.01862991414964199, -0.002670792629942298, 0.011652532033622265, 0.008986787870526314, -0.0326351672410965, -0.04422711208462715, -0.038956210017204285, -0.0020800880156457424, 0.038552310317754745, -0.0542842373251915, 0.01954878866672516, 0.08296117931604385, 0.012369454838335514, -0.03837055340409279, -0.038229189813137054, -0.009506809525191784, -0.016559923067688942, 0.021588485687971115, -0.02538515068590641, 0.008855519816279411, 0.004071822855621576, -0.03901679441332817, -0.053516827523708344, 0.040531422942876816, 0.006780480965971947, 0.009597687050700188, -0.039178356528282166, 0.039804402738809586, 0.02092204988002777, -0.013096475973725319, -0.0007491093710996211, -0.003327131038531661, 0.07350990176200867, 0.00947146862745285, 0.02162887528538704, 0.008567741140723228, -0.022436676546931267, 0.0393197201192379, 0.020003175362944603, 0.00387492123991251, 0.04236917197704315, -0.003455874277278781, -0.02370896376669407, -0.04220760986208916, -0.05149732157588005, -0.01149097178131342, -0.015126076526939869, -0.003102461341768503, -0.008769690990447998, 0.0034836423583328724, 0.02580924704670906, -0.005513242911547422, -0.004447955172508955, 0.029080841690301895, 0.0036098614800721407, -0.0061695813201367855, -0.0010690743802115321, -0.1063874140381813, -0.015519879758358002, 0.017953380942344666, 0.0018983327317982912, -0.006689603440463543, -0.055617108941078186, 0.03923894092440605, 0.01977093331515789, -0.0031807171180844307, -0.05610179156064987, -0.05533437803387642, -0.00046227683196775615, 0.03382667154073715, 0.0487104095518589, 0.025829441845417023, -0.0015714257024228573, 0.05202239379286766, 0.01430817786604166, 0.00858793593943119, -0.03007039800286293, 0.0046196128241717815, 0.04766026884317398, -0.022234726697206497, 0.03526052087545395, 0.009456322528421879, 0.036977097392082214, -0.002726328792050481, -0.034695059061050415, -0.04818533733487129, -0.03588656708598137, 0.0005919667892158031, 0.009496712125837803, 0.002520591951906681, 0.06377590447664261, -0.001162476371973753, 0.05254746600985527, 0.020114248618483543, -0.01367203425616026, 0.00935534667223692, -0.03152443841099739, 0.05751544237136841, -0.016681093722581863, -0.018569329753518105, -0.01335901115089655, 0.01067307312041521, 0.00966836977750063, -0.027808554470539093, -0.008805032819509506, 0.011945359408855438, 0.041339222341775894, 0.008547546342015266, -0.03237263113260269, 0.009885466657578945, -0.013318621553480625, 0.04455023258924484, -0.06502798944711685, 0.036048125475645065, -0.0100419782102108, -0.01791299134492874, -0.0085828872397542, 0.053516827523708344, -0.04455023258924484, 0.03259477764368057, 0.03653280809521675, -0.05028562247753143, 0.021911606192588806, -0.02415325492620468, 0.017438407987356186, -0.03297848254442215, -0.0028449746314436197, -0.04475218430161476, -0.018781377002596855, -0.022335702553391457, -0.05420345813035965, 0.028474990278482437, -0.06692632287740707, 0.047377537935972214, -0.03235243633389473, 0.05129537358880043, 0.008098206482827663, 0.05274941399693489, 0.030757028609514236, 0.05448618903756142, -0.053637996315956116, 0.022335702553391457, 0.04014771804213524, 0.010582194663584232, -0.0166608989238739, -0.04341931268572807, -0.03495759516954422, -0.021164389327168465, -0.01705470122396946, 0.03766372799873352, 0.026354512199759483, 0.03154463320970535, 0.029202012345194817, 0.03590676188468933, -0.011874676682054996, 0.015469391830265522, 0.0068713584914803505, 0.05464774742722511, 0.026798803359270096, 0.05032601207494736, 0.05480930954217911, -0.017498992383480072, 0.017185969278216362, 0.06042352691292763, -0.05335526540875435, 0.03445271775126457, 0.02352720871567726, -0.0008967855246737599, -0.017105190083384514, -0.0027212800923734903, 0.013803302310407162, 0.01892274245619774, 0.05012406036257744, -0.03225146234035492, 0.002543311333283782, -0.012046334333717823, -0.0615544468164444, -0.01398505736142397, -0.03796665370464325, -0.06119093671441078, -0.027606604620814323, 0.02435520477592945, 0.005826266016811132, 0.036674171686172485, 0.044307891279459, 0.005169927142560482, -0.01883186399936676, 0.048952750861644745, 0.09596677869558334, 0.0403294712305069, 0.027121923863887787, 0.026475682854652405, 0.03505856916308403, -0.011208240874111652, -0.10145982354879379, 0.00746711203828454, 0.052385903894901276, 0.0030317786149680614, 0.04200565814971924, -0.03340257704257965, -0.021669266745448112, -0.03481622785329819, 0.02506203018128872, 0.019367031753063202, 0.03287750855088234, -0.009118055924773216, 0.0343315489590168, -0.03287750855088234, 0.039481282234191895, 0.04636778682470322, 0.0005064534489065409, 0.05214356258511543, -0.029282791540026665, 0.014954418875277042, -0.012046334333717823, -0.007401478011161089, 0.011400093324482441, -0.006209971383213997, 0.011672726832330227, -0.008683862164616585, 0.02538515068590641, -0.027384458109736443, -0.047579485923051834, 0.03859269991517067, -0.05287058651447296, 0.07011713832616806, 0.06543189287185669, 0.01934683695435524, -0.006967284716665745, -0.01976083591580391, 0.023951303213834763, -0.023345453664660454, 0.018579427152872086, 0.011198143474757671, 0.020942244678735733, 0.05048757046461105, -0.03483642637729645, 0.07019791752099991, 0.029929032549262047, -0.008032572455704212, 0.0326351672410965, 0.03350355103611946, -0.0004903605440631509, 0.0006910486263222992, -0.056869201362133026, -0.10162138193845749, -0.05900987237691879, -0.008961544372141361, 0.03101956471800804, 0.024395594373345375, 0.020427271723747253, 0.01788269728422165, 0.021588485687971115, -0.06006001681089401, 0.034695059061050415, 0.0012855398235842586, 0.04269229248166084, 0.0028172065503895283, -0.034917205572128296, -0.04814494773745537, -0.037704117596149445, -0.012520917691290379, 0.043661653995513916, -0.0022530078422278166, -0.06648203730583191, -0.03780509531497955, 0.044388674199581146, 0.04996250197291374, 0.003566947067156434, 0.0031958632171154022, 0.03960245102643967, 0.03835035860538483, -0.04778143763542175, -0.09144309163093567, 0.014439445920288563, -0.07149039953947067, 0.016610411927103996, 0.01832698844373226, -0.1354682594537735, 0.044065553694963455, 0.0020611551590263844, 0.04309619218111038, 0.07258093357086182, -0.013086378574371338, -0.05048757046461105, -0.051254983991384506, 0.04830650985240936, -0.03237263113260269, -0.03412959724664688, -0.027283484116196632, 0.04507530480623245, 0.045317646116018295, -0.03944089263677597, 0.011147655546665192, -0.0021343620028346777, 0.025566905736923218, 0.02861635573208332, -0.007487306836992502, 0.03744158148765564, 0.10646819323301315, -0.021245170384645462, -0.010067221708595753, -0.0061695813201367855, -0.045519594103097916, -0.04168253764510155, -0.021144194528460503, 0.0045994180254638195, -0.002913133008405566, -0.013288329355418682, -0.016246899962425232, -0.05771739035844803, 0.01798367314040661, 0.06514916568994522, -0.0833650752902031, -0.051335763186216354, -0.047902606427669525, 0.02360798791050911, -0.03861289471387863, 0.03152443841099739, 0.05646530166268349, -0.08021465688943863, -0.033059261739254, -0.01674167811870575, -0.06801685690879822, 0.011097168549895287, -0.08086089789867401, 0.003539178753271699, 0.0024158302694559097, -0.10881081223487854, 0.017943283542990685, -0.013823497109115124, -0.010259074158966541, 0.0075630382634699345, 0.027303678914904594, 0.006103947293013334, 0.006911748554557562, -0.007330795284360647, -0.01347008440643549, 0.007916451431810856, -0.00832540076225996, 0.0025407869834452868, 0.019195374101400375, 0.015984365716576576, 0.03929952532052994, -0.021911606192588806, 0.016479143872857094, -0.06179678812623024, -0.003334704088047147, 0.0410161018371582, -0.012106919661164284, -0.01399515476077795, 0.001626961980946362, 0.05089147388935089, 0.01170301903039217, 0.005886850878596306, -0.0007554203039035201, 0.019286252558231354, -0.05432462692260742, -0.03461427986621857, -0.0010065959068015218, -0.025203395634889603, 0.032413020730018616, 0.044065553694963455, -0.02069990523159504, 0.02433500997722149, 0.028697136789560318, -0.03744158148765564, -0.02786913886666298, 0.011662629432976246, 0.014772663824260235, 0.005881802178919315, -0.009446225129067898, 0.01112746074795723, -0.08619238436222076, 0.014338470064103603, -0.005715193226933479, 0.0380474328994751, 0.030938783660531044, 0.03972361981868744, 0.009309908375144005, 0.013268133625388145, 0.025930417701601982, -0.036371245980262756, -0.0393197201192379, 0.022396286949515343, 0.022719407454133034, -0.05981767550110817, 0.02318389341235161, -0.005831314716488123, -0.018226012587547302, -0.016469046473503113, -0.015469391830265522, -0.03277653083205223, 0.022820383310317993, 0.04045064374804497, 0.03471525385975838, 0.04919508844614029, -0.03316023573279381, 0.05594022944569588 ]
18,558
traceback2
__eq__
null
def __eq__(self, other): return self.__dict__ == other.__dict__
(self, other)
[ 0.0491265244781971, -0.01780436374247074, 0.007310283370316029, 0.03178461268544197, -0.046707551926374435, -0.053253013640642166, -0.045355770736932755, 0.03420358896255493, 0.042830076068639755, 0.006669966503977776, -0.014300407841801643, -0.052007950842380524, 0.06179057061672211, 0.08359691500663757, -0.008670956827700138, -0.03349212557077408, -0.020205551758408546, 0.03605339303612709, -0.005371546372771263, -0.03795655444264412, -0.026270775124430656, 0.00890218187123537, 0.030254967510700226, 0.061897289007902145, -0.01616799831390381, 0.03183797374367714, -0.007074611261487007, 0.004024213179945946, -0.006016309838742018, 0.0839526429772377, -0.0724269449710846, -0.04613837972283363, 0.04033995792269707, 0.032922953367233276, 0.011836967431008816, -0.01892491802573204, -0.03358105942606926, 0.055031668394804, -0.02431425079703331, -0.02271345816552639, 0.0076482282020151615, -0.004137602634727955, -0.020685790106654167, -0.01453163381665945, 0.02785377949476242, 0.009738150984048843, -0.042865652590990067, 0.01926286332309246, 0.020009899511933327, 0.012681829743087292, 0.003152670804411173, -0.03548422083258629, 0.0006525450735352933, 0.06324906647205353, -0.0311620831489563, 0.01767096482217312, 0.013037561438977718, 0.05147435516119003, -0.044573161751031876, 0.02829844504594803, -0.039913080632686615, -0.004677869845181704, 0.013339933007955551, -0.03532414138317108, -0.045355770736932755, -0.05407119542360306, -0.06549017876386642, 0.008795462548732758, 0.007234690245240927, 0.013588945381343365, -0.0346660390496254, -0.014869578182697296, -0.013864637352526188, 0.0346660390496254, -0.026270775124430656, 0.02013440616428852, -0.018658120185136795, 0.07118187844753265, 0.016141319647431374, -0.05247040092945099, -0.001207263907417655, -0.0569881945848465, -0.03566208854317665, -0.0314466692507267, -0.09227675944566727, 0.017724324017763138, -0.003123767673969269, 0.0060563297010958195, 0.03731624037027359, -0.010013842955231667, -0.01573222689330578, 0.029490144923329353, 0.048557355999946594, -0.01363341137766838, 0.020543497055768967, -0.016096852719783783, -0.015750013291835785, -0.0160701721906662, 0.0028325123712420464, -0.008244078606367111, 0.011970366351306438, 0.006340914871543646, -0.017003968358039856, 0.025007927790284157, -0.04393284395337105, 0.016248038038611412, -0.03208698704838753, -0.03450595960021019, -0.025701604783535004, -0.016123531386256218, -0.05652574077248573, 0.06520558893680573, -0.027017811313271523, 0.04012651741504669, 0.030681844800710678, -0.04215418919920921, -0.012548429891467094, -0.013010880909860134, -0.00017814368766266853, -0.00810178555548191, -0.004673423245549202, 0.09747043997049332, 0.010271748527884483, 0.027640340849757195, 0.05492495000362396, -0.018622545525431633, 0.014202581718564034, 0.005767297465354204, -0.029863663017749786, -0.016585983335971832, 0.06698425114154816, -0.03077077865600586, 0.0001707789342617616, 0.07267595082521439, 0.0729961097240448, -0.005184787325561047, 0.044039566069841385, 0.034861691296100616, 0.02436760999262333, 0.04446644335985184, 0.038063276559114456, 0.017484204843640327, 0.021966421976685524, 0.018231241032481194, -0.03916604444384575, -0.012735188938677311, -0.10259297490119934, 0.014442700892686844, 0.00883103534579277, 0.00873320922255516, -0.005384886171668768, -0.017430845648050308, 0.04539134353399277, -0.0051225339993834496, -0.07050599157810211, -0.0373518131673336, -0.03767197206616402, -0.05286170914769173, -0.003523965599015355, 0.00741255609318614, 0.0009454677347093821, 0.006714432965964079, 0.011854753829538822, -0.036569204181432724, -0.016995074227452278, 0.0041709523648023605, -0.02849409729242325, -0.029543504118919373, 0.016488157212734222, -0.0015218639746308327, -0.03434588015079498, -0.0556008405983448, -0.018080055713653564, -0.01448716688901186, -0.02611069567501545, 0.01990317925810814, 0.025986189022660255, 0.029241133481264114, -0.025879470631480217, -0.004588936921209097, 0.042189761996269226, -0.06196843460202217, -0.05143878236413002, 0.023353775963187218, 0.03125101700425148, -0.023282630369067192, 0.007528168614953756, 0.00956028513610363, 0.032193705439567566, 0.037387385964393616, -0.023940732702612877, -0.02125496044754982, -0.012779655866324902, 0.0032127005979418755, 0.006283108610659838, -0.035644300282001495, -0.006167495623230934, -0.009453565813601017, 0.021664051339030266, 0.10152578353881836, -0.04667197912931442, -0.04179845750331879, -0.02504350058734417, -0.0289209745824337, 0.024634409695863724, -0.02644864097237587, -0.009302379563450813, -0.03688935935497284, 0.07143089175224304, -0.022944685071706772, -0.02824508398771286, -0.03295852616429329, 0.0287786815315485, -0.02563045732676983, 0.05638344958424568, 0.026377493515610695, 0.014771752059459686, -0.05047830566763878, -0.027284609153866768, 0.04001979902386665, 0.09220561385154724, -0.034577105194330215, -0.004780142568051815, 0.022926898673176765, -0.03802770376205444, 0.015598827973008156, 0.005651684943586588, 0.03062848560512066, -0.029739156365394592, -0.06965223699808121, 0.05382218211889267, 0.01892491802573204, 0.054711513221263885, -0.01538538932800293, 0.030308326706290245, 0.022500019520521164, -0.015892306342720985, 0.027622554451227188, -0.0642806887626648, -0.003410576144233346, 0.011997045949101448, 0.015527681447565556, 0.04980241507291794, 0.0103162145242095, 0.023069189861416817, -0.09711471199989319, -0.0037040547467768192, 0.025701604783535004, -0.0016875015571713448, -0.02644864097237587, 0.008942201733589172, -0.03774311766028404, -0.02456326223909855, -0.02504350058734417, 0.01319763995707035, -0.017848830670118332, -0.06050993502140045, 0.0006525450735352933, 0.04791703820228577, 0.020685790106654167, 0.007554848678410053, 0.06776686012744904, -0.019191715866327286, 0.021610692143440247, -0.03639133647084236, 0.007332516368478537, -0.0287786815315485, 0.038454581052064896, -0.013331039808690548, -0.014078075997531414, 0.11575504392385483, -0.05570755898952484, 0.015234203077852726, 0.07847438007593155, -0.03945062682032585, -0.016817208379507065, 0.01406918279826641, -0.04400399327278137, -0.06926093250513077, -0.03941505402326584, -0.012068192474544048, 0.021005947142839432, 0.020009899511933327, -0.062004007399082184, -0.02577275037765503, -0.008417497389018536, -0.04752573370933533, -0.019245076924562454, 0.012610683217644691, -0.045355770736932755, 0.045249052345752716, -0.03596445918083191, 0.02813836559653282, -0.0032616136595606804, 0.00010248125181533396, 0.0494111105799675, -0.0017453079344704747, -0.029685797169804573, 0.01660376973450184, 0.06321349740028381, 0.00015299236110877246, 0.027586981654167175, 0.028814254328608513, 0.014985191635787487, -0.004917988553643227, 0.017751004546880722, 0.017048433423042297, 0.0581265352666378, 0.049090951681137085, 0.009275699965655804, 0.019298436120152473, 0.0440751388669014, 0.03110872395336628, 0.09867992997169495, 0.01399803627282381, -0.024029666557908058, -0.020312272012233734, -0.052185818552970886, 0.015527681447565556, 0.07100401818752289, -0.036818213760852814, 0.03461267799139023, -0.025612670928239822, -0.005464925896376371, 0.010253962129354477, -0.0848063975572586, -0.02033005841076374, 0.06769571453332901, 0.042189761996269226, 0.03105536289513111, -0.006714432965964079, -0.02344270795583725, 0.08587359637022018, 0.03265615552663803, -0.0028858722653239965, -0.02979251742362976, 0.01138340961188078, 0.03888145834207535, 0.021005947142839432, -0.02886761538684368, 0.032976314425468445, -0.031090937554836273, 0.0290632676333189, -0.08494869619607925, -0.007786074187606573, -0.014407127164304256, -0.07182219624519348, 0.028422949835658073, 0.009133407846093178, -0.01810673624277115, -0.06837160140275955, 0.02911662682890892, 0.0569881945848465, -0.015527681447565556, 0.005905143450945616, 0.026324134320020676, 0.02378065325319767, 0.01573222689330578, -0.03254943713545799, -0.005086961202323437, 0.07840323448181152, 0.015545468777418137, -0.017457526177167892, -0.041122566908597946, -0.011534594930708408, 0.034968409687280655, -0.02139725163578987, -0.0527905598282814, -0.05659689009189606, -0.046173956245183945, -0.048166051506996155, 0.01945851556956768, -0.04073126241564751, -0.027835993096232414, 0.004455537535250187, -0.05545854941010475, -0.0786166712641716, 0.04354153946042061, 0.003074854612350464, -0.003868580562993884, 0.08501984179019928, 0.005962950177490711, -0.025701604783535004, 0.042296480387449265, -0.022393301129341125, -0.020988160744309425, 0.015465429052710533, -0.0032215937972068787, 0.055494122207164764, 0.05492495000362396, -0.07932813465595245, -0.04130043089389801, -0.018035588786005974, 0.04197632148861885, -0.06075894832611084, -0.028316231444478035, -0.03217591717839241, -0.016176892444491386, -0.0943400040268898, -0.04354153946042061, 0.03406129404902458, 0.04023323580622673, 0.011445662006735802, -0.03756524994969368, 0.006856725551187992, 0.023015830665826797, 0.017315233126282692, 0.02945457212626934, -0.008955541998147964, 0.00482905562967062, -0.04581822454929352, -0.04759687930345535, -0.0012150455731898546, -0.028262870386242867, -0.032922953367233276, -0.0421186164021492, 0.03519963473081589, -0.03119765594601631, 0.0904269590973854, 0.026288561522960663, 0.007826093584299088, 0.028938760980963707, -0.025168007239699364, -0.013082027435302734, -0.01601681299507618, -0.014647246338427067, 0.0014140328858047724, 0.048308342695236206, 0.0298992358148098, -0.015038550831377506, -0.0452134795486927, -0.038739163428545, 0.047881465405225754, 0.008848821744322777, 0.03774311766028404, -0.009453565813601017, 0.014673925936222076, -0.07683801651000977, 0.008822142146527767, 0.07370757311582565, 0.009862656705081463, -0.045249052345752716, -0.025790536776185036, -0.018551399931311607, -0.055067241191864014, -0.03852572664618492, 0.015136376954615116, 0.03301188722252846, 0.07203564047813416, 0.021877489984035492, 0.0364980548620224, 0.024278677999973297, -0.04261663928627968, -0.05599214509129524, -0.02970358356833458, -0.03445259854197502, -0.032976314425468445, -0.02509685978293419, -0.008097339421510696, 0.016559302806854248, -0.032976314425468445, -0.0004424411163199693, -0.009578071534633636, -0.001522975624538958, -0.04649411141872406, 0.05584985390305519, -0.008577576838433743, 0.023513855412602425, 0.026341920718550682, 0.062288593500852585, 0.01674606278538704, -0.03534192964434624, -0.058162108063697815, -0.021183812990784645, -0.052968427538871765, 0.03183797374367714, -0.012957521714270115, 0.005647238343954086, -0.06798029690980911, 0.007136864122003317, -0.03198026493191719, -0.014931831508874893, 0.03361663222312927, -0.03420358896255493, 0.041620589792728424, -0.06022534891963005, 0.010209495201706886, 0.003604005090892315, 0.003764084307476878, -0.005891803652048111, -0.01283301506191492, -0.03110872395336628, -0.07224907726049423, 0.03301188722252846, 0.032496076077222824, -0.017359700053930283, 0.007737161125987768, 0.025701604783535004, -0.032496076077222824, -0.02557709813117981, 0.0027546961791813374, 0.017386378720402718, -0.011934793554246426, 0.038952603936195374, 0.009649218060076237, -0.023460496217012405, -0.01329546608030796, -0.04233205318450928, -0.013526692055165768, 0.02703559771180153, 0.035946670919656754, -0.015420962125062943, 0.022980257868766785, -0.022677885368466377, 0.061363689601421356, 0.026555359363555908, -0.022944685071706772, -0.06104353442788124, -0.022482233121991158, -0.03139330819249153, 0.045889370143413544, 0.01524309627711773, 0.0321403443813324, -0.0468854159116745, -0.052185818552970886, 0.012797442264854908, -0.025808323174715042, 0.010031629353761673, 0.042189761996269226, -0.020756935700774193, -0.01526088360697031, -0.03692493587732315, -0.05079846456646919, 0.023851800709962845, -0.0466008335351944, 0.05197237804532051, -0.039130471646785736, -0.011347835883498192, 0.01912057027220726, 0.04820162430405617, 0.02120159938931465, 0.021272746846079826, 0.04165616258978844, 0.006465420592576265, -0.005273720249533653, 0.05037158727645874, -0.03493283689022064, -0.0028280657716095448, 0.01722629927098751, 0.032585009932518005, 0.020347844809293747, -0.008679850026965141, 0.06164827570319176, -0.057094912976026535, -0.04652968421578407, 0.02692887745797634, 0.010538547299802303, 0.023460496217012405, 0.07754947990179062, 0.04041110351681709, 0.06488543003797531, 0.01673716865479946, 0.06790915131568909, -0.04820162430405617, -0.006870065350085497, -0.04101584851741791, 0.013642304576933384, 0.011027677915990353, 0.03208698704838753, 0.04087355360388756, -0.0008620931766927242, 0.00664773304015398, -0.03767197206616402, -0.005580538418143988, 0.030219394713640213, 0.009084493853151798, -0.02813836559653282, 0.0474545881152153, -0.03809884935617447, -0.05798424035310745, -0.028316231444478035, 0.03167789429426193, 0.0364980548620224, -0.012664043344557285, -0.012850802391767502, -0.028654176741838455, -0.005882910452783108, 0.03548422083258629, -0.003886367194354534, -0.047098856419324875, -0.06186171621084213, 0.026288561522960663, -0.014051396399736404, -0.034772757440805435, 0.03057512640953064, -0.03406129404902458, 0.03150002658367157, -0.022588953375816345, -0.028458522632718086, -0.011890326626598835, 0.05126091465353966, 0.0013006434310227633, -0.004580043721944094, -0.04425300285220146, 0.014469380490481853, 0.00798172689974308, -0.02392294630408287, -0.016710489988327026, 0.00890218187123537, 0.02029448375105858, 0.02703559771180153, 0.010707519017159939, 0.043648261576890945, -0.05663246288895607, 0.04877079650759697, -0.04033995792269707, -0.0151630574837327, 0.050300441682338715, -0.07569967210292816, 0.04080240800976753, 0.010467400774359703, 0.015883414074778557, -0.006750006228685379, 0.026555359363555908, -0.06438741087913513, -0.029294492676854134, 0.021717410534620285, -0.012548429891467094, 0.03247829154133797, -0.029187772423028946, -0.0034350326750427485, -0.002301138360053301, 0.009649218060076237, -0.042865652590990067, 0.015394282527267933, -0.0696166604757309, 0.014229261316359043, -0.0005149769713170826, 0.005682811606675386, 0.1005297377705574, 0.0023700613528490067, -0.013251000083982944, -0.0544624999165535, 0.07111073285341263, -0.08203169703483582, 0.01145455613732338, -0.01028953492641449, -0.03713837265968323, 0.04862850159406662, -0.03155338764190674, -0.023709507659077644, 0.02257116697728634, -0.00002515133201086428, -0.00948913861066103, -0.039379481226205826, 0.006910085212439299, -0.006425401195883751, 0.01926286332309246, 0.02596840262413025, 0.0001821734622353688, 0.045106761157512665, -0.00744812935590744, -0.034239161759614944, -0.03395457565784454, 0.07150203734636307, 0.03502177074551582, -0.004468877334147692, -0.0393083356320858, 0.003717394545674324, 0.01655041053891182, -0.0016630449099466205, 0.030592912808060646, -0.011854753829538822, -0.02563045732676983, -0.046565260738134384, -0.04130043089389801, -0.009613645263016224, 0.018622545525431633, -0.005398225970566273, -0.03998422622680664, -0.009667004458606243, 0.038063276559114456, -0.008457517251372337, 0.009031134657561779, 0.01026285532861948, 0.06975895911455154, -0.015527681447565556, -0.004204302094876766, 0.020401204004883766, -0.03265615552663803, -0.014255941845476627, -0.07349413633346558, -0.00827520526945591, 0.035502009093761444, 0.02082808129489422, 0.012672936543822289, -0.035555366426706314, -0.01751088537275791, -0.01526088360697031, -0.0038619106635451317, -0.013642304576933384, 0.007052377797663212, 0.05887357145547867, 0.01470060646533966, 0.030361687764525414, 0.005135874263942242, -0.044715456664562225, 0.027249036356806755, 0.07996845245361328, -0.024954568594694138, -0.05930044874548912, 0.04051782190799713, 0.010227281600236893, -0.054711513221263885, 0.05360874533653259, 0.009782617911696434, 0.007256923709064722, 0.01455831341445446, -0.017457526177167892, 0.016683809459209442, -0.026662079617381096, -0.027782633900642395, 0.0395929217338562, -0.0038663572631776333, 0.007150203920900822, 0.05887357145547867, 0.051758941262960434, -0.04759687930345535, -0.033367618918418884, 0.0019654168281704187, 0.020169978961348534, 0.08651391416788101, 0.004282118286937475, 0.03447038680315018, -0.048166051506996155, 0.017946656793355942, -0.04556921124458313, -0.029276706278324127, 0.0311620831489563, 0.10031629353761673, 0.02004547230899334, 0.012014833278954029, 0.04901980608701706, -0.0011072144843637943, 0.0003651806619018316, -0.01470060646533966, 0.011685781180858612, 0.03571544587612152, 0.0021955305710434914, -0.02324705570936203, 0.01626582443714142, 0.009978270158171654, -0.0052826134487986565, 0.012868588790297508, 0.03196248039603233, 0.06477871537208557, -0.024225318804383278, -0.015234203077852726, 0.05538740009069443, -0.012130445800721645, -0.0364980548620224, -0.0009265695116482675, 0.004308798350393772, 0.016666023060679436, -0.026662079617381096, 0.029187772423028946, 0.010805346071720123, 0.06310677528381348 ]
18,559
traceback2
__init__
null
def __init__(self, exc_type, exc_value, exc_traceback, limit=None, lookup_lines=True, capture_locals=False, _seen=None): # NB: we need to accept exc_traceback, exc_value, exc_traceback to # permit backwards compat with the existing API, otherwise we # need stub thunk objects just to glue it together. # Handle loops in __cause__ or __context__. if _seen is None: _seen = set() _seen.add(exc_value) # Gracefully handle (the way Python 2.4 and earlier did) the case of # being called with no type or value (None, None, None). if (exc_value and getattr(exc_value, '__cause__', None) is not None and exc_value.__cause__ not in _seen): cause = TracebackException( type(exc_value.__cause__), exc_value.__cause__, exc_value.__cause__.__traceback__, limit=limit, lookup_lines=False, capture_locals=capture_locals, _seen=_seen) else: cause = None if (exc_value and getattr(exc_value, '__context__', None) is not None and exc_value.__context__ not in _seen): context = TracebackException( type(exc_value.__context__), exc_value.__context__, exc_value.__context__.__traceback__, limit=limit, lookup_lines=False, capture_locals=capture_locals, _seen=_seen) else: context = None self.__cause__ = cause self.__context__ = context self.__suppress_context__ = \ getattr(exc_value, '__suppress_context__', False) if exc_value else False # TODO: locals. self.stack = StackSummary.extract( walk_tb(exc_traceback), limit=limit, lookup_lines=lookup_lines, capture_locals=capture_locals) self.exc_type = exc_type # Capture now to permit freeing resources: only complication is in the # unofficial API _format_final_exc_line self._str = _some_str(exc_value) if exc_type and issubclass(exc_type, SyntaxError): # Handle SyntaxError's specially self.filename = exc_value.filename self.lineno = str(exc_value.lineno) self.text = exc_value.text self.offset = exc_value.offset self.msg = exc_value.msg if lookup_lines: self._load_lines()
(self, exc_type, exc_value, exc_traceback, limit=None, lookup_lines=True, capture_locals=False, _seen=None)
[ -0.008074123412370682, -0.019203320145606995, 0.006095599383115768, 0.06948110461235046, -0.03218010812997818, -0.016167644411325455, 0.02166677638888359, 0.030376160517334938, -0.015682710334658623, -0.05706683546304703, 0.023470724001526833, 0.06370070576667786, -0.009718043729662895, -0.0023785929661244154, 0.007084861397743225, 0.10963349789381027, -0.019843431189656258, 0.0013129542348906398, 0.04414823651313782, -0.03429441526532173, -0.0056882561184465885, 0.004626254551112652, -0.00560096837580204, -0.013985448516905308, 0.019630059599876404, 0.02876618504524231, -0.015469340607523918, -0.022287489846348763, 0.053614117205142975, -0.022636640816926956, -0.0007928643608465791, -0.003855211893096566, -0.062071338295936584, -0.011376512236893177, 0.036098361015319824, -0.05431241914629936, -0.045622434467077255, -0.007070313207805157, -0.029192926362156868, -0.03086109273135662, -0.018640797585248947, -0.028727389872074127, -0.03501211479306221, -0.0210848581045866, -0.000054782198276370764, 0.0035206086467951536, 0.03873639181256294, -0.014324900694191456, -0.008675439283251762, -0.09046897292137146, -0.04538966342806816, 0.03408104181289673, 0.031093860045075417, -0.030492544174194336, 0.021918941289186478, 0.04655350372195244, 0.019979212433099747, 0.030007611960172653, -0.02550744079053402, 0.010707305744290352, -0.009475577622652054, 0.10614198446273804, 0.02657429128885269, 0.03363490477204323, -0.0035472798626869917, -0.0105424290522933, -0.012569446116685867, -0.029716651886701584, -0.05551505088806152, 0.0014960161643102765, 0.028145471587777138, 0.0035109100863337517, -0.03287841007113457, 0.04166538640856743, 0.03497331961989403, -0.033014193177223206, -0.06529128551483154, 0.0002542863949202001, 0.026671277359128, -0.032412875443696976, 0.0143927913159132, 0.03287841007113457, -0.05710563063621521, -0.05000622197985649, 0.0575711652636528, -0.0412774384021759, -0.03214131295681, 0.02001800574362278, -0.01802978292107582, 0.07048976421356201, -0.06653271615505219, -0.017457563430070877, -0.06428262591362, 0.005974366329610348, 0.00013449294783640653, -0.030880490317940712, 0.04201453551650047, -0.046475913375616074, -0.00593072222545743, 0.008956699632108212, 0.051713183522224426, -0.03173397108912468, -0.006284723058342934, -0.016730165109038353, -0.01512988843023777, 0.009509522467851639, 0.02785451151430607, 0.011512293480336666, -0.0026671276427805424, -0.015449943952262402, -0.01469344925135374, -0.08333077281713486, 0.005489433649927378, -0.010571524500846863, -0.009204015135765076, -0.015323861502110958, -0.04787251725792885, -0.021589186042547226, 0.04601037874817848, 0.0009456180268898606, 0.03881398215889931, -0.03297539800405502, -0.0390467494726181, 0.0421697162091732, 0.011890540830790997, 0.0181849617511034, 0.0197464432567358, -0.04325596243143082, 0.04022998362779617, -0.024362999945878983, -0.0015881533036008477, -0.038057487457990646, -0.04519569128751755, 0.0359237864613533, 0.004347418434917927, 0.030589530244469643, -0.06905436515808105, 0.0448465421795845, -0.04185935854911804, -0.023936258628964424, -0.016788356006145477, 0.016788356006145477, 0.01677865907549858, -0.035225484520196915, -0.0323546826839447, -0.02459576725959778, 0.028358841314911842, 0.034915126860141754, 0.004454103298485279, -0.004422582685947418, 0.020056800916790962, -0.03576860949397087, -0.030667120590806007, 0.019901622086763382, -0.009882920421659946, -0.0037921706680208445, -0.011153443716466427, -0.03214131295681, 0.03233528882265091, 0.025468645617365837, -0.03741737827658653, -0.034178029745817184, 0.024537574499845505, -0.08783093839883804, -0.01193903386592865, 0.03887217491865158, 0.01677865907549858, -0.05462277680635452, -0.018155865371227264, 0.002171284519135952, -0.068278469145298, 0.011037059128284454, 0.0386006124317646, 0.05105367302894592, -0.013393830507993698, 0.03776652738451958, -0.012588842771947384, -0.0002180680021410808, -0.03926011919975281, -0.006027708761394024, 0.021724967285990715, -0.04201453551650047, -0.04504051432013512, -0.017748523503541946, -0.004337719641625881, 0.033460330218076706, 0.016953233629465103, 0.01126012858003378, 0.05803669989109039, 0.05617456138134003, 0.0052663651295006275, -0.011376512236893177, 0.04360511526465416, 0.0038843078073114157, 0.000554035184904933, 0.014499476179480553, -0.007812259718775749, -0.01082368940114975, 0.016652576625347137, -0.0016402836190536618, -0.052411485463380814, 0.08162380754947662, 0.02713681198656559, -0.03572981432080269, 0.04185935854911804, 0.04868720471858978, 0.032277096062898636, 0.05252786725759506, -0.07960648834705353, 0.03415863215923309, -0.04112226143479347, -0.05799790471792221, 0.01016418170183897, 0.03214131295681, 0.007191546261310577, -0.03778592497110367, -0.0074243140406906605, -0.023237956687808037, 0.0448465421795845, 0.07126565277576447, 0.0830204114317894, 0.018844470381736755, -0.0952794998884201, -0.048725999891757965, 0.035691019147634506, 0.0020173185039311647, -0.03320816531777382, -0.021977132186293602, 0.05559264123439789, -0.03955107927322388, -0.027098018676042557, -0.01379147544503212, -0.047368187457323074, -0.01305437833070755, 0.02539105713367462, 0.028087280690670013, 0.08317559212446213, 0.017845509573817253, -0.044419799000024796, -0.024052642285823822, 0.0397256538271904, 0.014179420657455921, 0.0271174143999815, -0.013810872100293636, 0.022617243230342865, -0.05070452392101288, 0.016254931688308716, 0.0604807585477829, -0.03724280372262001, -0.0006770867621526122, 0.046825066208839417, 0.04926912486553192, -0.0390467494726181, -0.0680457055568695, -0.04527328163385391, -0.08022720366716385, 0.030608927831053734, -0.03334394469857216, 0.032393477857112885, -0.0020658117718994617, -0.0028950460255146027, -0.021143049001693726, 0.03796050325036049, 0.012404568493366241, -0.05105367302894592, -0.028358841314911842, -0.05605817586183548, -0.028067883104085922, 0.013364735059440136, 0.047251805663108826, 0.04414823651313782, 0.0042746784165501595, 0.006963627878576517, 0.07526149600744247, -0.09427084028720856, -0.008127465844154358, -0.044264622032642365, -0.023179765790700912, -0.01638101413846016, 0.009921715594828129, 0.011357114650309086, -0.004859021864831448, 0.04601037874817848, -0.014334599487483501, 0.006595079321414232, -0.014965011738240719, -0.017195699736475945, -0.02742777206003666, -0.0015917903510853648, -0.02015378698706627, 0.04185935854911804, 0.03216071054339409, 0.013481118716299534, -0.037281595170497894, 0.043217167258262634, -0.013762379065155983, -0.046475913375616074, 0.004602007567882538, 0.006595079321414232, -0.005697954911738634, -0.0016233109636232257, -0.023509519174695015, 0.03836784511804581, 0.07599858939647675, 0.05854102969169617, -0.06451539695262909, 0.058928973972797394, -0.003780047409236431, -0.014984408393502235, 0.007598889525979757, 0.05931692197918892, 0.07933492958545685, 0.025003110989928246, -0.029328707605600357, 0.026457907631993294, 0.04147141054272652, 0.02861100621521473, -0.01355870719999075, -0.02300518937408924, 0.05117005854845047, 0.0024125382769852877, -0.05830826237797737, 0.05927812680602074, -0.045467253774404526, 0.059549689292907715, -0.0030284023378044367, -0.0008007445139810443, -0.023199161514639854, -0.015925176441669464, -0.00141842698212713, -0.05175197869539261, -0.03456597402691841, -0.004754761233925819, -0.0011820225045084953, 0.04348872974514961, 0.00017715184367261827, -0.036408718675374985, 0.013995146378874779, -0.020211979746818542, -0.06490334123373032, -0.001960338791832328, 0.00527121452614665, -0.008976097218692303, -0.027039825916290283, 0.03468235954642296, -0.0363699235022068, 0.07933492958545685, -0.00026489427546039224, 0.04182056337594986, 0.05826946720480919, -0.03297539800405502, -0.03604016825556755, -0.016371315345168114, 0.016574986279010773, -0.015372354537248611, -0.0064592985436320305, -0.05675647780299187, -0.08744299411773682, 0.010222373530268669, 0.004521993920207024, 0.09877101331949234, 0.045467253774404526, -0.02965846098959446, 0.0007431588019244373, -0.024537574499845505, -0.002008832059800625, -0.04135502874851227, 0.0032587451860308647, -0.026904044672846794, 0.0017700030002743006, -0.016293726861476898, -0.0002762598742265254, -0.0143927913159132, -0.015217176638543606, -0.01156078651547432, -0.037591952830553055, 0.00348423863761127, 0.019319703802466393, -0.042790427803993225, 0.02638031728565693, 0.07708483934402466, 0.018999647349119186, -0.060015223920345306, -0.03586559370160103, -0.026593688875436783, 0.0030817450024187565, 0.046204350888729095, 0.002768963575363159, 0.035788003355264664, 0.04185935854911804, -0.0043983361683785915, -0.0339258648455143, 0.02445998601615429, -0.009344645775854588, 0.05664009600877762, 0.006114996504038572, 0.0025943878572434187, 0.02595357783138752, -0.002126428298652172, 0.03555523604154587, -0.0013553858734667301, 0.08216693252325058, 0.015304463915526867, 0.025255275890231133, -0.0001376753207296133, 0.01854381151497364, 0.028688596561551094, -0.035788003355264664, 0.014130927622318268, 0.030880490317940712, -0.020367156714200974, -0.035244882106781006, -0.007012121379375458, -0.07933492958545685, -0.03318876773118973, -0.023975053802132607, -0.013170761987566948, -0.03751436248421669, 0.010930374264717102, -0.00975198857486248, 0.007642533164471388, 0.034139234572649, -0.02267543599009514, -0.01452857255935669, -0.012094211764633656, 0.013190158642828465, -0.08084791898727417, -0.010571524500846863, 0.014712846837937832, -0.03677726536989212, -0.02092967927455902, 0.02075510285794735, 0.03871699795126915, 0.005988914053887129, 0.007681327871978283, -0.05857982486486435, -0.04538966342806816, -0.010280565358698368, 0.018844470381736755, 0.04570002108812332, -0.022151708602905273, 0.020541733130812645, 0.03470175713300705, 0.0289019662886858, 0.008854864165186882, -0.014538271352648735, -0.0041195000521838665, 0.030453749001026154, -0.03474055230617523, 0.013190158642828465, 0.009761687368154526, 0.021143049001693726, 0.0198628269135952, -0.029736049473285675, -0.02300518937408924, -0.030880490317940712, -0.066493920981884, 0.03501211479306221, 0.021724967285990715, 0.038193270564079285, 0.012268787249922752, 0.008505713194608688, 0.016992028802633286, -0.06521369516849518, -0.015003805980086327, 0.038193270564079285, 0.055980585515499115, 0.014703148044645786, 0.019406991079449654, -0.04376029223203659, 0.005756146740168333, 0.019959814846515656, -0.0009256145567633212, 0.016128849238157272, -0.008365082554519176, 0.039842039346694946, 0.027990292757749557, -0.050626933574676514, 0.02892136387526989, -0.022015927359461784, 0.08069273829460144, -0.023781081661581993, 0.07727881520986557, -0.008321438916027546, -0.01609005406498909, -0.019610663875937462, 0.025875989347696304, -0.033596109598875046, 0.04795010760426521, 0.07735640555620193, -0.028669198974967003, 0.058928973972797394, -0.035225484520196915, 0.04267404228448868, -0.005052994936704636, 0.0048905424773693085, -0.025895385071635246, 0.005028747953474522, 0.002902319887652993, -0.030783504247665405, -0.012647034600377083, -0.05058813840150833, -0.004669898189604282, -0.037591952830553055, 0.01223969180136919, 0.013723584823310375, 0.013810872100293636, 0.017321782186627388, 0.017215097323060036, -0.047988902777433395, 0.04601037874817848, 0.025623824447393417, -0.02771873213350773, -0.003164183348417282, -0.039357107132673264, -0.011851745657622814, -0.022617243230342865, -0.002655004383996129, -0.00767647847533226, 0.013248351402580738, 0.06106267869472504, 0.023412533104419708, 0.058812592178583145, -0.029619665816426277, -0.00760373892262578, -0.02207411825656891, 0.06746378540992737, 0.050200194120407104, 0.05698924511671066, 0.05070452392101288, -0.01602216437458992, -0.041898153722286224, -0.012928295880556107, -0.05462277680635452, 0.058230672031641006, 0.03429441526532173, -0.030453749001026154, -0.0003036888665519655, 0.017302384600043297, -0.024130232632160187, 0.0062071336433291435, 0.043837882578372955, -0.03631173074245453, 0.01564391702413559, -0.035691019147634506, -0.08154621720314026, -0.005722201429307461, 0.009378590621054173, -0.0827876478433609, -0.03898855671286583, 0.05551505088806152, -0.024576369673013687, 0.05462277680635452, 0.017108412459492683, -0.030337365344166756, -0.017011426389217377, 0.07999443262815475, 0.046786271035671234, 0.04492412880063057, 0.050510551780462265, 0.021977132186293602, 0.04445859417319298, 0.025449248030781746, -0.05004501715302467, -0.039842039346694946, 0.025895385071635246, -0.007448560558259487, 0.055980585515499115, -0.03844543546438217, -0.03885277733206749, -0.03097747638821602, 0.026205742731690407, 0.015837889164686203, 0.05128644034266472, -0.0027107717469334602, 0.0430619902908802, -0.017418768256902695, 0.05248907580971718, 0.06125665083527565, -0.026768263429403305, 0.014703148044645786, -0.0430619902908802, 0.0018912360537797213, -0.05473915860056877, -0.006221681833267212, -0.0083699319511652, -0.007138203829526901, 0.001785763306543231, -0.004085554741322994, 0.018863867968320847, -0.0430619902908802, -0.016545889899134636, -0.03159819170832634, -0.028533417731523514, 0.05248907580971718, 0.01840803027153015, -0.021977132186293602, -0.020444747060537338, -0.008146863430738449, 0.04201453551650047, -0.034779347479343414, -0.004187390673905611, -0.012133006937801838, -0.0029435392934828997, 0.017680631950497627, -0.07347694784402847, 0.028126074001193047, 0.03282022103667259, 0.0006479907897301018, 0.036835458129644394, 0.032412875443696976, 0.01861170306801796, 0.02207411825656891, -0.02715620957314968, -0.09450361132621765, -0.029891228303313255, -0.009970208629965782, 0.03398405760526657, 0.02222929708659649, -0.008500863797962666, -0.017418768256902695, -0.0017433316679671407, -0.019979212433099747, 0.024440588429570198, 0.0049657067283988, 0.016060957685112953, 0.013549009338021278, -0.03755315765738487, -0.033596109598875046, -0.016274329274892807, 0.008888809010386467, 0.058075495064258575, -0.03697124123573303, -0.052411485463380814, -0.022946996614336967, 0.058191876858472824, 0.05458398163318634, 0.036408718675374985, 0.006105297710746527, 0.07126565277576447, 0.025914782658219337, -0.04950189217925072, -0.05225630849599838, 0.026166947558522224, -0.07661930471658707, 0.0006540524773299694, 0.005377899389714003, -0.10482297092676163, 0.03958987444639206, 0.03541945666074753, 0.04655350372195244, 0.047251805663108826, -0.02449878118932247, -0.023063380271196365, -0.02595357783138752, 0.040889494121074677, -0.013675091788172722, 0.0007025456870906055, 0.012511254288256168, 0.033751290291547775, -0.02577900141477585, -0.01584758795797825, 0.020580528303980827, -0.019096635282039642, 0.04608796909451485, 0.04224730283021927, -0.00038127804873511195, -0.01437339372932911, 0.05722201243042946, 0.016836849972605705, 0.0037654994521290064, -0.02463456243276596, -0.05128644034266472, 0.012356075458228588, -0.02316036820411682, -0.009208864532411098, -0.03402285277843475, 0.01700172759592533, -0.028242457658052444, -0.01593487523496151, 0.030473146587610245, 0.022888805717229843, -0.07239069789648056, -0.02905714511871338, -0.04255766049027443, 0.015537231229245663, -0.02564322017133236, 0.05078211426734924, 0.020211979746818542, -0.08697745949029922, -0.0009165221126750112, 0.004825076553970575, -0.06276963651180267, 0.05458398163318634, -0.13399650156497955, 0.014887422323226929, -0.033576712012290955, -0.13849666714668274, 0.04112226143479347, 0.03264564275741577, -0.022481461986899376, 0.03514789417386055, 0.0011595943942666054, -0.02595357783138752, 0.0026428811252117157, -0.0198628269135952, -0.0024040520656853914, 0.026671277359128, 0.01965915597975254, 0.003479389473795891, 0.02403324656188488, 0.019901622086763382, 0.036835458129644394, -0.032568056136369705, 0.00023322213382925838, -0.0007419464527629316, 0.0067260111682116985, 0.01936819590628147, -0.04523448646068573, 0.0053633516654372215, 0.027195004746317863, 0.04729060083627701, 0.0070363678969442844, -0.00040400924626737833, 0.015333560295403004, -0.0053003104403615, -0.013665392994880676, 0.01365569420158863, 0.031947340816259384, -0.018505018204450607, 0.03305298835039139, 0.021996529772877693, -0.02019258216023445, 0.008913055993616581, 0.012026321142911911, -0.05473915860056877, -0.021181844174861908, 0.019979212433099747, 0.017244193702936172, 0.012045718729496002, -0.0073273275047540665, -0.015420847572386265, -0.03914373740553856, 0.04073431342840195, 0.007962588220834732, 0.04465256631374359, 0.026205742731690407, 0.0010171455796808004, 0.04480774700641632, 0.03295600041747093, -0.006095599383115768, -0.004403185565024614, 0.006934531964361668, 0.0032151013147085905, 0.02905714511871338, -0.1006331518292427, -0.010144784115254879, -0.01809767447412014, -0.008675439283251762, -0.02267543599009514, -0.04360511526465416, -0.05105367302894592, -0.02048354037106037, 0.03010459803044796, 0.03171457350254059, 0.05873500183224678, 0.003549704561010003, 0.04414823651313782 ]
18,560
traceback2
__str__
null
def __str__(self): return self._str
(self)
[ -0.012284382246434689, -0.02019987627863884, 0.030748331919312477, -0.0023920906241983175, 0.019801195710897446, -0.06106476113200188, 0.024751493707299232, 0.010000267997384071, 0.10232832282781601, -0.06465289741754532, -0.04780859127640724, -0.017027033492922783, -0.025947539135813713, 0.038572460412979126, 0.0033784126862883568, 0.02400396578013897, -0.037874769419431686, -0.0745534896850586, 0.02151220478117466, 0.027724996209144592, -0.02006698213517666, 0.013206333853304386, 0.058074645698070526, 0.010257749818265438, -0.014452214352786541, 0.04767569527029991, -0.002234279178082943, -0.03936982527375221, -0.0003576715535018593, -0.0000065497952164150774, -0.016337648034095764, -0.06664630770683289, 0.026346221566200256, 0.007508506998419762, -0.020017147064208984, 0.010781019926071167, -0.055317096412181854, 0.01551536563783884, -0.01615491881966591, -0.020482275635004044, -0.015714706853032112, 0.019568631425499916, -0.043090857565402985, -0.038439568132162094, -0.018621761351823807, -0.019435737282037735, 0.0060092974454164505, 0.06358974426984787, -0.007682930212467909, -0.026927631348371506, 0.020365994423627853, 0.04910430684685707, -0.039635613560676575, -0.018688209354877472, -0.04834016412496567, 0.01617152988910675, 0.04611419141292572, -0.002263349713757634, -0.006333226338028908, 0.0298346858471632, -0.05737695470452309, 0.002429467160254717, 0.045117489993572235, -0.05109771341085434, -0.015066849067807198, -0.01983441784977913, -0.033572327345609665, 0.03461886942386627, 0.04239316284656525, 0.0556161068379879, 0.025698363780975342, -0.05142994970083237, -0.01372129749506712, 0.040100742131471634, 0.00647442601621151, -0.02328965999186039, -0.06956996768712997, 0.020183265209197998, 0.013297698460519314, -0.035482678562402725, 0.022857755422592163, 0.022176673635840416, -0.020714839920401573, -0.0025935079902410507, -0.04485170170664787, -0.07601532340049744, -0.04073198884725571, -0.014942260459065437, -0.05883878469467163, 0.034751761704683304, -0.015241271816194057, 0.027907725423574448, -0.04631353169679642, 0.04591485112905502, -0.03528333827853203, -0.02996757999062538, 0.012815957888960838, -0.062227580696344376, 0.05471907556056976, 0.005473568569868803, -0.003141695400699973, 0.048207271844148636, -0.018372585996985435, 0.008056694641709328, -0.06242692098021507, -0.036412935703992844, -0.0325424000620842, 0.0016321035800501704, -0.003465624526143074, 0.04149612784385681, -0.005270074587315321, 0.03171181306242943, 0.01241727638989687, -0.0007039225311018527, 0.015623342245817184, -0.06594861298799515, -0.04216059669852257, -0.006993542890995741, 0.06053318455815315, -0.021827828139066696, 0.03053238056600094, 0.008704552426934242, -0.060200948268175125, -0.0007309166248887777, 0.00909492839127779, 0.07176271826028824, -0.03877180442214012, -0.0257814209908247, 0.05990193784236908, -0.045582618564367294, 0.023738177493214607, 0.011171395890414715, -0.02996757999062538, 0.016578517854213715, 0.09322509169578552, -0.007487742230296135, -0.002699407981708646, 0.017076870426535606, 0.039868179708719254, 0.1353524625301361, 0.023239824920892715, -0.004941992927342653, 0.059470031410455704, 0.02554885670542717, 0.018040349707007408, 0.018804490566253662, 0.018355973064899445, 0.0805337205529213, -0.035947807133197784, -0.0027575490530580282, 0.03147925063967705, 0.031113790348172188, 0.030366262421011925, 0.006441202480345964, -0.02212683856487274, 0.03363877534866333, -0.017193151637911797, -0.030715107917785645, 0.04006751999258995, -0.05309112370014191, -0.02435281127691269, -0.06432066112756729, 0.02495083399116993, -0.025366127490997314, 0.028970876708626747, 0.05893845483660698, 0.02614687941968441, -0.009701256640255451, 0.007109825033694506, -0.0005943888681940734, -0.04647964984178543, -0.04824049398303032, -0.09535139054059982, 0.04893818870186806, -0.005245157051831484, 0.050699032843112946, 0.017641669139266014, 0.10538488626480103, -0.010415561497211456, 0.0028115371242165565, 0.007977788336575031, -0.03079816699028015, -0.061131205409765244, 0.028605418279767036, 0.10192964226007462, -0.02328965999186039, 0.03031642735004425, 0.003901682561263442, 0.020615169778466225, 0.0006805622833780944, 0.01099697221070528, 0.0076414006762206554, -0.03363877534866333, 0.002163679338991642, -0.027475818991661072, -0.038572460412979126, -0.009468692354857922, -0.06561637669801712, -0.017309434711933136, 0.0411306694149971, -0.017641669139266014, 0.010556761175394058, -0.03568201884627342, 0.014535273425281048, 0.02187766321003437, -0.013588404282927513, -0.002975578187033534, -0.015457225032150745, 0.04239316284656525, -0.025499021634459496, 0.013953862711787224, 0.004933686926960945, -0.009510221891105175, 0.0059553091414272785, 0.07275942713022232, -0.06734399497509003, -0.007396377623081207, -0.03528333827853203, -0.027143584564328194, 0.05086515098810196, 0.08232779055833817, 0.003386718686670065, 0.011246148496866226, -0.038572460412979126, -0.04990166798233986, -0.003019183874130249, 0.006785896141082048, -0.031562305986881256, -0.00692709581926465, -0.003046178026124835, 0.008239423856139183, -0.06046673655509949, -0.005178709980100393, 0.04707767441868782, 0.017973903566598892, 0.05422072112560272, -0.031794872134923935, -0.01009993813931942, -0.0629585012793541, -0.028738312423229218, -0.016968892887234688, 0.002132532186806202, 0.003752176882699132, 0.001655982923693955, 0.03415374085307121, -0.016254588961601257, 0.012209629639983177, 0.06923773884773254, -0.019784582778811455, -0.023555448278784752, 0.07521796226501465, -0.037044182419776917, -0.04578195884823799, -0.012990381568670273, 0.00926935113966465, -0.07681269198656082, -0.03151247277855873, 0.017924068495631218, 0.013031911104917526, 0.01182755921036005, -0.05405460298061371, 0.011727889068424702, -0.005552474409341812, 0.046546097844839096, 0.0063539911061525345, -0.007728612516075373, -0.04222704470157623, 0.03744286298751831, 0.024784717708826065, 0.03564879670739174, 0.07767649739980698, -0.012450499460101128, -0.06877260655164719, 0.060200948268175125, -0.05063258484005928, -0.04026686027646065, -0.01843903213739395, -0.004680357873439789, -0.08279291540384293, -0.029070546850562096, -0.008978646248579025, -0.00012257647176738828, 0.002064008731395006, -0.00737146008759737, 0.014751225709915161, -0.03784154728055, 0.024917611852288246, -0.010199609212577343, 0.01551536563783884, 0.00171516218688339, 0.05202797055244446, 0.014352544210851192, -0.009285963140428066, 0.0068814135156571865, 0.03946949541568756, -0.002159526338800788, 0.022442461922764778, 0.011212925426661968, -0.010016879998147488, -0.014967178925871849, -0.040001071989536285, -0.0038393884897232056, -0.003662888891994953, 0.014834284782409668, -0.02292420156300068, -0.02363850735127926, -0.030366262421011925, 0.023854460567235947, 0.013413980603218079, 0.015407389961183071, -0.004310746677219868, 0.027043914422392845, 0.003102242713794112, 0.08731131255626678, 0.028206735849380493, 0.07362323254346848, -0.017658280208706856, 0.01075610239058733, 0.010108244605362415, 0.1025276631116867, -0.06023417413234711, -0.017309434711933136, -0.02318998984992504, 0.013339227996766567, 0.011511936783790588, -0.020000535994768143, -0.04824049398303032, 0.06518447399139404, 0.010149773210287094, 0.0313795767724514, -0.010938831605017185, -0.06239369884133339, 0.032525788992643356, 0.012541864067316055, -0.002279961481690407, -0.031180238351225853, 0.03634648770093918, -0.035017549991607666, -0.031545694917440414, -0.025366127490997314, 0.06485223770141602, 0.03564879670739174, -0.0022675027139484882, 0.007936258800327778, -0.024635212495923042, 0.032858021557331085, -0.043555986136198044, 0.018505480140447617, 0.04329019784927368, -0.017309434711933136, -0.01975136063992977, -0.03528333827853203, 0.01407845038920641, 0.0033015834633260965, -0.008579963818192482, -0.01527449581772089, -0.011038501746952534, 0.08917182683944702, -0.015299413353204727, 0.0031749189365655184, 0.02995096892118454, -0.05302467569708824, -0.01431932020932436, 0.008480293676257133, -0.005868097301572561, 0.023472389206290245, -0.004121788311749697, -0.020997241139411926, 0.04717734456062317, -0.04199448227882385, -0.02209361456334591, 0.01606355421245098, -0.04186158627271652, -0.03422018513083458, -0.04312407970428467, 0.06657985597848892, -0.000024755387130426243, 0.04076521098613739, -0.04465235769748688, -0.05352303013205528, 0.04564906284213066, -0.014967178925871849, 0.007109825033694506, 0.0629585012793541, 0.005893014837056398, 0.00880422256886959, 0.02898748777806759, 0.006785896141082048, 0.0043024406768381596, 0.0005673947744071484, -0.03458564355969429, -0.023954130709171295, -0.02627977356314659, 0.0014732537092640996, -0.014344238676130772, -0.06571604311466217, 0.03230983763933182, -0.031063955277204514, -0.05422072112560272, 0.025814644992351532, 0.02187766321003437, -0.007645553909242153, -0.017774563282728195, 0.016960587352514267, -0.03993462398648262, 0.049037858843803406, 0.017375880852341652, 0.014884119853377342, -0.02996757999062538, -0.01581437699496746, 0.009842456318438053, -0.02375478856265545, -0.0492371991276741, -0.08897248655557632, 0.061995018273591995, 0.0070060016587376595, -0.02388768270611763, -0.006906331051141024, 0.017076870426535606, -0.0015552742406725883, -0.06249336898326874, 0.06551670283079147, 0.009476997889578342, 0.06339040398597717, -0.008297564461827278, 0.025366127490997314, 0.005863944534212351, 0.03230983763933182, 0.08963695168495178, 0.014485438354313374, -0.0287715345621109, -0.00843461137264967, -0.02639605663716793, -0.02247568592429161, 0.04468558356165886, -0.04123033955693245, -0.0002586499904282391, -0.042127374559640884, -0.03491787984967232, 0.07169627398252487, 0.022608580067753792, -0.04946976527571678, 0.008513516746461391, 0.020748063921928406, 0.04169546812772751, -0.055682554841041565, -0.05893845483660698, 0.030216757208108902, 0.05269244313240051, 0.0023401789367198944, 0.01795729249715805, 0.04787503555417061, -0.008870669640600681, -0.05528387427330017, 0.015365860424935818, -0.015415695495903492, 0.02151220478117466, -0.053323689848184586, 0.004742652177810669, -0.0009032633970491588, -0.06518447399139404, 0.05142994970083237, -0.0370774045586586, 0.02305709570646286, -0.007450365927070379, 0.018704820424318314, -0.013347533531486988, 0.03621359542012215, -0.06551670283079147, 0.014759532175958157, 0.027259867638349533, -0.01769150421023369, -0.05279211327433586, -0.05475229769945145, -0.035250112414360046, 0.06219435855746269, -0.037376418709754944, -0.02496744692325592, -0.015374165959656239, -0.03224338963627815, -0.0720285102725029, -0.06465289741754532, -0.00880422256886959, 0.05262599512934685, -0.01936928927898407, 0.021794604137539864, 0.03294108062982559, 0.02900409884750843, 0.0015428154729306698, 0.01923639513552189, 0.03637971356511116, 0.06452000141143799, -0.06133054569363594, -0.036313265562057495, -0.0067568253725767136, 0.05226053670048714, -0.04657931998372078, -0.03245934098958969, -0.0782080739736557, 0.018721431493759155, 0.012932240031659603, -0.010174691677093506, 0.007537577301263809, 0.013472122140228748, 0.04448624327778816, -0.03910403698682785, 0.03671194612979889, 0.024302976205945015, -0.02340594306588173, -0.0513635016977787, 0.01913672499358654, -0.0323430597782135, 0.027276478707790375, -0.014036920852959156, 0.011329207569360733, -0.004726040177047253, -0.0012396511156111956, -0.010664737783372402, -0.04608096927404404, 0.03068188577890396, -0.00023165591119322926, -0.0017795327585190535, -0.06731077283620834, -0.03956916555762291, -0.026911020278930664, 0.020116819068789482, -0.04362243041396141, 0.025050505995750427, -0.029668569564819336, 0.07461994141340256, 0.0071388958021998405, 0.02780805341899395, 0.02305709570646286, 0.024452483281493187, -0.016337648034095764, 0.09388955682516098, -0.061995018273591995, -0.0029132841154932976, -0.004005506169050932, 0.03794121742248535, 0.008393081836402416, -0.04126356542110443, -0.004917075391858816, -0.04920397698879242, 0.026213327422738075, -0.038207005709409714, -0.002427390543743968, 0.0017483857227489352, -0.006254320498555899, -0.006719449069350958, 0.003243442391976714, -0.03697773441672325, 0.0011119483970105648, -0.00985906831920147, 0.0017992592183873057, 0.029436005279421806, -0.005361439194530249, 0.028206735849380493, 0.015199743211269379, 0.016960587352514267, -0.007699541747570038, -0.003093936713412404, 0.04707767441868782, 0.013006992638111115, 0.005785038694739342, 0.0502006821334362, -0.006532567087560892, 0.03840634599328041, 0.0072800954803824425, -0.04578195884823799, 0.00380201218649745, -0.048772070556879044, 0.0031936070881783962, 0.038439568132162094, -0.03531656041741371, 0.06146344169974327, 0.02970179356634617, 0.015988800674676895, -0.02639605663716793, 0.013505345210433006, -0.013206333853304386, 0.04099777713418007, 0.00737146008759737, -0.029535675421357155, -0.039868179708719254, -0.0057518151588737965, -0.02162848599255085, 0.0019726441241800785, 0.007392224855720997, -0.0724271908402443, -0.019518796354532242, -0.0060259089805185795, -0.027309702709317207, -0.01843903213739395, 0.0585065521299839, -0.0737561285495758, 0.003943211864680052, -0.020017147064208984, 0.014668167568743229, -0.0191201139241457, 0.048672400414943695, 0.027376148849725723, 0.030582215636968613, 0.049635883420705795, 0.07189561426639557, 0.02900409884750843, 0.009684644639492035, 0.05242665484547615, -0.01749216392636299, 0.04089810699224472, -0.03415374085307121, -0.0011358277406543493, -0.0031043190974742174, -0.03481820970773697, -0.007047531194984913, -0.02912038192152977, 0.03219355270266533, -0.012433888390660286, -0.04714411869645119, 0.0257814209908247, 0.03367199748754501, 0.07933767139911652, -0.03521689027547836, 0.05292500555515289, -0.041429679840803146, -0.012276076711714268, 0.0028800605796277523, -0.024336200207471848, 0.0432569719851017, -0.08232779055833817, -0.004051188472658396, -0.00481740478426218, 0.007886423729360104, -0.05109771341085434, -0.04428689926862717, 0.0012842952273786068, 0.022857755422592163, 0.02176138013601303, -0.012475416995584965, 0.03438630327582359, 0.027874501422047615, -0.00730501301586628, -0.06491868197917938, 0.006221096962690353, -0.06059962883591652, 0.018455643206834793, -0.06003483012318611, -0.06551670283079147, -0.006158803123980761, -0.05352303013205528, -0.05339013412594795, 0.01165313646197319, -0.007014307659119368, 0.017076870426535606, 0.006885566748678684, -0.008081612177193165, 0.009518527425825596, 0.01630442403256893, -0.012707982212305069, 0.006706990301609039, -0.022625191137194633, -0.022974038496613503, -0.0029651958029717207, -0.061496663838624954, 0.04873884841799736, 0.03402084484696388, -0.032143719494342804, -0.005074886605143547, 0.013629933819174767, -0.03387133777141571, -0.0047177341766655445, 0.02508372813463211, -0.017857620492577553, -0.02734292484819889, -0.054619405418634415, 0.017209762707352638, 0.02187766321003437, 0.015000401996076107, 0.03873857855796814, -0.03521689027547836, 0.007433753926306963, 0.002128379186615348, -0.02699407935142517, -0.04076521098613739, 0.01212657056748867, 0.05647991970181465, -0.032858021557331085, 0.011844171211123466, 0.05657958984375, -0.09661388397216797, -0.04269217327237129, -0.05515097826719284, -0.05119738355278969, 0.004979369230568409, 0.06594861298799515, 0.028854593634605408, 0.01795729249715805, -0.06830748170614243, 0.016420705243945122, -0.00008455116767436266, 0.02270825020968914, 0.048904966562986374, 0.01760844513773918, -0.00844291690737009, 0.05265921726822853, -0.014261179603636265, 0.009601586498320103, 0.009211210533976555, 0.02008359506726265, -0.0432569719851017, 0.06285882741212845, 0.07594887912273407, -0.0370774045586586, -0.01581437699496746, 0.00813560001552105, -0.057476624846458435, 0.026545561850070953, 0.030582215636968613, 0.0022238967940211296, 0.023505613207817078, -0.011561771854758263, -0.020399218425154686, 0.01212657056748867, 0.019435737282037735, 0.052958231419324875, 0.06870616227388382, -0.056513141840696335, -0.027874501422047615, -0.04734346270561218, -0.0236551184207201, 0.023372719064354897, 0.020532112568616867, -0.019103502854704857, 0.012367441318929195, 0.016728023067116737, -0.03332315385341644, 0.025615304708480835, 0.007770141586661339, 0.04282506927847862, 0.06212791055440903, -0.005469415802508593, 0.04123033955693245, 0.010498620569705963, 0.008181282319128513, -0.005839026998728514, 0.01687752828001976, 0.06870616227388382, 0.047476354986429214, -0.03124668449163437, 0.01591404713690281, 0.03923693299293518, 0.0382402278482914, 0.005722744856029749, 0.04817404970526695, 0.02315676584839821, -0.016694799065589905, -0.009003563784062862, 0.05053291469812393, 0.005656297784298658, 0.011221230961382389, -0.040599092841148376, -0.037509310990571976, 0.01888754963874817, 0.021562039852142334, -0.02114674635231495, 0.07940412312746048, -0.0025727434549480677, 0.005631380248814821 ]
18,561
traceback2
_load_lines
Private API. force all lines in the stack to be loaded.
def _load_lines(self): """Private API. force all lines in the stack to be loaded.""" for frame in self.stack: frame.line if self.__context__: self.__context__._load_lines() if self.__cause__: self.__cause__._load_lines()
(self)
[ -0.034663256257772446, 0.010786350816488266, -0.028001097962260246, 0.07927800714969635, -0.0639166384935379, -0.0014411716256290674, 0.014609994366765022, 0.039037905633449554, -0.0025609233416616917, -0.03132382780313492, 0.001261677360162139, -0.027884218841791153, -0.01778245158493519, -0.010736258700489998, -0.05483339726924896, 0.009851310402154922, -0.034496285021305084, 0.002517093438655138, -0.026481658220291138, -0.09423863887786865, -0.033110421150922775, 0.04354613274335861, 0.022858379408717155, -0.038036078214645386, -0.006223857868462801, 0.03255941718816757, -0.018316758796572685, -0.019318588078022003, 0.046952348202466965, -0.002322989050298929, -0.016513468697667122, 0.00813150592148304, -0.050325170159339905, -0.03391188383102417, -0.02703266404569149, -0.02703266404569149, 0.014008897356688976, -0.054432664066553116, -0.028785863891243935, -0.009776173159480095, -0.03880414739251137, 0.0252961628139019, 0.045182451605796814, 0.0061570690013468266, -0.025062402710318565, -0.0334443636238575, 0.011412492953240871, 0.02741669863462448, 0.033978674560785294, -0.040941379964351654, 0.01267312653362751, -0.019819501787424088, 0.06328214704990387, 0.01993638090789318, 0.06034345179796219, -0.015762096270918846, -0.011512676253914833, -0.00611115200445056, 0.017632177099585533, -0.027951007708907127, 0.01697263866662979, -0.0028364260215312243, -0.011295612901449203, 0.03165777027606964, 0.05229543149471283, -0.016513468697667122, 0.025613408535718918, 0.017365021631121635, -0.016296405345201492, 0.011796527542173862, -0.0489560067653656, 0.016087690368294716, -0.02638147585093975, 0.0015423980075865984, -0.009258562698960304, -0.017882633954286575, -0.05363120511174202, 0.031507495790719986, 0.037735529243946075, -0.007279951591044664, -0.017231445759534836, 0.04294503480195999, 0.00011707562953233719, 0.02967081218957901, 0.003026355989277363, -0.03937184810638428, 0.08609043806791306, 0.038303229957818985, 0.005338909570127726, 0.02556331641972065, -0.04818793758749962, 0.07527069002389908, -0.048254724591970444, 0.005163589492440224, 0.0304555781185627, 0.01704777590930462, 0.03883754089474678, 0.017548691481351852, -0.01055259071290493, 0.0006611022399738431, 0.011103595606982708, -0.02012004889547825, -0.0010347006609663367, -0.0036629342939704657, -0.028835956007242203, -0.01664704456925392, 0.03329408913850784, -0.013691652566194534, -0.007238208781927824, 0.02292516827583313, -0.018917856737971306, -0.09397148340940475, -0.015211091376841068, 0.02170627750456333, 0.007317520212382078, -0.03391188383102417, -0.051059845834970474, -0.013733395375311375, 0.032375749200582504, 0.024895431473851204, 0.0038966943975538015, -0.005906612146645784, -0.009208470582962036, -0.022891774773597717, 0.008315173909068108, 0.01336605753749609, -0.010277087800204754, 0.018266668543219566, 0.06789055466651917, -0.12609677016735077, 0.05964217334985733, -0.04715271294116974, -0.016012554988265038, -0.01334101241081953, -0.03217538073658943, -0.01946886070072651, -0.03040548600256443, -0.00012535897258203477, 0.024210847914218903, -0.03140731528401375, -0.001601881580427289, 0.0205374788492918, -0.011278916150331497, -0.03603241965174675, -0.0053723035380244255, 0.02901962399482727, 0.03569847717881203, 0.02270810678601265, -0.05152736231684685, 0.003871648572385311, 0.05620256066322327, -0.03763534501194954, -0.06475149840116501, -0.010819744318723679, 0.0005640501622110605, -0.0023584705777466297, -0.05065911263227463, -0.023042049258947372, 0.02270810678601265, -0.02811797894537449, -0.04979086294770241, -0.02806788682937622, 0.01096167042851448, -0.08448751270771027, -0.03586544841527939, 0.04701913893222809, -0.030388789251446724, -0.04424741119146347, -0.039939552545547485, 0.020787935703992844, -0.05770530551671982, -0.012798354960978031, 0.03649993985891342, 0.026314686983823776, 0.047586839646101, 0.02240755781531334, -0.034496285021305084, 0.003339427290484309, -0.045182451605796814, 0.03277647867798805, -0.01116203609853983, -0.01275661215186119, 0.015870628878474236, 0.0018429465126246214, 0.008573980070650578, 0.038303229957818985, 0.04194320738315582, -0.044047046452760696, 0.018700793385505676, 0.04788738861680031, -0.021689580753445625, 0.03733479604125023, 0.047687023878097534, -0.012514503672719002, 0.008260908536612988, -0.009241865016520023, -0.006866697687655687, -0.000307331676594913, 0.01808299869298935, -0.016930896788835526, -0.051627546548843384, 0.027483487501740456, 0.02668202482163906, -0.04685216397047043, -0.013374406844377518, 0.0867583230137825, -0.04277806356549263, 0.0266486294567585, -0.04999122768640518, 0.059107862412929535, -0.041542477905750275, -0.080480195581913, 0.00036890237242914736, -0.013224132359027863, 0.014601645991206169, 0.017665570601820946, -0.05947520211338997, 0.01876758225262165, -0.009116636589169502, 0.0027320689987391233, 0.08602365106344223, 0.0358988456428051, -0.14012236893177032, -0.08589006960391998, -0.047419868409633636, -0.01258964091539383, -0.011128641664981842, 0.01546154823154211, 0.02012004889547825, 0.0073008229956030846, -0.009099939838051796, -0.005196983925998211, -0.059408411383628845, -0.012773309834301472, 0.08081414550542831, 0.02547983080148697, 0.05566825345158577, 0.04034028202295303, 0.010970018804073334, -0.005080103874206543, -0.06024327129125595, 0.010285436175763607, -0.017832541838288307, -0.05596880242228508, -0.01950225606560707, 0.025847168639302254, -0.015787143260240555, -0.007668159902095795, -0.03473004326224327, 0.012865143828094006, 0.018133090808987617, 0.010928275994956493, 0.0076013715006411076, -0.016605302691459656, -0.056035589426755905, -0.08194954693317413, 0.07386813312768936, -0.01132900733500719, 0.023259110748767853, -0.005263772327452898, 0.010444059036672115, 0.017064474523067474, -0.012723218649625778, 0.025095796212553978, -0.012790006585419178, 0.03412894904613495, -0.018049605190753937, -0.03690067306160927, -0.022123705595731735, 0.027066059410572052, 0.05476661026477814, 0.020838025957345963, -0.009567459113895893, 0.05626935139298439, -0.013199086301028728, 0.009266911074519157, -0.027450092136859894, -0.0005037839291617274, -0.030422182753682137, 0.02681560255587101, 0.08602365106344223, -0.007042017299681902, -0.0032851616851985455, -0.000025616407583584078, -0.029086412861943245, -0.08475466817617416, -0.0036211914848536253, -0.04852188006043434, -0.058072641491889954, -0.03586544841527939, 0.052963316440582275, 0.03503059223294258, 0.04044046625494957, 0.004224375821650028, 0.06435076147317886, -0.04718611016869545, -0.03369482234120369, 0.025630105286836624, -0.02798440121114254, 0.05182791128754616, -0.008256734348833561, -0.05416551232337952, 0.0685250461101532, 0.009784522466361523, 0.06685533374547958, -0.04231054335832596, 0.047553446143865585, -0.011136990040540695, -0.03212529048323631, -0.03456307202577591, 0.022474346682429314, 0.08141523599624634, 0.03416234254837036, -0.07353419065475464, 0.018634004518389702, 0.013591469265520573, -0.01743181049823761, 0.0671558827161789, 0.0026882390957325697, 0.01580384001135826, -0.026181111112236977, 0.014008897356688976, 0.015712006017565727, -0.021472517400979996, 0.0456833653151989, 0.035264354199171066, 0.12015259265899658, -0.00964259635657072, -0.02028702199459076, -0.032459232956171036, 0.041809629648923874, -0.031774651259183884, -0.04347934573888779, 0.02235746569931507, 0.043880075216293335, 0.01726483926177025, -0.04985764995217323, 0.004053229931741953, -0.0037088515236973763, -0.046818770468235016, 0.02738330513238907, 0.015845581889152527, -0.010736258700489998, -0.011662949807941914, 0.08468788117170334, -0.0030033974908292294, 0.04391346871852875, 0.041108351200819016, -0.009792870841920376, 0.07820938527584076, -0.04481511563062668, -0.024928824976086617, 0.014484765939414501, 0.021004997193813324, -0.03810286521911621, 0.004445612896233797, 0.01018525380641222, -0.002293769270181656, 0.026965875178575516, 0.029520537704229355, 0.05533431097865105, 0.0281513724476099, -0.032809872180223465, 0.006491011939942837, 0.014267703518271446, 0.009133334271609783, -0.0026736289728432894, -0.020604265853762627, 0.003239244455471635, 0.010018281638622284, -0.04628446325659752, 0.0037985986564308405, 0.021956734359264374, 0.03187483549118042, -0.013190737925469875, 0.019752712920308113, 0.06354930251836777, 0.03877075016498566, -0.010260390117764473, 0.053096894174814224, 0.006900091655552387, 0.011345704086124897, 0.0005241335602477193, -0.041241928935050964, -0.014476417563855648, -0.012088727205991745, 0.021338941529393196, -0.0320918969810009, 0.03473004326224327, -0.04144229367375374, 0.04451456665992737, -0.037434980273246765, -0.018717490136623383, -0.015995856374502182, -0.034663256257772446, -0.02845192141830921, 0.025246070697903633, 0.04648482799530029, 0.002235329244285822, -0.044614750891923904, -0.015753747895359993, 0.034663256257772446, -0.011078550480306149, -0.0022102834191173315, -0.0004229071782901883, -0.007881048135459423, -0.007885223254561424, 0.01664704456925392, -0.004846343770623207, 0.00482129817828536, 0.0046000611037015915, -0.0071296775713562965, -0.03766874223947525, -0.04424741119146347, 0.014693479984998703, -0.05409872159361839, 0.09530725330114365, 0.004207678604871035, 0.023843511939048767, -0.0024273463059216738, 0.010694515891373158, 0.04367971047759056, -0.004074101336300373, 0.03255941718816757, 0.004700243938714266, -0.013416149653494358, -0.09190104156732559, -0.011178732849657536, 0.02703266404569149, -0.01332431472837925, -0.03826983645558357, 0.010076722130179405, -0.022390861064195633, 0.022541135549545288, -0.02613101899623871, -0.05212846025824547, 0.01321578398346901, 0.00614037225022912, 0.009817915968596935, 0.013716697692871094, -0.008085588924586773, 0.021572701632976532, 0.05065911263227463, 0.000815550796687603, -0.0027821604162454605, -0.012180561199784279, -0.024594882503151894, 0.046351250261068344, -0.026414871215820312, -0.0038194700609892607, -0.10352224856615067, 0.004408044274896383, -0.023893602192401886, -0.014267703518271446, -0.07059549540281296, 0.0178158450871706, 0.0014818708878010511, 0.029270080849528313, -0.02327580936253071, 0.037134431302547455, -0.014017246663570404, 0.05446606129407883, -0.00851136539131403, 0.0016154480399563909, 0.04347934573888779, 0.009684339165687561, -0.014476417563855648, 0.026414871215820312, -0.025413041934370995, -0.025813773274421692, 0.05877391993999481, -0.0076723345555365086, -0.026364779099822044, -0.0511266328394413, 0.032242171466350555, 0.021389031782746315, 0.058239612728357315, 0.00884948205202818, -0.01675557717680931, 0.005226203706115484, -0.003963483031839132, -0.05152736231684685, 0.015511640347540379, -0.021355638280510902, 0.016062645241618156, -0.013057161122560501, -0.01721474714577198, -0.03230895847082138, 0.013290921226143837, 0.012539549730718136, 0.005151066463440657, -0.02322571724653244, -0.03369482234120369, 0.005843997932970524, 0.007701554335653782, 0.028218161314725876, -0.0023188148625195026, -0.007935314439237118, 0.04668519273400307, -0.04955710098147392, -0.030522365123033524, -0.01933528482913971, -0.00882443692535162, 0.026414871215820312, -0.010953322052955627, 0.07633931189775467, 0.08221670240163803, 0.041976600885391235, 0.0209382101893425, -0.006319866050034761, 0.035665083676576614, -0.006753991823643446, 0.0035564901772886515, 0.008085588924586773, 0.004608409944921732, -0.001152102486230433, -0.013491286896169186, 0.060710787773132324, 0.030522365123033524, 0.038637176156044006, 0.05747154355049133, -0.025613408535718918, 0.07754150032997131, -0.05920804664492607, 0.00841535720974207, 0.010803047567605972, 0.02314223162829876, 0.04428080841898918, 0.028618892654776573, 0.02127215266227722, 0.06134527921676636, 0.009984888136386871, 0.027566973119974136, -0.041976600885391235, 0.04551639407873154, 0.04668519273400307, 0.012397623620927334, -0.09938135743141174, -0.005935831926763058, -0.012339184060692787, -0.008732602931559086, -0.040640830993652344, 0.02132224291563034, 0.03663351759314537, -0.016404936090111732, -0.0677235871553421, -0.0025421390309929848, 0.027733944356441498, -0.04544960707426071, -0.019702620804309845, 0.03469664976000786, 0.0005797037156298757, -0.006545277778059244, -0.024578185752034187, 0.04090798646211624, -0.07840975373983383, 0.01053589303046465, 0.046351250261068344, -0.015887325629591942, 0.011111944913864136, 0.02521267719566822, 0.04802096635103226, -0.02556331641972065, -0.06759001314640045, -0.029203291982412338, -0.03720122203230858, -0.053864963352680206, 0.08983059227466583, 0.0020850549917668104, 0.026581842452287674, 0.014802011661231518, 0.008532237261533737, 0.009525716304779053, 0.0021194927394390106, 0.013048812747001648, 0.03623278811573982, 0.0005635283887386322, 0.0489560067653656, 0.0003490745148155838, -0.014877148903906345, 0.04979086294770241, -0.017632177099585533, -0.0007440661429427564, 0.00272580748423934, -0.01128726452589035, 0.007576325908303261, -0.02880256064236164, 0.05890749767422676, 0.026698721572756767, 0.00036577164428308606, -0.03040548600256443, 0.011170384474098682, -0.00619463762268424, -0.026631932705640793, 0.025112492963671684, 0.030906399711966515, 0.04661840572953224, 0.029253384098410606, -0.05877391993999481, 0.021505912765860558, -0.020320415496826172, 0.028435224667191505, 0.014693479984998703, -0.0020015693735331297, -0.005543449427932501, -0.04668519273400307, 0.014384583570063114, 0.01734832488000393, -0.005209506489336491, 0.0867583230137825, -0.004437264055013657, 0.006411700509488583, 0.055868618190288544, -0.07413528859615326, -0.06137867644429207, -0.03394527733325958, 0.007960359565913677, -0.009166727773845196, 0.0660872682929039, 0.009367093443870544, 0.02110518142580986, -0.03442949429154396, -0.03002145141363144, 0.018617307767271996, 0.01328257191926241, 0.07446923106908798, 0.019535649567842484, -0.052529193460941315, -0.015678610652685165, 0.019919684156775475, 0.019602438434958458, 0.019702620804309845, -0.02798440121114254, -0.008043845184147358, 0.012072029523551464, -0.018567215651273727, 0.043011825531721115, -0.008377788588404655, -0.010736258700489998, 0.0022415905259549618, -0.007196465972810984, -0.06431736797094345, -0.07927800714969635, -0.015611822716891766, -0.06475149840116501, -0.0015100473538041115, -0.07440244406461716, -0.03027190826833248, 0.09918098896741867, 0.0022582877427339554, 0.047386474907398224, -0.006753991823643446, -0.010118464939296246, 0.024494700133800507, 0.005885740742087364, 0.03720122203230858, -0.006432571914047003, -0.019402073696255684, 0.027450092136859894, -0.005889914929866791, -0.0010571375023573637, 0.002596404869109392, -0.009458928368985653, 0.010118464939296246, 0.04341255500912666, 0.0077182515524327755, 0.022908471524715424, -0.0025212676264345646, 0.03394527733325958, -0.018350154161453247, -0.05366459861397743, -0.028785863891243935, -0.029687508940696716, -0.009993236511945724, -0.02140572853386402, 0.0049131326377391815, -0.03329408913850784, -0.029336869716644287, 0.05363120511174202, -0.010769653134047985, -0.04772041738033295, 0.019151614978909492, -0.013967154547572136, -0.0622803196310997, -0.040507253259420395, 0.11407484114170074, -0.02499561384320259, 0.04217696562409401, 0.049891043454408646, 0.007242382969707251, 0.032676298171281815, 0.003481352934613824, 0.015578428283333778, 0.05643632262945175, -0.031991712749004364, -0.0007941575604490936, -0.04414723068475723, -0.11220476031303406, -0.0011802788358181715, 0.021906644105911255, 0.013199086301028728, 0.018316758796572685, -0.023559659719467163, -0.04337916150689125, -0.03493041172623634, -0.008999756537377834, -0.05920804664492607, 0.028969531878829002, -0.1017189547419548, 0.04411383718252182, 0.02594735100865364, -0.06441755592823029, 0.017799148336052895, -0.027132846415042877, -0.005075929686427116, -0.04117513820528984, -0.020470689982175827, -0.015444851480424404, -0.027099452912807465, 0.0036921543069183826, -0.020403901115059853, 0.06979402899742126, -0.05490018427371979, -0.007100457325577736, 0.024377819150686264, 0.05790567025542259, -0.021338941529393196, -0.04698574170470238, 0.03048897162079811, -0.0046125841327011585, 0.01470182929188013, -0.0002982004371006042, -0.02197343111038208, 0.03599902614951134, -0.013132298365235329, -0.05366459861397743, -0.033110421150922775, 0.007605545688420534, 0.03336087986826897, -0.06939329952001572, 0.0205374788492918, -0.08669153600931168, -0.0024649149272590876, 0.015444851480424404, 0.013374406844377518, 0.035097382962703705, 0.008519713766872883, 0.04835490882396698, -0.015286228619515896, 0.05506715551018715, 0.013967154547572136, 0.03826983645558357, 0.011863315477967262, 0.0000548527023056522, 0.0012011502403765917, -0.028318343684077263, 0.0004915219615213573, 0.004193068481981754, 0.01838354766368866, -0.022457648068666458, -0.021906644105911255, -0.046384647488594055, -0.0451490581035614, 0.050759296864271164, 0.10065034031867981, 0.00480042677372694, -0.015703657642006874, 0.04808775335550308 ]
18,562
traceback2
format
Format the exception. If chain is not *True*, *__cause__* and *__context__* will not be formatted. The return value is a generator of strings, each ending in a newline and some containing internal newlines. `print_exception` is a wrapper around this method which just prints the lines to a file. The message indicating which exception occurred is always the last string in the output.
def format(self, chain=True): """Format the exception. If chain is not *True*, *__cause__* and *__context__* will not be formatted. The return value is a generator of strings, each ending in a newline and some containing internal newlines. `print_exception` is a wrapper around this method which just prints the lines to a file. The message indicating which exception occurred is always the last string in the output. """ if chain: if self.__cause__ is not None: for line in self.__cause__.format(chain=chain): yield line yield _cause_message elif (self.__context__ is not None and not self.__suppress_context__): for line in self.__context__.format(chain=chain): yield line yield _context_message yield u('Traceback (most recent call last):\n') for line in self.stack.format(): yield line for line in self.format_exception_only(): yield line
(self, chain=True)
[ 0.0012791212648153305, -0.009221467189490795, 0.03242255002260208, 0.05388638749718666, -0.02042965404689312, -0.08629079163074493, -0.021590841934084892, -0.019957920536398888, 0.053124357014894485, -0.06303074210882187, 0.032186683267354965, 0.00214320863597095, -0.01355324313044548, 0.001177063793875277, -0.01698237657546997, 0.08549247682094574, -0.03196896240115166, -0.055011287331581116, 0.03394661098718643, 0.012219690717756748, 0.0005581980803981423, 0.015857474878430367, 0.007171243894845247, -0.07380802184343338, 0.01941361464560032, 0.0005074528162367642, 0.020865099504590034, -0.08280722796916962, 0.013226659037172794, -0.012591633945703506, -0.0029007024131715298, -0.053124357014894485, -0.0535598024725914, -0.03126136213541031, -0.0025763860903680325, 0.029319999739527702, -0.08099287003278732, -0.015666967257857323, 0.0040618907660245895, 0.00541131803765893, 0.014360631816089153, 0.02093767374753952, 0.019504332914948463, -0.024765966460108757, -0.006840123794972897, -0.03020903468132019, 0.02197185717523098, 0.049894802272319794, -0.04945935681462288, -0.051418863236904144, 0.02079252526164055, 0.03126136213541031, 0.027179060503840446, -0.067348912358284, -0.043834853917360306, -0.00944372545927763, 0.00431590061634779, -0.006409214343875647, 0.04049643501639366, -0.01226504985243082, 0.00430682860314846, 0.030626337975263596, 0.005678935907781124, 0.032531410455703735, -0.029084134846925735, -0.050584256649017334, -0.01957690715789795, -0.032368119806051254, -0.009008280001580715, 0.03447277098894119, 0.03362002596259117, -0.009108069352805614, -0.04532262310385704, 0.025165123865008354, -0.008908490650355816, -0.043871138244867325, -0.0981929749250412, 0.026489604264497757, 0.04840702936053276, -0.020338935777544975, 0.006323032081127167, 0.05838599056005478, -0.034055471420288086, -0.0369221530854702, 0.08469416201114655, -0.05181802064180374, -0.018760446459054947, 0.008577370084822178, 0.0029143099673092365, 0.03670443221926689, -0.019685767590999603, -0.0020196055993437767, -0.019885346293449402, -0.017318032681941986, -0.030644480139017105, -0.006513539701700211, 0.02866683155298233, -0.008695303462445736, 0.03969812020659447, -0.029410718008875847, 0.043181683868169785, 0.003980244509875774, -0.0047672213986516, -0.01941361464560032, -0.01483236439526081, -0.011421374045312405, 0.002605869434773922, -0.04140361398458481, 0.06829237937927246, -0.019177747890353203, -0.015295024961233139, -0.08556505292654037, 0.0167374387383461, -0.05932945758104324, 0.06284930557012558, -0.017862338572740555, 0.055700741708278656, -0.004324972163885832, 0.01783512346446514, -0.03156980127096176, 0.06299445778131485, -0.016320137307047844, -0.06455480307340622, 0.0031524442601948977, -0.030263464897871017, 0.019685767590999603, -0.060018911957740784, -0.0442340113222599, 0.07743673026561737, -0.06176069378852844, 0.015422030352056026, -0.02130054496228695, 0.00493051391094923, -0.03695844113826752, -0.026181163266301155, -0.004948657471686602, -0.06963500380516052, 0.006749405991286039, -0.0025877258740365505, 0.04394371435046196, -0.02162712812423706, 0.005923873744904995, 0.0021296008490025997, 0.016837228089571, -0.0348900742828846, -0.03958925977349281, 0.03091663494706154, 0.025001831352710724, 0.002855343511328101, 0.008078422397375107, 0.043326832354068756, 0.016773724928498268, 0.003839631797745824, 0.03267655894160271, -0.013535099104046822, 0.05479356646537781, -0.040242426097393036, -0.010604913346469402, 0.011058502830564976, 0.025019975379109383, -0.03556138649582863, -0.04194791987538338, 0.03576096519827843, 0.049713365733623505, 0.0026671038940548897, 0.05544673278927803, -0.014315272681415081, 0.04151247441768646, 0.02264316938817501, -0.019867204129695892, -0.024149084463715553, -0.0010149056324735284, -0.025981584563851357, 0.011321584694087505, -0.03447277098894119, 0.0772915855050087, -0.003909938037395477, 0.05443069338798523, -0.048479605466127396, -0.02128240093588829, 0.03737574443221092, -0.04535891115665436, 0.004758149851113558, 0.002137538744136691, -0.02164527215063572, -0.05062054470181465, 0.01890559494495392, -0.008486652746796608, 0.017372462898492813, 0.02264316938817501, -0.009253217838704586, -0.005052982829511166, 0.025292128324508667, 0.056208763271570206, 0.0030639944598078728, 0.016601361334323883, -0.02148197963833809, -0.029138565063476562, 0.06869153678417206, -0.038754653185606, -0.04398000240325928, 0.06469994783401489, -0.013244802132248878, -0.018615297973155975, 0.03020903468132019, 0.005937481299042702, 0.014977512881159782, 0.009851955808699131, -0.06814722716808319, 0.031007351353764534, -0.0005834290059283376, -0.01872415840625763, -0.015149876475334167, 0.016465285792946815, 0.07377173751592636, -0.02266131155192852, 0.05087455362081528, 0.0027464821469038725, 0.01339902263134718, 0.07678356766700745, 0.019849060103297234, -0.07910594344139099, 0.001778069301508367, -0.010831708088517189, 0.0006457975250668824, 0.038028910756111145, -0.006096237804740667, -0.0027147307991981506, 0.006341175641864538, -0.0028893626295030117, 0.001968576805666089, -0.004300024826079607, -0.06557084619998932, 0.03592425957322121, 0.04358084127306938, 0.03567024692893028, -0.0030980135779827833, -0.010006176307797432, -0.03006388619542122, -0.01649250090122223, -0.02249802090227604, 0.0635024756193161, 0.005270705558359623, -0.033928465098142624, 0.07017930597066879, -0.0943465381860733, 0.043363120406866074, 0.017118453979492188, -0.0480804480612278, -0.008491188287734985, 0.007928737439215183, 0.0872342586517334, -0.01534945610910654, -0.04670153558254242, -0.01870601437985897, -0.0724291130900383, 0.02866683155298233, -0.05290663614869118, 0.01081356406211853, 0.03810148686170578, -0.007066918537020683, -0.012546274811029434, -0.0038691151421517134, -0.021336831152439117, 0.01690073125064373, -0.023604776710271835, -0.05562816932797432, -0.002326912246644497, 0.03309386223554611, 0.08796000480651855, -0.011820532381534576, 0.02233472838997841, -0.017318032681941986, 0.05352351441979408, -0.06357505172491074, 0.016283849254250526, -0.009307648986577988, 0.020520372316241264, -0.048334456980228424, 0.04691925644874573, -0.0369221530854702, 0.06753034889698029, -0.013235730119049549, -0.010840780101716518, 0.022407302632927895, -0.00007236163946799934, 0.00528431311249733, -0.010840780101716518, -0.01974019780755043, 0.045395199209451675, 0.06128896027803421, 0.03291242569684982, -0.024167228490114212, -0.07707386463880539, 0.022371014580130577, -0.018025631085038185, 0.019994208589196205, -0.031007351353764534, 0.024094654247164726, -0.038210347294807434, 0.024965545162558556, 0.021209826692938805, 0.0920967310667038, 0.05189059302210808, 0.010160395875573158, -0.032513268291950226, 0.022280298173427582, -0.042492229491472244, -0.01278214156627655, -0.012945433147251606, 0.012437413446605206, 0.012954505160450935, 0.057623960077762604, -0.00954351481050253, 0.04085930809378624, 0.032513268291950226, -0.009171571582555771, 0.01701866276562214, -0.026888763532042503, 0.0531606450676918, -0.008119245059788227, 0.02629002556204796, 0.06651430577039719, -0.004554034676402807, 0.026852475479245186, -0.007915129885077477, -0.041294753551483154, 0.021735990419983864, -0.0257638618350029, 0.04964079335331917, -0.014895866625010967, -0.06753034889698029, -0.013308304361999035, 0.03777490183711052, 0.010006176307797432, 0.03195081651210785, 0.024820396676659584, -0.01919589191675186, -0.0162294190376997, -0.06176069378852844, 0.006685903761535883, 0.035107798874378204, -0.006926305592060089, -0.014269913546741009, -0.05207202956080437, -0.0012757193762809038, 0.003714894875884056, 0.05766024813055992, -0.023278193548321724, 0.1132158413529396, -0.0020196055993437767, 0.02712462842464447, 0.02692504972219467, 0.0011266019428148866, -0.04398000240325928, -0.002156816190108657, -0.05290663614869118, -0.04652009904384613, -0.003846435807645321, 0.050221387296915054, 0.06088980287313461, 0.003338415874168277, -0.02282460406422615, -0.0013630352914333344, -0.04982222989201546, 0.005393174476921558, 0.006427357904613018, 0.015013800002634525, -0.016701150685548782, 0.014088477939367294, -0.04296395927667618, -0.00003933468178729527, 0.02246173284947872, -0.02073809504508972, -0.040931880474090576, 0.00029341544723138213, -0.016093341633677483, 0.028104381635785103, -0.02148197963833809, 0.00825532153248787, 0.06803836673498154, 0.0426010899245739, -0.02594529651105404, -0.029574010521173477, 0.007502363994717598, -0.02077438123524189, 0.04234708100557327, -0.007311856374144554, -0.014587425626814365, -0.004429297521710396, -0.021082822233438492, -0.06274044513702393, 0.000281083513982594, -0.01767183281481266, -0.005746974144130945, -0.049023911356925964, 0.008033063262701035, 0.030317896977066994, -0.047282129526138306, -0.03911752626299858, -0.011385086923837662, 0.03523480147123337, 0.04887876287102699, 0.009058174677193165, -0.01596633717417717, -0.04873361438512802, -0.0009247548296116292, 0.013888898305594921, -0.003937153611332178, 0.015276881866157055, -0.0033429518807679415, -0.008228106424212456, -0.03316643461585045, -0.03503522276878357, 0.024965545162558556, 0.009942673146724701, -0.02284274809062481, -0.0029891522135585546, -0.021917426958680153, 0.04898762330412865, 0.01868787221610546, -0.036686286330223083, -0.011348799802362919, 0.027560073882341385, 0.025636857375502586, -0.016964232549071312, -0.08999208360910416, 0.00472639873623848, 0.06778435409069061, 0.013090581633150578, -0.019286608323454857, -0.04202049598097801, 0.04071415960788727, 0.03485378623008728, 0.015911906957626343, -0.054648417979478836, -0.01680094003677368, 0.005189059302210808, 0.027251634746789932, 0.03496265038847923, 0.04035128653049469, 0.0002819339861162007, 0.017581114545464516, -0.012228762730956078, -0.007107741665095091, 0.004613001365214586, 0.006046343129128218, 0.023223763331770897, -0.023423342034220695, 0.06274044513702393, 0.009616089053452015, 0.015403886325657368, 0.003728502430021763, -0.04898762330412865, 0.006073558237403631, 0.0052525619976222515, 0.06397420912981033, -0.04252851381897926, -0.030626337975263596, 0.08208148926496506, 0.02079252526164055, 0.04314539581537247, 0.03777490183711052, 0.011376014910638332, -0.02402208000421524, -0.09470940381288528, 0.05595475435256958, -0.03158794716000557, 0.015757685527205467, -0.016057055443525314, 0.009833811782300472, -0.006708582863211632, -0.06088980287313461, 0.020302649587392807, 0.018633440136909485, 0.03839178383350372, 0.04354455694556236, 0.00309120980091393, 0.031497228890657425, -0.02951958030462265, -0.03242255002260208, -0.07159450650215149, 0.013371807523071766, -0.007896986790001392, 0.0027260705828666687, -0.0048080445267260075, 0.030317896977066994, -0.03534366562962532, -0.004780829418450594, 0.046810396015644073, 0.012029183097183704, -0.013108725659549236, -0.048479605466127396, -0.0021125914063304663, -0.04717326909303665, -0.019939778372645378, -0.06219613924622536, -0.07054217904806137, -0.052289754152297974, -0.04717326909303665, 0.0411858931183815, -0.044016286730766296, 0.061869554221630096, -0.021735990419983864, 0.04314539581537247, -0.0013687051832675934, 0.050584256649017334, 0.010650272481143475, 0.05609990283846855, -0.02643517404794693, 0.018978169187903404, 0.0063275680877268314, 0.018778588622808456, -0.007561330683529377, -0.0783076286315918, -0.06785693019628525, 0.01417012419551611, -0.0063275680877268314, 0.082371786236763, 0.06821980327367783, 0.054866138845682144, 0.01355324313044548, 0.005960160866379738, -0.00043346110032871366, -0.0019322896841913462, -0.008482116274535656, 0.08084772527217865, 0.008586442098021507, 0.015993552282452583, 0.022860892117023468, -0.003401918336749077, 0.047282129526138306, 0.0450323261320591, -0.05199945718050003, 0.02489297091960907, 0.03759346529841423, -0.03242255002260208, 0.012255977839231491, -0.025709431618452072, -0.01088613923639059, 0.029084134846925735, 0.030299752950668335, -0.043363120406866074, -0.023622920736670494, 0.01098592858761549, -0.04993109032511711, 0.01494122575968504, -0.061180099844932556, 0.009275897406041622, -0.03937153518199921, 0.032876137644052505, 0.014732574112713337, 0.025709431618452072, 0.03864579275250435, 0.05374123901128769, 0.007035167422145605, 0.028938986361026764, 0.0783076286315918, 0.0067131188698112965, 0.015431101433932781, 0.008958385325968266, 0.03634155914187431, -0.043000247329473495, -0.06626030057668686, -0.0015807580202817917, 0.026997623965144157, 0.004610733594745398, 0.03635970503091812, -0.01671929471194744, 0.005225346423685551, -0.013861683197319508, 0.049023911356925964, 0.007833483628928661, 0.03456348925828934, 0.005034839268773794, 0.06328475475311279, 0.004349919501692057, 0.06212356686592102, 0.023967649787664413, 0.04699183255434036, 0.030771486461162567, -0.04274623841047287, -0.0021828976459801197, -0.016528787091374397, -0.05482985079288483, 0.012909146025776863, -0.0022747493349015713, -0.025455420836806297, 0.002644424559548497, 0.05326950550079346, -0.0003909371152985841, -0.08287980407476425, 0.03755717724561691, 0.0015660164644941688, 0.07983168214559555, 0.02418537251651287, -0.009226002730429173, -0.030517475679516792, -0.05595475435256958, 0.039770692586898804, -0.012473700568079948, 0.04372598975896835, 0.03318458050489426, 0.024167228490114212, 0.05798683315515518, -0.027179060503840446, 0.0754772275686264, 0.020320791751146317, -0.002009399700909853, 0.00541131803765893, 0.010042463429272175, 0.010514196008443832, -0.03224111348390579, -0.048661042004823685, -0.06923583894968033, -0.04931420832872391, 0.007815340533852577, 0.021500123664736748, -0.028104381635785103, -0.015004727989435196, 0.026054158806800842, 0.016465285792946815, -0.09790267795324326, 0.004912370350211859, 0.005306992679834366, -0.0007745033944956958, -0.015041015110909939, -0.008994672447443008, -0.03316643461585045, -0.08556505292654037, 0.008219034411013126, 0.062413863837718964, -0.013190371915698051, -0.08948405832052231, -0.036650002002716064, -0.002589993877336383, 0.06284930557012558, 0.02128240093588829, -0.03394661098718643, 0.02059294655919075, 0.04441544786095619, 0.001519523561000824, -0.08483930677175522, -0.022552451118826866, -0.04307282343506813, 0.04202049598097801, -0.020828811451792717, -0.10820821672677994, 0.03846435621380806, -0.023205619305372238, 0.018415717408061028, 0.02073809504508972, -0.022098861634731293, -0.027033912017941475, -0.054866138845682144, 0.026507748290896416, 0.016419926658272743, 0.016810012981295586, -0.03635970503091812, 0.03055376373231411, 0.019667623564600945, -0.0009514031698927283, 0.005039375275373459, 0.009362079203128815, -0.01235576719045639, -0.01046883687376976, -0.026380743831396103, 0.05258005112409592, 0.04430658370256424, -0.041657622903585434, -0.017943985760211945, -0.03334787115454674, -0.04789901152253151, -0.02489297091960907, -0.01817985251545906, 0.03704915940761566, -0.00835964735597372, -0.020157501101493835, -0.0076384409330785275, -0.04006098955869675, 0.05678935721516609, 0.023114901036024094, -0.041294753551483154, -0.0401698537170887, -0.033239010721445084, 0.046447526663541794, -0.0003966069780290127, 0.024765966460108757, 0.005597289651632309, -0.05043910816311836, -0.07620297372341156, -0.06088980287313461, -0.05207202956080437, 0.0272879209369421, -0.01959504932165146, 0.022207723930478096, 0.01627477817237377, -0.09753980487585068, 0.018941881135106087, 0.002394950482994318, -0.02761450596153736, -0.02623559534549713, 0.0061642760410904884, 0.00017661626043263823, -0.0012428341433405876, -0.026507748290896416, 0.027922945097088814, 0.0011010875459760427, 0.008654479868710041, 0.017943985760211945, 0.008141924627125263, 0.030408615246415138, 0.04753613844513893, -0.014787005260586739, 0.030499331653118134, -0.038899801671504974, 0.03686772286891937, 0.019939778372645378, 0.010505123995244503, -0.004658360034227371, -0.0019141461234539747, 0.043689705431461334, -0.02730606496334076, -0.053124357014894485, -0.010078750550746918, 0.05265262350440025, -0.06861896067857742, -0.0024493811652064323, -0.014523923397064209, -0.018143564462661743, 0.0008408408029936254, 0.039407823234796524, -0.010269257239997387, 0.011394158937036991, 0.045250050723552704, -0.008037598803639412, 0.00001230537691299105, 0.05403153598308563, 0.04633866250514984, -0.03378331661224365, -0.012800284661352634, 0.05130999907851219, -0.03726688027381897, -0.01081356406211853, 0.006799300666898489, 0.0059556253254413605, 0.0274874996393919, 0.009316720068454742, -0.0184610765427351, -0.012219690717756748, 0.014487636275589466, -0.03505336865782738, 0.01407033484429121, 0.015213378705084324, 0.0511285662651062, -0.07148564606904984, 0.00703063141554594, -0.01710030995309353, -0.0262718815356493, 0.009579801931977272, -0.0021386726293712854, -0.04082302004098892, 0.03655928373336792, 0.053487230092287064, 0.03601497411727905, 0.018996311351656914, -0.015358527190983295, 0.04187534749507904 ]
18,563
traceback2
format_exception_only
Format the exception part of the traceback. The return value is a generator of strings, each ending in a newline. Normally, the generator emits a single string; however, for SyntaxError exceptions, it emites several lines that (when printed) display detailed information about where the syntax error occurred. The message indicating which exception occurred is always the last string in the output.
def format_exception_only(self): """Format the exception part of the traceback. The return value is a generator of strings, each ending in a newline. Normally, the generator emits a single string; however, for SyntaxError exceptions, it emites several lines that (when printed) display detailed information about where the syntax error occurred. The message indicating which exception occurred is always the last string in the output. """ if self.exc_type is None: yield _format_final_exc_line(None, self._str) return stype = getattr(self.exc_type, '__qualname__', self.exc_type.__name__) smod = u(self.exc_type.__module__) if smod not in ("__main__", "builtins", "exceptions"): stype = smod + u('.') + stype if not issubclass(self.exc_type, SyntaxError): yield _format_final_exc_line(stype, self._str) return # It was a syntax error; show exactly where the problem was found. filename = _some_fs_str(self.filename) or u("<string>") lineno = str(self.lineno) or u('?') yield u(' File "{0}", line {1}\n').format(filename, lineno) badline = None if self.text is not None: if type(self.text) is bytes: # Not decoded - get the line via linecache which will decode # for us. if self.lineno: badline = linecache.getline(filename, int(lineno)) if not badline: # But we can't for some reason, so fallback to attempting a # u cast. badline = u(self.text) else: badline = self.text offset = self.offset if badline is not None: yield u(' {0}\n').format(badline.strip()) if offset is not None: caretspace = badline.rstrip('\n') offset = min(len(caretspace), offset) - 1 caretspace = caretspace[:offset].lstrip() # non-space whitespace (likes tabs) must be kept for alignment caretspace = ((c.isspace() and c or ' ') for c in caretspace) yield u(' {0}^\n').format(''.join(caretspace)) msg = self.msg or u("<no detail available>") yield u("{0}: {1}\n").format(stype, msg)
(self)
[ 0.008910243399441242, 0.0007458194741047919, 0.03320031985640526, 0.033721987158060074, -0.00904997531324625, -0.07198992371559143, 0.013740312308073044, 0.019171228632330894, 0.05104875564575195, -0.051197800785303116, 0.03826793283224106, 0.03987019509077072, -0.00798801239579916, 0.024052534252405167, -0.024630092084407806, 0.07564158737659454, -0.036162640899419785, -0.013954567722976208, 0.019394800066947937, 0.0044690947979688644, -0.043596379458904266, 0.027089376002550125, 0.03016347996890545, -0.038528766483068466, 0.023661283776164055, 0.0015906158369034529, 0.008165005594491959, -0.05280006304383278, 0.060513269156217575, -0.04244126379489899, -0.016059864312410355, -0.05481220409274101, -0.057569582015275955, -0.001314645167440176, 0.013423586264252663, -0.02360539138317108, -0.026008781045675278, -0.0400565043091774, 0.01515626348555088, -0.04087626561522484, 0.008654068224132061, 0.005617226008325815, 0.026847172528505325, -0.01433650217950344, -0.025375328958034515, -0.042702097445726395, 0.023568129166960716, -0.0049930899403989315, -0.10567464679479599, -0.030368419364094734, 0.028319016098976135, 0.025207651779055595, 0.027685565873980522, -0.013060283847153187, -0.007671286351978779, 0.002957660472020507, -0.018770664930343628, 0.00043695358908735216, -0.012967129237949848, -0.00839789304882288, 0.009920971468091011, 0.06304707378149033, 0.007303325459361076, 0.015920132398605347, -0.005812850780785084, -0.05391791835427284, -0.005654487758874893, -0.06151933968067169, -0.02157462015748024, 0.02377306856215, -0.006404383108019829, 0.014979269355535507, -0.028337648138403893, 0.03605085238814354, 0.0456085205078125, -0.050564348697662354, -0.11111488193273544, 0.04232947900891304, 0.0547749400138855, -0.016320696100592613, 0.010908410884439945, 0.035100676119327545, -0.017382659018039703, -0.027201160788536072, 0.07239980250597, -0.0658789724111557, -0.034448593854904175, 0.03383377194404602, 0.02584110200405121, 0.02133241668343544, -0.03202657401561737, -0.01221257634460926, -0.04143519327044487, -0.0032837018370628357, -0.038864124566316605, 0.001025865669362247, 0.04206864535808563, -0.06334517151117325, -0.004182644188404083, -0.02084801346063614, 0.07497087121009827, 0.047098997980356216, 0.027238423004746437, -0.030200740322470665, 0.004320047330111265, 0.00009104412310989574, -0.003709884360432625, -0.03506341576576233, 0.03769037500023842, -0.06334517151117325, -0.011998319998383522, -0.10433322191238403, 0.014625282026827335, -0.02101569063961506, 0.01670263148844242, -0.04169602692127228, -0.021444203332066536, -0.015053792856633663, 0.047024473547935486, -0.02615782804787159, 0.07597693800926208, -0.03513793647289276, -0.10977344959974289, 0.02697758935391903, 0.02721979096531868, -0.01597602479159832, -0.027592411264777184, -0.028896575793623924, 0.024630092084407806, -0.03418776020407677, -0.0050955601036548615, 0.01954384706914425, 0.019469324499368668, -0.02483503334224224, -0.04177055135369301, 0.018379414454102516, -0.07053671032190323, 0.0207548588514328, -0.00797403883188963, 0.012445462867617607, 0.01887313462793827, -0.01221257634460926, 0.03197067975997925, 0.010396060533821583, -0.07463551312685013, 0.007573473732918501, 0.011187874712049961, 0.033796511590480804, 0.03713144734501839, 0.02483503334224224, 0.030610620975494385, 0.0077271792106330395, 0.013395640067756176, 0.026865804567933083, 0.0013821822358295321, 0.015910815447568893, -0.03905043378472328, -0.008439811877906322, 0.003330279141664505, -0.008491047658026218, -0.01295781321823597, -0.08972656726837158, 0.07217623293399811, 0.00393345532938838, 0.036162640899419785, 0.050303515046834946, -0.031747110188007355, -0.03169121593236923, -0.005617226008325815, -0.020233191549777985, -0.026437291875481606, 0.028374910354614258, -0.0400565043091774, 0.04061543196439743, -0.024499675258994102, 0.03711281716823578, -0.0009001069120131433, 0.06368052959442139, -0.019171228632330894, -0.016078494489192963, 0.04732256755232811, -0.04322376102209091, 0.0021751613821834326, 0.023586759343743324, -0.012687664479017258, -0.010051388293504715, 0.016395220533013344, -0.008416523225605488, 0.02541259117424488, 0.02190997637808323, 0.0033791852183640003, -0.04177055135369301, 0.005202687811106443, 0.021369678899645805, -0.02222670242190361, 0.022170810028910637, 0.005267896223813295, -0.008742565289139748, 0.06368052959442139, -0.05689886584877968, -0.0557437501847744, 0.045645784586668015, -0.009781239554286003, -0.003365212120115757, 0.0044341618195176125, 0.040578171610832214, 0.0032860306091606617, -0.0015952736139297485, -0.11767296493053436, 0.04594387859106064, -0.0022147521376609802, -0.03211972862482071, 0.005165426060557365, 0.06069957837462425, 0.03707555681467056, -0.056675296276807785, 0.05779315158724785, 0.025226281955838203, -0.02133241668343544, 0.052092086523771286, 0.07735563069581985, -0.04963280260562897, -0.034690797328948975, -0.04534769058227539, 0.04478875920176506, -0.021965868771076202, 0.013488794676959515, 0.02017729915678501, 0.010563738644123077, 0.0034048028755933046, 0.015221471898257732, -0.037876684218645096, -0.030442943796515465, 0.050303515046834946, 0.025207651779055595, 0.016031917184591293, 0.02190997637808323, -0.05369434505701065, -0.0212392620742321, -0.040503647178411484, -0.07508265972137451, 0.040093764662742615, -0.0043619670905172825, -0.012193945236504078, 0.05395517870783806, -0.08294490724802017, 0.035100676119327545, 0.0719153955578804, -0.0791442021727562, 0.00034991218126378953, 0.009697400033473969, 0.0991910845041275, -0.020698966458439827, -0.009585614316165447, 0.007573473732918501, -0.05294910818338394, 0.009753293357789516, -0.03882686421275139, 0.014522811397910118, 0.04121162369847298, 0.011467338539659977, 0.005454205442219973, -0.003348910016939044, -0.011476654559373856, 0.05246470496058464, -0.015100370161235332, -0.05891100689768791, 0.02330729551613331, 0.03946031257510185, 0.07239980250597, -0.007545527536422014, 0.0354732945561409, -0.016134386882185936, 0.04322376102209091, -0.06863635033369064, 0.023679913952946663, -0.023512236773967743, 0.015771083533763885, -0.011597755365073681, 0.010042072273790836, -0.022617951035499573, 0.03245508298277855, 0.0034746688324958086, 0.036907877773046494, -0.00269682751968503, -0.007233459502458572, -0.030778300017118454, -0.07974039018154144, 0.0022170809097588062, 0.0608113631606102, 0.0212392620742321, 0.015379834920167923, -0.001348413759842515, -0.046465545892715454, 0.04918565973639488, 0.023195510730147362, 0.029380980879068375, -0.009105867706239223, 0.017531707882881165, -0.057904936373233795, -0.006893444806337357, 0.0258224718272686, 0.06785385310649872, 0.036330316215753555, 0.006572061218321323, -0.0376531146466732, 0.0032394533045589924, -0.040652692317962646, -0.04985637590289116, -0.0359576977789402, 0.011206505820155144, -0.011467338539659977, 0.07743015140295029, -0.0021914634853601456, 0.03601359203457832, 0.04952101781964302, 0.016907570883631706, 0.027182530611753464, -0.025524377822875977, 0.047769710421562195, -0.045720309019088745, -0.022357119247317314, 0.0735921785235405, -0.04508685693144798, 0.03530561551451683, 0.0011818998027592897, -0.04624197259545326, -0.01087114866822958, -0.018109265714883804, 0.0480305440723896, 0.007983354851603508, -0.0276296716183424, -0.048924826085567474, 0.029026992619037628, 0.0014485549181699753, -0.009948917664587498, 0.002680525416508317, -0.012650403194129467, 0.0005100217531435192, -0.08339205384254456, 0.043111976236104965, 0.024387890473008156, 0.0225620586425066, -0.00792746152728796, -0.010396060533821583, -0.014969954267144203, 0.0037494751159101725, 0.023251403123140335, 0.008626122027635574, 0.06882266700267792, 0.0010252834763377905, 0.014215401373803616, -0.020251823589205742, -0.023717176169157028, -0.023158248513936996, -0.023847592994570732, -0.02476050890982151, -0.06945611536502838, -0.025766579434275627, 0.06148207560181618, 0.021295156329870224, 0.024071164429187775, -0.014597334899008274, 0.02403390221297741, -0.03398282080888748, -0.021965868771076202, 0.008020616136491299, 0.01250135526061058, -0.015622036531567574, 0.017718017101287842, -0.026269614696502686, 0.035100676119327545, 0.005305157974362373, -0.05443958193063736, -0.054551370441913605, -0.022822892293334007, -0.005072271451354027, 0.021313786506652832, -0.07653586566448212, -0.014960638247430325, 0.06356874108314514, 0.03189615532755852, -0.010936357080936432, -0.043670903891325, -0.02263658307492733, -0.040093764662742615, 0.01099225040525198, -0.010144542902708054, -0.023437712341547012, 0.02272973768413067, -0.041397932916879654, -0.04341007024049759, 0.03750406578183174, 0.01954384706914425, -0.027517886832356453, -0.035585079342126846, 0.03737365081906319, -0.0005452458863146603, -0.04583209380507469, -0.013414271175861359, 0.0014438972575590014, 0.05548291653394699, 0.01442965678870678, 0.028989730402827263, 0.001588286948390305, -0.05089970678091049, 0.027033481746912003, 0.03170984610915184, 0.004667048342525959, 0.041472453624010086, 0.014299239963293076, -0.028877945616841316, -0.010433321818709373, -0.032976750284433365, 0.011839956976473331, 0.0069074179045856, -0.015379834920167923, 0.001215668278746307, -0.02565479278564453, 0.03636758029460907, 0.003602756420150399, -0.02150009572505951, 0.031579431146383286, 0.033871036022901535, -0.010209750384092331, -0.011271714232861996, -0.08078372478485107, -0.019897835329174995, 0.04117435961961746, -0.013432902283966541, -0.024238843470811844, -0.04095079004764557, 0.045981138944625854, 0.03206383436918259, -0.004494712222367525, -0.08264681696891785, -0.03267865628004074, 0.017671439796686172, 0.05265101417899132, 0.03785805404186249, 0.022170810028910637, 0.009902340359985828, 0.028505325317382812, 0.008742565289139748, 0.009436567313969135, -0.03670293465256691, 0.004769518505781889, 0.040913525968790054, -0.015323941595852375, 0.054216012358665466, -0.004625129047781229, 0.07318229973316193, -0.017261559143662453, -0.03128133341670036, 0.013516740873456001, -0.026195090264081955, 0.03696376830339432, -0.012687664479017258, 0.007508265785872936, 0.05581827089190483, -0.003640018403530121, 0.07333134859800339, 0.021854083985090256, 0.004350322764366865, 0.030387049540877342, -0.08570228517055511, 0.0487385168671608, -0.027275685220956802, -0.008318711072206497, 0.0018910396611317992, -0.008053220808506012, -0.008155690506100655, -0.036740198731422424, 0.015771083533763885, 0.009292177855968475, 0.03014484792947769, 0.002408047905191779, -0.005705723073333502, 0.02630687691271305, -0.019320277497172356, 0.02068033441901207, -0.034374069422483444, -0.0034839843865484, 0.006981941871345043, -0.003008895553648472, 0.014112930744886398, 0.044341620057821274, -0.05410422757267952, 0.005272553768008947, 0.017345398664474487, -0.007084412034600973, -0.00002474420762155205, -0.043931737542152405, -0.012044897302985191, -0.028561219573020935, -0.014206085354089737, -0.04508685693144798, -0.019990989938378334, -0.02958592027425766, -0.03245508298277855, 0.04389447718858719, -0.06994052231311798, 0.0345044881105423, -0.03841698169708252, 0.05507303401827812, 0.018807925283908844, 0.06528278440237045, 0.03139312192797661, 0.03713144734501839, -0.04266483336687088, 0.0166467372328043, 0.026847172528505325, 0.02198450081050396, -0.006953995209187269, -0.0376531146466732, -0.032250143587589264, 0.003672622609883547, -0.006404383108019829, 0.0639413595199585, 0.05861291289329529, 0.0033186348155140877, -0.010675524361431599, -0.008719276636838913, 0.0026898407377302647, -0.006646585185080767, 0.022413011640310287, 0.053247205913066864, 0.01225915364921093, 0.026344137266278267, 0.010750047862529755, -0.03653525933623314, 0.028952468186616898, 0.06718314439058304, -0.07001504302024841, -0.005253922659903765, 0.027555149048566818, -0.0021239263005554676, 0.02019593119621277, 0.0019876875448971987, 0.008682014420628548, 0.016693314537405968, 0.05775589123368263, -0.03769037500023842, -0.021872714161872864, -0.0038193410728126764, -0.029325086623430252, -0.016320696100592613, -0.06677325814962387, -0.04542221128940582, -0.0103774294257164, 0.004718283656984568, 0.024984080344438553, 0.02688443474471569, 0.04322376102209091, 0.01495132315903902, 0.013134807348251343, 0.030908716842532158, 0.0709465891122818, 0.03480258211493492, 0.02608330547809601, 0.00904997531324625, 0.026772649958729744, 0.004154697991907597, -0.07653586566448212, -0.0019853587727993727, 0.05149589478969574, 0.005668461322784424, 0.03316305950284004, -0.0278718750923872, 0.03679608926177025, -0.036665674299001694, 0.02966044470667839, 0.03483984246850014, 0.021965868771076202, -0.012119421735405922, 0.015426412224769592, -0.04281388223171234, 0.015109686180949211, 0.021369678899645805, 0.016246173530817032, 0.04568304494023323, -0.011420761235058308, 0.05227839574217796, 0.004816095810383558, -0.021369678899645805, 0.011318291537463665, -0.02926919423043728, -0.009282861836254597, 0.03728049620985985, 0.07582789659500122, 0.01565929874777794, -0.053321726620197296, 0.0323432981967926, -0.03806299343705177, 0.05704791471362114, 0.06114671751856804, 0.02647455409169197, -0.008765853941440582, -0.0506761372089386, 0.022357119247317314, -0.021313786506652832, 0.027685565873980522, 0.027089376002550125, 0.028076814487576485, 0.058799222111701965, -0.01986057311296463, 0.07959134131669998, 0.01650700531899929, -0.025151757523417473, 0.012231206521391869, 0.01928301528096199, 0.003667964832857251, -0.0056591457687318325, -0.0581657700240612, -0.09904203563928604, -0.010321536101400852, 0.006548772566020489, -0.00003613382068579085, 0.029194669798016548, -0.016153018921613693, -0.000392996211303398, 0.02982812188565731, -0.05704791471362114, 0.015743138268589973, 0.025207651779055595, 0.030200740322470665, -0.006940022110939026, -0.02157462015748024, -0.04121162369847298, -0.049409233033657074, -0.010936357080936432, 0.007005230523645878, -0.013423586264252663, -0.08868324011564255, -0.03605085238814354, 0.04519864171743393, 0.031337227672338486, 0.015174894593656063, -0.02043813280761242, 0.025375328958034515, 0.08093276619911194, -0.03275317698717117, -0.07165456563234329, 0.007936777547001839, -0.05794220045208931, 0.020289085805416107, -0.0031789029017090797, -0.10887916386127472, 0.046800900250673294, -0.016246173530817032, 0.02949276566505432, 0.07128194719552994, 0.017289504408836365, -0.032231513410806656, -0.05052708834409714, 0.02613919787108898, -0.0492229238152504, -0.03994471952319145, -0.03720597177743912, 0.02166777476668358, 0.0603269599378109, -0.026213722303509712, -0.006409040652215481, 0.012948498129844666, 0.018230367451906204, -0.013358378782868385, -0.03115091845393181, 0.05518482252955437, 0.09397441893815994, -0.030871454626321793, -0.003018211107701063, 0.003598098875954747, -0.041956860572099686, -0.02246890403330326, -0.032827701419591904, -0.0187054555863142, 0.03864055499434471, -0.015603405423462391, -0.03506341576576233, -0.04765792563557625, 0.014504180289804935, 0.024406520649790764, -0.054216012358665466, -0.07102110981941223, -0.05645172297954559, 0.02034497819840908, -0.04087626561522484, 0.030610620975494385, 0.05168220400810242, -0.058389339596033096, -0.0506761372089386, -0.023474974557757378, -0.05607910454273224, -0.004068529698997736, -0.03875233978033066, -0.004105791449546814, 0.026660863310098648, -0.0902482345700264, 0.013255908153951168, -0.00996754877269268, -0.006008475553244352, -0.0027736800257116556, 0.014466919004917145, 0.03064788319170475, 0.01275287289172411, -0.012110105715692043, -0.01756896823644638, 0.011113351210951805, -0.05045256391167641, -0.000586001027841121, 0.015053792856633663, 0.04460244998335838, 0.02418294921517372, 0.00472294120118022, 0.022655213251709938, -0.06561814248561859, 0.007503607776015997, 0.02867300435900688, 0.025151757523417473, -0.027685565873980522, -0.015305310487747192, 0.02084801346063614, -0.010442637838423252, 0.022375749424099922, -0.012687664479017258, 0.025692055001854897, -0.06796564161777496, -0.048589471727609634, -0.005966555792838335, -0.024741878733038902, 0.026530446484684944, 0.04136066883802414, -0.008947505615651608, 0.005822166334837675, 0.041956860572099686, -0.019711526110768318, -0.0451241172850132, 0.03750406578183174, 0.046875424683094025, 0.006553430575877428, -0.025449853390455246, 0.0390876941382885, -0.06230183690786362, 0.012985759414732456, -0.030349789187312126, 0.04307471588253975, 0.01701004058122635, 0.04013102874159813, -0.031020501628518105, 0.024574199691414833, 0.01262245699763298, -0.025803841650485992, -0.022673845291137695, 0.03791394829750061, 0.023083724081516266, -0.06088588759303093, 0.054066963493824005, -0.004862673114985228, -0.014969954267144203, 0.025524377822875977, -0.0026921697426587343, -0.023847592994570732, 0.05809124559164047, 0.05976802855730057, 0.007200855296105146, 0.012175314128398895, -0.036423470824956894, 0.0506761372089386 ]
18,564
traceback2
_format_final_exc_line
null
def _format_final_exc_line(etype, value): valuestr = _some_str(value) if value == 'None' or value is None or not valuestr: line = u("%s\n") % etype else: line = u("%s: %s\n") % (etype, valuestr) return line
(etype, value)
[ 0.0007953047170303762, 0.008871993981301785, 0.03731939196586609, 0.03790682554244995, -0.0044446359388530254, -0.09060318768024445, 0.037388499826192856, -0.00007187708251876757, 0.02132043056190014, -0.06230264902114868, 0.03441677242517471, 0.01907435618340969, -0.025035090744495392, -0.03870159015059471, 0.025363363325595856, 0.05943458527326584, -0.03035655990242958, -0.037595830857753754, 0.04723667353391647, 0.004112043883651495, 0.006785736419260502, 0.0034792558290064335, -0.01446126401424408, -0.03880525752902031, 0.025380641222000122, 0.011524089612066746, 0.035557087510824203, -0.04167332127690315, 0.03548797592520714, -0.01311361975967884, 0.022668074816465378, -0.06237176060676575, -0.04979374259710312, -0.011558644473552704, 0.03491782024502754, 0.023825665935873985, -0.024775929749011993, -0.014357599429786205, 0.0003385309246368706, 0.023514671251177788, -0.03801048919558525, 0.023013625293970108, -0.013847912661731243, -0.04471416026353836, -0.04972463473677635, -0.03229163959622383, 0.02145865000784397, 0.016906030476093292, -0.0721508264541626, -0.015411525964736938, -0.001126276794821024, 0.028836140409111977, 0.01679372601211071, -0.025225143879652023, -0.0014826251426711679, 0.001520419609732926, 0.02270262874662876, 0.020352890715003014, -0.027263889089226723, 0.018003150820732117, -0.03491782024502754, 0.06351207196712494, -0.03600630164146423, 0.018314145505428314, 0.01674189418554306, -0.027661271393299103, 0.004548300988972187, 0.005718850996345282, -0.017329327762126923, 0.019800011068582535, 0.014392154291272163, -0.015385610051453114, -0.08569637686014175, 0.02116493321955204, 0.05411311611533165, -0.04029111936688423, -0.05732673034071922, 0.04364295303821564, 0.061991654336452484, -0.032429859042167664, 0.007787831127643585, 0.027764935046434402, 0.010245555080473423, 0.011731419712305069, 0.063581183552742, -0.038632482290267944, -0.04955185949802399, 0.022287970408797264, -0.025415197014808655, 0.07712674140930176, -0.045785363763570786, -0.08272465318441391, -0.04858431965112686, 0.007174480240792036, -0.028335092589259148, 0.05687751621007919, 0.06772778183221817, -0.07906182110309601, -0.0003506791836116463, 0.004105565138161182, 0.08134245127439499, -0.01769215613603592, 0.07353302091360092, -0.031790591776371, -0.0034015069250017405, -0.07298014312982559, 0.026849228888750076, -0.013968855142593384, 0.01769215613603592, 0.017251579090952873, 0.013623305596411228, -0.09509533643722534, -0.03901258483529091, -0.05908903479576111, 0.023393729701638222, 0.008785606361925602, -0.05601364001631737, 0.0012385804438963532, 0.05494243651628494, -0.0075675430707633495, 0.03662829101085663, -0.031427763402462006, -0.0604366809129715, 0.015109170228242874, 0.005062306299805641, 0.009381679818034172, -0.061093226075172424, -0.01679372601211071, 0.021441372111439705, -0.042502641677856445, -0.011394508183002472, 0.03474504500627518, -0.014167546294629574, -0.03289635106921196, -0.02733299881219864, 0.06672568619251251, -0.08541993796825409, 0.026572788134217262, 0.017070166766643524, 0.008202491328120232, -0.028058653697371483, 0.0222188588231802, -0.002978208241984248, -0.059054482728242874, 0.014608122408390045, 0.012906289659440517, 0.008686261251568794, 0.08521261066198349, 0.007774873171001673, 0.018072260543704033, 0.003025721525773406, 0.020335612818598747, -0.026745563372969627, 0.021234042942523956, 0.01055654976516962, -0.01584346406161785, -0.0100382249802351, -0.07159794121980667, 0.010539272800087929, -0.00796060636639595, -0.03721572458744049, -0.09910371899604797, 0.10698225349187851, -0.05169426649808884, 0.02588168904185295, 0.06292463839054108, 0.03562619537115097, 0.0322570838034153, 0.03890892118215561, 0.0004686520842369646, -0.022979069501161575, -0.025380641222000122, 0.004807463381439447, 0.029198968783020973, -0.0161026269197464, 0.08327753096818924, 0.010029586032032967, 0.004209229722619057, -0.009528539143502712, -0.01822775788605213, -0.0013843593187630177, -0.007507071830332279, -0.010807073675096035, 0.07857805490493774, 0.05432044714689255, -0.056324638426303864, -0.0031466640066355467, -0.03956546634435654, 0.006280369590967894, 0.011040319688618183, -0.021752366796135902, -0.008189532905817032, -0.014115714468061924, -0.0005218343576416373, -0.014996866695582867, -0.006984427571296692, 0.02360105887055397, -0.040671225637197495, 0.024067550897598267, -0.04868798330426216, -0.047720443457365036, 0.02717750146985054, -0.04080944508314133, 0.037595830857753754, 0.01525602862238884, 0.02866336517035961, 0.06855710595846176, 0.022426189854741096, -0.09799795597791672, 0.022840850055217743, -0.022685352712869644, 0.001457788748666644, -0.04564714431762695, 0.012215189635753632, 0.015161002986133099, -0.046027250587940216, -0.031790591776371, 0.023877499625086784, -0.03904714062809944, 0.05739584192633629, -0.008487570099532604, -0.043953947722911835, 0.058950815349817276, -0.025950798764824867, 0.060747675597667694, -0.006003929767757654, 0.012120163068175316, 0.008932465687394142, 0.022719906643033028, 0.004518065135926008, -0.01674189418554306, 0.02897435985505581, -0.025035090744495392, 0.052592698484659195, 0.006677752360701561, 0.04053300619125366, -0.0006030926015228033, -0.016957862302660942, -0.0478932186961174, -0.0016014078864827752, -0.05677385255694389, 0.0011791890719905496, -0.027954988181591034, 0.01117854006588459, 0.033673837780952454, -0.037734050303697586, 0.0478932186961174, 0.06506705284118652, -0.0803057998418808, -0.016016239300370216, 0.02081938274204731, 0.046683792024850845, 0.004764269571751356, -0.038494259119033813, 0.018072260543704033, -0.03405394405126572, 0.0029695695266127586, -0.05898537114262581, 0.06530893594026566, -0.028836140409111977, -0.02042200043797493, 0.006647516507655382, 0.008651706390082836, 0.0023886137641966343, -0.017234303057193756, -0.04969007894396782, -0.051003169268369675, -0.0006570847472175956, 0.03894347697496414, 0.05570264533162117, -0.03344923257827759, 0.07726496458053589, -0.011074874550104141, 0.008189532905817032, -0.04167332127690315, 0.023376451805233955, 0.0071874381974339485, -0.0019437182927504182, 0.01055654976516962, -0.004047253634780645, 0.011645032092928886, 0.01031466480344534, 0.017674878239631653, 0.013053148053586483, -0.02031833492219448, -0.029941899701952934, 0.020439278334379196, -0.06506705284118652, -0.0002082748105749488, 0.061542440205812454, 0.024914149194955826, 0.06340841203927994, -0.01129948254674673, 0.003997580613940954, 0.00850052759051323, 0.029440853744745255, 0.087631456553936, -0.030080121010541916, 0.013295033015310764, -0.025916242972016335, 0.007381810341030359, 0.018210479989647865, 0.07118328660726547, -0.037284836173057556, 0.0035526850260794163, -0.04222619906067848, 0.02906074747443199, -0.026106296107172966, -0.014945033937692642, -0.022547131404280663, 0.005394897889345884, 0.02712566778063774, -0.017813097685575485, -0.007083773147314787, 0.029250800609588623, 0.07145972549915314, -0.0005469407187774777, 0.00428481912240386, -0.034503158181905746, 0.07311836630105972, -0.004431677516549826, -0.04868798330426216, 0.04274452477693558, -0.021199487149715424, 0.018918858841061592, -0.05715395510196686, -0.02553613856434822, 0.009969115257263184, 0.018245035782456398, 0.040671225637197495, -0.016379065811634064, -0.05483877286314964, -0.047616779804229736, 0.014392154291272163, 0.051348716020584106, -0.026019908487796783, 0.012949483469128609, -0.03939269110560417, -0.011515450663864613, -0.009744507260620594, 0.003939269110560417, 0.003617475740611553, -0.0016759170684963465, 0.01488456316292286, 0.04844610020518303, -0.00830183643847704, 0.011092152446508408, 0.004639007616788149, 0.05480421707034111, 0.0758136510848999, -0.057603172957897186, 0.029406297951936722, -0.02285812795162201, -0.026952894404530525, 0.02638273686170578, 0.027643993496894836, -0.03966912999749184, -0.08279375731945038, -0.003196336794644594, 0.07083773612976074, 0.07056128978729248, -0.00395222706720233, 0.018711527809500694, 0.022184304893016815, -0.039081696420907974, 0.0018681292422115803, -0.002755760680884123, 0.005001835059374571, 0.09433512389659882, 0.048618871718645096, -0.040429338812828064, 0.012120163068175316, 0.049275416880846024, -0.033414676785469055, -0.02688378281891346, 0.05767228081822395, 0.0239466093480587, 0.00010204521095147356, -0.051348716020584106, -0.043504733592271805, 0.02265079692006111, -0.014193463139235973, -0.03980734944343567, -0.011714141815900803, -0.034105777740478516, -0.0010010149562731385, 0.0362827405333519, -0.0022223179694265127, -0.03866703435778618, 0.029527241364121437, -0.030995827168226242, -0.030736664310097694, 0.08500528335571289, -0.028386926278471947, 0.01997278444468975, 0.00729110324755311, -0.036697402596473694, -0.01279398612678051, -0.0278167687356472, 0.0048420182429254055, -0.003019242314621806, 0.038425151258707047, 0.015878017991781235, 0.05117594450712204, -0.007610736880451441, -0.05286913737654686, -0.018469642847776413, 0.027453940361738205, 0.005295552313327789, -0.0030797135550528765, 0.0011943068820983171, -0.07505343854427338, 0.004366887267678976, -0.04899897798895836, 0.036593735218048096, 0.002915577497333288, -0.0053862594068050385, 0.01125628873705864, -0.018158648163080215, -0.023376451805233955, -0.019644513726234436, 0.011861001141369343, 0.016404982656240463, 0.07311836630105972, -0.008016757667064667, 0.0020247064530849457, -0.03358745202422142, -0.006319243926554918, 0.08362308144569397, -0.010919377207756042, -0.007831024937331676, -0.018953412771224976, -0.010254194028675556, 0.014046603813767433, 0.015065976418554783, -0.026866506785154343, 0.009338486939668655, -0.021251320838928223, 0.03234347328543663, 0.03780316188931465, -0.024257604032754898, 0.025121478363871574, -0.02767854928970337, 0.03890892118215561, 0.03877070173621178, -0.016171736642718315, 0.011722780764102936, -0.031134048476815224, 0.0018206160748377442, 0.012327493168413639, -0.01287173479795456, 0.03441677242517471, -0.026296349242329597, 0.013459169305860996, 0.010772518813610077, -0.030874885618686676, -0.02216702699661255, -0.0149795887991786, 0.017597129568457603, 0.002047383226454258, -0.030788497999310493, 0.05549531802535057, -0.009131156839430332, 0.004392803180962801, 0.04689112305641174, -0.0299591775983572, 0.025760745629668236, -0.015532468445599079, -0.014564928598701954, -0.012681681662797928, -0.03631729632616043, -0.018193203955888748, 0.006254453677684069, 0.05739584192633629, 0.026814673095941544, 0.04212253540754318, 0.07885449379682541, -0.011783252470195293, 0.004245944786816835, 0.010349219664931297, -0.0021488885395228863, 0.002673692535609007, -0.012396602891385555, 0.013148174621164799, -0.01224974449723959, 0.04595813900232315, 0.0024058911949396133, -0.02569163590669632, 0.014651316218078136, 0.05739584192633629, 0.02290995977818966, 0.004077489022165537, -0.03766494244337082, -0.0259335208684206, 0.035056039690971375, -0.027488496154546738, -0.013606027700006962, -0.03814871236681938, -0.0018638098845258355, 0.009433512575924397, 0.05328379571437836, -0.027194779366254807, -0.007096731569617987, -0.060194794088602066, 0.031134048476815224, -0.05183248594403267, 0.048031438142061234, 0.0517633780837059, -0.02145865000784397, -0.006815972272306681, 0.036593735218048096, 0.05445866659283638, 0.020888492465019226, -0.02747121825814247, -0.04858431965112686, -0.005083903204649687, 0.03237802907824516, -0.0031099491752684116, 0.03303457051515579, 0.03469321131706238, -0.007282464299350977, 0.04561258852481842, -0.006872124038636684, -0.009822256863117218, -0.008180893957614899, 0.032170698046684265, 0.01973089948296547, 0.014539012685418129, -0.009122517891228199, 0.019955508410930634, -0.022374358028173447, 0.001855171169154346, 0.024810483679175377, -0.03502148389816284, 0.03170420601963997, -0.001975033665075898, -0.06060945615172386, 0.034451328217983246, 0.0016165256965905428, -0.04913719743490219, 0.0038075281772762537, -0.013407336547970772, -0.06292463839054108, -0.04150054603815079, -0.01292356662452221, -0.03991101682186127, 0.04001468047499657, -0.0020797785837203264, -0.039323579519987106, -0.003762174630537629, -0.021251320838928223, 0.008383904583752155, 0.0803057998418808, 0.05051939934492111, -0.05853615701198578, 0.05673929676413536, 0.013994771987199783, 0.056117307394742966, 0.04108588397502899, 0.006803013850003481, 0.02182147651910782, 0.0010566269047558308, 0.025898966938257217, -0.03915080428123474, -0.015592940151691437, 0.00555471470579505, -0.02569163590669632, 0.02588168904185295, -0.010867544449865818, 0.034364938735961914, -0.06192254647612572, -0.019990062341094017, -0.013424614444375038, -0.008440056815743446, -0.006379715166985989, -0.00103772955480963, -0.014081159606575966, 0.022892681881785393, 0.028335092589259148, 0.04080944508314133, -0.035004206001758575, -0.047582224011421204, 0.04129321500658989, -0.04982829838991165, 0.00008982948202174157, 0.02121676504611969, -0.009001575410366058, -0.015497913584113121, -0.008258642628788948, 0.0681769996881485, -0.04765133187174797, 0.017234303057193756, -0.010945294052362442, -0.00140703609213233, 0.08175711333751678, 0.010245555080473423, 0.043055519461631775, -0.009070685133337975, -0.03362200781702995, 0.052696362137794495, -0.05356023833155632, 0.03721572458744049, -0.013701054267585278, 0.05546076223254204, 0.05255814269185066, -0.04937908425927162, 0.05221259221434593, 0.009398957714438438, -0.05494243651628494, 0.002721205586567521, 0.03377750515937805, 0.050553951412439346, -0.012707598507404327, 0.0017515061190351844, -0.049620967358350754, -0.019454460591077805, 0.01708744280040264, 0.002984687453135848, -0.012906289659440517, -0.006029846146702766, 0.020214669406414032, 0.030874885618686676, -0.045336149632930756, -0.005442411173135042, 0.010487440042197704, 0.04848065227270126, -0.009373041801154613, -0.04008379206061363, -0.016698699444532394, -0.12481263279914856, -0.012526184320449829, 0.07954559475183487, -0.062129873782396317, -0.06530893594026566, -0.04844610020518303, 0.02275446243584156, -0.010617021471261978, -0.020456554368138313, -0.035246092826128006, -0.016776448115706444, 0.029198968783020973, -0.005952097475528717, -0.06572359800338745, -0.0036066772881895304, -0.016327233985066414, 0.07304925471544266, -0.022979069501161575, -0.08196444064378738, -0.03707750514149666, 0.006211259867995977, 0.03141048923134804, 0.03894347697496414, 0.0005685376236215234, -0.018417811021208763, 0.020732995122671127, 0.04333195835351944, -0.024067550897598267, -0.001626244280487299, -0.01485864631831646, 0.02548430673778057, 0.01745891012251377, -0.04467960447072983, 0.031479597091674805, 0.0021715653128921986, 0.04198431596159935, -0.028507867828011513, -0.009485345333814621, -0.03946179896593094, 0.07837072014808655, -0.05273091793060303, -0.010625660419464111, -0.01739843748509884, -0.003842083038762212, 0.014945033937692642, -0.016681421548128128, -0.04526703804731369, 0.006137830205261707, 0.028801586478948593, 0.01292356662452221, -0.0443340539932251, 0.017441632226109505, -0.0069541921839118, -0.030028287321329117, -0.05241992324590683, -0.011999220587313175, 0.007476836442947388, -0.0220633614808321, 0.027540327981114388, -0.0018746083369478583, -0.08452150970697403, -0.03146231919527054, -0.06727857142686844, -0.08085867762565613, -0.00026024229009635746, -0.00830183643847704, -0.042364418506622314, -0.007891496643424034, -0.023324619978666306, 0.0015787312295287848, 0.09025763720273972, 0.009969115257263184, -0.0022784697357565165, -0.0036066772881895304, 0.026607343927025795, 0.006885081995278597, -0.02111309953033924, 0.002550590317696333, -0.030131952837109566, -0.03870159015059471, -0.024223050102591515, 0.004021337255835533, 0.06655291467905045, 0.00011446340795373544, -0.02584713324904442, -0.028335092589259148, 0.007498433347791433, -0.044195834547281265, 0.026019908487796783, -0.02037016674876213, -0.039530910551548004, 0.003932789899408817, 0.058812595903873444, 0.02455132082104683, -0.007913093082606792, 0.007057857234030962, 0.01700105518102646, -0.07339480519294739, -0.052247148007154465, 0.01083298958837986, 0.03479687497019768, 0.001437271712347865, 0.05103772133588791, -0.016612311825156212, 0.013346865773200989, 0.05421678349375725, -0.000462173018604517, -0.07201260328292847, 0.041224103420972824, -0.006293328013271093, -0.01520419679582119, -0.011005764827132225, 0.04775499925017357, 0.006142149679362774, -0.041224103420972824, 0.03196336701512337, 0.04219164326786995, 0.004699478857219219, 0.02415393851697445, -0.038839809596538544, 0.02688378281891346, 0.015273306518793106, -0.020646607503294945, -0.03408849984407425, 0.06102411448955536, 0.07747229188680649, -0.10041680932044983, 0.05276547372341156, 0.04457594081759453, 0.01626676321029663, 0.05376756563782692, 0.0035829206462949514, 0.008453015238046646, 0.015428803861141205, 0.04924086481332779, 0.027108391746878624, 0.01339005958288908, -0.062129873782396317, -0.018504198640584946 ]
18,565
traceback2
<lambda>
null
_identity = lambda:None
()
[ 0.008659189566969872, -0.04149685055017471, 0.07129118591547012, 0.04543131962418556, -0.007961410097777843, -0.014392749406397343, -0.005195513367652893, -0.008970247581601143, 0.04280834272503853, -0.026297032833099365, -0.019369682297110558, 0.0036717483308166265, 0.010735712945461273, 0.01950419321656227, 0.005002153106033802, 0.0044767167419195175, -0.004468309693038464, 0.07445221394300461, 0.01926879771053791, -0.039613690227270126, -0.002267782809212804, 0.01886526308953762, 0.011912690475583076, -0.016998913139104843, -0.04459062218666077, 0.05259406566619873, 0.018512168899178505, -0.01553609874099493, 0.016528122127056122, -0.01518300548195839, -0.02239619381725788, -0.04206852614879608, 0.008360741659998894, 0.025254568085074425, 0.03820131719112396, -0.003657036228105426, -0.03409871086478233, 0.11749594658613205, -0.05629313737154007, -0.05884885787963867, 0.0046826875768601894, -0.006233775522559881, -0.03725973516702652, -0.0007014573784545064, -0.06382579356431961, 0.04173224791884422, 0.056259509176015854, -0.011164468713104725, 0.03685620054602623, -0.0018684512469917536, 0.04351452738046646, 0.03756238520145416, 0.046204760670661926, 0.036889828741550446, -0.031189894303679466, 0.07653714716434479, 0.042270295321941376, -0.005590641405433416, 0.0007177459192462265, 0.0523250438272953, 0.010811376385390759, 0.0029466464184224606, 0.015855563804507256, -0.02666693925857544, 0.022261682897806168, 0.027204986661672592, -0.05235866829752922, 0.032417312264442444, -0.0015374263748526573, 0.051988761872053146, -0.01910065859556198, -0.05494802072644234, -0.007225798908621073, 0.01590600609779358, 0.03430047631263733, -0.061001043766736984, -0.06893723458051682, 0.012677725404500961, 0.09072812646627426, -0.015351145528256893, -0.03075273148715496, -0.03662080317735672, -0.025523589923977852, 0.06248067319393158, 0.007999241352081299, -0.02279972843825817, 0.039075642824172974, -0.003200957551598549, -0.06470011919736862, 0.037226106971502304, -0.048390574753284454, 0.0007419159519486129, -0.04953392595052719, 0.04368266835808754, 0.012021981179714203, 0.04334638640284538, 0.021858148276805878, -0.01112243440002203, 0.049903832376003265, -0.03598187491297722, 0.020059052854776382, 0.004005925729870796, -0.012383481487631798, -0.015191412530839443, -0.005430908873677254, -0.022665217518806458, 0.026717381551861763, -0.0051786997355520725, 0.003707478055730462, 0.014106912538409233, -0.053031228482723236, -0.013039225712418556, -0.04576759785413742, 0.01553609874099493, -0.006250589620321989, -0.06816378980875015, -0.0034027250949293375, -0.017570586875081062, -0.010760934092104435, 0.013400726020336151, -0.03887387365102768, -0.013224178925156593, -0.102497898042202, -0.024598821997642517, 0.05034099519252777, -0.011156062595546246, 0.05474625155329704, -0.010744119994342327, 0.04442248120903969, -0.0031778384000062943, 0.01783961057662964, 0.0020082173869013786, -0.013879924081265926, 0.06335499882698059, -0.03302261605858803, -0.026851894333958626, 0.04166499152779579, 0.035040292888879776, -0.009886608459055424, 0.0550825297832489, -0.07707519084215164, -0.014106912538409233, -0.008095921948552132, 0.03863848000764847, 0.06459923088550568, -0.02337140403687954, -0.036150012165308, 0.017536960542201996, 0.004804588854312897, -0.004791978280991316, 0.059857696294784546, 0.02560766041278839, -0.0011275861179456115, 0.045666713267564774, -0.018512168899178505, 0.026313846930861473, 0.015208226628601551, -0.04459062218666077, -0.01952100731432438, -0.06120281293988228, 0.029424428939819336, 0.02177407778799534, 0.008003444410860538, -0.026397917419672012, 0.024548381567001343, -0.011307387612760067, 0.04731448367238045, 0.008945026434957981, 0.0440189465880394, 0.018663495779037476, -0.047583505511283875, -0.036990709602832794, -0.05757099762558937, 0.031139453873038292, 0.001449153176508844, 0.0799671933054924, -0.021505054086446762, 0.05017285421490669, -0.03213147819042206, 0.060832906514406204, 0.012047202326357365, -0.013737005181610584, -0.05084541440010071, 0.026364289224147797, 0.048861365765333176, 0.021404171362519264, 0.03789866343140602, -0.005531792528927326, 0.048693228513002396, -0.025422707200050354, -0.013022411614656448, 0.013459574431180954, -0.005914310459047556, 0.03779778257012367, 0.05434271693229675, -0.019319240003824234, -0.053602904081344604, -0.00118538411334157, -0.0060782465152442455, -0.04240480437874794, -0.026313846930861473, -0.026364289224147797, -0.00384409143589437, -0.009541922248899937, -0.0324341282248497, 0.017284750938415527, -0.017167052254080772, 0.04802066832780838, -0.07640263438224792, 0.0289200097322464, 0.0005532843642868102, -0.019571449607610703, -0.02818019688129425, 0.06221165135502815, 0.02624659053981304, -0.06873546540737152, 0.002877288730815053, -0.002803727751597762, 0.025237753987312317, 0.06920626014471054, 0.05797453224658966, -0.015796715393662453, 0.034973036497831345, -0.039479177445173264, 0.08729808032512665, 0.013081260956823826, 0.014451597817242146, -0.046372901648283005, 0.005519182421267033, -0.026297032833099365, 0.023220079019665718, -0.02024400793015957, -0.015721052885055542, -0.02015993744134903, 0.023741310462355614, -0.052156902849674225, -0.015401586890220642, -0.03026512637734413, -0.06399393081665039, 0.004325391259044409, -0.02416165918111801, 0.03236687183380127, 0.07714244723320007, 0.04432159662246704, 0.018360843881964684, 0.036150012165308, -0.015435215085744858, 0.09516701102256775, -0.06439746171236038, 0.0006993556162342429, -0.012829051353037357, -0.06352313607931137, -0.000933174742385745, -0.007032438647001982, 0.022530706599354744, -0.03285447880625725, -0.018259959295392036, 0.009810945019125938, 0.03068547695875168, -0.024464311078190804, 0.020193565636873245, -0.013030818663537502, -0.00915520079433918, 0.025758985430002213, -0.03446861729025841, -0.042841967195272446, -0.04280834272503853, 0.014745842665433884, 0.019453750923275948, 0.010096782818436623, 0.08050523698329926, -0.009298119693994522, 0.024296171963214874, -0.03221554681658745, -0.022614775225520134, -0.05346839129924774, -0.020344890654087067, 0.0055822343565523624, -0.029273103922605515, 0.012753387913107872, 0.03500666469335556, 0.011013143695890903, -0.05726834759116173, -0.017637843266129494, -0.047987040132284164, 0.02095019444823265, -0.014678586274385452, -0.0538046695291996, 0.0024233118165284395, -0.04472513124346733, -0.013863109983503819, 0.04311099275946617, -0.009735282510519028, 0.022782914340496063, 0.0152586679905653, 0.021101519465446472, -0.06237978860735893, -0.00943263154476881, 0.04297647997736931, 0.01016403827816248, -0.010609608143568039, -0.00964280590415001, -0.027574893087148666, -0.040757037699222565, 0.01433390099555254, -0.0032030593138188124, -0.03330845385789871, 0.04065615311264992, -0.007549467962235212, 0.030382825061678886, 0.018192704766988754, 0.022261682897806168, -0.044287968426942825, 0.04025261849164963, 0.05155159905552864, 0.015267075039446354, 0.014670180156826973, 0.011954725719988346, 0.06093379110097885, 0.12644097208976746, -0.025658102706074715, -0.027120916172862053, -0.043077364563941956, 0.037226106971502304, -0.020899752154946327, -0.05686481297016144, -0.02192540280520916, -0.007112304680049419, -0.024750148877501488, 0.05804178863763809, -0.07936188578605652, -0.020126309245824814, 0.004527158569544554, 0.0029802743811160326, -0.09200599044561386, -0.0008322909707203507, 0.014602923765778542, 0.00907953828573227, 0.046440158039331436, -0.01958826370537281, -0.022345751523971558, -0.034317292273044586, -0.023892637342214584, 0.00943263154476881, 0.0016246488085016608, -0.03374561667442322, 0.007045049220323563, -0.023169636726379395, 0.06543993204832077, -0.0576382540166378, 0.029676638543605804, -0.004543972667306662, 0.008491049520671368, 0.036990709602832794, 0.08292645215988159, 0.051820624619722366, -0.013249400071799755, 0.002522093942388892, -0.02522093988955021, 0.0011822315864264965, 0.06406118720769882, -0.0493321567773819, -0.011467120610177517, 0.0012421312276273966, 0.05851257964968681, 0.026835080236196518, -0.029996104538440704, 0.02160593867301941, 0.017957309260964394, -0.07573007047176361, -0.05578871816396713, -0.01878119260072708, -0.02031126245856285, -0.006448153406381607, -0.01365293562412262, -0.011139248497784138, -0.0216900072991848, 0.035040292888879776, -0.03863848000764847, -0.0043968502432107925, -0.011256946250796318, 0.0152586679905653, 0.017486518248915672, 0.02787754498422146, -0.08830691874027252, 0.023287333548069, 0.005947938188910484, 0.026633311063051224, -0.01790686696767807, 0.02577579952776432, -0.0014974932419136167, -0.043884433805942535, 0.00384409143589437, -0.05067727342247963, 0.02137054316699505, 0.028045684099197388, -0.012837458401918411, -0.031105825677514076, -0.05185425281524658, -0.03739424794912338, 0.03853759542107582, 0.01514097023755312, 0.03107219748198986, 0.031038569286465645, 0.001576308743096888, 0.009323340840637684, 0.015847157686948776, 0.02448112517595291, 0.0367889441549778, -0.03863848000764847, -0.006292624399065971, -0.07055137306451797, -0.04183313250541687, -0.10364124923944473, 0.07882384210824966, -0.050946298986673355, 0.06510365009307861, 0.03098812699317932, 0.011307387612760067, -0.019453750923275948, 0.02192540280520916, 0.013905144296586514, -0.025422707200050354, 0.05165248364210129, -0.0035813734866678715, -0.02480059117078781, 0.02616252191364765, 0.001117077423259616, -0.000112377674668096, 0.02769259177148342, -0.07149295508861542, -0.06278332322835922, 0.025120055302977562, -0.034081894904375076, 0.04600299522280693, 0.008293485268950462, 0.012820644304156303, 0.007297258358448744, 0.025674916803836823, 0.09483072906732559, 0.03668805956840515, 0.06214439496397972, -0.017301565036177635, -0.046944573521614075, 0.02305193804204464, -0.007982427254319191, -0.04778527468442917, 0.09503249824047089, 0.03725973516702652, -0.0021795094944536686, 0.055687833577394485, 0.008911398239433765, 0.018764378502964973, -0.026549242436885834, 0.03611638396978378, -0.013341876678168774, -0.06412844359874725, -0.005855461582541466, 0.025960752740502357, -0.00169610814191401, -0.0039954171516001225, 0.029340360313653946, 0.004506140947341919, -0.007679775822907686, 0.003192550502717495, 0.04264020174741745, -0.0025473148562014103, 0.008776887319982052, -0.035847362130880356, -0.021908588707447052, 0.017234308645129204, -0.023270519450306892, -0.03092087246477604, -0.04691094905138016, 0.019773216918110847, 0.005620066076517105, 0.007297258358448744, -0.02184133417904377, 0.054409973323345184, -0.026885520666837692, -0.038739364594221115, -0.0028394574765115976, 0.010861817747354507, -0.0019966578111052513, -0.010256514884531498, 0.014199389144778252, 0.0029508499428629875, -0.06355676800012589, 0.04956755414605141, -0.007225798908621073, -0.06940802186727524, 0.05171974003314972, 0.008676002733409405, -0.005775595083832741, 0.01847854070365429, -0.03325801342725754, -0.0044809202663600445, -0.011458713561296463, 0.03238368779420853, -0.037057965993881226, -0.013148516416549683, 0.005889089312404394, -0.006540630478411913, -0.030954498797655106, 0.049264900386333466, -0.055452439934015274, -0.058243557810783386, -0.05999220907688141, -0.0750575140118599, -0.01982365921139717, 0.04193401336669922, 0.013341876678168774, -0.016898028552532196, -0.01208923663944006, -0.00717115355655551, 0.020361704751849174, 0.014148946851491928, -0.021067891269922256, 0.013905144296586514, -0.01304763276129961, 0.03685620054602623, 0.013829481787979603, -0.008743259124457836, 0.018814820796251297, -0.006923147942870855, 0.0029634602833539248, -0.03783141076564789, -0.005573827773332596, 0.03137484937906265, 0.03162705898284912, -0.04734811186790466, -0.06174086034297943, -0.025557218119502068, 0.03894113004207611, -0.06439746171236038, 0.019638704136013985, -0.020496217533946037, -0.05615862458944321, -0.010096782818436623, -0.02184133417904377, -0.011189689859747887, 0.0066373106092214584, 0.0017791270511224866, 0.015779901295900345, 0.007478008512407541, -0.0029508499428629875, -0.07828579843044281, 0.04953392595052719, -0.03493940830230713, 0.015779901295900345, -0.034569501876831055, -0.031526174396276474, 0.05249318107962608, -0.07008058577775955, -0.01638520322740078, -0.02416165918111801, 0.03238368779420853, 0.00013582526298705488, -0.007974020205438137, 0.041395969688892365, 0.003852498484775424, 0.03034919686615467, 0.022379379719495773, -0.05935327708721161, -0.007814288139343262, -0.01719227433204651, 0.03388012945652008, -0.014392749406397343, 0.06268244236707687, -0.015199819579720497, -0.027894359081983566, -0.036183640360832214, 0.08003444969654083, 0.013148516416549683, -0.09368738532066345, 0.03951280564069748, -0.011820213869214058, -0.0038503967225551605, 0.0058008162304759026, -0.07001332938671112, 0.0018558407900854945, 0.005262769293040037, 0.026935962960124016, -0.08534765988588333, -0.011265353299677372, -0.06493551284074783, -0.008289282210171223, 0.04795341193675995, -0.02602800913155079, 0.0028541695792227983, -0.029289918020367622, -0.02986159175634384, -0.05639402195811272, 0.0037663269322365522, -0.005161885637789965, -0.001563698286190629, 0.036419037729501724, 0.0063556768000125885, -0.01393877249211073, -0.02424572966992855, -0.015401586890220642, 0.05219053104519844, -0.01421620324254036, 0.03182882443070412, 0.03759601339697838, -0.0071753570809960365, -0.05249318107962608, -0.0046826875768601894, -0.023573171347379684, -0.05269495025277138, -0.02343866042792797, 0.009525108151137829, 0.050071973353624344, -0.006918944418430328, 0.04630564525723457, -0.0006431339425034821, -0.02883594110608101, 0.0399835966527462, -0.06261518597602844, 0.023489100858569145, -0.05430908873677254, 0.025674916803836823, -0.06046300008893013, -0.027524452656507492, 0.006645717658102512, -0.03164387121796608, 0.03759601339697838, -0.07156021147966385, 0.02120240218937397, 0.014249830506742, -0.0472135990858078, -0.024228915572166443, 0.01051713153719902, -0.03581373393535614, 0.056326765567064285, 0.015056900680065155, 0.011652073822915554, 0.06200988218188286, -0.025792613625526428, 0.040118105709552765, -0.04627201706171036, -0.017940495163202286, 0.018428100273013115, -0.011559597216546535, 0.02826426550745964, -0.0179741233587265, -0.05935327708721161, -0.007868933491408825, 0.024548381567001343, -0.04640652984380722, -0.03793229162693024, 0.013190551660954952, 0.019016588106751442, 0.022345751523971558, -0.004913879558444023, 0.02762533538043499, -0.014686993323266506, -0.021135147660970688, 0.0387057363986969, -0.045397691428661346, -0.020613914355635643, 0.0000656138508929871, -0.03779778257012367, 0.0544436015188694, 0.059386905282735825, -0.015636982396245003, -0.011635259725153446, -0.03137484937906265, -0.03840308263897896, -0.019571449607610703, 0.006317845080047846, -0.015796715393662453, 0.04237117990851402, -0.019369682297110558, 0.015872377902269363, -0.09119891375303268, 0.027642149478197098, 0.046541038900613785, 0.012677725404500961, 0.020378518849611282, 0.027104102075099945, -0.030853616073727608, 0.004787775222212076, -0.057940904051065445, -0.05871434509754181, -0.02224486880004406, -0.013341876678168774, -0.019386494532227516, 0.041564106941223145, -0.07801677286624908, 0.017856424674391747, -0.05454448610544205, 0.02353954315185547, 0.03547745570540428, -0.04237117990851402, 0.016410425305366516, -0.07277081906795502, 0.008478439413011074, 0.03172794356942177, 0.04092517867684364, 0.006935758516192436, 0.00907953828573227, -0.002782710362225771, -0.030870430171489716, 0.022665217518806458, 0.006729787215590477, 0.010264921933412552, 0.0035141175612807274, 0.046843692660331726, -0.015317517332732677, -0.007036642171442509, 0.011988352984189987, -0.009172014892101288, 0.03282085061073303, 0.016343168914318085, 0.0035603558644652367, -0.05740285664796829, 0.056730300188064575, -0.03823494538664818, 0.029693452641367912, 0.007196374703198671, -0.0446578748524189, 0.038672108203172684, -0.02313600853085518, 0.012232155539095402, 0.0348721519112587, 0.0023539543617516756, -0.024834217503666878, 0.01767147146165371, 0.025187311694025993, 0.03186245262622833, 0.034973036497831345, 0.008554101921617985, 0.06268244236707687, 0.010147224180400372, -0.03260226920247078, -0.007755438797175884, -0.032249175012111664, -0.04314462095499039, -0.010197666473686695, -0.047247227281332016, -0.021622752770781517, 0.0028247451409697533, 0.07821854203939438, 0.0380668044090271, -0.016175029799342155, 0.06197625398635864, 0.020933380350470543, 0.026145707815885544, 0.02046258933842182, -0.010357399471104145, 0.07290533185005188, 0.007061862852424383, 0.03692345693707466, -0.0124423298984766, -0.04351452738046646, 0.05925239250063896, 0.06086653470993042, 0.0024275153409689665, -0.005187106318771839, -0.0472135990858078, 0.0216900072991848, 0.001909435261040926, 0.022228054702281952, 0.01112243440002203, 0.01248436514288187, 0.06513728201389313, 0.06177448853850365 ]
18,566
traceback2
_some_fs_str
_some_str, but for filesystem paths.
def _some_fs_str(value): """_some_str, but for filesystem paths.""" if value is None: return None try: if type(value) is bytes: return value.decode(sys.getfilesystemencoding()) except: pass return _some_str(value)
(value)
[ 0.03457687795162201, -0.015602600760757923, -0.01606706529855728, 0.03571223467588425, 0.007190614007413387, -0.04338451847434044, 0.04187070578336716, 0.05181370675563812, 0.07672282308340073, -0.0727318599820137, 0.06395862251520157, 0.04613690450787544, -0.022500773891806602, -0.0025588609278202057, 0.04187070578336716, 0.08071377873420715, -0.038499027490615845, 0.04197391867637634, 0.08752594143152237, 0.01046767644584179, -0.034336041659116745, -0.00949573889374733, 0.02398018166422844, -0.028108764439821243, -0.014880098402500153, 0.04421023279428482, 0.03352752700448036, -0.05896991491317749, -0.03567783161997795, -0.006072456482797861, 0.06406183540821075, -0.0665389820933342, 0.0016471323324367404, -0.007508859038352966, 0.0008697976591065526, 0.004158686380833387, -0.015688613057136536, 0.0095215430483222, -0.07706686854362488, -0.06798398494720459, -0.04734107479453087, 0.05016227439045906, -0.02883126586675644, -0.05085037276148796, -0.05116001516580582, 0.00042334094177931547, -0.05738729238510132, 0.01465646643191576, -0.05363716557621956, 0.09826025366783142, 0.04180189594626427, 0.012394348159432411, -0.04758191108703613, -0.018320582807064056, 0.01479408610612154, 0.03500693663954735, -0.009478536434471607, -0.0197483841329813, -0.01871624030172825, 0.022397559136152267, 0.02127940021455288, 0.004046870861202478, 0.021589044481515884, -0.017649689689278603, -0.015163938514888287, -0.00660143094137311, 0.022758809849619865, -0.05277704447507858, -0.0031759978737682104, 0.04063212871551514, -0.023808157071471214, -0.0034877918660640717, -0.07768615335226059, 0.00907428003847599, 0.06413064152002335, 0.00685946736484766, -0.0526738278567791, 0.0020449382718652487, 0.02267279662191868, 0.011646042577922344, 0.05759372189640999, -0.01486289594322443, 0.006339094135910273, -0.07073637843132019, 0.024221016094088554, 0.0006606806418858469, -0.049233343452215195, 0.059348370879888535, 0.04035688936710358, 0.05229537561535835, 0.04190510883927345, -0.04696262255311012, -0.018114155158400536, 0.06846565753221512, 0.0009972031693905592, -0.003765180939808488, 0.02549399435520172, -0.030241865664720535, -0.020006421953439713, 0.0009843013249337673, 0.016110071912407875, 0.04933655634522438, 0.005208034534007311, 0.009530143812298775, 0.012583574280142784, -0.049095723778009415, 0.020814934745430946, -0.021296603605151176, 0.017021801322698593, -0.024307027459144592, -0.058866702020168304, -0.06296087801456451, -0.03750128671526909, 0.0010740765137597919, 0.0035071445163339376, -0.01789052225649357, -0.03636592999100685, -0.0457240492105484, 0.07190614193677902, -0.019989218562841415, -0.021158983930945396, 0.044244639575481415, -0.03901510313153267, -0.045001547783613205, 0.05091917887330055, 0.06258242577314377, -0.030585912987589836, 0.0005426827701739967, 0.019799992442131042, 0.05621752887964249, 0.04276522994041443, 0.0651283860206604, -0.018957072868943214, 0.010003210976719856, 0.011129969730973244, 0.027128225192427635, -0.08236521482467651, 0.06877529621124268, 0.01726263388991356, 0.0373980738222599, -0.00005486633017426357, -0.024375837296247482, 0.02446185052394867, -0.05910753458738327, 0.01869903691112995, 0.07720448821783066, 0.044657498598098755, -0.0381205752491951, -0.030861152336001396, 0.02521875686943531, 0.038774266839027405, 0.0010563364485278726, -0.05714645981788635, 0.04173308610916138, 0.02986341156065464, -0.016944389790296555, 0.010373062454164028, -0.03825819492340088, 0.020608507096767426, -0.014751080423593521, -0.016935788094997406, -0.056011099368333817, 0.031205201521515846, -0.09069118648767471, 0.038808673620224, 0.05742169916629791, 0.02231154590845108, 0.005986444186419249, 0.04262761026620865, -0.02828078903257847, -0.024238217622041702, 0.002978170057758689, -0.06450909376144409, 0.03691640496253967, 0.058178603649139404, 0.010003210976719856, 0.0002670407702680677, 0.02093535289168358, -0.04042569920420647, -0.0009606479434296489, 0.005878929048776627, -0.017632486298680305, -0.028986087068915367, 0.029846208170056343, 0.048682864755392075, 0.017572278156876564, 0.0006434782408177853, 0.018957072868943214, 0.04796036332845688, 0.011964287608861923, -0.043969400227069855, 0.04066653549671173, -0.032942645251750946, -0.001579397707246244, 0.007182012777775526, -0.05938277393579483, 0.044932737946510315, -0.053327519446611404, -0.04252439737319946, -0.03777652606368065, 0.00025387018104083836, -0.012531966902315617, 0.026990605518221855, 0.005208034534007311, -0.026216497644782066, -0.017211027443408966, 0.027730310335755348, 0.03791414573788643, -0.07520900666713715, 0.05136644467711449, -0.04603369161486626, -0.04142343997955322, -0.058178603649139404, 0.028521621599793434, 0.016402512788772583, -0.022965239360928535, -0.055873479694128036, 0.03209972754120827, -0.043556541204452515, 0.05002465471625328, 0.02363613247871399, 0.025339173153042793, 0.03373395651578903, -0.007435748819261789, 0.04520797356963158, -0.025339173153042793, -0.0166261438280344, -0.026852987706661224, 0.048063576221466064, 0.007581969257444143, 0.006648737471550703, -0.031910501420497894, 0.03646914288401604, 0.04218034818768501, 0.048201195895671844, -0.019421538338065147, 0.03839581459760666, -0.03822379186749458, -0.005758512299507856, -0.04214594513177872, -0.030517103150486946, -0.05711205303668976, 0.002879256149753928, 0.05363716557621956, 0.03421562537550926, -0.016471322625875473, -0.003754429519176483, 0.05356835573911667, -0.012678188271820545, -0.0006520794704556465, 0.06388980895280838, 0.024909112602472305, -0.020281659439206123, -0.07644758373498917, 0.02038487419486046, -0.07493376731872559, -0.030499901622533798, -0.012936224229633808, 0.044795118272304535, 0.03473169729113579, -0.04737548157572746, 0.0036426137667149305, -0.004240397829562426, 0.018475405871868134, -0.0817459300160408, -0.083122119307518, -0.024375837296247482, 0.016746561974287033, 0.032254546880722046, 0.01327167171984911, -0.044657498598098755, 0.013048039749264717, -0.01122458279132843, 0.0009869892382994294, -0.05494454875588417, -0.055391810834407806, -0.0015138135058805346, 0.015206944197416306, 0.0728006660938263, -0.012445955537259579, -0.009125886484980583, 0.0028470014221966267, 0.007495956961065531, 0.010037615895271301, 0.008433489128947258, 0.0010600994573906064, 0.006889571435749531, -0.12158674746751785, -0.007276626303792, 0.024427445605397224, 0.0183721911162138, -0.009547346271574497, -0.05222656577825546, 0.005814420059323311, 0.02141701988875866, 0.006463811732828617, -0.0008386182598769665, -0.0866314172744751, 0.06526600569486618, -0.04386618733406067, -0.01187827531248331, 0.05659598112106323, 0.02162344940006733, 0.04696262255311012, 0.013013634830713272, 0.010656902566552162, -0.015043521299958229, -0.04689381271600723, -0.03457687795162201, 0.03726045414805412, -0.006777755916118622, -0.03137722611427307, -0.0025223055854439735, 0.03612509369850159, 0.06984184682369232, 0.07500257343053818, -0.0001923177478602156, -0.005173629615455866, -0.006971282884478569, 0.029639780521392822, 0.012007293291389942, -0.0008929134346544743, 0.008575409650802612, -0.024909112602472305, 0.006270284298807383, -0.03818938508629799, 0.014252210035920143, -0.01842379756271839, 0.03265020623803139, 0.08009449392557144, 0.002791093662381172, 0.0077926991507411, 0.04541440308094025, -0.0221739262342453, 0.02501232735812664, -0.01313405204564333, 0.011861072853207588, -0.05301787704229355, -0.05208894610404968, -0.01780451089143753, 0.07658520340919495, 0.025253161787986755, 0.0457240492105484, 0.016935788094997406, -0.0017256183782592416, 0.021881485357880592, 0.038774266839027405, -0.0007703461451455951, 0.027541084215044975, -0.05105679854750633, -0.026457330211997032, -0.025184351950883865, -0.07080518454313278, -0.026371318846940994, -0.03075793758034706, 0.06798398494720459, -0.021434223279356956, 0.04324689880013466, 0.014286614954471588, 0.007040092721581459, 0.06337373703718185, 0.0007644328288733959, 0.000301580032100901, -0.00016140713705681264, -0.01500051561743021, 0.004119981080293655, -0.006356296595185995, 0.01622188836336136, 0.021158983930945396, 0.00746585289016366, -0.025235958397388458, 0.04235237091779709, 0.0207977332174778, -0.08511760085821152, -0.016918586567044258, -0.0008251788676716387, -0.018475405871868134, -0.0019126947736367583, -0.04352213814854622, -0.002107297070324421, 0.019972017034888268, 0.03860224410891533, -0.017365848645567894, 0.008747433312237263, 0.02279321476817131, 0.004640354309231043, -0.028108764439821243, -0.01302223652601242, 0.012067501433193684, -0.01663474552333355, 0.002834099577739835, 0.0038167883176356554, 0.07403924316167831, 0.03027626872062683, 0.010347259230911732, 0.00783570483326912, 0.00471346452832222, 0.025046732276678085, 0.008411985822021961, 0.07176852226257324, 0.01014943141490221, -0.011112767271697521, -0.060380514711141586, 0.04692821949720383, -0.03027626872062683, 0.0818147361278534, -0.006635835859924555, 0.0019116195617243648, -0.04190510883927345, 0.02535637654364109, -0.002498652320355177, -0.07286947965621948, 0.0006816461100243032, -0.08876451849937439, 0.039531175047159195, -0.0018299081129953265, -0.0623759962618351, 0.024203812703490257, 0.05676800385117531, -0.03653795272111893, -0.07300709187984467, -0.00013486432726494968, -0.013529707677662373, 0.059279561042785645, 0.023790955543518066, 0.006205775309354067, 0.02917531505227089, 0.008119544945657253, 0.05215775594115257, 0.01897427625954151, 0.008179753087460995, -0.0013697431422770023, -0.049026913940906525, -0.04538000002503395, 0.022535178810358047, -0.02121059037744999, -0.014596258290112019, -0.01309104636311531, -0.02848721668124199, -0.01320286188274622, 0.020608507096767426, 0.0214686281979084, -0.0008337800973095, 0.03027626872062683, 0.06337373703718185, 0.0011224582558497787, -0.04314368590712547, 0.05074715614318848, 0.016780966892838478, -0.03449086472392082, -0.028366800397634506, -0.030568711459636688, -0.014432835392653942, 0.022156724706292152, -0.008928058668971062, -0.025803638622164726, 0.03337270766496658, 0.021365413442254066, -0.04104498773813248, 0.01472527626901865, -0.05356835573911667, 0.05043751373887062, 0.0035415494348853827, -0.060862183570861816, 0.03125680610537529, 0.025407982990145683, 0.004567244090139866, 0.05016227439045906, 0.012230925261974335, 0.01663474552333355, -0.008713028393685818, -0.005384359508752823, 0.005586487706750631, 0.016729358583688736, 0.060311704874038696, 0.02695620059967041, -0.03712283447384834, -0.025339173153042793, -0.034611281007528305, -0.03283943235874176, -0.04940536618232727, -0.023326490074396133, -0.0010224691359326243, 0.03591866418719292, -0.014389829710125923, -0.04276522994041443, 0.04307487607002258, 0.016299298033118248, 0.04675619304180145, 0.016049863770604134, 0.0232232753187418, 0.10975147783756256, -0.03894629329442978, -0.03209972754120827, 0.08270926028490067, 0.04685940966010094, -0.007009988650679588, 0.029295731335878372, -0.002277171239256859, 0.03265020623803139, 0.012110508047044277, -0.01668635383248329, 0.0037565797101706266, 0.026491735130548477, -0.009573150426149368, -0.04981822520494461, 0.008433489128947258, -0.0008638843428343534, -0.01046767644584179, -0.01856141723692417, 0.012979229912161827, -0.005590788554400206, 0.039875224232673645, -0.04796036332845688, -0.0028082961216568947, 0.031979311257600784, 0.02017844468355179, -0.022070713341236115, 0.017013199627399445, 0.05036870390176773, -0.06272004544734955, -0.016161678358912468, -0.01395976822823286, -0.06488755345344543, 0.013280272483825684, -0.05869467556476593, -0.03302865847945213, 0.010863332077860832, -0.015292956493794918, 0.033493123948574066, -0.014983313158154488, 0.008080839179456234, 0.03134281933307648, 0.005607991013675928, 0.044382259249687195, 0.0408729650080204, -0.06729588657617569, -0.0010740765137597919, -0.03801736235618591, -0.014613460749387741, 0.007014289032667875, -0.01753787323832512, 0.015705814585089684, -0.023034049198031425, 0.019696777686476707, -0.0308439489454031, 0.0067003448493778706, -0.015361766330897808, 0.03578104451298714, -0.02155463956296444, -0.02951936237514019, -0.014751080423593521, 0.012635181657969952, 0.04266201704740524, -0.01740025356411934, -0.027386261150240898, -0.0015783226117491722, 0.029915018007159233, -0.02119338884949684, 0.00445542810484767, -0.007177712395787239, 0.01586063578724861, -0.023670537397265434, -0.016127273440361023, -0.016187483444809914, -0.02002362348139286, -0.04149224981665611, -0.0360218808054924, 0.03318347781896591, -0.0235673226416111, -0.0006225127726793289, -0.00408557616174221, 0.06877529621124268, -0.02847001515328884, -0.02592405676841736, 0.039187125861644745, 0.027145428583025932, -0.003234056057408452, 0.006661639548838139, -0.01773570105433464, -0.03712283447384834, -0.04094177484512329, 0.016995996236801147, 0.008622716180980206, 0.0026018668431788683, -0.05700884014368057, 0.02210511639714241, 0.03698521479964256, -0.06760553270578384, -0.01821736991405487, -0.02098695933818817, -0.04761631414294243, 0.07149328291416168, -0.013116849586367607, 0.013486701995134354, -0.03646914288401604, -0.04317808896303177, -0.01012362726032734, 0.002236315282061696, -0.010914939455688, 0.011482619680464268, 0.014174798503518105, 0.04913012683391571, 0.06007087230682373, 0.0838102176785469, 0.05597669258713722, -0.01724543236196041, 0.015714416280388832, -0.02508113719522953, 0.033424314111471176, 0.010682706721127033, 0.04121701419353485, 0.035436999052762985, -0.004356514196842909, 0.021589044481515884, 0.03407800570130348, 0.02730024978518486, -0.08965904265642166, -0.05494454875588417, -0.01988600380718708, 0.03480050712823868, 0.0367443822324276, -0.0304826982319355, -0.033768363296985626, -0.0221739262342453, 0.007405644282698631, -0.017477665096521378, -0.03595307096838951, -0.03275341913104057, -0.07128684967756271, -0.022431964054703712, -0.031428832560777664, -0.0020105335861444473, -0.00445542810484767, -0.024479052051901817, -0.039255935698747635, -0.033217884600162506, -0.01320286188274622, -0.019799992442131042, 0.022191129624843597, 0.015843434259295464, 0.028848467394709587, -0.0457584522664547, -0.017838915809988976, -0.04799477010965347, 0.03237496688961983, -0.03571223467588425, -0.038705457001924515, 0.031015973538160324, 0.0003714648773893714, -0.032805025577545166, 0.031153593212366104, 0.017993737012147903, -0.017701296135783195, 0.07768615335226059, 0.035110149532556534, 0.055873479694128036, -0.023808157071471214, -0.014011375606060028, -0.01703900285065174, -0.007044393569231033, -0.03760450333356857, 0.0030813845805823803, 0.039324745535850525, -0.03588426113128662, -0.060724563896656036, 0.001184817054308951, -0.012523366138339043, 0.015645606443285942, -0.0623415932059288, 0.008919457904994488, 0.01423500757664442, -0.008682924322783947, -0.061412662267684937, -0.009727971628308296, -0.011482619680464268, -0.0012310486054047942, 0.06805279850959778, 0.04324689880013466, 0.009237702935934067, 0.026164889335632324, 0.015086527913808823, -0.04510476067662239, 0.0006149867549538612, -0.02544238790869713, 0.030723532661795616, -0.008575409650802612, 0.035436999052762985, 0.054841332137584686, -0.03688200190663338, -0.02251797541975975, -0.05738729238510132, -0.028504420071840286, 0.03708843141794205, -0.032323356717824936, 0.015852035954594612, 0.034542471170425415, 0.005930536426603794, 0.044382259249687195, 0.027523880824446678, 0.030379483476281166, -0.032942645251750946, 0.014192000962793827, 0.01947314664721489, 0.028452811762690544, -0.0616534948348999, -0.02031606435775757, -0.01229973416775465, -0.05174489691853523, 0.007035792339593172, -0.029570970684289932, 0.013400689698755741, -0.02057410217821598, -0.05835063010454178, -0.04441666230559349, -0.021589044481515884, -0.05965801328420639, 0.014914503321051598, 0.020694518461823463, -0.0401848666369915, 0.016866978257894516, -0.031979311257600784, 0.07472734153270721, 0.023670537397265434, 0.034267231822013855, 0.005719806533306837, -0.05645836144685745, 0.00466185761615634, 0.044244639575481415, 0.04940536618232727, 0.013555511832237244, 0.048270005732774734, -0.0010165558196604252, 0.035110149532556534, -0.015258551575243473, -0.03411240875720978, -0.021726664155721664, -0.01392536424100399, -0.03726045414805412, 0.04073534533381462, 0.008149649016559124, 0.06261683255434036, -0.03873986378312111, -0.010863332077860832, 0.04799477010965347, -0.008928058668971062, 0.04754750430583954, 0.017073407769203186, -0.004790875595062971, 0.03498973324894905, 0.00977097824215889, -0.016325103119015694, -0.05487573891878128, 0.057903364300727844, 0.0408729650080204, -0.0526738278567791, -0.022191129624843597, 0.026663759723305702, 0.016823971644043922, 0.03853343427181244, -0.07527781277894974, 0.02274160645902157, -0.012592175975441933, 0.0360218808054924, -0.00845069158822298, -0.00827866792678833, -0.04042569920420647, -0.010674105025827885 ]
18,567
traceback2
_some_str
null
def _some_str(value): try: if PY2: # If there is a working __unicode__, great. # Otherwise see if we can get a bytestring... # Otherwise we fallback to unprintable. try: return unicode(value) except: return "b%s" % repr(str(value)) else: # For Python3, bytestrings don't implicit decode, so its trivial. return str(value) except: return '<unprintable %s object>' % type(value).__name__
(value)
[ 0.019045982509851456, 0.0017529776087030768, -0.03586761653423309, 0.010852387174963951, 0.003783998778089881, -0.06892003864049911, 0.0680164024233818, 0.016135213896632195, 0.06888528913259506, -0.06012691557407379, 0.03541579470038414, 0.0973152369260788, -0.03802245482802391, 0.009288392029702663, 0.013137556612491608, 0.03638894855976105, -0.02422454208135605, 0.009279702790081501, 0.08389963954687119, -0.0049005174078047276, -0.0246416088193655, 0.03105398640036583, 0.032357316464185715, 0.018767938017845154, 0.010826320387423038, 0.036041393876075745, 0.011886361055076122, -0.029020793735980988, -0.035224638879299164, 0.023494679480791092, 0.030185101553797722, -0.07208278775215149, 0.018681049346923828, -0.009722834452986717, 0.020731620490550995, 0.03447739779949188, -0.0333826020359993, -0.023008102551102638, -0.060404956340789795, -0.01764707639813423, -0.02368583343923092, 0.02078375406563282, -0.06627862900495529, -0.08410816639661789, -0.059153761714696884, -0.02618822455406189, -0.04382661357522011, 0.061829932034015656, -0.07479371130466461, 0.049596015363931656, 0.034790195524692535, 0.016517523676156998, 0.008693205192685127, -0.022695302963256836, -0.007967685349285603, 0.0012761764228343964, -0.01960206963121891, 0.01119994092732668, -0.0008086070884019136, 0.03496397286653519, -0.006425412371754646, 0.04038582369685173, 0.026952845975756645, -0.040837645530700684, -0.005248071625828743, -0.03298291563987732, 0.026622667908668518, -0.04389612376689911, -0.042297374457120895, 0.025354094803333282, 0.017786096781492233, 0.002374231116846204, -0.08772273361682892, 0.012277360074222088, 0.03484233096241951, 0.006820755545049906, -0.06322015076875687, -0.01101747527718544, 0.004887484014034271, -0.015805037692189217, 0.09203241020441055, -0.02608395926654339, 0.010278921574354172, -0.06871151179075241, 0.012407693080604076, -0.04987405985593796, -0.07041452825069427, 0.03326095640659332, 0.02071424387395382, 0.05713794752955437, 0.03115825355052948, -0.06395000964403152, -0.01216440461575985, 0.10822844505310059, -0.04799726605415344, -0.01245113741606474, 0.045842427760362625, -0.04028155654668808, 0.022486770525574684, -0.021061798557639122, 0.0365627259016037, 0.00856721680611372, -0.05157707631587982, -0.0246416088193655, -0.06186468526721001, -0.03440788760781288, 0.029350969940423965, -0.004757151007652283, 0.015891926363110542, -0.04764971137046814, -0.03209665045142174, -0.04810153320431709, -0.045668650418519974, -0.026031825691461563, 0.023407790809869766, -0.03934315964579582, -0.02679644525051117, -0.03487708419561386, 0.05654710531234741, -0.038335252553224564, -0.02625773660838604, 0.015153372660279274, -0.014666796661913395, -0.014397441409528255, 0.02973327971994877, 0.035259395837783813, -0.02915981598198414, -0.02034931071102619, 0.049387481063604355, -0.008797471411526203, 0.02186117321252823, 0.028968660160899162, -0.045911937952041626, -0.0074463533237576485, 0.02182641811668873, 0.020262422040104866, -0.06763409078121185, 0.05008259043097496, 0.0545312874019146, 0.05731172487139702, 0.007576686330139637, -0.023008102551102638, 0.027700087055563927, -0.03251371532678604, 0.03885658457875252, 0.02973327971994877, 0.05244596302509308, 0.02067948877811432, 0.006951088551431894, -0.011078297160565853, 0.016439324244856834, 0.0018952577374875546, -0.004096797667443752, 0.050812456756830215, 0.011903738602995872, -0.012259982526302338, 0.02886439487338066, -0.05658185854554176, 0.022191349416971207, -0.052202675491571426, 0.011330273933708668, -0.04142848774790764, 0.0185246504843235, -0.06148237735033035, 0.042019329965114594, 0.034042954444885254, 0.050708189606666565, -0.00023093361232895404, 0.03920413926243782, -0.014788440428674221, -0.05213316157460213, -0.004009908996522427, -0.06586156040430069, 0.05046490207314491, 0.029698524624109268, 0.02074899896979332, 0.004609440453350544, 0.04149799793958664, -0.020523088052868843, -0.020418822765350342, -0.011086986400187016, -0.02027980051934719, -0.03426886722445488, 0.009201503358781338, 0.04062911123037338, -0.015179439447820187, 0.05286302790045738, 0.009140681475400925, 0.030671676620841026, -0.005321926902979612, 0.015135995112359524, 0.02568427100777626, -0.00971414614468813, -0.0004729998472612351, -0.0005194309633225203, -0.022834325209259987, 0.055608708411455154, -0.046954602003097534, -0.024850141257047653, 0.006785999983549118, -0.031644828617572784, -0.00858459435403347, -0.004029458854347467, 0.0006234257598407567, -0.0018767938017845154, -0.03515512868762016, 0.003288733772933483, 0.00011343036021571606, -0.03395606577396393, 0.000965549610555172, -0.017481986433267593, -0.00040756186353974044, -0.035328906029462814, 0.021183442324399948, 0.010739431716501713, -0.03579810634255409, -0.006416723597794771, -0.020366689190268517, -0.01784691959619522, 0.032930780202150345, 0.00910592544823885, 0.018628917634487152, 0.0010285438038408756, -0.03934315964579582, 0.028812261298298836, 0.013172312639653683, -0.02639675885438919, 0.012668358162045479, 0.050708189606666565, 0.0007733085658401251, 0.0736815333366394, -0.015605193562805653, 0.005243727471679449, 0.04910944029688835, 0.027752220630645752, 0.014032509177923203, -0.00031850102823227644, -0.05758976563811302, -0.02264317125082016, -0.02396387793123722, -0.009349213913083076, -0.05265449360013008, 0.0012501097517088056, 0.04514731839299202, 0.04073337838053703, -0.04678082466125488, -0.004357463680207729, 0.07521077245473862, -0.05724221095442772, -0.011477984488010406, 0.05856291949748993, 0.01750805415213108, -0.013902177102863789, -0.07583637535572052, -0.0031497119925916195, -0.0547398217022419, 0.025406228378415108, -0.024380942806601524, 0.03399082273244858, 0.026414135470986366, -0.061656154692173004, 0.03454690799117088, -0.030393633991479874, 0.021635262295603752, -0.02818666398525238, -0.07903387397527695, -0.048136286437511444, 0.04139373078942299, 0.033712778240442276, 0.03101923130452633, 0.016839010640978813, -0.019880112260580063, -0.019219759851694107, 0.027387287467718124, -0.07799120992422104, -0.045911937952041626, 0.017117055132985115, 0.021131308749318123, 0.043513812124729156, -0.023842232301831245, -0.01777740940451622, 0.0076201306656003, 0.016274236142635345, -0.0485881082713604, 0.02200019545853138, -0.005730303470045328, 0.02665742300450802, -0.050742946565151215, 0.028968660160899162, 0.05251547321677208, 0.03767490014433861, -0.030897587537765503, -0.03809196501970291, 0.004505174234509468, -0.01186029426753521, 0.02643151395022869, 0.03572859242558479, -0.03899560496211052, 0.04622473940253258, -0.04233212769031525, -0.001086650649085641, 0.0424363948404789, 0.012981157749891281, 0.035937126725912094, 0.02518031746149063, -0.009462169371545315, 0.003445133101195097, -0.023529434576630592, -0.07430713623762131, 0.0067078000865876675, 0.015900613740086555, -0.022278238087892532, 0.01248589251190424, 0.03923889249563217, 0.05147280916571617, 0.03875231742858887, -0.019080737605690956, -0.049456994980573654, -0.021409351378679276, 0.028377817943692207, 0.01441481988877058, -0.041185200214385986, 0.0022037122398614883, -0.012312115170061588, 0.00859762728214264, -0.05592150613665581, -0.04778873175382614, 0.018976470455527306, 0.033608511090278625, 0.03816147521138191, -0.034077711403369904, -0.0017279970925301313, 0.0548788420855999, 0.004251025151461363, 0.03440788760781288, -0.009679390117526054, 0.02980279177427292, -0.021079175174236298, -0.06235126405954361, -0.0051047056913375854, 0.05588674917817116, 0.037396855652332306, 0.048171043395996094, 0.03767490014433861, 0.021739529445767403, 0.02010602317750454, -0.03412984311580658, 0.0364237017929554, 0.0548788420855999, -0.03520726412534714, -0.06951088458299637, -0.009184125810861588, -0.04539060592651367, -0.008358683437108994, -0.03305242583155632, 0.03098447620868683, 0.011599628254771233, 0.04646802693605423, 0.009288392029702663, 0.04372234642505646, 0.06871151179075241, -0.04194981977343559, 0.00876706000417471, -0.00641237897798419, -0.031679585576057434, 0.01611783541738987, -0.002259103814139962, -0.00447041867300868, 0.022695302963256836, 0.008336961269378662, -0.01895909383893013, 0.07145718485116959, -0.049352727830410004, -0.04479976370930672, -0.0554349310696125, 0.019341403618454933, 0.0072942981496453285, 0.02564951591193676, -0.03362588956952095, -0.06589631736278534, 0.03444264456629753, -0.01314624585211277, -0.03155793994665146, -0.012338181957602501, 0.03122776374220848, 0.01700410060584545, -0.010835008695721626, 0.01669130101799965, -0.0007070560241118073, 0.0007483281078748405, -0.011808161623775959, -0.01105223037302494, 0.04010777920484543, 0.015448793768882751, 0.024137655273079872, 0.005843258462846279, 0.021270330995321274, -0.021183442324399948, -0.021339841187000275, 0.05261974036693573, 0.0025588693097233772, 0.011434540152549744, -0.04497354105114937, 0.02865586243569851, -0.05213316157460213, 0.07722659409046173, 0.008441227488219738, -0.006099579855799675, -0.018663672730326653, 0.010913209058344364, 0.01895909383893013, -0.06575729697942734, -0.05359289050102234, -0.1100357323884964, 0.06735604256391525, 0.011417162604629993, -0.06474938988685608, 0.01137371826916933, 0.028030263260006905, -0.03517250716686249, -0.056755635887384415, 0.016543589532375336, -0.013719710521399975, 0.07938142865896225, -0.04848384112119675, 0.0431315042078495, 0.003731865668669343, 0.008675826713442802, 0.1095491498708725, 0.015909302979707718, 0.02865586243569851, -0.05984887108206749, -0.030098212882876396, -0.03213140740990639, 0.04368758946657181, -0.019880112260580063, -0.029889680445194244, -0.018489895388484, 0.015031728893518448, 0.010739431716501713, 0.01039187703281641, 0.020592600107192993, -0.012581469491124153, 0.04994357004761696, 0.07715708017349243, 0.0106786098331213, -0.03757063299417496, 0.021617885679006577, 0.022816946730017662, 0.01727345399558544, 0.01039187703281641, -0.03350424766540527, -0.010722054168581963, 0.021079175174236298, 0.03652796894311905, -0.06381098926067352, -0.001406509312801063, 0.014223664999008179, 0.020418822765350342, -0.0012913818936794996, -0.050673432648181915, 0.03920413926243782, -0.02882963977754116, -0.01571814902126789, 0.010530899278819561, 0.08911295235157013, -0.015179439447820187, 0.044486965984106064, -0.0006190813146531582, 0.029663769528269768, 0.009418725036084652, -0.00046566862147301435, 0.027022356167435646, 0.007945963181555271, 0.05592150613665581, 0.028916528448462486, -0.018681049346923828, -0.0243288092315197, -0.011851605959236622, -0.04028155654668808, -0.03197500482201576, -0.023268768563866615, 0.006060480140149593, -0.005400126799941063, -0.01554437167942524, 0.007815630175173283, 0.04796250909566879, 0.060474470257759094, 0.015170750208199024, 0.0678773745894432, 0.016882454976439476, 0.09432627260684967, -0.04194981977343559, -0.048379573971033096, 0.05268925055861473, 0.019549936056137085, -0.02500654011964798, -0.0022677925880998373, -0.029072927311062813, 0.020592600107192993, 0.025910181924700737, -0.02504129521548748, 0.03461642190814018, -0.02582329325377941, 0.02558000572025776, -0.07840827852487564, 0.0730559378862381, 0.037049300968647, 0.010444010607898235, -0.011530118063092232, 0.024050766602158546, -0.015179439447820187, 0.03315669298171997, -0.04438269883394241, 0.02339041233062744, 0.014666796661913395, 0.04542536288499832, -0.041185200214385986, -0.007767841219902039, 0.02307761274278164, -0.016743434593081474, 0.015509615652263165, -0.010921897366642952, -0.02260841429233551, 0.002747852122411132, -0.03545055165886879, -0.00814580637961626, 0.027196133509278297, -0.0490746833384037, 0.052202675491571426, -0.0034212388563901186, 0.02189592830836773, -0.0009525163332000375, -0.019306648522615433, 0.007928585633635521, 0.01280738040804863, -0.08243990689516068, 0.002272136975079775, 0.01828136295080185, -0.005091672297567129, 0.028968660160899162, -0.0029194571543484926, -0.010148588567972183, -0.0731949582695961, 0.002569730393588543, -0.044765010476112366, 0.0042379917576909065, 0.028777506202459335, -0.04069862142205238, -0.04493878781795502, -0.031818605959415436, -0.017933808267116547, 0.008493361063301563, 0.045911937952041626, -0.039725471287965775, -0.010026944801211357, -0.033747535198926926, 0.046989358961582184, 0.001619386370293796, 0.032930780202150345, 0.015622571110725403, -0.021166063845157623, -0.014710240997374058, -0.025406228378415108, 0.008623694069683552, 0.01277262531220913, -0.05616479367017746, -0.017951184883713722, 0.02210446074604988, -0.05129903182387352, 0.005786781199276447, -0.033434733748435974, 0.04903993010520935, 0.004635507240891457, -0.012894269078969955, 0.039725471287965775, 0.012737869285047054, -0.0019908351823687553, 0.00041815140866674483, 0.00942741334438324, -0.015431416220963001, -0.028099775314331055, 0.03798769786953926, -0.03934315964579582, 0.038404762744903564, -0.04674606770277023, 0.0182118508964777, 0.05029112473130226, -0.032757002860307693, -0.021079175174236298, -0.0019875767175108194, -0.036145661026239395, 0.018837450072169304, -0.028847016394138336, 0.07472419738769531, -0.027491554617881775, -0.014658107422292233, 0.011625695042312145, -0.014744996093213558, 0.008024162612855434, 0.03312193602323532, 0.045772917568683624, 0.04542536288499832, 0.025875426828861237, 0.08925197273492813, 0.03555481880903244, -0.013137556612491608, 0.024745874106884003, 0.018802693113684654, 0.029698524624109268, 0.014692863449454308, 0.05251547321677208, -0.03108874335885048, -0.056755635887384415, -0.004531240556389093, -0.006790344603359699, 0.024207165464758873, -0.07562784105539322, -0.05970985069870949, -0.018003318458795547, 0.03327833488583565, 0.046989358961582184, -0.04167177528142929, 0.015127305872738361, -0.0021537512075155973, -0.01346773374825716, -0.010782876051962376, -0.009218880906701088, -0.004044664558023214, -0.08181431144475937, -0.01035712193697691, 0.03477282077074051, -0.014119397848844528, -0.029246704652905464, -0.09912251681089401, -0.011147808283567429, 0.0014456091448664665, 0.0002608015784062445, -0.028603728860616684, 0.02865586243569851, 0.03802245482802391, 0.019880112260580063, -0.06436707824468613, 0.025267206132411957, -0.030497901141643524, 0.03416460007429123, -0.0031323342118412256, -0.06235126405954361, -0.004817973356693983, -0.011495362035930157, -0.004948305897414684, 0.02027980051934719, 0.029038172215223312, -0.01835087314248085, -0.00858459435403347, 0.03770965337753296, 0.030167723074555397, 0.01652621291577816, -0.011973249725997448, 0.015926681458950043, -0.0023459922522306442, -0.0732644721865654, 0.02747417613863945, 0.016074391081929207, 0.048379573971033096, -0.018038073554635048, -0.021079175174236298, -0.006772966589778662, 0.002763057593256235, -0.08932148665189743, -0.0006750158499926329, 0.0243288092315197, -0.020627355203032494, -0.07215229421854019, -0.02078375406563282, -0.02379010058939457, -0.019810602068901062, 0.05835438519716263, 0.008706238120794296, -0.0243635643273592, 0.06374148279428482, -0.003503782907500863, -0.08661056309938431, -0.05400995537638664, -0.012668358162045479, 0.004652884788811207, -0.0334521122276783, 0.03579810634255409, 0.036979790776968, -0.06527072191238403, -0.01345035620033741, -0.03864805027842522, -0.07993751764297485, 0.02571902610361576, -0.011130429804325104, 0.002611002651974559, 0.03816147521138191, 0.009210191667079926, 0.05407946929335594, 0.0022504148073494434, 0.013945621438324451, -0.013511178083717823, 0.017899053171277046, 0.07201327383518219, 0.02825617417693138, -0.021061798557639122, 0.00043037012801505625, -0.010861075483262539, 0.03944742679595947, -0.02808239683508873, -0.01764707639813423, 0.06370672583580017, -0.039899248629808426, -0.05237644910812378, -0.03491184115409851, -0.04500829800963402, -0.049283217638731, 0.07674001902341843, -0.022486770525574684, 0.029072927311062813, 0.023442545905709267, -0.04035106673836708, 0.034790195524692535, 0.001913721556775272, 0.026309870183467865, 0.0490051731467247, -0.04730215668678284, -0.037223078310489655, 0.020436199381947517, 0.028429951518774033, 0.04125471040606499, 0.0546703115105629, -0.028534218668937683, 0.03315669298171997, -0.007455042097717524, -0.024380942806601524, -0.04796250909566879, -0.007885141298174858, 0.023598944768309593, 0.013198379427194595, -0.010878453031182289, 0.030845453962683678, -0.0020516570657491684, -0.02210446074604988, 0.029003417119383812, 0.0021526652853935957, 0.030028700828552246, 0.03708405792713165, 0.0004045750538352877, 0.05772878974676132, 0.025805914774537086, 0.012876891531050205, -0.05953607335686684, 0.024850141257047653, 0.10482241213321686, -0.038543786853551865, -0.037153568118810654, 0.02811715193092823, -0.017716586589813232, -0.0007809113594703376, -0.08334355056285858, 0.014562530443072319, 0.0107133649289608, 0.001718222163617611, -0.038474272936582565, -0.010478765703737736, -0.02078375406563282, -0.006190813146531582 ]
18,568
traceback2
clear_frames
Clear all references to local variables in the frames of a traceback.
def clear_frames(tb): "Clear all references to local variables in the frames of a traceback." while tb is not None: try: getattr(tb.tb_frame, 'clear', _identity)() except RuntimeError: # Ignore the exception raised if the frame is still executing. pass tb = tb.tb_next
(tb)
[ -0.06657993793487549, 0.00880926288664341, 0.004342169966548681, 0.027845025062561035, -0.08801509439945221, -0.0024080087896436453, -0.012268353253602982, -0.002666471293196082, -0.002145238686352968, -0.01878160797059536, -0.049728184938430786, -0.039424143731594086, 0.013948359526693821, 0.009769882075488567, -0.044214315712451935, 0.02831025794148445, -0.008326799608767033, 0.021745311096310616, 0.04714355990290642, -0.08801509439945221, -0.035909056663513184, 0.023347778245806694, 0.029275184497237206, 0.05141680687665939, -0.0020095459185540676, -0.017851142212748528, 0.0026600097771734, -0.01890222355723381, 0.052381731569767, 0.07664274424314499, -0.0008906186558306217, 0.010571115650236607, -0.05641374737024307, -0.027190255001187325, 0.010795116424560547, -0.054759588092565536, -0.005393250845372677, -0.021590232849121094, -0.017394525930285454, -0.029361339285969734, -0.0007597720250487328, -0.034065358340740204, -0.02999887987971306, -0.014086205512285233, 0.023227162659168243, -0.020246228203177452, 0.07147349417209625, -0.04321492835879326, 0.01126896496862173, -0.020694229751825333, 0.009847421199083328, 0.028896106407046318, 0.009339111857116222, 0.031653039157390594, 0.01661052368581295, 0.031687501817941666, -0.008848032914102077, 0.016412368044257164, -0.005690482445061207, -0.045558322221040726, 0.04755709692835808, 0.03749429062008858, -0.037046290934085846, 0.03670167550444603, 0.033858586102724075, -0.019746534526348114, 0.0009493111865594983, 0.041181690990924835, -0.028206873685121536, -0.05744759738445282, -0.09628589451313019, -0.0001568275038152933, -0.05413927510380745, 0.03092934563755989, 0.0027612410485744476, -0.06506362557411194, -0.023589009419083595, -0.006465869955718517, -0.051864806562662125, -0.022658545523881912, 0.018316375091671944, 0.004118169192224741, -0.046213094145059586, 0.04931464418768883, 0.027276407927274704, 0.020125612616539, 0.007232642266899347, 0.0657183974981308, 0.008727416396141052, -0.012604353949427605, 0.020039457827806473, 0.004025553353130817, -0.020814845338463783, -0.012328661046922207, 0.0020116998348385096, 0.024657322093844414, -0.02086653932929039, -0.0023649318609386683, -0.09725081920623779, -0.08663662523031235, 0.05748206004500389, -0.03482351452112198, -0.0430426187813282, -0.015395749360322952, -0.00880926288664341, 0.06813071668148041, 0.038562603294849396, -0.05303650349378586, 0.055586665868759155, 0.02806902676820755, -0.011467119678854942, -0.021211154758930206, 0.010200653225183487, 0.012121890671551228, 0.0267939455807209, -0.0009083879413083196, -0.05048634111881256, 0.01339697279036045, 0.015507749281823635, -0.0018307759892195463, 0.04921125993132591, 0.033169351518154144, -0.03566782549023628, -0.045110318809747696, 0.08291476964950562, 0.02458839863538742, 0.01967761106789112, 0.028034565970301628, -0.010579731315374374, -0.05548328161239624, -0.005083095747977495, 0.0015033901436254382, -0.023744087666273117, 0.08091598749160767, 0.020814845338463783, 0.017153294757008553, -0.01735144853591919, -0.013776050880551338, -0.06368515640497208, -0.05727528780698776, -0.07071533799171448, 0.010683116503059864, -0.0006763102137483656, 0.027241947129368782, 0.03203211724758148, 0.03604690358042717, 0.025139784440398216, -0.030464112758636475, -0.07671166956424713, 0.017222218215465546, -0.02708686888217926, -0.015369903296232224, -0.036150287836790085, 0.02913733758032322, -0.04624755680561066, 0.02777610346674919, 0.025846248492598534, 0.022779161110520363, -0.011958197690546513, -0.015292364172637463, -0.008029568009078503, 0.01188927423208952, -0.016240060329437256, -0.0830526128411293, 0.0012029275530949235, 0.023227162659168243, 0.021021615713834763, 0.007465258240699768, -0.05465620011091232, 0.00973542034626007, -0.08470677584409714, -0.016748368740081787, 0.028103487566113472, -0.00586279109120369, 0.009339111857116222, -0.015094209462404251, -0.04442108795046806, -0.0195225328207016, -0.016627753153443336, 0.009950806386768818, -0.027017945423722267, -0.03337612375617027, -0.023640703409910202, -0.03239396587014198, 0.026277020573616028, -0.020642537623643875, -0.011363734491169453, -0.022400083020329475, -0.008580954745411873, -0.016748368740081787, -0.0020601614378392696, 0.009399419650435448, 0.014086205512285233, -0.03311765938997269, 0.05527651309967041, 0.008167414925992489, 0.03794229403138161, 0.005802482832223177, 0.04135400056838989, -0.04145738482475281, -0.04442108795046806, 0.026862869039177895, 0.03241119533777237, -0.030188418924808502, 0.019160686060786247, 0.0598943755030632, 0.01244066096842289, -0.01984991878271103, -0.05193373188376427, 0.051003266125917435, 0.013577896170318127, -0.03556443750858307, 0.02214162051677704, -0.004561862908303738, -0.00405570724979043, 0.03351397067308426, -0.006547716446220875, 0.01661052368581295, 0.059101756662130356, 0.043318312615156174, -0.016989601776003838, -0.042043231427669525, -0.05923960357904434, -0.06771717220544815, -0.011389580555260181, 0.003105857642367482, -0.02365793287754059, 0.03870045021176338, 0.02414039708673954, -0.09297757595777512, 0.009046187624335289, 0.01943637989461422, -0.04131953790783882, -0.05393250659108162, 0.02410593442618847, -0.0036464750301092863, 0.03404812514781952, -0.039872147142887115, -0.024123165756464005, -0.06623531877994537, -0.04604078456759453, 0.02110777050256729, 0.02238285169005394, -0.019005607813596725, 0.02815518155694008, 0.025673940777778625, 0.05655159428715706, -0.00020192381634842604, -0.0036357056815177202, 0.018264682963490486, -0.002927087713032961, -0.009020340628921986, -0.0006860025459900498, -0.005182173103094101, 0.003360012313351035, -0.03142903745174408, 0.06861317902803421, 0.008985878899693489, 0.03363458439707756, 0.018092375248670578, 0.014155128970742226, -0.051003266125917435, 0.034392740577459335, 0.05052080377936363, 0.019539764150977135, 0.04893556609749794, 0.04235338792204857, -0.013104048557579517, -0.003838167991489172, -0.042008768767118454, 0.05927406623959541, -0.0755399689078331, 0.03752875328063965, 0.05527651309967041, -0.01628313772380352, 0.03687398135662079, -0.030963806435465813, 0.05569005012512207, -0.017764989286661148, -0.003689552191644907, 0.12571614980697632, -0.05861929431557655, -0.009563112631440163, 0.0328591987490654, 0.02217608131468296, 0.03580567240715027, -0.023209931328892708, -0.06813071668148041, 0.027259178459644318, -0.003355704713612795, 0.019246840849518776, 0.027190255001187325, 0.05496635660529137, -0.008925571106374264, 0.02798287197947502, -0.0097612664103508, -0.027362562716007233, -0.006332330871373415, -0.00983880553394556, 0.05982545018196106, 0.0028969338163733482, -0.048177409917116165, -0.018178528174757957, 0.01442220713943243, 0.041802000254392624, -0.010217883624136448, 0.01487020868808031, 0.018316375091671944, 0.015275133773684502, -0.023537317290902138, 0.006595101207494736, 0.03773552551865578, 0.01761852577328682, -0.05279527232050896, 0.07933075726032257, -0.014990824274718761, 0.014034513384103775, -0.03134288638830185, -0.037907831370830536, 0.03206657990813255, 0.019625918939709663, -0.05303650349378586, 0.07636705040931702, 0.005556943826377392, 0.0013020047917962074, 0.01284558605402708, 0.0012395430821925402, 0.020349614322185516, -0.01679144613444805, -0.02925795502960682, -0.01350035797804594, 0.003991091623902321, 0.019712071865797043, -0.03997553139925003, 0.023675164207816124, 0.008279414847493172, -0.07030180096626282, 0.057344213128089905, 0.02884441427886486, -0.04373185336589813, -0.01860930025577545, 0.013939743861556053, -0.006289253942668438, -0.025605017319321632, 0.014473899267613888, 0.05172695964574814, 0.024088704958558083, 0.03211827203631401, 0.10938132554292679, -0.02045299857854843, 0.0005756175378337502, 0.024536706507205963, 0.027310870587825775, 0.022021004930138588, 0.012406199239194393, 0.03708075359463692, 0.005966175813227892, 0.05617251619696617, 0.024864092469215393, 0.04824633151292801, 0.05148572847247124, 0.05193373188376427, -0.041147228330373764, -0.04762602224946022, 0.05827467516064644, -0.035736747086048126, 0.0015356979565694928, 0.0023110853508114815, -0.026156404986977577, -0.03146350011229515, 0.020849307999014854, -0.05413927510380745, 0.024829629808664322, -0.009571727365255356, -0.052071575075387955, 0.024037010967731476, 0.04307708144187927, 0.03714967519044876, 0.011182810179889202, 0.01878160797059536, 0.03997553139925003, -0.029895495623350143, 0.024519475176930428, -0.059067294001579285, 0.007844336330890656, -0.025381017476320267, -0.028775490820407867, -0.013009279035031796, -0.018023451790213585, 0.054690662771463394, 0.019936073571443558, -0.10455669462680817, 0.01556805707514286, -0.02401978150010109, 0.026862869039177895, 0.03494412824511528, -0.03490966558456421, 0.017782218754291534, 0.011372349224984646, -0.021331770345568657, 0.013388357125222683, 0.014327437616884708, -0.04573063179850578, -0.03935522213578224, 0.0460752472281456, 0.04345615953207016, -0.014680669642984867, -0.023847471922636032, 0.0123975845053792, -0.03804567828774452, 0.03849368169903755, -0.008481877855956554, 0.004128938540816307, -0.008352646604180336, 0.03175642341375351, -0.002657855860888958, 0.01893668621778488, -0.02238285169005394, 0.06609747558832169, 0.056896209716796875, -0.019625918939709663, 0.0071077183820307255, -0.017256679013371468, 0.01866099238395691, -0.028465336188673973, -0.006052330136299133, -0.08367292582988739, -0.032997045665979385, -0.015481903217732906, 0.025673940777778625, -0.04235338792204857, -0.046213094145059586, 0.025587785989046097, -0.01902283914387226, -0.05110665038228035, 0.011897889897227287, -0.0533466599881649, 0.01613667421042919, 0.04735032841563225, 0.05848144739866257, -0.01082096341997385, 0.02901672199368477, 0.014336053282022476, -0.042698003351688385, -0.004777248483151197, 0.023847471922636032, 0.007508335635066032, 0.06999164074659348, -0.07726305723190308, 0.06975041329860687, -0.0816052258014679, 0.033410586416721344, -0.03172196447849274, -0.05107218772172928, 0.023296086117625237, 0.0036464750301092863, -0.06182422861456871, 0.06203099712729454, -0.042077694088220596, 0.04438662528991699, -0.01299204770475626, 0.02393362671136856, 0.008081261068582535, 0.003754167817533016, 0.02851702831685543, 0.012268353253602982, 0.05948083475232124, -0.02291700802743435, -0.0041526309214532375, -0.0017952374182641506, -0.0629270002245903, -0.039217375218868256, -0.025587785989046097, 0.01076065469533205, 0.006470177788287401, 0.005496635567396879, -0.02863764390349388, 0.005354481283575296, 0.019505303353071213, -0.021228386089205742, -0.022107157856225967, -0.02991272509098053, 0.03211827203631401, -0.005294173490256071, -0.008740340359508991, 0.03945860639214516, 0.008641262538731098, -0.0016692369244992733, 0.02229669690132141, -0.014990824274718761, -0.05155465006828308, -0.052726346999406815, -0.042043231427669525, -0.02577732503414154, -0.00796064455062151, -0.0009611573768779635, -0.03401366248726845, 0.012699123471975327, -0.04090599715709686, -0.05193373188376427, 0.04538601264357567, 0.0070646414533257484, -0.051210034638643265, -0.0008599262800998986, 0.05227834731340408, -0.015378518030047417, 0.08057137578725815, -0.02050469070672989, -0.011260349303483963, -0.03104996122419834, -0.009442496113479137, -0.018109604716300964, -0.02446778304874897, -0.004561862908303738, -0.024933015927672386, -0.03794229403138161, -0.034392740577459335, -0.05872267857193947, 0.10324715077877045, 0.01522344071418047, -0.049486953765153885, -0.004510170314460993, 0.023209931328892708, 0.0531054250895977, 0.011501580476760864, 0.004514478147029877, 0.027379794046282768, 0.07705628126859665, 0.008792032487690449, 0.007572951260954142, 0.07671166956424713, 0.029206261038780212, 0.004432631656527519, -0.03873491287231445, 0.037459831684827805, -0.011277579702436924, -0.006707101594656706, -0.1600399762392044, 0.007827105931937695, -0.00015790443285368383, 0.011165579780936241, 0.004630786366760731, 0.030877651646733284, 0.022331159561872482, -0.013827743008732796, -0.025312094017863274, -0.023847471922636032, 0.00939080398529768, -0.05307096615433693, 0.053381118923425674, 0.012914509512484074, -0.030498573556542397, 0.009933575056493282, 0.0026880099903792143, -0.047694943845272064, -0.006237561348825693, 0.03122226893901825, 0.057964522391557693, 0.04786725342273712, -0.004742786753922701, 0.006328023504465818, 0.03666721284389496, 0.034272126853466034, -0.037046290934085846, -0.011165579780936241, -0.02217608131468296, -0.013284971937537193, 0.015163132920861244, 0.00733602698892355, 0.006009252741932869, -0.013913897797465324, 0.00513478834182024, 0.07395473122596741, -0.04021676257252693, 0.027672717347741127, 0.012052967213094234, -0.053863584995269775, -0.002205546712502837, 0.01613667421042919, -0.025760095566511154, 0.03413427993655205, -0.009011725895106792, -0.05482850968837738, -0.029861032962799072, 0.02557055652141571, 0.020814845338463783, 0.0020644692704081535, -0.036598287522792816, -0.035736747086048126, 0.005005557090044022, -0.021125001832842827, 0.04014784097671509, 0.0390450656414032, -0.004574785940349102, 0.02238285169005394, 0.042491234838962555, 0.01619698293507099, 0.03151519224047661, -0.04566170647740364, 0.003360012313351035, 0.010476346127688885, -0.0072671035304665565, 0.02982657216489315, 0.012199429795145988, -0.08070921897888184, -0.04221554100513458, 0.03239396587014198, 0.04745371267199516, 0.06354731321334839, 0.0465577095746994, 0.01893668621778488, -0.013879436068236828, 0.06461562216281891, -0.003780013881623745, -0.0005381943192332983, -0.03485797345638275, -0.013060971163213253, 0.025587785989046097, -0.0001275485410587862, 0.01878160797059536, -0.06313376873731613, -0.020470229908823967, -0.058412522077560425, -0.0011038501979783177, 0.024829629808664322, 0.0649947002530098, 0.012587123550474644, -0.0021710849832743406, -0.03192873299121857, 0.05313988775014877, -0.0360124409198761, -0.054277122020721436, -0.03453058749437332, 0.00756002776324749, -0.004156938288360834, 0.014413591474294662, 0.018316375091671944, 0.03435828164219856, -0.04524816572666168, 0.016481291502714157, -0.015395749360322952, -0.04548939689993858, -0.002670779125764966, 0.004540324676781893, -0.037046290934085846, -0.01878160797059536, -0.046213094145059586, -0.07478181272745132, 0.05875714123249054, 0.012285583652555943, -0.01026957668364048, 0.03175642341375351, 0.003260935191065073, -0.008934186771512032, -0.021745311096310616, 0.02544994093477726, -0.006168638356029987, -0.004915094934403896, 0.05351896584033966, -0.009235726669430733, -0.004975403193384409, -0.01732560247182846, 0.01317297201603651, 0.044662319123744965, 0.02500193938612938, 0.018488682806491852, 0.009347726590931416, 0.04573063179850578, 0.025432709604501724, -0.008068337105214596, -0.03130842372775078, -0.005660328548401594, -0.02348562516272068, -0.02246900647878647, -0.07147349417209625, 0.049038950353860855, -0.02467455342411995, 0.011105271987617016, 0.012750816531479359, -0.035168129950761795, -0.01783391274511814, 0.0390450656414032, -0.013810512609779835, -0.04214661568403244, 0.027483178302645683, 0.05293311923742294, -0.008292337879538536, 0.04318046569824219, 0.049659259617328644, -0.045110318809747696, -0.043352775275707245, -0.0007635412621311843, 0.05017618462443352, 0.033858586102724075, -0.09621696919202805, 0.05365681275725365, 0.04955587536096573, -0.10600408166646957, 0.023261623457074165, -0.029895495623350143, -0.0397687628865242, 0.017730526626110077, -0.021900389343500137, -0.005875714123249054, 0.017730526626110077, 0.056069131940603256, 0.05489743500947952, 0.027672717347741127, -0.07006056606769562, 0.015783442184329033, 0.0038080140948295593, -0.008081261068582535, -0.03732198476791382, 0.04383523762226105, 0.0010747731430456042, 0.0038166295271366835, -0.02021176740527153, -0.04676448181271553, -0.02348562516272068, 0.013164356350898743, 0.025225939229130745, 0.09642373770475388, -0.02639763616025448, 0.041629690676927567, 0.05503528192639351, 0.02696625329554081, -0.024174857884645462, 0.03932075947523117, -0.017575450241565704, -0.007762490306049585, -0.01194958295673132, -0.011467119678854942, 0.0010456962045282125, 0.041147228330373764, -0.04414539411664009, -0.029085645452141762, 0.05927406623959541, 0.060824841260910034, -0.029395800083875656, -0.02708686888217926, -0.0075944894924759865, -0.02872379869222641, -0.013612357899546623, 0.054035890847444534, 0.006629562936723232, 0.02319270186126232, -0.01833360642194748, -0.03032626584172249, -0.014206822030246258, -0.03239396587014198, 0.03956199064850807, 0.011225887574255466, -0.028568720445036888, -0.04235338792204857, 0.03523705154657364, 0.009709574282169342, -0.028654875233769417, -0.018953915685415268, -0.03494412824511528, 0.013586511835455894, -0.02033238299190998, 0.00042888621101155877, -0.004884941037744284, 0.04979710653424263, 0.016438214108347893, -0.030498573556542397, 0.005690482445061207, -0.029447494074702263 ]
18,569
traceback2
extract_stack
Extract the raw traceback from the current stack frame. The return value has the same format as for extract_tb(). The optional 'f' and 'limit' arguments have the same meaning as for print_stack(). Each item in the list is a quadruple (filename, line number, function name, text), and the entries are in order from oldest to newest stack frame.
def extract_stack(f=None, limit=None): """Extract the raw traceback from the current stack frame. The return value has the same format as for extract_tb(). The optional 'f' and 'limit' arguments have the same meaning as for print_stack(). Each item in the list is a quadruple (filename, line number, function name, text), and the entries are in order from oldest to newest stack frame. """ stack = StackSummary.extract(walk_stack(f), limit=limit) stack.reverse() return stack
(f=None, limit=None)
[ -0.0014986087335273623, 0.01266815047711134, 0.026606645435094833, 0.0348462350666523, -0.002551714889705181, -0.008310165256261826, 0.028882678598165512, -0.033752329647541046, 0.006025311071425676, -0.05063731595873833, -0.004556476138532162, 0.040686290711164474, -0.06387006491422653, -0.04710858315229416, 0.011044933460652828, 0.05236639454960823, 0.01319746021181345, -0.03594014421105385, 0.01283576525747776, 0.028935609385371208, 0.004243301227688789, 0.021631132811307907, -0.03352295979857445, -0.022742683067917824, 0.0439327247440815, 0.016064556315541267, -0.00023474343470297754, -0.05596570298075676, 0.041674334555864334, -0.010921427980065346, -0.03747514262795448, -0.02044900692999363, -0.06898672878742218, -0.02366015315055847, -0.06012960523366928, -0.0020014531910419464, -0.06542270630598068, -0.04290939122438431, -0.05402489751577377, -0.04516777768731117, -0.03165273368358612, -0.03698112070560455, -0.024630554020404816, 0.004763789474964142, 0.05455420911312103, -0.014150218106806278, 0.058294665068387985, -0.09259394556283951, 0.016726193949580193, -0.01025979034602642, 0.03101756051182747, 0.05660087242722511, -0.024595268070697784, -0.010947893373668194, 0.04026284068822861, 0.005412193946540356, -0.03408755734562874, 0.0021492186933755875, 0.028071070089936256, -0.043297551572322845, -0.03535790368914604, 0.07219786942005157, -0.006051776930689812, 0.05684788525104523, 0.008870352059602737, -0.031793881207704544, -0.015544068068265915, -0.035957787185907364, -0.09802819788455963, -0.03512853384017944, -0.03029417060315609, 0.005787121597677469, -0.018040645867586136, 0.014132575131952763, -0.007745568640530109, -0.06764581054449081, 0.0049225823022425175, 0.0030302992090582848, -0.034440431743860245, -0.0036809092853218317, -0.014476626180112362, 0.023677796125411987, 0.0058179982006549835, 0.016567399725317955, 0.009951026178896427, -0.04421502351760864, 0.04502663016319275, 0.01923159323632717, -0.01942567341029644, 0.003067792160436511, -0.04297996684908867, -0.032164398580789566, -0.06009431928396225, -0.0009571687551215291, -0.052119381725788116, -0.037157557904720306, -0.0008419335936196148, 0.021260615438222885, -0.04523835331201553, -0.022672107443213463, 0.03211146965622902, 0.03334652632474899, -0.06616374105215073, -0.002875917125493288, -0.013885563239455223, 0.06665775924921036, -0.0025737695395946503, 0.016108665615320206, -0.014176683500409126, -0.0046932147815823555, 0.04926110804080963, -0.06267029047012329, 0.022372165694832802, 0.000022847167201689444, 0.020466649904847145, -0.005059320479631424, -0.035569626837968826, 0.03586956858634949, 0.007097163703292608, -0.04506191611289978, 0.0483083501458168, -0.023166131228208542, -0.04050985351204872, -0.041145022958517075, -0.0308234803378582, 0.02131354622542858, 0.006007667630910873, -0.04153318330645561, 0.005712136160582304, -0.035957787185907364, 0.005703314207494259, -0.032623134553432465, -0.03048825077712536, 0.045308928936719894, -0.0015504369512200356, -0.01969032920897007, 0.0001998696243390441, 0.037016406655311584, -0.05653030052781105, -0.023995382711291313, 0.019531534984707832, 0.04262709245085716, 0.0042146299965679646, 0.020696017891168594, -0.05547168105840683, -0.04294467717409134, 0.04308582842350006, 0.011203726753592491, 0.04365042597055435, 0.0001095147745218128, 0.018578778952360153, -0.03290543332695961, -0.011212548241019249, 0.011044933460652828, 0.03498738631606102, -0.002942080842331052, 0.02662428840994835, -0.017846565693616867, 0.0018426601309329271, -0.0016871753614395857, -0.02817693166434765, 0.00497992429882288, 0.007150094956159592, -0.10910841822624207, -0.03200560808181763, 0.0026950696483254433, 0.054130759090185165, 0.01045387051999569, -0.011124329641461372, 0.03202325105667114, -0.03534025698900223, 0.02263682149350643, 0.010021600872278214, 0.04569708928465843, -0.0537073127925396, 0.02487756684422493, -0.02643020823597908, 0.02313084341585636, -0.011336053721606731, 0.011371341533958912, -0.034934453666210175, -0.030188309028744698, -0.0018977966392412782, -0.042732954025268555, 0.025230439379811287, -0.03408755734562874, 0.01654975675046444, -0.01752898097038269, 0.025989117100834846, -0.023713083937764168, 0.014608954079449177, -0.008076387457549572, 0.03334652632474899, -0.02884739078581333, -0.028600379824638367, -0.029253194108605385, -0.0496845580637455, 0.028917964547872543, 0.09774589538574219, -0.06281144171953201, -0.009792233817279339, 0.04467375576496124, 0.02454233728349209, -0.008958570659160614, -0.03362882509827614, 0.09266452491283417, -0.01179478969424963, -0.0014170067152008414, -0.11009646207094193, 0.05176651105284691, 0.007008945569396019, -0.034405145794153214, -0.012553466483950615, 0.0011358108604326844, 0.03145865350961685, 0.009845164604485035, -0.007824964821338654, 0.00479025486856699, 0.04089801385998726, 0.025918541476130486, 0.026747794821858406, -0.04365042597055435, -0.0537073127925396, -0.04290939122438431, 0.000220959322177805, 0.006823686882853508, 0.011424272321164608, -0.0028119590133428574, 0.09273509681224823, -0.07431511580944061, 0.010330365039408207, -0.06824569404125214, -0.00995984859764576, -0.01100082416087389, 0.05868282541632652, 0.019478604197502136, 0.04516777768731117, -0.07678522169589996, 0.047990765422582626, -0.0757971778512001, -0.028194574639201164, -0.011300766840577126, 0.010665594600141048, 0.03698112070560455, 0.046367548406124115, -0.02408360131084919, -0.008689504116773605, 0.016805589199066162, 0.006148817017674446, 0.00823517981916666, -0.0011854337062686682, 0.06588143855333328, -0.017308434471488, -0.01393849402666092, -0.009095308370888233, -0.048520077019929886, 0.021860498934984207, -0.046296972781419754, 0.043756287544965744, 0.04029812663793564, 0.018120042979717255, -0.09386429190635681, 0.020078489556908607, -0.06517569720745087, -0.02014906331896782, -0.014847143553197384, -0.0736093670129776, -0.014467804692685604, 0.024065958335995674, 0.01123019214719534, 0.07022178173065186, -0.02480699121952057, -0.021225327625870705, 0.03227026015520096, -0.06341132521629333, -0.05374259874224663, -0.01230645552277565, 0.011865364387631416, 0.021825212985277176, -0.026747794821858406, -0.016382141038775444, -0.0020874659530818462, -0.0004115935880690813, 0.011671283282339573, 0.0026708096265792847, 0.011671283282339573, -0.009801055304706097, -0.0838426873087883, 0.04096858575940132, -0.008583642542362213, 0.059282708913087845, 0.011327232234179974, 0.021419407799839973, -0.09195877611637115, 0.02336021140217781, -0.037510428577661514, -0.033611178398132324, -0.06715178489685059, 0.01833176612854004, 0.007123629096895456, 0.024630554020404816, -0.036522384732961655, 0.022654464468359947, 0.04834363982081413, 0.024224750697612762, 0.010171572677791119, 0.04206249490380287, -0.025918541476130486, -0.06111765280365944, -0.043756287544965744, -0.017387831583619118, 0.06122351437807083, 0.022707395255565643, -0.02828279323875904, -0.0399099662899971, -0.005500412080436945, -0.018525846302509308, 0.01873757131397724, -0.02309555560350418, 0.01704377867281437, 0.003460363484919071, 0.011371341533958912, 0.08539533615112305, -0.02166641876101494, 0.07071580737829208, 0.021154753863811493, -0.07897303998470306, -0.07015120983123779, 0.04492076858878136, 0.001692689023911953, -0.00864980649203062, -0.0033148033544421196, 0.03881606087088585, 0.008817421272397041, -0.035428475588560104, 0.07431511580944061, 0.00042537771514616907, 0.04975513368844986, -0.03419341892004013, -0.09322912245988846, 0.002598029561340809, 0.013585621491074562, 0.014988292008638382, 0.015605820342898369, 0.04763789102435112, 0.03339945524930954, 0.05691846087574959, 0.00936878565698862, 0.04495605453848839, 0.012888696044683456, -0.0015548479277640581, -0.032623134553432465, 0.00762206269428134, 0.01190947275608778, -0.017740704119205475, 0.07219786942005157, -0.0319703184068203, 0.03987468034029007, 0.004530010744929314, 0.05769478157162666, 0.045944102108478546, -0.026871299371123314, -0.033117156475782394, -0.04252123087644577, -0.004163904581218958, 0.006867796182632446, 0.010153928771615028, 0.039063069969415665, -0.023236704990267754, 0.025001071393489838, 0.006201747804880142, 0.004609407391399145, 0.008151372894644737, 0.00561509607359767, -0.058329951018095016, -0.006678126752376556, 0.03743985295295715, 0.013497402891516685, -0.044814907014369965, 0.02147233858704567, 0.047884903848171234, 0.020272569730877876, -0.058329951018095016, -0.04661456122994423, 0.028459230437874794, 0.03329359367489815, -0.03638123348355293, 0.005531288683414459, -0.037510428577661514, 0.028088713064789772, -0.06884557753801346, -0.0757971778512001, -0.038569048047065735, 0.016937917098402977, 0.04400329664349556, -0.030647045001387596, -0.0058047655038535595, 0.02560095675289631, -0.009412894956767559, 0.04192134365439415, -0.023960094898939133, 0.05099019035696983, 0.047990765422582626, -0.04513249173760414, 0.025883255526423454, 0.001662915339693427, -0.006669304799288511, -0.03052353858947754, 0.010780278593301773, -0.009236457757651806, 0.03567548841238022, -0.011406628414988518, -0.0348462350666523, -0.023236704990267754, 0.006197337061166763, 0.042732954025268555, -0.019566822797060013, 0.05427191033959389, -0.03613422438502312, -0.06778695434331894, 0.03244669735431671, -0.005976791027933359, -0.05949443578720093, -0.0020466649439185858, -0.05610685050487518, 0.028035782277584076, -0.057271331548690796, -0.0217369943857193, 0.04107445105910301, 0.03994525596499443, -0.03258784860372543, -0.02180756814777851, -0.0039587970823049545, 0.027294747531414032, -0.007458859123289585, -0.03736928105354309, -0.03789858892560005, -0.0029089991003274918, -0.00525340111926198, 0.07170385122299194, -0.03279957175254822, 0.01919630542397499, 0.03998054191470146, 0.015394097194075584, 0.03131750226020813, -0.013709126971662045, -0.020272569730877876, 0.04753202944993973, -0.031670376658439636, -0.002931053750216961, 0.00098198011983186, -0.006616374012082815, 0.0007840403122827411, 0.020078489556908607, 0.005548932123929262, -0.022389808669686317, -0.03459922596812248, 0.023166131228208542, -0.021719349548220634, 0.03669882193207741, 0.01639978587627411, 0.00973048061132431, 0.03184681385755539, -0.006113529670983553, 0.04672042280435562, -0.0037051693070679903, 0.04262709245085716, -0.0084821917116642, -0.028635665774345398, -0.047426167875528336, 0.0452030673623085, -0.0025936185847967863, -0.0732564926147461, 0.00935114175081253, 0.08758314698934555, 0.04548536613583565, 0.03412284702062607, -0.015782257542014122, 0.05395432561635971, 0.009245280176401138, 0.030400032177567482, -0.044285595417022705, 0.018296480178833008, 0.028423942625522614, -0.010647950693964958, -0.0013784111943095922, 0.03555198386311531, -0.03601071983575821, 0.004609407391399145, 0.02336021140217781, -0.006148817017674446, 0.03115870989859104, -0.012006512843072414, -0.00301927188411355, -0.024136532098054886, -0.00007498556806240231, -0.012394674122333527, 0.03624008595943451, -0.022125154733657837, -0.03308187052607536, 0.04305053874850273, -0.06270558387041092, 0.0035596091765910387, -0.025724461302161217, -0.03422870859503746, 0.023977739736437798, 0.047390881925821304, 0.0341581329703331, 0.05490708351135254, -0.004904938396066427, 0.0687749981880188, 0.051025476306676865, -0.009518756531178951, 0.03010009042918682, -0.021595844998955727, -0.021613487973809242, 0.0011479408713057637, 0.014935361221432686, 0.0714215487241745, 0.033752329647541046, 0.01062148530036211, 0.014970649033784866, 0.03631066158413887, 0.01715846359729767, -0.0023047036956995726, -0.01116843894124031, 0.042309507727622986, 0.078902468085289, 0.03456393629312515, 0.06711649894714355, 0.0047726109623909, 0.025495095178484917, 0.012985737062990665, -0.08214890211820602, 0.022848544642329216, 0.002234129002317786, -0.04696743190288544, -0.03267606720328331, -0.009986313991248608, -0.05120191350579262, -0.006550210062414408, -0.018984582275152206, -0.027065379545092583, 0.03246434032917023, -0.03225261718034744, -0.04986099526286125, -0.0263949204236269, -0.009827520698308945, -0.052648693323135376, -0.029359057545661926, 0.022054579108953476, -0.03592250123620033, 0.07156269997358322, -0.0420977808535099, 0.020396076142787933, 0.0008981727878563106, 0.03923950716853142, 0.06358776241540909, -0.015076510608196259, -0.019143374636769295, -0.025918541476130486, 0.029112044721841812, 0.039592381566762924, -0.03842790052294731, -0.041780196130275726, 0.0018206055974587798, 0.020801879465579987, 0.05176651105284691, -0.07120982557535172, -0.03442278876900673, -0.037651579827070236, 0.04774375259876251, 0.03085876815021038, 0.023042624816298485, 0.013091598637402058, 0.005116662476211786, 0.03489916771650314, -0.00569890346378088, 0.06468167155981064, 0.035728421062231064, 0.05843581631779671, -0.059247422963380814, 0.05585984140634537, -0.010753813199698925, -0.03108813613653183, 0.06535213440656662, -0.01760837621986866, -0.05437777191400528, -0.034511007368564606, 0.0540601871907711, 0.040686290711164474, -0.012597575783729553, 0.014511913992464542, -0.003100873902440071, 0.07615005224943161, -0.03740456700325012, -0.029129689559340477, 0.0001483170490246266, -0.03620480000972748, 0.03294071927666664, 0.009677549824118614, 0.0017015108605846763, 0.01450309157371521, -0.011521312408149242, -0.001001829281449318, -0.04732030630111694, 0.03481094911694527, -0.04573237523436546, -0.014600131660699844, 0.010762634687125683, -0.01976090297102928, -0.0010933558223769069, 0.0021944306790828705, -0.06224684789776802, -0.02055486850440502, 0.025054002180695534, 0.04199191927909851, 0.005107840523123741, 0.009995135478675365, -0.00012357457308098674, 0.021754637360572815, 0.04160375893115997, -0.06228213384747505, 0.015614642761647701, 0.07248017191886902, 0.048978809267282486, -0.013788523152470589, 0.009227636270225048, -0.023536646738648415, 0.05024915561079979, 0.0029553137719631195, 0.002022404922172427, 0.0073441751301288605, -0.04350927472114563, -0.060905925929546356, -0.0062326244078576565, 0.0315115824341774, 0.029429631307721138, -0.07459741085767746, 0.043368127197027206, -0.017714237794280052, 0.008777722716331482, -0.055118806660175323, -0.01465306244790554, -0.013206282630562782, -0.010418583638966084, -0.016426250338554382, -0.10854382067918777, 0.06750465929508209, -0.01613513007760048, 0.01787303201854229, 0.044285595417022705, -0.0008998268749564886, 0.04241536930203438, 0.008720381185412407, 0.02097831666469574, -0.004439586773514748, 0.042168356478214264, 0.005937092937529087, 0.007282422389835119, -0.008557177148759365, -0.038639623671770096, 0.0554363913834095, 0.0891357883810997, -0.01285340916365385, 0.03669882193207741, -0.05218995735049248, 0.0008766695391386747, 0.05338972806930542, -0.04103916138410568, 0.02983543649315834, 0.009315854869782925, 0.016717370599508286, -0.00176767457742244, -0.03170566260814667, 0.035534340888261795, 0.01024214643985033, 0.03078819438815117, -0.009906916879117489, -0.03849847614765167, 0.07226844877004623, 0.05180179700255394, 0.011635996401309967, -0.044885482639074326, 0.01923159323632717, 0.012562288902699947, -0.04283881559967995, 0.062423281371593475, -0.023607222363352776, 0.06235270947217941, -0.006117940414696932, -0.04619111120700836, -0.00859687477350235, 0.03352295979857445, -0.052542831748723984, 0.05871811509132385, 0.004957869648933411, -0.06330546736717224, 0.08546590805053711, -0.03832203894853592, -0.004574120044708252, 0.031193997710943222, 0.03204089403152466, -0.030452962964773178, 0.029482562094926834, -0.03062940016388893, -0.010374474339187145, -0.011512490920722485, -0.040615715086460114, -0.015552889555692673, -0.01802300289273262, 0.008217536844313145, 0.02457762323319912, 0.04820248857140541, -0.0075823646038770676, 0.01192711666226387, -0.009721659123897552, 0.02722417376935482, -0.04410915821790695, 0.033011294901371, 0.004525600001215935, 0.03052353858947754, -0.00003096256114076823, 0.05296627804636955, 0.02366015315055847, 0.08454843610525131, 0.012359386309981346, 0.006656072102487087, -0.03796916455030441, 0.018120042979717255, -0.0029023827519267797, 0.022707395255565643, -0.034246351569890976, 0.014397229999303818, 0.017749525606632233, -0.02867095358669758, -0.018349410966038704, 0.05529524385929108, -0.003356707049533725, -0.02521279640495777, 0.05790650472044945, 0.0025186329148709774, -0.014617775566875935, 0.06775166839361191, -0.000027275313186692074, 0.01357679907232523, -0.02147233858704567, -0.003985262475907803, -0.03895720839500427, -0.010930249467492104, 0.019443318247795105, 0.012130019254982471, -0.02574210613965988, -0.04827306419610977, -0.04555594176054001, -0.01760837621986866, -0.018084755167365074, -0.027118312194943428, -0.013126885518431664, 0.029217908158898354, -0.0031582158990204334, -0.02131354622542858, 0.001908823847770691, 0.02752411551773548, -0.0013839248567819595, 0.01503240130841732, -0.01473245956003666, -0.0032464342657476664 ]
18,570
traceback2
extract_tb
Return list of up to limit pre-processed entries from traceback. This is useful for alternate formatting of stack traces. If 'limit' is omitted or None, all entries are extracted. A pre-processed stack trace entry is a quadruple (filename, line number, function name, text) representing the information that is usually printed for a stack trace. The text is a string with leading and trailing whitespace stripped; if the source is not available it is None.
def extract_tb(tb, limit=None): """Return list of up to limit pre-processed entries from traceback. This is useful for alternate formatting of stack traces. If 'limit' is omitted or None, all entries are extracted. A pre-processed stack trace entry is a quadruple (filename, line number, function name, text) representing the information that is usually printed for a stack trace. The text is a string with leading and trailing whitespace stripped; if the source is not available it is None. """ return StackSummary.extract(walk_tb(tb), limit=limit)
(tb, limit=None)
[ -0.03706691786646843, 0.04339875653386116, 0.008714833296835423, -0.025293122977018356, -0.007611039560288191, -0.01141441985964775, 0.07153265178203583, -0.052845172584056854, 0.0027209788095206022, -0.03508180007338524, 0.00517242681235075, -0.002840770175680518, -0.05068892613053322, -0.057191893458366394, -0.022503692656755447, 0.038949355483055115, 0.02139134146273136, 0.004594860132783651, 0.0024086651392281055, 0.039223164319992065, -0.01790027506649494, -0.006892290432006121, -0.020946402102708817, -0.017917389050126076, -0.004440842662006617, 0.03627971559762955, -0.0038632764481008053, -0.079473115503788, 0.054556477814912796, 0.005882618948817253, -0.030598176643252373, -0.010396192781627178, -0.08426477760076523, -0.021836282685399055, -0.04709517955780029, -0.005749993026256561, -0.014383538626134396, -0.02659371681511402, -0.01774625852704048, -0.013810250908136368, -0.0024407522287219763, 0.00557886203750968, -0.0029648400377482176, 0.0019273599609732628, 0.034020792692899704, -0.04654756188392639, 0.08447013050317764, -0.07406538724899292, 0.027774518355727196, -0.03740917891263962, -0.016180410981178284, 0.0625654011964798, 0.007576813455671072, -0.0036429455503821373, 0.02390696480870247, -0.028595946729183197, -0.03160784766077995, -0.009035702794790268, 0.019919617101550102, 0.025104880332946777, -0.0038204938173294067, 0.07591359317302704, 0.023376459255814552, 0.06136748194694519, 0.02371872030198574, -0.048498451709747314, -0.004971347749233246, 0.005600253585726023, -0.09514869004487991, -0.03345606103539467, -0.036895785480737686, -0.033866774290800095, -0.030170349404215813, 0.04599994421005249, -0.030683740973472595, -0.06502968072891235, 0.032429274171590805, -0.04103714972734451, -0.027552049607038498, -0.019577356055378914, -0.0053136092610657215, 0.05880052223801613, 0.006648429203778505, 0.0392916165292263, 0.06198355183005333, -0.04336452856659889, 0.02907511219382286, 0.01239842176437378, -0.04001036658883095, 0.024112321436405182, -0.05962194874882698, -0.026559490710496902, -0.027723180130124092, -0.006562863942235708, -0.08180049061775208, -0.013365310616791248, -0.0027915702667087317, 0.020330332219600677, -0.06273652613162994, -0.029092226177453995, 0.04870380833745003, -0.017361214384436607, -0.019029738381505013, -0.001671733451075852, -0.0027530656661838293, 0.05188684165477753, -0.003287849249318242, -0.009959808550775051, 0.0038269110955297947, 0.05055202171206474, 0.03696424141526222, -0.0381963811814785, 0.000976514769718051, -0.0193719994276762, 0.0312827005982399, -0.021750716492533684, -0.020176313817501068, 0.0060066888108849525, -0.006485855206847191, -0.04723208397626877, 0.045589227229356766, -0.022503692656755447, -0.04894339293241501, -0.021596699953079224, -0.03203567489981651, 0.010781236924231052, 0.013656233437359333, -0.029793862253427505, 0.00896725058555603, -0.04165322333574295, 0.02157958596944809, -0.03160784766077995, -0.02445458248257637, 0.03679310902953148, -0.010798349976539612, -0.03354162350296974, 0.03097466379404068, 0.015932271257042885, -0.010806906037032604, -0.08399096876382828, -0.01677081175148487, 0.04812196269631386, -0.025395801290869713, -0.013904372230172157, -0.05924546346068382, -0.06376331299543381, 0.008804676122963428, -0.005176704842597246, 0.055720169097185135, 0.01952601782977581, -0.019731374457478523, -0.053700827062129974, -0.04723208397626877, 0.007688048295676708, 0.015350427478551865, 0.007756500970572233, 0.014845591969788074, -0.017378326505422592, 0.03150516748428345, -0.011474316008388996, -0.016659578308463097, -0.00018249488493893296, -0.010901028290390968, -0.06513235718011856, -0.011260402388870716, 0.026268567889928818, 0.0466502383351326, 0.03675888106226921, -0.04521274194121361, 0.028698625043034554, -0.0022503691725432873, 0.008714833296835423, 0.03011900931596756, 0.06985557079315186, -0.03361007571220398, 0.030735081061720848, -0.008209996856749058, 0.04199548438191414, 0.0009492408134974539, 0.03511602804064751, -0.03566364571452141, 0.0020204123575240374, -0.02371872030198574, -0.00785062275826931, 0.002616161247715354, -0.05489874258637428, 0.01375891175121069, -0.013271188363432884, -0.027141334488987923, 0.0014909765450283885, 0.02301708422601223, -0.021784942597150803, 0.062668077647686, -0.00023022432287689298, -0.03299400582909584, -0.00942930392920971, -0.046136848628520966, 0.04538387060165405, 0.0344657301902771, -0.0440148264169693, -0.046752918511629105, 0.025840742513537407, -0.004269712138921022, -0.012997379526495934, 0.0567469522356987, 0.08447013050317764, -0.01836232841014862, -0.001616115914657712, -0.11534211784601212, 0.073107048869133, 0.004398060031235218, -0.026953091844916344, 0.01820831000804901, 0.005330722313374281, 0.010764123871922493, 0.0099341394379735, -0.018909946084022522, 0.027278238907456398, 0.05431689694523811, 0.023581815883517265, 0.021476907655596733, -0.031026003882288933, -0.04233774542808533, -0.015162183903157711, 0.04168744757771492, 0.002430056454613805, 0.02650815062224865, 0.00960899144411087, 0.07707728445529938, -0.09124691039323807, -0.000669014232698828, -0.05623356252908707, -0.042988043278455734, 0.008975807577371597, 0.04836154729127884, 0.03627971559762955, 0.02092928998172283, -0.09391655027866364, 0.026987317949533463, -0.08405941724777222, -0.018807267770171165, 0.016950499266386032, -0.007919074967503548, 0.014469103887677193, 0.0038803895004093647, -0.011345967650413513, -0.03761453554034233, -0.008068813942372799, -0.008723389357328415, -0.005835558287799358, -0.014725799672305584, 0.047300536185503006, 0.016214637085795403, -0.013288302347064018, -0.02549847960472107, -0.018909946084022522, 0.0625654011964798, -0.04497315734624863, 0.000582914100959897, 0.001252463087439537, 0.021357115358114243, -0.09015167504549026, 0.030871985480189323, 0.001531620160676539, -0.0013230545446276665, 0.022383900359272957, -0.037819892168045044, -0.031881656497716904, -0.012526770122349262, 0.023633155971765518, 0.02724401280283928, -0.018037179484963417, -0.01793450117111206, 0.03220680356025696, -0.073107048869133, -0.052023746073246, -0.03482510522007942, 0.05842403322458267, -0.005262270104140043, -0.026918865740299225, -0.013579224236309528, -0.006455907132476568, -0.02592630684375763, -0.016488445922732353, -0.016976168379187584, -0.04090024530887604, 0.011611220426857471, -0.04623952507972717, 0.008274171501398087, 0.00014238612493500113, 0.022657709196209908, 0.000244262395426631, 0.011927812360227108, -0.0991189256310463, 0.02736380510032177, -0.005583140533417463, -0.010071043856441975, -0.027842970564961433, -0.021322889253497124, 0.015153626911342144, 0.018259650096297264, -0.05958772450685501, -0.04165322333574295, 0.03511602804064751, -0.0022910127881914377, 0.05595974996685982, 0.05472761020064354, -0.032549068331718445, -0.018807267770171165, -0.07303860038518906, 0.016993282362818718, 0.015316201373934746, 0.021767830476164818, -0.055754393339157104, -0.03912048786878586, -0.02313687652349472, -0.041276734322309494, 0.022965746000409126, -0.06424248218536377, 0.03412346914410591, -0.02154535986483097, -0.011936369352042675, 0.07516062259674072, -0.0672886073589325, 0.0646531954407692, 0.018653251230716705, -0.037511859089136124, -0.04945678263902664, 0.01331397145986557, -0.015863819047808647, -0.057465702295303345, -0.009061372838914394, 0.044425539672374725, 0.024129433557391167, -0.03590323030948639, 0.061196353286504745, -0.02026188001036644, 0.05678118020296097, -0.0408317930996418, -0.0833064466714859, 0.00432960782200098, -0.030837759375572205, -0.0017701336182653904, 0.04072911664843559, 0.04250887408852577, 0.00505691347643733, 0.04062643647193909, 0.004847278352826834, 0.10541653633117676, 0.0593823678791523, 0.032737310975790024, -0.013733241707086563, 0.017729144543409348, 0.05055202171206474, 0.024591486901044846, 0.07153265178203583, -0.024831069633364677, 0.019885390996932983, -0.0026696394197642803, 0.043569885194301605, 0.053735051304101944, 0.03959965333342552, -0.009668886661529541, -0.030906211584806442, 0.03290843963623047, 0.003852580673992634, 0.020912175998091698, 0.04747166857123375, -0.010918141342699528, 0.029708296060562134, -0.00507402652874589, 0.010302070528268814, 0.030529724434018135, 0.0055703055113554, -0.03912048786878586, -0.05185261368751526, 0.004466512240469456, 0.011012262664735317, -0.06270230561494827, 0.09193143248558044, 0.026491038501262665, 0.017558014020323753, -0.02585785463452339, -0.030050557106733322, 0.008441023528575897, 0.03627971559762955, -0.05394040793180466, -0.008616432547569275, -0.013416649773716927, 0.022110091522336006, -0.009694556705653667, -0.0727647915482521, -0.04493893310427666, 0.015367540530860424, 0.06855497509241104, -0.033866774290800095, -0.027962762862443924, 0.016582569107413292, -0.0044451211579144, 0.007880570366978645, -0.0024086651392281055, 0.042098160833120346, -0.01983405277132988, 0.008560814894735813, -0.002986231353133917, -0.021921847015619278, 0.005390618462115526, -0.016548343002796173, 0.014845591969788074, -0.013493658974766731, 0.047060951590538025, -0.03321647644042969, 0.003724232781678438, -0.030512610450387, 0.024899521842598915, 0.029280468821525574, -0.023684494197368622, 0.0334218330681324, -0.035766325891017914, -0.06701479852199554, 0.0371011458337307, -0.0035210149362683296, -0.04309071972966194, -0.0017348378896713257, 0.005882618948817253, 0.00495851319283247, -0.06817848980426788, -0.039257392287254333, 0.028151007369160652, 0.020330332219600677, -0.014888374134898186, -0.028595946729183197, 0.001224654377438128, 0.018584799021482468, 0.022880179807543755, -0.008402518928050995, -0.04534964635968208, 0.011576994322240353, 0.05055202171206474, 0.0334218330681324, -0.03395233675837517, 0.05791064351797104, 0.05873207002878189, -0.004090024624019861, 0.05431689694523811, 0.012963153421878815, -0.02056991495192051, 0.041379414498806, -0.05017553269863129, -0.036313943564891815, -0.030906211584806442, -0.018345214426517487, 0.011311741545796394, -0.0024343347176909447, 0.0046675908379256725, 0.005553192459046841, -0.0552067756652832, 0.020313218235969543, -0.03566364571452141, 0.06335259974002838, 0.04463089630007744, 0.012133168987929821, 0.01304016262292862, -0.012911814264953136, 0.06307879090309143, -0.0020418036729097366, 0.024266337975859642, 0.010336296632885933, 0.0028514659497886896, -0.02561827190220356, 0.007388569880276918, 0.012928927317261696, -0.05667850002646446, 0.0025477088056504726, 0.06787045300006866, 0.05383773148059845, 0.04048953205347061, 0.003980929031968117, 0.06328414380550385, -0.0045606340281665325, 0.062052007764577866, -0.0615728385746479, 0.04370678961277008, 0.00005514955410035327, -0.04175589978694916, 0.039839234203100204, -0.011867917142808437, -0.040968697518110275, 0.052229102700948715, 0.0039360071532428265, -0.026183003559708595, 0.01585526205599308, 0.004006598610430956, -0.005497574806213379, -0.01014805305749178, 0.013168510049581528, 0.024677053093910217, 0.056028202176094055, 0.015204966068267822, 0.04552077502012253, 0.04490470513701439, -0.045863039791584015, 0.010918141342699528, -0.03850441798567772, -0.011363080702722073, 0.020347444340586662, 0.029674069955945015, 0.029160678386688232, 0.022606370970606804, -0.009343738667666912, 0.07495526224374771, 0.05969040095806122, -0.03155650943517685, 0.058081772178411484, 0.00028343527810648084, -0.03768298774957657, -0.01236419565975666, 0.007144708186388016, 0.06451629102230072, 0.01790027506649494, 0.001307010999880731, 0.03734072670340538, 0.03583477810025215, -0.031111568212509155, 0.0233251191675663, -0.0034675365313887596, 0.014084059745073318, 0.07851478457450867, 0.01897839829325676, 0.03372986987233162, 0.04890916496515274, 0.03321647644042969, 0.02442035637795925, -0.0971338078379631, 0.016993282362818718, -0.01086680218577385, -0.028886869549751282, -0.06855497509241104, 0.03881245106458664, -0.022606370970606804, 0.01108071580529213, -0.056575823575258255, -0.006785333622246981, 0.03319936245679855, -0.0036365282721817493, 0.023496249690651894, -0.06869187951087952, 0.016052063554525375, -0.09138381481170654, -0.04463089630007744, 0.05298207700252533, 0.0008722319616936147, 0.03723805025219917, -0.025361575186252594, -0.030187461525201797, 0.0057542710565030575, 0.025823628529906273, 0.03283998742699623, -0.0034119191113859415, -0.0077265528962016106, -0.01504239160567522, -0.015376096591353416, 0.015726914629340172, 0.0012043325696140528, -0.009403633885085583, -0.012030490674078465, -0.039223164319992065, 0.06129902973771095, -0.062360040843486786, -0.02825368568301201, -0.025053540244698524, 0.01812274567782879, 0.003375553758814931, 0.013656233437359333, 0.027877196669578552, 0.023701608180999756, -0.004646199755370617, 0.01995384506881237, 0.024197885766625404, 0.00942930392920971, 0.07967846840620041, -0.01812274567782879, 0.06448206305503845, -0.0009797235252335668, -0.021938960999250412, 0.019970957189798355, -0.028390590101480484, -0.0434672087430954, -0.021921847015619278, 0.05815022438764572, 0.05530945584177971, 0.04274845868349075, -0.018619025126099586, 0.007705161347985268, 0.05315320938825607, -0.029639843851327896, -0.02007363550364971, -0.009865687228739262, -0.0652008131146431, 0.04945678263902664, -0.009223946370184422, 0.016120515763759613, 0.0246428269892931, 0.019235095009207726, -0.028595946729183197, -0.05962194874882698, 0.041276734322309494, -0.0334218330681324, 0.011012262664735317, 0.028613058850169182, -0.012928927317261696, -0.019577356055378914, 0.034602634608745575, -0.05791064351797104, -0.0419270321726799, 0.009300955571234226, 0.05732879787683487, -0.008008918724954128, 0.03112868219614029, 0.002460004296153784, -0.011987708508968353, 0.04534964635968208, 0.008145823143422604, 0.0376487635076046, 0.05530945584177971, 0.01189358625560999, -0.018721703439950943, -0.04860112816095352, -0.009848574176430702, -0.027141334488987923, -0.01894417218863964, 0.011765237897634506, 0.0007754361722618341, -0.042098160833120346, -0.045041609555482864, 0.045315418392419815, 0.017712030559778214, -0.02616588957607746, -0.07844632863998413, 0.005985297728329897, -0.053358566015958786, 0.00792763102799654, -0.03035859391093254, -0.017866048961877823, 0.015992168337106705, 0.0026247177738696337, -0.03497912362217903, -0.05818445235490799, 0.02852749451994896, 0.03210412710905075, 0.019508903846144676, 0.03485933318734169, 0.012509657070040703, 0.06886301189661026, -0.04086602106690407, 0.06906836479902267, -0.025720950216054916, 0.04305649548768997, 0.006729716435074806, 0.012372752651572227, 0.023530475795269012, -0.06355796009302139, 0.03420903533697128, 0.04059221222996712, 0.0061735413037240505, 0.03905203565955162, -0.04805351048707962, 0.02876707725226879, 0.015393209643661976, -0.034568410366773605, 0.02515621855854988, 0.03706691786646843, 0.038333285599946976, -0.042166613042354584, -0.0038033807650208473, 0.038367509841918945, -0.003484649583697319, 0.00795757956802845, 0.005086861085146666, -0.06735705584287643, 0.04452821984887123, 0.003758458886295557, 0.022657709196209908, -0.038333285599946976, -0.022657709196209908, 0.03624549135565758, -0.05527522787451744, 0.04428863525390625, 0.00826561450958252, 0.032241031527519226, -0.002695309231057763, -0.033284928649663925, 0.030016331002116203, 0.06396867334842682, -0.05407731235027313, 0.07865168899297714, 0.0032193970400840044, -0.047334764152765274, 0.07680347561836243, -0.045555002987384796, -0.014931157231330872, 0.03152228146791458, 0.017831822857260704, -0.016197524964809418, 0.01257810927927494, -0.010524540208280087, -0.023530475795269012, -0.021049080416560173, -0.02608032524585724, 0.0017070291796699166, -0.017643578350543976, -0.012988823466002941, 0.022520804777741432, 0.004117833450436592, 0.0024321957025676966, -0.02313687652349472, 0.003035431494936347, 0.011251846328377724, -0.027996988967061043, 0.017763370648026466, 0.03208701312541962, 0.04072911664843559, 0.0008850668091326952, 0.08371715992689133, -0.030649514868855476, 0.08433322608470917, -0.035732097923755646, 0.024831069633364677, -0.05154457688331604, -0.030615288764238358, -0.009745895862579346, 0.019697148352861404, -0.031813204288482666, 0.03713537007570267, 0.0017690639942884445, -0.02717556059360504, -0.0381963811814785, 0.029605617746710777, 0.03162496164441109, -0.054864514619112015, 0.03648507222533226, -0.03489355742931366, -0.005202374421060085, 0.07789871096611023, 0.013125727884471416, -0.01968003436923027, 0.023205328732728958, -0.02099774219095707, -0.0023230998776853085, -0.017155855894088745, 0.012757796794176102, -0.004229068290442228, -0.025207558646798134, -0.0546591579914093, -0.015769697725772858, -0.025121992453932762, 0.045623455196619034, -0.05951927229762077, -0.03597168251872063, 0.012997379526495934, -0.0005310400738380849, -0.0323779359459877, -0.015299088321626186, 0.03795679658651352, 0.043809469789266586, 0.00950631219893694, 0.0038868070114403963, -0.009497756138443947 ]
18,572
traceback2
format_exception
Format a stack trace and the exception information. The arguments have the same meaning as the corresponding arguments to print_exception(). The return value is a list of strings, each ending in a newline and some containing internal newlines. When these lines are concatenated and printed, exactly the same text is printed as does print_exception().
def format_exception(etype, value, tb, limit=None, chain=True): """Format a stack trace and the exception information. The arguments have the same meaning as the corresponding arguments to print_exception(). The return value is a list of strings, each ending in a newline and some containing internal newlines. When these lines are concatenated and printed, exactly the same text is printed as does print_exception(). """ # format_exception has ignored etype for some time, and code such as cgitb # passes in bogus values as a result. For compatibility with such code we # ignore it here (rather than in the new TracebackException API). return list(TracebackException( type(value), value, tb, limit=limit).format(chain=chain))
(etype, value, tb, limit=None, chain=True)
[ -0.003955043852329254, 0.003216384444385767, 0.009653589688241482, 0.0309660192579031, -0.04134717583656311, -0.0604059174656868, -0.00619320385158062, -0.06335168331861496, 0.011898403987288475, -0.06484231352806091, 0.04329919070005417, -0.00942289736121893, -0.04102775827050209, -0.02564234845340252, 0.005013123620301485, 0.06583606451749802, -0.011357164941728115, -0.043228209018707275, 0.05384005978703499, 0.016902655363082886, 0.0005440126406028867, -0.02053162455558777, 0.006117784883826971, -0.06029944494366646, 0.03536691889166832, 0.024098483845591545, 0.018934521824121475, -0.058169975876808167, 0.011978259310126305, 0.02597951330244541, -0.006827607750892639, -0.04961661249399185, -0.08865686506032944, -0.04443490505218506, -0.0007830232498236, 0.030451396480202675, -0.06924321502447128, -0.0115168746560812, 0.013761688955128193, -0.011064362712204456, -0.0006260858499445021, -0.00539021659642458, 0.0022758692502975464, -0.0191829614341259, 0.00604236638173461, -0.028339674696326256, 0.036910783499479294, 0.025997258722782135, -0.06487780064344406, -0.06643941253423691, -0.027310431003570557, 0.029919030144810677, 0.05824095755815506, -0.0317290797829628, -0.015305553562939167, 0.0158645398914814, -0.00790565088391304, -0.020780062302947044, 0.03701725974678993, -0.0037820246070623398, 0.0038419158663600683, 0.04358311742544174, 0.007923397235572338, 0.04770009219646454, -0.04407999664545059, -0.05824095755815506, -0.01567821018397808, -0.01681392639875412, -0.050823312252759933, 0.018295682966709137, 0.019733073189854622, -0.004123626742511988, -0.039856549352407455, 0.010487631894648075, 0.007790305186063051, -0.03210173547267914, -0.03549113869667053, 0.04127619415521622, 0.025393910706043243, -0.004514029249548912, 0.027257194742560387, 0.06949164718389511, -0.020389659330248833, -0.011552365496754646, 0.10193055123090744, -0.034692589193582535, -0.05021996051073074, 0.031977515667676926, 0.00022417645959649235, 0.032137226313352585, -0.03847239539027214, -0.08659838140010834, -0.03487004339694977, -0.014302928932011127, -0.07580907642841339, -0.00898813083767891, 0.02761210687458515, -0.029262444004416466, -0.0032252571545541286, -0.021862542256712914, 0.06583606451749802, -0.02287403866648674, 0.00619320385158062, -0.02684904634952545, -0.03309548646211624, -0.05348514765501022, -0.005665272939950228, -0.020744571462273598, 0.05124920606613159, 0.010443267412483692, 0.013149467296898365, -0.07233094424009323, 0.04102775827050209, -0.05948314815759659, 0.05220746621489525, 0.05174608156085014, 0.03156936913728714, -0.03032717853784561, 0.050397418439388275, -0.03932418301701546, 0.05792153999209404, -0.0013054084265604615, -0.05589854344725609, 0.017266439273953438, -0.035082992166280746, 0.046812813729047775, -0.03655587509274483, -0.024204956367611885, 0.012430771254003048, -0.034532878547906876, 0.015509627759456635, -0.014507003128528595, -0.01731080375611782, -0.0032319119200110435, 0.010993380099534988, 0.03236791864037514, -0.06090279296040535, -0.005328107159584761, -0.0027904908638447523, 0.014728822745382786, -0.024080738425254822, 0.01863284781575203, 0.013522123917937279, -0.001714665675535798, -0.028162218630313873, -0.021330174058675766, 0.027026502415537834, 0.015793556347489357, 0.04244740307331085, 0.03868534043431282, 0.006672333925962448, 0.0360412523150444, -0.008109725080430508, 0.009813300333917141, 0.017860915511846542, 0.0048090494237840176, 0.008291617035865784, -0.05021996051073074, 0.027150722220540047, 0.022075489163398743, -0.05565010756254196, -0.03059336170554161, 0.04674183204770088, -0.0013808271614834666, 0.018189208582043648, 0.04368959367275238, -0.007368847727775574, 0.09185107052326202, -0.002903618849813938, -0.019147468730807304, -0.022590110078454018, -0.034142475575208664, -0.002841509412974119, 0.021773813292384148, -0.008442454971373081, 0.03014972247183323, -0.015979886054992676, 0.024542123079299927, 0.0003737660590559244, -0.023761317133903503, -0.01453362125903368, -0.021170465275645256, 0.009121222421526909, 0.015722574666142464, -0.016317050904035568, -0.08148765563964844, 0.029688337817788124, -0.006725570652633905, 0.018455391749739647, 0.01146363839507103, -0.042127981781959534, -0.014773186296224594, 0.028002507984638214, 0.028286438435316086, -0.019591107964515686, 0.012537244707345963, -0.014941769652068615, 0.00467152101919055, 0.049687594175338745, -0.01966209150850773, -0.0424828939139843, 0.06711374223232269, -0.01448038499802351, -0.034515131264925, 0.06771709024906158, 0.021596359089016914, 0.05249139294028282, -0.02102850005030632, -0.08581757545471191, 0.021880287677049637, -0.005900402087718248, -0.012075860053300858, -0.013486633077263832, 0.010736069642007351, 0.07037892937660217, -0.03323745355010033, 0.037620607763528824, 0.012200078926980495, 0.041915036737918854, 0.06473583728075027, 0.007399902679026127, -0.06931419670581818, -0.014853041619062424, -0.017035746946930885, 0.03417796641588211, 0.03288254141807556, -0.016529997810721397, 0.010327921248972416, 0.0485873706638813, -0.018881285563111305, -0.008846166543662548, -0.011179708875715733, -0.06690079718828201, 0.02526969090104103, 0.013601979240775108, 0.047558125108480453, 0.032953523099422455, -0.06427445262670517, -0.04244740307331085, -0.035721831023693085, -0.01755036786198616, 0.015039370395243168, -0.010496504604816437, -0.018952269107103348, 0.053059253841638565, -0.08368810266256332, 0.06619097292423248, 0.023566115647554398, -0.0710887536406517, -0.028375165536999702, -0.013539869338274002, 0.09873634576797485, 0.00691189942881465, -0.05710524320602417, -0.032243698835372925, -0.0604059174656868, 0.03754962608218193, -0.048551879823207855, 0.02793152630329132, 0.023157969117164612, 0.0009560425532981753, -0.029422154650092125, 0.003422676818445325, -0.06328070163726807, -0.018774813041090965, -0.03124994784593582, -0.05891529098153114, 0.007240192499011755, 0.021099481731653214, 0.10491180419921875, -0.05156862363219261, -0.01562497392296791, 0.011153090745210648, 0.06118672341108322, -0.08148765563964844, 0.004003844223916531, -0.013105102814733982, 0.036112233996391296, -0.023512879386544228, -0.003067765384912491, -0.05540166795253754, 0.03694627434015274, -0.04645790159702301, -0.005168396979570389, -0.029581865295767784, -0.021827051416039467, 0.028730077669024467, 0.01636141538619995, -0.008038743399083614, 0.06746865808963776, 0.040175970643758774, 0.024737324565649033, -0.025198709219694138, -0.08205551654100418, -0.008757438510656357, 0.022022251039743423, 0.058276452124118805, -0.036112233996391296, 0.04329919070005417, -0.04216347262263298, 0.0317290797829628, 0.015669338405132294, 0.0808488130569458, 0.01143701933324337, 0.0276475977152586, -0.034248948097229004, 0.041098739951848984, -0.07800952345132828, -0.027079738676548004, -0.018934521824121475, -0.019431399181485176, 0.02585529536008835, 0.0013719543348997831, 0.0019120851065963507, 0.038649849593639374, 0.05721171572804451, -0.034639351069927216, -0.009600353427231312, -0.040175970643758774, 0.04287329688668251, 0.006352914031594992, -0.02917371690273285, 0.07027245312929153, -0.046209461987018585, 0.041808560490608215, -0.01605086773633957, -0.05249139294028282, 0.006308550015091896, 0.010336793959140778, 0.02766534313559532, -0.0455351322889328, -0.03666234761476517, 0.023175714537501335, 0.0276475977152586, 0.010283557698130608, 0.04340566322207451, 0.021862542256712914, 0.0013420087052509189, -0.05494028329849243, -0.03178231418132782, -0.007044991012662649, 0.012563862837851048, -0.0263521708548069, -0.002632998861372471, -0.007058300077915192, 0.01610410399734974, 0.03502975404262543, 0.059305693954229355, 0.028889786452054977, 0.1422484815120697, 0.009183332324028015, 0.02679581008851528, 0.03059336170554161, 0.023211205378174782, -0.03259861096739769, 0.03547339513897896, -0.058276452124118805, -0.07630594819784164, 0.021010754629969597, 0.027097484096884727, 0.053272198885679245, -0.013424523174762726, 0.008446890860795975, 0.014373911544680595, -0.025500383228063583, 0.019324924796819687, 0.02596176788210869, 0.0039461711421608925, 0.02869458682835102, 0.023282187059521675, -0.005696327891200781, 0.0044363923370838165, 0.0517105907201767, -0.023211205378174782, -0.03921771049499512, 0.01652112603187561, 0.008797366172075272, 0.013291431590914726, -0.03151613101363182, 0.014001253992319107, 0.03950163722038269, 0.024329176172614098, -0.02624569647014141, -0.049190718680620193, 0.00539021659642458, 0.0062641859985888, 0.039359673857688904, 0.002468852326273918, 0.004733630456030369, 0.025127725675702095, -0.041098739951848984, -0.06303226202726364, 0.020602606236934662, -0.003016746835783124, 0.006454951129853725, -0.019165216013789177, 0.008176270872354507, 0.02390328235924244, -0.02298051305115223, -0.017213203012943268, -0.03174682334065437, 0.0430152602493763, 0.04138266667723656, 0.02434692159295082, -0.020017001777887344, -0.021915778517723083, -0.024542123079299927, 0.013779434375464916, -0.003056674264371395, -0.020283186808228493, 0.014329547062516212, -0.02227069064974785, -0.009360788390040398, -0.027239449322223663, 0.04205700010061264, 0.04255387559533119, -0.08248140662908554, 0.00820732582360506, -0.030220704153180122, 0.0016015376895666122, 0.02777181565761566, -0.05788604915142059, -0.01649450697004795, 0.03275832161307335, 0.02564234845340252, 0.014054491184651852, -0.04074382781982422, 0.012785682454705238, 0.057779572904109955, 0.00540796248242259, 0.02337091602385044, -0.033450398594141006, 0.035189464688301086, -0.006858662702143192, 0.012679209001362324, -0.02058486081659794, -0.03329068794846535, -0.01686716452240944, 0.07098227739334106, 0.017266439273953438, 0.002675144700333476, 0.0070716096088290215, -0.006561424117535353, 0.0020751224365085363, 0.018402155488729477, -0.002079559024423361, 0.019378161057829857, 0.022306181490421295, -0.04297976940870285, 0.028286438435316086, 0.017887534573674202, 0.024524377658963203, 0.022909529507160187, -0.0015161371557042003, 0.023512879386544228, -0.004449701402336359, 0.02179155871272087, -0.019591107964515686, 0.0038596612866967916, 0.05107174813747406, 0.04574807733297348, 0.03911123424768448, 0.04993603378534317, -0.006086730398237705, -0.010088356211781502, -0.04255387559533119, 0.06714923679828644, -0.037620607763528824, 0.04833893105387688, -0.02379680797457695, -0.010860288515686989, -0.02026543952524662, -0.04297976940870285, 0.021649595350027084, 0.036271944642066956, 0.09447741508483887, 0.05302376300096512, -0.0019065396627411246, 0.034373167902231216, -0.0028060181066393852, 0.016751818358898163, -0.07446040958166122, 0.04226994514465332, 0.020176712423563004, -0.01720432937145233, 0.017878660932183266, 0.0017956298543140292, -0.011046617291867733, 0.006632406730204821, 0.0608673021197319, -0.02005249448120594, -0.021596359089016914, -0.04134717583656311, 0.015039370395243168, -0.013513251207768917, -0.02603275142610073, -0.03151613101363182, -0.04823245853185654, -0.08375909179449081, -0.012501753866672516, 0.06136418133974075, -0.03533142805099487, 0.03701725974678993, -0.05905725434422493, 0.035508885979652405, -0.041489142924547195, 0.056750331073999405, 0.023157969117164612, 0.015447517856955528, -0.03362785279750824, 0.028446147218346596, 0.02603275142610073, 0.0158645398914814, -0.00006332257180474699, -0.08681132644414902, -0.062357932329177856, 0.016955891624093056, -0.03140965849161148, 0.0809197947382927, 0.0557565800845623, 0.04880031570792198, 0.034852299839258194, 0.02440015785396099, 0.029422154650092125, 0.02846389450132847, -0.03054012544453144, 0.050290945917367935, 0.03918221592903137, 0.0029568555764853954, 0.0700950026512146, -0.020709078758955002, 0.050397418439388275, 0.03417796641588211, -0.04482530802488327, 0.037620607763528824, -0.023832300677895546, -0.037727080285549164, 0.022945022210478783, 0.05454988032579422, -0.04741616174578667, 0.018597356975078583, 0.03401825577020645, -0.04404450207948685, -0.02580205723643303, -0.0005833855830132961, -0.02857036702334881, 0.01300750207155943, -0.05348514765501022, -0.018224699422717094, -0.05373358353972435, 0.04383155703544617, 0.029652846977114677, 0.07016598433256149, 0.03522495552897453, -0.03004324994981289, 0.00539021659642458, 0.0197153277695179, 0.02869458682835102, -0.009192205034196377, -0.013735070824623108, 0.01108210813254118, 0.012856665067374706, -0.010851415805518627, -0.05362711101770401, 0.011153090745210648, 0.0072535015642642975, -0.012013750150799751, 0.03549113869667053, -0.015199080109596252, -0.0276475977152586, -0.028552621603012085, 0.03291803225874901, 0.0008512327913194895, 0.011933895759284496, 0.01565159298479557, 0.032296936959028244, -0.020602606236934662, 0.00843358226120472, 0.015873411670327187, 0.029706083238124847, -0.007994378916919231, -0.05589854344725609, -0.0061044758185744286, -0.05277532339096069, 0.010478759184479713, 0.03536691889166832, 0.020176712423563004, -0.04475432634353638, -0.04709674045443535, 0.07921621948480606, -0.011587857268750668, 0.014764313586056232, 0.013522123917937279, -0.0013675179798156023, 0.08851490169763565, -0.017781060189008713, -0.006716697942465544, -0.003371658269315958, -0.0598735511302948, 0.045606113970279694, -0.026423152536153793, 0.009072422049939632, 0.034089237451553345, 0.008180707693099976, 0.03435542434453964, -0.03339716047048569, 0.0450027659535408, -0.016636472195386887, -0.0026551808696240187, -0.005381343886256218, 0.04045989736914635, 0.04730968922376633, -0.019750818610191345, -0.0445413812994957, -0.03339716047048569, -0.004596102517098188, 0.017168838530778885, 0.00661466084420681, -0.013122848235070705, -0.003861879464238882, -0.006672333925962448, 0.03337941691279411, -0.04833893105387688, -0.0007935597095638514, 0.027132976800203323, -0.003050019731745124, -0.0465998649597168, -0.013628597371280193, -0.021986760199069977, -0.11122923344373703, 0.02347738854587078, 0.09277383983135223, -0.026973266154527664, -0.08688230812549591, -0.07282781600952148, 0.0036533691454678774, 0.044257450848817825, 0.02890753373503685, -0.06214498355984688, -0.0010436612647026777, 0.03538466617465019, 0.004631593823432922, -0.07460237294435501, -0.008899402804672718, -0.020655842497944832, 0.03275832161307335, -0.0044009010307490826, -0.0911412462592125, 0.012670336291193962, 0.005576545372605324, 0.04287329688668251, 0.03605899587273598, -0.0197153277695179, -0.013353541493415833, -0.04993603378534317, 0.042518384754657745, 0.03247439116239548, 0.03151613101363182, -0.027310431003570557, 0.020780062302947044, 0.03559761121869087, -0.025677839294075966, 0.02324669621884823, 0.029972266405820847, -0.011641093529760838, -0.00619320385158062, -0.013522123917937279, 0.04684830456972122, 0.06168359890580177, -0.03107249177992344, -0.014941769652068615, -0.030717581510543823, -0.04216347262263298, 0.0029790375847369432, -0.036325182765722275, 0.0151014793664217, -0.03027394227683544, 0.013735070824623108, -0.03687529265880585, -0.029315680265426636, 0.03337941691279411, 0.0037176967598497868, -0.05266885086894035, -0.02108173631131649, -0.004265591502189636, 0.030948273837566376, 0.010461012832820415, 0.05437242612242699, 0.013105102814733982, -0.03362785279750824, -0.0465998649597168, -0.07637692987918854, -0.06015748158097267, 0.018561866134405136, -0.04670633748173714, 0.020602606236934662, -0.005789492279291153, -0.06242891401052475, 0.04493178054690361, 0.02271432988345623, -0.028552621603012085, 0.01897001452744007, -0.007994378916919231, 0.017852043733000755, 0.01889903098344803, -0.04266034811735153, 0.009582608006894588, -0.00413693580776453, 0.03644939884543419, -0.026582863181829453, -0.01532329898327589, 0.02869458682835102, 0.0388982892036438, 0.01296313852071762, 0.0010608523152768612, -0.020993009209632874, 0.030398160219192505, 0.03857886791229248, -0.021383412182331085, 0.010931271128356457, 0.019271688535809517, 0.06494878232479095, 0.029191462323069572, -0.05273983255028725, -0.030735326930880547, 0.020851043984293938, -0.05415947735309601, 0.009254314936697483, -0.046422410756349564, -0.0217383224517107, 0.0009455061517655849, 0.027896035462617874, -0.005754000972956419, 0.013051866553723812, 0.05078782141208649, 0.008202889934182167, -0.016299305483698845, 0.060441408306360245, 0.033610109239816666, -0.048055000603199005, 0.00003913036562153138, 0.03043365105986595, -0.037904538214206696, -0.02429368533194065, 0.007453139405697584, 0.006743316538631916, 0.024914778769016266, -0.00525712501257658, 0.0022248507011681795, -0.03286479413509369, 0.001445154775865376, -0.027558868750929832, -0.022288436070084572, -0.012759064324200153, 0.0578150674700737, -0.08865686506032944, 0.0035690777003765106, -0.019431399181485176, -0.024204956367611885, 0.0220045056194067, 0.006885280832648277, -0.021986760199069977, 0.009236568585038185, 0.027363669127225876, 0.04777107387781143, 0.010203702375292778, -0.031107982620596886, -0.003983880393207073 ]
18,573
traceback2
format_exception_only
Format the exception part of a traceback. The arguments are the exception type and value such as given by sys.last_type and sys.last_value. The return value is a list of strings, each ending in a newline. Normally, the list contains a single string; however, for SyntaxError exceptions, it contains several lines that (when printed) display detailed information about where the syntax error occurred. The message indicating which exception occurred is always the last string in the list.
def format_exception_only(etype, value): """Format the exception part of a traceback. The arguments are the exception type and value such as given by sys.last_type and sys.last_value. The return value is a list of strings, each ending in a newline. Normally, the list contains a single string; however, for SyntaxError exceptions, it contains several lines that (when printed) display detailed information about where the syntax error occurred. The message indicating which exception occurred is always the last string in the list. """ return list(TracebackException(etype, value, None).format_exception_only())
(etype, value)
[ 0.026379771530628204, 0.001996017759665847, 0.027691472321748734, 0.0027327111456543207, -0.002153148641809821, -0.05414411798119545, 0.015066348016262054, -0.058807943016290665, 0.05356113985180855, -0.03880449756979942, 0.03559811785817146, -0.004181047901511192, -0.03854944556951523, -0.037274181842803955, 0.02550530433654785, 0.03184519335627556, -0.04496220871806145, -0.02423003874719143, 0.042484547942876816, 0.013791082426905632, -0.007724463474005461, 0.006553952116519213, 0.01321721263229847, -0.07119623571634293, 0.035379499197006226, 0.0030059823766350746, 0.012524926103651524, -0.0532696507871151, 0.06460129469633102, -0.0038485683035105467, -0.010448065586388111, -0.038585882633924484, -0.08853983879089355, -0.028383759781718254, -0.013454047963023186, 0.0464196540415287, -0.05877150967717171, 0.017389152199029922, 0.03596247732639313, -0.001988047268241644, -0.020841477438807487, 0.0006848857156001031, -0.0034454932902008295, -0.031280435621738434, -0.020750386640429497, -0.03474186733365059, 0.04131859168410301, -0.012115019373595715, -0.08628080040216446, -0.020076317712664604, 0.00023825826065149158, 0.05392549932003021, 0.023355571553111076, -0.008084270171821117, -0.014674658887088299, 0.0016737856203690171, -0.0004306866612751037, -0.023355571553111076, -0.007988625206053257, -0.0005428416770882905, 0.010930844582617283, 0.06318028271198273, -0.01861887238919735, 0.019475121051073074, -0.009600925259292126, -0.06405474990606308, -0.00850784033536911, -0.031152907758951187, -0.030843200162053108, 0.015521799214184284, -0.00010432694398332387, -0.01436495129019022, -0.037383489310741425, 0.009473398327827454, 0.047694917768239975, -0.015877051278948784, -0.02532312273979187, 0.06686033308506012, 0.030369529500603676, 0.0008551108767278492, 0.003295194124802947, 0.0618685819208622, -0.01740737073123455, 0.03572564572095871, 0.079649418592453, -0.061795707792043686, -0.06511139869689941, 0.04335901886224747, 0.024175385013222694, 0.014146334491670132, -0.025177378207445145, -0.04937098175287247, -0.050209011882543564, 0.0020153746008872986, -0.07345527410507202, 0.014374060556292534, 0.03563455492258072, -0.058480020612478256, -0.02723602205514908, -0.0018571049440652132, 0.08562494814395905, -0.004017085302621126, 0.05622097849845886, -0.04496220871806145, -0.004290356766432524, -0.0578606054186821, 0.016961026936769485, -0.027982963249087334, 0.033557694405317307, -0.012670670635998249, 0.009122700430452824, -0.08256431668996811, 0.03171766921877861, -0.05862576514482498, 0.026561953127384186, 0.05057337507605553, -0.008070606738328934, -0.025596395134925842, 0.04532656818628311, -0.046201035380363464, 0.061905015259981155, 0.011777984909713268, -0.07826484739780426, 0.031881630420684814, 0.010803318582475185, 0.02944040857255459, -0.05662177503108978, -0.016961026936769485, 0.008621703833341599, -0.04117284715175629, 0.007323666010051966, 0.034486815333366394, -0.025960756465792656, -0.021151185035705566, -0.029750116169452667, 0.05283241719007492, -0.08300154656171799, -0.02160663716495037, 0.03485117480158806, 0.005269578192383051, -0.013390284962952137, -0.008685466833412647, 0.049698907881975174, 0.028055835515260696, -0.022353576496243477, -0.022553976625204086, 0.013809300027787685, 0.07028532773256302, 0.05407124385237694, 0.03202737495303154, 0.017862822860479355, 0.06092124059796333, 0.012242546305060387, -0.016159432008862495, -0.017635095864534378, -0.006116718519479036, 0.0011716498993337154, -0.024667272344231606, 0.013007705099880695, -0.007291784510016441, -0.04109997674822807, -0.049480289220809937, 0.08788399398326874, -0.01750756986439228, 0.03514266386628151, 0.027655037119984627, -0.0006820391863584518, 0.03731061518192291, 0.014547132886946201, -0.01481129415333271, -0.020586423575878143, -0.02643442526459694, -0.0036754964385181665, 0.030005168169736862, -0.0031881630420684814, 0.04711193963885307, -0.011349860578775406, 0.037492796778678894, 0.025960756465792656, -0.026489080861210823, 0.015785962343215942, -0.023792805150151253, -0.018555108457803726, 0.044488538056612015, 0.006599497515708208, -0.06216007098555565, 0.013335630297660828, -0.030569929629564285, 0.023392006754875183, 0.020568206906318665, -0.006727023981511593, -0.00445431936532259, 0.013044141232967377, 0.029986951500177383, -0.02273615635931492, 0.0030993500258773565, -0.010074594989418983, -0.020641079172492027, 0.010484501719474792, -0.03554346412420273, -0.04434279352426529, 0.03042418509721756, -0.023555969819426537, -0.008321105502545834, 0.02712671272456646, 0.04791353642940521, 0.052395183593034744, -0.05086486414074898, -0.08504197001457214, 0.009773996658623219, -0.009491616860032082, -0.005861665587872267, -0.022171396762132645, 0.04514439031481743, 0.05775129795074463, -0.04791353642940521, 0.05257736146450043, 0.011823530308902264, -0.005729584489017725, 0.055200766772031784, -0.024175385013222694, -0.05498214811086655, -0.015439817681908607, -0.030843200162053108, 0.05356113985180855, 0.004923434462398291, -0.018555108457803726, -0.005009970627725124, 0.022244269028306007, -0.004659272730350494, 0.029240010306239128, -0.014774858020246029, -0.03521553799510002, 0.01779905892908573, 0.02253575809299946, 0.01860976219177246, 0.0059254285879433155, -0.0922563299536705, -0.01612299680709839, -0.027290675789117813, -0.04142790287733078, 0.0011209809454157948, -0.008088825270533562, -0.009081710129976273, 0.05873507261276245, -0.07775474339723587, 0.04230237007141113, 0.07746325433254242, -0.060994114726781845, -0.0183273833245039, 0.0015735861379653215, 0.07159703224897385, 0.011595804244279861, -0.03880449756979942, -0.0213333647698164, -0.05767842382192612, 0.020768605172634125, -0.03290184214711189, 0.024740144610404968, 0.023701714351773262, -0.007405647076666355, 0.00936408992856741, -0.006649597082287073, -0.06554862856864929, 0.003971540369093418, -0.03073389083147049, -0.054799966514110565, 0.029859423637390137, 0.029185354709625244, 0.09619143605232239, -0.0687914490699768, 0.00016495896852575243, 0.011668676510453224, 0.023100517690181732, -0.07323665916919708, 0.028383759781718254, 0.004877889528870583, 0.04645609110593796, 0.0019721065182238817, 0.017853712663054466, -0.02643442526459694, 0.03705556318163872, -0.01900145225226879, 0.012206110171973705, -0.05804278701543808, -0.02282724715769291, 0.006986631546169519, -0.06124916672706604, -0.003072022693231702, 0.09480685740709305, 0.04113641381263733, 0.022900119423866272, 0.003491038456559181, -0.06696964055299759, 0.0035160884726792574, 0.038695190101861954, 0.08526058495044708, -0.056803956627845764, 0.05111991614103317, -0.0466747060418129, 0.037492796778678894, 0.034778304398059845, 0.038075774908065796, -0.02102365717291832, -0.0000692784960847348, -0.04361407086253166, 0.0366547666490078, -0.06124916672706604, -0.0813983604311943, -0.027764344587922096, -0.023483097553253174, 0.0011875907657667994, 0.009637361392378807, -0.004278970416635275, 0.023865677416324615, 0.03596247732639313, -0.013089686632156372, 0.00036720806383527815, -0.05071911960840225, 0.03645436838269234, -0.02351953461766243, -0.019238285720348358, 0.08977866917848587, -0.043577633798122406, 0.02040424384176731, -0.008703685365617275, -0.04117284715175629, -0.015394273214042187, 0.014975257217884064, 0.06146778166294098, -0.02113296650350094, -0.07054038345813751, -0.029057828709483147, 0.020039882510900497, 0.015540017746388912, 0.029240010306239128, 0.03822151944041252, -0.018892142921686172, -0.03424998000264168, -0.0412457212805748, -0.02211674302816391, 0.013973263092339039, -0.014018808491528034, 0.003748368937522173, -0.036090005189180374, 0.02721780352294445, 0.026671260595321655, 0.06354464590549469, 0.02543243207037449, 0.08059675991535187, 0.021351583302021027, 0.04827789589762688, -0.016642211005091667, 0.028493069112300873, -0.011149461381137371, -0.0036094561219215393, -0.03833082690834999, -0.06467416137456894, -0.010047268122434616, 0.08147122710943222, 0.034778304398059845, -0.0005012816982343793, 0.009473398327827454, 0.02033137157559395, -0.02011275477707386, -0.009692016057670116, 0.0424116775393486, -0.007537728175520897, 0.040881358087062836, 0.016341613605618477, -0.020677514374256134, 0.0318087562918663, 0.019493339583277702, -0.039678964763879776, -0.046201035380363464, -0.012880179099738598, 0.024157166481018066, -0.00805694330483675, -0.032227773219347, 0.02189812622964382, 0.010657573118805885, -0.009040719829499722, -0.010120140388607979, -0.04743986576795578, -0.025450650602579117, 0.021260492503643036, 0.04754917323589325, -0.01416455302387476, -0.013891281560063362, 0.036490801721811295, -0.041682954877614975, -0.07498559355735779, -0.000992315704934299, 0.025341341271996498, -0.00405579898506403, 0.005160269793123007, 0.008298332802951336, 0.012096801772713661, -0.018573326990008354, 0.014674658887088299, -0.013781973160803318, 0.04084492474794388, 0.00622602691873908, 0.005542849190533161, -0.017862822860479355, -0.03204559162259102, -0.020549988374114037, 0.021442674100399017, 0.019566211849451065, -0.02953149937093258, 0.02483123540878296, -0.04270316660404205, -0.010785100050270557, -0.027673255652189255, 0.08322016149759293, 0.0332297682762146, -0.051994383335113525, 0.04416061192750931, -0.025596395134925842, -0.013244540430605412, 0.015448926948010921, -0.057897042483091354, -0.002109880791977048, 0.04423348605632782, 0.014191879890859127, 0.007405647076666355, -0.026744132861495018, 0.005643048789352179, 0.07199782878160477, 0.021369801834225655, 0.0007110742153599858, -0.03191806748509407, 0.003201826475560665, -0.004520359914749861, 0.01801767572760582, -0.04813215136528015, -0.0206228606402874, -0.0038827271200716496, 0.05917230620980263, 0.01952977664768696, -0.03140795975923538, 0.03144439682364464, -0.0008784527890384197, 0.00412639370188117, 0.03825795650482178, -0.005187596660107374, -0.0001307289203396067, 0.0348147414624691, 0.014483368955552578, 0.02162485383450985, -0.026397990062832832, 0.03102538175880909, 0.0342317633330822, 0.014128116890788078, 0.010183903388679028, -0.015867942944169044, 0.005638494156301022, -0.02623402699828148, 0.0432497076690197, 0.014046135358512402, 0.03530662879347801, 0.0432497076690197, 0.005797902122139931, -0.01842758245766163, 0.04000689089298248, -0.09670154005289078, 0.04514439031481743, -0.030861418694257736, 0.04412417486310005, -0.0005977805703878403, -0.0017466578865423799, -0.007765454240143299, -0.0020427017007023096, -0.0031266771256923676, 0.027964744716882706, 0.09692015498876572, 0.03284718841314316, -0.00542898615822196, 0.03953322023153305, 0.0010594949126243591, 0.002571025863289833, -0.05305103212594986, -0.01522120088338852, 0.022754374891519547, -0.005128387827426195, 0.0025027079973369837, -0.019092541188001633, -0.039569657295942307, 0.004782244563102722, 0.03942391276359558, -0.015029911883175373, -0.01581328921020031, -0.02643442526459694, -0.012934832833707333, 0.006399098783731461, -0.03625396639108658, -0.04405130445957184, -0.04361407086253166, -0.0171978622674942, 0.032974716275930405, 0.07819197326898575, -0.03353947401046753, 0.051775768399238586, -0.05982815474271774, 0.037674978375434875, -0.022863684222102165, 0.0738925114274025, 0.035670988261699677, 0.02661660686135292, -0.02423003874719143, 0.028383759781718254, 0.06022895500063896, 0.02681700512766838, 0.012397400103509426, -0.05316033959388733, -0.04000689089298248, 0.022553976625204086, -0.0206228606402874, 0.08212707936763763, 0.07381963729858398, -0.0011215502163395286, 0.040480561554431915, -0.002191862091422081, 0.05356113985180855, 0.006658706348389387, -0.002655284246429801, 0.022845465689897537, 0.012871069833636284, -0.019292941316962242, 0.051484279334545135, -0.026561953127384186, 0.03166301175951958, 0.03862231969833374, -0.04146433621644974, -0.010584700852632523, -0.02273615635931492, -0.02260863035917282, 0.03960609436035156, 0.02341022528707981, -0.025705702602863312, 0.014601786620914936, 0.02812870778143406, -0.024503309279680252, -0.048095718026161194, -0.04394199699163437, -0.016879046335816383, 0.004290356766432524, -0.059500232338905334, -0.06201432645320892, -0.04131859168410301, 0.01701568067073822, 0.025395995005965233, 0.062305815517902374, 0.00535155925899744, -0.005196705926209688, 0.00003092090992140584, 0.03395849093794823, 0.047476302832365036, -0.015029911883175373, -0.014246534556150436, 0.018491346389055252, -0.03284718841314316, -0.0007810999522916973, -0.03741992637515068, -0.010976389981806278, 0.011094807647168636, -0.003777973121032119, 0.05607523396611214, -0.03543415665626526, 0.0031335088424384594, -0.05053693801164627, 0.023501316085457802, 0.030078040435910225, -0.003044695593416691, 0.024740144610404968, 0.0189103614538908, -0.008785665966570377, -0.02543243207037449, -0.0004668381588999182, 0.013927717693150043, -0.011413623578846455, -0.08438611775636673, 0.030096258968114853, -0.04813215136528015, 0.023355571553111076, 0.05942735821008682, 0.016642211005091667, -0.020932568237185478, -0.012233437038958073, 0.09058026969432831, 0.018372928723692894, 0.02031315304338932, 0.057095445692539215, -0.006212363485246897, 0.06656884402036667, 0.013344739563763142, 0.03752923384308815, 0.012397400103509426, -0.03144439682364464, 0.049881089478731155, -0.030296657234430313, 0.028347324579954147, 0.05662177503108978, 0.016569338738918304, 0.049480289220809937, -0.04354119673371315, 0.06113985925912857, -0.01789925806224346, -0.030497057363390923, -0.03299293294548988, 0.006103055085986853, 0.032683227211236954, -0.011923729442059994, -0.061613526195287704, -0.022900119423866272, 0.04055343195796013, 0.015202983282506466, 0.009254781529307365, -0.010575592517852783, -0.009528052993118763, 0.0042379796504974365, 0.03290184214711189, -0.04215662553906441, -0.002239684574306011, 0.04215662553906441, 0.023045863956212997, -0.058188531547784805, -0.01982126571238041, -0.022153178229928017, -0.08628080040216446, 0.01892857998609543, 0.06062975153326988, -0.03605356812477112, -0.0756414458155632, -0.06944730132818222, 0.021388020366430283, 0.007360102143138647, 0.003147172275930643, -0.05975528433918953, -0.006845441646873951, 0.030497057363390923, -0.004033026285469532, -0.05272310599684715, -0.0075058466754853725, -0.03771141543984413, 0.030788546428084373, 0.007246239110827446, -0.076807402074337, 0.0022294367663562298, -0.02320982702076435, 0.02071395143866539, 0.07378320395946503, -0.0035707426723092794, -0.013690883293747902, -0.05833427608013153, 0.03902311623096466, -0.02351953461766243, 0.018281837925314903, -0.0372377447783947, 0.006358108017593622, 0.06897363066673279, -0.012479380704462528, 0.0202038437128067, 0.05203082039952278, 0.01860976219177246, -0.026980968192219734, -0.047366995364427567, 0.05534651130437851, 0.11965630948543549, -0.028183361515402794, -0.008275560103356838, -0.0021907235495746136, -0.012898396700620651, 0.0013401671312749386, -0.025104505941271782, -0.01642359420657158, 0.0031836084090173244, 0.025778574869036674, -0.024466874077916145, -0.021970998495817184, 0.00405579898506403, 0.012197000905871391, -0.046091727912425995, -0.034486815333366394, -0.015202983282506466, -0.001693142345175147, -0.044087741523981094, 0.06547576189041138, 0.02563283033668995, -0.03836726397275925, -0.05323321372270584, -0.07644303888082504, -0.03293827921152115, -0.008475959300994873, -0.031098254024982452, 0.01171422190964222, 0.028493069112300873, -0.03024200350046158, 0.042083751410245895, 0.03811221197247505, -0.04496220871806145, 0.03392205387353897, -0.014528914354741573, 0.04434279352426529, 0.02643442526459694, -0.039387475699186325, -0.009373199194669724, -0.001982354326173663, -0.006075727753341198, -0.04645609110593796, -0.011604913510382175, 0.043067529797554016, 0.009956177324056625, 0.03211846575140953, -0.001152862561866641, -0.07283586263656616, 0.018491346389055252, 0.000029444250685628504, -0.00023370372946374118, 0.012943942099809647, -0.013226321898400784, 0.04612816497683525, 0.0242118202149868, -0.01932937651872635, -0.027199584990739822, 0.030041605234146118, -0.047986406832933426, -0.03596247732639313, -0.030897853896021843, 0.011532041244208813, 0.024394001811742783, 0.021479109302163124, -0.01951155811548233, 0.005902656354010105, 0.09007015824317932, 0.012898396700620651, -0.049261674284935, 0.06511139869689941, 0.01075777318328619, -0.033393729478120804, 0.003338462207466364, 0.02710849419236183, -0.04915236309170723, -0.023136954754590988, -0.009628252126276493, -0.0013618010561913252, 0.01041162945330143, 0.009295772761106491, -0.03304758667945862, -0.003536583622917533, -0.03240995481610298, -0.009245673194527626, -0.0510106086730957, -0.002280675107613206, 0.06285236030817032, -0.06653241068124771, 0.02763681858778, -0.023738151416182518, -0.019784828647971153, 0.03946034982800484, 0.0063398899510502815, -0.023446662351489067, 0.0219163428992033, 0.026980968192219734, 0.012406508438289165, 0.0027372657787054777, -0.06048400700092316, -0.013536029495298862 ]
18,574
traceback2
format_list
Format a list of traceback entry tuples for printing. Given a list of tuples as returned by extract_tb() or extract_stack(), return a list of strings ready for printing. Each string in the resulting list corresponds to the item with the same index in the argument list. Each string ends in a newline; the strings may contain internal newlines as well, for those items whose source text line is not None.
def format_list(extracted_list): """Format a list of traceback entry tuples for printing. Given a list of tuples as returned by extract_tb() or extract_stack(), return a list of strings ready for printing. Each string in the resulting list corresponds to the item with the same index in the argument list. Each string ends in a newline; the strings may contain internal newlines as well, for those items whose source text line is not None. """ return StackSummary.from_list(extracted_list).format()
(extracted_list)
[ -0.02702469751238823, 0.007439283654093742, 0.005592684261500835, -0.023128768429160118, 0.021383533254265785, -0.0760146751999855, 0.044177357107400894, -0.04142729192972183, 0.021013332530856133, 0.007862371392548084, -0.04791462793946266, 0.007055860944092274, -0.0013937639305368066, -0.026883667334914207, -0.008069507777690887, 0.019462011754512787, 0.005456062499433756, -0.029386933892965317, 0.021524563431739807, 0.04142729192972183, 0.009845592081546783, 0.022335480898618698, -0.0017088757595047355, 0.005116711370646954, 0.043401699513196945, -0.01333606243133545, 0.03356492146849632, -0.06205279380083084, 0.008576330728828907, 0.035504069179296494, -0.000219807043322362, -0.0149314533919096, -0.06279319524765015, -0.005892371293157339, -0.021171990782022476, 0.055248141288757324, -0.052956417202949524, -0.03821887820959091, -0.05003006383776665, 0.01836903765797615, 0.007681677583605051, -0.013406576588749886, 0.023075882345438004, -0.038254138082265854, 0.03730219230055809, -0.002109927125275135, 0.03737270459532738, -0.044670961797237396, -0.008906867355108261, -0.05270961672067642, 0.019585413858294487, -0.001141454093158245, -0.02589646354317665, -0.025843577459454536, -0.03580375760793686, 0.018668724223971367, 0.05200447142124176, 0.03261297568678856, 0.06289897114038467, -0.016218343749642372, 0.008677694946527481, 0.0980152115225792, 0.020343445241451263, -0.01836903765797615, -0.035645097494125366, -0.03913556784391403, -0.008364787325263023, -0.00975744891911745, -0.01997324265539646, -0.030532795935869217, 0.006654809694737196, -0.006883981637656689, -0.06078353151679039, 0.011493870057165623, 0.0013034171424806118, 0.03924134001135826, -0.014296822249889374, -0.03173154219985008, 0.035080984234809875, -0.012957046739757061, -0.025120804086327553, 0.0025341161526739597, 0.0298629067838192, 0.04893708974123001, 0.08144429326057434, -0.06110084801912308, 0.0059628854505717754, 0.07925833761692047, -0.005597091279923916, 0.07326460629701614, -0.011749484576284885, 0.0011133584193885326, -0.05094675347208977, -0.022529395297169685, -0.08518156409263611, 0.013256733305752277, 0.029792392626404762, -0.07432232052087784, -0.03994648531079292, 0.0068310960195958614, 0.03227803111076355, -0.049430690705776215, -0.000653361261356622, -0.01447310857474804, -0.04153306409716606, 0.010083579458296299, 0.012357672676444054, 0.006910424679517746, -0.008831946179270744, 0.01802527904510498, -0.008541073650121689, -0.11493869870901108, 0.06487337499856949, -0.05507185310125351, 0.066107377409935, -0.022899596020579338, -0.010550737380981445, -0.009316733106970787, 0.018562952056527138, -0.055706486105918884, 0.036103442311286926, -0.05073520913720131, -0.03835991024971008, -0.020696017891168594, -0.03751373291015625, -0.013838478364050388, 0.004462248180061579, -0.03832465037703514, 0.05235704407095909, -0.05151087045669556, 0.0006004753522574902, 0.03652653098106384, -0.036773331463336945, 0.027059953659772873, 0.0225822813808918, -0.01678246073424816, 0.007227740250527859, -0.04089843109250069, 0.010524295270442963, 0.0002092023059958592, 0.012842460535466671, -0.0257730633020401, 0.013362505473196507, 0.01032156590372324, -0.03924134001135826, -0.018404293805360794, 0.011802370660007, 0.08913037925958633, 0.04685690999031067, 0.006769395899027586, -0.0020317002199590206, -0.03356492146849632, -0.07333511859178543, 0.00258259498514235, 0.040545858442783356, -0.008333937264978886, -0.008386823348701, -0.04096894711256027, 0.05630585923790932, 0.01903892494738102, 0.009078746661543846, -0.015460312366485596, -0.011678970418870449, 0.01575118489563465, -0.02304062619805336, 0.004557001870125532, -0.039276596158742905, -0.00384965306147933, -0.019197583198547363, -0.003292147535830736, 0.028029529377818108, -0.02714809775352478, -0.029369305819272995, 0.03709064796566963, -0.020149528980255127, 0.03525726869702339, -0.030885368585586548, 0.056517403572797775, -0.026848411187529564, -0.01914469711482525, -0.03920608386397362, -0.049430690705776215, -0.019761700183153152, 0.008400044403970242, -0.02829395793378353, 0.0005856011994183064, 0.007531834300607443, -0.004706845618784428, 0.00482143135741353, 0.02085467427968979, 0.007531834300607443, -0.03333574905991554, 0.015539641492068768, -0.019585413858294487, -0.022635167464613914, 0.001792611787095666, -0.08186738193035126, -0.022423623129725456, 0.021418791264295578, -0.07608518749475479, -0.05323847755789757, 0.01464939583092928, 0.009149261750280857, -0.006623959634453058, 0.06346308439970016, 0.06575480848550797, -0.006579888053238392, 0.002071364549919963, -0.09470102190971375, 0.019708814099431038, 0.03663230314850807, 0.0072189257480204105, -0.02646058052778244, -0.0010411912808194757, 0.011758299544453621, -0.030832482501864433, -0.005403176415711641, 0.014437851496040821, -0.0344463512301445, -0.004883131943643093, -0.008228165097534657, -0.05665843188762665, -0.005808635149151087, 0.0086732879281044, 0.004891945980489254, 0.02656635269522667, 0.019232841208577156, 0.04731525480747223, 0.02302299626171589, -0.03730219230055809, -0.014235122129321098, -0.107675701379776, -0.008827539160847664, 0.034164294600486755, 0.0024569910019636154, -0.017981206998229027, 0.005407583899796009, -0.051369842141866684, -0.019796956330537796, 0.0024019014090299606, -0.05567122995853424, 0.013424205593764782, 0.05715203285217285, -0.026301922276616096, 0.059232212603092194, -0.05813923850655556, 0.0034728411119431257, 0.005909999832510948, -0.03333574905991554, -0.0021209451369941235, -0.0016163254622370005, 0.08489950746297836, 0.011361654847860336, -0.022970110177993774, -0.01629767194390297, -0.05521288514137268, 0.04170934855937958, -0.012119686231017113, 0.030303623527288437, -0.03178442642092705, 0.020026128739118576, -0.06318102777004242, 0.04632805287837982, -0.013159776106476784, 0.017135033383965492, 0.007082303985953331, -0.01812223717570305, -0.0009321140823885798, -0.01916232518851757, 0.03319472074508667, 0.044071584939956665, -0.0039113531820476055, 0.028470244258642197, 0.06007838621735573, -0.05553019791841507, -0.015090111643075943, 0.04153306409716606, 0.0122519014403224, -0.040334317833185196, -0.028470244258642197, 0.0315023697912693, 0.018774496391415596, -0.05545968562364578, 0.014517180621623993, 0.044177357107400894, 0.03740796446800232, 0.01481686718761921, -0.006205279380083084, -0.0026200558058917522, 0.0449177622795105, 0.05052366852760315, 0.025579148903489113, 0.03966442868113518, -0.09864983707666397, -0.004063400439918041, 0.02372814156115055, 0.06832858920097351, -0.0007883305079303682, -0.008395637385547161, 0.0037857491988688707, -0.0021264541428536177, 0.030479909852147102, 0.06526120752096176, -0.0043124048970639706, -0.01083279587328434, -0.01777847856283188, -0.0017639652360230684, -0.0062493509612977505, -0.06723561137914658, -0.0625111386179924, 0.027659328654408455, 0.06621315330266953, -0.008862796239554882, -0.01663261651992798, 0.007404026575386524, 0.015195882879197598, -0.05062943696975708, 0.02919301949441433, -0.023128768429160118, 0.030973510816693306, -0.0015656431205570698, 0.011352840811014175, 0.06850487738847733, 0.024345144629478455, 0.07820062339305878, -0.042590782046318054, -0.059126440435647964, -0.016033243387937546, 0.04731525480747223, 0.039170827716588974, -0.027888499200344086, -0.06064250320196152, 0.023869171738624573, 0.030850110575556755, 0.0071043395437300205, 0.03374120593070984, -0.004649552516639233, 0.008523444645106792, -0.03818362206220627, -0.1081693023443222, -0.023798657581210136, 0.049430690705776215, -0.021048590540885925, 0.017029261216521263, -0.019250469282269478, 0.021595077589154243, 0.03991122916340828, 0.09223301708698273, 0.010268679820001125, 0.04068689048290253, -0.013265547342598438, -0.021524563431739807, 0.023569485172629356, 0.07171328365802765, 0.0387829951941967, 0.015363355167210102, -0.06374514102935791, 0.009731005877256393, 0.0387829951941967, 0.03955865651369095, 0.05112304165959358, -0.04368375614285469, 0.023216912522912025, 0.0025495411828160286, -0.026178522035479546, -0.015116553753614426, -0.011758299544453621, 0.026072749868035316, 0.02543812058866024, 0.009783891960978508, -0.05443722382187843, -0.06427400559186935, 0.036773331463336945, -0.024803489446640015, -0.02256465144455433, 0.0012020525755360723, 0.010850424878299236, -0.022952482104301453, -0.04995955154299736, -0.026037493720650673, -0.03254245966672897, 0.0382893942296505, 0.009493019431829453, -0.00781829934567213, 0.010973825119435787, 0.011643713340163231, -0.023869171738624573, 0.04562290757894516, -0.0625111386179924, 0.020131900906562805, -0.07333511859178543, -0.026284294202923775, 0.0004261171561665833, -0.025120804086327553, 0.009924921207129955, -0.02120724692940712, 0.013327247463166714, 0.0005216973950155079, -0.020713645964860916, -0.008677694946527481, 0.019990872591733932, -0.013177404180169106, -0.030726710334420204, -0.05073520913720131, -0.024468544870615005, -0.010797538794577122, -0.007787449285387993, 0.013512348756194115, -0.009369619190692902, -0.02487400360405445, 0.029616106301546097, -0.0009938143193721771, -0.022053422406315804, -0.041674092411994934, -0.0006908221403136849, 0.08645082265138626, -0.06787024438381195, 0.06931579113006592, -0.027518298476934433, -0.07054979354143143, 0.024715345352888107, -0.018192751333117485, -0.02942219190299511, 0.07333511859178543, -0.0173465758562088, -0.05242756009101868, -0.06346308439970016, 0.01939149759709835, 0.055494941771030426, 0.016694316640496254, 0.0010896699968725443, -0.028540760278701782, 0.012798388488590717, 0.0021958667784929276, 0.04403632879257202, -0.06265217065811157, -0.016271229833364487, -0.00889364629983902, 0.045904964208602905, 0.017082147300243378, -0.021753735840320587, 0.03192545846104622, 0.058103978633880615, -0.0052004470489919186, 0.020237673074007034, 0.03684384748339653, -0.040757402777671814, -0.06423874199390411, -0.014975525438785553, -0.012022729031741619, -0.04015802964568138, 0.008964160457253456, 0.0009111800463870168, 0.020114272832870483, 0.004266129806637764, -0.021947650238871574, 0.017928320914506912, 0.013195033185184002, 0.025966979563236237, 0.010621252469718456, 0.06476760655641556, 0.011837627738714218, 0.046574853360652924, 0.054789796471595764, 0.008166464976966381, -0.07686084508895874, 0.024909261614084244, 0.0024724160321056843, -0.006042214576154947, 0.01801646500825882, 0.04089843109250069, -0.033688321709632874, -0.03148474171757698, 0.047949887812137604, 0.031079282984137535, 0.040651630610227585, 0.03056805208325386, -0.044635701924562454, 0.0014257158618420362, 0.019197583198547363, 0.0026817561592906713, -0.06917475908994675, 0.04661010950803757, -0.005694048944860697, -0.06730612367391586, 0.020572615787386894, 0.012789574451744556, -0.026866039261221886, 0.015927471220493317, -0.001138148712925613, -0.05168715491890907, 0.002769899321720004, -0.005072639789432287, -0.037690021097660065, -0.008770246058702469, -0.027324384078383446, -0.035521697252988815, -0.02062550187110901, 0.0059628854505717754, 0.00458785193040967, 0.05151087045669556, -0.010259865783154964, 0.04364849999547005, -0.050135836005210876, 0.06917475908994675, 0.0013199440436437726, 0.0724889487028122, 0.022071050480008125, -0.012860088609158993, -0.009307919070124626, 0.02462720312178135, 0.016473958268761635, 0.017981206998229027, 0.01129995472729206, -0.033688321709632874, 0.020255301147699356, -0.03259534388780594, -0.009651677682995796, 0.06737664341926575, 0.0706908255815506, 0.02088993228971958, 0.02668975293636322, -0.00687076011672616, -0.003455212339758873, -0.0206607598811388, -0.015037225559353828, 0.07700187712907791, 0.05323847755789757, -0.021630335599184036, 0.05887963995337486, -0.011872885748744011, 0.06720035523176193, -0.021154360845685005, -0.0877906009554863, 0.01333606243133545, 0.05803346633911133, -0.028011901304125786, -0.006804652977734804, 0.007192482706159353, -0.013864921405911446, 0.022106308490037918, -0.02189476415514946, -0.05951426923274994, -0.07062031328678131, 0.009140446782112122, 0.0030894181691110134, 0.017478791996836662, -0.043965816497802734, -0.02064313180744648, -0.023516599088907242, 0.0012450222857296467, -0.003865078091621399, 0.023604741320014, 0.043049126863479614, -0.02133064717054367, -0.03333574905991554, 0.02339319884777069, 0.013239104300737381, 0.02998630702495575, 0.018739238381385803, -0.01940912753343582, 0.01664143055677414, 0.010400894097983837, -0.02575543522834778, 0.01488738227635622, 0.025579148903489113, -0.03557458519935608, 0.031061654910445213, -0.028646530583500862, 0.01870398223400116, -0.01859821006655693, -0.01835140772163868, 0.024609573185443878, 0.0005302362842485309, -0.007703713141381741, -0.051264069974422455, 0.0245038028806448, -0.0014213086105883121, 0.0719953402876854, -0.021753735840320587, 0.026319552212953568, -0.060501474887132645, 0.037020131945610046, -0.06906899064779282, 0.01791950687766075, 0.03864196687936783, 0.005103489849716425, -0.037231676280498505, -0.05493082478642464, 0.018192751333117485, -0.01939149759709835, -0.013080446980893612, 0.03458737954497337, 0.02656635269522667, 0.07305306196212769, -0.039276596158742905, -0.006037807557731867, 0.03351203352212906, -0.003360458416864276, 0.02316402643918991, -0.004182393662631512, 0.030603310093283653, 0.011211811564862728, 0.025825949385762215, 0.06857538968324661, -0.04724474251270294, 0.06124187633395195, -0.05535391345620155, -0.03069145232439041, -0.004228668753057718, 0.005755749065428972, 0.06212330982089043, 0.011088411323726177, -0.04424787312746048, -0.01835140772163868, -0.019479641690850258, 0.011529127135872841, 0.04368375614285469, -0.020378701388835907, 0.006377158686518669, 0.025508634746074677, 0.03515149652957916, -0.0775659903883934, 0.0006869658827781677, 0.05486031249165535, 0.06113610416650772, -0.015292840078473091, 0.017064519226551056, 0.03719642013311386, -0.09540616720914841, 0.05147561430931091, 0.06748241186141968, 0.00044732660171575844, -0.04812617227435112, -0.02154219150543213, 0.023851541802287102, 0.03719642013311386, -0.020784160122275352, -0.048655033111572266, 0.021471677348017693, -0.0027941386215388775, -0.01937386952340603, -0.034499239176511765, -0.015654226765036583, 0.009431319311261177, 0.028787560760974884, -0.014525994658470154, -0.11761824786663055, 0.016852974891662598, 0.04301386699080467, -0.024380400776863098, 0.06360411643981934, -0.06279319524765015, 0.05041789636015892, -0.015433869324624538, 0.07460438460111618, -0.043754272162914276, 0.021700849756598473, -0.06018415838479996, 0.004482080228626728, 0.0037681206595152617, -0.0011734060244634748, 0.03569798544049263, 0.017655078321695328, -0.003380290698260069, 0.004834652878344059, -0.019655928015708923, 0.08990603685379028, 0.04883131757378578, -0.0316610261797905, -0.0010847118683159351, 0.0051651899702847, 0.056059058755636215, 0.02520894818007946, 0.01972644217312336, 0.002670738147571683, 0.018157493323087692, 0.06000787392258644, -0.021418791264295578, -0.05545968562364578, 0.07333511859178543, -0.007285033352673054, -0.0034684338606894016, -0.037231676280498505, 0.0010263171279802918, -0.008999417535960674, -0.046363309025764465, 0.019920356571674347, -0.02508554793894291, 0.01962067000567913, -0.06850487738847733, -0.07174853980541229, 0.0009288087021559477, -0.02589646354317665, -0.04572867974638939, 0.023305054754018784, -0.012331229634582996, -0.03331812098622322, 0.06949207931756973, -0.06751766800880432, -0.02723623998463154, 0.029598478227853775, 0.027553556486964226, 0.04583444818854332, 0.04230872169137001, -0.014235122129321098, -0.021066218614578247, -0.019691184163093567, 0.0045173377729952335, -0.034957583993673325, 0.005808635149151087, 0.016676688566803932, 0.01226071547716856, 0.03227803111076355, -0.011449798010289669, -0.03797207772731781, 0.06088930368423462, 0.006447673309594393, 0.011017896234989166, -0.025491004809737206, 0.0034441945608705282, 0.06501440703868866, 0.01464939583092928, -0.010295122861862183, -0.031290825456380844, 0.025244204327464104, -0.024098344147205353, -0.0061347647570073605, -0.0786237120628357, 0.02977476455271244, 0.005213668569922447, 0.021700849756598473, -0.01789306476712227, 0.04001700133085251, 0.05471928045153618, 0.02852313034236431, -0.03423480689525604, 0.06360411643981934, 0.01408527884632349, 0.0036579417064785957, 0.019109439104795456, -0.01048903726041317, -0.009951364248991013, 0.02827632986009121, -0.0022498543839901686, 0.004023735877126455, 0.013380133546888828, 0.002558355685323477, -0.041215747594833374, -0.03388223424553871, 0.02473297528922558, -0.00735114049166441, -0.04227346554398537, -0.046715881675481796, 0.0512993261218071, -0.05306218937039375, 0.019990872591733932, -0.03143185377120972, -0.021736105903983116, 0.007289440371096134, 0.021824249997735023, -0.03645601496100426, 0.02200053632259369, 0.009792706929147243, -0.00027090252842754126, 0.014173422008752823, -0.030409393832087517, 0.033371005207300186 ]
18,575
traceback2
format_stack
Shorthand for 'format_list(extract_stack(f, limit))'.
def format_stack(f=None, limit=None): """Shorthand for 'format_list(extract_stack(f, limit))'.""" return format_list(extract_stack(f, limit=limit))
(f=None, limit=None)
[ -0.0002794177853502333, -0.02158772386610508, -0.015066947788000107, -0.005615113768726587, -0.012070024386048317, 0.0561511367559433, -0.023053253069519997, -0.07712959498167038, -0.0031801138538867235, -0.016697142273187637, 0.004085777327418327, -0.02782856859266758, -0.036522939801216125, -0.05970792472362518, 0.03268621861934662, 0.02896476536989212, 0.02983749657869339, -0.08582396805286407, 0.07818345725536346, 0.08022531867027283, 0.03293321654200554, 0.035534944385290146, 0.03281795233488083, -0.008966068737208843, 0.05414221063256264, -0.014622349292039871, 0.027169905602931976, -0.033756550401449203, -0.023053253069519997, 0.007282358128577471, -0.023530784994363785, -0.03362481668591499, -0.02320145256817341, -0.001595202716998756, -0.035534944385290146, 0.014136583544313908, -0.0824647769331932, 0.009278934448957443, -0.07409974187612534, -0.02560557797551155, -0.010645662434399128, -0.04264851659536362, -0.0261983759701252, 0.012572255916893482, 0.024996312335133553, 0.024996312335133553, 0.10031457990407944, -0.04278025031089783, 0.024403514340519905, -0.03421761468052864, 0.05157341808080673, 0.008842568844556808, -0.04541490972042084, -0.009394200518727303, -0.008463837206363678, 0.0012782205594703555, 0.00680894311517477, -0.005590413697063923, 0.09511113166809082, -0.044887974858284, -0.02148892544209957, 0.05394461005926132, 0.04933395981788635, 0.015816178172826767, -0.0561511367559433, 0.018047403544187546, -0.006944792345166206, 0.011633659712970257, -0.039783328771591187, -0.027532169595360756, 0.0007595223723910749, 0.026692373678088188, -0.011485460214316845, 0.037016935646533966, -0.04959742724895477, 0.0029207647312432528, 0.006883042398840189, 0.05295661464333534, -0.03329548239707947, -0.03784026950597763, -0.018245002254843712, 0.007315291091799736, -0.008212720975279808, 0.04485504329204559, 0.03546907752752304, -0.020006930455565453, 0.03632533922791481, 0.07502187043428421, 0.00880963634699583, 0.013041554018855095, -0.05210035294294357, 0.01972699724137783, -0.025029245764017105, -0.011806558817625046, -0.0586869940161705, 0.005680980160832405, 0.006813059560954571, -0.017652204260230064, -0.02644537389278412, 0.026412440463900566, 0.0036411790642887354, -0.035370275378227234, -0.05210035294294357, -0.02361311763525009, -0.030018627643585205, 0.00967413280159235, -0.02008926309645176, 0.028684834018349648, -0.025506777688860893, 0.054603274911642075, 0.012226457707583904, -0.030018627643585205, 0.07271654903888702, -0.05466914176940918, 0.05789659917354584, 0.028635432943701744, -0.017289940267801285, -0.007130041718482971, 0.04152878746390343, -0.06448324024677277, 0.018920134752988815, -0.06125578656792641, -0.006529010366648436, -0.027186371386051178, -0.0498938262462616, 0.02270745486021042, -0.006706026382744312, -0.021176058799028397, 0.0361606739461422, -0.06724963337182999, 0.012596956454217434, 0.02458464726805687, -0.041989851742982864, 0.02807556837797165, 0.05009142681956291, -0.038630664348602295, -0.0374780036509037, -0.044130511581897736, -0.05559127405285835, 0.0206161942332983, -0.02847076766192913, -0.017783937975764275, -0.02483164705336094, 0.007965722121298313, -0.060366589576005936, -0.03487627953290939, 0.07014775276184082, 0.05318714678287506, 0.022509854286909103, 0.012638122774660587, 0.010752695612609386, 0.016145510599017143, 0.026494774967432022, -0.021027859300374985, 0.030644359067082405, 0.028404900804162025, -0.008603802882134914, -0.05529487505555153, 0.07594399899244308, -0.0033241966739296913, -0.02659357339143753, 0.022674521431326866, -0.018557868897914886, 0.02048446238040924, -0.04422931373119354, -0.0024473497178405523, -0.022806253284215927, 0.005059365648776293, -0.008105688728392124, 0.0436694473028183, 0.042483851313591, -0.01784980483353138, -0.006533127278089523, 0.02334965206682682, -0.012456989847123623, 0.03915759548544884, -0.02410711534321308, 0.022559255361557007, -0.015412745997309685, -0.015635045245289803, -0.0711357519030571, -0.035403210669755936, 0.020451528951525688, -0.043142516165971756, -0.011683058924973011, -0.03146769106388092, -0.005606880411505699, -0.03146769106388092, 0.005092299077659845, -0.019035400822758675, 0.003941694740206003, -0.00012388550385367125, 0.03836720064282417, -0.053121279925107956, -0.03291675075888634, -0.035370275378227234, -0.0611569881439209, -0.013288553804159164, 0.07139921933412552, -0.0785786584019661, -0.05068422481417656, 0.017948603257536888, 0.03260388597846031, -0.04926809296011925, 0.025753777474164963, 0.07535120099782944, -0.0022353422828018665, 0.014120117761194706, -0.08681196719408035, 0.0349750779569149, -0.018508467823266983, -0.04185812175273895, -0.03467867895960808, -0.011781859211623669, 0.03408588096499443, 0.022048790007829666, 0.013749619014561176, 0.016178444027900696, -0.006726610008627176, -0.01612081006169319, 0.0499267578125, -0.05644753575325012, -0.05657926946878433, -0.039783328771591187, 0.01798153668642044, 0.02259218692779541, 0.022690987214446068, -0.015577412210404873, 0.058357663452625275, -0.02333318442106247, -0.012094723992049694, -0.051738087087869644, -0.0013615827774628997, 0.00032212803489528596, 0.022559255361557007, -0.0067224930971860886, 0.08687783032655716, -0.07824932783842087, 0.04716036841273308, -0.022806253284215927, -0.01285218819975853, -0.008850802667438984, 0.026906440034508705, -0.02333318442106247, -0.0018761642277240753, -0.004968799185007811, -0.029047098010778427, -0.011337260715663433, 0.02035272866487503, 0.04047492519021034, -0.049992624670267105, 0.06102525442838669, -0.02445291541516781, -0.013774318620562553, -0.028026169165968895, -0.07093815505504608, -0.003497096011415124, -0.02835550159215927, 0.02756510302424431, 0.021143125370144844, -0.006590760312974453, -0.11289507150650024, -0.009945832192897797, -0.0305620264261961, -0.012456989847123623, 0.0022723921574652195, -0.05351648107171059, -0.037148669362068176, 0.014778781682252884, 0.055492471903562546, -0.003093664301559329, -0.022625120356678963, 0.018755467608571053, 0.04139705374836922, -0.009188367985188961, -0.008826102130115032, 0.025918442755937576, 0.00862026959657669, -0.02010572887957096, -0.034151747822761536, 0.01098322868347168, -0.02894829958677292, -0.04034319147467613, 0.023036785423755646, 0.04218745231628418, 0.04031025990843773, 0.016754774376749992, 0.02134072594344616, 0.014704681932926178, -0.01584087871015072, 0.02572084404528141, 0.028684834018349648, 0.015313946641981602, -0.05750139802694321, -0.009089568629860878, -0.04505264386534691, 0.036259472370147705, -0.019924597814679146, 0.018903667107224464, -0.023267319425940514, -0.008332104422152042, -0.07442907243967056, 0.07442907243967056, 0.03031502664089203, 0.058489397168159485, -0.024815179407596588, 0.014301249757409096, -0.037642668932676315, -0.050750087946653366, -0.019167132675647736, -0.0412323884665966, 0.07759065926074982, 0.012152357958257198, -0.03212635591626167, -0.00221681734547019, 0.03704987093806267, -0.04195692017674446, 0.045381974428892136, -0.015388046391308308, -0.012127657420933247, -0.007574640214443207, 0.00433895131573081, 0.0024205916561186314, 0.013659052550792694, 0.0849018394947052, 0.05631580203771591, -0.043142516165971756, -0.01253932248800993, 0.03281795233488083, 0.026033708825707436, -0.00930363405495882, -0.007512890268117189, 0.03487627953290939, 0.028553100302815437, -0.03556787595152855, 0.01135372743010521, 0.0134285194799304, 0.047983698546886444, -0.06204618513584137, -0.0985361859202385, -0.02023746259510517, 0.0011567792389541864, -0.008109805174171925, 0.018310869112610817, 0.022806253284215927, 0.04040905833244324, 0.08042291551828384, 0.02545737847685814, 0.019809331744909286, 0.07027948647737503, -0.0033447800669819117, -0.012605189345777035, 0.07897385954856873, 0.02572084404528141, -0.0024144165217876434, 0.04735796898603439, -0.010653896257281303, 0.06507603824138641, -0.031780555844306946, 0.05792953073978424, 0.042253319174051285, -0.03836720064282417, 0.02147245779633522, 0.0033859466202557087, 0.03971746191382408, 0.042253319174051285, -0.0048699998296797276, 0.03122069127857685, 0.026807639747858047, 0.00947653315961361, -0.004404818173497915, -0.021571258082985878, 0.04169345274567604, -0.007755773141980171, -0.07093815505504608, 0.03915759548544884, -0.019776398316025734, 0.01748753897845745, -0.07350694388151169, -0.03347661718726158, 0.009797632694244385, 0.04640290513634682, 0.0035938373766839504, -0.0016826816136017442, 0.01649130880832672, 0.023119119927287102, -0.01947999931871891, -0.03556787595152855, -0.022279322147369385, 0.010974994860589504, -0.05638166889548302, -0.043998777866363525, -0.01862373575568199, 0.034645747393369675, -0.028059102594852448, -0.05931272730231285, -0.02884949930012226, -0.015239846892654896, -0.00502231577411294, 0.0337071493268013, 0.018442602828145027, -0.012440523132681847, 0.04156172275543213, -0.047127436846494675, 0.0029578146059066057, -0.01724053919315338, 0.030776092782616615, 0.01073622889816761, -0.030051561072468758, 0.05394461005926132, 0.08384797722101212, -0.004524200689047575, -0.07897385954856873, -0.00755405705422163, 0.04054079204797745, 0.018426135182380676, -0.04828009754419327, 0.08325517922639847, -0.03579840809106827, -0.05183688551187515, 0.05644753575325012, -0.005458680912852287, -0.02521037869155407, 0.04584303870797157, -0.012152357958257198, -0.028437834233045578, -0.0786445289850235, 0.009723532944917679, 0.015149280428886414, 0.029047098010778427, -0.030133895576000214, -0.019298866391181946, 0.03919053077697754, -0.00892490241676569, 0.03803786635398865, -0.060333654284477234, 0.005265198182314634, -0.026017243042588234, -0.0015468321507796645, 0.03895999863743782, 0.04982795938849449, 0.007471723947674036, 0.0549326092004776, -0.018014470115303993, 0.02609957568347454, 0.005009965971112251, -0.022048790007829666, 0.03357541561126709, -0.0474567674100399, -0.027318105101585388, -0.010818562470376492, 0.011296093463897705, -0.023514317348599434, 0.005368114449083805, 0.0437353141605854, -0.012489923276007175, 0.042483851313591, 0.021373659372329712, -0.016129042953252792, 0.02985396236181259, 0.030133895576000214, 0.01697707362473011, 0.04152878746390343, 0.03836720064282417, 0.011839492246508598, -0.057995397597551346, 0.03642413765192032, -0.011147893965244293, -0.022806253284215927, -0.027795637026429176, 0.038400132209062576, -0.013510853052139282, -0.09148848056793213, 0.010110498405992985, 0.05717206746339798, 0.02944229729473591, 0.04683103784918785, -0.015346880070865154, -0.010003465227782726, 0.020286861807107925, -0.018162669613957405, -0.04004679247736931, 0.030874893069267273, 0.01211119070649147, -0.036028940230607986, 0.021702991798520088, 0.06030072271823883, -0.039124663919210434, -0.01608787663280964, 0.017174674198031425, -0.025128046050667763, -0.020122196525335312, -0.016655975952744484, -0.025029245764017105, 0.00899076834321022, 0.00004296755651012063, -0.016499541699886322, -0.005853879731148481, -0.06645923107862473, -0.010011698119342327, 0.0337236151099205, -0.006862459238618612, 0.008052172139286995, -0.03642413765192032, 0.008760236203670502, -0.00412282720208168, 0.06757896393537521, 0.027943836525082588, -0.0036103040911257267, -0.03234041854739189, 0.02407418191432953, 0.029425829648971558, -0.016499541699886322, 0.0474567674100399, -0.04334011673927307, 0.025375043973326683, -0.03718160465359688, 0.005100531969219446, 0.06504310667514801, 0.030232694000005722, 0.021390125155448914, -0.01018459815531969, 0.017405206337571144, 0.01584911160171032, -0.00251321610994637, -0.025029245764017105, 0.09833858907222748, 0.037642668932676315, 0.00633552810177207, 0.017289940267801285, -0.00396021967753768, 0.06069592013955116, 0.01624430902302265, -0.03161589056253433, -0.022888585925102234, 0.006076178979128599, -0.03131949156522751, 0.007331757806241512, 0.00893313530832529, -0.017553405836224556, -0.007274124771356583, 0.020122196525335312, -0.03830133378505707, -0.023448452353477478, -0.04646877199411392, -0.021785324439406395, 0.027400437742471695, -0.01193005871027708, 0.053977545350790024, -0.03355894982814789, -0.027400437742471695, -0.02120899222791195, 0.04294491559267044, 0.017767472192645073, 0.025045713409781456, 0.0029598730616271496, 0.0205997284501791, 0.022559255361557007, -0.009114268235862255, -0.025062179192900658, -0.012489923276007175, 0.09879965335130692, 0.02358018420636654, -0.026642974466085434, -0.014095417223870754, -0.0010533484164625406, -0.010859728790819645, 0.04205571860074997, -0.03942106291651726, 0.03148415684700012, 0.007200025022029877, 0.005084065720438957, 0.009007235057651997, -0.0057221464812755585, 0.018755467608571053, -0.042747318744659424, 0.0029907478019595146, -0.0009699861984699965, 0.05680980160832405, 0.01416128408163786, -0.021011393517255783, -0.009954065084457397, 0.019381199032068253, -0.03034796006977558, -0.018393201753497124, 0.08516529947519302, -0.018179137259721756, -0.05394461005926132, -0.06790829449892044, 0.04139705374836922, 0.026906440034508705, 0.029129432514309883, 0.02471638098359108, -0.015371579676866531, 0.04633703827857971, -0.03711573779582977, -0.033888280391693115, -0.014564716257154942, -0.029047098010778427, 0.002782857045531273, -0.0026181908324360847, 0.03961866348981857, -0.02046799473464489, -0.00048602226888760924, 0.030627893283963203, -0.050124358385801315, 0.05351648107171059, -0.03398708254098892, -0.027268704026937485, 0.006734843365848064, -0.015758544206619263, 0.06570176780223846, 0.0021900590509176254, -0.0636599138379097, -0.04222038760781288, 0.0034456378780305386, -0.002776681911200285, 0.020682061091065407, -0.009781165979802608, -0.04567837342619896, 0.025309178978204727, 0.06955495476722717, -0.10031457990407944, -0.011114961467683315, 0.0399150587618351, 0.03961866348981857, -0.04722623527050018, -0.03334488347172737, 0.003696753643453121, -0.007311174646019936, 0.02423884905874729, 0.02534211240708828, 0.03057849407196045, -0.029277632012963295, -0.06576763838529587, -0.043636515736579895, 0.01908480003476143, 0.040244393050670624, -0.06342937797307968, 0.023184984922409058, -0.022394588217139244, -0.05855526402592659, -0.06524070352315903, -0.04376824572682381, -0.0063478779047727585, -0.014383583329617977, -0.011543093249201775, -0.054372742772102356, 0.03359188139438629, 0.019644664600491524, -0.027647437527775764, 0.028437834233045578, -0.03434934839606285, 0.03797199949622154, 0.009138967841863632, 0.037016935646533966, 0.046007707715034485, 0.05127701908349991, -0.00427720183506608, -0.02111019380390644, -0.004112535621970892, -0.007887505926191807, 0.025918442755937576, 0.089775949716568, -0.029047098010778427, -0.01029986422508955, -0.0016559234354645014, 0.010151664726436138, 0.016384275630116463, 0.015157513320446014, 0.032883819192647934, 0.004396584816277027, 0.022509854286909103, 0.02194998972117901, -0.032406285405159, 0.02932703122496605, 0.011197294108569622, 0.11078734695911407, -0.002789031947031617, -0.02860249951481819, 0.05470207706093788, -0.029557563364505768, -0.010406897403299809, 0.010209297761321068, -0.0012483748141676188, 0.03816960006952286, -0.04633703827857971, 0.03094075806438923, -0.019644664600491524, 0.05476794391870499, 0.01510811410844326, -0.052265018224716187, -0.005195215344429016, -0.017273472622036934, -0.052989549934864044, 0.06883042305707932, -0.01995752938091755, -0.02744983695447445, 0.06902802735567093, -0.03444814682006836, -0.003655587323009968, 0.046369969844818115, 0.009600033052265644, -0.013000387698411942, 0.02996922843158245, -0.0424509197473526, -0.02132425829768181, -0.007171208504587412, -0.05206741765141487, -0.0038305448833853006, -0.002908414928242564, 0.06441737711429596, 0.006471377331763506, 0.04521730914711952, -0.06830349564552307, 0.00045231718104332685, 0.05951032415032387, 0.022690987214446068, -0.00182470609433949, 0.021258393302559853, -0.0212419256567955, 0.0648784413933754, -0.016573641449213028, -0.0199739970266819, -0.011888891458511353, 0.06626163423061371, 0.006998308934271336, 0.05918099358677864, -0.04607357084751129, -0.026247775182127953, -0.003052497748285532, 0.0281085018068552, -0.004404818173497915, 0.004931749310344458, 0.023925982415676117, -0.04389997944235802, -0.024255314841866493, 0.07106988877058029, -0.022443987429142, -0.05888459458947182, 0.041989851742982864, 0.014605882577598095, -0.007451140787452459, 0.044130511581897736, 0.01110672764480114, -0.030413826927542686, 0.03135242313146591, 0.019414132460951805, -0.08516529947519302, -0.01634310930967331, 0.0026428906712681055, 0.01709233969449997, 0.009278934448957443, -0.04966329410672188, 0.02194998972117901, -0.03359188139438629, -0.017899204045534134, -0.03593014180660248, -0.033888280391693115, -0.0014428866561502218, -0.029409363865852356, 0.016063177958130836, 0.0349092110991478, 0.015305712819099426, 0.016540708020329475, 0.023168519139289856, -0.016771242022514343, 0.00004878876279690303 ]
18,576
traceback2
format_tb
A shorthand for 'format_list(extract_tb(tb, limit))'.
def format_tb(tb, limit=None): """A shorthand for 'format_list(extract_tb(tb, limit))'.""" return extract_tb(tb, limit=limit).format()
(tb, limit=None)
[ 0.03293095529079437, 0.008640218526124954, -0.016174422577023506, -0.01957562379539013, -0.05382049083709717, -0.01776275783777237, 0.028357213363051414, -0.07125061750411987, -0.013172382488846779, -0.027608782052993774, -0.005459387321025133, -0.011118356138467789, -0.03941735625267029, -0.040781162679195404, 0.00038824850344099104, 0.04291003569960594, 0.012931221164762974, -0.03885187581181526, 0.03845271095633507, 0.03419497236609459, 0.056947268545627594, 0.0023617150727659464, 0.03399538993835449, -0.01904340647161007, 0.023933155462145805, 0.009089276194572449, 0.01464429683983326, -0.05212404951453209, 0.0005472900229506195, 0.019492466002702713, 0.01942593790590763, -0.0002697469317354262, -0.03718869760632515, 0.04071463644504547, -0.004394952207803726, -0.022968510165810585, -0.054718609899282455, -0.013954076915979385, -0.05744622275233269, -0.01609126292169094, 0.012814799323678017, -0.05125919729471207, 0.04141317307949066, 0.009172435849905014, 0.0036943377926945686, -0.0382198691368103, 0.0954665094614029, -0.017263803631067276, -0.009588230401277542, -0.05125919729471207, -0.0013908339897170663, 0.024931062012910843, -0.029538070783019066, -0.012548690661787987, -0.06024036556482315, -0.017247172072529793, -0.005359596107155085, -0.0115757305175066, 0.06795752048492432, -0.0011517518432810903, -0.0034199131187051535, 0.035192880779504776, 0.0013586098793894053, 0.06210312619805336, -0.027508990839123726, -0.038918402045965195, -0.009987393394112587, 0.04204517975449562, -0.03848597779870033, 0.002133027883246541, 0.0024427950847893953, 0.009979077614843845, -0.016490425914525986, 0.02844037115573883, -0.039184510707855225, 0.017629703506827354, -0.013654705137014389, -0.04224476218223572, -0.04061484709382057, -0.04197865352034569, 0.023617150261998177, 0.02854016236960888, 0.051358986645936966, 0.012265949510037899, 0.04666882008314133, -0.06283492594957352, 0.031982943415641785, 0.055084507912397385, -0.022053761407732964, 0.013247225433588028, -0.05714685097336769, -0.05282258614897728, -0.004056079313158989, -0.03281453251838684, -0.10371588170528412, -0.031933046877384186, -0.0008159974822774529, -0.0023617150727659464, -0.07411128282546997, 0.009380333125591278, 0.028606688603758812, -0.0613713264465332, 0.008557058870792389, -0.04467300325632095, 0.009164120070636272, -0.0011049750028178096, -0.005355438217520714, -0.013646388426423073, -0.00009595766459824517, 0.05797844007611275, -0.017513280734419823, 0.01256532222032547, 0.056481581181287766, -0.051990993320941925, 0.06646065413951874, 0.03173346817493439, -0.010062236338853836, -0.021904075518250465, 0.021704494953155518, -0.05395354703068733, 0.03291432559490204, -0.022868718951940536, -0.013879233971238136, -0.024781376123428345, -0.07005312293767929, -0.0015062170568853617, 0.008873063139617443, 0.0014033077750355005, 0.0540865994989872, -0.06486400216817856, 0.01427008118480444, 0.013238909654319286, 0.004856484476476908, 0.035858154296875, 0.06333387643098831, -0.04034873843193054, 0.007966630160808563, -0.007979104295372963, -0.007812785916030407, 0.01638231985270977, -0.025114012882113457, 0.00587102398276329, -0.0019521571230143309, -0.03244863450527191, -0.003349228063598275, -0.040049366652965546, 0.002738009439781308, 0.029155539348721504, 0.05864371359348297, 0.02742583118379116, -0.00841984711587429, -0.0019240909023210406, 0.017330331727862358, 0.007359569892287254, 0.017629703506827354, 0.04913032427430153, -0.007609046529978514, -0.05964162200689316, 0.05947530269622803, -0.016897905617952347, 0.022236712276935577, 0.026344764977693558, -0.010361609049141407, 0.018644243478775024, -0.008731693029403687, 0.058976348489522934, -0.023184724152088165, 0.0590096116065979, 0.0035072299651801586, 0.010236870497465134, 0.05811149626970291, -0.030386291444301605, 0.003997867926955223, 0.049329906702041626, -0.01120151486247778, 0.06210312619805336, -0.011159935034811497, 0.020457109436392784, -0.004110132809728384, 0.009455176070332527, -0.01184183917939663, -0.018660875037312508, 0.028091104701161385, -0.009571598842740059, -0.029621228575706482, -0.0893460065126419, 0.005476018879562616, -0.019974786788225174, -0.0563485249876976, -0.036157526075839996, 0.014145342633128166, -0.009305490180850029, 0.03629057854413986, -0.0385192409157753, -0.027758467942476273, 0.0035321777686476707, -0.010120447725057602, 0.004299319349229336, 0.04543806612491608, -0.02107248641550541, -0.05638178810477257, 0.03745480626821518, -0.004864800255745649, -0.02667740173637867, 0.097129687666893, 0.03125114366412163, 0.013496702536940575, -0.010328345000743866, -0.12174474447965622, 0.013055959716439247, 0.03306401148438454, -0.03318043425679207, -0.052257101982831955, 0.015583992935717106, 0.03419497236609459, 0.00640324130654335, 0.032199159264564514, 0.03175009787082672, -0.00896453857421875, 0.017679600045084953, 0.028157630935311317, -0.07983262091875076, -0.007633994333446026, -0.02998712845146656, 0.05671442672610283, 0.03306401148438454, 0.03376254811882973, 0.023933155462145805, 0.03394549712538719, -0.023334410041570663, 0.019608886912465096, -0.0332968570291996, -0.054718609899282455, 0.05288911238312721, -0.023251250386238098, -0.021704494953155518, 0.018378134816884995, -0.08901337534189224, -0.01995815522968769, -0.03805354982614517, 0.012557006441056728, 0.026694033294916153, 0.01389586552977562, -0.019509097561240196, -0.021837549284100533, -0.040149156004190445, -0.02448200434446335, -0.013488386757671833, -0.031201248988509178, 0.019858364015817642, -0.06745856255292892, 0.08162885904312134, 0.016174422577023506, 0.00015540335152763873, -0.04424057900905609, -0.02928859367966652, 0.02353399246931076, -0.017629703506827354, -0.0031849888619035482, 0.03003702312707901, 0.007151672150939703, -0.0903439149260521, -0.013995656743645668, 0.007954156957566738, 0.003453176701441407, -0.0025301119312644005, -0.05831107869744301, -0.04044852778315544, 0.0011922918492928147, 0.04946296289563179, -0.0067940885201096535, -0.02346746437251568, -0.009396964684128761, 0.0204404778778553, -0.04034873843193054, -0.02779173105955124, 0.029538070783019066, 0.03522614389657974, -0.03136756643652916, -0.08136274665594101, -0.02641129307448864, -0.004328425042331219, -0.012897958047688007, -0.007908418774604797, 0.017845917493104935, -0.010153711773455143, 0.006997828371822834, 0.019359411671757698, -0.0044157421216368675, -0.0020831325091421604, -0.0024095315020531416, -0.011326253414154053, 0.009754548780620098, -0.013704599812626839, -0.011143303476274014, -0.05821128562092781, 0.03559204563498497, -0.02443210780620575, 0.025529807433485985, -0.06140459328889847, -0.0741778090596199, -0.03110145963728428, 0.051092877984046936, 0.06845647096633911, 0.009480123408138752, -0.032947588711977005, -0.0009022749727591872, -0.07324642688035965, 0.006024868227541447, -0.042011916637420654, -0.005081013776361942, 0.00011317417374812067, 0.005546703934669495, -0.040315475314855576, 0.00848221592605114, 0.03432802855968475, -0.07637320458889008, -0.005900129675865173, -0.05042760446667671, -0.014519558288156986, -0.009854339063167572, -0.02619507908821106, 0.041047271341085434, -0.022536084055900574, 0.06739203631877899, -0.02421589568257332, -0.05019476264715195, 0.03602446988224983, 0.005825286731123924, 0.03649016097187996, -0.020889535546302795, 0.015692099928855896, 0.0690552145242691, 0.008353319950401783, -0.07584098726511002, 0.011326253414154053, 0.0018669191049411893, 0.011825206689536572, -0.06795752048492432, -0.010868879035115242, 0.019143197685480118, 0.004116369411349297, -0.0009760785615071654, 0.030319765210151672, -0.01979183778166771, 0.06878910958766937, 0.045537859201431274, 0.028623322024941444, 0.09912550449371338, 0.04696819186210632, 0.018211817368865013, 0.002625744789838791, 0.051358986645936966, 0.05095982179045677, -0.020739849656820297, 0.03234884515404701, 0.00586686609312892, 0.02112238109111786, -0.047833044081926346, 0.03742154315114021, 0.02474811300635338, -0.007467676419764757, 0.023966418579220772, -0.005692232400178909, 0.05305543169379234, 0.04467300325632095, 0.029055748134851456, 0.00641571544110775, 0.014519558288156986, 0.054818399250507355, -0.011584046296775341, 0.00641571544110775, 0.10118784755468369, -0.03336338326334953, -0.026494450867176056, 0.03030313178896904, -0.028989220038056374, 0.010328345000743866, -0.040515054017305374, 0.006390767637640238, 0.04300982505083084, 0.0012608980759978294, 0.043608568608760834, -0.0011465544812381268, -0.012590269558131695, 0.011417727917432785, -0.050128232687711716, -0.015159882605075836, -0.029172170907258987, 0.002596639096736908, -0.03955041244626045, -0.02571275644004345, -0.003950051497668028, 0.017845917493104935, 0.009089276194572449, -0.007654784247279167, -0.03181662783026695, -0.035725098103284836, 0.005305543076246977, -0.01814528927206993, -0.0008830444421619177, 0.022585978731513023, 0.00804563146084547, -0.0026590083725750446, -0.06729225069284439, -0.008187001571059227, 0.06702613830566406, -0.009787811897695065, -0.016714954748749733, -0.003405360272154212, 0.023035038262605667, 0.010336661711335182, -0.03429476544260979, -0.013704599812626839, 0.06340041011571884, 0.06353346258401871, -0.07803639024496078, 0.020739849656820297, -0.06220291927456856, -0.014594401232898235, 0.011118356138467789, 0.005151698831468821, -0.011625625193119049, 0.02950480580329895, 0.04487258568406105, -0.026544347405433655, -0.04992865398526192, -0.0023783468641340733, 0.028107736259698868, 0.02118890918791294, 0.0008154777460731566, -0.045803967863321304, 0.04636944830417633, 0.001722430344671011, 0.09639789164066315, -0.021155644208192825, -0.0002564934839028865, -0.015459254384040833, 0.06715919077396393, 0.005130908917635679, 0.06369978189468384, 0.001705798553302884, 0.030070288106799126, -0.030602505430579185, 0.02251945249736309, -0.010760772041976452, -0.014045552350580692, 0.00550928246229887, -0.0741778090596199, -0.009396964684128761, 0.018760666251182556, 0.041113801300525665, -0.018045498058199883, -0.04670208320021629, 0.0566478967666626, -0.025380121544003487, 0.028623322024941444, -0.010976985096931458, 0.018793929368257523, 0.04929664358496666, 0.020823009312152863, 0.039783257991075516, 0.04294329881668091, 0.0166484285145998, 0.05458555370569229, -0.09067655354738235, 0.024348950013518333, -0.036157526075839996, 0.007155830506235361, -0.01771286316215992, -0.022070392966270447, -0.01056119054555893, -0.06745856255292892, 0.04480605944991112, 0.06107195466756821, 0.05272279307246208, 0.05036107823252678, 0.00021439425472635776, 0.012407319620251656, -0.004218239337205887, 0.028673216700553894, -0.051192667335271835, 0.043741624802351, 0.017862549051642418, -0.012897958047688007, 0.0897451713681221, 0.0038793664425611496, 0.010278450325131416, 0.04843179136514664, -0.009272226132452488, -0.04247760772705078, 0.01389586552977562, -0.004432373680174351, 0.018045498058199883, -0.030369659885764122, -0.030103551223874092, 0.015717048197984695, 0.013671336695551872, -0.04573743790388107, 0.04909706115722656, 0.082560233771801, -0.007638152223080397, -0.013546598143875599, -0.05960835888981819, 0.029538070783019066, -0.011999840848147869, 0.02529696188867092, 0.0438414141535759, -0.003388728480786085, -0.012432267889380455, 0.032365474849939346, 0.00042463053250685334, -0.02892269380390644, 0.044573213905096054, -0.03931756690144539, -0.03283116593956947, -0.04207844287157059, -0.029637860134243965, 0.07264768332242966, 0.01629084348678589, -0.007613204885274172, 0.03469392657279968, -0.01851118914783001, -0.019193092361092567, 0.008174527436494827, 0.0047857994213700294, 0.07544182986021042, 0.06602822989225388, 0.0218708124011755, -0.01336364820599556, 0.028506899252533913, 0.048797689378261566, 0.04550459608435631, -0.056847479194402695, -0.01984173245728016, -0.039716728031635284, -0.03622405230998993, -0.04018241912126541, 0.04048179090023041, -0.027359304949641228, 0.0009604862425476313, 0.011259726248681545, -0.0077795227989554405, -0.06503032147884369, -0.00370889063924551, 0.021687861531972885, -0.008361635729670525, 0.005155856721103191, 0.01776275783777237, -0.023035038262605667, 0.022602610290050507, 0.0062161339446902275, 0.05571651831269264, 0.019858364015817642, -0.11469286680221558, 0.02518053911626339, -0.015583992935717106, 0.02571275644004345, 0.04437363147735596, -0.024365581572055817, -0.025845810770988464, 0.0435420423746109, 0.07770375162363052, 0.01117656659334898, 0.040847692638635635, 0.012182790786027908, -0.02235313318669796, 0.035458989441394806, -0.037221960723400116, 0.007758732885122299, 0.007812785916030407, -0.04187886416912079, 0.01320564653724432, -0.02705993317067623, -0.0013502939837053418, -0.021139012649655342, -0.04520522058010101, -0.008831484243273735, 0.02715972252190113, 0.02667740173637867, -0.007546677719801664, 0.03622405230998993, 0.00038045234396122396, -0.03496003523468971, 0.018793929368257523, 0.03128441050648689, -0.021105749532580376, -0.04570417478680611, -0.022768929600715637, 0.05335480347275734, 0.004661060869693756, 0.06110521778464317, -0.007280568592250347, 0.013579861260950565, 0.05538387969136238, 0.008972854353487492, -0.06014057621359825, -0.007263937033712864, -0.050560660660266876, 0.03629057854413986, -0.0385192409157753, 0.06043994799256325, -0.01483556255698204, 0.062236182391643524, -0.013529966585338116, -0.05744622275233269, 0.043874677270650864, -0.01984173245728016, -0.022369766607880592, 0.013247225433588028, -0.011667205020785332, 0.060739319771528244, 0.0000868621573317796, -0.05784538760781288, -0.03835292160511017, -0.022120289504528046, 0.009430228732526302, -0.027026668190956116, 0.007392833475023508, -0.07271420955657959, -0.03629057854413986, 0.10311713814735413, -0.04347551614046097, 0.01836150325834751, 0.043874677270650864, -0.013746179640293121, -0.03041955456137657, -0.04769999161362648, 0.015741994604468346, -0.11642257124185562, -0.047566935420036316, 0.011076776310801506, -0.01018697489053011, -0.023667046800255775, -0.05235689505934715, 0.011434359475970268, -0.0006429228815250099, 0.0006335675134323537, -0.09107571840286255, 0.01708085462450981, -0.010162027552723885, -0.012340792454779148, 0.005268121603876352, 0.0021517386194318533, 0.018311606720089912, 0.0037172064185142517, -0.033246960490942, -0.0179290771484375, -0.030818717554211617, 0.04261066019535065, -0.028290685266256332, 0.031034931540489197, 0.010893826372921467, 0.026743927970528603, -0.03692258894443512, 0.04470626637339592, 0.014028919860720634, 0.02880627103149891, 0.0141120795160532, 0.006843984127044678, 0.02230323851108551, -0.05298890173435211, -0.01814528927206993, 0.02300177328288555, -0.052955638617277145, -0.024032944813370705, -0.04913032427430153, 0.044573213905096054, -0.020290791988372803, -0.02000804990530014, 0.02138848975300789, 0.05511777102947235, 0.005309700965881348, -0.01920972391963005, -0.03489350900053978, 0.008440637029707432, 0.01782928593456745, 0.02549654431641102, 0.011193199083209038, -0.029538070783019066, 0.07544182986021042, -0.05159183219075203, -0.023301146924495697, 0.020739849656820297, -0.023966418579220772, 0.010336661711335182, -0.07105103135108948, 0.058444131165742874, -0.0267938245087862, -0.034228235483169556, 0.006523821968585253, -0.04021568223834038, -0.01693948358297348, 0.013405228033661842, -0.03559204563498497, 0.061970073729753494, -0.014203554019331932, -0.009006117470562458, 0.061970073729753494, -0.01544262282550335, -0.007625678554177284, 0.0007177659426815808, -0.002935511991381645, 0.02112238109111786, 0.017263803631067276, -0.0020987247116863728, -0.007513414137065411, -0.019076669588685036, -0.03901819512248039, -0.03692258894443512, 0.010810667648911476, 0.06795752048492432, 0.024980958551168442, 0.03333012014627457, -0.015725363045930862, 0.028190894052386284, 0.04204517975449562, 0.014020604081451893, 0.01829497516155243, -0.021105749532580376, 0.0016954037128016353, 0.039184510707855225, -0.030436186119914055, 0.0011766995303332806, -0.011218146421015263, 0.07856860756874084, -0.06113848462700844, 0.07790333032608032, -0.05272279307246208, -0.06795752048492432, 0.022070392966270447, 0.021571438759565353, -0.001110172364860773, 0.007846049964427948, 0.024681584909558296, -0.013272173702716827, -0.009638126008212566, 0.04913032427430153, 0.0005571651854552329, -0.05831107869744301, -0.0053887018002569675, 0.0121162636205554, -0.002436558250337839, 0.07218199223279953, -0.008806535974144936, -0.0020789746195077896, 0.059841204434633255, 0.00293343304656446, -0.01093540620058775, 0.0021278304047882557, -0.0010114210890606046, -0.0153677798807621, -0.04397447034716606, -0.015193145722150803, 0.07883471250534058, -0.03201620653271675, 0.019326146692037582, -0.034228235483169556, -0.05086003243923187, -0.008041473105549812, -0.004407425876706839, 0.015218093059957027, 0.059142667800188065, 0.04034873843193054, -0.017862549051642418, 0.0002985927276313305, -0.009571598842740059, -0.003288937732577324 ]
18,580
traceback2
print_exception
Print exception up to 'limit' stack trace entries from 'tb' to 'file'. This differs from print_tb() in the following ways: (1) if traceback is not None, it prints a header "Traceback (most recent call last):"; (2) it prints the exception type and value after the stack trace; (3) if type is SyntaxError and value has the appropriate format, it prints the line where the syntax error occurred with a caret on the next line indicating the approximate position of the error.
def print_exception(etype, value, tb, limit=None, file=None, chain=True): """Print exception up to 'limit' stack trace entries from 'tb' to 'file'. This differs from print_tb() in the following ways: (1) if traceback is not None, it prints a header "Traceback (most recent call last):"; (2) it prints the exception type and value after the stack trace; (3) if type is SyntaxError and value has the appropriate format, it prints the line where the syntax error occurred with a caret on the next line indicating the approximate position of the error. """ # format_exception has ignored etype for some time, and code such as cgitb # passes in bogus values as a result. For compatibility with such code we # ignore it here (rather than in the new TracebackException API). if file is None: file = sys.stderr for line in TracebackException( type(value), value, tb, limit=limit).format(chain=chain): file.write(line)
(etype, value, tb, limit=None, file=None, chain=True)
[ 0.014413916505873203, 0.029224712401628494, -0.020240819081664085, 0.06014518067240715, -0.008149545639753342, -0.04134755581617355, -0.016650870442390442, -0.0909213274717331, -0.04582146182656288, -0.07262881845235825, 0.05397551879286766, -0.0010936716571450233, -0.039904359728097916, -0.00028314258088357747, 0.014585296623408794, 0.06829923391342163, -0.014413916505873203, -0.021882453933358192, 0.0386776439845562, 0.03795604780316353, 0.003330624895170331, 0.006922829430550337, 0.002830016426742077, -0.060073018074035645, 0.032255422323942184, 0.004676856100559235, -0.010860047303140163, -0.052857041358947754, 0.008672703988850117, 0.013151120394468307, -0.022640131413936615, -0.0846434235572815, -0.07468537241220474, -0.03799212723970413, -0.001080705551430583, -0.008465244434773922, -0.04224955290555954, 0.004336351994425058, 0.00917782261967659, -0.00009858548582997173, -0.004762545693665743, 0.01432371698319912, 0.013692318461835384, -0.015658672899007797, -0.003087085671722889, -0.021810295060276985, 0.03074006736278534, 0.003910158295184374, -0.0543723963201046, -0.05206328257918358, -0.030072590336203575, 0.03064986877143383, 0.05321783944964409, -0.05144992470741272, -0.012321283109486103, 0.023614289239048958, -0.028286635875701904, -0.036765407770872116, 0.008537404239177704, -0.032778579741716385, -0.015252774581313133, 0.026825400069355965, -0.001502953004091978, 0.022658171132206917, -0.002699226839467883, -0.0376674085855484, -0.0058674924075603485, -0.006327510811388493, -0.08016952127218246, 0.02958551049232483, 0.023343689739704132, -0.006422220729291439, -0.0407702773809433, -0.000515547813847661, 0.004029673058539629, -0.043656669557094574, -0.05043968930840492, 0.0585937425494194, 0.011978523805737495, 0.010120409540832043, 0.017489727586507797, 0.05033144727349281, 0.018382703885436058, -0.003134440630674362, 0.07089699059724808, -0.023596249520778656, -0.039904359728097916, -0.0058404323644936085, 0.017652086913585663, 0.0133405402302742, -0.032580140978097916, -0.04903257265686989, -0.04152795672416687, -0.01371035911142826, -0.06739723682403564, -0.01903214305639267, 0.048599615693092346, 0.0014499606331810355, -0.04737289622426033, -0.02007845975458622, 0.05112520605325699, -0.021521655842661858, 0.03297702223062515, -0.03994043916463852, -0.023686448112130165, -0.010842007584869862, 0.000923419720493257, 0.002762366784736514, 0.03474493697285652, 0.010210609063506126, -0.01328642014414072, -0.06732507795095444, 0.023920968174934387, -0.02271229214966297, 0.05761958658695221, 0.05844942480325699, 0.029044313356280327, -0.0031389505602419376, 0.04333195090293884, -0.03716228902339935, 0.06638699769973755, -0.02435392700135708, -0.05249624326825142, 0.013151120394468307, -0.029134511947631836, 0.008456224575638771, -0.021810295060276985, -0.020421218127012253, 0.02489512600004673, -0.03692777082324028, 0.015992412343621254, -0.05007889121770859, -0.025869281962513924, 0.006814589723944664, 0.00010577327338978648, 0.048166655004024506, -0.09359123557806015, 0.00831641536206007, -0.02374056912958622, -0.018635263666510582, -0.04798625409603119, 0.008239745162427425, 0.010436108335852623, -0.003887608414515853, -0.04571322351694107, 0.0053082541562616825, 0.01249266229569912, -0.008203665725886822, 0.03481709584593773, 0.026951678097248077, -0.008433674462139606, 0.011166726239025593, -0.03716228902339935, 0.01826544478535652, 0.0172642283141613, -0.0025819672737270594, 0.018869783729314804, -0.04589362069964409, -0.015685733407735825, 0.0034320997074246407, -0.06000085920095444, -0.01474765595048666, 0.034672774374485016, -0.006440260447561741, -0.00973255094140768, 0.02958551049232483, -0.0064628105610609055, 0.09871458262205124, 0.011374185793101788, -0.006002792157232761, -0.0209263376891613, -0.018382703885436058, -0.006056911777704954, 0.025183765217661858, -0.013863698579370975, 0.02991023100912571, -0.002721776720136404, -0.001589770196005702, -0.004776075482368469, -0.0169846098870039, 0.0017228148644790053, -0.029260791838169098, 0.003680148860439658, -0.0020520437974482775, -0.008190135471522808, -0.0711856260895729, 0.031100867316126823, -0.0012729436857625842, 0.02698775939643383, 0.02707795798778534, -0.026392441242933273, 0.0070130289532244205, 0.037054046988487244, 0.02594144269824028, 0.004316057078540325, -0.004401746671646833, 0.027456797659397125, -0.0074414778500795364, 0.07226802408695221, -0.0054751234129071236, -0.03075810708105564, 0.07068050652742386, 0.0024895125534385443, -0.03799212723970413, 0.04477514699101448, 0.054228078573942184, 0.07439673691987991, -0.012745222076773643, -0.06476340442895889, 0.023668408393859863, -0.008329944685101509, -0.028394874185323715, -0.00517295440658927, 0.0025301023852080107, 0.06530460715293884, -0.022838572040200233, -0.014224497601389885, -0.009137232787907124, 0.03254406154155731, 0.07937575876712799, 0.041816595941782, -0.03202090412378311, -0.024606486782431602, -0.02686147950589657, 0.0491408109664917, 0.02707795798778534, -0.010012170299887657, 0.0016957549378275871, 0.05134168639779091, -0.025670843198895454, 0.0061065214686095715, -0.0006595855229534209, -0.09705490618944168, 0.030703987926244736, 0.034167658537626266, 0.02938707172870636, 0.0018490944057703018, -0.025057485327124596, -0.06137189641594887, -0.04253819212317467, -0.020204739645123482, 0.03270642086863518, -0.02009649947285652, -0.0023000931832939386, 0.03176834434270859, -0.06642308086156845, 0.05761958658695221, 0.027114039286971092, -0.08002519607543945, -0.028593314811587334, 0.05729486793279648, 0.04867177456617355, -0.00868623424321413, -0.0449916236102581, -0.012023624032735825, -0.02467864565551281, 0.024101367220282555, -0.07685016840696335, 0.009245472028851509, 0.03200286254286766, -0.009344692341983318, -0.013683298602700233, 0.007788746617734432, -0.06552108377218246, 0.010219628922641277, -0.05155816674232483, -0.09676627069711685, -0.022098934277892113, 0.0376674085855484, 0.07418026030063629, -0.022946810349822044, 0.023055050522089005, 0.007455007638782263, 0.06295941025018692, -0.08673606067895889, 0.003271995112299919, -0.015171593986451626, 0.04748113825917244, -0.02698775939643383, -0.0016788424691185355, -0.03795604780316353, 0.029350992292165756, -0.02247777208685875, -0.018671343103051186, -0.03921884298324585, -0.031335387378931046, 0.02991023100912571, 0.011978523805737495, -0.002284308196976781, 0.04152795672416687, 0.049321211874485016, 0.023722529411315918, -0.012483642436563969, -0.06353668868541718, -0.011996563524007797, -0.014594316482543945, 0.040301237255334854, -0.05761958658695221, 0.030144749209284782, -0.020727897062897682, 0.03589949384331703, -0.03534025326371193, 0.08009736239910126, 0.03615204989910126, 0.04264643043279648, -0.0041536977514624596, 0.048166655004024506, -0.0784376859664917, -0.020547498017549515, -0.014350776560604572, -0.022135013714432716, 0.015207674354314804, -0.02603164128959179, 0.015974372625350952, 0.031136946752667427, 0.04592970013618469, -0.021305175498127937, -0.02969375066459179, -0.03420373797416687, 0.0376313254237175, 0.019681580364704132, -0.01678616926074028, 0.07176290452480316, -0.06516028195619583, 0.02603164128959179, -0.036242250353097916, -0.035574771463871, -0.003242680337280035, -0.003414059756323695, 0.01083298772573471, -0.05105304718017578, -0.029765911400318146, 0.01720108836889267, 0.03474493697285652, 0.013187200762331486, 0.06267077475786209, -0.008744863793253899, 0.030379269272089005, -0.008952323347330093, -0.003114145714789629, -0.013926838524639606, -0.008221705444157124, -0.010787887498736382, -0.04058987647294998, 0.02269425243139267, 0.023975087329745293, 0.01820230484008789, 0.028160355985164642, 0.03483513370156288, 0.13248535990715027, 0.011040447279810905, 0.029134511947631836, 0.010941226966679096, -0.023506049066781998, -0.07244842499494553, 0.03474493697285652, -0.007567757274955511, -0.06505204737186432, 0.000988814514130354, 0.04174443334341049, 0.0533260814845562, -0.0020464062690734863, -0.022333452478051186, -0.006602620240300894, -0.01609163172543049, 0.015342974103987217, 0.03838900476694107, -0.0028593314345926046, 0.0287737138569355, 0.05585167184472084, 0.004528026562184095, -0.019086262211203575, 0.03860548511147499, 0.006710859946906567, -0.02258601225912571, 0.030469467863440514, -0.015685733407735825, 0.019952179864048958, 0.0034907294902950525, 0.03465473651885986, 0.07692232728004456, 0.020060420036315918, -0.03315741941332817, -0.06909298896789551, -0.017859546467661858, -0.0038988832384347916, 0.008704273961484432, 0.0272042378783226, -0.014964135363698006, 0.017498746514320374, -0.01587515138089657, -0.029964350163936615, 0.019898060709238052, -0.01255580224096775, 0.03914668411016464, -0.0012323538539931178, -0.014783735387027264, 0.026590880006551743, -0.03346410021185875, 0.007653446868062019, -0.04120323434472084, 0.0826951116323471, 0.012709141708910465, 0.06674779951572418, 0.013439759612083435, -0.03407745808362961, -0.03158794343471527, -0.026194000616669655, 0.00973255094140768, -0.004399491939693689, 0.0007588051958009601, 0.0047129360027611256, -0.0029608060140162706, -0.015793971717357635, 0.05242408066987991, 0.024317847564816475, -0.05271271988749504, -0.026825400069355965, -0.006715369876474142, -0.025670843198895454, 0.033734697848558426, -0.057980384677648544, 0.0038921183440834284, 0.034167658537626266, 0.018797622993588448, -0.031136946752667427, -0.04560498148202896, -0.008911733515560627, 0.08644741773605347, 0.03021690994501114, 0.004911375232040882, -0.04228563234210014, 0.02195461466908455, 0.03265230357646942, 0.025761041790246964, -0.010129429399967194, -0.04589362069964409, -0.04881609231233597, 0.07858200371265411, 0.004424296785145998, 0.003808683482930064, -0.00016038639296311885, -0.0128083610907197, -0.0076444270089268684, -0.004726465791463852, 0.012781301513314247, 0.039796121418476105, 0.024714725092053413, -0.06158837676048279, 0.06674779951572418, 0.004440081771463156, -0.012014604173600674, 0.03503357619047165, -0.0313895046710968, 0.01145536545664072, -0.02114281617105007, -0.03146166726946831, -0.006052401848137379, 0.023181330412626266, 0.04138363525271416, 0.042502112686634064, 0.028899993747472763, 0.0439453087747097, -0.0543723963201046, 0.0018073770916089416, 0.028918033465743065, 0.012655021622776985, 0.01291660126298666, 0.0324358232319355, -0.02834075503051281, -0.01787758618593216, 0.0175077673047781, -0.06934554874897003, 0.003229150315746665, 0.056104231625795364, 0.10715727508068085, 0.05769174546003342, 0.003686913987621665, 0.06360884755849838, -0.01140124537050724, 0.022513851523399353, -0.06494380533695221, 0.03043338842689991, 0.005421003792434931, 0.016272030770778656, 0.027979955077171326, -0.01964550092816353, 0.014161357656121254, 0.00606142170727253, 0.06436652690172195, 0.014819815754890442, -0.01818426512181759, -0.045316342264413834, -0.008789964020252228, -0.023812728002667427, -0.019176462665200233, -0.036765407770872116, -0.01066160760819912, -0.06829923391342163, -0.025598682463169098, 0.053506478667259216, -0.037054046988487244, 0.04964593052864075, -0.059026703238487244, 0.008420145139098167, -0.017237167805433273, 0.053578637540340424, 0.042610350996255875, 0.009290572255849838, -0.03012670949101448, 0.079520083963871, 0.03716228902339935, 0.009967070072889328, 0.011428305879235268, -0.056861910969018936, -0.06220173463225365, 0.024335887283086777, -0.021052617579698563, 0.09222020208835602, 0.03730660676956177, 0.030703987926244736, 0.016813229769468307, 0.017697187140583992, 0.028701553121209145, 0.030271029099822044, -0.012682082131505013, 0.03375273942947388, 0.051197364926338196, 0.009398811496794224, 0.08651957660913467, 0.013349560089409351, 0.043873149901628494, 0.023920968174934387, -0.06685604155063629, 0.060830697417259216, 0.001604427699930966, -0.02132321521639824, -0.0023609779309481382, 0.08074679970741272, -0.04423394799232483, 0.008672703988850117, 0.01658773049712181, -0.031227145344018936, -0.01772424764931202, 0.010129429399967194, -0.05011497065424919, -0.0319126658141613, -0.06000085920095444, 0.011329085566103458, -0.01820230484008789, 0.08031383901834488, 0.01113966666162014, 0.09503443539142609, -0.004776075482368469, -0.0308483075350523, 0.02740267850458622, 0.03595361113548279, 0.05498575419187546, -0.003716228762641549, -0.0318765826523304, 0.030685948207974434, 0.02897215262055397, 0.0014984429581090808, -0.032778579741716385, 0.027835635468363762, -0.007617366965860128, -0.01573985256254673, 0.0069498890079557896, -0.015397094190120697, -0.041996993124485016, -0.02740267850458622, 0.08197351545095444, -0.02637440152466297, 0.007337748073041439, 0.019843939691781998, 0.04517202451825142, 0.004388216882944107, 0.030830267816781998, 0.020854176953434944, 0.026915598660707474, -0.03304918110370636, -0.03889412432909012, 0.017751306295394897, -0.023055050522089005, -0.011888324283063412, 0.03712620958685875, 0.013809578493237495, -0.061768773943185806, -0.05458887666463852, 0.047228578478097916, 0.001296621048822999, -0.0021749408915638924, -0.03315741941332817, -0.019609421491622925, 0.08536502718925476, 0.008970363065600395, -0.029531391337513924, -0.0008957960526458919, -0.018490944057703018, 0.04170835390686989, -0.04423394799232483, 0.0209263376891613, 0.017976805567741394, 0.021990694105625153, 0.011707925237715244, -0.015658672899007797, 0.044306106865406036, 0.022459732368588448, 0.018996063619852066, -0.0006894641555845737, 0.02247777208685875, 0.03723444789648056, -0.03198482468724251, -0.05173856392502785, -0.08449910581111908, -0.020240819081664085, 0.05657327175140381, 0.027583077549934387, -0.009759610518813133, 0.002169303596019745, -0.030920466408133507, 0.028286635875701904, -0.033301740884780884, 0.02960355021059513, 0.042105235159397125, 0.03285074234008789, -0.05000672861933708, 0.0086230942979455, -0.012005584314465523, -0.07277314364910126, -0.02018669992685318, 0.0669642761349678, -0.04509986564517021, -0.0805303156375885, -0.08428262919187546, -0.03656696900725365, 0.04488338530063629, 0.0169846098870039, -0.0721237063407898, 0.00198890408501029, 0.00869976356625557, 0.03907452151179314, -0.06465516239404678, 0.0015987901715561748, -0.006291430909186602, 0.02790779620409012, 0.011987543664872646, -0.06151621416211128, 0.036675211042165756, 0.006129071582108736, 0.049826331436634064, 0.021467534825205803, 0.01721912808716297, -0.022946810349822044, -0.03689168766140938, -0.00010781686432892457, 0.06754155457019806, 0.016488511115312576, 0.010887106880545616, 0.02855723351240158, 0.026482639834284782, -0.0439453087747097, 0.01946510188281536, -0.0031186556443572044, 0.001267306157387793, 0.019302742555737495, -0.01139222551137209, 0.01846388541162014, 0.021684015169739723, -0.0287556741386652, -0.005353353917598724, -0.022243253886699677, -0.029477272182703018, -0.029369032010436058, -0.01083298772573471, 0.01800386607646942, -0.03921884298324585, -0.005691602826118469, -0.03043338842689991, -0.04657914116978645, 0.050367530435323715, 0.009028992615640163, -0.029856109991669655, -0.06887651234865189, 0.0029314912389963865, 0.06101109832525253, -0.023776648566126823, 0.07605641335248947, -0.012294222600758076, -0.027979955077171326, -0.056104231625795364, -0.06779411435127258, -0.07966440171003342, 0.005466103553771973, -0.06855179369449615, 0.012222063727676868, 0.03627832978963852, -0.062165651470422745, 0.050764407962560654, 0.01652459055185318, -0.040409479290246964, 0.012790321372449398, 0.016822248697280884, 0.011671844869852066, -0.014729615300893784, -0.030902426689863205, 0.001890811836346984, -0.00869976356625557, 0.027474837377667427, -0.019681580364704132, -0.02060161717236042, 0.027943875640630722, 0.0209263376891613, -0.020222779363393784, -0.008266804739832878, 0.006697329692542553, -0.019501181319355965, 0.032381702214479446, -0.030289068818092346, 0.016714010387659073, 0.019212542101740837, 0.04275467246770859, -0.008397595025599003, -0.04780585691332817, -0.004717445932328701, 0.014720595441758633, -0.08550934493541718, -0.004216837231069803, -0.0449555441737175, 0.0044288067147135735, 0.009849810041487217, 0.018851744011044502, -0.012781301513314247, 0.013719378970563412, 0.003071300685405731, 0.0024308827705681324, -0.02770935744047165, 0.013115040957927704, 0.06393356621265411, -0.04740897938609123, -0.0036981888115406036, 0.03146166726946831, -0.02884587273001671, -0.04134755581617355, 0.0009019972640089691, 0.012925621122121811, 0.008289354853332043, 0.008284845389425755, 0.010183549486100674, 0.013187200762331486, -0.006295941304415464, -0.030144749209284782, -0.018527023494243622, 0.020222779363393784, 0.04372882843017578, -0.05743918567895889, 0.013827618211507797, -0.03490729629993439, -0.021936574950814247, -0.013575059361755848, -0.033319778740406036, -0.03346410021185875, -0.003847018349915743, 0.04235779121518135, 0.030812228098511696, 0.025039445608854294, -0.02489512600004673, -0.007576777134090662 ]
18,581
traceback2
print_last
This is a shorthand for 'print_exception(sys.last_type, sys.last_value, sys.last_traceback, limit, file)'.
def print_last(limit=None, file=None, chain=True): """This is a shorthand for 'print_exception(sys.last_type, sys.last_value, sys.last_traceback, limit, file)'.""" if not hasattr(sys, "last_type"): raise ValueError("no last exception") print_exception(sys.last_type, sys.last_value, sys.last_traceback, limit, file, chain)
(limit=None, file=None, chain=True)
[ -0.017728764563798904, 0.032485656440258026, -0.006814814172685146, 0.10343487560749054, -0.013202635571360588, -0.024902254343032837, -0.017062654718756676, -0.043245889246463776, -0.02206701785326004, -0.07556074857711792, 0.029701659455895424, -0.007651721127331257, -0.04030817374587059, -0.057661186903715134, -0.002455211943015456, 0.08396397531032562, -0.041845351457595825, -0.020734798163175583, -0.004402301739901304, -0.0011945139849558473, 0.027054300531744957, 0.04058144986629486, 0.012639003805816174, -0.015764595940709114, 0.03918091207742691, 0.009129118174314499, 0.006426250096410513, -0.01600371114909649, 0.013680867850780487, 0.016012251377105713, -0.0785667821764946, -0.06483467668294907, -0.06421980261802673, -0.025653762742877007, -0.005123920273035765, 0.0045645590871572495, -0.053732845932245255, 0.01813867874443531, -0.004530399572104216, -0.006861783564090729, 0.01602933183312416, 0.01897558569908142, 0.004769516177475452, -0.012126611545681953, 0.007630371488630772, -0.021827900782227516, 0.05263974145054817, 0.010495496913790703, -0.05103424936532974, -0.04714006930589676, 0.00551675446331501, 0.041742872446775436, 0.01907806470990181, -0.07262302935123444, -0.027703329920768738, 0.005324607249349356, -0.011187226511538029, -0.03142671287059784, 0.0015446485485881567, -0.03369831666350365, -0.00038029096322134137, 0.0020623779855668545, -0.0346035435795784, 0.01528636272996664, 0.043519165366888046, -0.00832637120038271, -0.017711685970425606, -0.0002126960753230378, -0.05127336457371712, 0.03251981362700462, 0.008471548557281494, 0.0007328273495659232, -0.048472288995981216, -0.004778055939823389, -0.03282725065946579, -0.11327280104160309, -0.028915992006659508, 0.04013737663626671, -0.04949707165360451, 0.013843124732375145, -0.03190494328737259, 0.03733630105853081, -0.002954794093966484, 0.006575698032975197, 0.012878119945526123, -0.04140127822756767, -0.0004096467746421695, -0.0030700822826474905, -0.05499674752354622, 0.01047841738909483, -0.052127350121736526, -0.0079420767724514, -0.00030850269831717014, 0.03158042952418327, -0.0205640010535717, -0.044919703155756, -0.007288776803761721, 0.017455488443374634, -0.023416316136717796, -0.029103867709636688, 0.011443422175943851, -0.030145732685923576, 0.02039320394396782, -0.046730153262615204, 0.027805808931589127, 0.02440694160759449, 0.017557967454195023, -0.03378371521830559, -0.018104519695043564, 0.009376774542033672, -0.0071222493425011635, -0.07740535587072372, 0.010068504139780998, -0.05219566822052002, 0.06343413889408112, 0.07603897899389267, 0.023143040016293526, 0.0495312325656414, 0.04874556511640549, -0.02374083176255226, 0.03168290853500366, -0.036345675587654114, -0.04505633935332298, -0.013279493898153305, -0.06237519159913063, -0.006891672965139151, 0.00022924206859897822, -0.02083727717399597, 0.03955666720867157, -0.01369794737547636, 0.01627698726952076, -0.018275316804647446, -0.03434734791517258, 0.012058292515575886, -0.004491970408707857, 0.03479142114520073, -0.055406659841537476, 0.04177703335881233, -0.07166656851768494, -0.011264084838330746, -0.03357875719666481, 0.053630366921424866, 0.0030337879434227943, 0.021844981238245964, -0.03479142114520073, 0.014569014310836792, 0.019795412197709084, -0.005580803379416466, 0.004150375723838806, 0.018651070073246956, 0.021059313789010048, -0.02543172612786293, -0.03392035514116287, 0.05181991681456566, -0.017557967454195023, 0.024577738717198372, -0.025568362325429916, -0.017122434452176094, -0.04912131652235985, -0.05844685435295105, -0.06968531757593155, -0.012980598956346512, 0.02655898779630661, -0.03935170918703079, -0.020222406834363937, 0.022186575457453728, 0.00841176975518465, 0.09469004720449448, 0.03308344632387161, 0.07241807878017426, 0.012527985498309135, -0.002391162794083357, 0.010042884387075901, -0.027754569426178932, -0.03021405078470707, 0.07030019164085388, 0.009547571651637554, -0.0015425136080011725, -0.021161790937185287, -0.004272068850696087, 0.02348463609814644, -0.06254599243402481, 0.009906246326863766, -0.07433100789785385, 0.01253652572631836, -0.06811398267745972, -0.015909772366285324, -0.01889018714427948, -0.027737488970160484, 0.007792628835886717, -0.020085768774151802, 0.05585073307156563, 0.056089848279953, -0.0032323398627340794, 0.030897241085767746, -0.00579856988042593, 0.013919983990490437, 0.030794762074947357, 0.11327280104160309, -0.012271789833903313, -0.046149443835020065, 0.08068466931581497, 0.009743988513946533, -0.09311871230602264, 0.016456324607133865, 0.029616260901093483, 0.038121968507766724, 0.0016823539044708014, -0.09380190074443817, 0.03788285329937935, 0.004231504164636135, -0.0017026361310854554, -0.061965279281139374, -0.0021029424387961626, 0.018480272963643074, -0.009675669483840466, 0.01627698726952076, -0.018292395398020744, 0.0420844666659832, 0.0439290776848793, 0.04047897085547447, -0.07207648456096649, -0.00841176975518465, 0.001533973729237914, 0.021930379793047905, 0.013211174868047237, 0.02292100340127945, 0.017728764563798904, 0.06613273173570633, -0.03448398411273956, 0.008518517948687077, -0.00295692915096879, -0.06387820839881897, 0.017523808404803276, 0.058036938309669495, 0.0049659330397844315, -0.033254243433475494, 0.011229925788939, 0.004752436187118292, -0.014910608530044556, -0.025038890540599823, 0.040171537548303604, -0.04191366955637932, 0.02271604724228382, 0.019146382808685303, -0.04570537060499191, 0.056055691093206406, 0.04891636222600937, -0.02543172612786293, 0.00968420971184969, 0.06623521447181702, 0.0392833910882473, 0.00046782460412941873, -0.026131995022296906, 0.0009628700790926814, 0.010170982219278812, 0.0019310775678604841, -0.07364781945943832, 0.04215278476476669, 0.030880160629749298, 0.0034906708169728518, 0.03593576326966286, -0.0002066914748866111, -0.03542337194085121, -0.041196320205926895, -0.04218694567680359, -0.05810525640845299, -0.03600408136844635, 0.03901011496782303, 0.08375901728868484, 0.008117143996059895, 0.0010317227570340037, -0.030077412724494934, 0.02404826693236828, -0.046046964824199677, 0.0044748904183506966, 0.01421033963561058, -0.01621720753610134, -0.030248209834098816, -0.005239208694547415, 0.017002876847982407, 0.023911628872156143, 0.0006976004224270582, -0.0332200862467289, -0.036618951708078384, 0.030367769300937653, 0.009180357679724693, 0.006259722635149956, -0.037917010486125946, 0.011725237593054771, 0.06852389872074127, 0.02461189776659012, 0.009026640094816685, -0.04843812808394432, -0.010888330638408661, -0.06258014589548111, 0.007130789570510387, -0.06903629004955292, 0.04290429502725601, -0.0033924623858183622, 0.004897614009678364, -0.07836182415485382, 0.06558617949485779, 0.01822407729923725, 0.011981434188783169, -0.04140127822756767, 0.02869395539164543, -0.0767221674323082, 0.01444945577532053, 0.007775549311190844, -0.015252203680574894, 0.06804566085338593, 0.006114545278251171, 0.0021669913548976183, 0.0007525758119300008, 0.032126981765031815, -0.016857698559761047, -0.018941426649689674, -0.032605212181806564, 0.03573080524802208, -0.004889074247330427, 0.0019481572089716792, 0.05171743780374527, -0.02833528071641922, -0.011298244819045067, -0.025107210502028465, -0.05926667898893356, 0.04714006930589676, 0.012724402360618114, -0.008279401808977127, -0.028027845546603203, -0.0411621630191803, -0.021366748958826065, 0.013501530513167381, 0.018958505243062973, 0.05837853252887726, -0.007916457019746304, 0.02124718949198723, 0.050829291343688965, -0.016294067725539207, -0.0439290776848793, -0.040069058537483215, 0.001151814591139555, -0.033425040543079376, 0.03200742229819298, 0.07234975695610046, 0.057285431772470474, 0.0010119742946699262, 0.009803768247365952, 0.055679935961961746, -0.021998697891831398, 0.0021360344253480434, -0.04150375723838806, 0.004782325588166714, -0.06592777371406555, 0.02563668228685856, 0.007058200426399708, 0.00720337824895978, -0.0036315785255283117, 0.059437476098537445, 0.06237519159913063, 0.0013375567505136132, -0.01688331738114357, 0.0029782787896692753, 0.0105211166664958, 0.015790214762091637, 0.058412693440914154, 0.014355516992509365, 0.0066995262168347836, 0.00044407311361283064, -0.005768680479377508, -0.03668726980686188, 0.06299006193876266, 0.01805328018963337, -0.040923044085502625, 0.06107713282108307, 0.012126611545681953, 0.03702886402606964, 0.03320300579071045, -0.00045021114055998623, 0.03733630105853081, -0.016439244151115417, -0.017882483080029488, -0.04177703335881233, -0.005883968900889158, 0.02179374173283577, -0.015397381037473679, -0.024372782558202744, -0.0008342383080162108, 0.03757541626691818, 0.017626285552978516, -0.057012155652046204, -0.017395710572600365, -0.010068504139780998, 0.009752528741955757, 0.031204676255583763, -0.02000037021934986, -0.003479995997622609, -0.058583490550518036, -0.010862711817026138, -0.058036938309669495, 0.08901958167552948, 0.024526499211788177, 0.03508177399635315, 0.017233451828360558, -0.04498802125453949, -0.01795080117881298, -0.022374453023076057, -0.008428849279880524, 0.0006623734952881932, -0.0313413143157959, -0.02225489541888237, -0.03719966113567352, -0.028728114441037178, 0.09619306772947311, 0.04686679318547249, -0.003599554067477584, -0.00031757631222717464, 0.031204676255583763, -0.02039320394396782, 0.009316995739936829, -0.028010765090584755, -0.0025854448322206736, 0.05417691916227341, 0.007135059218853712, -0.009829387068748474, -0.08895125985145569, -0.008147033862769604, 0.008548406884074211, 0.019214700907468796, -0.0029846837278455496, -0.020034529268741608, 0.009803768247365952, 0.040069058537483215, 0.046900950372219086, -0.01702849566936493, -0.03357875719666481, -0.007399795111268759, 0.03487681970000267, 0.005708901211619377, 0.024646056815981865, 0.02843775786459446, -0.04731086641550064, -0.0015766730066388845, -0.004319037776440382, -0.004156780429184437, 0.052229829132556915, 0.01594393327832222, -0.08252927660942078, 0.06247767060995102, -0.02085435576736927, -0.04505633935332298, 0.03441566601395607, -0.04532961547374725, 0.0467643141746521, -0.04734502360224724, -0.06374157220125198, 0.008787523955106735, 0.030504407361149788, 0.03308344632387161, -0.020546920597553253, 0.025465885177254677, 0.08669673651456833, -0.022425692528486252, -0.022323213517665863, -0.014697112143039703, 0.015551098622381687, -0.0073272064328193665, -0.021452147513628006, -0.008245241828262806, 0.012510905973613262, 0.003960363566875458, -0.07378445565700531, 0.012562145479023457, 0.013168475590646267, 0.040718089789152145, 0.08970277011394501, 0.01945381797850132, 0.06838725507259369, -0.02609783411026001, 0.006208483595401049, -0.019026825204491615, 0.010632134974002838, -0.004436461254954338, 0.011178686283528805, 0.05219566822052002, -0.015158264897763729, -0.0008764038793742657, 0.011562980711460114, 0.05181991681456566, 0.01337343268096447, 0.028215721249580383, -0.022032858803868294, 0.026439430192112923, -0.02030780538916588, -0.02954794093966484, -0.029411302879452705, -0.014073701575398445, -0.005410006269812584, -0.02507305145263672, 0.03702886402606964, -0.054279398173093796, 0.032297778874635696, -0.03675558790564537, 0.013544229790568352, -0.014867909252643585, 0.0322294607758522, 0.06258014589548111, 0.019778333604335785, -0.026798104867339134, 0.054586831480264664, 0.019658774137496948, -0.0026196043472737074, 0.01421033963561058, -0.06237519159913063, -0.07583402097225189, 0.010264921002089977, -0.02346755564212799, 0.11730361729860306, 0.06398068368434906, 0.022664807736873627, 0.04136711731553078, -0.0017165134195238352, -0.0025171260349452496, 0.030794762074947357, -0.02609783411026001, 0.015124104917049408, 0.026302792131900787, 0.015593797899782658, 0.08061634749174118, 0.041845351457595825, 0.05294717848300934, 0.043348368257284164, -0.05865180864930153, 0.02833528071641922, 0.00025606260169297457, -0.0411280021071434, -0.02517552860081196, 0.0012521580792963505, -0.08464716374874115, 0.003877099836245179, -0.023313838988542557, -0.004103406332433224, 0.007071010302752256, -0.016558803617954254, -0.07938660681247711, -0.010615055449306965, -0.017916642129421234, 0.01621720753610134, -0.0021669913548976183, 0.027908286079764366, -0.02187914028763771, 0.051444161683321, 0.009735449217259884, -0.045124661177396774, 0.04181119054555893, 0.03205866366624832, 0.060633059591054916, 0.024919332936406136, -0.02432154305279255, 0.006328041665256023, 0.060359783470630646, 0.02785704843699932, -0.01084563136100769, -0.007707230281084776, -0.036140717566013336, 0.010666294023394585, 0.016874779015779495, -0.024372782558202744, 0.012032673694193363, -0.02507305145263672, 0.10787560790777206, -0.00802320521324873, -0.02515845000743866, 0.06678176671266556, 0.06797734647989273, 0.02561960183084011, 0.06206775829195976, 0.031170515343546867, 0.03491097688674927, -0.00009420541027793661, 0.02058108150959015, 0.007647451478987932, -0.04181119054555893, -0.01945381797850132, 0.0317683070898056, -0.010512576438486576, -0.05281054228544235, -0.05352788791060448, 0.05011194199323654, -0.02497057244181633, 0.03631151467561722, -0.011229925788939, -0.03168290853500366, 0.07043682783842087, 0.0332200862467289, -0.02348463609814644, -0.0015361086698248982, -0.03207574039697647, 0.053459569811820984, -0.029120948165655136, 0.05790030211210251, 0.0020431634038686752, 0.04655935615301132, -0.009675669483840466, -0.026661466807127, 0.021742502227425575, 0.0346035435795784, -0.012912279926240444, -0.0025662302505224943, -0.01972709409892559, 0.024014107882976532, -0.049565389752388, -0.025875799357891083, -0.06097465381026268, -0.03993241861462593, 0.021469226107001305, 0.06114545091986656, 0.008804603479802608, 0.03535505011677742, -0.03262229263782501, 0.04252853989601135, -0.02778872847557068, 0.0570463165640831, 0.004186669830232859, 0.05837853252887726, -0.0467643141746521, -0.004265663679689169, -0.004812215454876423, -0.027156777679920197, -0.054006122052669525, 0.03976162150502205, -0.02505597099661827, -0.06377573311328888, -0.06620105355978012, -0.04314341023564339, 0.031068038195371628, 0.009060799144208431, -0.05670471861958504, -0.014270118437707424, 0.0016471269773319364, 0.016584422439336777, -0.03781453147530556, -0.002971873851493001, 0.007818249054253101, 0.03002617321908474, 0.011229925788939, -0.022494010627269745, 0.057182952761650085, -0.02486809343099594, 0.023143040016293526, 0.008813142776489258, 0.013962683267891407, 0.010913950391113758, -0.01202413346618414, -0.0626484677195549, 0.05738791078329086, 0.05041937902569771, 0.005606423132121563, -0.020888516679406166, 0.026541907340288162, -0.04908715933561325, 0.020529842004179955, 0.006336581893265247, -0.03487681970000267, -0.01650756411254406, -0.036618951708078384, 0.017096813768148422, 0.017207833006978035, -0.04994114488363266, 0.02394578792154789, -0.0823243260383606, 0.01159713976085186, -0.03948834538459778, -0.01281834114342928, -0.02095683477818966, -0.042323581874370575, 0.050453536212444305, 0.01501308660954237, -0.04061561077833176, 0.0869016945362091, 0.00012162639177404344, -0.058310214430093765, -0.048677243292331696, 0.014987467788159847, 0.07398941367864609, -0.00968420971184969, 0.06995859742164612, -0.014048081822693348, 0.014193260110914707, -0.032314859330654144, -0.05882260575890541, -0.0252609271556139, 0.04170871153473854, -0.051683276891708374, 0.029787058010697365, -0.014654412865638733, -0.06848973780870438, 0.023023482412099838, -0.02273312769830227, 0.0037596765905618668, -0.006682446226477623, -0.0005636312416754663, 0.00995748583227396, -0.021469226107001305, -0.0107516935095191, 0.006208483595401049, -0.0027071379590779543, -0.008847302757203579, -0.015448620542883873, -0.016806459054350853, 0.05598737299442291, 0.04368996247649193, -0.0008982872823253274, -0.023433396592736244, 0.0002097604883601889, 0.025500044226646423, 0.01786540262401104, -0.05977907404303551, 0.020410282537341118, -0.025278007611632347, 0.049155477434396744, 0.00021336325153242797, -0.04536377638578415, 0.02973581850528717, 0.04823317006230354, -0.03655063360929489, 0.009820847772061825, -0.03163167089223862, 0.02824988216161728, -0.017899561673402786, -0.015311982482671738, 0.00436173751950264, 0.027942446991801262, 0.016328226774930954, -0.014107860624790192, 0.010973730124533176, 0.006135894916951656, 0.053459569811820984, -0.04532961547374725, -0.04785741865634918, 0.012656083330512047, -0.01926594041287899, -0.02731049619615078, 0.0018819732358679175, -0.04669599607586861, -0.01397976279258728, 0.0026174692902714014, -0.025038890540599823, 0.0016876913141459227, 0.019487977027893066, -0.02283560484647751, -0.014620252884924412, 0.004867724608629942, 0.038941796869039536, 0.002073052804917097, 0.011938734911382198, -0.005367306526750326, 0.0006484962068498135, 0.019146382808685303, -0.004871994256973267, -0.038873475044965744, 0.04966786876320839, 0.02881351299583912, 0.03151211142539978, -0.009154737927019596, -0.03702886402606964, -0.019146382808685303 ]
18,582
traceback2
print_list
Print the list of tuples as returned by extract_tb() or extract_stack() as a formatted stack trace to the given file.
def print_list(extracted_list, file=None): """Print the list of tuples as returned by extract_tb() or extract_stack() as a formatted stack trace to the given file.""" if file is None: file = sys.stderr for item in StackSummary.from_list(extracted_list).format(): file.write(item)
(extracted_list, file=None)
[ 0.0024219404440373182, 0.025380698963999748, -0.010341266170144081, 0.02829497680068016, 0.07601846009492874, -0.02995523065328598, 0.02845393680036068, -0.04811205714941025, -0.01264619454741478, 0.010102825239300728, -0.03256924822926521, 0.015375017188489437, -0.007016341667622328, -0.03988143429160118, -0.008751660585403442, 0.031209252774715424, 0.02091214247047901, 0.007506470195949078, 0.011038926430046558, 0.07382833957672119, 0.004466349724680185, 0.03377028554677963, -0.021583309397101402, 0.007555041462182999, 0.0475468635559082, -0.012407753616571426, 0.01659371517598629, -0.06694004684686661, 0.01158645749092102, 0.03271054849028587, -0.026157841086387634, -0.03949286416172981, -0.05270425230264664, -0.00879140105098486, -0.040764547884464264, 0.051609188318252563, -0.03613702952861786, -0.0024219404440373182, -0.08894725143909454, 0.031350553035736084, 0.010023345239460468, -0.0013014894211664796, 0.023208238184452057, -0.026776019483804703, 0.0012242170050740242, 0.01772410050034523, 0.032551586627960205, -0.03544820100069046, -0.008499973453581333, -0.039775460958480835, 0.019852405413985252, -0.02333187498152256, -0.04705232009291649, -0.038503777235746384, -0.009087244048714638, 0.01441242266446352, 0.042424801737070084, 0.008323350921273232, 0.06814108788967133, -0.022837331518530846, 0.0139620341360569, 0.07446417957544327, 0.0192695502191782, -0.03009652905166149, 0.00967009924352169, -0.008937114849686623, -0.02831263840198517, -0.011242042295634747, -0.07248600572347641, -0.013352685607969761, 0.02281966805458069, -0.029919905588030815, -0.053481392562389374, 0.02753549814224243, -0.0011734379222616553, 0.009422827512025833, 0.0023866158444434404, -0.025257064029574394, -0.016072677448391914, -0.01994071714580059, -0.04959568753838539, -0.01767994463443756, 0.0572257936000824, 0.06202993541955948, 0.02181291952729225, -0.03649027645587921, 0.043095968663692474, 0.03984610736370087, -0.012469571083784103, 0.05832085758447647, -0.006292188074439764, 0.04694634675979614, -0.05531826987862587, 0.008367505855858326, -0.06312499940395355, -0.008694258518517017, 0.026316801086068153, -0.041294414550065994, -0.06764654070138931, 0.009422827512025833, 0.01585189811885357, -0.021212400868535042, 0.012752167880535126, -0.023967716842889786, -0.03140353783965111, 0.028807181864976883, 0.009255035780370235, 0.03145652636885643, -0.01238126028329134, 0.034141190350055695, -0.06340759247541428, -0.04570998623967171, 0.06856498122215271, -0.024197326973080635, 0.06273642927408218, -0.004015961661934853, 0.030290814116597176, -0.0069545237347483635, 0.006424655206501484, -0.04132974147796631, 0.04793543368577957, -0.06340759247541428, -0.006093487609177828, -0.015445666387677193, -0.03343470022082329, -0.017918385565280914, 0.0034662229008972645, -0.035783782601356506, 0.050690751522779465, -0.03387625887989998, 0.014836316928267479, 0.00658361567184329, -0.023967716842889786, 0.03680819645524025, 0.024568235501646996, -0.021795256063342094, -0.012769830413162708, -0.04952504113316536, 0.006649849470704794, -0.018986953422427177, -0.005594527814537287, -0.05454112961888313, -0.01268151868134737, 0.01550748385488987, -0.04122376814484596, -0.015436834655702114, -0.014483071863651276, 0.03959883749485016, 0.028489261865615845, 0.0028281728737056255, -0.0192695502191782, -0.029089778661727905, -0.09615346789360046, -0.04811205714941025, 0.022978629916906357, 0.002572069875895977, -0.0070075104013085365, -0.01912825182080269, 0.016187481582164764, -0.014430084265768528, -0.011657106690108776, -0.015224887058138847, -0.003991676028817892, 0.040234677493572235, -0.03818585351109505, -0.0033337557688355446, -0.032551586627960205, 0.04941906780004501, -0.01613449491560459, 0.01633761078119278, 0.029548998922109604, -0.026599397882819176, -0.04207155480980873, 0.05789696052670479, -0.03580144792795181, 0.02204252779483795, -0.008318934589624405, 0.03343470022082329, -0.00955529510974884, -0.013785411603748798, -0.05878007411956787, -0.06019305810332298, -0.02137136086821556, 0.020046690478920937, -0.01918123848736286, 0.01638176664710045, 0.007215042132884264, 0.0044266097247600555, 0.011418665759265423, 0.031491849571466446, -0.0024241481442004442, 0.0008499973337166011, 0.03889234736561775, -0.030873669311404228, -0.0019384354818612337, -0.032092366367578506, -0.0623125322163105, -0.036914169788360596, 0.035112615674734116, -0.07651300728321075, -0.022219151258468628, -0.005797644145786762, 0.021512659266591072, -0.024709533900022507, 0.06005176156759262, 0.08965374529361725, 0.007241535931825638, 0.006389330606907606, -0.03995208442211151, 0.014959952794015408, 0.022766681388020515, -0.007325431797653437, -0.02206019125878811, -0.027606148272752762, 0.023225901648402214, -0.00455245329067111, -0.04825335368514061, -0.0306970477104187, -0.05305749550461769, -0.019675781950354576, 0.0318450964987278, -0.042036231607198715, -0.04065857455134392, 0.011383340694010258, -0.0018435007659718394, 0.03214535489678383, 0.057155147194862366, 0.022183826193213463, 0.019022278487682343, -0.021318374201655388, 0.008707505650818348, -0.07404028624296188, -0.0301141906529665, 0.02264304645359516, -0.008239454589784145, -0.034582749009132385, -0.018704356625676155, -0.035271577537059784, -0.010102825239300728, 0.01038542203605175, -0.053940609097480774, 0.036243002861738205, 0.050231531262397766, -0.018333449959754944, 0.029107442125678062, -0.036984819918870926, -0.004300765693187714, 0.0028944064397364855, -0.03875104710459709, 0.02363213337957859, 0.061005521565675735, 0.020223313942551613, 0.0006253551691770554, -0.02972562052309513, 0.0059875138103961945, -0.04055260121822357, 0.004534791223704815, -0.0353069007396698, 0.021106427535414696, -0.018563058227300644, 0.019516821950674057, -0.05545956641435623, 0.07128497213125229, -0.020982790738344193, 0.01859838329255581, -0.0064908890053629875, -0.04666374996304512, -0.0318450964987278, 0.01219580601900816, 0.028807181864976883, 0.05673125013709068, -0.0007804521010257304, 0.02439161203801632, 0.06202993541955948, -0.06061695143580437, -0.013485152274370193, 0.03228665143251419, 0.025539660826325417, -0.04221285507082939, -0.0013898008037358522, 0.057826314121484756, 0.01201035175472498, -0.04065857455134392, 0.016496572643518448, 0.019516821950674057, 0.036384303122758865, 0.0237734317779541, 0.02981393225491047, 0.01317606307566166, 0.003161548636853695, 0.04765283688902855, 0.021954217925667763, 0.04860660061240196, -0.09212646633386612, -0.006336343940347433, 0.01820981316268444, 0.029107442125678062, 0.006155305542051792, -0.012513726949691772, 0.024338625371456146, 0.0170794278383255, -0.021247725933790207, 0.06966004520654678, -0.013750086538493633, 0.008910621516406536, 0.010023345239460468, -0.008120234124362469, -0.0023512912448495626, -0.08477895706892014, -0.05750839039683342, 0.013379178941249847, 0.06598629057407379, -0.043025318533182144, 0.00658361567184329, 0.006605693604797125, 0.014642031863331795, -0.05263360217213631, 0.0106150321662426, -0.019075265154242516, 0.03122691437602043, -0.0015851898351684213, 0.026758357882499695, 0.07389898598194122, 0.04871257394552231, 0.08244753628969193, -0.06178266555070877, -0.04807673394680023, -0.02372044511139393, 0.05411723256111145, 0.036384303122758865, -0.01633761078119278, -0.03140353783965111, 0.010191136971116066, 0.030979642644524574, 0.034282490611076355, 0.05326944217085838, -0.03606637939810753, 0.03656092286109924, 0.006561537738889456, -0.07156756520271301, -0.04853595048189163, 0.008137896656990051, -0.017344361171126366, 0.004514920990914106, -0.02032928727567196, 0.03288716822862625, 0.0007600301178172231, 0.0832953229546547, -0.013149568811058998, 0.023826418444514275, 0.01726488023996353, 0.008716336451470852, 0.006866212468594313, 0.06425538659095764, 0.022007204592227936, 0.03122691437602043, -0.04606323316693306, 0.044756222516298294, 0.01587839238345623, 0.059945788234472275, 0.07079042494297028, -0.05669592693448067, 0.0009465879411436617, -0.02025863714516163, 0.01132152322679758, -0.03942221403121948, 0.017626957967877388, -0.0114804832264781, 0.037585336714982986, 0.014156319200992584, -0.06976601481437683, -0.09043088555335999, 0.005228035617619753, -0.011118406429886818, -0.018121501430869102, 0.022978629916906357, 0.0025301219429820776, 0.0023203822784125805, -0.020576559007167816, 0.0037289494648575783, -0.010526720434427261, 0.026157841086387634, 0.037302739918231964, -0.03304613009095192, 0.003358041401952505, -0.007422574330121279, -0.045498039573431015, 0.06588031351566315, -0.0618533119559288, 0.027429524809122086, -0.0364549495279789, -0.00193401996511966, -0.019251888617873192, -0.038574423640966415, 0.04189493507146835, -0.015251380391418934, 0.002839211840182543, 0.01035009790211916, -0.05397593602538109, 0.005863877944648266, -0.023508498445153236, 0.005338424816727638, -0.0849202573299408, -0.04157701134681702, -0.009484645910561085, -0.007126730866730213, -0.05386996269226074, -0.005254528950899839, 0.006627771537750959, 0.004472972825169563, 0.059945788234472275, 0.0139620341360569, -0.0028612897731363773, -0.025910567492246628, -0.0005304203950800002, 0.08711037784814835, -0.07255665957927704, 0.07167354226112366, -0.01019996777176857, -0.05772033706307411, 0.051149968057870865, -0.037903256714344025, 0.00018462604202795774, 0.07517067342996597, 0.004861543420702219, -0.07729014754295349, -0.07050783187150955, 0.006239201407879591, 0.10272383689880371, 0.03357600048184395, -0.00866776518523693, -0.01979941874742508, -0.024179665371775627, 0.037514686584472656, 0.06503252685070038, -0.042106881737709045, -0.042036231607198715, -0.025769269093871117, 0.04101182147860527, 0.020064352080225945, -0.00853971391916275, 0.042778048664331436, 0.05687255039811134, -0.020205650478601456, 0.023349536582827568, 0.06694004684686661, -0.047087643295526505, -0.04899517074227333, 0.005378164816647768, 0.019322536885738373, -0.035942744463682175, -0.04510946944355965, 0.0371614433825016, -0.012398921884596348, -0.0039188191294670105, -0.031809769570827484, -0.01693812943994999, 0.015436834655702114, 0.027606148272752762, -0.00039491758798249066, 0.06284239888191223, -0.013856060802936554, 0.020064352080225945, -0.019622795283794403, 0.032410286366939545, -0.04694634675979614, -0.03295781835913658, 0.0606876015663147, -0.013123075477778912, -0.017626957967877388, 0.031209252774715424, -0.004084402695298195, -0.04585128650069237, 0.00521478895097971, 0.02905445545911789, 0.06386681646108627, 0.03377028554677963, -0.04027000442147255, -0.003461807267740369, -0.013670606538653374, -0.03221600130200386, -0.0634782463312149, 0.030008217319846153, -0.023314213380217552, -0.018315786495804787, 0.013282036408782005, -0.010191136971116066, -0.023667458444833755, 0.0016448000678792596, -0.025186413899064064, -0.01767994463443756, -0.027305888012051582, -0.0036273912992328405, -0.08287142962217331, -0.01633761078119278, -0.04094117134809494, -0.048288680613040924, 0.014015020802617073, 0.012655025348067284, -0.006742576137185097, 0.030502760782837868, -0.01065035630017519, 0.06245382875204086, -0.034141190350055695, 0.042848698794841766, 0.002896614372730255, 0.09636541455984116, 0.03214535489678383, -0.023526160046458244, 0.01004100777208805, 0.04917179420590401, 0.017512153834104538, 0.03885702043771744, 0.014544889330863953, -0.02084149233996868, 0.007771404460072517, -0.03613702952861786, 0.014112163335084915, 0.07216808944940567, 0.06867095082998276, 0.0038282996974885464, -0.005625437013804913, -0.029637310653924942, 0.022466422989964485, -0.005497385282069445, -0.037620659917593, 0.030750034376978874, 0.04793543368577957, -0.029637310653924942, 0.07185016572475433, 0.013900216668844223, 0.03984610736370087, -0.024109015241265297, -0.116783007979393, 0.022466422989964485, 0.08096390217542648, 0.022713694721460342, -0.028400950133800507, 0.00491011468693614, -0.014068007469177246, 0.03822118043899536, -0.029478348791599274, -0.05860345438122749, -0.05856812745332718, -0.03145652636885643, -0.023826418444514275, -0.042495451867580414, -0.054753076285123825, 0.02084149233996868, -0.004046870395541191, 0.05553021654486656, -0.03514794260263443, 0.049631014466285706, 0.028665883466601372, 0.0023534991778433323, -0.009157893247902393, 0.040234677493572235, 0.024073690176010132, -0.00023554309154860675, -0.016231637448072433, -0.029619647189974785, 0.038503777235746384, -0.009466983377933502, -0.008252701722085476, 0.03995208442211151, 0.0014858394861221313, -0.03078535757958889, 0.003179210936650634, -0.019516821950674057, -0.014765667729079723, 0.029619647189974785, 0.012937622144818306, 0.018792668357491493, -0.008477895520627499, 0.001688955700956285, -0.03140353783965111, 0.05553021654486656, 0.03048509918153286, 0.07884442806243896, -0.039704810827970505, -0.004009338095784187, -0.04719362035393715, 0.02843627519905567, -0.02995523065328598, -0.007157640065997839, 0.04334324225783348, 0.021636296063661575, -0.06429070979356766, -0.04168298467993736, 0.014915797859430313, -0.015710599720478058, -0.043025318533182144, 0.011692430824041367, 0.01457138266414404, 0.04002273082733154, -0.023314213380217552, -0.015631120651960373, 0.010517888702452183, -0.00967009924352169, 0.031951069831848145, -0.015339692123234272, 0.041117794811725616, 0.02822432667016983, -0.007276860531419516, 0.03493599593639374, -0.04320194199681282, 0.07234470546245575, -0.03500664234161377, -0.006177383475005627, 0.03558949753642082, -0.0286128968000412, 0.042177531868219376, 0.009175555780529976, -0.07312184572219849, -0.03583677113056183, -0.019834743812680244, 0.0450034961104393, 0.09205581247806549, -0.012425415217876434, 0.02333187498152256, 0.005378164816647768, 0.016955791041254997, -0.050019584596157074, 0.03769131004810333, 0.0544704794883728, 0.07764339447021484, -0.021247725933790207, 0.019516821950674057, 0.040446627885103226, -0.06520915031433105, 0.027606148272752762, 0.04980763792991638, -0.0006286668358370662, -0.028241990134119987, -0.0207708440721035, -0.06072292849421501, 0.03649027645587921, -0.04221285507082939, -0.056272029876708984, 0.011948534287512302, -0.03583677113056183, -0.005625437013804913, -0.023967716842889786, -0.03558949753642082, 0.03025548905134201, 0.026016542688012123, -0.0298845823854208, -0.0812465026974678, 0.07110834866762161, 0.03726741671562195, -0.00570050161331892, 0.06404343247413635, -0.06330162286758423, 0.04737024009227753, 0.0013070089044049382, 0.024444598704576492, 0.0035346641670912504, 0.03769131004810333, -0.01366177573800087, 0.027588484808802605, -0.0036671312991529703, -0.0013864891370758414, 0.04185960814356804, -0.00993503350764513, -0.0004989595036022365, 0.0034286906011402607, -0.008636856451630592, 0.0689888745546341, 0.010491395369172096, -0.015904884785413742, 0.00021525906049646437, -0.008358675055205822, 0.06128811836242676, 0.0032255742698907852, 0.04433232918381691, -0.003229989903047681, 0.009723086841404438, 0.04041130095720291, 0.016646701842546463, -0.04966633766889572, 0.053622689098119736, 0.0027001213748008013, 0.015313198789954185, -0.06602161377668381, -0.014279955066740513, 0.037444040179252625, -0.03875104710459709, 0.03995208442211151, -0.04913647100329399, 0.0037929750978946686, -0.09262100607156754, -0.08456701040267944, -0.0036627158988267183, -0.021954217925667763, -0.05111464485526085, 0.044226355850696564, 0.008394000120460987, -0.03334638848900795, 0.06927147507667542, -0.04966633766889572, -0.050090234726667404, 0.0069501083344221115, 0.0475468635559082, 0.08167039602994919, 0.029001466929912567, 0.0006005176110193133, -0.02868354693055153, -0.02612251602113247, -0.015339692123234272, -0.037444040179252625, -0.001769539900124073, 0.010226461105048656, -0.011957365088164806, 0.011498145759105682, -0.03467106074094772, -0.027358874678611755, 0.029919905588030815, 0.0009786008158698678, 0.0067249140702188015, -0.029972894117236137, -0.007890624925494194, 0.03836247697472572, 0.009696592576801777, -0.005285438150167465, -0.009926202706992626, 0.015489821322262287, -0.021883567795157433, -0.022537073120474815, -0.0272352397441864, 0.05471774935722351, -0.008499973453581333, 0.021777594462037086, -0.008733998984098434, 0.048288680613040924, 0.01377657987177372, -0.002112850546836853, -0.05210373178124428, 0.03793858364224434, 0.057543717324733734, -0.016399430111050606, 0.036914169788360596, -0.014889303594827652, 0.007528547663241625, -0.002786224940791726, -0.01971110701560974, 0.00040899222949519753, 0.001311424421146512, -0.006919199135154486, -0.030008217319846153, -0.01497761532664299, 0.009793736040592194, -0.008632440119981766, -0.05266892537474632, 0.01670851930975914, 0.060016434639692307, -0.007042835000902414, 0.036313652992248535, -0.06471460312604904, -0.011083082295954227, -0.026740696281194687, -0.017203062772750854, -0.011348016560077667, 0.0009498996078036726, 0.017821243032813072, 0.014624370262026787, 0.01558696385473013, -0.032092366367578506, 0.013370348140597343 ]
18,583
traceback2
print_stack
Print a stack trace from its invocation point. The optional 'f' argument can be used to specify an alternate stack frame at which to start. The optional 'limit' and 'file' arguments have the same meaning as for print_exception().
def print_stack(f=None, limit=None, file=None): """Print a stack trace from its invocation point. The optional 'f' argument can be used to specify an alternate stack frame at which to start. The optional 'limit' and 'file' arguments have the same meaning as for print_exception(). """ print_list(extract_stack(f, limit=limit), file=file)
(f=None, limit=None, file=None)
[ 0.015721464529633522, -0.006912246812134981, 0.006522458512336016, 0.061673179268836975, -0.002722022123634815, 0.004798727575689554, -0.01145111583173275, -0.04355235397815704, -0.05294192209839821, -0.029346732422709465, -0.02087533287703991, 0.014352873899042606, -0.033140670508146286, -0.022607725113630295, -0.0065397825092077255, 0.02101392298936844, 0.021343078464269638, -0.03197997063398361, 0.026678847149014473, 0.0516945980489254, 0.027648987248539925, 0.05907459184527397, -0.000491025042720139, -0.026730818673968315, 0.03350447490811348, 0.02707729861140251, -0.010550271719694138, -0.044522494077682495, 0.0168475192040205, -0.005496015772223473, -0.039290666580200195, -0.0412309467792511, -0.07033514231443405, -0.015790758654475212, -0.03776616230607033, 0.005075910594314337, -0.038840245455503464, -0.014482802711427212, -0.08717399835586548, -0.03814728558063507, -0.021741528064012527, -0.013495339080691338, 0.0000906799323274754, -0.0028541169594973326, 0.02740645222365856, 0.013079565018415451, 0.08842132240533829, -0.01838068664073944, -0.000059314148529665545, -0.02160293608903885, 0.018865756690502167, 0.00990928616374731, 0.004118763841688633, -0.055921636521816254, 0.02042490988969803, 0.037592921406030655, -0.022330541163682938, -0.037800807505846024, 0.03901348263025284, -0.0772647112607956, 0.002071291906759143, 0.041057705879211426, 0.005231826100498438, 0.029675886034965515, -0.001119558815844357, -0.025570116937160492, 0.015721464529633522, -0.02388969622552395, -0.06877598911523819, -0.021966738626360893, -0.0072760493494570255, 0.0024426737800240517, -0.015426957048475742, 0.032153207808732986, -0.02558743953704834, -0.021239133551716805, -0.021568289026618004, 0.05072445794939995, -0.027337156236171722, -0.02773560769855976, -0.031442929059267044, -0.015582872554659843, -0.0016067941905930638, 0.01360794436186552, -0.0036033769138157368, -0.0024361773394048214, 0.027319833636283875, 0.0030793279875069857, 0.003241739934310317, 0.004833375569432974, -0.06052980199456215, 0.01724596880376339, -0.0327422209084034, 0.011710974387824535, -0.0503779798746109, -0.017384560778737068, 0.026938706636428833, -0.0054700300097465515, -0.07234472036361694, -0.0006485645426437259, 0.017826320603489876, -0.030784618109464645, -0.016734912991523743, -0.026592228561639786, -0.028757719323039055, 0.029727859422564507, -0.011563721112906933, 0.01780899614095688, 0.0053357696160674095, 0.04213178902864456, -0.01145111583173275, -0.056891776621341705, 0.06499937176704407, -0.021949416026473045, 0.03721179440617561, 0.03828587755560875, 0.007319359108805656, 0.012386607937514782, 0.00997858215123415, -0.03409348800778389, 0.04143883287906647, -0.06312838941812515, 0.014188296161592007, -0.034699827432632446, -0.040087565779685974, 0.017124701291322708, -0.0007313945679925382, -0.015678154304623604, 0.0032698912546038628, -0.0477793924510479, 0.034977007657289505, -0.038181934505701065, -0.017653081566095352, 0.04587375745177269, 0.036207009106874466, -0.0020593819208443165, -0.055921636521816254, 0.00464281253516674, -0.04431460425257683, -0.014110338874161243, -0.03326193988323212, -0.017384560778737068, -0.02728518471121788, 0.00453020678833127, -0.0700579583644867, -0.01793026365339756, 0.034387994557619095, -0.032222505658864975, 0.025310257449746132, 0.039429258555173874, 0.013729211874306202, -0.021152514964342117, 0.0037333061918616295, -0.014084352180361748, 0.003702989313751459, 0.0047337631694972515, 0.014214281924068928, -0.03821658343076706, 0.012464565224945545, 0.008761576376855373, -0.022538429126143456, 0.008674956858158112, 0.004751087166368961, -0.051036287099123, -0.036345597356557846, -0.013755197636783123, 0.0004144208214711398, 0.06444501131772995, 0.011399144306778908, 0.048195164650678635, -0.005695241037756205, 0.0036661759950220585, 0.0055349948816001415, 0.02655757963657379, 0.011407805606722832, 0.015158436261117458, -0.030126309022307396, 0.01689082942903042, -0.007691823411732912, -0.008817878551781178, -0.042097143828868866, -0.03967179358005524, 0.011373157612979412, -0.030646026134490967, 0.0031118104234337807, -0.013044917024672031, 0.029225464910268784, 0.006769324652850628, 0.023855047300457954, 0.01805153116583824, -0.013729211874306202, 0.0261764544993639, 0.07477007061243057, -0.03279419243335724, -0.01819012314081192, -0.04861094057559967, -0.031044477596879005, -0.031373631209135056, 0.11759481579065323, -0.0588667057454586, 0.006128339096903801, 0.0680483877658844, 0.035895176231861115, -0.04549263045191765, 0.02362983673810959, 0.12286128848791122, 0.032413069158792496, -0.005903128068894148, -0.06652387976646423, 0.0011325516970828176, -0.023266034200787544, -0.05377347022294998, -0.026418989524245262, -0.030923210084438324, 0.017471181228756905, 0.023855047300457954, -0.014604070223867893, -0.02179349958896637, -0.032413069158792496, 0.02917349338531494, 0.08578808605670929, -0.04195855185389519, -0.07269119471311569, -0.04147348180413246, 0.01779167354106903, 0.024062935262918472, 0.03769686445593834, 0.01691681519150734, 0.056372057646512985, -0.05581769347190857, 0.005864149425178766, -0.05311515927314758, -0.031564194709062576, 0.007943020202219486, 0.04130024090409279, -0.012741748243570328, 0.04227038100361824, -0.05065516382455826, 0.021377725526690483, -0.06617739796638489, -0.030853914096951485, 0.010264426469802856, 0.03489038720726967, 0.0002809724537655711, 0.02773560769855976, -0.0022434485144913197, -0.020234346389770508, 0.012360622175037861, -0.004911333322525024, 0.03364306688308716, 0.0106368912383914, 0.018987024202942848, -0.03352179750800133, -0.019194910302758217, -0.03520222008228302, -0.053496286273002625, 0.008202879689633846, -0.030212929472327232, 0.01458674669265747, 0.06680106371641159, -0.027891522273421288, -0.03714250028133392, 0.0013436870649456978, -0.04154277592897415, 0.018796460703015327, 0.0010535112814977765, -0.10886355489492416, -0.05075910687446594, 0.033002082258462906, 0.006258268840610981, 0.08273907750844955, -0.0359991192817688, 0.028757719323039055, 0.06745937466621399, -0.05664924159646034, -0.017375899478793144, -0.03897883743047714, 0.019541390240192413, -0.002349557587876916, -0.00466013653203845, 0.04285939410328865, -0.02388969622552395, -0.018553925678133965, 0.011191257275640965, 0.0062755923718214035, -0.009311610832810402, 0.021689556539058685, -0.0019478590693324804, 0.018883081153035164, -0.020528852939605713, 0.04542333632707596, 0.014257592149078846, 0.02382040023803711, -0.06974612921476364, 0.001192102674394846, -0.008605660870671272, -0.007739464286714792, -0.04874952882528305, 0.017020758241415024, -0.005742881912738085, 0.035825882107019424, -0.07179035246372223, 0.03187602385878563, 0.009268300607800484, 0.06039121001958847, 0.025639411062002182, 0.03393757343292236, -0.042894043028354645, -0.06960754096508026, -0.0258472990244627, -0.04091911390423775, 0.06565768271684647, -0.03463052958250046, -0.02570870704948902, -0.01138181984424591, 0.015288366004824638, -0.05488220229744911, 0.001294963527470827, -0.028238000348210335, 0.008787562139332294, -0.00603738846257329, 0.03721179440617561, 0.03260362893342972, 0.01518442202359438, 0.06590022146701813, 0.014196958392858505, -0.041196297854185104, -0.04791798070073128, 0.027718283236026764, -0.009043090045452118, 0.0017356409225612879, 0.016267167404294014, 0.027319833636283875, 0.015037168748676777, -0.04022615775465965, 0.09604384750127792, -0.02532758191227913, 0.06389064341783524, -0.022936878725886345, -0.04594305530190468, 0.0026440643705427647, -0.012611818499863148, -0.00526647362858057, -0.009173019789159298, 0.07109739631414413, 0.0719982385635376, 0.031113773584365845, 0.002382040023803711, 0.03253433480858803, 0.031772080808877945, 0.014032380655407906, 0.01611991412937641, 0.029675886034965515, -0.023924343287944794, -0.05360022932291031, 0.06825627386569977, 0.014846605248749256, 0.044591788202524185, -0.020858008414506912, 0.05855487287044525, 0.061673179268836975, -0.05134811997413635, -0.034509263932704926, -0.031581517308950424, 0.013720550574362278, 0.031061800196766853, 0.033209968358278275, -0.015782097354531288, -0.013521324843168259, 0.05096699297428131, 0.020338289439678192, -0.045769814401865005, -0.003902214579284191, 0.02394166775047779, -0.07359204441308975, 0.037662215530872345, 0.028445888310670853, 0.03475179895758629, -0.023456597700715065, 0.02434011735022068, 0.04445319622755051, 0.027908846735954285, -0.0012050956720486283, -0.032222505658864975, -0.03378165885806084, 0.013963085599243641, -0.038112640380859375, 0.010914074257016182, 0.0032049263827502728, 0.021897444501519203, -0.04091911390423775, -0.046947840601205826, -0.009051752276718616, 0.023196738213300705, 0.015756111592054367, -0.040607284754514694, 0.013079565018415451, 0.019420122727751732, -0.03102715313434601, 0.01812082715332508, -0.007973337545990944, 0.029329407960176468, 0.0026873741298913956, -0.024184202775359154, 0.04029545560479164, 0.012196044437587261, -0.008826540783047676, -0.01955871284008026, 0.005599959287792444, 0.07989794760942459, 0.06468754261732101, -0.020320966839790344, -0.054535720497369766, -0.0035470740403980017, 0.030784618109464645, 0.02198406308889389, -0.048403050750494, 0.035358134657144547, -0.0010188634041696787, -0.044383902102708817, 0.05841628089547157, -0.05117487907409668, -0.03258630633354187, 0.05661459267139435, -0.012724424712359905, -0.025881946086883545, -0.0490613617002964, -0.030247576534748077, 0.1157931312918663, 0.05612952262163162, -0.030074337497353554, -0.014846605248749256, 0.02309279516339302, 0.045804463326931, 0.03239574283361435, -0.030386168509721756, -0.0343533456325531, -0.002440508222207427, 0.03606841713190079, 0.038320526480674744, 0.013010269030928612, -0.006894922815263271, 0.0196280088275671, -0.039359960705041885, -0.016440406441688538, 0.01838068664073944, 0.005799184553325176, 0.011173932813107967, -0.05332304909825325, 0.03352179750800133, -0.0093202730640769, -0.028186028823256493, 0.009086399339139462, -0.00844541471451521, -0.015253718011081219, -0.039498552680015564, -0.0359991192817688, 0.03842446953058243, -0.029606591910123825, 0.04594305530190468, 0.018086180090904236, 0.012351959943771362, 0.03787010535597801, -0.008735590614378452, 0.03246504068374634, 0.017609771341085434, 0.03312334790825844, 0.042824748903512955, -0.03897883743047714, -0.07352274656295776, 0.07269119471311569, 0.012152735143899918, -0.09022301435470581, -0.006305909249931574, 0.06558838486671448, 0.07366133481264114, 0.024045610800385475, 0.0002525503805372864, 0.016102589666843414, 0.029156168922781944, -0.023924343287944794, -0.05463966727256775, 0.03253433480858803, 0.03842446953058243, 0.033591095358133316, -0.02740645222365856, 0.039879679679870605, -0.012516537681221962, -0.01844998262822628, 0.012429917231202126, 0.015426957048475742, -0.030732646584510803, -0.014967872761189938, -0.03970644250512123, -0.027770254760980606, -0.020009135827422142, -0.029034901410341263, 0.012663790956139565, -0.06974612921476364, -0.02688673511147499, 0.003317532129585743, -0.048645585775375366, 0.01950674131512642, -0.007440626621246338, -0.01955871284008026, 0.019194910302758217, 0.08551090210676193, 0.041127003729343414, 0.008081612177193165, 0.012533861212432384, 0.0732455626130104, 0.04005292057991028, 0.03265560418367386, 0.014829281717538834, -0.021412374451756477, -0.008722596801817417, -0.023196738213300705, 0.016994772478938103, 0.06506866961717606, 0.007531577255576849, 0.022088006138801575, -0.019385473802685738, 0.033660389482975006, 0.01857125014066696, 0.04490361735224724, -0.030057013034820557, 0.07373063266277313, 0.06534585356712341, 0.008744251914322376, 0.060495153069496155, -0.012412593699991703, 0.0477793924510479, -0.011598369106650352, -0.0772647112607956, 0.020580824464559555, 0.049442488700151443, -0.05034333094954491, -0.05308051407337189, 0.04705178737640381, -0.018415333703160286, -0.005309783387929201, 0.009805343113839626, -0.029623914510011673, 0.017774349078536034, -0.024444060400128365, -0.07206753641366959, -0.05075910687446594, -0.04958108067512512, 0.008367456495761871, -0.02382040023803711, 0.05162530392408371, -0.05259544402360916, 0.08876780420541763, 0.011503087356686592, -0.003562232479453087, 0.02518898993730545, 0.06728613376617432, 0.047467559576034546, -0.014924563467502594, -0.0313909575343132, -0.025552792474627495, 0.07109739631414413, 0.03334856033325195, -0.04622023552656174, 0.0008759410702623427, -0.031131096184253693, 0.01075815875083208, 0.031304337084293365, -0.03036884404718876, -0.031702786684036255, 0.02636701613664627, 0.04691319540143013, -0.014292240142822266, 0.041716016829013824, -0.03095785714685917, 0.013278789818286896, 0.042097143828868866, 0.021672232076525688, 0.041716016829013824, 0.03102715313434601, -0.025622088462114334, -0.041127003729343414, 0.021845471113920212, 0.001057842280715704, -0.03956785053014755, 0.0922325849533081, -0.00616731820628047, -0.06364810466766357, -0.051036287099123, 0.022417161613702774, 0.004699115175753832, -0.04095376282930374, -0.016206534579396248, -0.0032828841358423233, 0.03331391140818596, 0.005972424056380987, -0.012871677987277508, 0.0004831751575693488, 0.022036034613847733, 0.0278049036860466, -0.020043782889842987, 0.018432658165693283, 0.01767040602862835, -0.021672232076525688, 0.0122653404250741, 0.01571280136704445, 0.03187602385878563, -0.02342194877564907, -0.007613866124302149, 0.03724644333124161, -0.04095376282930374, 0.027111945673823357, 0.012481889687478542, -0.07016190141439438, -0.06208895519375801, -0.008163901045918465, 0.056094877421855927, 0.038251232355833054, 0.017826320603489876, 0.004220541566610336, -0.015938011929392815, 0.04618559032678604, -0.07816556096076965, 0.03946390748023987, 0.07421570271253586, 0.07414640486240387, -0.04372559115290642, -0.013001606799662113, -0.007371331099420786, -0.004447918385267258, 0.004881016444414854, 0.03613771125674248, -0.026003213599324226, -0.028480535373091698, -0.05803515389561653, -0.09590525925159454, 0.037073202431201935, 0.00836312584578991, -0.09264836460351944, 0.03217053413391113, -0.059247829020023346, -0.014768647961318493, -0.06964218616485596, -0.004712108056992292, -0.010671539232134819, 0.001659848727285862, -0.036484189331531525, -0.07366133481264114, 0.10172609984874725, -0.007570555899292231, 0.03610306233167648, 0.023335330188274384, -0.02459997683763504, 0.045111507177352905, 0.013070902787148952, 0.004755417816340923, 0.026661524549126625, 0.017445193603634834, 0.011303862556815147, 0.01076682098209858, 0.03454390913248062, -0.040676578879356384, 0.04705178737640381, 0.05072445794939995, -0.03606841713190079, 0.012724424712359905, -0.014119000174105167, -0.017947588115930557, 0.019021671265363693, 0.005418058019131422, -0.00022629379236605018, -0.013997732661664486, 0.005712565034627914, -0.014188296161592007, -0.01682153344154358, 0.012811044231057167, 0.007600872777402401, 0.05294192209839821, -0.030542083084583282, -0.036934614181518555, 0.05086304992437363, 0.01151174958795309, 0.00531411450356245, -0.0687413439154625, 0.012724424712359905, 0.06662782281637192, -0.029294760897755623, 0.04022615775465965, -0.04788333550095558, 0.03939460963010788, -0.00928562507033348, -0.07844274491071701, -0.016440406441688538, 0.027129270136356354, -0.05491684749722481, 0.07366133481264114, -0.018224772065877914, -0.07560161501169205, 0.05765403062105179, -0.04667066037654877, -0.006331895478069782, 0.04958108067512512, 0.03461320698261261, 0.00849305558949709, 0.0024859835393726826, -0.02728518471121788, -0.024062935262918472, -0.026540257036685944, -0.02349124476313591, -0.0271465927362442, -0.018605897203087807, 0.021377725526690483, 0.03194532170891762, 0.009831328876316547, -0.03275954723358154, -0.008475731126964092, -0.018605897203087807, 0.012646466493606567, -0.021498993039131165, 0.0313909575343132, -0.031581517308950424, 0.024045610800385475, -0.02198406308889389, -0.020372938364744186, 0.04202784597873688, 0.04965037479996681, -0.020771387964487076, 0.00991794839501381, -0.02113519050180912, 0.009614779613912106, 0.0036423555575311184, 0.023976314812898636, -0.038840245455503464, -0.015123788267374039, -0.012066114693880081, -0.05176389217376709, -0.02603786252439022, 0.009597455151379108, 0.041057705879211426, -0.05491684749722481, 0.045700520277023315, 0.00232140626758337, -0.03631095215678215, -0.0038242568261921406, 0.038251232355833054, 0.0245306808501482, -0.01675223745405674, -0.0032872152514755726, -0.02570870704948902, 0.008718266151845455, 0.0020788712427020073, 0.02976250648498535, -0.037731513381004333, -0.018536601215600967, 0.0016674279468134046, -0.01786096952855587, -0.03272489830851555, -0.01760111004114151, 0.0024426737800240517, -0.021498993039131165, -0.07740330696105957, 0.017185335978865623, 0.01812082715332508, 0.02252110466361046, 0.04784868657588959, 0.029537295922636986, -0.02165490947663784, 0.020598148927092552 ]
18,584
traceback2
print_tb
Print up to 'limit' stack trace entries from the traceback 'tb'. If 'limit' is omitted or None, all entries are printed. If 'file' is omitted or None, the output goes to sys.stderr; otherwise 'file' should be an open file or file-like object with a write() method.
def print_tb(tb, limit=None, file=None): """Print up to 'limit' stack trace entries from the traceback 'tb'. If 'limit' is omitted or None, all entries are printed. If 'file' is omitted or None, the output goes to sys.stderr; otherwise 'file' should be an open file or file-like object with a write() method. """ print_list(extract_tb(tb, limit=limit), file=file)
(tb, limit=None, file=None)
[ -0.013103297911584377, 0.04821041226387024, -0.03744295611977577, 0.026970738545060158, -0.028481656685471535, -0.008566205389797688, 0.015378357842564583, -0.06627195328474045, -0.056199170649051666, -0.05692857876420021, 0.0017095506191253662, 0.005392411258071661, -0.04015218839049339, -0.009508357383310795, -0.013476685620844364, 0.046577926725149155, 0.008739873766899109, 0.00867040641605854, 0.013250916264951229, 0.05519189313054085, 0.013059881515800953, 0.026501832529902458, -0.0024248482659459114, -0.021204940974712372, 0.017236612737178802, 0.03421271964907646, -0.010941123589873314, -0.074330173432827, 0.0199024248868227, 0.021395975723862648, -0.023914171382784843, -0.022924259305000305, -0.06276384741067886, 0.007029238156974316, -0.034542690962553024, -0.013025147840380669, -0.019780857488512993, -0.017922602593898773, -0.0784982219338417, -0.011705266311764717, 0.020562365651130676, 0.013745872303843498, 0.0399785190820694, -0.02460884489119053, 0.017722884193062782, -0.029766803607344627, 0.09642082452774048, -0.006121819373220205, -0.013989008031785488, -0.02413994073867798, -0.024417810142040253, 0.023445265367627144, 0.0067122927866876125, -0.03900597617030144, -0.017062943428754807, -0.010142248123884201, -0.04088159650564194, -0.050745975226163864, 0.029297897592186928, -0.0338827520608902, 0.0027331102173775434, 0.02457411214709282, 0.005722381640225649, 0.045188579708337784, 0.017583949491381645, -0.04452863708138466, 0.005014681722968817, 0.009508357383310795, -0.08440295606851578, 0.0017084651626646519, -0.018304673954844475, -0.018860412761569023, -0.03987431898713112, 0.032719168812036514, -0.04310455545783043, -0.013728505000472069, -0.000882996479049325, -0.018617277964949608, -0.05324680358171463, -0.014866035431623459, 0.008553179912269115, 0.02044079825282097, 0.02688390389084816, 0.019190384075045586, 0.021152839064598083, -0.03563680499792099, 0.007702203933149576, 0.006764393299818039, -0.016993476077914238, -0.005943809170275927, -0.07050946354866028, -0.01672428846359253, -0.009725443087518215, -0.006447447929531336, -0.08537550270557404, -0.03513316437602043, 0.008618306368589401, -0.005457536783069372, -0.11080058664083481, -0.031677160412073135, 0.030947750434279442, -0.05776218697428703, 0.03141665458679199, -0.03977011516690254, -0.009100235998630524, 0.018339408561587334, -0.023792602121829987, 0.007906264625489712, -0.001962455455213785, 0.05564343184232712, -0.022073283791542053, -0.020128194242715836, 0.05616443604230881, 0.013641671277582645, 0.046473726630210876, 0.03291020542383194, 0.009082869626581669, -0.001697610947303474, 0.042444612830877304, -0.030444111675024033, 0.04115946590900421, -0.049773428589105606, 0.0074156504124403, -0.057275913655757904, -0.04018692299723625, -0.004302640445530415, -0.00377078028395772, 0.001939661568030715, 0.012226271443068981, -0.03110405243933201, 0.03006204031407833, -0.03132982179522514, -0.012347839772701263, 0.04831461235880852, 0.03754715994000435, -0.027543844655156136, -0.028030117973685265, -0.0027526477351784706, 0.010871656239032745, -0.07565005868673325, -0.05738011747598648, -0.0016813294496387243, -0.027318075299263, -0.012538875453174114, -0.04963449388742447, -0.03386538475751877, 0.00765444478020072, -0.0454317145049572, 0.04306982085108757, 0.030774081125855446, -0.024695679545402527, -0.020492898300290108, -0.04859248176217079, 0.005631205625832081, 0.0004469253763090819, 0.030357277020812035, 0.006113135721534491, -0.04032585769891739, 0.016915325075387955, -0.026102395728230476, -0.027248607948422432, -0.0028004066552966833, -0.008522788062691689, -0.01615118235349655, -0.025112483650445938, 0.020909704267978668, 0.0014078014064580202, 0.09732390195131302, -0.0072680325247347355, 0.049842897802591324, 0.028637956827878952, -0.010750088840723038, 0.009768860414624214, 0.04202780872583389, -0.014145310036838055, 0.02040606364607811, 0.0009182728826999664, -0.008357803337275982, -0.016159866005182266, 0.014162677340209484, -0.02368840202689171, -0.026588667184114456, 0.008079933002591133, -0.014510014094412327, -0.007428675889968872, -0.05102384462952614, 0.023375798016786575, 0.018790945410728455, -0.027179140597581863, 0.024209408089518547, -0.008349119685590267, 0.005995909683406353, 0.10072780400514603, -0.01667218841612339, -0.008692115545272827, -0.02632816508412361, 0.01088033989071846, -0.0004699907440226525, 0.09683763235807419, -0.02361893467605114, -0.022142751142382622, 0.048939820379018784, 0.01250414177775383, -0.049356624484062195, 0.08732058852910995, 0.07009266316890717, 0.024730414152145386, -0.02865532413125038, -0.07551112025976181, 0.012278372421860695, -0.004663002677261829, -0.021482810378074646, 0.00033539754804223776, -0.012860162183642387, -0.0048149628564715385, 0.020023994147777557, -0.02785644866526127, -0.00784982182085514, -0.022976359352469444, 0.0296626016497612, 0.06807810068130493, -0.023723134770989418, -0.047967277467250824, -0.031225619837641716, 0.04084686189889908, 0.018808312714099884, 0.04164573922753334, 0.050190236419439316, 0.07544165104627609, -0.04692526534199715, 0.01995452679693699, -0.023271596059203148, -0.07155147939920425, 0.04550118371844292, 0.003725192276760936, -0.013016464188694954, 0.0017356008756905794, -0.05866526439785957, -0.01575174555182457, -0.048870354890823364, -0.016307484358549118, 0.03344857692718506, -0.007320133037865162, -0.012495458126068115, -0.00003642970841610804, -0.016993476077914238, -0.010802188888192177, 0.0017670782981440425, -0.008996034972369671, 0.015196005813777447, 0.010715354233980179, 0.0176447331905365, -0.014431863091886044, -0.017332129180431366, -0.026710236445069313, -0.020162928849458694, 0.017149778082966805, -0.0630764439702034, -0.01662008836865425, 0.04803674295544624, 0.0017475406639277935, -0.02967996895313263, 0.00422666035592556, 0.011757366359233856, 0.021048638969659805, 0.0027157431468367577, -0.0788455605506897, -0.05696331337094307, 0.0255292896181345, 0.023844704031944275, 0.0796096995472908, -0.009152336977422237, 0.005157958250492811, 0.04487597569823265, -0.07155147939920425, -0.015352306887507439, -0.015222055837512016, 0.06592461466789246, -0.021500177681446075, -0.03834603354334831, 0.0003723021363839507, -0.024226773530244827, -0.011218993924558163, -0.01549124252051115, -0.0012514996342360973, -0.04581378400325775, 0.009378106333315372, 0.02780434861779213, -0.00048410132876597345, 0.0006697096396237612, 0.03758189082145691, -0.004330861382186413, 0.013780605979263783, -0.04501491039991379, 0.006417056079953909, -0.05942940711975098, 0.00520137557759881, -0.04122893512248993, 0.007806404959410429, -0.004914822522550821, -0.00706831319257617, -0.08329147845506668, 0.02771751396358013, 0.03851970285177231, 0.03841550275683403, 0.028637956827878952, 0.03334437683224678, -0.054844554513692856, -0.02047553099691868, -0.03601887449622154, -0.02448727749288082, 0.017418963834643364, -0.01593409664928913, -0.027960650622844696, -0.006516915280371904, 0.016159866005182266, -0.05335100367665291, -0.019694022834300995, -0.06887698173522949, 0.0051623000763356686, -0.021430708467960358, 0.0023836020845919847, 0.0788455605506897, -0.04546644911170006, 0.037234555929899216, -0.013103297911584377, -0.021916981786489487, -0.012599659152328968, -0.001341590192168951, -0.006121819373220205, -0.03468162566423416, 0.020909704267978668, 0.03061777912080288, 0.011922352015972137, -0.03231973201036453, 0.08509763330221176, -0.037720825523138046, 0.05571289733052254, 0.0007598002557642758, -0.031364556401968, -0.008996034972369671, -0.019607188180088997, 0.006525598932057619, -0.017722884193062782, 0.026276065036654472, 0.0769699364900589, 0.0207534022629261, 0.003972670063376427, 0.07231561839580536, 0.06981479376554489, 0.05553922802209854, 0.0075241937302052975, 0.004239685367792845, 0.005079807713627815, -0.06731396168470383, 0.06067981943488121, 0.014701049774885178, 0.022542187944054604, -0.01652457006275654, 0.06061035394668579, 0.045153845101594925, 0.006964112166315317, -0.023410532623529434, -0.015352306887507439, 0.06116609275341034, 0.02042343094944954, 0.03619254380464554, -0.006569016259163618, -0.000512865197379142, 0.06300698220729828, -0.0020753401331603527, -0.03188556060194969, 0.05144064873456955, 0.03567153587937355, -0.05227425694465637, 0.034108519554138184, -0.030739348381757736, 0.021170206367969513, -0.015534658916294575, 0.05640757083892822, 0.046508461236953735, 0.004330861382186413, 0.015057070180773735, -0.05144064873456955, -0.045153845101594925, -0.016845857724547386, -0.06193023547530174, 0.02499091625213623, -0.0043699368834495544, 0.012886212207376957, -0.013615621253848076, -0.03990905359387398, -0.01270386017858982, 0.004541434813290834, 0.046126388013362885, -0.00786718912422657, -0.00405516242608428, 0.007871530950069427, -0.022437987849116325, -0.018269939348101616, -0.03806816413998604, 0.0799570381641388, -0.04581378400325775, 0.03414325416088104, -0.00010250519699184224, -0.003742559114471078, 0.00923048797994852, -0.021534910425543785, 0.008774607442319393, 0.026154495775699615, 0.049321893602609634, 0.011444763280451298, -0.022385885939002037, -0.017253978177905083, 0.06456999480724335, 0.03751242533326149, -0.05546976253390312, 0.019607188180088997, 0.0002851964673027396, -0.03188556060194969, 0.04445917159318924, -0.03414325416088104, -0.001623801770620048, 0.026293430477380753, 0.03657461330294609, -0.04126366600394249, -0.046508461236953735, -0.032649703323841095, 0.08273573964834213, 0.04810621216893196, -0.02410520613193512, -0.029732070863246918, 0.0282558873295784, 0.04348662495613098, 0.06668875366449356, -0.00661243312060833, -0.03280600532889366, -0.014266878366470337, 0.07335763424634933, -0.0038923481479287148, 0.0062737795524299145, 0.0023315013386309147, 0.023445265367627144, -0.07120414078235626, 0.021882247179746628, 0.024278875440359116, 0.012174171395599842, 0.006269437726587057, -0.07363550364971161, 0.026119763031601906, -0.04306982085108757, -0.02087496966123581, 0.014266878366470337, -0.04386869817972183, 0.00019578424689825624, -0.028064850717782974, -0.05015550181269646, 0.0199892595410347, 0.003050055354833603, 0.050641775131225586, 0.039561714977025986, 0.017670784145593643, 0.03789449483156204, -0.01891251467168331, 0.04633479192852974, 0.027491744607686996, 0.024209408089518547, 0.03192029520869255, 0.007558927405625582, -0.05078070983290672, 0.02959313429892063, 0.046091653406620026, -0.06491733342409134, -0.005405436269938946, 0.06481313705444336, 0.09357266128063202, 0.03928384557366371, 0.003076105611398816, 0.040568992495536804, -0.004304811358451843, 0.01728871278464794, -0.062729112803936, 0.05984621122479439, 0.0010268158512189984, 0.012365207076072693, 0.016646139323711395, -0.028064850717782974, 0.01293831318616867, 0.030826183035969734, -0.014197411015629768, 0.004354740958660841, -0.04296562075614929, -0.013858756981790066, -0.008757241070270538, -0.03058304637670517, -0.028151685371994972, -0.01946825347840786, 0.03570627048611641, -0.03334437683224678, 0.036783017218112946, 0.0379292294383049, -0.044216033071279526, 0.0227158572524786, -0.042444612830877304, -0.012999096885323524, 0.014883401803672314, 0.056650709360837936, 0.047064200043678284, 0.016064347699284554, -0.0010127052664756775, 0.0878763273358345, 0.033066507428884506, 0.010741405189037323, 0.029454199597239494, 0.0012004844611510634, -0.03702615201473236, -0.031364556401968, 0.00031640255474485457, 0.10524319112300873, 0.015326256863772869, 0.001529369386844337, 0.004000891000032425, 0.0034820560831576586, -0.01667218841612339, 0.04546644911170006, -0.022611655294895172, 0.03058304637670517, 0.09607348591089249, 0.012043919414281845, 0.04848828166723251, 0.03890177235007286, 0.06078402325510979, 0.020180294290184975, -0.1044095829129219, 0.015638859942555428, 0.02031923085451126, -0.04831461235880852, -0.0799570381641388, 0.06880751252174377, -0.013268283568322659, -0.004346057772636414, -0.011218993924558163, -0.004016086924821138, -0.017366863787174225, -0.01338985189795494, -0.015682278200984, -0.07780354470014572, -0.021152839064598083, 0.003004467347636819, -0.020666567608714104, 0.08356934785842896, 0.0024335316848009825, 0.06960638612508774, -0.004378620535135269, -0.07335763424634933, 0.036400943994522095, 0.040985796600580215, 0.041367869824171066, 0.00015765854914207011, -0.026206595823168755, -0.012834112159907818, 0.04859248176217079, 0.04991236701607704, -0.00856186356395483, 0.052586860954761505, -0.027578579261898994, -0.028933193534612656, 0.03952698037028313, -0.012035236693918705, -0.0012059116270393133, 0.009169704280793667, 0.013059881515800953, -0.031694523990154266, 0.016646139323711395, -0.008197159506380558, 0.0250603836029768, 0.011939718388020992, 0.03292757272720337, 0.009430206380784512, 0.008739873766899109, -0.0020785965025424957, 0.007259348873049021, 0.03650514781475067, 0.00011390219879103824, -0.01338985189795494, 0.035984139889478683, 0.0012742936378344893, -0.04953029379248619, -0.036887217313051224, 0.03924911096692085, 0.011027958244085312, 0.034942127764225006, -0.04366029426455498, -0.008323069661855698, 0.05685910955071449, 0.027595946565270424, -0.0471336655318737, 0.018860412761569023, -0.023271596059203148, 0.055747631937265396, -0.03938804566860199, 0.03664408251643181, 0.022524822503328323, 0.03329227864742279, -0.03483792766928673, -0.014527381397783756, 0.04623059183359146, -0.021152839064598083, 0.03377854824066162, 0.03671354800462723, -0.03702615201473236, 0.006990162655711174, 0.014015058986842632, -0.06738343089818954, -0.07349656522274017, -0.028933193534612656, 0.07648366689682007, 0.023462632670998573, 0.025772424414753914, -0.011766050010919571, -0.0473073348402977, 0.06352798640727997, -0.019294586032629013, 0.04814094677567482, 0.054914020001888275, 0.04293088614940643, -0.05918626859784126, -0.03188556060194969, 0.0035927698481827974, -0.05428881570696831, -0.05005130171775818, 0.018738845363259315, -0.04063846170902252, -0.020944437012076378, -0.06349325180053711, -0.0519963875412941, 0.02914159744977951, -0.03473372757434845, -0.09523987770080566, 0.014648948796093464, -0.0426182821393013, 0.03233709931373596, -0.0300446730107069, 0.008392537012696266, 0.010567735880613327, 0.029454199597239494, -0.03796396404504776, -0.025650857016444206, 0.052065856754779816, 0.025181951001286507, 0.010176981799304485, 0.035011596977710724, 0.018304673954844475, 0.040464792400598526, -0.03570627048611641, 0.010341967456042767, 0.03942278027534485, 0.021864881739020348, 0.03007940761744976, 0.027144407853484154, 0.04112473130226135, -0.07307975739240646, 0.028151685371994972, -0.005088490899652243, -0.04626532271504402, 0.02130914106965065, -0.015621493570506573, 0.01064588688313961, -0.008861442096531391, -0.027022838592529297, -0.0037295338697731495, 0.019694022834300995, 0.020232396200299263, -0.047515738755464554, -0.007914948277175426, 0.02499091625213623, -0.014101892709732056, 0.022906892001628876, -0.009551774710416794, -0.059568341821432114, 0.053455203771591187, -0.012738593854010105, -0.0014816105831414461, -0.06821703910827637, -0.009534408338367939, 0.0784982219338417, -0.05710224807262421, 0.07155147939920425, -0.044285502284765244, 0.0006908755167387426, -0.010055413469672203, -0.0593252032995224, -0.015169954858720303, 0.03478582575917244, -0.08648698031902313, 0.06884224712848663, 0.025355620309710503, -0.06818230450153351, 0.05779692158102989, -0.04963449388742447, -0.023028461262583733, 0.013624303974211216, 0.022611655294895172, 0.02275059185922146, -0.01206997036933899, 0.012382573448121548, -0.019589822739362717, -0.024469910189509392, -0.029732070863246918, -0.016081715002655983, -0.008032173849642277, 0.018426241353154182, 0.040568992495536804, -0.030253075063228607, -0.03563680499792099, -0.0017269174568355083, -0.0024487278424203396, -0.009655975736677647, -0.019728757441043854, 0.007689178921282291, -0.0007679410045966506, 0.030808815732598305, -0.03615780919790268, -0.011218993924558163, 0.006664533633738756, 0.059950411319732666, -0.0863480418920517, 0.04213200882077217, -0.038693372160196304, -0.013537470251321793, 0.03879757225513458, 0.013797973282635212, -0.03838076815009117, 0.016594037413597107, -0.019555088132619858, -0.046091653406620026, -0.02875952608883381, 0.006890302989631891, 0.09378106147050858, -0.06901591271162033, 0.014006375335156918, -0.01602093130350113, -0.0033626588992774487, 0.011618431657552719, -0.021448075771331787, 0.014119260013103485, 0.005288209766149521, 0.0022794008255004883, 0.013806656002998352, 0.010324600152671337, 0.015630176290869713, -0.017835767939686775, -0.048800885677337646, -0.003966157324612141, 0.02405310608446598, -0.002431360771879554, 0.031642425805330276, -0.050884909927845, -0.02688390389084816, -0.02644973248243332, -0.04157627001404762, -0.0020948778837919235, 0.0039922078140079975, 0.052621595561504364, 0.011010590940713882, 0.01946825347840786, -0.007945340126752853, 0.0022121041547507048 ]
18,586
six
u
Text literal
def u(s): return s
(s)
[ -0.0646921917796135, 0.022440915927290916, 0.0468953438103199, 0.05774233117699623, -0.010603413917124271, -0.024438191205263138, 0.009726562537252903, 0.024909092113375664, 0.055501487106084824, -0.06858931481838226, 0.021190591156482697, 0.05040275305509567, -0.04319307953119278, 0.060795072466135025, -0.006560151930898428, 0.05147445946931839, -0.008809114806354046, 0.045174118131399155, 0.01327456533908844, 0.00943427812308073, -0.049331046640872955, 0.0057726092636585236, 0.07781250029802322, 0.019761646166443825, -0.032313622534275055, 0.0016309041529893875, 0.030300108715891838, -0.04020528867840767, -0.015174411237239838, -0.060600217431783676, 0.04043262079358101, -0.024145906791090965, 0.04624582454562187, 0.0008469132008031011, 0.09021832793951035, -0.02643546462059021, -0.0009580420446582139, 0.01977788470685482, -0.04465449973940849, -0.05033780261874199, -0.06521181017160416, -0.01883608102798462, -0.00407573813572526, 0.01846260577440262, 0.020557308569550514, 0.04017281159758568, 0.010140631347894669, 0.005098732188344002, -0.026386750862002373, 0.022570820525288582, 0.04384260252118111, 0.03283323720097542, -0.015677789226174355, -0.04670048877596855, -0.012925447896122932, 0.029017306864261627, 0.007112244144082069, 0.021564064547419548, 0.011999881826341152, 0.023545101284980774, 0.0021413862705230713, -0.010408557951450348, 0.00582538265734911, -0.006243511103093624, 0.019258268177509308, 0.0381917767226696, 0.019729170948266983, -0.019047174602746964, -0.0007905876263976097, -0.0010991096496582031, -0.026597844436764717, 0.012852377258241177, -0.03812682628631592, 0.0019871252588927746, 0.07501956075429916, 0.02711746096611023, 0.002026705536991358, 0.02526632882654667, -0.02632179856300354, 0.012048596516251564, 0.07001825422048569, -0.025055235251784325, -0.035074081271886826, 0.014459939673542976, -0.036178264766931534, -0.037347402423620224, -0.019842837005853653, -0.03981557860970497, -0.05121465399861336, 0.0759938433766365, -0.02654913067817688, -0.070343017578125, -0.020589783787727356, 0.06703046709299088, -0.036632928997278214, 0.02110940031707287, -0.007489777635782957, -0.03302809223532677, -0.0010656188242137432, -0.04605096951127052, 0.047479912638664246, 0.09859713912010193, -0.06917387992143631, -0.03747730329632759, -0.03302809223532677, -0.03047872707247734, 0.003708353266119957, -0.013526254333555698, -0.009677847847342491, -0.014110822230577469, -0.06271115690469742, -0.03468436747789383, -0.0434853658080101, -0.004485747776925564, -0.007773942779749632, -0.04527154564857483, 0.008041869848966599, 0.001799373421818018, 0.031858958303928375, 0.018365178257226944, 0.02265201136469841, 0.01035984419286251, -0.06254877895116806, -0.0321350023150444, -0.0018775188364088535, 0.02529880404472351, -0.0158888828009367, 0.01735842227935791, 0.031258150935173035, -0.01610809564590454, -0.026419226080179214, 0.019826598465442657, -0.004855161998420954, 0.0035175569355487823, 0.014744103886187077, 0.005317945033311844, -0.026987556368112564, 0.031209437176585197, 0.02598080039024353, 0.07521441578865051, -0.0013213673373684287, 0.019826598465442657, 0.044686976820230484, 0.000759633956477046, 0.004960709251463413, -0.002579812193289399, 0.03634064644575119, 0.049753233790397644, -0.0002828964206855744, 0.0030750713776797056, -0.013818538747727871, 0.06897902488708496, 0.08677587658166885, 0.05108474940061569, -0.019160840660333633, -0.004753674380481243, 0.026078227907419205, -0.05865165591239929, 0.04926609247922897, -0.03487922623753548, 0.035268936306238174, -0.019193315878510475, -0.0370551161468029, -0.022895580157637596, 0.021271780133247375, -0.004522283095866442, 0.08365818113088608, 0.033710088580846786, 0.023804908618330956, 0.024064715951681137, -0.01535302959382534, -0.01920955441892147, -0.06401019543409348, 0.07235652953386307, 0.020329976454377174, -0.030267633497714996, -0.021044448018074036, 0.05881403759121895, -0.005005363840609789, 0.009856466203927994, 0.01074143685400486, 0.006994518451392651, -0.033710088580846786, -0.018219036981463432, 0.02560732699930668, -0.027978073805570602, 0.012438308447599411, 0.03838663175702095, -0.006154201924800873, -0.08034562319517136, -0.00356018147431314, -0.003617014503106475, -0.01966421864926815, 0.013445064425468445, 0.011943049728870392, -0.004408617038279772, 0.006937685888260603, 0.011999881826341152, -0.03195638582110405, -0.058261945843696594, -0.058716610074043274, 0.032654616981744766, -0.01932322047650814, 0.01679009199142456, -0.017179803922772408, -0.03913358226418495, 0.010335487313568592, 0.0003232377057429403, -0.02054107002913952, -0.06349058449268341, 0.047447435557842255, 0.007672455161809921, -0.016367904841899872, 0.023869860917329788, -0.030430013313889503, -0.0658288523554802, -0.005382897332310677, 0.020638497546315193, 0.05404006689786911, 0.05017542093992233, 0.015872646123170853, -0.0035297353751957417, 0.05501434579491615, -0.052805978804826736, 0.00512308906763792, -0.028107978403568268, -0.06261373311281204, 0.03320671245455742, -0.006016178987920284, -0.008987733162939548, 0.05244874209165573, -0.052805978804826736, 0.07248643040657043, 0.05722271278500557, 0.019453125074505806, -0.016855044290423393, -0.007883548736572266, -0.039620719850063324, 0.035950932651758194, 0.0026224369648844004, -0.038061872124671936, -0.005821323022246361, 0.012625045143067837, 0.04890885576605797, 0.035041604191064835, 0.016043145209550858, -0.008589901961386204, 0.06936873495578766, -0.04530402272939682, -0.027052508667111397, -0.01709861494600773, 0.03315799683332443, -0.026597844436764717, 0.02026502415537834, 0.006251630373299122, 0.02589961141347885, 0.05420244485139847, 0.039653196930885315, 0.03127438947558403, 0.017764372751116753, -0.018852317705750465, -0.012625045143067837, 0.009442397393286228, 0.03332037851214409, -0.04384260252118111, -0.060372885316610336, -0.048194386065006256, 0.04696029797196388, 0.02484413981437683, -0.010505986399948597, 0.041244521737098694, 0.003393742023035884, -0.019534314051270485, 0.0007073679007589817, -0.03294690325856209, 0.01852755807340145, 0.02250586822628975, 0.02984544448554516, 0.0631333440542221, -0.03187519311904907, 0.0011904484126716852, 0.028221644461154938, -0.024551857262849808, 0.00930437445640564, 0.03786701709032059, -0.01340446900576353, 0.08339837193489075, -0.08417779207229614, -0.019258268177509308, -0.010213701985776424, 0.019014697521924973, -0.06683561205863953, -0.04488183185458183, 0.014533010311424732, -0.02140168473124504, 0.004124451894313097, -0.0043030702508986, -0.024373238906264305, 0.0843077003955841, -0.030624868348240852, -0.08690577745437622, -0.015068864449858665, -0.03763968497514725, -0.00020842996309511364, -0.01989155076444149, -0.04488183185458183, -0.027620838955044746, 0.009596657939255238, -0.03809434920549393, -0.008784757927060127, -0.06787484139204025, 0.0014725836226716638, -0.0465056337416172, 0.0517992228269577, -0.044686976820230484, 0.080930195748806, -0.010635890066623688, 0.008427522145211697, 0.007911965250968933, 0.05358540266752243, 0.02242467924952507, -0.044914308935403824, 0.04942847415804863, 0.021158114075660706, -0.030868439003825188, -0.006292225327342749, -0.07989095896482468, 0.038289204239845276, 0.014979555271565914, 0.016132453456521034, -0.010538462549448013, -0.056897953152656555, 0.03172905370593071, -0.040335193276405334, -0.06982339918613434, -0.003730680560693145, 0.03487922623753548, 0.0104978671297431, -0.0050865537486970425, 0.002667091554030776, 0.016043145209550858, 0.046083446592092514, -0.005983703304082155, 0.02987792156636715, 0.03281699866056442, 0.020622260868549347, -0.054137494415044785, 0.014135179109871387, 0.09781771153211594, -0.03332037851214409, 0.00023037662322167307, -0.039166055619716644, 0.021466637030243874, -0.03812682628631592, 0.021905062720179558, 0.04137442633509636, 0.02390233613550663, 0.003056803485378623, 0.01687128283083439, -0.005768549628555775, 0.016741378232836723, -0.06589380651712418, 0.023122912272810936, -0.03861396387219429, 0.02620813250541687, -0.02757212519645691, -0.002360599348321557, 0.019647980108857155, 0.005460027605295181, 0.02689012885093689, -0.0056427051313221455, 0.03164786100387573, -0.012210976332426071, -0.04799952730536461, -0.08872443437576294, 0.05878156051039696, 0.02088206820189953, -0.004400498233735561, -0.0759938433766365, -0.07196681946516037, 0.029407018795609474, 0.02666279673576355, -0.06069764494895935, 0.04371269792318344, 0.06235392019152641, 0.011675122193992138, -0.04153680428862572, 0.035756077617406845, -0.00407573813572526, 0.04968827962875366, -0.03903615474700928, -0.025818420574069023, 0.08541188389062881, 0.017001185566186905, -0.029017306864261627, -0.014208250679075718, -0.0038098408840596676, -0.06852436065673828, -0.028156692162156105, 0.016018787398934364, 0.00930437445640564, -0.005313885398209095, -0.013924085535109043, 0.051604364067316055, -0.02083335444331169, 0.04942847415804863, -0.004445152822881937, 0.055533960461616516, -0.04215385019779205, 0.026191893965005875, 0.01340446900576353, -0.03978310152888298, -0.05800213664770126, -0.1149650439620018, 0.01281990110874176, -0.040075384080410004, -0.012292166240513325, -0.028237883001565933, -0.030835961923003197, -0.002894423669204116, -0.03286571428179741, -0.03981557860970497, -0.016043145209550858, 0.06047031283378601, 0.017829325050115585, 0.014524891041219234, 0.012227213941514492, -0.026419226080179214, 0.03487922623753548, 0.05439729988574982, -0.043322984129190445, -0.041504327207803726, 0.016773855313658714, -0.10197464376688004, 0.06839445978403091, 0.019729170948266983, 0.020329976454377174, 0.016091858968138695, 0.02341519668698311, 0.03406732529401779, 0.038743868470191956, 0.045368973165750504, -0.017407136037945747, 0.021807635203003883, 0.05887898802757263, -0.011220457963645458, -0.08378808200359344, 0.02862759493291378, -0.021840110421180725, -0.0072746239602565765, 0.010644009336829185, 0.010895698331296444, -0.007359873503446579, -0.003852465655654669, 0.04027023911476135, -0.034586939960718155, -0.009807752445340157, -0.01667642593383789, 0.013063471764326096, 0.043550316244363785, -0.035528745502233505, 0.047739721834659576, 0.015564123168587685, 0.04786962643265724, -0.022457154467701912, 0.09106270968914032, 0.009580420330166817, -0.015247482806444168, -0.011731955222785473, -0.002368718385696411, -0.006215094588696957, -0.017569515854120255, -0.01281990110874176, 0.014013394713401794, -0.0011447790311649442, -0.0058862753212451935, -0.04182909056544304, 0.022668248042464256, 0.016286714002490044, -0.044686976820230484, -0.04527154564857483, -0.036892738193273544, -0.020362451672554016, 0.046343252062797546, 0.00897961389273405, 0.012178500182926655, 0.02461680769920349, 0.008914662525057793, 0.01011627446860075, 0.007282743230462074, 0.0011011393507942557, 0.06832950562238693, -0.016213644295930862, -0.005667062010616064, -0.00941804051399231, -0.010757675394415855, -0.022246060892939568, -0.018901033326983452, -0.04825933650135994, -0.004128511529415846, -0.0006977265584282577, 0.002155594527721405, -0.019647980108857155, -0.06742017716169357, 0.009962012991309166, 0.044719453901052475, 0.04618087410926819, 0.014338154345750809, -0.003897120011970401, -0.047934576869010925, -0.019988978281617165, -0.005041899159550667, -0.005037839524447918, -0.015312434174120426, 0.02919592522084713, -0.0036007766611874104, 0.019258268177509308, -0.03302809223532677, -0.029358305037021637, -0.02987792156636715, 0.0029228399507701397, -0.005934989079833031, -0.04432974010705948, -0.033710088580846786, 0.0005723895155824721, 0.009466754272580147, -0.02216487005352974, 0.04192651808261871, -0.0037834541872143745, 0.02060602232813835, -0.04556382820010185, 0.01420013140887022, -0.007428884971886873, -0.013688634149730206, 0.001325426739640534, 0.053877685219049454, -0.04705772548913956, -0.02242467924952507, -0.027361029759049416, 0.05287092924118042, -0.015482933260500431, -0.005204278975725174, 0.000738829025067389, -0.04040014371275902, 0.008459998294711113, 0.017179803922772408, -0.04799952730536461, 0.004457331262528896, -0.03841910883784294, -0.0001411944831488654, -0.11808273941278458, -0.047967053949832916, -0.0075750271789729595, 0.06631599366664886, 0.031858958303928375, -0.05027284845709801, -0.06742017716169357, 0.04683039337396622, -0.043582793325185776, 0.033937420696020126, -0.006755008362233639, -0.021239304915070534, 0.039848051965236664, 0.040107861161231995, -0.08710063248872757, 0.03135557845234871, -0.007546610664576292, -0.023171626031398773, -0.010546580888330936, -0.017829325050115585, 0.020865829661488533, -0.0022246059961616993, 0.08742539584636688, 0.007558789104223251, -0.08067038655281067, 0.025915848091244698, 0.01523936353623867, -0.030884677544236183, 0.06634847074747086, 0.03880882263183594, -0.005326064303517342, 0.017309708520770073, 0.007948501035571098, 0.009458635002374649, 0.036405596882104874, -0.008557425811886787, 0.032995615154504776, 0.06891407072544098, -0.07566908001899719, -0.001204656669870019, 0.02828659676015377, -0.04176413640379906, -0.014500534161925316, 0.03975062444806099, -0.026224371045827866, -0.07644850760698318, 0.03383999317884445, -0.001151883159764111, 0.02503899671137333, -0.015028269030153751, 0.005736073479056358, 0.04985066130757332, -0.0014431523159146309, 0.025542374700307846, 0.07053787261247635, -0.00710006570443511, 0.014435582794249058, 0.044232312589883804, -0.02020007185637951, -0.015003912150859833, 0.03335285186767578, 0.01687128283083439, -0.031258150935173035, -0.014305678196251392, 0.02870878390967846, 0.016587117686867714, -0.011691359803080559, -0.07144720107316971, -0.033710088580846786, 0.004818626679480076, -0.030186442658305168, 0.055501487106084824, -0.05680052563548088, 0.0032983438577502966, 0.01289297267794609, -0.0038930606096982956, -0.005054077599197626, 0.044719453901052475, 0.030089015141129494, -0.10613156855106354, -0.038256727159023285, -0.01951807737350464, 0.02515266276896, -0.0028781855944544077, -0.030884677544236183, 0.011593932285904884, -0.022067442536354065, 0.016173047944903374, -0.06904397904872894, 0.044524598866701126, 0.012998519465327263, -0.00828137993812561, 0.021434159949421883, -0.004611592274159193, -0.00012248272832948714, 0.04108214005827904, -0.022408440709114075, -0.02991039678454399, -0.053260643035173416, -0.008817234076559544, -0.01492272224277258, 0.05891146510839462, 0.054819490760564804, 0.013639920391142368, -0.014208250679075718, 0.07820221036672592, 0.044459644705057144, -0.03708759322762489, 0.022375963628292084, -0.031209437176585197, -0.06332819908857346, -0.030170204117894173, -0.0034383966121822596, 0.0179592277854681, 0.018251512199640274, 0.025964561849832535, 0.009271898306906223, 0.006361236795783043, -0.03047872707247734, -0.0657963752746582, 0.009629134088754654, 0.017601992934942245, 0.012681878171861172, -0.0658288523554802, 0.01670890301465988, -0.036210741847753525, 0.058294422924518585, -0.008062167093157768, 0.024519380182027817, 0.010684603825211525, 0.019956503063440323, -0.016392260789871216, -0.0044532716274261475, -0.08807491511106491, -0.020183835178613663, 0.024535618722438812, -0.027702027931809425, 0.034619417041540146, 0.02919592522084713, -0.07274623960256577, -0.005005363840609789, -0.04715515300631523, -0.08950385451316833, -0.0158888828009367, 0.019647980108857155, 0.01580769382417202, 0.015117578208446503, -0.005817263852804899, 0.06235392019152641, 0.035268936306238174, 0.057612426578998566, -0.010449153371155262, 0.006349058356136084, -0.001878533628769219, 0.03166409954428673, -0.01614869199693203, -0.006081131286919117, -0.015523528680205345, -0.013282684609293938, -0.014703509397804737, 0.0260944664478302, 0.003361266106367111, -0.015629075467586517, -0.014394987374544144, 0.04939599707722664, -0.02544494718313217, -0.05420244485139847, 0.05865165591239929, 0.0249578058719635, 0.07138224691152573, 0.009020209312438965, -0.058976415544748306, 0.03695768862962723, -0.0021880704443901777, -0.007286802865564823, -0.01687128283083439, -0.05923622474074364, 0.01280366349965334, 0.02364252880215645, 0.006621044594794512, -0.03315799683332443, 0.029066020622849464, 0.0021657433826476336, 0.04416736215353012, -0.02953692339360714, -0.01951807737350464, -0.005646764766424894, -0.02828659676015377, -0.027361029759049416, 0.006714412942528725, 0.012543855234980583, 0.017309708520770073, -0.016538403928279877, -0.0031826479826122522, -0.024551857262849808, -0.0024072835221886635, 0.02745845913887024, 0.029748016968369484, -0.02171020582318306, 0.026679035276174545, 0.04176413640379906, 0.015198768116533756, -0.051377031952142715, 0.0024864438455551863, 0.03812682628631592, -0.03692521154880524, 0.043810125440359116, 0.01155333686619997, -0.040335193276405334, 0.006625104229897261, -0.04825933650135994, 0.01476846169680357, -0.0015639223856851459, 0.03786701709032059, -0.024438191205263138, 0.01431379746645689, 0.0034485452342778444, 0.01176443137228489 ]
18,587
traceback2
walk_stack
Walk a stack yielding the frame and line number for each frame. This will follow f.f_back from the given frame. If no frame is given, the current stack is used. Usually used with StackSummary.extract.
def walk_stack(f): """Walk a stack yielding the frame and line number for each frame. This will follow f.f_back from the given frame. If no frame is given, the current stack is used. Usually used with StackSummary.extract. """ if f is None: f = sys._getframe().f_back.f_back while f is not None: yield f, f.f_lineno f = f.f_back
(f)
[ 0.022564446553587914, -0.032569099217653275, -0.005474667530506849, 0.07838176190853119, -0.033864665776491165, 0.020351188257336617, 0.011264229193329811, 0.03600594773888588, -0.0058120544999837875, -0.03490831330418587, -0.023050284013152122, 0.001383286900818348, -0.013396515510976315, 0.01918157935142517, 0.01416125986725092, 0.03933483362197876, -0.0030837177764624357, -0.013171590864658356, 0.018569784238934517, 0.009077961556613445, 0.006495825480669737, 0.060927603393793106, 0.004745911341160536, -0.04052243381738663, 0.015483817085623741, 0.05394594371318817, 0.0025191567838191986, -0.031075596809387207, 0.05160672590136528, -0.007310052867978811, -0.0515347495675087, -0.01442217268049717, -0.07715817540884018, -0.061647363007068634, -0.04566871374845505, -0.018821699544787407, -0.07974930107593536, -0.033810682594776154, -0.08601120859384537, -0.03836315870285034, -0.00882604531943798, -0.022024627774953842, -0.053801991045475006, 0.05567336454987526, 0.021844686940312386, 0.015789713710546494, 0.0273328498005867, -0.07363135367631912, 0.038147229701280594, -0.03890297934412956, 0.03757142275571823, 0.007107620593160391, 0.005803057458251715, -0.05974000319838524, 0.07283961772918701, 0.03465639799833298, 0.013540467247366905, -0.03607792407274246, 0.03222721070051193, -0.02652312070131302, 0.009536807425320148, 0.04955541342496872, 0.01825488917529583, 0.032821014523506165, 0.021322863176465034, -0.03579001873731613, 0.016158591955900192, -0.06758537888526917, -0.06157538667321205, -0.03703160211443901, -0.019577447324991226, 0.029510121792554855, 0.012649765238165855, 0.03897495195269585, -0.017535129562020302, -0.025623422116041183, -0.05880431458353996, 0.05268636345863342, 0.024903664365410805, -0.04030650854110718, -0.02787267044186592, -0.00020018298528157175, -0.035628072917461395, -0.013252563774585724, -0.02477770671248436, 0.019487475976347923, 0.07528679817914963, 0.009932675398886204, -0.016347527503967285, 0.038219206035137177, -0.027674736455082893, 0.022528458386659622, -0.009581792168319225, -0.013828370720148087, -0.02251046523451805, -0.03039182722568512, -0.003945179283618927, 0.051462773233652115, -0.03706759214401245, 0.025965308770537376, 0.04171003773808479, 0.037679385393857956, -0.05995592847466469, -0.01575372740626335, -0.039946626871824265, 0.018146924674510956, -0.0404144711792469, 0.01467408798635006, 0.03983866423368454, 0.0021412831265479326, -0.011615111492574215, -0.10047836601734161, 0.003245663596317172, -0.020279211923480034, 0.016518469899892807, -0.007584461010992527, 0.013108612038195133, 0.029024284332990646, -0.005830048583447933, -0.02601929008960724, 0.05218253284692764, -0.009707750752568245, 0.008097289130091667, -0.006437344942241907, -0.0003924936172552407, 0.02173672430217266, 0.052254509180784225, -0.015366856008768082, -0.006936678197234869, -0.05081498995423317, 0.020873012021183968, -0.014116275124251842, 0.037463460117578506, 0.042501773685216904, 0.013432503677904606, -0.00972574483603239, -0.02830452471971512, 0.011795051395893097, -0.06391460448503494, -0.03965872526168823, 0.007998323068022728, -0.018515801057219505, -0.004595211707055569, 0.008664099499583244, -0.0278546754270792, 0.005335214082151651, 0.011039304547011852, 0.020783042535185814, 0.011939003132283688, 0.026685066521167755, 0.02022523060441017, -0.03064374253153801, 0.031813349574804306, 0.03467439487576485, -0.022042620927095413, 0.022168578580021858, -0.008092790842056274, 0.008754069916903973, 0.0019411002285778522, 0.024561777710914612, -0.015537798404693604, 0.024885669350624084, 0.011147268116474152, -0.06981662660837173, -0.021304868161678314, 0.034368496388196945, -0.021772712469100952, 0.011840037070214748, -0.03301894664764404, -0.0017757805762812495, -0.01988334394991398, -0.01892966404557228, 0.02965407446026802, 0.019091609865427017, -0.008011817932128906, 0.00933887343853712, -0.03546612709760666, 0.029240211471915245, -0.004334299359470606, 0.038147229701280594, -0.023158248513936996, -0.004835881292819977, -0.006644275970757008, -0.06056772544980049, -0.01585269346833229, 0.028988296166062355, 0.022132590413093567, 0.005915519781410694, 0.050167206674814224, 0.02168274112045765, 0.039946626871824265, -0.019001638516783714, 0.042501773685216904, -0.04541679844260216, -0.011300217360258102, -0.03422454372048378, -0.03634783253073692, 0.027962639927864075, 0.10141405463218689, -0.029708055779337883, 0.010706416331231594, 0.02117891050875187, 0.012442834675312042, 0.01470107864588499, -0.04725218191742897, 0.09817513823509216, -0.008974496275186539, 0.004453509114682674, -0.0649222657084465, 0.02477770671248436, -0.006981662940233946, -0.07809385657310486, 0.017643094062805176, 0.010139605961740017, 0.02427387423813343, 0.019199572503566742, -0.020081277936697006, -0.023931989446282387, 0.0006843334413133562, 0.012181921862065792, 0.07010453194379807, -0.02731485664844513, -0.10580458492040634, -0.04106225445866585, 0.04235782101750374, -0.017040295526385307, 0.005870535038411617, -0.03174137324094772, 0.022078609094023705, -0.06035179644823074, -0.03269505500793457, -0.006743242964148521, -0.011732072569429874, -0.00982471089810133, 0.05923617258667946, -0.03165140375494957, 0.07305554300546646, -0.050167206674814224, -0.02760276012122631, -0.07287560403347015, -0.015096946619451046, 0.020063284784555435, 0.020369181409478188, -0.002759826136752963, 0.058120544999837875, -0.02601929008960724, -0.023913994431495667, 0.0033086424227803946, 0.007350539322942495, 0.044805001467466354, -0.04847577214241028, 0.035070259124040604, -0.04196195304393768, -0.01211894303560257, -0.020873012021183968, -0.07089626789093018, 0.013198581524193287, -0.01492600329220295, 0.04001860320568085, 0.054485760629177094, 0.004176851827651262, -0.05984796583652496, 0.014107277616858482, -0.01045450009405613, 0.006306889001280069, 0.017490144819021225, -0.030517784878611565, -0.042285844683647156, 0.017823033034801483, -0.01608661562204361, 0.05995592847466469, -0.050922952592372894, -0.0019174831686541438, 0.03645579516887665, -0.02805260941386223, -0.047612063586711884, -0.012064961716532707, 0.026505127549171448, -0.017283214256167412, -0.01862376555800438, 0.04620853066444397, 0.0008131028153002262, -0.05106690526008606, 0.009887689724564552, -0.03854309767484665, -0.002252620877698064, -0.023050284013152122, -0.0054161869920790195, 0.026667073369026184, -0.026235217228531837, 0.09306484460830688, -0.008520147763192654, 0.017975982278585434, -0.07780595868825912, 0.050922952592372894, -0.021646754816174507, -0.03287499397993088, 0.0001910454302560538, 0.019037626683712006, 0.003000495722517371, 0.0546656996011734, -0.03498028963804245, -0.028736380860209465, 0.01575372740626335, 0.026181235909461975, 0.05113888159394264, 0.026721054688096046, 0.005114787723869085, -0.08068498969078064, -0.014215241186320782, -0.007404521573334932, 0.07528679817914963, 0.025137584656476974, -0.07355937361717224, -0.0038552095647901297, -0.06081964075565338, -0.06006389483809471, 0.0278546754270792, -0.01821890100836754, 0.007845373824238777, 0.008583126589655876, 0.011939003132283688, 0.05660904943943024, -0.002185143530368805, 0.07989325374364853, 0.07229980081319809, -0.003879951313138008, -0.047612063586711884, 0.005947009194642305, -0.015150927938520908, 0.04642445966601372, -0.018533796072006226, 0.014737066812813282, 0.0511028952896595, -0.03397262841463089, 0.08442773669958115, -0.053514085710048676, 0.06499424576759338, -0.02069307304918766, -0.07888559252023697, 0.026990965008735657, 0.008853036910295486, -0.009635774418711662, 0.0016666920855641365, 0.06186329200863838, 0.021160917356610298, 0.03161541745066643, -0.00008743948274059221, 0.02301429584622383, 0.043329495936632156, 0.022564446553587914, 0.027710724622011185, 0.018515801057219505, -0.015150927938520908, -0.008763066492974758, 0.07276764512062073, -0.007647440303117037, 0.013585451990365982, -0.004817887209355831, 0.07492692023515701, 0.016464488580822945, 0.0032119248062372208, 0.004682932514697313, -0.05059906095266342, -0.012001982890069485, -0.02634318172931671, -0.027962639927864075, 0.053514085710048676, -0.028934314846992493, 0.02783668227493763, 0.01662643440067768, 0.01892966404557228, -0.023590102791786194, -0.00035369410761632025, -0.018074950203299522, -0.04088231548666954, 0.07694224268198013, 0.04847577214241028, -0.061899278312921524, 0.03217323124408722, 0.013171590864658356, 0.029816018417477608, -0.025191567838191986, -0.0025394000113010406, 0.02224055491387844, 0.003016240429133177, -0.01020258478820324, -0.03300095349550247, -0.01995532028377056, 0.007139110006392002, -0.07104022055864334, -0.07147207856178284, -0.05574534088373184, 0.0025686402805149555, 0.0016205825377255678, -0.06380663812160492, 0.06333880126476288, 0.024327855557203293, -0.024201897904276848, -0.006234913133084774, 0.0031916815787553787, -0.005452175159007311, 0.008250238373875618, -0.036419808864593506, 0.03584400191903114, 0.036887653172016144, -0.03525020182132721, -0.009446837939321995, -0.018947657197713852, 0.036383822560310364, 0.025641417130827904, -0.026145247742533684, -0.02729686349630356, -0.03643780201673508, 0.0030814683996140957, 0.00983370840549469, -0.029492128640413284, 0.03643780201673508, 0.006743242964148521, -0.021124929189682007, 0.009248903952538967, -0.0469282902777195, -0.030535778030753136, 0.02787267044186592, -0.03465639799833298, -0.011291220784187317, -0.02069307304918766, -0.032047271728515625, 0.0319393090903759, 0.04905157908797264, -0.031561434268951416, -0.04030650854110718, 0.031543441116809845, 0.026469139382243156, -0.0011684838682413101, -0.05023918300867081, -0.04052243381738663, -0.006198924966156483, 0.0026833517476916313, 0.061647363007068634, 0.003922686912119389, 0.022366512566804886, 0.05750874802470207, 0.007323548663407564, 0.018479814752936363, -0.0032074262853711843, -0.00848865881562233, 0.029762037098407745, 0.02251046523451805, 0.005740078631788492, -0.026954976841807365, -0.02378803677856922, -0.011579124256968498, 0.01649148017168045, 0.006846708245575428, -0.0404144711792469, -0.06413052976131439, 0.013720407150685787, -0.037895314395427704, 0.06513819843530655, -0.023050284013152122, -0.0025978803168982267, 0.041782014071941376, -0.04106225445866585, 0.03811124339699745, -0.03861507400870323, 0.017939994111657143, 0.020513134077191353, -0.039982616901397705, -0.07802188396453857, 0.042753688991069794, -0.01189401838928461, -0.08111684769392014, -0.004966337699443102, 0.047108229249715805, 0.004005908966064453, -0.02781868726015091, -0.02224055491387844, 0.007017651107162237, -0.027890663594007492, -0.002622622065246105, -0.018497807905077934, 0.03375669941306114, 0.0365457683801651, 0.03584400191903114, -0.051750678569078445, 0.04718020558357239, -0.06398658454418182, -0.04653242230415344, -0.009878693148493767, -0.0012190919369459152, -0.04494895413517952, 0.011552132666110992, -0.0408463254570961, -0.048619724810123444, 0.035412147641181946, 0.024705730378627777, 0.0070356447249650955, -0.03757142275571823, -0.06171933934092522, 0.003985665738582611, -0.04372536391019821, 0.0012843201402574778, -0.006279897876083851, -0.036923639476299286, 0.08018115907907486, 0.047396134585142136, -0.018128931522369385, 0.021340856328606606, 0.05390995368361473, 0.06697358191013336, 0.0571848563849926, -0.0074854944832623005, 0.013387518934905529, -0.02628920041024685, -0.03498028963804245, -0.02195265144109726, 0.035070259124040604, 0.024219892919063568, 0.012721741572022438, 0.03093164600431919, -0.050671037286520004, 0.08910617232322693, 0.01330654602497816, 0.022564446553587914, -0.00644634198397398, 0.059416111558675766, 0.053766001015901566, 0.03595196455717087, -0.002460676245391369, -0.008524646051228046, 0.03703160211443901, -0.015312873758375645, -0.015807708725333214, 0.031039610505104065, -0.012064961716532707, 0.0588403046131134, -0.04469703882932663, -0.00931188277900219, 0.011849033646285534, 0.010796385817229748, -0.0026878502685576677, -0.035412147641181946, 0.06704555451869965, -0.03573603928089142, -0.055781327188014984, -0.06035179644823074, -0.07399123162031174, -0.029492128640413284, -0.050958942621946335, -0.012370859272778034, -0.045560747385025024, 0.005438679363578558, 0.009986656717956066, 0.03677968680858612, 0.016599442809820175, 0.042285844683647156, 0.06315885484218597, 0.01086836215108633, -0.01227189227938652, -0.005029316525906324, 0.08111684769392014, -0.03629384934902191, -0.09155335277318954, -0.010796385817229748, -0.03012191690504551, 0.02576737478375435, 0.05290229246020317, -0.02198863960802555, -0.03904692828655243, 0.030049940571188927, 0.06171933934092522, 0.023913994431495667, 0.03364873677492142, -0.01637451909482479, 0.023931989446282387, -0.009082459844648838, 0.012874689884483814, 0.023698067292571068, -0.02377004362642765, 0.023896001279354095, -0.05002325400710106, 0.029744043946266174, 0.03757142275571823, -0.03901094198226929, 0.05639312416315079, -0.0613594613969326, -0.008124280720949173, -0.04063040018081665, 0.04437314718961716, 0.02526354230940342, -0.09601586312055588, -0.015645762905478477, -0.0016082116635516286, 0.027656741440296173, -0.021286875009536743, -0.04135015979409218, -0.008961000479757786, -0.047360148280858994, 0.0010560215450823307, -0.003115207189694047, -0.0024651747662574053, 0.0012764476705342531, -0.013972322456538677, 0.003342381212860346, -0.009644771926105022, 0.05858838930726051, -0.02830452471971512, 0.0007394399726763368, 0.055565398186445236, -0.01800297386944294, 0.04091830179095268, 0.009914681315422058, -0.07229980081319809, -0.042825665324926376, 0.025407494977116585, 0.04016255587339401, 0.034134574234485626, 0.0161226037889719, -0.02197064459323883, 0.029474133625626564, -0.0006084213382564485, -0.08104486763477325, 0.03336083143949509, 0.03523220494389534, 0.0464964359998703, 0.02830452471971512, -0.0408463254570961, -0.025875339284539223, -0.006657771300524473, -0.011480157263576984, -0.004934848286211491, -0.016518469899892807, -0.03757142275571823, -0.01970340497791767, -0.048115894198417664, 0.013639434240758419, -0.014683084562420845, -0.0934247300028801, 0.03605993092060089, -0.07280363142490387, -0.008326712995767593, -0.044013265520334244, -0.03811124339699745, -0.04361740127205849, -0.05365803837776184, -0.02834051288664341, -0.07028447091579437, 0.10206183791160583, -0.023320194333791733, 0.044337157160043716, 0.045848652720451355, 0.0024449315387755632, 0.04897960275411606, 0.03247912600636482, 0.015024970285594463, -0.003511074697598815, 0.0186417605727911, -0.002543898532167077, 0.02044115774333477, 0.020783042535185814, 0.002386451233178377, 0.06463436782360077, 0.040990278124809265, -0.011138271540403366, 0.04016255587339401, -0.017337197437882423, -0.016680415719747543, 0.027116922661662102, 0.002168274251744151, -0.005006824154406786, 0.025893332436680794, -0.010571461170911789, -0.0006798349204473197, -0.002946513704955578, 0.000850777723826468, 0.027134917676448822, 0.05369402468204498, -0.00759795680642128, -0.01672540046274662, -0.014485151506960392, 0.024147916585206985, 0.05848042294383049, -0.024381838738918304, 0.04361740127205849, 0.031237542629241943, 0.019757386296987534, 0.03210125491023064, 0.04055842384696007, 0.07028447091579437, -0.0029352675192058086, -0.030715718865394592, 0.024831688031554222, 0.032803017646074295, -0.06053173914551735, 0.06686561554670334, 0.000830534496344626, -0.04757607355713844, 0.06312286853790283, -0.05160672590136528, 0.010157600045204163, 0.05959605053067207, 0.05023918300867081, -0.0076114521361887455, 0.014593115076422691, -0.03199329227209091, -0.009860699065029621, -0.011480157263576984, -0.05283031612634659, 0.007962334901094437, -0.02475971169769764, -0.020495139062404633, -0.026253212243318558, 0.0301579050719738, 0.006711753085255623, -0.048403795808553696, -0.005609622225165367, 0.04872768744826317, -0.004750409629195929, 0.030499789863824844, 0.02990598976612091, 0.0460645817220211, -0.030283862724900246, 0.05113888159394264, -0.012559795752167702, 0.009419846348464489, 0.02731485664844513, 0.018245892599225044, -0.032677061855793, 0.0319393090903759, -0.010913346894085407, -0.007323548663407564, -0.010535473003983498, -0.016113605350255966, -0.028412489220499992, -0.03595196455717087, -0.016941329464316368, 0.030841676518321037, -0.007818383164703846, -0.02990598976612091, 0.07902954518795013, 0.019721398130059242, -0.05106690526008606, 0.04260973632335663, -0.0033086424227803946, 0.03040982037782669, -0.02296031452715397, -0.007912850938737392, -0.013090617954730988, 0.009743737988173962, 0.03195730224251747, 0.007476497441530228, -0.010193588212132454, -0.04977133870124817, -0.036707714200019836, 0.012658762745559216, -0.018029965460300446, -0.05902024358510971, -0.0031714383512735367, 0.04825984686613083, -0.03534017130732536, 0.010625443421304226, 0.010589455254375935, 0.01442217268049717, 0.05851641297340393, -0.0019107353873550892, -0.006311387289315462, 0.015924669802188873 ]
18,588
traceback2
walk_tb
Walk a traceback yielding the frame and line number for each frame. This will follow tb.tb_next (and thus is in the opposite order to walk_stack). Usually used with StackSummary.extract.
def walk_tb(tb): """Walk a traceback yielding the frame and line number for each frame. This will follow tb.tb_next (and thus is in the opposite order to walk_stack). Usually used with StackSummary.extract. """ while tb is not None: yield tb.tb_frame, tb.tb_lineno tb = tb.tb_next
(tb)
[ -0.02307819575071335, 0.004697611089795828, -0.0009919931180775166, 0.026303017511963844, -0.06211836263537407, -0.02954585663974285, 0.03430201858282089, 0.024015016853809357, -0.013223572634160519, -0.03956262394785881, -0.013646942563354969, -0.025131992995738983, -0.0052110604010522366, 0.021564871072769165, -0.010935570113360882, 0.052245721220970154, 0.016853749752044678, 0.04067960008978844, 0.01207056362181902, -0.01846615970134735, -0.019961468875408173, 0.009953711181879044, 0.0026055302005261183, -0.036770179867744446, -0.01981734298169613, 0.06172201409935951, 0.016115102916955948, -0.05556062236428261, 0.0557047501206398, 0.016583513468503952, -0.03974277898669243, -0.017051922157406807, -0.05620919167995453, -0.06096535176038742, -0.006553234998136759, -0.017754537984728813, -0.08114300668239594, -0.04712924361228943, -0.05592093616724014, -0.01889853924512863, 0.026717381551861763, -0.01614212617278099, -0.009350182488560677, 0.025708498433232307, 0.02711372822523117, -0.04712924361228943, 0.04406656324863434, -0.08099888265132904, 0.002018891740590334, -0.05249794200062752, -0.01970924809575081, 0.02741999551653862, 0.02909546159207821, -0.025348182767629623, 0.05422745645046234, 0.012196674011647701, -0.0145026920363307, -0.04312974214553833, 0.03059077076613903, 0.04291355609893799, 0.024609535932540894, 0.04781384393572807, 0.005589391570538282, 0.07472939789295197, 0.025816593319177628, -0.05502014979720116, 0.007512574549764395, -0.029365697875618935, -0.07689128816127777, -0.026339050382375717, -0.051633186638355255, -0.015511574223637581, -0.01740323007106781, 0.04017515853047371, -0.013637934811413288, -0.05811886116862297, -0.04756162315607071, -0.023456526920199394, 0.01728612743318081, -0.03988690674304962, 0.001174402772448957, 0.03736469894647598, -0.024807710200548172, -0.0053011393174529076, 0.012187665328383446, 0.007985488511621952, 0.04712924361228943, 0.015538598410785198, -0.05069636553525925, 0.03545502573251724, -0.040859758853912354, -0.03556312248110771, -0.0017846868140622973, -0.014799951575696468, -0.07101815193891525, -0.031023148447275162, -0.012367823161184788, 0.05610109493136406, -0.06269486248493195, -0.015736771747469902, 0.06283899396657944, -0.009138497523963451, -0.029798077419400215, -0.01375503744930029, -0.009323159232735634, 0.000536813517101109, -0.02035781554877758, -0.00136469432618469, 0.04377831146121025, -0.016385339200496674, -0.031023148447275162, -0.05844314396381378, -0.029599903151392937, -0.0008872764883562922, 0.04496735334396362, -0.010665333829820156, 0.04705718159675598, 0.014115353114902973, 0.006084824912250042, 0.0020932068582624197, 0.04766971617937088, -0.0015583637868985534, -0.00270236493088305, -0.0009610285051167011, 0.013890155591070652, 0.02637508139014244, 0.044859256595373154, -0.007305392995476723, -0.021799076348543167, -0.03089703805744648, 0.008039535954594612, -0.006845991127192974, 0.01793469488620758, 0.0721711590886116, 0.00603528181090951, 0.022952085360884666, 0.018502192571759224, 0.0029117981903254986, -0.02583460882306099, -0.09130389988422394, -0.039382465183734894, 0.013953210785984993, 0.00848542619496584, -0.04294958710670471, 0.002414112677797675, 0.008728638291358948, -0.04712924361228943, 0.010160892270505428, 0.056785695254802704, 0.025474293157458305, 0.006742400582879782, -0.0660097673535347, 0.005913675297051668, 0.07202703505754471, -0.01643938571214676, 0.03761691972613335, -0.004859752953052521, 0.03934643417596817, -0.0006806581513956189, 0.015241337940096855, -0.0264651607722044, -0.010629301890730858, 0.007999000139534473, -0.05865933373570442, 0.015619669109582901, 0.06215439364314079, 0.03840961307287216, 0.03194195404648781, -0.04576004669070244, -0.027564121410250664, -0.013944203034043312, -0.02214137651026249, 0.019475042819976807, 0.018754413351416588, -0.013439761474728584, -0.005765045061707497, -0.010359065607190132, 0.02342049591243267, -0.01720505580306053, 0.04071563109755516, 0.01070136483758688, 0.02963593602180481, -0.02561841905117035, -0.035797327756881714, -0.025924688205122948, -0.016583513468503952, 0.027347933501005173, 0.015178282745182514, 0.009413237683475018, 0.05008383095264435, 0.01613311842083931, -0.015043164603412151, 0.05653347447514534, -0.017952710390090942, 0.012845241464674473, 0.02288002334535122, -0.008044039830565453, 0.05992043763399124, 0.059848375618457794, 0.004229201003909111, -0.0031009637750685215, 0.013493808917701244, -0.007368448190391064, 0.025492308661341667, 0.023798827081918716, 0.05318254232406616, 0.012620043940842152, 0.008359315805137157, -0.06997323781251907, 0.03215814381837845, 0.019853373989462852, -0.032014016062021255, 0.05307444557547569, 0.018276995047926903, 0.0046570757403969765, 0.02140272967517376, -0.05779457837343216, -0.007674716413021088, 0.03152759000658989, 0.04327386990189552, 0.054371580481529236, -0.02794245257973671, -0.07145053148269653, -0.06849594414234161, 0.06420818716287613, -0.03576129674911499, 0.017241088673472404, -0.0012284500990062952, -0.004670587368309498, -0.04947129264473915, -0.04039134830236435, -0.005625423043966293, -0.05091255530714989, 0.021438760682940483, 0.01086350716650486, 0.005665958393365145, 0.013836108148097992, -0.06964895129203796, -0.047525592148303986, -0.05465983599424362, -0.00237357709556818, 0.04439084604382515, -0.008755662478506565, -0.04021118953824043, 0.05073239654302597, -0.03714850917458534, 0.00790441781282425, -0.019168775528669357, -0.0216189194470644, 0.012349807657301426, -0.05087652429938316, 0.0512368381023407, 0.00003158036997774616, -0.006174903828650713, -0.0318518728017807, -0.07227925211191177, 0.05992043763399124, -0.009566371329128742, 0.013466784730553627, 0.005517328158020973, 0.02311422862112522, -0.06546929478645325, 0.00010232392378384247, 0.026915553957223892, 0.007490054704248905, 0.048570506274700165, 0.02088027261197567, -0.03786914050579071, 0.001477292855270207, -0.008089078590273857, 0.08813312649726868, -0.049939703196287155, -0.01909671165049076, 0.03945452719926834, -0.04082372412085533, -0.04817415773868561, -0.012250720523297787, 0.07501765340566635, -0.053434763103723526, -0.0552363395690918, 0.03172576427459717, 0.013583887368440628, -0.0517052486538887, -0.0253121517598629, -0.04828225448727608, -0.03136545047163963, -0.020483925938606262, -0.0032158142421394587, 0.004438634496182203, -0.007580133620649576, 0.08020619302988052, -0.018592270091176033, -0.005580383352935314, -0.062046296894550323, 0.06305518001317978, -0.034770429134368896, -0.01983535848557949, 0.01127786934375763, -0.014169399626553059, 0.023870889097452164, -0.0017373954178765416, -0.011124735698103905, -0.06885625422000885, 0.016196174547076225, 0.007697236258536577, 0.07379257678985596, 0.04147229343652725, 0.010629301890730858, -0.024825725704431534, -0.031185291707515717, 0.019276870414614677, 0.02363668568432331, 0.030248470604419708, -0.07429701834917068, -0.009368197992444038, -0.05822695419192314, -0.048462409526109695, -0.0009998750174418092, -0.049183040857315063, 0.041724514216184616, -0.017682474106550217, 0.004213437438011169, 0.09483499079942703, -0.049110978841781616, 0.05624522268772125, 0.032626550644636154, 0.016196174547076225, -0.01866433396935463, -0.024213189259171486, -0.008089078590273857, -0.020177658647298813, -0.019258853048086166, 0.03446416184306145, 0.025150008499622345, 0.008989866822957993, 0.05581284314393997, -0.06961292028427124, 0.04849844053387642, -0.006395597010850906, -0.08445791155099869, 0.04576004669070244, -0.02194320224225521, 0.004447642248123884, -0.009111473336815834, 0.0432378388941288, 0.0028262233827263117, 0.024213189259171486, 0.02626698650419712, 0.08099888265132904, 0.11270663142204285, 0.039382465183734894, 0.017907671630382538, -0.007602653466165066, 0.0076837241649627686, -0.03895008563995361, 0.06676642596721649, -0.016601528972387314, -0.020646067336201668, 0.0018364822026342154, 0.05883949249982834, 0.010899538174271584, 0.05534443259239197, -0.006251470651477575, -0.02035781554877758, -0.008643063716590405, -0.051308900117874146, -0.03111322782933712, 0.06683849543333054, -0.003461278975009918, 0.0193129014223814, -0.0032788694370537996, 0.03320305794477463, 0.027365949004888535, 0.022609787061810493, -0.00488227279856801, -0.04975954443216324, 0.04165245220065117, 0.019475042819976807, -0.03271663188934326, 0.054047297686338425, 0.009210560470819473, 0.02446541003882885, -0.003409483702853322, -0.0266993660479784, 0.0398508757352829, -0.018718380481004715, -0.01271913107484579, 0.0030356566421687603, -0.03069886565208435, -0.0034815468825399876, -0.05887552350759506, -0.08143126219511032, -0.0478498749434948, -0.006152383983135223, 0.0375448577105999, -0.05444364622235298, 0.04921907186508179, 0.010332041420042515, -0.028500942513346672, -0.03999499976634979, -0.0012599775800481439, 0.022285502403974533, -0.03837358206510544, 0.0024726639967411757, 0.02351057529449463, 0.01889853924512863, -0.03595946729183197, -0.0108094597235322, 0.011539097875356674, -0.032734647393226624, -0.026609286665916443, -0.02859102003276348, 0.00659377034753561, -0.04248117655515671, 0.03840961307287216, 0.024231204763054848, -0.05091255530714989, 0.03037458099424839, 0.02298811823129654, 0.015286377631127834, 0.007300889119505882, -0.024699615314602852, -0.0025852625258266926, -0.02732991799712181, 0.004172901622951031, -0.013782060705125332, -0.01728612743318081, -0.040247220546007156, 0.002853246871381998, 0.0455438569188118, -0.015403480269014835, -0.05455173924565315, 0.0517052486538887, 0.015889905393123627, 0.011512074619531631, -0.03725660592317581, -0.060496941208839417, 0.004751658067107201, 0.05548856034874916, 0.035076696425676346, -0.01307043805718422, 0.057218074798583984, 0.044138625264167786, -0.02965395152568817, 0.04680496081709862, 0.004049043636769056, 0.020069563761353493, 0.01972726359963417, -0.004145878367125988, 0.007976480759680271, -0.03967071697115898, 0.007246841676533222, 0.026303017511963844, -0.03967071697115898, -0.004001752007752657, -0.03188790753483772, -0.0775398537516594, 0.008661079220473766, -0.013556864112615585, 0.06579358130693436, 0.000010397770893177949, -0.015646692365407944, 0.0266993660479784, -0.03399575129151344, 0.050263985991477966, -0.027546105906367302, 0.01581784337759018, 0.0009030402870848775, -0.00780082680284977, -0.03736469894647598, -0.027383964508771896, 0.010205931030213833, -0.04237308353185654, 0.013538848608732224, 0.024537473917007446, 0.03059077076613903, -0.03080696053802967, -0.026969602331519127, 0.0352388396859169, -0.05502014979720116, 0.02711372822523117, -0.04619242250919342, 0.07667510211467743, 0.014547730796039104, 0.014106344431638718, 0.011674216017127037, -0.028825225308537483, -0.03080696053802967, 0.009503316134214401, -0.027996500954031944, -0.04828225448727608, -0.034428127110004425, 0.003499562619253993, -0.018123861402273178, -0.05840711295604706, 0.017844615504145622, 0.009692481718957424, 0.023870889097452164, -0.018718380481004715, 0.003371200291439891, 0.030410613864660263, -0.034103844314813614, 0.057542357593774796, -0.045724015682935715, -0.015475543215870857, 0.06305518001317978, 0.034320034086704254, -0.0443187840282917, 0.02783435769379139, 0.040535472333431244, 0.0709460899233818, 0.04280545935034752, -0.011782310903072357, 0.01560165360569954, -0.012998375110328197, -0.06348755955696106, -0.01815088465809822, 0.023132244125008583, 0.06896435469388962, 0.021258603781461716, 0.027456028386950493, -0.03233829885721207, 0.07008133083581924, -0.0133496830239892, 0.031905923038721085, 0.012980359606444836, 0.008246717043220997, 0.0852506086230278, 0.015394472517073154, -0.015952961519360542, 0.052894290536642075, 0.04716527462005615, 0.003803578671067953, -0.05959615483880043, 0.022825974971055984, -0.0364639088511467, 0.060496941208839417, -0.0647846981883049, 0.0033058931585401297, 0.02751007489860058, 0.01706993766129017, -0.01938496343791485, -0.028392847627401352, 0.060064565390348434, -0.01706993766129017, 0.0070666843093931675, -0.08042237907648087, -0.023816842585802078, -0.08164744824171066, -0.04694908484816551, 0.02033980004489422, -0.004058051388710737, -0.0016338047571480274, 0.0031932946294546127, -0.05674966424703598, 0.03260853514075279, 0.024069063365459442, 0.05642537772655487, 0.03963468596339226, 0.011908421292901039, -0.004760666284710169, 0.05030001699924469, -0.024627551436424255, -0.06157789006829262, 0.04132816568017006, -0.013998250477015972, -0.021456778049468994, 0.05188540741801262, -0.0024163646157830954, -0.006174903828650713, -0.009863631799817085, -0.012412862852215767, 0.02574452944099903, 0.00902139488607645, 0.01844814419746399, 0.05685775727033615, -0.03460828587412834, 0.036031533032655716, 0.0033374207559973, -0.053002383559942245, 0.06943276524543762, -0.024627551436424255, 0.038445644080638885, 0.028392847627401352, -0.01846615970134735, -0.029581887647509575, -0.03325710445642471, 0.003495058510452509, -0.008066559210419655, 0.07336019724607468, 0.01202552393078804, -0.037508826702833176, -0.0356171689927578, 0.0070036291144788265, 0.03931040316820145, -0.008976355195045471, -0.0786208063364029, 0.0204659104347229, -0.07429701834917068, 0.002688853070139885, -0.006445140112191439, 0.015133243054151535, 0.026753412559628487, 0.01834004931151867, -0.05242587998509407, -0.04302164912223816, 0.06118154153227806, -0.019475042819976807, 0.02457350492477417, 0.018276995047926903, 0.00849443394690752, 0.003260853700339794, 0.023708747699856758, -0.011539097875356674, -0.04039134830236435, 0.008210685104131699, 0.03469836711883545, 0.018952585756778717, 0.003713499754667282, -0.0025604907423257828, -0.02540222927927971, -0.01994345337152481, -0.028446894139051437, 0.0273119006305933, 0.015403480269014835, 0.003875641617923975, 0.03639184683561325, -0.04439084604382515, -0.0017768049146980047, -0.07051371037960052, -0.05044414475560188, -0.01992543786764145, -0.0409318208694458, -0.0727836936712265, -0.012908296659588814, -0.0062965103425085545, 0.01699787564575672, -0.04410259425640106, -0.10117654502391815, 0.03934643417596817, -0.07163068652153015, 0.0443187840282917, -0.015484550967812538, 0.022195423021912575, -0.031689733266830444, 0.003330664709210396, -0.04482322558760643, -0.053434763103723526, 0.049110978841781616, 0.028554989024996758, 0.035797327756881714, 0.05577681213617325, 0.044787194579839706, 0.03235631436109543, -0.0261588916182518, 0.028392847627401352, -0.008053047582507133, 0.01646641083061695, 0.003684224095195532, 0.011593145318329334, 0.053434763103723526, -0.03758088871836662, 0.029275620356202126, -0.011467034928500652, 0.0005984612507745624, 0.062262486666440964, -0.012160642072558403, 0.04521957412362099, 0.024339299649000168, -0.04774177819490433, -0.026861507445573807, 0.0438503734767437, 0.008354811929166317, -0.046877022832632065, 0.00019451398111414164, -0.007490054704248905, -0.003727011615410447, -0.022177407518029213, 0.013899163343012333, -0.03150957450270653, -0.04356212168931961, 0.015151259489357471, 0.028771178796887398, -0.013421745970845222, -0.00410984642803669, 0.036662083119153976, 0.014088328927755356, 0.038013264536857605, 0.048462409526109695, -0.0038981614634394646, -0.019348932430148125, -0.020411862060427666, 0.036121610552072525, 0.05498411878943443, -0.08337696641683578, 0.029581887647509575, 0.019348932430148125, -0.05729013681411743, 0.06644214689731598, -0.053939204663038254, -0.026303017511963844, 0.026807459071278572, 0.046480678021907806, 0.01706993766129017, 0.014637810178101063, 0.013719005510210991, 0.019258853048086166, -0.0035063184332102537, -0.008224197663366795, 0.004751658067107201, -0.014169399626553059, -0.05325460433959961, -0.01022394746541977, -0.012466910295188427, 0.040319282561540604, -0.07036957889795303, -0.020429879426956177, 0.029365697875618935, -0.00418866565451026, 0.008300764486193657, 0.021781060844659805, 0.05545252934098244, -0.03722057119011879, 0.054047297686338425, -0.017907671630382538, 0.002414112677797675, -0.03437408059835434, 0.04464306682348251, -0.05238984897732735, 0.0022407108917832375, 0.00007076114707160741, -0.01207056362181902, 0.014655825681984425, 0.022970100864768028, -0.03819342330098152, -0.013719005510210991, -0.02192518673837185, 0.04060753807425499, 0.04388640448451042, -0.015655700117349625, 0.057434260845184326, 0.02689753845334053, -0.03399575129151344, 0.08561091870069504, 0.013034407049417496, 0.028014516457915306, -0.01942099630832672, -0.028500942513346672, 0.050768427550792694, -0.0298521239310503, 0.05855124071240425, -0.03531090170145035, -0.020646067336201668, -0.06345152854919434, -0.019366947934031487, -0.004391342867165804, 0.057326167821884155, -0.07854873687028885, -0.030518706887960434, 0.03974277898669243, 0.013827100396156311, -0.01983535848557949, -0.000340610567945987, 0.020267736166715622, 0.03300488367676735, -0.003121231449767947, -0.008467409759759903, 0.017565371468663216 ]
18,589
pygal.graph.bar
Bar
Bar graph class
class Bar(Graph): """Bar graph class""" _series_margin = .06 _serie_margin = .06 def _bar(self, serie, parent, x, y, i, zero, secondary=False): """Internal bar drawing function""" width = (self.view.x(1) - self.view.x(0)) / self._len x, y = self.view((x, y)) series_margin = width * self._series_margin x += series_margin width -= 2 * series_margin width /= self._order if self.horizontal: serie_index = self._order - serie.index - 1 else: serie_index = serie.index x += serie_index * width serie_margin = width * self._serie_margin x += serie_margin width -= 2 * serie_margin height = self.view.y(zero) - y r = serie.rounded_bars * 1 if serie.rounded_bars else 0 alter( self.svg.transposable_node( parent, 'rect', x=x, y=y, rx=r, ry=r, width=width, height=height, class_='rect reactive tooltip-trigger' ), serie.metadata.get(i) ) return x, y, width, height def _tooltip_and_print_values( self, serie_node, serie, parent, i, val, metadata, x, y, width, height ): transpose = swap if self.horizontal else ident x_center, y_center = transpose((x + width / 2, y + height / 2)) x_top, y_top = transpose((x + width, y + height)) x_bottom, y_bottom = transpose((x, y)) if self._dual: v = serie.values[i][0] else: v = serie.values[i] sign = -1 if v < self.zero else 1 self._tooltip_data( parent, val, x_center, y_center, "centered", self._get_x_label(i) ) if self.print_values_position == 'top': if self.horizontal: x = x_bottom + sign * self.style.value_font_size / 2 y = y_center else: x = x_center y = y_bottom - sign * self.style.value_font_size / 2 elif self.print_values_position == 'bottom': if self.horizontal: x = x_top + sign * self.style.value_font_size / 2 y = y_center else: x = x_center y = y_top - sign * self.style.value_font_size / 2 else: x = x_center y = y_center self._static_value(serie_node, val, x, y, metadata, "middle") def bar(self, serie, rescale=False): """Draw a bar graph for a serie""" serie_node = self.svg.serie(serie) bars = self.svg.node(serie_node['plot'], class_="bars") if rescale and self.secondary_series: points = self._rescale(serie.points) else: points = serie.points for i, (x, y) in enumerate(points): if None in (x, y) or (self.logarithmic and y <= 0): continue metadata = serie.metadata.get(i) val = self._format(serie, i) bar = decorate( self.svg, self.svg.node(bars, class_='bar'), metadata ) x_, y_, width, height = self._bar( serie, bar, x, y, i, self.zero, secondary=rescale ) self._confidence_interval( serie_node['overlay'], x_ + width / 2, y_, serie.values[i], metadata ) self._tooltip_and_print_values( serie_node, serie, bar, i, val, metadata, x_, y_, width, height ) def _compute(self): """Compute y min and max and y scale and set labels""" if self._min: self._box.ymin = min(self._min, self.zero) if self._max: self._box.ymax = max(self._max, self.zero) self._x_pos = [ x / self._len for x in range(self._len + 1) ] if self._len > 1 else [0, 1] # Center if only one value self._points(self._x_pos) self._x_pos = [(i + .5) / self._len for i in range(self._len)] def _plot(self): """Draw bars for series and secondary series""" for serie in self.series: self.bar(serie) for serie in self.secondary_series: self.bar(serie, True)
(config=None, **kwargs)
[ 0.043035853654146194, 0.013231277465820312, -0.02319870889186859, 0.024039100855588913, 0.01132573839277029, -0.0028167767450213432, -0.06574596464633942, 0.03660588338971138, 0.005008145701140165, 0.0019776069093495607, 0.0026188937481492758, 0.06386973708868027, 0.06003911793231964, -0.03631272166967392, -0.002848535543307662, 0.0342019721865654, 0.013915316201746464, 0.022280141711235046, 0.0495244562625885, 0.04362217336893082, -0.007162869907915592, -0.08177202939987183, -0.02394138090312481, -0.014765479601919651, 0.005286647472530603, -0.029100991785526276, -0.04401305317878723, -0.050540741533041, -0.03523780405521393, 0.03449513018131256, -0.01739414595067501, -0.06472967565059662, -0.026482097804546356, -0.028104249387979507, 0.06351795047521591, -0.004939741920679808, -0.05100979655981064, 0.01500977948307991, -0.04655376821756363, 0.030918583273887634, 0.02003258280456066, -0.03560913726687431, 0.02845603972673416, -0.03603910654783249, 0.04842999204993248, 0.016671018674969673, 0.004143324680626392, 0.032814349979162216, 0.005643325392156839, -0.03310750797390938, 0.07727691531181335, -0.040964189916849136, 0.010231275111436844, 0.041511420160532, 0.009972318075597286, 0.11460591852664948, 0.05089253559708595, 0.06410426646471024, 0.046983737498521805, 0.007050492335110903, 0.03887298330664635, 0.060195472091436386, 0.008565151132643223, -0.018508153036236763, -0.008311078883707523, 0.005545605439692736, 0.02558307535946369, -0.05007168650627136, -0.016250822693109512, 0.0038770379032939672, 0.04549839347600937, 0.0038623798172920942, 0.004534204490482807, 0.02474268339574337, 0.004859122913330793, -0.013846912421286106, -0.019299684092402458, 0.010006519965827465, 0.02425408363342285, -0.011814338155090809, 0.013192188926041126, -0.0008037463412620127, 0.06246257200837135, -0.030644966289401054, 0.003202770370990038, -0.029315976426005363, -0.006674270611256361, 0.08255378901958466, 0.017785025760531425, 0.04905540123581886, -0.024684051051735878, 0.022436494007706642, 0.04186321422457695, 0.05394139513373375, -0.0643387958407402, -0.048859961330890656, -0.009669385850429535, -0.07133553922176361, 0.0035667771007865667, -0.023882748559117317, -0.009718245826661587, 0.03611728176474571, -0.028612392023205757, 0.012146585620939732, -0.0342019721865654, 0.032501645386219025, -0.038306210190057755, 0.04076875001192093, -0.013514664955437183, 0.013153101317584515, -0.019641702994704247, -0.000023895574486232363, -0.002687297761440277, -0.03324431553483009, -0.048859961330890656, -0.000743892858736217, -0.03844301775097847, -0.018527695909142494, 0.02214333415031433, -0.03469057008624077, -0.02841695211827755, 0.027166137471795082, 0.03942021727561951, -0.010778507217764854, -0.04127689450979233, 0.004153096582740545, 0.012850169092416763, 0.03789578378200531, -0.04287949949502945, 0.03756353631615639, 0.018039098009467125, -0.029276886954903603, -0.0055944654159247875, 0.03371337056159973, 0.05687299370765686, -0.049094486981630325, -0.028514672070741653, 0.053315989673137665, -0.038032591342926025, 0.007192186079919338, 0.05589579418301582, 0.0038697088602930307, -0.021127047017216682, -0.017697077244520187, -0.029902296140789986, 0.011286650784313679, -0.00232206960208714, 0.023315973579883575, -0.006928342394530773, -0.05667755380272865, -0.05398048460483551, 0.03762216866016388, 0.020403919741511345, -0.00933225266635418, 0.08059938997030258, -0.048312727361917496, -0.03822803124785423, 0.028807831928133965, 0.021947894245386124, 0.04745279252529144, -0.010319223627448082, -0.03711402416229248, 0.0689120888710022, -0.06164172664284706, -0.02919871173799038, 0.05284693092107773, 0.007763847708702087, 0.03373291715979576, -0.002195033710449934, 0.04413031414151192, -0.03238438069820404, -0.02319870889186859, -0.08708798885345459, 0.025934865698218346, -0.030918583273887634, 0.019016295671463013, 0.012713361531496048, 0.025153107941150665, 0.009493489749729633, 0.02497721090912819, -0.019221508875489235, -0.03201304376125336, -0.030859950929880142, -0.03562868386507034, -0.021263854578137398, -0.023335516452789307, 0.06347885727882385, -0.021947894245386124, 0.03664496913552284, 0.0017736165318638086, -0.006498374510556459, 0.018899032846093178, -0.00585342338308692, 0.016416946426033974, 0.08583717793226242, -0.01287948526442051, 0.053550515323877335, -0.03900979086756706, 0.0392247773706913, -0.03156353533267975, 0.05417592450976372, 0.00605863519012928, 0.028241056948900223, -0.0008526063174940646, -0.013397401198744774, -0.006947886198759079, 0.03660588338971138, 0.05351142957806587, -0.06848211586475372, -0.034299690276384354, -0.020403919741511345, -0.02742020972073078, 0.0023855874314904213, -0.0010394956916570663, -0.01277199387550354, -0.011814338155090809, -0.015879487618803978, -0.026149850338697433, 0.011403914541006088, -0.016016295179724693, 0.058358337730169296, -0.004470686428248882, -0.0432312935590744, 0.022846916690468788, -0.010993490926921368, -0.0024320045486092567, 0.06242348626255989, -0.03523780405521393, 0.06343977153301239, -0.027029329910874367, 0.023296428844332695, 0.012136814184486866, -0.005506517365574837, -0.003723128931596875, -0.03529643639922142, -0.050188951194286346, 0.024918578565120697, -0.017560269683599472, -0.016514666378498077, -0.003923454787582159, -0.043817613273859024, -0.021986981853842735, -0.03650816157460213, 0.010768734849989414, 0.005140067543834448, 0.01766776107251644, 0.007416941691190004, 0.07051469385623932, -0.06457332521677017, -0.019153105095028877, 0.004206842742860317, -0.04663194715976715, -0.011100983247160912, -0.013397401198744774, 0.07950492948293686, -0.029804576188325882, -0.030859950929880142, -0.01146254688501358, 0.03641044348478317, -0.03447558730840683, -0.0387166328728199, -0.03603910654783249, -0.07383716851472855, 0.06922478973865509, 0.052260611206293106, -0.02503584325313568, 0.02241694927215576, 0.012899029068648815, -0.044872988015413284, 0.030625423416495323, 0.043856699019670486, 0.019622160121798515, -0.056990258395671844, -0.03760262578725815, -0.02452770061790943, 0.038306210190057755, 0.029120536521077156, -0.07403261214494705, 0.040964189916849136, -0.02134202979505062, -0.04002607986330986, -0.03449513018131256, 0.011755706742405891, -0.015586326830089092, 0.047257352620363235, -0.03263845294713974, 0.01813681796193123, -0.087478868663311, 0.006640068721026182, 0.01935831643640995, -0.028534216806292534, -0.018596101552248, -0.03637135401368141, 0.017325742170214653, -0.004370523616671562, 0.008120525628328323, 0.012859941460192204, 0.03449513018131256, -0.053315989673137665, -0.030390894040465355, 0.033283405005931854, -0.06394791603088379, 0.03650816157460213, 0.028905551880598068, 0.009972318075597286, 0.03345930203795433, 0.10069060325622559, 0.016563525423407555, 0.021771997213363647, -0.007470687851309776, -0.02370685152709484, 0.05863195285201073, 0.026931609958410263, 0.023530956357717514, -0.04291858896613121, 0.016886001452803612, 0.016876230016350746, -0.016143331304192543, 0.013192188926041126, 0.0641433522105217, -0.025309458374977112, -0.018117273226380348, -0.036175914108753204, -0.03877526521682739, 0.04737461730837822, 0.06820850074291229, -0.038853440433740616, -0.0028216626960784197, 0.02898372896015644, 0.012439745478332043, 0.013876228593289852, -0.01015309989452362, -0.022182421758770943, 0.0045610773377120495, 0.05057983100414276, -0.013211732730269432, -0.02024756744503975, 0.006664498709142208, 0.02239740639925003, -0.05077527090907097, 0.004446256440132856, -0.010289907455444336, -0.0020142518915235996, 0.02812379226088524, 0.014697075821459293, -0.005701957270503044, -0.003720685839653015, 0.005110751837491989, -0.027244312688708305, 0.07395443320274353, 0.009053750894963741, 0.06492511183023453, -0.02892509661614895, 0.030156366527080536, -0.030390894040465355, -0.043583083897829056, 0.07356355339288712, 0.0007671013590879738, -0.026130305603146553, 0.02579805813729763, -0.00012581438932102174, -0.006630296353250742, -0.03576549142599106, 0.06797397881746292, 0.018781768158078194, -0.030879493802785873, -0.014677532017230988, 0.0019861573819071054, 0.026677537709474564, -0.030175911262631416, 0.035120539367198944, -0.022299686446785927, 0.004668569192290306, -0.0183420293033123, -0.0553094744682312, 0.026423465460538864, -0.02786972187459469, -0.045185692608356476, 0.05640393868088722, -0.11507497727870941, 0.07160915434360504, -0.049094486981630325, -0.06527690589427948, 0.025700338184833527, 0.059843678027391434, -0.04268405959010124, 0.017306197434663773, -0.06781762093305588, -0.0077247596345841885, -0.03347884491086006, 0.016817597672343254, -0.042566798627376556, -0.010661243461072445, 0.01781434193253517, -0.06699677556753159, -0.03971337527036667, 0.03631272166967392, 0.026775257661938667, 0.002548046875745058, 0.0331856831908226, 0.0006706029525958002, -0.0932638943195343, -0.010328995063900948, 0.001338762929663062, 0.0231400765478611, -0.03738764300942421, 0.06027364730834961, -0.0006651062285527587, 0.017364829778671265, 0.045146603137254715, 0.0018847729079425335, -0.025993498042225838, -0.019710108637809753, -0.011482090689241886, 0.004326549358665943, -0.042215004563331604, -0.05503585934638977, -0.003117265412583947, 0.032501645386219025, -0.04971989616751671, -0.030586333945393562, 0.06664498150348663, 0.04139415919780731, 0.03734855353832245, 0.031504902988672256, -0.07227364927530289, -0.050384391099214554, 0.0014951147604733706, 0.019798055291175842, 0.02976548671722412, 0.051205236464738846, -0.05022803694009781, -0.03560913726687431, -0.05706843361258507, -0.005892510991543531, -0.022964181378483772, -0.01762867346405983, -0.01317264512181282, 0.03844301775097847, 0.019368087872862816, 0.01899675279855728, 0.012078181840479374, 0.061954427510499954, -0.04401305317878723, -0.029667766764760017, 0.0010138441575691104, -0.04663194715976715, -0.000059357214922783896, -0.030957670882344246, -0.07121827453374863, -0.03367428481578827, 0.03164171054959297, 0.02132248692214489, 0.04088601469993591, -0.03924432024359703, -0.027244312688708305, -0.007949515245854855, -0.05527038499712944, 0.023276884108781815, 0.04975898191332817, 0.02894463948905468, 0.015078183263540268, -0.06918570399284363, -0.022319229319691658, -0.02452770061790943, 0.018478836864233017, 0.06418244540691376, -0.015674274414777756, -0.01223453413695097, 0.04229317978024483, 0.050188951194286346, -0.02210424654185772, -0.029687311500310898, -0.04229317978024483, -0.023589588701725006, 0.010348539799451828, -0.006903912406414747, -0.030977213755249977, -0.040416959673166275, 0.011091210879385471, 0.0037060279864817858, -0.0392247773706913, 0.013622156344354153, 0.03728992119431496, 0.005877853371202946, 0.057537488639354706, 0.03373291715979576, -0.04420849308371544, 0.01264495775103569, 0.03996744751930237, -0.04549839347600937, -0.04639741778373718, -0.047765497118234634, 0.04659285768866539, -0.07172641903162003, 0.020325742661952972, 0.04925084114074707, -0.04241044446825981, -0.007817593403160572, -0.06922478973865509, 0.005115637555718422, 0.017003266140818596, -0.01648535020649433, -0.011609126813709736, 0.038814350962638855, -0.031504902988672256, -0.01633877120912075, 0.03600001707673073, -0.032990243285894394, -0.05953097343444824, -0.022241054102778435, -0.05687299370765686, 0.021263854578137398, 0.012312710285186768, -0.04416940361261368, -0.07801958173513412, -0.0467882975935936, 0.018596101552248, 0.03025408647954464, -0.05089253559708595, -0.010710103437304497, -0.00949837639927864, -0.01553746685385704, -0.05968732759356499, -0.01977851241827011, 0.02898372896015644, -0.057498399168252945, 0.010583067312836647, -0.0027043987065553665, -0.014843655750155449, -0.02865147963166237, -0.0033102622255682945, 0.036488618701696396, 0.007304564118385315, 0.019387632608413696, 0.020091215148568153, 0.036215003579854965, -0.01866450533270836, -0.01933877170085907, 0.010348539799451828, 0.04760914295911789, 0.012938117608428001, 0.039615657180547714, -0.022162877023220062, 0.020853430032730103, 0.0005362380761653185, 0.021400662139058113, -0.01885017193853855, 0.05476224422454834, 0.0014560268027707934, 0.003750002011656761, 0.03238438069820404, 0.03942021727561951, -0.01788274571299553, 0.025172650814056396, 0.026247570291161537, -0.03928340598940849, 0.03867754340171814, 0.03404562175273895, 0.03580457717180252, -0.002951141679659486, 0.05300328508019447, 0.02628665789961815, -0.036723144352436066, -0.016250822693109512, 0.04827364161610603, -0.0037524448707699776, -0.0018481279257684946, 0.008614011108875275, -0.030351806432008743, 0.010837138630449772, 0.001677118125371635, -0.013211732730269432, -0.02812379226088524, 0.003227200359106064, 0.009136812761425972, 0.022788284346461296, -0.053863219916820526, -0.0643387958407402, -0.03738764300942421, -0.03734855353832245, 0.06285345554351807, 0.033048875629901886, -0.038306210190057755, 0.035355065017938614, 0.07309450209140778, -0.038540735840797424, 0.06973293423652649, 0.049094486981630325, -0.012410429306328297, -0.01435505598783493, -0.010065151378512383, -0.053315989673137665, -0.0605863519012928, 0.020443007349967957, 0.024058643728494644, 0.006351794581860304, -0.0392247773706913, -0.00421661464497447, 0.038853440433740616, 0.009600982069969177, 0.06879482418298721, -0.008457658812403679, -0.018625415861606598, 0.02132248692214489, 0.0029682426247745752, 0.054332274943590164, 0.009718245826661587, -0.0276547372341156, -0.009000004269182682, -0.014149844646453857, 0.030058646574616432, 0.004859122913330793, -0.04233226925134659, 0.015635186806321144, -0.01655375398695469, -0.04917266219854355, -0.05186973139643669, 0.008574922569096088, 0.020892519503831863, -0.0019116458715870976, 0.009947887621819973, -0.04452119395136833, 0.019114015623927116, -0.029140079393982887, -0.00843322928994894, 0.04244953393936157, -0.07512707263231277, 0.015459291636943817, -0.003073291387408972, 0.021752454340457916, -0.05495768412947655, 0.04557656869292259, -0.07532251626253128, -0.03111402317881584, -0.021459294483065605, 0.023785028606653214, -0.007587951608002186, -0.0023538286332041025, 0.031211743131279945, 0.025719882920384407, -0.01186319813132286, -0.016856685280799866, 0.032208483666181564, 0.0026604249142110348, -0.030879493802785873, -0.0159576628357172, 0.03914659842848778, 0.020697079598903656, -0.0035789920948445797, 0.008491860702633858, -0.013690561056137085, -0.050188951194286346, -0.0019275253871455789, 0.025192195549607277, 0.020716622471809387, 0.042527709156274796, -0.048586342483758926, -0.014140072278678417, 0.02398046851158142, -0.017872972413897514, -0.017364829778671265, 0.007285019848495722, 0.07262544333934784, 0.07551795244216919, -0.04076875001192093, 0.010221503674983978, 0.05323781073093414, 0.019553756341338158, -0.04182412475347519, 0.07200003415346146, -0.01353420875966549, -0.06445606052875519, -0.0334397554397583, -0.018459292128682137, 0.0006877039559185505, 0.024801315739750862, 0.050618916749954224, -0.00617589894682169, -0.033830635249614716, 0.045146603137254715, 0.03205213323235512, -0.04835181683301926, 0.019915319979190826, 0.013348541222512722, 0.014657988213002682, 0.013583068735897541, -0.00014619815920013934, -0.016641702502965927, -0.023120533674955368, 0.018596101552248, -0.03426060453057289, 0.006322478875517845, 0.003820848884060979, -0.009566780179738998, -0.03203259035944939, -0.020052127540111542, -0.02792835235595703, 0.05949188768863678, -0.03553096204996109, 0.04217591881752014, -0.035433243960142136, -0.0059218271635472775, 0.07067104429006577, 0.02157655730843544, 0.0014413688331842422, -0.06570687144994736, -0.045459307730197906, 0.005863195285201073, -0.017765481024980545, 0.0023916950449347496, 0.037524450570344925, 0.001337541383691132, -0.01104235090315342, -0.04827364161610603, -0.0349641889333725, -0.04971989616751671, -0.005833879113197327, -0.03971337527036667, 0.0319153256714344, -0.04471663385629654, 0.03574594482779503, -0.010309451259672642, 0.04921175166964531, 0.01406189613044262, 0.08192837983369827, 0.05390230938792229, 0.0018591214902698994, -0.009982089512050152, -0.04072966426610947, 0.006493488792330027, 0.02472314052283764, 0.01524430699646473, -0.029140079393982887, -0.03261891007423401, -0.004265474621206522, 0.03400653228163719, 0.024429980665445328, 0.021928349509835243, 0.0019458478782325983, -0.009043978527188301, -0.05667755380272865, -0.056755729019641876, -0.02345278114080429, 0.0014816782204434276, 0.0033982102759182453, -0.008511405438184738, 0.06664498150348663, -0.005242673680186272, 0.010700331069529057, 0.06281436234712601, 0.03816939890384674, -0.040925100445747375, 0.06398700177669525, 0.035667769610881805, -0.040143344551324844, 0.06179807707667351, -0.009649842046201229, 0.027811089530587196, -0.04710100218653679, -0.013514664955437183, -0.0013900658814236522, 0.015058639459311962, -0.0027043987065553665, 0.09482740610837936, 0.07180459797382355, -0.04506842792034149, 0.06902935355901718 ]
18,590
pygal.graph.public
__call__
Call api: chart(1, 2, 3, title='T')
def __call__(self, *args, **kwargs): """Call api: chart(1, 2, 3, title='T')""" self.raw_series.append((args, kwargs)) return self
(self, *args, **kwargs)
[ -0.06515363603830338, -0.06136763468384743, -0.008535712026059628, 0.026175035163760185, 0.011693581007421017, 0.05221239849925041, -0.06983450800180435, 0.06388016790151596, 0.0430571585893631, 0.0033579247538000345, 0.049183595925569534, 0.02741408906877041, 0.04495015740394592, -0.05765047296881676, -0.00561876967549324, 0.018912795931100845, 0.032094962894916534, 0.01646050065755844, -0.012364735826849937, -0.026020152494311333, -0.0078086270950734615, -0.012803567573428154, -0.03638003021478653, 0.00010332179954275489, 0.026002943515777588, 0.07826697081327438, -0.00555423554033041, 0.011426839977502823, -0.019842088222503662, -0.03727490082383156, -0.016047481447458267, -0.028997326269745827, -0.06267552822828293, 0.05668676272034645, 0.009112216532230377, 0.01212380826473236, -0.06783825904130936, -0.0002367595152463764, -0.09155239164829254, 0.055757470428943634, 0.04295390471816063, -0.04226553812623024, 0.04973428696393967, 0.016185155138373375, -0.011504280380904675, -0.030442891642451286, -0.0051154037937521935, 0.010471735149621964, 0.03436656296253204, -0.07138332724571228, 0.017209095880389214, 0.04078555852174759, -0.010678243823349476, -0.0243164524435997, -0.04143950343132019, 0.058820690959692, 0.02658805251121521, 0.09602675586938858, 0.03181961923837662, 0.06529130786657333, 0.0049820332787930965, 0.04653339460492134, 0.028894072398543358, 0.00219308421947062, -0.0020919807720929384, 0.006350156385451555, -0.0026007245760411024, -0.007864557206630707, 0.01609911024570465, -0.0047884308733046055, 0.05868301913142204, 0.03013312630355358, 0.016477709636092186, 0.018052341416478157, -0.011340794153511524, -0.010248016566038132, -0.04130183160305023, 0.009267098270356655, 0.0025835155975073576, 0.026381544768810272, -0.032748911529779434, 0.014120063744485378, -0.02717316336929798, 0.04722176119685173, -0.0174242090433836, -0.0420590303838253, -0.04285065084695816, -0.020582078024744987, -0.056411415338516235, 0.06088578328490257, -0.03240472823381424, 0.023679716512560844, -0.06749407202005386, 0.025245744735002518, -0.016253991052508354, -0.054243069142103195, -0.013354258611798286, -0.034091219305992126, -0.003968847915530205, 0.02175229787826538, -0.04587944969534874, -0.0188955869525671, 0.01186567172408104, -0.043952032923698425, 0.007158983964473009, -0.0746186375617981, -0.002044655615463853, -0.011366607621312141, -0.027121534571051598, 0.033041466027498245, 0.01649491861462593, 0.033041466027498245, 0.005265983287245035, -0.05331378057599068, -0.029410345479846, 0.03226705640554428, 0.006784685887396336, -0.017338164150714874, -0.04219670221209526, -0.0028201406821608543, -0.01486865896731615, 0.025383416563272476, 0.030614981427788734, 0.03572608157992363, -0.011745207943022251, 0.03200891986489296, 0.001917738583870232, 0.00924988929182291, 0.011142889969050884, -0.059922073036432266, 0.06480945646762848, -0.00416460121050477, 0.015135399997234344, -0.01219264417886734, 0.040510211139917374, 0.013087517581880093, 0.08583897352218628, -0.0377911739051342, -0.055723052471876144, 0.009903835132718086, 0.006414690520614386, 0.027689434587955475, 0.022423451766371727, 0.044640395790338516, -0.029461972415447235, -0.006827708799391985, -0.019153723493218422, 0.012708917260169983, 0.005597258452326059, 0.018224433064460754, 0.0377911739051342, 0.012519617564976215, 0.037378158420324326, -0.012356131337583065, 0.009508025832474232, -0.026932235807180405, -0.0058726039715111256, 0.028412217274308205, 0.019429069012403488, 0.0011831253068521619, -0.029720108956098557, -0.005868301726877689, 0.022062061354517937, -0.016047481447458267, -0.037481412291526794, 0.006930963601917028, -0.008496991358697414, -0.028274545446038246, -0.02441970817744732, 0.05964672565460205, 0.07964369654655457, -0.007627931889146566, 0.001620881725102663, 0.03063219040632248, -0.02576201595366001, -0.0020650916267186403, 0.005640281364321709, 0.043229248374700546, 0.009852207265794277, 0.002893279306590557, -0.012054971419274807, -0.007967811077833176, -0.08040089905261993, -0.03464191034436226, 0.008471177890896797, -0.048357561230659485, 0.02958243526518345, -0.01128916721791029, -0.013345654122531414, 0.03651770204305649, 0.024213198572397232, 0.026932235807180405, 0.03768792003393173, -0.0017736124573275447, 0.019239770248532295, -0.06350156664848328, -0.0023640994913876057, 0.010919171385467052, -0.026863398030400276, 0.02774106338620186, 0.019738832488656044, 0.033540528267621994, 0.02720758132636547, -0.04522550478577614, 0.03508934751152992, 0.016322826966643333, 0.03951208293437958, 0.016417477279901505, -0.08212180435657501, -0.08625198900699615, 0.0486329048871994, 0.006724454462528229, 0.00011831253505079076, 0.012321712449193, -0.018017923459410667, 0.04663664847612381, 0.00626841327175498, -0.02608899027109146, 0.02376576140522957, -0.041060902178287506, 0.030219173058867455, -0.016348641365766525, -0.007554793264716864, -0.027895944193005562, 0.03250798210501671, -0.03693072125315666, 0.06708105653524399, -0.05469050630927086, -0.017931878566741943, -0.050663579255342484, -0.029668482020497322, -0.015359118580818176, 0.0028825236950069666, 0.004132334142923355, -0.07069496810436249, -0.007034217938780785, 0.015797950327396393, -0.027482926845550537, -0.018981633707880974, -0.01477400865405798, 0.031045209616422653, 0.044674813747406006, 0.029255462810397148, 0.019102096557617188, -0.051317524164915085, 0.01219264417886734, -0.008471177890896797, 0.11089541763067245, -0.01702840067446232, -0.018086759373545647, 0.016512127593159676, -0.026828980073332787, -0.007541886530816555, 0.014799822121858597, -0.018017923459410667, -0.04381435737013817, 0.05503468960523605, 0.034332145005464554, 0.03508934751152992, -0.038789302110672, -0.053520288318395615, 0.023490415886044502, -0.02402389794588089, 0.018947213888168335, 0.0035536782816052437, -0.010445921681821346, -0.011547303758561611, 0.02944476343691349, -0.032680071890354156, 0.06412108987569809, 0.03118288144469261, 0.0022995653562247753, 0.005674699321389198, -0.014008204452693462, -0.008419550023972988, 0.019394651055336, 0.01145265344530344, -0.0716586783528328, -0.05506910756230354, -0.02116718888282776, 0.05014730617403984, -0.034263309091329575, 0.0236625075340271, 0.006849220022559166, 0.02369692549109459, -0.04443388432264328, 0.07744093239307404, 0.038100939244031906, -0.007731186226010323, -0.031045209616422653, 0.004715292248874903, 0.03496888279914856, -0.02066812478005886, 0.00842815451323986, -0.01831047795712948, 0.0348312109708786, 0.031991709023714066, -0.0013584430562332273, -0.015978645533323288, 0.010273830033838749, 0.015204235911369324, -0.08095158636569977, 0.04663664847612381, 0.015927018597722054, -0.044778067618608475, -0.04429621249437332, 0.051351942121982574, 0.019497904926538467, -0.03250798210501671, -0.061402056366205215, -0.01918814145028591, 0.07957486063241959, -0.004947615321725607, -0.00227160076610744, -0.0801943838596344, -0.004754012916237116, -0.014343781396746635, 0.021442534402012825, 0.04054462909698486, 0.038926973938941956, -0.041852522641420364, -0.06873312592506409, -0.009800580330193043, -0.017897460609674454, 0.09547606110572815, 0.07916184514760971, -0.04236879572272301, -0.03395354747772217, 0.025125280022621155, 0.01521284133195877, 0.0029363019857555628, -0.005063776392489672, 0.028773607686161995, 0.041749268770217896, -0.037378158420324326, -0.037515830248594284, -0.062124837189912796, 0.00318368268199265, 0.0019962552469223738, -0.006763174664229155, -0.0028115359600633383, -0.017148863524198532, -0.028928490355610847, 0.019016051664948463, -0.012218458577990532, 0.00460773566737771, 0.02918662689626217, -0.02099509723484516, 0.0499407984316349, 0.014593313448131084, 0.020392779260873795, -0.03414284810423851, 0.010609407909214497, 0.03875488415360451, 0.06983450800180435, 0.030976373702287674, 0.028377799317240715, 0.01368983555585146, -0.0450189970433712, -0.06993776559829712, 0.04085439443588257, -0.028635935857892036, 0.0017176829278469086, 0.0637424886226654, -0.012846590019762516, 0.017243513837456703, 0.018379313871264458, 0.03395354747772217, 0.015625858679413795, -0.02593410760164261, -0.019239770248532295, -0.02648479864001274, 0.0384451188147068, 0.04887383431196213, -0.02698386274278164, 0.037550248205661774, 0.0070686363615095615, -0.03374703601002693, -0.04973428696393967, -0.05799465253949165, 0.010050112381577492, -0.03617351874709129, -0.0116677675396204, -0.0006211408181115985, 0.058545343577861786, 0.0043904706835746765, -0.046120379120111465, -0.011005217209458351, 0.003327809041365981, -0.008432457223534584, 0.02586527168750763, -0.07158984243869781, -0.056308161467313766, -0.0044614579528570175, -0.07303540408611298, -0.08163995295763016, 0.06085136532783508, -0.006750267930328846, -0.0525909960269928, -0.024213198572397232, 0.03446982055902481, -0.09822952002286911, 0.02720758132636547, -0.019601160660386086, 0.01751025579869747, -0.053451452404260635, 0.018878377974033356, 0.006264111027121544, 0.01387053169310093, -0.005270285531878471, 0.014085644856095314, -0.05176496133208275, -0.08783522248268127, -0.005812372080981731, -0.014464245177805424, 0.034297727048397064, -0.028154080733656883, -0.00113364914432168, -0.020616497844457626, 0.004285064991563559, 0.05833883583545685, 0.023352744057774544, -0.005459585692733526, 0.08831708133220673, 0.07578885555267334, 0.023455997928977013, -0.005610165186226368, 0.007292354479432106, 0.039649758487939835, 0.00010029676195699722, -0.008075368590652943, -0.023077398538589478, -0.08459991961717606, 0.013793090358376503, -0.00007172697223722935, 0.0177425779402256, -0.012485199607908726, -0.046980831772089005, 0.011392422020435333, 0.07045403867959976, -0.006212483625859022, -0.008737918920814991, 0.005597258452326059, -0.03125171735882759, -0.04391761124134064, -0.06109229102730751, -0.040372539311647415, -0.042437631636857986, 0.007361190859228373, -0.08680268377065659, 0.031303346157073975, 0.07248470932245255, 0.05840767174959183, -0.016348641365766525, 0.0030029872432351112, -0.070350781083107, -0.015754926949739456, -0.06718431413173676, 0.024901561439037323, 0.02484993450343609, 0.013732858933508396, -0.006595386192202568, -0.06250343471765518, -0.04519108682870865, 0.004586223978549242, -0.007782813627272844, 0.014498663134872913, -0.026364335790276527, -0.06501596421003342, -0.021339278668165207, 0.05823558196425438, -0.019205350428819656, -0.04419295862317085, -0.007778511382639408, 0.0044958763755857944, 0.018689079210162163, -0.031268928200006485, -0.039684176445007324, -0.02954801730811596, -0.008432457223534584, -0.031957291066646576, -0.009680116549134254, 0.022956933826208115, 0.03360936418175697, -0.009327329695224762, 0.06608293205499649, 0.05837325379252434, -0.025280162692070007, -0.012149621732532978, 0.001913436339236796, 0.0003323506680317223, 0.0450189970433712, -0.007834441028535366, 0.008445363491773605, 0.0028760700952261686, 0.006436201743781567, 0.041749268770217896, 0.006939568091183901, -0.011555908247828484, 0.012054971419274807, -0.022629961371421814, -0.010196389630436897, -0.006879336200654507, -0.04525992274284363, 0.025280162692070007, -0.011951717548072338, 0.042678557336330414, 0.0650848001241684, -0.06828569620847702, -0.010661034844815731, -0.0502849780023098, -0.0001672508951742202, -0.030219173058867455, 0.039684176445007324, 0.024557380005717278, -0.033368438482284546, -0.01770815998315811, 0.043332502245903015, -0.037378158420324326, -0.004964824300259352, 0.044778067618608475, 0.029066164046525955, 0.01040289830416441, -0.019824879243969917, 0.0077096750028431416, 0.003983905538916588, -0.041921358555555344, -0.009473606944084167, -0.0335233174264431, 0.048288725316524506, -0.01152148935943842, -0.014206108637154102, -0.030769864097237587, 0.03933999314904213, 0.006384574808180332, 0.03326518088579178, -0.048323143273591995, 0.04422737658023834, 0.04123299568891525, 0.020427197217941284, -0.015290281735360622, 0.0021134919952601194, 0.019084887579083443, -0.055757470428943634, -0.026364335790276527, -0.09100169688463211, 0.04849523305892944, 0.01441261824220419, 0.0486329048871994, -0.00674596568569541, -0.017949087545275688, -0.04519108682870865, 0.03132055327296257, 0.07358609139919281, 0.001755327801220119, 0.03247356414794922, -0.008557222783565521, -0.019566742703318596, -0.02793036215007305, -0.006384574808180332, -0.004797035362571478, 0.02958243526518345, 0.03247356414794922, -0.0006491055828519166, -0.0558607243001461, 0.049252431839704514, 0.06184948980808258, 0.0450189970433712, -0.0903821736574173, -0.06563549488782883, -0.009766162373125553, -0.016907935962080956, -0.027551762759685516, -0.0087121045216918, -0.011271958239376545, 0.03360936418175697, 0.05448399856686592, -0.022165315225720406, -0.01071266271173954, -0.002880372339859605, -0.051214270293712616, 0.002318925689905882, -0.017338164150714874, -0.06357040256261826, -0.03402238339185715, 0.06246901676058769, 0.0060274857096374035, 0.010265225544571877, 0.044020868837833405, 0.01886116899549961, 0.01311333104968071, -0.047669194638729095, -0.02720758132636547, 0.007670954335480928, 0.015978645533323288, 0.017148863524198532, -0.03937441110610962, -0.054139815270900726, -0.024695053696632385, -0.0016090504359453917, -0.03428051993250847, 0.08879893273115158, 0.02218252420425415, -0.0061780656687915325, 0.004547503776848316, 0.009404771029949188, -0.031664736568927765, 0.049286849796772, -0.06825127452611923, -0.01820722408592701, -0.007210611365735531, 0.024832725524902344, -0.0030632191337645054, 0.022044852375984192, 0.038238611072301865, 0.007008404470980167, -0.024574588984251022, 0.018035132437944412, 0.06191832572221756, 0.014214713126420975, 0.0023877620697021484, 0.040406957268714905, -0.05809790641069412, 0.02484993450343609, -0.06305412948131561, -0.020564869046211243, 0.038995809853076935, -0.06563549488782883, 0.011065448634326458, -0.03775675594806671, 0.02478109858930111, 0.0021694216411560774, 0.033110301941633224, -0.044709231704473495, 0.044778067618608475, -0.0486329048871994, -0.005343424156308174, 0.027758272364735603, 0.004629246890544891, -0.03118288144469261, 0.03803210332989693, 0.007825836539268494, -0.0016262595308944583, -0.0065265498124063015, 0.027620598673820496, 0.05365796014666557, -0.05978440120816231, -0.028962908312678337, 0.03699955716729164, 0.004487271886318922, 0.0018768670270219445, -0.024368079379200935, -0.03796326741576195, 0.07179635018110275, 0.03496888279914856, 0.10180900990962982, 0.00793769583106041, -0.01886116899549961, 0.01587539166212082, -0.04856406897306442, -0.03171636536717415, 0.01515260897576809, -0.04804779589176178, 0.02684618905186653, 0.010661034844815731, -0.021872760728001595, -0.024436917155981064, -0.019463486969470978, -0.004319482948631048, 0.027517344802618027, 0.0077656046487390995, -0.0021500615403056145, -0.005769349634647369, 0.03118288144469261, 0.03696513921022415, 0.01406843587756157, -0.021666251122951508, 0.021270442754030228, 0.03699955716729164, 0.004104369319975376, -0.055757470428943634, -0.01610771380364895, -0.004448551218956709, -0.009731743484735489, -0.05985323712229729, 0.044743649661540985, -0.020220687612891197, 0.0008970241178758442, -0.009095007553696632, -0.05173054337501526, 0.02040998823940754, -0.006784685887396336, -0.03638003021478653, -0.00851420033723116, 0.03441819176077843, -0.04099206626415253, -0.05868301913142204, -0.1166776716709137, 0.047600358724594116, 0.028549890965223312, 0.011263353750109673, 0.0059844632633030415, -0.001130422460846603, -0.00014210949302650988, 0.03627677261829376, 0.013190772384405136, 0.027878735214471817, -0.029410345479846, 0.03792884945869446, -0.013534953817725182, 0.011151494458317757, 0.06797593086957932, 0.034263309091329575, 0.03651770204305649, 0.002162968274205923, -0.0058510927483439445, 0.002398517681285739, 0.021803924813866615, -0.034228891134262085, 0.07303540408611298, -0.029720108956098557, -0.004986335523426533, 0.046980831772089005, 0.01387053169310093, 0.025882480666041374, 0.033334020525217056, 0.027069907635450363, 0.016322826966643333, 0.0414050854742527, -0.04787570610642433, -0.013053099624812603, -0.024832725524902344, -0.0024931677617132664, -0.0177425779402256, 0.05296959728002548, -0.01751025579869747, -0.012829381041228771, 0.019205350428819656, 0.04209344834089279, -0.04883941635489464, -0.05462167039513588, -0.015376327559351921, -0.02424761652946472, -0.05303843319416046, 0.03920232132077217, -0.019446277990937233, 0.0318884551525116, 0.011005217209458351, 0.01324239932000637, 0.013973785564303398, 0.014498663134872913, 0.060748107731342316, -0.04673990607261658, 0.077578604221344, 0.030477309599518776, -0.023972271010279655, 0.020151851698756218, 0.057134199887514114, 0.026897817850112915, -0.0338502936065197, -0.051351942121982574, 0.016288409009575844, 0.020289523527026176, -0.0009572559501975775, 0.06690896302461624, 0.019532324746251106, 0.03858279436826706, 0.032026126980781555 ]
18,591
pygal.graph.base
__getattribute__
Get an attribute from the class or from the state if there is one
def __getattribute__(self, name): """Get an attribute from the class or from the state if there is one""" if name.startswith('__') or name == 'state' or getattr( self, 'state', None) is None or name not in self.state.__dict__: return super(BaseGraph, self).__getattribute__(name) return getattr(self.state, name)
(self, name)
[ 0.028474129736423492, -0.03364484757184982, 0.03018011525273323, 0.05529503896832466, -0.01280368585139513, -0.04101400449872017, 0.018343741074204445, -0.03308204934000969, 0.05772211030125618, -0.017253318801522255, -0.017517130821943283, 0.03732063248753548, 0.027753043919801712, 0.02743646875023842, -0.01924070343375206, 0.03429558500647545, 0.01613651216030121, 0.02896657958626747, -0.025185272097587585, 0.025220446288585663, 0.00818257499486208, 0.004946478642523289, -0.01460640225559473, -0.015274726785719395, 0.0319916270673275, 0.06064163148403168, 0.013823759742081165, 0.018941715359687805, 0.04607919603586197, -0.03510461002588272, -0.04231547564268112, -0.026381220668554306, 0.0008584888419136405, 0.01425465289503336, 0.02128085121512413, 0.007562616374343634, -0.02370792254805565, 0.03237855061888695, -0.09039964526891708, -0.01431620866060257, 0.014826245605945587, -0.04330037534236908, -0.034102123230695724, 0.006867910735309124, 0.02249438688158989, -0.05195341631770134, 0.015846319496631622, -0.013797378167510033, -0.012363998219370842, -0.07246042042970657, 0.059832606464624405, 0.012979560531675816, 0.02068287692964077, 0.058636657893657684, -0.0058258529752492905, 0.0019049439579248428, -0.0024820331018418074, 0.03946630656719208, -0.015556125901639462, 0.09609799087047577, -0.03499908372759819, -0.004726635292172432, 0.04319485276937485, -0.06721934676170349, -0.04439080134034157, -0.06289283186197281, -0.02379585988819599, 0.022758198902010918, -0.0770331621170044, 0.02369033545255661, -0.03438352420926094, 0.0319916270673275, 0.040697429329156876, 0.014984533190727234, -0.008354052901268005, -0.021790888160467148, -0.03812965750694275, -0.002429270651191473, 0.035544298589229584, -0.042632050812244415, -0.02803444303572178, 0.00733397901058197, -0.042878277599811554, -0.002438064431771636, -0.0728825181722641, -0.029775604605674744, 0.01046455092728138, -0.028298255056142807, -0.0635259747505188, -0.02441142313182354, -0.049491167068481445, 0.09905268996953964, -0.016426706686615944, 0.0670434758067131, 0.005935774650424719, -0.02272302471101284, 0.021210500970482826, 0.01959245279431343, 0.009655526839196682, 0.023743098601698875, -0.010807506740093231, 0.004832160193473101, -0.029388679191470146, 0.0017213745741173625, 0.012548667378723621, -0.025572195649147034, -0.004049517214298248, -0.0315343514084816, 0.01850202865898609, -0.03543877229094505, -0.0415768027305603, -0.0239365603774786, -0.0099721010774374, 0.03427799791097641, 0.026486745104193687, -0.022441623732447624, 0.017613861709833145, 0.0015806747833266854, -0.00658211437985301, -0.0019961788784712553, -0.013964459300041199, 0.04759171977639198, 0.003796697361394763, 0.05265691503882408, 0.01769300550222397, 0.03841105476021767, 0.0031107855029404163, -0.014949358068406582, 0.05589301139116287, -0.034102123230695724, 0.002306158421561122, -0.012583841569721699, -0.03858692944049835, 0.02358481101691723, 0.030232878401875496, 0.03438352420926094, 0.06299835443496704, 0.04565709829330444, -0.02008490264415741, 0.03869245573878288, 0.03128812834620476, -0.01996178925037384, 0.03227302432060242, -0.03837588056921959, -0.015468188561499119, 0.017226936295628548, -0.00907513964921236, 0.030637390911579132, 0.009585176594555378, -0.022300925105810165, 0.034823209047317505, -0.005350990686565638, 0.013911697082221508, 0.00030915491515770555, -0.023356173187494278, 0.009488445706665516, -0.0992637351155281, -0.021808475255966187, -0.009057552553713322, -0.02175571210682392, -0.07274181395769119, 0.0001865921658463776, -0.05613923445343971, -0.10299228131771088, 0.01348080299794674, -0.010482138022780418, 0.02370792254805565, -0.026996782049536705, -0.00469146016985178, 0.030232878401875496, -0.07555581629276276, -0.03230820223689079, 0.0031943260692059994, 0.07745525985956192, -0.04748619720339775, 0.04808416962623596, -0.027594756335020065, 0.030355989933013916, 0.048893194645643234, 0.024217959493398666, 0.01913517899811268, -0.01221450511366129, -0.08167625963687897, -0.016074957326054573, 0.03703923150897026, -0.010737156495451927, 0.02537873387336731, -0.006067680660635233, 0.031921274960041046, 0.07724421471357346, 0.022177811712026596, 0.00967311393469572, -0.006410636473447084, -0.001876364229246974, 0.02321547456085682, -0.025660132989287376, -0.0038890314754098654, 0.0258535947650671, 0.0013113664463162422, 0.08997754752635956, 0.04031050577759743, 0.011018556542694569, -0.01202983595430851, 0.05423978716135025, -0.042737577110528946, 0.031692638993263245, 0.06531990319490433, 0.00847276858985424, -0.02309236116707325, -0.008208956569433212, -0.06468675285577774, -0.01708623766899109, 0.008648643270134926, 0.06282247602939606, 0.01486142072826624, -0.030144941061735153, 0.0022402051836252213, 0.018976891413331032, 0.01839650422334671, 0.05022984370589256, 0.052867963910102844, 0.0019994766917079687, 0.04463702440261841, 0.01251349225640297, -0.038059305399656296, -0.04266722500324249, -0.010051244869828224, -0.008657436817884445, -0.05853113532066345, -0.028456542640924454, 0.055259861052036285, -0.010684394277632236, 0.06429982930421829, 0.016857599839568138, 0.04133057966828346, 0.030021827667951584, 0.019574865698814392, 0.003919809591025114, -0.03019770234823227, 0.019170353189110756, -0.031938862055540085, -0.03568499535322189, -0.006766783073544502, -0.0003583448997233063, -0.01684880629181862, -0.02369033545255661, 0.012073804624378681, 0.030127353966236115, -0.05930498242378235, -0.01057886891067028, -0.008547515608370304, 0.017411604523658752, -0.045270174741744995, -0.0000920594684430398, 0.015652857720851898, -0.073656365275383, -0.036511607468128204, -0.024147609248757362, 0.02428830973803997, 0.01106252521276474, -0.04379282519221306, -0.008631056174635887, -0.011009762063622475, 0.04667717218399048, 0.028227904811501503, 0.013902902603149414, 0.053465940058231354, 0.014237064868211746, -0.04748619720339775, 0.000608966511208564, 0.07450056821107864, -0.015819938853383064, -0.02129843831062317, 0.021685363724827766, -0.0007524144020862877, -0.09096244722604752, -0.003807689528912306, -0.027629930526018143, -0.024481771513819695, -0.02200193703174591, 0.026785731315612793, 0.025273209437727928, -0.029546966776251793, 0.06373702734708786, -0.0653550773859024, -0.03452422469854355, 0.023637572303414345, -0.04185820370912552, 0.011625324375927448, 0.02560737170279026, 0.08519375324249268, 0.016760868951678276, -0.0043485043570399284, -0.015696825459599495, 0.037355806678533554, -0.051390618085861206, -0.02719024382531643, 0.05378251522779465, 0.010455756448209286, 0.026258107274770737, 0.055611610412597656, -0.019750740379095078, -0.056350287050008774, 0.03227302432060242, -0.026486745104193687, 0.0227054376155138, 0.043265201151371, 0.033381037414073944, -0.014351383782923222, 0.008367243222892284, 0.0060061244294047356, 0.03116501495242119, -0.01682242378592491, 0.03971252962946892, 0.023619985207915306, -0.016303593292832375, -0.02655709534883499, -0.01610133796930313, 0.04674752056598663, 0.09251014143228531, -0.06166170537471771, 0.03749650716781616, -0.03549153357744217, 0.029423853382468224, -0.04892836883664131, 0.02706713229417801, 0.0015224162489175797, 0.01587270013988018, -0.01625083200633526, -0.0006265539559535682, -0.056315112859010696, -0.016567405313253403, 0.015899082645773888, 0.015846319496631622, -0.06514402478933334, 0.040099453181028366, 0.024376247078180313, 0.0303032286465168, 0.03209714964032173, -0.0495615191757679, 0.03841105476021767, 0.039958756417036057, -0.043722476810216904, 0.020718051120638847, 0.018115105107426643, 0.017411604523658752, 0.006142427213490009, 0.028790704905986786, 0.07052579522132874, -0.04667717218399048, -0.07098306715488434, -0.05856630951166153, -0.0020852156449109316, 0.03630055859684944, -0.006815148517489433, -0.014711926691234112, 0.009242220781743526, -0.016074957326054573, -0.015433013439178467, 0.04175267741084099, 0.03139365091919899, -0.028562067076563835, -0.026715382933616638, -0.017490748316049576, 0.012284854426980019, -0.03717993199825287, -0.020049726590514183, -0.005883011966943741, 0.019398991018533707, -0.053219713270664215, -0.025818420574069023, -0.029494203627109528, -0.005179512780159712, -0.016312386840581894, -0.008991599082946777, 0.027014369145035744, 0.002756837522611022, -0.036617133766412735, 0.05051124095916748, 0.04470737278461456, 0.02212505042552948, 0.0004935486358590424, -0.019170353189110756, 0.07766631245613098, 0.03392624855041504, -0.0137709965929389, 0.012144154869019985, -0.015811145305633545, 0.04199890047311783, -0.007285613566637039, -0.02066528983414173, -0.05107404291629791, -0.04931529238820076, -0.011387892998754978, -0.043124500662088394, -0.05378251522779465, 0.034823209047317505, -0.060289882123470306, 0.020401475951075554, -0.025343557819724083, -0.014289827086031437, 0.015591301023960114, 0.02597670815885067, -0.00007206745067378506, 0.00853872112929821, 0.00484535051509738, 0.02057735249400139, 0.053219713270664215, -0.03907937929034233, -0.05392321199178696, 0.003086602780967951, 0.04509430006146431, -0.052375514060258865, -0.04931529238820076, 0.03257201239466667, -0.03714475780725479, 0.09152524918317795, 0.0014124944573268294, 0.05568196251988411, 0.02729576826095581, 0.005060797557234764, 0.04305415228009224, 0.02045423910021782, -0.0406622551381588, -0.014289827086031437, 0.020876338705420494, -0.006036902312189341, 0.03100672736763954, 0.016453087329864502, 0.09138454496860504, -0.025923945009708405, 0.009488445706665516, -0.036159858107566833, -0.000844199035782367, 0.04354660212993622, -0.03591363504528999, -0.0029964668210595846, -0.008336465805768967, -0.03018011525273323, 0.043265201151371, -0.031340889632701874, 0.024745583534240723, 0.005263053346425295, 0.013155435211956501, -0.017983198165893555, -0.05955120921134949, -0.030725328251719475, 0.05075746774673462, 0.06961124390363693, -0.0831536054611206, -0.05504881218075752, -0.005500484257936478, 0.02249438688158989, -0.004801381845027208, -0.027014369145035744, 0.004524379037320614, -0.03809448331594467, -0.051636841148138046, 0.04122505336999893, 0.021228088065981865, -0.056315112859010696, 0.02356722392141819, -0.04797864705324173, -0.03318757563829422, -0.029283154755830765, -0.04245617613196373, 0.016417913138866425, -0.01983867771923542, -0.022547150030732155, -0.016162894666194916, 0.06338527798652649, -0.026732970029115677, -0.013428040780127048, -0.0704202726483345, -0.0222481619566679, -0.01455364003777504, -0.04643094912171364, 0.00986657664179802, -0.023725509643554688, -0.07200314104557037, -0.029019342735409737, 0.03630055859684944, -0.008850899524986744, -0.00962914526462555, 0.016760868951678276, 0.02884346805512905, -0.015037295408546925, 0.05423978716135025, 0.04379282519221306, -0.01946934126317501, -0.04544604942202568, 0.035034261643886566, 0.020278364419937134, 0.02729576826095581, 0.032536838203668594, 0.033750373870134354, 0.024253135547041893, -0.0034933132119476795, 0.03608950972557068, 0.0006463399040512741, -0.029793191701173782, -0.02599429525434971, 0.011792405508458614, 0.0199442021548748, 0.0010085320100188255, -0.0036647911183536053, -0.040099453181028366, 0.015345076099038124, 0.06218932941555977, 0.018572378903627396, 0.04667717218399048, 0.027225419878959656, 0.017376430332660675, -0.0001251733920071274, 0.015837525948882103, -0.06429982930421829, 0.004060509614646435, 0.032149914652109146, -0.01862514205276966, 0.034911148250103, 0.0606064572930336, -0.0042143999598920345, -0.032659951597452164, -0.03135847672820091, -0.05469706282019615, 0.026891257613897324, -0.0023391349241137505, -0.003442749148234725, -0.028913816437125206, -0.0023083568084985018, 0.03429558500647545, -0.006085268221795559, 0.001144285430200398, 0.10693188011646271, 0.015010913833975792, 0.0022248162422329187, -0.046712346374988556, 0.028913816437125206, -0.08160590380430222, 0.009585176594555378, 0.08019890636205673, -0.06208380311727524, 0.029371092095971107, 0.07696281373500824, -0.011379099451005459, -0.03596639633178711, -0.08111345767974854, -0.0011706666555255651, 0.00015444005839526653, -0.014456908218562603, -0.010095213539898396, -0.003838467411696911, -0.0500187948346138, -0.08800774812698364, 0.07407846301794052, -0.023883797228336334, 0.015072470530867577, 0.0428079254925251, -0.00937412679195404, 0.04699374735355377, -0.00883331149816513, -0.006648067384958267, 0.045762624591588974, 0.0038032925222069025, -0.019979378208518028, -0.03798895701766014, -0.015248345211148262, 0.011739643290638924, 0.027137482538819313, 0.005698343738913536, 0.015837525948882103, 0.03185092657804489, -0.006173205561935902, 0.04231547564268112, 0.0385165810585022, 0.04885802045464516, 0.020049726590514183, 0.043581776320934296, -0.006823942065238953, -0.03893868252635002, 0.0360543355345726, -0.006318302359431982, -0.035772934556007385, -0.0027348531875759363, -0.06166170537471771, -0.01322578452527523, -0.02019042707979679, 0.03364484757184982, 0.007646156940609217, -0.0500187948346138, -0.03475286066532135, -0.03207956254482269, 0.03929043188691139, 0.002262189518660307, 0.006014917977154255, 0.008371640928089619, 0.028702767565846443, -0.025044571608304977, -0.03563223406672478, 0.012750922702252865, -0.019152766093611717, 0.03149917721748352, 0.06384254992008209, 0.02344411052763462, -0.001284985220991075, -0.0052718473598361015, -0.0402049794793129, 0.01611013151705265, -0.049350470304489136, -0.0239365603774786, -0.010983381420373917, 0.016022194176912308, -0.010297469794750214, 0.043124500662088394, 0.013243372552096844, -0.035772934556007385, -0.011440656147897243, 0.04414457455277443, -0.03749650716781616, -0.010869062505662441, -0.004709047731012106, -0.01625083200633526, -0.03834070637822151, 0.016154101118445396, -0.05564678832888603, -0.020524589344859123, 0.05782763287425041, -0.07632966339588165, 0.025062158703804016, -0.014193096198141575, 0.011088905856013298, -0.01683121919631958, -0.0005930278566665947, -0.10721328109502792, -0.008701405487954617, -0.03929043188691139, 0.047099269926548004, 0.029195217415690422, -0.06848564743995667, 0.014492083340883255, -0.04818969592452049, 0.026381220668554306, -0.05226999148726463, -0.003970373421907425, -0.03827035799622536, -0.017165379598736763, -0.03640608489513397, -0.005553246941417456, 0.03404936194419861, -0.005623596720397472, -0.026433981955051422, -0.020507002249360085, -0.0009508231305517256, 0.03090120293200016, 0.03320516273379326, -0.054063912481069565, 0.0014113952638581395, 0.03248407691717148, 0.0368281826376915, -0.05902358144521713, -0.07752560824155807, 0.018818603828549385, -0.014984533190727234, 0.04460185021162033, 0.02140396274626255, -0.010895444080233574, -0.06345562636852264, -0.017974404618144035, -0.00772530073300004, -0.04674752056598663, 0.0005693946732208133, 0.07407846301794052, 0.02370792254805565, -0.049139417707920074, -0.06686759740114212, -0.022951660677790642, 0.05226999148726463, -0.04315967485308647, 0.07316391915082932, -0.012997147627174854, -0.0028733545914292336, 0.040099453181028366, -0.016303593292832375, 0.03837588056921959, 0.044074226170778275, 0.004229789134114981, 0.02020801417529583, -0.02381344884634018, 0.049491167068481445, -0.05775728449225426, -0.06855599582195282, -0.03343379870057106, 0.011546180583536625, 0.08153555542230606, 0.015292313881218433, -0.07428951561450958, -0.03862210735678673, 0.021966762840747833, 0.04365212470293045, 0.002250098157674074, 0.024464184418320656, -0.010701981373131275, -0.010429375804960728, -0.015345076099038124, 0.03841105476021767, 0.0205597635358572, -0.014835039153695107, -0.009936925955116749, 0.005526865366846323, 0.007993509992957115, 0.013542359694838524, -0.03378554806113243, -0.021439138799905777, -0.0021456724498420954, 0.07738491147756577, -0.009242220781743526, -0.06764144450426102, -0.009479652158915997, -0.0787215605378151, 0.06830976903438568, -0.05318453907966614, -0.004643094725906849, 0.016453087329864502, 0.02597670815885067, -0.004638697952032089, 0.06648067384958267, -0.025273209437727928, -0.011774817481637001, -0.0020313540007919073, 0.04667717218399048, -0.005658771842718124, 0.02321547456085682, -0.037953782826662064, 0.020647700875997543, 0.012232092209160328, 0.01257504802197218, 0.019697977229952812, 0.008639849722385406, -0.014175509102642536, 0.07407846301794052, -0.010086419992148876, 0.030021827667951584, -0.020348714664578438, 0.03369761258363724, -0.0005215787095949054, -0.0008266115328297019, -0.023971734568476677, 0.03519254922866821, -0.0015696826158091426, -0.03065497800707817, 0.038903504610061646, 0.029388679191470146, 0.029283154755830765, -0.011748436838388443, 0.08062101155519485, -0.02908969111740589, -0.027946505695581436, -0.03742615878582001, 0.037918608635663986, -0.05388803780078888, -0.04544604942202568, -0.029617317020893097, -0.0239365603774786, 0.025273209437727928, 0.018431678414344788, 0.023127535358071327, -0.034190062433481216, -0.005241069011390209 ]
18,592
pygal.graph.base
__init__
Config preparation and various initialization
def __init__(self, config=None, **kwargs): """Config preparation and various initialization""" if config: if isinstance(config, type): config = config() else: config = config.copy() else: config = Config() config(**kwargs) self.config = config self.state = None self.uuid = str(uuid4()) self.raw_series = [] self.xml_filters = []
(self, config=None, **kwargs)
[ -0.0008778945775702596, -0.0384194515645504, -0.013434014283120632, -0.040868647396564484, -0.011834726668894291, 0.024747829884290695, -0.07998264580965042, 0.03472738340497017, 0.008983425796031952, -0.025643430650234222, -0.030322488397359848, 0.07873976975679398, -0.006895213387906551, 0.048910778015851974, 0.01617565006017685, 0.02407155930995941, -0.004507705569267273, 0.01402803510427475, 0.01900867372751236, -0.05885377526283264, -0.01915489323437214, 0.0014553515939041972, -0.07194051891565323, 0.11953531205654144, 0.04518215358257294, 0.05355327948927879, -0.011533146724104881, -0.019045228138566017, -0.015864931046962738, -0.02390706166625023, 0.01703469641506672, 0.009815054945647717, -0.013909230940043926, 0.014174255542457104, -0.005423869006335735, -0.04737546294927597, -0.009307852946221828, 0.03438010811805725, -0.11617223918437958, 0.047594793140888214, 0.042294297367334366, -0.04181908071041107, 0.02578965201973915, 0.0008504781872034073, -0.005446715746074915, 0.06408116221427917, -0.019483890384435654, 0.02937205508351326, -0.027215301990509033, -0.012730327434837818, -0.020288102328777313, 0.07947087287902832, -0.017281442880630493, 0.06441015750169754, -0.007818230427801609, 0.021567532792687416, 0.021457867696881294, 0.1071796715259552, 0.03196747228503227, 0.044816602021455765, -0.05724535137414932, 0.08722056448459625, 0.06276517361402512, -0.027123915031552315, -0.007434401661157608, -0.05212762951850891, -0.05475959926843643, -0.002050515031442046, -0.013826982118189335, 0.03406939283013344, 0.06426393985748291, 0.014165117405354977, 0.02407155930995941, 0.013863537460565567, 0.03675619512796402, -0.04119764268398285, -0.0444876067340374, 0.04529181867837906, -0.017710965126752853, 0.018844174221158028, 0.023852229118347168, 0.0571356862783432, -0.046790581196546555, 0.0013685331214219332, 0.020708486437797546, -0.019429057836532593, -0.026264868676662445, 0.007969020865857601, 0.002462902572005987, 0.03693896904587746, -0.031620196998119354, 0.04174597188830376, -0.024382278323173523, 0.006566217169165611, -0.012785159982740879, -0.017756659537553787, -0.018286708742380142, -0.007544067222625017, 0.02745291031897068, -0.020653653889894485, -0.0606815330684185, -0.04832589626312256, -0.0945315957069397, -0.0424770750105381, -0.04101486876606941, -0.04514559730887413, -0.03554987534880638, 0.000566033530049026, -0.01425650529563427, 0.00333794136531651, 0.017272304743528366, 0.050080541521310806, 0.029701052233576775, 0.015325742773711681, -0.005158844403922558, -0.0019077213946729898, -0.0036075355019420385, -0.033996280282735825, -0.008553902618587017, -0.05081164464354515, -0.00996127538383007, 0.011798171326518059, -0.02710563689470291, 0.12582279741764069, 0.015983736142516136, 0.02710563689470291, 0.02324906922876835, -0.03618958964943886, 0.014037174172699451, -0.025807930156588554, 0.07859355211257935, 0.00012087471259292215, -0.013689899817109108, 0.0005046323058195412, 0.014823109842836857, -0.046936798840761185, 0.03151053190231323, 0.03094392642378807, -0.07109975069761276, 0.004569392651319504, 0.04781412333250046, 0.04529181867837906, 0.011313815601170063, -0.022920073941349983, -0.029445165768265724, 0.01605684496462345, -0.05991387367248535, -0.02558859810233116, -0.009952137246727943, -0.006753562018275261, 0.01369903888553381, -0.04185563698410988, -0.010875154286623001, 0.02037949115037918, -0.027471188455820084, -0.042696405202150345, -0.0008579034474678338, -0.004857264459133148, 0.03372211754322052, 0.026228314265608788, -0.01625789888203144, 0.012547551654279232, 0.049166664481163025, -0.010664962232112885, -0.08429615199565887, -0.010180606506764889, -0.029664495959877968, -0.09087608009576797, -0.004409463610500097, -0.015782682225108147, 0.027635686099529266, -0.030304212123155594, -0.04291573539376259, 0.03827323392033577, -0.077862448990345, 0.03260718658566475, 0.026502477005124092, 0.016193928197026253, -0.02407155930995941, -0.007032295223325491, -0.008992564864456654, -0.003011229680851102, -0.05263940244913101, 0.006844949908554554, 0.004761307034641504, -0.0076491632498800755, -0.002574852667748928, 0.019502166658639908, 0.07300061732530594, 0.031126702204346657, 0.04200185835361481, -0.018917284905910492, -0.01438444759696722, -0.007036864757537842, 0.008599597029387951, -0.0011434905463829637, 0.006406288594007492, -0.032131969928741455, -0.013918370008468628, 0.05750123783946037, 0.027087358757853508, 0.0066987294703722, 0.028238845989108086, -0.02502199448645115, -0.005204538349062204, -0.00262283137999475, 0.018825897946953773, 0.01952044479548931, -0.022170692682266235, 0.006173249334096909, 0.013644206337630749, -0.03598853573203087, 0.03973543643951416, 0.03697552531957626, -0.002105347579345107, -0.018368957564234734, 0.012949658557772636, 0.03266201913356781, 0.012355637736618519, -0.028129180893301964, 0.09994175285100937, -0.027617407962679863, 0.030468709766864777, -0.02518649213016033, -0.004005072638392448, -0.0015284618129953742, 0.016623450443148613, -0.032333020120859146, -0.009915581904351711, -0.029810717329382896, 0.027580853551626205, -0.0061960965394973755, 0.03518432378768921, 0.009979553520679474, 0.035458486527204514, -0.01840551383793354, 0.02558859810233116, -0.012776021845638752, -0.09277694672346115, -0.03224163502454758, 0.015819236636161804, -0.007146529853343964, 0.018140489235520363, -0.048764556646347046, -0.008471653796732426, -0.006456551607698202, -0.015024162828922272, 0.08020197600126266, -0.03140086680650711, -0.04986121132969856, 0.018880730494856834, 0.005743726622313261, -0.013598511926829815, 0.0027119345031678677, -0.0175738837569952, -0.04488971456885338, 0.02816573530435562, 0.021348202601075172, 0.0414535291492939, -0.03644547611474991, 0.0038314356934279203, -0.08414993435144424, -0.00794160459190607, 0.0677366778254509, 0.02103748358786106, -0.011907837353646755, 0.009367254562675953, 0.0026388242840766907, -0.031473975628614426, 0.004624225199222565, 0.11390581727027893, -0.005117719527333975, 0.018423790112137794, -0.0030180837493389845, -0.02209758199751377, -0.06605514138936996, 0.01582837663590908, -0.0960669070482254, 0.005524395499378443, 0.03300929069519043, 0.030505264177918434, -0.023888783529400826, 0.06411771476268768, 0.06071808934211731, 0.04393927752971649, -0.07544980943202972, -0.020397769287228584, 0.012373914942145348, -0.01926455833017826, -0.04233085364103317, -0.02533271163702011, 0.008727540262043476, -0.04083209112286568, 0.00037668930599465966, 0.05545414984226227, -0.003625812940299511, -0.009289574809372425, 0.0267949178814888, -0.005067456513643265, -0.003219136968255043, -0.006927199196070433, -0.07172118872404099, 0.03368556126952171, 0.04291573539376259, -0.029902104288339615, 0.005387313663959503, 0.04594981297850609, -0.0021990202367305756, 0.0321136899292469, -0.010902570560574532, 0.036025092005729675, 0.056952908635139465, 0.0399547703564167, 0.03251579776406288, -0.046644359827041626, -0.030468709766864777, 0.009307852946221828, -0.04569392651319504, 0.018597427755594254, 0.05384572222828865, -0.05435749515891075, 0.0222438033670187, -0.006895213387906551, -0.011725061573088169, 0.03947955369949341, 0.03533054515719414, 0.00010566720447968692, -0.031090147793293, -0.014548946171998978, 0.03922366723418236, -0.09518958628177643, 0.022938350215554237, 0.04412205517292023, 0.02710563689470291, -0.01402803510427475, -0.07969020307064056, -0.0571356862783432, -0.020891262218356133, 0.008933162316679955, -0.10462081432342529, 0.026575587689876556, -0.0041878484189510345, -0.017994267866015434, 0.03573264926671982, 0.02886028401553631, -0.017098667100071907, 0.014119422994554043, -0.07311028242111206, 0.027178747579455376, -0.005026331637054682, 0.029664495959877968, 0.0018414652440696955, -0.008119810372591019, 0.07720445841550827, 0.07544980943202972, -0.01142348162829876, -0.017190054059028625, 0.009970414452254772, -0.02407155930995941, 0.001664401264861226, 0.02204274944961071, -0.002878717379644513, -0.019593555480241776, 0.02876889519393444, 0.022024471312761307, 0.0002508882025722414, -0.01441186387091875, 0.008380265906453133, 0.03346623107790947, -0.03474565967917442, -0.027727074921131134, -0.04116109013557434, -0.040722426027059555, 0.019026950001716614, 0.026612142100930214, -0.006374302785843611, -0.02971932850778103, -0.01145089790225029, -0.015901485458016396, -0.0034727384336292744, -0.022335190325975418, 0.011322954669594765, 0.010363382287323475, 0.0024423403665423393, -0.012309943325817585, 0.0062463595531880856, -0.02376084215939045, -0.0040964605286717415, 0.04317162185907364, -0.0010778055293485522, -0.0341242253780365, -0.021201981231570244, -0.03988165780901909, 0.01588320918381214, -0.01926455833017826, -0.020361213013529778, 0.04119764268398285, 0.05874411016702652, -0.017683548852801323, 0.015581628307700157, -0.008595027029514313, -0.06583581119775772, 0.0026205466128885746, 0.0242726132273674, 0.02407155930995941, -0.04872800409793854, 0.08729367703199387, 0.012922242283821106, 0.03492843732237816, -0.0015158959431573749, 0.053918831050395966, -0.022115860134363174, -0.07654646784067154, -0.02896994911134243, -0.035458486527204514, 0.005149705335497856, 0.003614389570429921, -0.017537329345941544, 0.027526021003723145, 0.00005733159923693165, 0.010345105081796646, 0.05402849614620209, 0.009083952754735947, -0.010628406889736652, 0.05066542327404022, 0.05874411016702652, 0.027489466592669487, 0.03699380159378052, -0.006241790484637022, 0.0030135144479572773, -0.028933394700288773, 0.08531969785690308, -0.06232651323080063, -0.013205545023083687, 0.05592936649918556, 0.002928980626165867, -0.009495197795331478, -0.04675402492284775, -0.02527787908911705, 0.03335656598210335, -0.030157990753650665, -0.03507465869188309, 0.04620569944381714, 0.012821715325117111, -0.029390333220362663, -0.009385532699525356, -0.0758153647184372, -0.007662871386855841, 0.018012546002864838, -0.03151053190231323, 0.013434014283120632, 0.011432620696723461, -0.020598821341991425, -0.03816356509923935, 0.0036098200362175703, -0.08765922486782074, -0.01886245235800743, 0.02906133607029915, 0.005615783389657736, 0.005551811773329973, -0.026776639744639397, -0.04675402492284775, -0.052200742065906525, -0.056697022169828415, -0.021457867696881294, 0.03224163502454758, -0.0005534676602110267, 0.010080080479383469, -0.03542193025350571, 0.020653653889894485, 0.025369267910718918, 0.04591325670480728, -0.027471188455820084, 0.03553159534931183, -0.03489188104867935, -0.009093090891838074, -0.044560715556144714, -0.05037298426032066, -0.020196715369820595, -0.043354395776987076, 0.015736987814307213, -0.0012451594229787588, 0.02911616861820221, 0.03509293496608734, -0.024839218705892563, -0.03251579776406288, 0.08056753128767014, -0.06656691431999207, 0.015462824143469334, 0.01797598972916603, -0.05296839773654938, 0.018597427755594254, -0.013790426775813103, 0.020160160958766937, -0.005551811773329973, 0.02315768226981163, 0.020653653889894485, 0.028147459030151367, 0.035897146910429, 0.024455389007925987, 0.02330390177667141, -0.015453686006367207, -0.006497676018625498, -0.0285678431391716, 0.021000929176807404, -0.039114002138376236, -0.0606815330684185, 0.030395599082112312, -0.058415114879608154, -0.0087869418784976, 0.004085036925971508, -0.003721770364791155, 0.010006969794631004, 0.006383441388607025, 0.006730715278536081, -0.020251547917723656, -0.031620196998119354, 0.0298289954662323, -0.05037298426032066, 0.016897613182663918, 0.002013959689065814, 0.05962143465876579, 0.053260840475559235, -0.034197334200143814, -0.02304801531136036, 0.011213289573788643, 0.031473975628614426, -0.021476145833730698, -0.0024857495445758104, 0.03962577134370804, -0.026758363470435143, -0.04646158218383789, -0.07881288230419159, 0.023121125996112823, 0.019630109891295433, 0.03266201913356781, -0.01857914961874485, 0.012602385133504868, 0.04251362755894661, 0.0015992873813956976, 0.02608209289610386, -0.0180673785507679, 0.05889033153653145, -0.02072676457464695, -0.07106319069862366, -0.0652143731713295, 0.03266201913356781, 0.09036430716514587, -0.003459030296653509, -0.025040270760655403, 0.05702602118253708, -0.07618091255426407, 0.00653423136100173, -0.030779428780078888, 0.03483704850077629, -0.041965302079916, 0.05731846019625664, -0.038602229207754135, 0.015252632088959217, 0.030669763684272766, -0.04591325670480728, 0.059584878385066986, -0.03567781671881676, 0.023632898926734924, 0.019959107041358948, 0.01494191400706768, 0.036829303950071335, -0.04302540048956871, -0.06631102412939072, -0.03962577134370804, 0.0485452264547348, -0.017966851592063904, -0.06462948769330978, 0.042696405202150345, -0.054869264364242554, -0.014155978336930275, 0.02608209289610386, 0.03554987534880638, -0.012099751271307468, -0.011167595162987709, 0.022408301010727882, 0.005076595116406679, -0.005725448951125145, -0.06949131935834885, -0.015133827924728394, 0.022773852571845055, 0.002743920311331749, 0.026429366320371628, 0.036025092005729675, -0.026721807196736336, 0.03849256411194801, -0.012602385133504868, -0.018789341673254967, -0.014137700200080872, -0.022719020023941994, -0.005300495307892561, 0.01145089790225029, -0.07910532504320145, -0.010993958450853825, -0.00870469305664301, -0.04569392651319504, 0.05870755761861801, 0.022225525230169296, -0.017272304743528366, 0.019557001069188118, -0.04470693692564964, -0.02058054506778717, 0.041526637971401215, -0.036372363567352295, -0.03169330582022667, 0.011350370943546295, 0.036025092005729675, -0.0011463463306427002, 0.009010842069983482, 0.044560715556144714, -0.04262329265475273, -0.018506040796637535, 0.04159975051879883, 0.03229646757245064, -0.0242726132273674, 0.014293059706687927, 0.028348511084914207, -0.04364683851599693, 0.0581226721405983, -0.06916232407093048, -0.02259107679128647, -0.00302036851644516, -0.10681412369012833, 0.007804522756487131, 0.007109974976629019, 0.054723046720027924, -0.03823667764663696, 0.026612142100930214, -0.06378871947526932, -0.011798171326518059, -0.024035004898905754, 0.027361523360013962, 0.01961183361709118, 0.03735935315489769, 0.024345723912119865, 0.04039343073964119, -0.0015398852992802858, 0.040429987013339996, -0.011533146724104881, -0.0006260068039409816, 0.014439280144870281, -0.005355328321456909, -0.03023110143840313, 0.0414535291492939, 0.021110594272613525, 0.0052730790339410305, -0.011670229025185108, -0.009207325987517834, 0.042184632271528244, -0.026666974648833275, 0.052346959710121155, -0.028421621769666672, 0.03231474384665489, 0.04620569944381714, -0.02825712412595749, -0.046644359827041626, 0.023066293448209763, -0.0039022613782435656, 0.0366465300321579, 0.04207496717572212, -0.01043649297207594, -0.02599070407450199, 0.009353546425700188, -0.005976765416562557, 0.029956936836242676, 0.022463133558630943, -0.009787638671696186, 0.06327694654464722, 0.02324906922876835, 0.004583100788295269, -0.031108424067497253, -0.0005968768964521587, 0.020032217726111412, 0.062253404408693314, -0.0011292111594229937, -0.03381350636482239, 0.04119764268398285, 0.02006877213716507, -0.04119764268398285, 0.015453686006367207, 0.028878560289740562, -0.052310407161712646, -0.02836678922176361, 0.01952044479548931, 0.0071419607847929, -0.02796468324959278, 0.01875278726220131, -0.024638164788484573, -0.011322954669594765, -0.011277261190116405, -0.07618091255426407, -0.0192097257822752, -0.08232218027114868, 0.01886245235800743, -0.028421621769666672, 0.046278808265924454, 0.009125077165663242, -0.024985438212752342, 0.03659169748425484, 0.02886028401553631, -0.01657775603234768, -0.016870196908712387, 0.003913684748113155, 0.02270074188709259, -0.024455389007925987, 0.03043215535581112, 0.0829070582985878, 0.030925648286938667, -0.012657217681407928, 0.010363382287323475, 0.08590458333492279, 0.006173249334096909, -0.010929986834526062, -0.06649380177259445, 0.02304801531136036, -0.026063814759254456, -0.03421561047434807, -0.009412948973476887, 0.02275557443499565, 0.04379305988550186, -0.00576200382784009, 0.012373914942145348, 0.00897428672760725, 0.03240613266825676, -0.049714989960193634, -0.003068347228690982, 0.01654120162129402, -0.05110408738255501, 0.019502166658639908, 0.006186957471072674, -0.06188785284757614, 0.045730482786893845, 0.01837809756398201, 0.009038258343935013, 0.04540148377418518, -0.011926114559173584, -0.018332403153181076, -0.030962204560637474, 0.01438444759696722, -0.03289962559938431, 0.010738072916865349, 0.03205885738134384, -0.007566913962364197, 0.00924845039844513, -0.004838986787945032, -0.013214683160185814, 0.015407991595566273, -0.0028627244755625725, 0.04240396246314049, -0.013242099434137344, -0.04748512804508209, -0.004416318144649267, 0.010491325519979, -0.001776351360604167, -0.05227385088801384, -0.05066542327404022, -0.044304829090833664, 0.06492193043231964, -0.006438273936510086, 0.05081164464354515, 0.04898388683795929, 0.02370600961148739, 0.00911593809723854 ]
18,593
pygal.graph.base
__setattr__
Set an attribute on the class or in the state if there is one
def __setattr__(self, name, value): """Set an attribute on the class or in the state if there is one""" if name.startswith('__') or getattr(self, 'state', None) is None: super(BaseGraph, self).__setattr__(name, value) else: setattr(self.state, name, value)
(self, name, value)
[ -0.0038001027423888445, -0.024758709594607353, 0.04303424805402756, 0.07744763046503067, -0.05715705081820488, -0.013395636342465878, -0.03844346106052399, 0.012940062209963799, 0.03784770891070366, -0.030173035338521004, -0.032485950738191605, 0.026090389117598534, 0.04566255956888199, 0.04643353447318077, -0.02857852540910244, 0.012353071942925453, 0.028052862733602524, 0.043630000203847885, -0.007232241798192263, -0.000662553939037025, -0.015279260464012623, -0.004220632836222649, 0.00868657510727644, 0.023339420557022095, 0.004871140234172344, 0.05263635143637657, -0.024425789713859558, 0.04958751052618027, 0.0362006351351738, -0.05088414251804352, -0.020623497664928436, -0.04527707397937775, -0.0030860777478665113, 0.013264220207929611, 0.08305469900369644, -0.03271373733878136, -0.05200555548071861, 0.039389654994010925, -0.09125503152608871, -0.0002594090474303812, 0.0377776212990284, -0.03387019410729408, -0.054353516548871994, 0.004998175427317619, 0.04594291374087334, 0.013518290594220161, 0.03358984366059303, 0.025144197046756744, 0.02528437227010727, -0.051655113697052, 0.006426225882023573, -0.008121487684547901, 0.021184204146265984, 0.044295839965343475, -0.007232241798192263, 0.04408557340502739, 0.02446083538234234, 0.04632839933037758, -0.013798643834888935, 0.04254363104701042, -0.01495510246604681, 0.0030094184912741184, 0.019449517130851746, -0.07142002880573273, -0.041667524725198746, -0.05389794334769249, -0.05803315341472626, 0.03239833936095238, -0.03760240226984024, 0.022988978773355484, 0.0005733008147217333, 0.003935899119824171, 0.02661605179309845, 0.012186612002551556, -0.001560561009682715, 0.03218807652592659, -0.09125503152608871, 0.019379429519176483, -0.016558373346924782, -0.021376946941018105, 0.01598014496266842, 0.0009883552556857467, -0.025529682636260986, 0.020325621590018272, -0.06910711526870728, -0.004647733643651009, -0.02829817123711109, -0.003995036240667105, -0.07226108759641647, -0.05326714739203453, -0.01454333309084177, 0.07583559304475784, 0.00969847571104765, 0.07730745524168015, 0.014595898799598217, 0.0010157335782423615, 0.021534645929932594, -0.0392494760453701, -0.00947944913059473, 0.018590934574604034, -0.023304376751184464, -0.005611448548734188, -0.036375854164361954, -0.021692344918847084, 0.0038701912853866816, -0.06199314817786217, 0.0037760098930448294, -0.04334964603185654, 0.010127766989171505, -0.03914434462785721, -0.029226843267679214, -0.017741113901138306, -0.017522087320685387, 0.026090389117598534, 0.01598014496266842, -0.011257941834628582, 0.03367745131254196, -0.016032710671424866, 0.01619916968047619, 0.01911659725010395, 0.005050742067396641, 0.039985403418540955, -0.015813684090971947, 0.07106959074735641, 0.03854859247803688, 0.025249328464269638, 0.038758859038352966, 0.03535957261919975, 0.05232095345854759, -0.07124480605125427, -0.010469447821378708, -0.008682194165885448, -0.030611088499426842, 0.01389501616358757, 0.050498656928539276, 0.03329196572303772, -0.006934366188943386, 0.025214284658432007, -0.042333364486694336, -0.014122802764177322, 0.025897646322846413, -0.027299413457512856, 0.031259406358003616, -0.012791124172508717, 0.03358984366059303, 0.04650362208485603, -0.03231073170900345, 0.04923706874251366, -0.0015167557867243886, -0.018082795664668083, 0.030155513435602188, -0.012668469920754433, 0.010898739099502563, 0.035499751567840576, -0.059294745326042175, 0.026072867214679718, -0.07842886447906494, -0.00029322117916308343, 0.0019712348002940416, 0.03422063589096069, -0.03583266958594322, -0.049131933599710464, -0.03224064037203789, -0.06728481501340866, -0.002280061598867178, -0.017040230333805084, -0.005440608132630587, -0.04636344313621521, -0.02570490352809429, 0.012808646075427532, -0.020202968269586563, -0.08796088397502899, 0.015480765141546726, 0.08936265110969543, 0.03104913979768753, 0.02544207125902176, -0.00396437244489789, 0.021166682243347168, 0.016970142722129822, 0.03812806308269501, 0.045557428151369095, 0.022270573303103447, -0.044926632195711136, -0.002648025518283248, 0.023181721568107605, -0.03178506717085838, 0.0008640579762868583, 0.00912900734692812, 0.053757764399051666, 0.09286706894636154, 0.06630358099937439, -0.004625831265002489, -0.03276630491018295, -0.024828799068927765, 0.04573265090584755, -0.0031320732086896896, 0.002352340379729867, -0.03215303272008896, -0.002645835280418396, 0.11249180138111115, 0.022323140874505043, 0.016891293227672577, 0.03227568417787552, 0.03430824726819992, 0.024898886680603027, 0.005510696675628424, 0.04976272955536842, 0.001534277806058526, -0.021639779210090637, -0.027842598035931587, -0.024513401091098785, -0.026510918512940407, 0.0315748006105423, 0.0667591542005539, 0.021569689735770226, -0.04941228777170181, 0.019764915108680725, 0.029034100472927094, 0.02877126820385456, 0.019957657903432846, 0.07541506737470627, 0.03288896009325981, 0.012554575689136982, -0.025827556848526, -0.0016262687277048826, -0.05102432146668434, -0.009505732916295528, -0.09489962458610535, -0.05326714739203453, 0.006281668320298195, 0.02842082642018795, -0.0020993652287870646, 0.015673507004976273, 0.012808646075427532, 0.047519903630018234, 0.02496897615492344, 0.053407322615385056, -0.029226843267679214, -0.05459882691502571, -0.0031079803593456745, -0.030996574088931084, -0.02488136477768421, -0.016006426885724068, -0.025056585669517517, -0.030435867607593536, 0.013097760267555714, -0.006159014068543911, 0.051795292645692825, -0.06991313397884369, 0.009628387168049812, -0.006426225882023573, 0.008358036167919636, -0.050814054906368256, 0.019537128508090973, 0.004840476904064417, -0.05624590069055557, -0.017741113901138306, 0.03145214915275574, 0.00034304961445741355, 0.0116171445697546, -0.07611595094203949, -0.01915164291858673, -0.028596047312021255, 0.03910930082201958, 0.05519457533955574, 0.008336133323609829, 0.05133971944451332, 0.02123676985502243, -0.07373294234275818, -0.01075856201350689, 0.040616199374198914, -0.01004891749471426, -0.006697818171232939, 0.05848873034119606, -0.0034562319051474333, -0.05649121105670929, -0.04114186391234398, -0.03945974260568619, -0.03795284405350685, -0.018205448985099792, 0.04990290477871895, -0.008454407565295696, 0.0022066880483180285, 0.04955246299505234, -0.04678397625684738, -0.026738706976175308, 0.014630943536758423, 0.014665987342596054, 0.014210413210093975, -0.01126670278608799, 0.028473392128944397, 0.03988027200102806, 0.0099525460973382, 0.04794043302536011, 0.04447105899453163, -0.030313212424516678, -0.06167775020003319, 0.09686210006475449, -0.0024968974757939577, 0.011923780664801598, 0.06115208566188812, -0.022936413064599037, -0.03819815069437027, 0.05091918632388115, 0.006881800014525652, -0.0382331945002079, 0.037427179515361786, 0.04023071378469467, -0.008598964661359787, 0.00829232856631279, 0.022288095206022263, 0.07709718495607376, -0.060976866632699966, 0.057367317378520966, 0.06746003776788712, -0.008839893154799938, -0.021482080221176147, -0.029384542256593704, 0.0250390637665987, 0.08004089444875717, -0.039424698799848557, -0.04608309268951416, -0.049832817167043686, -0.011179092340171337, -0.026405787095427513, 0.03509674221277237, 0.05253122001886368, 0.01664598286151886, -0.012729796580970287, -0.022603493183851242, -0.08025116473436356, -0.016313062980771065, 0.03854859247803688, 0.0081346295773983, -0.07709718495607376, -0.012396877631545067, -0.019764915108680725, 0.010802366770803928, 0.012756080366671085, -0.007363657467067242, 0.027299413457512856, 0.06385048478841782, -0.05225086584687233, 0.0030860777478665113, 0.02488136477768421, 0.016225453466176987, -0.020991461351513863, 0.008248522877693176, 0.0542483851313591, 0.0011728847166523337, -0.07898957282304764, -0.02689640410244465, -0.00003112566264462657, 0.007530117407441139, 0.037427179515361786, -0.02123676985502243, 0.006395562086254358, -0.011958825401961803, -0.039039213210344315, -0.039740096777677536, -0.0018310581799596548, -0.025249328464269638, -0.013159087859094143, 0.001904431963339448, 0.020115356892347336, 0.0031649272423237562, -0.048220787197351456, -0.014928818680346012, 0.03679638355970383, -0.042017966508865356, 0.005690298043191433, -0.07019348442554474, -0.003703731345012784, 0.016514567658305168, 0.005449369549751282, 0.044260792434215546, -0.011652188375592232, -0.020938895642757416, 0.041947878897190094, 0.0028232464101165533, 0.036375854164361954, -0.016532089561223984, 0.027422066777944565, 0.06392057985067368, 0.04257867485284805, 0.003281011013314128, 0.050113171339035034, -0.004643353167921305, 0.07401330024003983, 0.03358984366059303, -0.03882894665002823, 0.0005924655706621706, -0.02500401996076107, -0.014893774874508381, -0.048536185175180435, -0.03506169840693474, 0.02877126820385456, -0.04538220912218094, 0.0034058557357639074, -0.037041693925857544, -0.0116171445697546, -0.025687381625175476, 0.020483320578932762, 0.02281375788152218, 0.042333364486694336, 0.027351979166269302, 0.023251811042428017, 0.0542483851313591, -0.02477623149752617, -0.04667884111404419, -0.013597140088677406, 0.007731621153652668, -0.024741187691688538, -0.05529971048235893, 0.025336939841508865, -0.04415566101670265, 0.07884939759969711, -0.01664598286151886, 0.06048624590039253, 0.02202526479959488, 0.005523838102817535, 0.08088196069002151, -0.002799153560772538, 0.006347376387566328, -0.015217933803796768, 0.013115283101797104, 0.00998758990317583, -0.016242975369095802, 0.019729871302843094, 0.0775878056883812, -0.01817040517926216, 0.036095499992370605, -0.0017368770204484463, 0.011801126413047314, 0.039074257016181946, -0.054038118571043015, 0.021096594631671906, -0.02626561000943184, -0.06244872137904167, 0.03139958158135414, -0.008542018011212349, -0.013702272437512875, -0.004347668029367924, -0.00369935086928308, -0.024636056274175644, -0.044436015188694, -0.02927940897643566, 0.05288166180253029, 0.04892167076468468, -0.028876401484012604, -0.03332700952887535, 0.011529534123837948, -0.009838652797043324, 0.013562096282839775, -0.003226254368200898, -0.0045907869935035706, -0.0057253423146903515, -0.06560269743204117, 0.0558253712952137, 0.012764841318130493, -0.04843105003237724, 0.007341754622757435, -0.05642112344503403, 0.01753084920346737, -0.021219247952103615, 0.0063868011347949505, 0.02826312743127346, -0.01974739320576191, -0.017487043514847755, -0.017285538837313652, 0.042648762464523315, -0.026545962318778038, 0.006229102145880461, -0.0552646666765213, -0.04377017542719841, -0.029612328857183456, -0.06581296026706696, -0.02291889116168022, -0.05529971048235893, -0.06104695424437523, -0.0424034520983696, 0.030400821939110756, 0.04440097138285637, 0.009610865265130997, 0.022042786702513695, 0.028823833912611008, 0.028508437797427177, -0.0026567864697426558, 0.04941228777170181, 0.012729796580970287, -0.030488433316349983, 0.005515077151358128, 0.01216909009963274, 0.018345626071095467, 0.009093963541090488, 0.034168072044849396, -0.036375854164361954, 0.015673507004976273, 0.013202893547713757, -0.02591516822576523, -0.039740096777677536, -0.021008983254432678, -0.04089655354619026, -0.012896256521344185, 0.050428569316864014, 0.008607725612819195, -0.03325692191720009, 0.024285614490509033, 0.012510770931839943, 0.01036431547254324, 0.042017966508865356, 0.023584730923175812, -0.018871288746595383, 0.0014959482941776514, 0.011739798821508884, -0.04103672876954079, -0.020868806168437004, 0.054668914526700974, -0.02971746027469635, 0.009532015770673752, 0.04773016646504402, -0.022323140874505043, 0.014709793031215668, -0.027299413457512856, -0.03006790205836296, -0.0026589769404381514, 0.01648828387260437, -0.009812369011342525, -0.011476967483758926, 0.012992627918720245, 0.003624881850555539, 0.002965613268315792, -0.034606125205755234, 0.11249180138111115, 0.038373373448848724, 0.03718186914920807, 0.021692344918847084, 0.020676063373684883, -0.009575821459293365, -0.011450684629380703, 0.031101705506443977, -0.0263356976211071, 0.008511354215443134, 0.03210046514868736, 0.004844857379794121, -0.03683142736554146, -0.0894327387213707, -0.01030298788100481, 0.004582026042044163, -0.05235599726438522, -0.0490618459880352, -0.01468350924551487, -0.05028839409351349, -0.021815000101923943, 0.024075347930192947, -0.06861649453639984, 0.032485950738191605, 0.025144197046756744, 0.016444480046629906, 0.0656377449631691, -0.03455355763435364, 0.01329050399363041, 0.05494926869869232, 0.0038701912853866816, 0.038057975471019745, -0.03500913083553314, -0.04124699532985687, -0.011967586353421211, 0.024916408583521843, 0.008016355335712433, 0.04433088377118111, 0.0071052066050469875, 0.0014674748526886106, 0.030908962711691856, -0.00633861543610692, 0.04517194256186485, 0.014517050236463547, 0.0733124166727066, -0.018871288746595383, -0.05358254536986351, 0.003388333832845092, 0.04496167600154877, -0.08747026324272156, 0.003517559263855219, -0.02566985972225666, -0.0362006351351738, -0.017609698697924614, 0.06798569858074188, -0.02123676985502243, -0.042964160442352295, -0.08508726209402084, -0.023584730923175812, 0.02826312743127346, -0.013421919196844101, 0.006172155495733023, -0.0162692591547966, 0.03224064037203789, -0.038723815232515335, 0.027334457263350487, 0.007258525118231773, -0.041317082941532135, 0.006325473543256521, 0.028946489095687866, 0.007718479726463556, -0.0069124638102948666, -0.01591881737112999, -0.027457112446427345, 0.043945398181676865, -0.0568416528403759, -0.023129155859351158, -0.006062642205506563, 0.057612624019384384, 0.007849895395338535, 0.048466093838214874, -0.008244141936302185, -0.026125432923436165, -0.030470911413431168, 0.04636344313621521, -0.026510918512940407, -0.026090389117598534, -0.012440682388842106, -0.04016062617301941, -0.051479894667863846, -0.027387022972106934, -0.06633862853050232, -0.004582026042044163, 0.05298679322004318, -0.05491422489285469, 0.012887495569884777, -0.05614076927304268, -0.0034759442787617445, -0.0526713952422142, -0.0026261229068040848, -0.09896475076675415, 0.011801126413047314, -0.03556983917951584, 0.016532089561223984, 0.02779003232717514, 0.0004700847784988582, -0.010837411507964134, -0.013246698305010796, 0.015988904982805252, -0.0018934806575998664, -0.03627072274684906, -0.024741187691688538, -0.017478283494710922, -0.023497119545936584, -0.005217201542109251, -0.007013215683400631, 0.011564577929675579, -0.025687381625175476, -0.012177851051092148, -0.0031101705972105265, 0.04541725292801857, 0.07043879479169846, -0.013430680148303509, -0.013570857234299183, 0.010889977216720581, 0.07709718495607376, -0.048045564442873, -0.08711981773376465, 0.025179240852594376, -0.008533257059752941, 0.03977514058351517, 0.04867636039853096, 0.01721545122563839, -0.04972768574953079, -0.015156606212258339, -0.011792365461587906, -0.016321824863553047, -0.011021393351256847, 0.025564726442098618, -0.0012637806357815862, -0.037707533687353134, -0.04009053856134415, -0.05915457010269165, 0.04629335552453995, -0.04667884111404419, 0.03984522819519043, -0.0005667300429195166, -0.05904943495988846, 0.04303424805402756, 0.008379939012229443, 0.008055780082941055, 0.020308099687099457, 0.04482150077819824, 0.0038767619989812374, -0.016602179035544395, 0.06931737810373306, -0.05382785573601723, -0.03861868008971214, -0.037427179515361786, -0.008883698843419552, 0.05389794334769249, -0.03443090245127678, -0.088872030377388, -0.02791268564760685, -0.027737464755773544, 0.02354968525469303, -0.025056585669517517, 0.041982922703027725, 0.03791779652237892, -0.019291818141937256, -0.031977809965610504, 0.03669125214219093, -0.019099075347185135, -0.03034825623035431, 0.005541360471397638, 0.022393228486180305, -0.02127181552350521, 0.019642259925603867, -0.013649706728756428, -0.026037823408842087, -0.0018299630610272288, 0.05971527472138405, -0.01454333309084177, -0.03683142736554146, -0.023339420557022095, -0.06234358996152878, 0.04051106795668602, -0.028981532901525497, 0.006557641550898552, 0.030208079144358635, 0.020430754870176315, -0.011415639892220497, -0.0099525460973382, -0.0075607807375490665, -0.0007238812395371497, 0.026756228879094124, 0.014902535825967789, 0.009917501360177994, 0.06006571650505066, -0.05487918108701706, 0.008682194165885448, -0.009759803302586079, -0.009593343362212181, 0.007433746010065079, 0.02731693536043167, 0.0032678693532943726, 0.10267943888902664, -0.014990146271884441, -0.003333577187731862, -0.01248448807746172, -0.0029546620789915323, -0.0075783031061291695, 0.0020259914454072714, 0.000688837084453553, 0.04867636039853096, -0.006176535971462727, 0.04324451461434364, 0.03187267854809761, 0.01825801469385624, -0.0009713807376101613, 0.014473244547843933, 0.08333504945039749, -0.0449967235326767, -0.023847561329603195, -0.004051982890814543, 0.048115652054548264, -0.06717968732118607, -0.048045564442873, -0.040020447224378586, 0.0053135729394853115, -0.013851210474967957, 0.03082135319709778, 0.06052129343152046, -0.0034496609587222338, 0.004744105506688356 ]
18,594
pygal.graph.graph
_axes
Draw axes
def _axes(self): """Draw axes""" self._y_axis() self._x_axis()
(self)
[ -0.006601801607757807, -0.029027242213487625, 0.017650770023465157, 0.05140097066760063, -0.028820397332310677, 0.046746958047151566, -0.06394956260919571, 0.0419895239174366, -0.013953415676951408, 0.059847138822078705, 0.05095280706882477, -0.00776099506765604, 0.0829448252916336, 0.006920687388628721, 0.006748316343873739, -0.020822390913963318, 0.04457508772611618, 0.010083691217005253, -0.02147740125656128, -0.049056727439165115, -0.0002537082473281771, -0.013410448096692562, 0.015935679897665977, -0.019581321626901627, -0.015073825605213642, 0.050125427544116974, -0.028751447796821594, -0.01794379949569702, -0.004791907966136932, -0.06946542859077454, -0.0879780501127243, -0.026889843866229057, 0.024200858548283577, -0.021080948412418365, 0.038852375000715256, -0.011747069656848907, -0.01676305942237377, -0.0029195302631706, 0.004878093488514423, 0.08632329106330872, 0.08073847740888596, -0.037128668278455734, 0.0839790478348732, -0.014608425088226795, -0.03857658430933952, 0.0016913884319365025, -0.023235583677887917, 0.029682250693440437, -0.012850242666900158, -0.021546348929405212, -0.0019014653516933322, -0.0608813650906086, 0.034767188131809235, 0.028372231870889664, 0.023907829076051712, 0.02297702617943287, 0.02497652731835842, 0.0745331346988678, 0.011143771931529045, 0.013858611695468426, -0.018133407458662987, -0.008256561122834682, -0.04912567511200905, -0.02470073476433754, 0.016039101406931877, 0.015022114850580692, -0.0026200360152870417, -0.0001300860894843936, -0.010471525602042675, 0.03300900757312775, -0.00990270171314478, 0.04726407304406166, -0.011505750007927418, -0.031595565378665924, 0.004147672094404697, -0.02190832793712616, -0.05960582196712494, 0.06615591049194336, 0.0015879658749327064, -0.012074573896825314, -0.030595816671848297, 0.061088208109140396, 0.01205733697861433, 0.043747708201408386, 0.06367377191781998, -0.019305529072880745, 0.003501281840726733, 0.05691683664917946, -0.009359734132885933, -0.010997256264090538, 0.005567576736211777, -0.008390148170292377, 0.018116170540452003, 0.017926562577486038, -0.007704974617809057, -0.044057976454496384, -0.02394230291247368, -0.0025360053405165672, -0.02523508481681347, 0.002809643978253007, -0.07198204100131989, -0.005619287956506014, 0.031181875616312027, -0.009945794939994812, -0.00998888723552227, -0.02604522742331028, -0.042230844497680664, -0.043196119368076324, -0.04647116735577583, 0.048401717096567154, 0.010997256264090538, 0.021925564855337143, 0.02378716878592968, 0.02066725865006447, -0.02787235751748085, -0.035370487719774246, -0.05450364574790001, -0.04133451730012894, 0.009299403987824917, -0.003966683056205511, -0.0606745183467865, 0.049160148948431015, 0.04950489103794098, -0.02127055637538433, 0.026838133111596107, -0.014056838117539883, 0.006127781700342894, 0.06556984782218933, -0.03300900757312775, -0.06722460687160492, 0.02716563642024994, -0.03902474790811539, 0.016780296340584755, -0.011135153472423553, 0.03119911439716816, 0.0036564155016094446, 0.05639972537755966, -0.012927809730172157, -0.06308770924806595, 0.029889095574617386, 0.00041584455175325274, 0.02771722339093685, 0.004052868112921715, 0.008006623014807701, -0.04816040024161339, 0.06126058101654053, -0.00960967130959034, 0.026769183576107025, -0.005326257552951574, -0.023597560822963715, -0.011531606316566467, 0.009885464794933796, 0.02120160683989525, -0.05309020355343819, 0.014789413660764694, -0.08108322322368622, -0.030578577890992165, 0.00002748842780420091, 0.037232089787721634, 0.04960831254720688, -0.07818739116191864, -0.003912817221134901, 0.036163393408060074, -0.054538119584321976, 0.02947540581226349, 0.07584314793348312, -0.037232089787721634, -0.054262325167655945, 0.011867729015648365, 0.003673652419820428, 0.025011003017425537, -0.05998503789305687, -0.093631811439991, -0.011367853730916977, -0.01073870062828064, -0.028389468789100647, -0.006696605123579502, 0.06791409105062485, -0.003792157396674156, 0.0300269927829504, 0.029027242213487625, 0.001207672874443233, -0.03985212743282318, -0.017331883311271667, 0.008459096774458885, 0.0116005539894104, 0.02363203652203083, -0.006390647031366825, 0.001907929196022451, 0.010290536098182201, -0.003611168125644326, 0.06891383975744247, -0.0003275045019108802, -0.009790660813450813, 0.039921075105667114, -0.011531606316566467, 0.006373410113155842, -0.03657708317041397, 0.07398154586553574, -0.0465056411921978, 0.03033725917339325, 0.00573132885619998, 0.022408202290534973, 0.002098614349961281, 0.005102175287902355, 0.03362954035401344, -0.020701732486486435, 0.023028738796710968, -0.004684176295995712, -0.006692295894026756, 0.020270805805921555, -0.0418861024081707, -0.053021255880594254, -0.01559955719858408, -0.011126535013318062, 0.06660407781600952, -0.04695380479097366, -0.026027990505099297, -0.03812842071056366, 0.030699238181114197, 0.032078202813863754, 0.06105373427271843, -0.04836724326014519, -0.04278242960572243, 0.033422697335481644, -0.032940059900283813, 0.07770475000143051, 0.004654011223465204, -0.022649522870779037, -0.05433127284049988, -0.004722959827631712, 0.0300269927829504, -0.02277018129825592, 0.019684744998812675, 0.010238825343549252, -0.023804405704140663, 0.013608674518764019, 0.004541970323771238, 0.0038417140021920204, 0.017685243859887123, -0.018167881295084953, 0.026924317702651024, 0.01804722286760807, -0.006532853003591299, -0.0416792593896389, 0.05843370035290718, 0.010583566501736641, 0.07287836819887161, -0.030113177374005318, -0.011859110556542873, -0.04788460582494736, -0.03623234108090401, 0.005287474021315575, 0.011143771931529045, 0.00840738508850336, -0.01184187363833189, -0.06112268194556236, 0.00985099095851183, 0.041162144392728806, -0.011798780411481857, 0.033853624016046524, 0.08011794835329056, -0.01696990430355072, 0.04450614005327225, 0.06636275351047516, 0.018616044893860817, 0.051366496831178665, 0.005274546332657337, -0.02282189391553402, 0.02158082276582718, 0.10404301434755325, 0.046746958047151566, -0.042506638914346695, 0.01703023351728916, -0.00003299284799140878, 0.04912567511200905, -0.003667188575491309, -0.0373699888586998, -0.0058778440579771996, 0.03150938078761101, 0.035577330738306046, -0.08597855269908905, -0.04409245029091835, 0.06698329001665115, -0.04440271481871605, -0.056192878633737564, 0.006041596177965403, -0.018702231347560883, -0.016676874831318855, -0.005912318360060453, -0.0014759249752387404, 0.02701050415635109, 0.029940806329250336, 0.02576943300664425, -0.008980518206954002, -0.055606819689273834, -0.009928558021783829, -0.004628155846148729, -0.0644666776061058, 0.0232011079788208, 0.02625207230448723, 0.019460663199424744, 0.01434125006198883, 0.010264680720865726, 0.06112268194556236, 0.008079880848526955, 0.02911342680454254, 0.03276768699288368, 0.05939897522330284, -0.03985212743282318, -0.023080449551343918, 0.03699077293276787, -0.031233588233590126, 0.030113177374005318, -0.06532853096723557, -0.0073860883712768555, -0.02845841832458973, -0.009454538114368916, -0.01638384349644184, 0.06605248898267746, -0.007032728288322687, -0.013350117951631546, -0.008519426919519901, -0.04836724326014519, 0.03609444573521614, 0.03231952339410782, 0.016625162214040756, -0.004380372818559408, 0.03330203890800476, 0.023925065994262695, 0.02094305120408535, -0.02637273073196411, -0.028768684715032578, 0.012634779326617718, -0.017099183052778244, -0.08990860730409622, -0.009980268776416779, 0.029199613258242607, 0.013462158851325512, -0.0030660454649478197, -0.01285886112600565, -0.013177746906876564, -0.05160781368613243, 0.03912816941738129, -0.0050720106810331345, 0.015875350683927536, -0.015720216557383537, 0.0038223222363740206, 0.011126535013318062, 0.03140595927834511, -0.0003433949314057827, -0.0012249099090695381, -0.02109818533062935, -0.009221837855875492, -0.012074573896825314, 0.06812093406915665, -0.014599806629121304, -0.026131412014365196, -0.044919829815626144, 0.023494139313697815, 0.034232839941978455, -0.023718221113085747, -0.042989276349544525, 0.017142275348305702, -0.049160148948431015, -0.0022063462529331446, 0.015987390652298927, -0.05488286167383194, 0.053779687732458115, -0.012850242666900158, -0.004343743901699781, 0.01240207813680172, -0.022425441071391106, 0.009023611433804035, -0.02952711656689644, 0.07253362983465195, 0.008894332684576511, 0.026820896193385124, 0.048401717096567154, -0.060502149164676666, 0.0643632560968399, -0.044816404581069946, 0.018995260819792747, -0.01654759608209133, -0.012841624207794666, -0.02485586889088154, -0.0033504574093967676, 0.023183871060609818, 0.006532853003591299, 0.0014209817163646221, -0.007713593076914549, -0.007894582115113735, -0.02690708078444004, -0.023700984194874763, -0.0797732025384903, -0.06588011980056763, 0.018064459785819054, 0.05760632082819939, -0.024614550173282623, -0.03319861367344856, 0.015987390652298927, 0.02185661718249321, -0.011376472190022469, 0.02883763425052166, 0.007222336251288652, -0.01345354039222002, -0.014487764798104763, 0.04526457190513611, 0.042713481932878494, 0.035680755972862244, 0.023166634142398834, -0.020650021731853485, -0.006675058975815773, -0.0230976864695549, 0.026286546140909195, -0.020529361441731453, -0.010712845250964165, -0.01578054577112198, 0.08790910243988037, 0.0017107800813391805, -0.028872108086943626, 0.07963530719280243, 0.008510807529091835, 0.06743145734071732, 0.06401851028203964, 0.013436303474009037, -0.0554344467818737, -0.014168879017233849, 0.023925065994262695, -0.005442607682198286, -0.034560345113277435, -0.017443925142288208, -0.08618539571762085, 0.0008683178457431495, 0.01568574272096157, -0.026820896193385124, -0.019046973437070847, -0.015711598098278046, -0.01611666940152645, 0.01975369267165661, 0.020288042724132538, -0.008428932167589664, -0.00266528339125216, -0.06639722734689713, 0.009420064277946949, -0.0032858182676136494, -0.044333767145872116, 0.015375474467873573, 0.027251822873950005, -0.054434698075056076, 0.010350866243243217, 0.0982513502240181, 0.028113676235079765, -0.02551087737083435, 0.03819736838340759, -0.05078043416142464, -0.02916513755917549, -0.049918580800294876, 0.032733213156461716, -0.0033913953229784966, 0.00012537282600533217, -0.005817514378577471, -0.07246468216180801, -0.030802661553025246, 0.025786669924855232, -0.01015263982117176, 0.03633576259016991, 0.006808646488934755, -0.0023011500015854836, -0.0020727587398141623, 0.05336599797010422, -0.016987141221761703, -0.033750202506780624, -0.0461953729391098, 0.006787099875509739, -0.0031953235156834126, 0.0062958430498838425, 0.03812842071056366, -0.03830078989267349, -0.020874103531241417, -0.09204600006341934, -0.0002243513590656221, -0.005817514378577471, 0.00317377713508904, 0.022839130833745003, 0.03633576259016991, 0.01583225652575493, -0.00969585683196783, -0.0031974781304597855, -0.020288042724132538, 0.045885104686021805, -0.005929555278271437, -0.06019188091158867, 0.01863328367471695, 0.012884716503322124, 0.00897189974784851, 0.026510627940297127, -0.014453290961682796, -0.04936699569225311, -0.04243768751621246, 0.006351863499730825, -0.031078454107046127, -0.011617791838943958, 0.012315893545746803, 0.004817763809114695, 0.0031522309873253107, -0.0025144589599221945, 0.03393980860710144, -0.020115671679377556, -0.019133158028125763, 0.02152911201119423, -0.05905423313379288, -0.024407703429460526, -0.05546892061829567, 0.05167676508426666, 0.01954684779047966, -0.06512168794870377, 0.06567326933145523, 0.02673470973968506, 0.026717472821474075, 0.00420369254425168, -0.03269873932003975, 0.020115671679377556, -0.017116419970989227, -0.02599351480603218, 0.11604002118110657, -0.05567576736211777, 0.03588759899139404, 0.029492642730474472, 0.04585063084959984, 0.03602549433708191, -0.046160899102687836, 0.008553900755941868, 0.02411467395722866, -0.03166451305150986, 0.025045476853847504, -0.034008756279945374, -0.03543943539261818, 0.003617631969973445, 0.02304597571492195, 0.025683248415589333, -0.028975529596209526, 0.04474745690822601, -0.042334266006946564, -0.014625662006437778, -0.023563086986541748, 0.039335016161203384, -0.08425484597682953, 0.07287836819887161, 0.011255812831223011, 0.013384591788053513, -0.012953665107488632, 0.020270805805921555, 0.03909369558095932, -0.00991132017225027, 0.023063212633132935, -0.009807897731661797, 0.0022645213175565004, -0.05412442982196808, -0.03145767003297806, -0.012212471105158329, 0.02957882732152939, 0.019719218835234642, -0.040024496614933014, -0.041058722883462906, 0.014375723898410797, -0.007261119782924652, 0.030750948935747147, 0.00779977859929204, -0.017306027933955193, -0.028113676235079765, 0.014496383257210255, 0.03018212504684925, -0.06260507553815842, -0.019564084708690643, 0.060812417417764664, 0.03128529712557793, -0.014513621106743813, -0.036266814917325974, -0.043851129710674286, -0.04364428669214249, -0.0026739018503576517, -0.017961036413908005, -0.06636275351047516, -0.009652764536440372, -0.019133158028125763, 0.024562837556004524, 0.02744143083691597, 0.0232011079788208, -0.04457508772611618, -0.03926606848835945, 0.004246785305440426, 0.007980767637491226, -0.02121884375810623, -0.0009431914077140391, -0.01928829215466976, -0.014453290961682796, -0.019857116043567657, -0.02813091315329075, 0.012315893545746803, -0.020494887605309486, 0.08308272063732147, 0.015091062523424625, -0.00021856077364645898, -0.013229458592832088, -0.030320022255182266, 0.059364501386880875, -0.01240207813680172, -0.0925975888967514, -0.032026492059230804, -0.017736954614520073, -0.0020415165927261114, 0.04971173778176308, -0.009497630409896374, 0.0464022159576416, -0.03950738534331322, -0.028423944488167763, 0.02668299898505211, 0.03343993425369263, 0.07618789374828339, 0.027993015944957733, 0.009402826428413391, -0.06687986850738525, -0.02164977230131626, -0.049160148948431015, -0.008635777048766613, 0.0841858983039856, -0.07542946189641953, 0.02728629671037197, 0.04050713777542114, 0.04874645918607712, -0.013005376793444157, -0.031647276133298874, -0.1364487260580063, 0.012789912521839142, -0.012471026740968227, -0.05774421617388725, -0.015263433568179607, -0.001209827489219606, -0.03157832846045494, 0.05429679900407791, -0.005925246048718691, 0.025011003017425537, 0.011660884134471416, 0.05674446374177933, 0.04023134335875511, -0.08370325714349747, 0.0017571047646924853, 0.048298295587301254, -0.0005984498420730233, -0.009566579014062881, -0.02916513755917549, -0.011660884134471416, 0.03647366166114807, -0.014324013143777847, 0.0008004468982107937, -0.011066204868257046, -0.027355244383215904, 0.01885736547410488, -0.03792157396674156, 0.014211972244083881, -0.004921186249703169, 0.012074573896825314, 0.037887100130319595, 0.042127422988414764, -0.02426980808377266, -0.0080841900780797, 0.056296300143003464, -0.032026492059230804, -0.04498877748847008, 0.059847138822078705, -0.019684744998812675, -0.04716064780950546, -0.004615228157490492, -0.03843868523836136, 0.006670749746263027, 0.006946542765945196, -0.024390466511249542, 0.06974121928215027, 0.02528679557144642, -0.07880792766809464, 0.009006373584270477, -0.07439523190259933, -0.01750425435602665, 0.008023860864341259, 0.0009243383537977934, 0.04257558658719063, 0.020063960924744606, -0.01374657079577446, -0.06377719342708588, -0.021667009219527245, -0.02175319381058216, 0.014143023639917374, -0.006782790645956993, 0.0417826808989048, -0.012953665107488632, -0.013126036152243614, -0.06439772993326187, 0.045402467250823975, 0.008226396515965462, 0.023270057514309883, -0.036266814917325974, -0.025924567133188248, 0.0418861024081707, -0.00023876047634985298, 0.004477331414818764, -0.02523508481681347, 0.002867819042876363, -0.031440433114767075, 0.004830691497772932, -0.00883400347083807, 0.021080948412418365, 0.058502648025751114, -0.015461659990251064, 0.03588759899139404, -0.004895330406725407, -0.013694859109818935, 0.0659145936369896, 0.009687238372862339, -0.0010757014388218522, 0.010144021362066269, 0.07267152518033981, -0.007071511819958687, 0.016668256372213364, 0.061398476362228394, 0.006425121333450079, -0.04323059320449829, -0.014901455491781235, -0.01191944070160389, -0.04033476486802101, -0.009790660813450813, -0.020805153995752335, -0.021718719974160194, -0.0002603068423923105, -0.08466853201389313, 0.007437799591571093, -0.014237827621400356, -0.021942801773548126, -0.042127422988414764, -0.014074075035750866, -0.012815768830478191, -0.05939897522330284, -0.03156109154224396, -0.015590937808156013, 0.05167676508426666, -0.01615976169705391, 0.022752944380044937, 0.021822143346071243, 0.031181875616312027, 0.06553537398576736, 0.050883859395980835, 0.04947041720151901, -0.032250575721263885, 0.05115965008735657, 0.0017840376822277904, -0.019943300634622574, 0.05674446374177933, 0.006899140775203705, 0.014513621106743813, -0.05250414460897446, -0.028716973960399628, -0.008528045378625393, -0.01722845993936062, 0.0350085087120533, 0.09611395746469498, 0.030699238181114197, 0.03919711709022522, 0.032198864966630936 ]
18,595
pygal.graph.bar
_bar
Internal bar drawing function
def _bar(self, serie, parent, x, y, i, zero, secondary=False): """Internal bar drawing function""" width = (self.view.x(1) - self.view.x(0)) / self._len x, y = self.view((x, y)) series_margin = width * self._series_margin x += series_margin width -= 2 * series_margin width /= self._order if self.horizontal: serie_index = self._order - serie.index - 1 else: serie_index = serie.index x += serie_index * width serie_margin = width * self._serie_margin x += serie_margin width -= 2 * serie_margin height = self.view.y(zero) - y r = serie.rounded_bars * 1 if serie.rounded_bars else 0 alter( self.svg.transposable_node( parent, 'rect', x=x, y=y, rx=r, ry=r, width=width, height=height, class_='rect reactive tooltip-trigger' ), serie.metadata.get(i) ) return x, y, width, height
(self, serie, parent, x, y, i, zero, secondary=False)
[ 0.00514954561367631, 0.0475507453083992, -0.05137051269412041, 0.018117118626832962, 0.01765303499996662, -0.012539188377559185, -0.04608709365129471, 0.08589120954275131, -0.03873315081000328, -0.02559600956737995, 0.04583720490336418, 0.05979541689157486, 0.009089795872569084, -0.07653813809156418, -0.00969221256673336, 0.0025100689381361008, 0.006113412324339151, 0.007554749492555857, 0.029701365157961845, 0.020830225199460983, -0.0006899900618009269, -0.05361953377723694, -0.0010971790179610252, -0.024739239364862442, -0.007202224340289831, -0.005506533198058605, -0.06197304278612137, -0.034574247896671295, -0.005890294909477234, -0.00789835024625063, 0.003614499233663082, -0.0654001235961914, -0.02202613279223442, 0.00021795764041598886, 0.07389643043279648, 0.03573445603251457, -0.07846587151288986, 0.03560950979590416, -0.025256870314478874, 0.0605807900428772, 0.022668709978461266, -0.04476623982191086, 0.0030946359038352966, -0.039304330945014954, 0.07875145971775055, 0.007934048771858215, 0.030094051733613014, -0.010156296193599701, 0.02413235977292061, -0.006644431035965681, 0.07475319504737854, -0.06468614935874939, 0.021651295945048332, -0.005528844892978668, 0.00647486187517643, 0.11109453439712524, 0.04622989147901535, 0.046444084495306015, 0.044659145176410675, 0.03830476477742195, 0.060116708278656006, 0.04351678490638733, -0.001117817359045148, -0.019063135609030724, 0.029790611937642097, 0.0057608867064118385, 0.028880294412374496, -0.06639968603849411, 0.0011657875729724765, 0.01782260462641716, 0.04719375818967819, 0.040339596569538116, 0.0025234560016542673, 0.020937321707606316, -0.030736630782485008, -0.01802787184715271, 0.02509622648358345, 0.024043112993240356, 0.05251287296414375, 0.012637360021471977, 0.015439712442457676, -0.016394654288887978, 0.05419071391224861, 0.021829789504408836, -0.018170667812228203, 0.0023873543832451105, 0.0123428450897336, 0.0386260561645031, -0.03884024918079376, 0.047300852835178375, -0.018813244998455048, 0.008674797601997852, 0.02854115702211857, 0.019687864929437637, -0.04612279310822487, -0.06122336909174919, -0.01054005790501833, -0.029344378039240837, 0.015314767137169838, -0.007853726856410503, -0.040696583688259125, 0.020116249099373817, -0.008933614008128643, -0.008746195584535599, -0.04269571229815483, 0.03648412972688675, -0.0006604270311072469, 0.02286505326628685, -0.04619419202208519, 0.0019132302841171622, 0.018652601167559624, -0.031129315495491028, -0.004672074690461159, -0.027202453464269638, -0.05636833608150482, -0.0029585345182567835, -0.038483262062072754, -0.031147165223956108, 0.05861736088991165, -0.03791208192706108, -0.010040275752544403, -0.00025811875821091235, 0.05008535459637642, -0.02688116393983364, -0.05643973499536514, 0.0211336649954319, -0.01693013496696949, 0.04398087039589882, -0.05947412922978401, 0.06343669444322586, -0.001961200498044491, -0.048193320631980896, -0.023971715942025185, 0.010165221057832241, 0.02768438681960106, -0.04216023162007332, -0.0036479667760431767, 0.04669397324323654, -0.03266436234116554, -0.052084486931562424, 0.03694821521639824, -0.00834458414465189, -0.016769491136074066, 0.00921920407563448, -0.00285366945900023, 0.02250806614756584, -0.007710931356996298, 0.03596649691462517, 0.0092013543471694, -0.053869426250457764, -0.06461475044488907, 0.07468180358409882, 0.02029474265873432, 0.01322638988494873, 0.0709691271185875, -0.03916153684258461, -0.04301700368523598, -0.00351186515763402, 0.029272980988025665, 0.014333050698041916, -0.00025588757125660777, -0.019884208217263222, 0.026113640516996384, -0.07011236250400543, -0.0032285063061863184, 0.030147600919008255, -0.007630609441548586, 0.06015240401029587, 0.014681113883852959, 0.026238586753606796, -0.03173619508743286, -0.02061603218317032, -0.09845717251300812, 0.027862880378961563, -0.02688116393983364, -0.025792352855205536, -0.015520034357905388, 0.004234765190631151, 0.009116570465266705, 0.01801002211868763, 0.023043546825647354, 0.010513284243643284, 0.028791047632694244, -0.038983043283224106, -0.010459735989570618, -0.04969267174601555, 0.07596695423126221, 0.002717567840591073, 0.03391382098197937, 0.012610586360096931, 0.0037483694031834602, 0.04519462585449219, -0.005091535393148661, -0.007068353705108166, 0.09317375719547272, -0.004948740359395742, 0.05237007513642311, -0.015047025866806507, 0.050799332559108734, -0.028791047632694244, 0.06607840210199356, 0.017144327983260155, -0.0035230210050940514, 0.011976933106780052, -0.007652921136468649, -0.012253598310053349, 0.008143778890371323, 0.03398521617054939, -0.07089772820472717, -0.0536552332341671, 0.001004027551971376, -0.002532380633056164, -0.016439277678728104, -0.02688116393983364, -0.014208105392754078, 0.026149339973926544, 0.004250383470207453, -0.03569875657558441, 0.03527037054300308, -0.017554864287376404, 0.044730544090270996, 0.04530172422528267, -0.04929998517036438, 0.00101406779140234, 0.014788210391998291, -0.0068630860187113285, 0.03441360220313072, -0.05237007513642311, 0.03361038118600845, -0.009183505550026894, -0.04976406693458557, -0.0006955679855309427, -0.008697109296917915, -0.01886679232120514, -0.051263414323329926, -0.04058948531746864, 0.002215554006397724, -0.03482413664460182, -0.02340053580701351, -0.0036747409030795097, -0.009781459346413612, 0.010272317565977573, -0.012271448038518429, 0.017197877168655396, 0.008558777160942554, 0.010995217598974705, -0.013520903885364532, 0.06329389661550522, -0.0467296727001667, 0.005510995630174875, 0.012316071428358555, -0.062294330447912216, -0.04401656612753868, -0.022365272045135498, 0.07311105728149414, -0.0067961509339511395, -0.041160665452480316, -0.055654361844062805, 0.014618640765547752, -0.012931874953210354, -0.04137485846877098, -0.031950388103723526, -0.021847639232873917, 0.030094051733613014, 0.033663928508758545, -0.03876885026693344, 0.04926428571343422, 0.004201297648251057, -0.024721389636397362, 0.04166045039892197, 0.023918166756629944, -0.0002549114287830889, 0.004393178503960371, -0.031986087560653687, -0.03684111684560776, 0.025845900177955627, 0.0546547956764698, -0.05286986008286476, 0.028291264548897743, -0.038518957793712616, -0.03884024918079376, -0.01842055842280388, 0.01233392022550106, -0.0097011374309659, 0.03926863148808479, -0.031861141324043274, 0.039018742740154266, -0.05515458062291145, -0.0286482535302639, 0.019009588286280632, -0.055190280079841614, 0.011325431056320667, -0.0607592836022377, 0.019223781302571297, -0.001585247926414013, 0.008188402280211449, 0.005354813765734434, 0.04437355697154999, -0.02195473574101925, -0.0206338819116354, 0.03580585494637489, -0.03336048871278763, -0.001839601551182568, 0.013744021765887737, 0.0006152457790449262, 0.047729238867759705, 0.07129041850566864, 0.041160665452480316, -0.06068788841366768, -0.020062701776623726, -0.010629304684698582, 0.05133481323719025, 0.032378774136304855, 0.03348543494939804, -0.0388045497238636, 0.029344378039240837, 0.008076843805611134, 0.008206252008676529, -0.02857685461640358, 0.09138882160186768, -0.01801002211868763, -0.04358818382024765, -0.004689924418926239, -0.04430215805768967, 0.06400787085294724, 0.047729238867759705, -0.060973476618528366, -0.01761733740568161, 0.0092013543471694, 0.0404466912150383, 0.04344538599252701, -0.006274056620895863, -0.023864619433879852, -0.026702670380473137, 0.020383989438414574, 0.005439598113298416, -0.014582942239940166, 0.04323119670152664, -0.004250383470207453, -0.01934872567653656, -0.012565962970256805, -0.01030801609158516, 0.031896840780973434, 0.03394951671361923, -0.013181766495108604, -0.039839811623096466, -0.017661960795521736, -0.012673058547079563, -0.023186342790722847, 0.031504154205322266, 0.01577885076403618, 0.03532392159104347, -0.028487607836723328, 0.023828919976949692, -0.042909905314445496, -0.019562918692827225, 0.0475507453083992, 0.027113206684589386, -0.017287123948335648, 0.02597084641456604, -0.0012673059245571494, -0.028273414820432663, 0.002114035887643695, 0.04583720490336418, -0.005377125460654497, -0.015680678188800812, -0.007742167916148901, 0.008808668702840805, -0.036734022200107574, -0.03784068301320076, 0.03518112376332283, 0.012896176427602768, 0.011539623141288757, 0.008674797601997852, -0.043373990803956985, 0.04148195683956146, -0.05090642720460892, -0.054297808557748795, 0.049478478729724884, -0.11352204531431198, 0.035895101726055145, -0.013021121732890606, -0.0259172972291708, 0.015564657747745514, 0.026720520108938217, -0.03246802091598511, -0.0062071215361356735, -0.053940821439027786, -0.034038763493299484, -0.02686331421136856, -0.0118876863270998, -0.049478478729724884, -0.04790773242712021, -0.0051673948764801025, -0.05051374062895775, -0.07982242107391357, 0.052619967609643936, -0.011298656463623047, 0.008880065754055977, 0.02457859367132187, 0.044623445719480515, -0.09767179936170578, 0.022276025265455246, -0.026185037568211555, 0.02372182346880436, -0.02375752292573452, 0.01383326854556799, 0.013877891935408115, 0.010388338007032871, -0.0049978261813521385, -0.004141055978834629, -0.02509622648358345, 0.007652921136468649, 0.011155861429870129, -0.006635506637394428, -0.019277328625321388, 0.004074120428413153, 0.025756653398275375, -0.008786357007920742, -0.06111627072095871, -0.02199043519794941, 0.03577015548944473, 0.0009343033889308572, 0.050763633102178574, 0.01974141225218773, -0.07739490270614624, -0.026542026549577713, -0.00947802048176527, 0.03132566064596176, -0.005497608799487352, 0.050335247069597244, -0.05576146021485329, -0.006068788934499025, -0.058795854449272156, 0.01600196771323681, -0.02193688601255417, -0.015350465662777424, -0.023418385535478592, 0.03791208192706108, 0.06297260522842407, 0.05886724963784218, 0.012039406225085258, 0.07021945714950562, -0.05469049513339996, -0.03926863148808479, 0.007978672161698341, -0.04797913134098053, 0.013244238682091236, 0.005261104553937912, -0.06618549674749374, -0.019098835065960884, 0.027148904278874397, 0.05008535459637642, 0.046408385038375854, -0.030540287494659424, -0.05115631967782974, 0.004172292072325945, -0.05901004374027252, 0.015528959222137928, 0.03744799643754959, 0.03086157515645027, 0.022240325808525085, -0.03866175562143326, -0.03844756260514259, -0.02149065211415291, 0.0198128093034029, 0.03250371664762497, -0.031004371121525764, 0.012798004783689976, 0.05147760733962059, 0.0414462573826313, -0.01273553166538477, -0.0528341606259346, -0.05004965886473656, -0.004435570444911718, 0.00727808428928256, 0.03776928409934044, -0.011218334548175335, -0.009531567804515362, 0.02545321360230446, -0.011584246531128883, -0.015859173610806465, -0.03734090179204941, 0.04929998517036438, 0.0032753609120845795, 0.031932536512613297, -0.015743151307106018, -0.006742602679878473, 0.015341540798544884, 0.020366141572594643, 0.003018776187673211, -0.049514174461364746, -0.07253987342119217, 0.05925993621349335, -0.023114945739507675, 0.024971280246973038, 0.059759721159935, -0.04608709365129471, -0.032307375222444534, -0.05279846116900444, 0.026220737025141716, 0.012226824648678303, -0.01893819123506546, -0.017929701134562492, -0.016153687611222267, -0.040339596569538116, -0.011370054446160793, 0.010183070786297321, -0.02722030319273472, -0.057046614587306976, -0.00921027921140194, -0.02723815105855465, -0.024899883195757866, 0.011378978379070759, -0.058367468416690826, -0.05469049513339996, -0.050335247069597244, 0.018741847947239876, 0.030076202005147934, -0.0255067627876997, 0.014725737273693085, -0.020151948556303978, -0.009647589176893234, -0.02600654400885105, 0.002378429751843214, -0.004149980377405882, -0.024346552789211273, -0.01759948767721653, -0.012289296835660934, -0.02722030319273472, -0.04101787135004997, -0.0025613857433199883, 0.031896840780973434, -0.040196798741817474, 0.011985857971012592, 0.021704845130443573, 0.03816197067499161, -0.018795395269989967, -0.0061401864513754845, -0.009897480718791485, 0.06907709687948227, 0.0014948854222893715, 0.062294330447912216, -0.038483262062072754, 0.012931874953210354, 0.031878989189863205, -0.02816632017493248, -0.06040229648351669, 0.06482893973588943, 0.021222911775112152, -0.008313348516821861, 0.029612118378281593, 0.005310189910233021, -0.004685461986809969, 0.036341335624456406, 0.058260370045900345, -0.060081008821725845, 0.009879630990326405, 0.01802787184715271, 0.05311974883079529, 0.01054898276925087, 0.04622989147901535, 0.025881599634885788, -0.02863040380179882, -0.01452046912163496, 0.0607592836022377, 0.035056181252002716, 0.005988466553390026, 0.03837616369128227, -0.020401839166879654, -0.0007864882354624569, -0.020062701776623726, -0.0009158962639048696, -0.037555091083049774, -0.006189271807670593, 0.005796585697680712, 0.03166479617357254, -0.08539142459630966, -0.07382503151893616, -0.02679191716015339, -0.04633698612451553, 0.04619419202208519, 0.01103091612458229, -0.02991555817425251, 0.018349161371588707, 0.0493713803589344, -0.04280281066894531, 0.07896564900875092, 0.051263414323329926, -0.007697544526308775, 0.012869401834905148, -0.030486738309264183, -0.026559874415397644, -0.03712670877575874, 0.015511110424995422, -0.001644373987801373, 0.008322272449731827, -0.06575711071491241, -0.02463214285671711, 0.02722030319273472, 0.05668962746858597, 0.07482459396123886, -0.010138447396457195, 0.03387812152504921, 0.036341335624456406, 0.020562484860420227, 0.05311974883079529, -0.0003924074408132583, -0.07171880453824997, -0.030700931325554848, -0.021222911775112152, 0.017849378287792206, 0.028808897361159325, -0.005747499875724316, 0.005908144172281027, -0.008500766940414906, -0.04298130422830582, -0.05137051269412041, 0.02074097841978073, 0.04344538599252701, -0.01078994944691658, 0.0027309549041092396, -0.038518957793712616, 0.02116936258971691, -0.03659122437238693, -0.01886679232120514, 0.06700656563043594, -0.04612279310822487, 0.029754914343357086, -0.010673928074538708, 0.02020549587905407, -0.0378049835562706, 0.0642220675945282, -0.07882285863161087, -0.061437562108039856, -0.023168493062257767, 0.01972356252372265, 0.0018886873731389642, -0.015975194051861763, 0.02291860245168209, 0.03569875657558441, -0.004268232733011246, 0.027916427701711655, 0.02423945628106594, 0.03748369589447975, -0.053405340760946274, -0.018331311643123627, 0.029130185022950172, -0.012449941597878933, -0.01849195547401905, 0.007532437797635794, -0.009116570465266705, -0.08667658269405365, 0.00115240050945431, 0.021472802385687828, 0.03691251575946808, 0.0475507453083992, -0.030736630782485008, -0.049478478729724884, 0.041089270263910294, 0.001236069481819868, -0.029701365157961845, -0.009808233939111233, 0.09324515610933304, 0.038090575486421585, -0.028755348175764084, 0.014779285527765751, 0.008880065754055977, 0.007505663670599461, -0.05643973499536514, 0.12937229871749878, 0.01452046912163496, -0.07975102216005325, -0.043730977922677994, -0.0068229250609874725, 0.014163482002913952, 0.015439712442457676, 0.06882720440626144, 0.014350900426506996, -0.004366404376924038, -0.0037282889243215322, -0.0006113412091508508, -0.029826311394572258, 0.020919471979141235, 0.051691800355911255, 0.038518957793712616, 0.008206252008676529, -0.007983134128153324, -0.03568090870976448, -0.028933843597769737, 0.0184027086943388, -0.030022654682397842, -0.02074097841978073, 0.01211972814053297, 0.00230926345102489, -0.005595779977738857, 0.007135289255529642, -0.025810200721025467, 0.07503879070281982, -0.01235176995396614, 0.04187464341521263, -0.034984782338142395, 0.013628000393509865, 0.0835350900888443, 0.018367011100053787, -0.01700153388082981, -0.04762214049696922, -0.06600700318813324, 0.01032586582005024, -0.030968671664595604, -0.00422360934317112, 0.003817535936832428, -0.01585024781525135, 0.014627565629780293, -0.05458340048789978, 0.00027206356753595173, -0.03919723629951477, 0.015421862713992596, -0.0073271701112389565, -0.00241859070956707, -0.015047025866806507, 0.03773358464241028, 0.00946909561753273, 0.031057918444275856, 0.04137485846877098, 0.03121856227517128, 0.0538337267935276, 0.011602096259593964, -0.04890729859471321, -0.014797135256230831, 0.017572714015841484, -0.04083937779068947, 0.021312158554792404, -0.04844321310520172, 0.00018072496459353715, 0.01515412237495184, 0.028077073395252228, 0.004207991063594818, 0.046051397919654846, -0.025417516008019447, 0.01938442513346672, -0.02734524756669998, -0.03178974241018295, -0.0194022748619318, -0.021258609369397163, -0.0032575116492807865, -0.006461475044488907, 0.04212453216314316, -0.006992494221776724, 0.023668276146054268, 0.06083068251609802, 0.030665231868624687, -0.053905121982097626, 0.08439186215400696, -0.022276025265455246, -0.030040504410862923, 0.08367788791656494, -0.008487379178404808, 0.024792786687612534, 0.015894871205091476, -0.0014134476659819484, 0.01384219340980053, 0.0012974267592653632, -0.02018764801323414, 0.10823862999677658, 0.060973476618528366, -0.00726469699293375, 0.059152841567993164 ]
18,596
pygal.graph.bar
_compute
Compute y min and max and y scale and set labels
def _compute(self): """Compute y min and max and y scale and set labels""" if self._min: self._box.ymin = min(self._min, self.zero) if self._max: self._box.ymax = max(self._max, self.zero) self._x_pos = [ x / self._len for x in range(self._len + 1) ] if self._len > 1 else [0, 1] # Center if only one value self._points(self._x_pos) self._x_pos = [(i + .5) / self._len for i in range(self._len)]
(self)
[ 0.08286754041910172, -0.026102924719452858, -0.000034274664358235896, 0.03506205230951309, -0.022177804261446, 0.01011202298104763, 0.007154982071369886, -0.05924642086029053, 0.02219540625810623, 0.02122732810676098, -0.010956891812384129, 0.02339230291545391, 0.05315632373094559, -0.03287947550415993, -0.024571599438786507, 0.023163484409451485, 0.009311157278716564, -0.019027147442102432, -0.00861590076237917, 0.02768705226480961, -0.004461963195353746, -0.029957637190818787, 0.007823836989700794, 0.005298031028360128, 0.01635172963142395, 0.021244928240776062, 0.0033420720137655735, -0.041750598698854446, -0.020963305607438087, -0.022036993876099586, -0.041363365948200226, 0.04671420156955719, 0.03826551511883736, -0.04291229322552681, 0.02663096785545349, -0.035660501569509506, 0.043757159262895584, 0.010437649674713612, -0.009135142900049686, 0.03150656446814537, 0.022142602130770683, -0.07709427177906036, 0.023920346051454544, 0.032474640756845474, 0.008884322829544544, 0.00796904880553484, -0.0038239110726863146, 0.03509725630283356, 0.028672732412815094, -0.07167303562164307, -0.02580370008945465, -0.04653818532824516, 0.03823031112551689, 0.008646703325212002, -0.002455399837344885, 0.08272673189640045, 0.04931921139359474, 0.0991312637925148, 0.02668377198278904, 0.0021242727525532246, -0.0016281325370073318, 0.015154832974076271, -0.054353222250938416, -0.04780548810958862, -0.03604773432016373, -0.006459725555032492, -0.006019689608365297, -0.006415721960365772, -0.05319152772426605, 0.035396479070186615, 0.014529982581734657, 0.02022404596209526, 0.029376789927482605, -0.004147337283939123, 0.014142750762403011, -0.026208532974123955, -0.07392601668834686, 0.04907279461622238, 0.032474640756845474, -0.039075180888175964, -0.02041766047477722, 0.06635739654302597, 0.03604773432016373, -0.04087052494287491, 0.03560769557952881, -0.04185620695352554, 0.027299821376800537, 0.08167064189910889, 0.019115155562758446, 0.035783711820840836, 0.008048254996538162, 0.02789827063679695, 0.05731026455760002, 0.06047851964831352, -0.03731503710150719, 0.01618451625108719, -0.020523270592093468, -0.02770465426146984, -0.0016831369139254093, 0.023533115163445473, 0.027423031628131866, -0.009645584970712662, 0.037420645356178284, 0.024730011820793152, -0.016430936753749847, 0.012109785340726376, 0.017487023025751114, -0.04657338932156563, -0.05797911807894707, 0.04460202902555466, 0.012708233669400215, 0.011484934948384762, -0.061957042664289474, 0.005223224870860577, -0.06375239044427872, -0.022160202264785767, -0.06917362660169601, -0.05241706594824791, -0.0002664966741576791, 0.007832637056708336, -0.08089618384838104, 0.026226133108139038, 0.0031396555714309216, -0.02275865152478218, -0.06480847299098969, 0.012153789401054382, 0.03752625361084938, 0.050797734409570694, -0.03854713588953018, -0.0916682556271553, 0.04182100296020508, -0.0462917685508728, 0.000048300804337486625, 0.061710622161626816, -0.009971211664378643, -0.055233296006917953, 0.02244182676076889, -0.008563096635043621, 0.008743511512875557, 0.02832070365548134, 0.055550120770931244, 0.05516288802027702, 0.03453401103615761, 0.009223150089383125, 0.018851133063435555, 0.00020942953415215015, 0.050480905920267105, -0.0012497017160058022, -0.005808472633361816, -0.04407398775219917, -0.019062351435422897, -0.015990901738405228, 0.05984487012028694, -0.03999045491218567, 0.055303700268268585, -0.03557249531149864, 0.03099612146615982, -0.04513007402420044, 0.006354116834700108, 0.03192899748682976, -0.06410441547632217, 0.00040400787838734686, -0.010068018920719624, -0.021878579631447792, -0.014406772330403328, 0.0400608591735363, 0.011616945266723633, -0.03956801816821098, -0.03847673162817955, 0.028162291273474693, 0.0010115322656929493, -0.10666467994451523, -0.09455489367246628, 0.026085322722792625, -0.009425566531717777, -0.003654497442767024, 0.01673896238207817, 0.030063245445489883, -0.0006155000883154571, 0.0442500002682209, 0.018164677545428276, 0.00023156884708441794, -0.012910650111734867, -0.013641109690070152, -0.04336993023753166, 0.03462201729416847, 0.02705340087413788, 0.02110411785542965, -0.03956801816821098, -0.038441527634859085, -0.06505489349365234, -0.018991945311427116, -0.07251790165901184, -0.006983368191868067, 0.000043487914808792993, 0.048192720860242844, 0.022723449394106865, 0.026472553610801697, 0.019431980326771736, -0.07737589627504349, -0.004059330094605684, -0.02161455899477005, 0.03404117003083229, -0.03360113501548767, 0.011924969963729382, -0.01944958232343197, -0.032228223979473114, 0.07688305526971817, 0.01004161685705185, -0.015110829845070839, -0.025698091834783554, 0.006468526553362608, -0.06290751695632935, 0.011766557581722736, -0.006706145592033863, -0.012611426413059235, 0.04583412781357765, -0.030028043314814568, -0.008219868876039982, 0.03553729131817818, 0.020505668595433235, -0.004651178605854511, -0.008871122263371944, -0.03738544136285782, 0.03354832902550697, 0.0017667437205091119, 0.060760144144296646, 0.008624701760709286, 0.03506205230951309, -0.042243435978889465, 0.03258025273680687, -0.04115214943885803, -0.06178102642297745, -0.007590617518872023, -0.006675343029201031, 0.010807279497385025, 0.045024462044239044, 0.027423031628131866, -0.07976969331502914, 0.05104415491223335, -0.011669749394059181, -0.008862321265041828, -0.03935680165886879, 0.022036993876099586, -0.04157458245754242, 0.014890811406075954, 0.0295352041721344, 0.042947493493556976, -0.028162291273474693, 0.027159009128808975, -0.023656325414776802, -0.02700059674680233, -0.012532219290733337, -0.032861873507499695, 0.02363872341811657, -0.0410817414522171, -0.024043556302785873, -0.01397553738206625, 0.08638782799243927, 0.018604714423418045, 0.01881593093276024, 0.007713827770203352, -0.03548448905348778, 0.05826073884963989, 0.03462201729416847, 0.05526849627494812, -0.004096733406186104, 0.00036495469976216555, -0.07230668514966965, 0.03441080078482628, 0.020699284970760345, 0.03492124006152153, 0.004571971949189901, -0.009011933580040932, 0.0021990789100527763, 0.08005131036043167, 0.00587887829169631, -0.042877089232206345, 0.023973150178790092, 0.0033420720137655735, 0.06104176864027977, -0.05107935518026352, -0.01990721933543682, -0.03560769557952881, 0.011317720636725426, -0.051818616688251495, -0.012259397655725479, -0.020945703610777855, -0.033055488020181656, -0.017363812774419785, -0.054212410002946854, 0.0042815483175218105, 0.029711216688156128, 0.006587335839867592, 0.03826551511883736, -0.06248508393764496, 0.024166766554117203, 0.005694063380360603, -0.043968379497528076, -0.001258502365089953, -0.0411873497068882, -0.041046541184186935, 0.011872165836393833, 0.03346032276749611, 0.03794868662953377, -0.003320070216432214, 0.0411873497068882, -0.01020883023738861, 0.05576133728027344, -0.04460202902555466, 0.02414916455745697, 0.03067929670214653, 0.03815990686416626, -0.01915035769343376, 0.018657518550753593, 0.03963842615485191, 0.050234489142894745, -0.018287887796759605, -0.01996002346277237, 0.01735501177608967, -0.020241647958755493, -0.06378758698701859, -0.0368926003575325, -0.008950328454375267, 0.044848449528217316, 0.021209726110100746, -0.016430936753749847, 0.027669452130794525, 0.003768906695768237, 0.0022375821135938168, 0.03988484665751457, -0.01778624765574932, 0.0006457525305449963, 0.016950178891420364, 0.00991840660572052, 0.0002638839650899172, 0.02719421312212944, 0.02978162281215191, 0.011625746265053749, -0.04270107299089432, 0.0032914679031819105, -0.00608569523319602, -0.07702386379241943, 0.0570286400616169, 0.02085769735276699, 0.024043556302785873, 0.03953281790018082, -0.03798389062285423, -0.031981803476810455, 0.01990721933543682, -0.07561575621366501, 0.0557965412735939, -0.03219301998615265, -0.02629653923213482, 0.010024015791714191, 0.009504773654043674, 0.023022674024105072, -0.10011694580316544, -0.029834426939487457, -0.008391482755541801, 0.04182100296020508, -0.04931921139359474, -0.029306383803486824, 0.016219720244407654, -0.025715691968798637, 0.00667094299569726, -0.010050417855381966, 0.0054168407805264, 0.024289976805448532, 0.015832487493753433, 0.012743436731398106, -0.007185784634202719, -0.0684695690870285, -0.024923628196120262, -0.03041527420282364, 0.024307578802108765, -0.06378758698701859, -0.008241870440542698, -0.009742393158376217, -0.01727580651640892, 0.06220346316695213, -0.0020329654216766357, -0.014846808277070522, 0.02200178988277912, 0.03300268575549126, -0.02680698037147522, 0.012945853173732758, -0.02281145565211773, 0.015665274113416672, -0.007308994885534048, 0.03727983310818672, -0.004651178605854511, -0.004043929278850555, -0.03506205230951309, -0.008193466812372208, -0.03145375847816467, 0.07230668514966965, 0.038195107132196426, 0.006679743528366089, 0.027669452130794525, -0.041046541184186935, 0.02675417624413967, 0.005324433092027903, 0.049460023641586304, 0.00495920330286026, -0.05868317559361458, 0.05611336603760719, 0.041363365948200226, 0.0016017303569242358, 0.06660381704568863, -0.007854639552533627, 0.0030098448041826487, 0.04562291130423546, -0.0462917685508728, -0.02680698037147522, -0.008571897633373737, -0.07730548828840256, 0.00017683938494883478, 0.027458233758807182, -0.037737470120191574, -0.006824955344200134, 0.035906922072172165, 0.05188902094960213, 0.001864651683717966, -0.027775060385465622, -0.03599492833018303, 0.0002981242723762989, -0.06864558905363083, 0.004611575044691563, -0.04203221946954727, -0.023849939927458763, 0.006723747123032808, -0.057275060564279556, 0.028567124158143997, 0.009909606538712978, -0.06104176864027977, -0.025645285844802856, -0.03657577559351921, -0.02066408097743988, -0.04632696881890297, 0.02446599118411541, 0.0009202248766086996, 0.057697493582963943, -0.012787440791726112, -0.004809591453522444, 0.0036236948799341917, -0.08223389089107513, -0.028303103521466255, -0.061957042664289474, -0.029130369424819946, -0.0063409158028662205, 0.0642804279923439, 0.06737828254699707, 0.012690632604062557, 0.02802148088812828, 0.005232025869190693, -0.07631981372833252, -0.07230668514966965, 0.014802804216742516, 0.01210098434239626, -0.029904833063483238, 0.007441005669534206, -0.05565572902560234, 0.011977775022387505, 0.00730459438636899, -0.03557249531149864, 0.03073210082948208, 0.02390274405479431, -0.003702901303768158, 0.01153773907572031, 0.02173776924610138, -0.08934486657381058, 0.01825268566608429, -0.01832309179008007, 0.015515662729740143, -0.014714797027409077, 0.0009939308511093259, 0.03710382059216499, -0.0019009546376764774, -0.021315334364771843, -0.0017887455178424716, 0.007775432895869017, 0.021016109734773636, 0.030151253566145897, 0.007027371786534786, 0.057204656302928925, 0.00017766444943845272, -0.006503729149699211, -0.029376789927482605, -0.015040423721075058, -0.02319868840277195, 0.048896778374910355, -0.0030626491643488407, 0.022741049528121948, -0.08209308236837387, -0.01876312680542469, 0.05329713597893715, -0.034252386540174484, 0.015603669919073582, -0.06494928151369095, 0.004624776542186737, -0.01410754770040512, 0.04491885378956795, -0.025205250829458237, 0.04252506047487259, 0.03236903250217438, -0.03851193189620972, 0.006428922992199659, -0.016290126368403435, 0.023462709039449692, 0.0017887455178424716, -0.09920167177915573, -0.031576968729496, -0.03562529757618904, -0.002164976205676794, -0.01978400908410549, -0.07385560870170593, 0.053789976984262466, 0.0015599268954247236, -0.0027018198743462563, -0.027792662382125854, 0.016246121376752853, -0.011229713447391987, -0.01915035769343376, 0.013236276805400848, 0.08061455935239792, -0.014257160015404224, -0.03249224275350571, 0.032668258994817734, 0.022283412516117096, 0.01150253601372242, -0.0516074001789093, 0.05393078923225403, 0.03745584934949875, -0.030221659690141678, 0.021772971376776695, -0.0019306570757180452, -0.05224104970693588, -0.047699879854917526, 0.021438544616103172, 0.030468078330159187, 0.041363365948200226, 0.032105013728141785, -0.03148896247148514, 0.016219720244407654, 0.04713663458824158, 0.009082338772714138, -0.006296912208199501, 0.07392601668834686, 0.003498284611850977, 0.045165274292230606, 0.026402147486805916, 0.010728073306381702, -0.009671987034380436, 0.019115155562758446, 0.03258025273680687, 0.010983293876051903, 0.0007304594619199634, 0.0015280243242159486, 0.0077798329293727875, -0.032738663256168365, 0.019502386450767517, 0.0622386634349823, -0.04442601650953293, -0.04646778106689453, 0.01036724355071783, -0.06692064553499222, 0.0528394989669323, 0.04720704257488251, -0.03354832902550697, 0.03208741173148155, 0.03731503710150719, -0.0063321152701973915, -0.05259307846426964, 0.02073448710143566, 0.03763186186552048, 0.0008014151826500893, -0.03553729131817818, -0.05322673171758652, -0.0054168407805264, -0.01524284016340971, -0.03453401103615761, 0.03949761390686035, -0.06023210287094116, -0.0013476096792146564, 0.02446599118411541, -0.05129057168960571, 0.004140737000852823, -0.0013333085225895047, 0.029482398182153702, -0.05952804535627365, 0.05495167151093483, -0.02390274405479431, 0.03404117003083229, -0.008549896068871021, -0.006402520928531885, -0.03228102624416351, -0.0168885737657547, -0.015383651480078697, 0.01213618740439415, -0.031154535710811615, 0.053402744233608246, -0.04400357976555824, 0.06396360695362091, -0.013641109690070152, -0.05868317559361458, 0.03713902086019516, -0.02935918979346752, -0.08357159793376923, 0.0005890979082323611, 0.025909308344125748, 0.01536605041474104, 0.041926611214876175, -0.006468526553362608, -0.002239782363176346, -0.0337771475315094, 0.0012122986372560263, -0.010173628106713295, 0.040483295917510986, -0.009117541834712029, 0.013350686058402061, 0.015946896746754646, -0.035220466554164886, 0.004147337283939123, -0.011652148328721523, -0.043968379497528076, 0.0516074001789093, -0.023216288536787033, 0.02788066864013672, 0.03326670825481415, 0.009135142900049686, -0.002455399837344885, -0.012312201783061028, -0.08202267438173294, 0.01632532849907875, 0.030344869941473007, 0.025187648832798004, -0.00808785855770111, -0.005280429497361183, -0.054423630237579346, 0.06554773449897766, -0.03446360304951668, 0.028549522161483765, 0.007951446808874607, 0.01397553738206625, 0.02883114665746689, -0.052522674202919006, 0.039075180888175964, 0.03550208732485771, 0.045165274292230606, 0.007397002074867487, -0.04083532094955444, 0.0027040201239287853, 0.0007964647957123816, 0.0011248415103182197, -0.013121867552399635, -0.023093078285455704, -0.019062351435422897, -0.006574134808033705, -0.05643019080162048, -0.08152983337640762, -0.0021990789100527763, 0.018041467294096947, -0.011291318573057652, 0.0665334165096283, -0.002838230924680829, -0.032228223979473114, 0.044531624764204025, -0.009795197285711765, -0.01347389630973339, 0.06685023754835129, -0.024800417944788933, -0.04882637411355972, 0.02453639730811119, -0.045974940061569214, -0.009927207604050636, -0.02351551316678524, -0.05136097967624664, 0.007938246242702007, 0.0475238673388958, 0.01254982128739357, -0.027018198743462563, -0.07251790165901184, 0.028743138536810875, 0.017918258905410767, 0.000081819154729601, 0.0231458842754364, 0.007106578443199396, 0.03240423649549484, 0.043968379497528076, -0.01397553738206625, 0.015190036036074162, 0.024923628196120262, -0.010068018920719624, -0.008915125392377377, 0.0044949655421078205, -0.01971360482275486, -0.06266109645366669, 0.07969928532838821, -0.02705340087413788, 0.011423329822719097, -0.03175298497080803, -0.08920405805110931, 0.018287887796759605, -0.020312052220106125, 0.015920495614409447, -0.06396360695362091, 0.017460620030760765, -0.040905728936195374, 0.025891706347465515, 0.04734785109758377, 0.05519809201359749, -0.018358293920755386, -0.03175298497080803, 0.03823031112551689, 0.02281145565211773, -0.005091214086860418, 0.03770226612687111, 0.030468078330159187, -0.0046907817013561726, 0.026736576110124588, 0.05709904432296753, -0.01983681321144104, -0.013350686058402061, -0.012109785340726376, 0.07181384414434433, 0.010728073306381702, -0.05354355648159981, -0.011388126760721207, -0.0010538857895880938, -0.009742393158376217, 0.04622136056423187, 0.02180817537009716, 0.006983368191868067, -0.044707637280225754, 0.007102177944034338, 0.051677804440259933, 0.01761903427541256, -0.03942720964550972, 0.012725835666060448, 0.015946896746754646, -0.07399642467498779, 0.006450925022363663, 0.007022971287369728, -0.019097553566098213, -0.020523270592093468, 0.01078087743371725, 0.009390364401042461, 0.0421026274561882, 0.044848449528217316, 0.04689021408557892, 0.08188186585903168, 0.003601693082600832, 0.04907279461622238, 0.04157458245754242, -0.08293794840574265, 0.06773030757904053, -0.0038613141514360905, 0.016439737752079964, -0.03928639739751816, -0.006477327086031437, -0.019872017204761505, -0.009249553084373474, 0.03618854284286499, 0.016237320378422737, 0.04439081251621246, -0.008290275000035763, 0.0664278045296669 ]
18,597
pygal.graph.graph
_compute_margin
Compute graph margins from set texts
def _compute_margin(self): """Compute graph margins from set texts""" self._legend_at_left_width = 0 for series_group in (self.series, self.secondary_series): if self.show_legend and series_group: h, w = get_texts_box( map( lambda x: truncate(x, self.truncate_legend or 15), [ serie.title['title'] if isinstance(serie.title, dict) else serie.title or '' for serie in series_group ] ), self.style.legend_font_size ) if self.legend_at_bottom: h_max = max(h, self.legend_box_size) cols = ( self._order // self.legend_at_bottom_columns if self.legend_at_bottom_columns else ceil(sqrt(self._order)) or 1 ) self.margin_box.bottom += self.spacing + h_max * round( cols - 1 ) * 1.5 + h_max else: if series_group is self.series: legend_width = self.spacing + w + self.legend_box_size self.margin_box.left += legend_width self._legend_at_left_width += legend_width else: self.margin_box.right += ( self.spacing + w + self.legend_box_size ) self._x_labels_height = 0 if (self._x_labels or self._x_2nd_labels) and self.show_x_labels: for xlabels in (self._x_labels, self._x_2nd_labels): if xlabels: h, w = get_texts_box( map( lambda x: truncate(x, self.truncate_label or 25), cut(xlabels) ), self.style.label_font_size ) self._x_labels_height = self.spacing + max( w * abs(sin(rad(self.x_label_rotation))), h ) if xlabels is self._x_labels: self.margin_box.bottom += self._x_labels_height else: self.margin_box.top += self._x_labels_height if self.x_label_rotation: if self.x_label_rotation % 180 < 90: self.margin_box.right = max( w * abs(cos(rad(self.x_label_rotation))), self.margin_box.right ) else: self.margin_box.left = max( w * abs(cos(rad(self.x_label_rotation))), self.margin_box.left ) if self.show_y_labels: for ylabels in (self._y_labels, self._y_2nd_labels): if ylabels: h, w = get_texts_box( cut(ylabels), self.style.label_font_size ) if ylabels is self._y_labels: self.margin_box.left += self.spacing + max( w * abs(cos(rad(self.y_label_rotation))), h ) else: self.margin_box.right += self.spacing + max( w * abs(cos(rad(self.y_label_rotation))), h ) self._title = split_title( self.title, self.width, self.style.title_font_size ) if self.title: h, _ = get_text_box(self._title[0], self.style.title_font_size) self.margin_box.top += len(self._title) * (self.spacing + h) self._x_title = split_title( self.x_title, self.width - self.margin_box.x, self.style.title_font_size ) self._x_title_height = 0 if self._x_title: h, _ = get_text_box(self._x_title[0], self.style.title_font_size) height = len(self._x_title) * (self.spacing + h) self.margin_box.bottom += height self._x_title_height = height + self.spacing self._y_title = split_title( self.y_title, self.height - self.margin_box.y, self.style.title_font_size ) self._y_title_height = 0 if self._y_title: h, _ = get_text_box(self._y_title[0], self.style.title_font_size) height = len(self._y_title) * (self.spacing + h) self.margin_box.left += height self._y_title_height = height + self.spacing # Inner margin if self.print_values_position == 'top': gh = self.height - self.margin_box.y alpha = 1.1 * (self.style.value_font_size / gh) * self._box.height if self._max and self._max > 0: self._box.ymax += alpha if self._min and self._min < 0: self._box.ymin -= alpha
(self)
[ 0.036797501146793365, 0.021121960133314133, 0.0021278129424899817, 0.051887404173612595, -0.036660853773355484, -0.013088978826999664, -0.018584202975034714, 0.011458956636488438, 0.01924792304635048, 0.030902093276381493, -0.010404810309410095, 0.01808641105890274, 0.09807461500167847, -0.03490394353866577, 0.008135468699038029, 0.02619747817516327, 0.03443543240427971, -0.025904659181833267, 0.02383541129529476, -0.03158533573150635, 0.0018069329671561718, -0.10783522576093674, 0.0060955011285841465, -0.02918422408401966, 0.014104082249104977, -0.02373780496418476, -0.05727526172995567, 0.030023638159036636, -0.026626944541931152, 0.05126272514462471, -0.050677087157964706, -0.021063396707177162, -0.06301449984312057, -0.002540198853239417, -0.009160332381725311, -0.019101513549685478, 0.004460598807781935, -0.05797802656888962, -0.05032570660114288, 0.05130176618695259, 0.03181958943605423, -0.010492656379938126, 0.057587601244449615, -0.040877435356378555, -0.005431779660284519, -0.0168760959059, 0.005783161614090204, 0.027193060144782066, -0.012122677639126778, -0.0071447668597102165, 0.025514235720038414, -0.051848363131284714, 0.0251433327794075, 0.022605573758482933, 0.025260459631681442, 0.012073875404894352, 0.05262921005487442, 0.019745714962482452, 0.01678824983537197, -0.022410361096262932, 0.03355697914958, 0.0605938695371151, -0.014035757631063461, 0.036699894815683365, -0.05805610865354538, 0.0018679368076846004, 0.036758460104465485, -0.03322511911392212, -0.020048294216394424, -0.02516285330057144, 0.006193107459694147, -0.009911899454891682, 0.013899109326303005, -0.008472209796309471, -0.025514235720038414, -0.05118463933467865, -0.01953098177909851, -0.03064831718802452, 0.04439125582575798, -0.021473342552781105, -0.018994146957993507, 0.05914929881691933, 0.005007192958146334, -0.013791742734611034, 0.07308745384216309, 0.007837770506739616, 0.02508476935327053, 0.13071408867835999, 0.07222851365804672, -0.003877402516081929, -0.000041635103116277605, -0.01387958787381649, 0.06477141380310059, 0.04193158075213432, -0.06715299934148788, -0.023093603551387787, -0.005597710143774748, -0.043727535754442215, -0.04806124418973923, 0.002441372722387314, -0.005753879901021719, -0.008355082012712955, 0.02059488743543625, 0.015792667865753174, -0.016632080078125, -0.01791072078049183, -0.06481045484542847, -0.0010876980377361178, -0.013967433013021946, -0.00036175260902382433, -0.0359385684132576, -0.06449811160564423, -0.013577008619904518, -0.009863097220659256, -0.005373215768486261, 0.016993222758173943, -0.05153602361679077, -0.04439125582575798, -0.012552144937217236, -0.024011101573705673, -0.028344811871647835, -0.028383854776620865, 0.012815681286156178, -0.0009589799446985126, -0.07359500229358673, 0.014455463737249374, 0.03437687084078789, 0.07023735344409943, -0.015011819079518318, -0.013957672752439976, 0.0740635097026825, -0.0223713181912899, 0.008369723334908485, 0.0075400713831186295, 0.027134496718645096, -0.05934451147913933, -0.0041604600846767426, 0.03509915620088577, -0.029945552349090576, -0.012737596407532692, 0.0388081856071949, 0.03287373483181, -0.027388272807002068, 0.03306894749403, -0.07984179258346558, -0.002366947941482067, 0.003914004657417536, -0.02352307178080082, -0.018925823271274567, -0.02508476935327053, 0.00032667542109265924, 0.006500566378235817, 0.011234462261199951, -0.06402960419654846, 0.03791021183133125, -0.035528622567653656, -0.010541459545493126, -0.02369876205921173, 0.013742939569056034, 0.05848557874560356, -0.013245148584246635, -0.07410255074501038, 0.0439617894589901, -0.049701027572155, -0.006110141985118389, 0.06274120509624481, 0.03857393190264702, -0.008804070763289928, 0.006798265036195517, 0.07039352506399155, -0.002620723797008395, -0.007876812480390072, -0.08191104233264923, -0.010687868110835552, -0.06781671941280365, -0.03476729243993759, 0.001842315192334354, 0.021746639162302017, -0.010726911015808582, 0.02055584453046322, 0.016153810545802116, -0.00905296579003334, -0.017578858882188797, 0.0018288943683728576, -0.018740372732281685, -0.01107829250395298, 0.02352307178080082, 0.05512792617082596, 0.0179692842066288, -0.0001234564697369933, -0.052160702645778656, 0.002671967027708888, -0.017295802012085915, -0.006895871367305517, -0.0013811263488605618, 0.0072570135816931725, 0.034084051847457886, -0.015978118404746056, 0.01794000156223774, -0.03486489877104759, 0.02334737963974476, 0.019072232767939568, 0.01523631252348423, -0.054620373994112015, 0.006261431612074375, -0.040916480123996735, -0.02510428987443447, 0.06086716800928116, -0.08995378762483597, 0.02619747817516327, -0.01931624859571457, 0.004050653427839279, -0.006144304294139147, 0.042361047118902206, -0.013264669105410576, -0.025494713336229324, -0.01827186346054077, -0.017188435420393944, -0.05649441108107567, -0.004414236173033714, -0.0009852115763351321, 0.00040110008558258414, -0.02894997037947178, -0.015099664218723774, 0.013293951749801636, -0.009814294055104256, 0.06238982081413269, 0.00959955994039774, 0.07234564423561096, -0.0645371526479721, 0.05376144126057625, -0.017481252551078796, -0.010121752507984638, -0.018857499584555626, 0.016222134232521057, -0.07976371049880981, 0.02383541129529476, -0.018633004277944565, -0.012942569330334663, -0.0038383600767701864, -0.03470873087644577, -0.01918935962021351, -0.029398959130048752, 0.06449811160564423, 0.030082201585173607, 0.035528622567653656, 0.03828111290931702, 0.004587486851960421, -0.005739239044487476, 0.015080142766237259, -0.03365458548069, -0.041072648018598557, 0.006075980141758919, -0.012552144937217236, 0.04169732704758644, -0.047944117337465286, -0.05825132131576538, 0.04251721873879433, 0.053527187556028366, -0.012884005904197693, 0.01820353791117668, 0.03367410600185394, -0.07339978963136673, 0.011410153470933437, 0.049505814909935, 0.06531800329685211, 0.03728553280234337, -0.004321510437875986, -0.07156479358673096, -0.0009815513622015715, -0.009379946626722813, 0.03867153823375702, -0.0009278680081479251, 0.02348402887582779, -0.010687868110835552, 0.026763593778014183, -0.018633004277944565, -0.04560157284140587, 0.008203793317079544, -0.007442465517669916, 0.02639269083738327, -0.01671992614865303, -0.029477043077349663, -0.018837977200746536, 0.002308384282514453, -0.003789556911215186, -0.013850306160748005, -0.07367308437824249, -0.010892841033637524, 0.019072232767939568, -0.037871167063713074, -0.02340594306588173, 0.05098942667245865, -0.001854515983723104, -0.010746431536972523, -0.002620723797008395, 0.009174973703920841, 0.04267338663339615, -0.08261380344629288, 0.013498923741281033, -0.01458235178142786, -0.008789429441094398, 0.07261893898248672, 0.057704728096723557, 0.009497073478996754, 0.06547417491674423, 0.08815783262252808, 0.007535191252827644, 0.09081272035837173, -0.0261389147490263, -0.030804486945271492, 0.03183910995721817, 0.09768418967723846, -0.008135468699038029, 0.010053428821265697, 0.026724550873041153, 0.028657151386141777, -0.006715300027281046, 0.03041406162083149, 0.021063396707177162, -0.00261584366671741, -0.05005240812897682, -0.03345937281847, -0.056064944714307785, 0.08300422877073288, 0.0026695269625633955, -0.03634851425886154, 0.0010334046091884375, 0.03328368067741394, -0.007920735515654087, 0.025377586483955383, 0.017647184431552887, -0.016856573522090912, 0.0021339133381843567, 0.0522778294980526, -0.01447498518973589, -0.007852410897612572, 0.029516085982322693, 0.03228810057044029, -0.10065141320228577, 0.019726194441318512, -0.03982328996062279, -0.05692388117313385, 0.012893766164779663, 0.042282965034246445, 0.011898184195160866, 0.05274633690714836, 0.015148467384278774, -0.053214848041534424, 0.032678522169589996, -0.012210523709654808, 0.05372240021824837, -0.008525893092155457, 0.020341111347079277, -0.03781260550022125, 0.010238880291581154, 0.026978326961398125, -0.08409741520881653, -0.02369876205921173, 0.035255324095487595, 0.029984595254063606, 0.042126793414354324, -0.04462550953030586, 0.04810028895735741, 0.0011676129652187228, -0.019921405240893364, -0.008774789050221443, -0.0047143748961389065, 0.024342961609363556, 0.0018935584230348468, 0.019872602075338364, 0.008286758325994015, 0.014065039344131947, -0.0580170676112175, -0.03982328996062279, 0.01654423400759697, -0.06574746966362, -0.009467791765928268, 0.00015090819215402007, -0.046421464532613754, 0.05715813487768173, -0.05161410570144653, -0.06445907056331635, 0.026041308417916298, 0.029672255739569664, -0.06820714473724365, 0.06496661901473999, -0.02209802158176899, 0.04048701003193855, -0.018584202975034714, 0.016954179853200912, 0.017100589349865913, 0.03349841386079788, 0.05567452311515808, -0.026880720630288124, -0.02496764063835144, 0.003765155328437686, 0.05567452311515808, -0.04849071055650711, 0.014094321057200432, 0.007388782221823931, -0.025455672293901443, 0.017354365438222885, -0.020419197157025337, -0.02615843527019024, -0.06570842862129211, 0.02094626985490322, 0.017120109871029854, -0.010111992247402668, 0.08643996715545654, -0.014416421763598919, -0.04716327041387558, 0.021512385457754135, -0.02477242983877659, 0.00164710299577564, -0.036504682153463364, -0.08113019168376923, 0.09284292906522751, 0.04122881963849068, -0.04556252807378769, -0.009814294055104256, -0.0031014338601380587, 0.05434707924723625, 0.03597760945558548, -0.020165421068668365, 0.0069251530803740025, -0.08542486280202866, 0.015812188386917114, -0.027056412771344185, -0.07195521891117096, 0.019921405240893364, 0.007369260769337416, -0.03322511911392212, 0.022800786420702934, -0.009272580035030842, -0.0153436791151762, -0.04595295339822769, -0.006422481499612331, -0.013537966646254063, -0.010922122746706009, 0.014338336884975433, -0.04977911338210106, 0.023854931816458702, -0.012805921025574207, 0.0006097331061027944, 0.014865409582853317, -0.014972776174545288, 0.024596737697720528, -0.04431317001581192, -0.03718792647123337, -0.03316655382514, 0.06348300725221634, 0.03847632557153702, -0.006407840643078089, -0.022683657705783844, 0.001825234154239297, -0.003428414463996887, -0.04669475927948952, 0.024479610845446587, 0.04958390071988106, 0.030999697744846344, 0.004382513929158449, -0.03572383522987366, 0.04622625187039375, -0.026900243014097214, 0.019862841814756393, 0.025787532329559326, 0.014201687648892403, -0.010736671276390553, 0.0417754128575325, 0.02207850106060505, -0.06777767837047577, 0.007930495776236057, -0.01512894593179226, 0.00450452184304595, -0.0032673643436282873, -0.017510535195469856, -0.013479403220117092, -0.03765643388032913, 0.0061150225810706615, 0.022917913272976875, -0.008535653352737427, -0.00008029626769712195, 0.015353440307080746, -0.022605573758482933, 0.04892018064856529, -0.002166855614632368, -0.006193107459694147, -0.006651856005191803, -0.0038505608681589365, -0.03716840595006943, 0.03420117869973183, -0.017403168603777885, -0.0016556435730308294, 0.005788041744381189, 0.0005600150325335562, 0.011937226168811321, -0.02506524696946144, -0.005392737220972776, -0.06754342466592789, -0.016026921570301056, 0.008369723334908485, 0.014065039344131947, -0.002671967027708888, 0.04306381195783615, 0.002786654280498624, -0.03459160402417183, 0.0019130796426907182, 0.01936505176126957, -0.004201942589133978, -0.0017935121431946754, -0.058680787682533264, -0.03611425682902336, -0.01779359206557274, -0.03988185524940491, -0.03709032014012337, -0.06867565214633942, 0.03703175485134125, 0.04806124418973923, 0.009443390183150768, -0.025885138660669327, 0.002426731865853071, -0.039686642587184906, -0.0890948548913002, -0.028012951835989952, 0.04993528127670288, -0.03997946158051491, 0.0016666242154315114, 0.01459211204200983, -0.02358163520693779, -0.03449399769306183, -0.007666959427297115, 0.02764204889535904, 0.03859345242381096, 0.004792459774762392, -0.023191209882497787, -0.0017081068363040686, 0.00035900744842365384, 0.032366182655096054, 0.024069664999842644, 0.0359385684132576, 0.02764204889535904, 0.02650981768965721, 0.012610708363354206, 0.0052658491767942905, 0.049505814909935, 0.04169732704758644, -0.008486851118505001, 0.0009778911480680108, -0.0001991774479392916, 0.03070688061416149, 0.047787949442863464, 0.03449399769306183, -0.03447447717189789, 0.0008125707972794771, 0.028813321143388748, 0.04478168115019798, 0.02904757671058178, 0.07843626290559769, 0.005153602454811335, 0.006061338819563389, 0.027114976197481155, 0.035294368863105774, -0.12282752245664597, 0.0017813113518059254, -0.0036285067908465862, -0.07675743848085403, -0.00023943997803144157, -0.007583994418382645, 0.0034454953856766224, 0.014055279083549976, 0.028442418202757835, 0.011049010790884495, 0.011907944455742836, -0.025963224470615387, 0.00452892342582345, -0.05294154956936836, 0.002033867174759507, -0.05259016901254654, -0.03285421431064606, 0.00017142071737907827, 0.040799349546432495, 0.08159869909286499, -0.05914929881691933, 0.03988185524940491, 0.02627556398510933, 0.005827084183692932, 0.001151141943410039, 0.011634647846221924, 0.0061150225810706615, -0.04419604316353798, 0.08878251165151596, -0.009536116383969784, -0.01827186346054077, 0.020536324009299278, 0.03511867672204971, 0.017676465213298798, -0.004094575997442007, -0.017432449385523796, 0.02352307178080082, -0.032600440084934235, 0.061843227595090866, -0.014836127869784832, 0.02772013284265995, 0.000777188572101295, 0.0024450328201055527, 0.0605938695371151, -0.02649029716849327, -0.05368335545063019, -0.04942772909998894, -0.005290250759571791, 0.004067734349519014, 0.0235621128231287, -0.08519060909748077, -0.014299293980002403, -0.01306945737451315, -0.03295182064175606, -0.021570948883891106, 0.04888113588094711, -0.04767082259058952, -0.013020654208958149, -0.00967276468873024, -0.06914416700601578, 0.02223467081785202, -0.02756396308541298, -0.003116074949502945, 0.033849798142910004, -0.045289233326911926, 0.011663929559290409, 0.02086818404495716, 0.018779413774609566, 0.027368752285838127, 0.028012951835989952, -0.08807975053787231, -0.009726447984576225, 0.06543513387441635, 0.016924899071455002, -0.04380561783909798, -0.009087128564715385, 0.01246429979801178, 0.09534164518117905, -0.01946265622973442, -0.04876400902867317, 0.053253889083862305, -0.03037501871585846, 0.02069249376654625, 0.0025353184901177883, -0.00038554411730729043, 0.06004727631807327, 0.02383541129529476, -0.018379230052232742, -0.005993014667183161, -0.04868592321872711, -0.051926448941230774, -0.00018423152505420148, -0.05032570660114288, -0.025514235720038414, -0.028715714812278748, -0.04029180109500885, -0.04743656516075134, 0.04115073382854462, -0.013303712010383606, -0.018691569566726685, 0.004772938322275877, 0.04747560992836952, -0.017149392515420914, 0.01311826054006815, 0.04485976696014404, 0.0714867115020752, -0.04275147244334221, 0.05013049393892288, -0.04329806938767433, -0.011790817603468895, 0.016339261084794998, -0.03843728452920914, 0.01786191761493683, 0.008442928083240986, 0.038046859204769135, 0.029769862070679665, 0.008272117003798485, -0.015490088611841202, 0.02082914300262928, -0.050403792411088943, 0.026021787896752357, -0.03058975376188755, -0.017559338361024857, 0.011946987360715866, 0.014650676399469376, -0.018730610609054565, 0.015031339600682259, -0.04150211438536644, 0.023249773308634758, 0.036641329526901245, -0.0014836128102615476, -0.018759893253445625, 0.00623214989900589, -0.03201480209827423, -0.04333711043000221, 0.06340492516756058, -0.025748489424586296, -0.011956747621297836, -0.03876914456486702, -0.04743656516075134, 0.0441570021212101, -0.0029281831812113523, -0.01321586687117815, -0.04290764406323433, 0.033849798142910004, -0.01929672621190548, 0.017578858882188797, 0.033771712332963943, 0.03230762109160423, 0.013742939569056034, -0.038203027099370956, -0.021297652274370193, -0.039589036256074905, -0.0057636406272649765, -0.0006551809492520988, -0.00591004965826869, 0.007935375906527042, 0.011810338124632835, 0.07144767045974731, 0.006300474051386118, 0.03316655382514, -0.032502833753824234, 0.09409228712320328, 0.024596737697720528, -0.06898799538612366, -0.0007180148968473077, -0.016309980303049088, 0.015255833975970745, 0.07785062491893768, 0.0045630852691829205, 0.057626642286777496, -0.05735334753990173, 0.03617282211780548, 0.04052605479955673, 0.006212628446519375, -0.001497033634223044, 0.01522655226290226, -0.005363455507904291, -0.023972058668732643, -0.01955050230026245, 0.009658124297857285, -0.03634851425886154, 0.02379636839032173, -0.003782236482948065, 0.03457208350300789, 0.03506011143326759, 0.018398750573396683, 0.0578218549489975, 0.02194185182452202, -0.021063396707177162, -0.009633722715079784, -0.0074961488135159016, -0.0073399790562689304, 0.0556354783475399, -0.031214432790875435, 0.05013049393892288, 0.00835020188242197, 0.03459160402417183, -0.057704728096723557, -0.0024840752594172955, 0.058719832450151443, 0.06566938757896423, 0.033888839185237885, -0.03486489877104759, 0.07628893107175827 ]
18,598
pygal.graph.graph
_compute_secondary
Compute secondary axis min max and label positions
def _compute_secondary(self): """Compute secondary axis min max and label positions""" # secondary y axis support if self.secondary_series and self._y_labels: y_pos = list(zip(*self._y_labels))[1] if self.include_x_axis: ymin = min(self._secondary_min, 0) ymax = max(self._secondary_max, 0) else: ymin = self._secondary_min ymax = self._secondary_max steps = len(y_pos) left_range = abs(y_pos[-1] - y_pos[0]) right_range = abs(ymax - ymin) or 1 scale = right_range / ((steps - 1) or 1) self._y_2nd_labels = [(self._y_format(ymin + i * scale), pos) for i, pos in enumerate(y_pos)] self._scale = left_range / right_range self._scale_diff = y_pos[0] self._scale_min_2nd = ymin
(self)
[ 0.03370070457458496, -0.00056207284796983, 0.015198019333183765, 0.03185904026031494, -0.003362755523994565, -0.016841746866703033, -0.004556823987513781, 0.01231504324823618, -0.011290940456092358, -0.02869207039475441, 0.027900326997041702, 0.025938183069229126, 0.05511218309402466, -0.04499164596199989, 0.01687617041170597, 0.045473575592041016, -0.010051690973341465, -0.040516577661037445, 0.027383973821997643, 0.012504372745752335, -0.02421700209379196, -0.04760783910751343, 0.003984531853348017, -0.04870939254760742, -0.005348566919565201, 0.0036101751029491425, -0.04691936820745468, -0.015559467487037182, -0.03313271328806877, -0.06196248158812523, -0.029242848977446556, -0.0130035150796175, -0.008248754777014256, -0.022237645462155342, 0.0151033541187644, 0.0028657647781074047, -0.0012370981276035309, 0.06378693133592606, -0.07876119762659073, 0.04313277080655098, 0.014346035197377205, -0.05962167680263519, 0.0036919310223311186, 0.008214331232011318, 0.01339938584715128, -0.0024462270084768534, -0.09445835649967194, -0.05944955721497536, 0.010525016114115715, -0.0047547598369419575, 0.017710942775011063, -0.09349449723958969, 0.019053462892770767, 0.043201617896556854, -0.007052535191178322, 0.06523272395133972, 0.03993137553334236, 0.08385588973760605, -0.01817566156387329, -0.02549067512154579, 0.02506038174033165, 0.011858929879963398, -0.037865959107875824, -0.0028722190763801336, -0.007663554046303034, -0.0004044772940687835, 0.003689779667183757, -0.004767668433487415, -0.05115346983075142, 0.08096430450677872, -0.04691936820745468, -0.02411373145878315, 0.004154498223215342, -0.05091250315308571, -0.0228916946798563, -0.019690299406647682, 0.0008977029356174171, 0.02590375952422619, 0.044475290924310684, 0.007250470574945211, -0.03419984504580498, 0.061893634498119354, 0.05779722332954407, -0.008382146246731281, 0.023666225373744965, -0.0052883257158100605, 0.03827904164791107, 0.07456151396036148, -0.025129228830337524, 0.007766824681311846, -0.01677289977669716, 0.021721292287111282, 0.06647197157144547, 0.046368587762117386, -0.004991421941667795, 0.007474224083125591, -0.054492559283971786, -0.003119638655334711, 0.00903619546443224, -0.03676440566778183, 0.042306605726480484, -0.019001826643943787, 0.03869212791323662, 0.021549172699451447, 0.002650617156177759, 0.004629974253475666, 0.015895096585154533, -0.000641139573417604, -0.08488859981298447, 0.029432177543640137, 0.010697133839130402, -0.02506038174033165, -0.058692239224910736, 0.020826278254389763, -0.06079207733273506, -0.00692344643175602, -0.026592230424284935, -0.027315126731991768, 0.03724633529782295, 0.023235930129885674, -0.06778007000684738, 0.0092771602794528, -0.00830469373613596, -0.03648901730775833, -0.08034468442201614, -0.02774542197585106, 0.04960440844297409, 0.05714317783713341, -0.058451272547245026, -0.021583598107099533, 0.03889866918325424, -0.05129116401076317, 0.00901037734001875, 0.04609319940209389, 0.004223345313221216, -0.056144893169403076, 0.06199690327048302, 0.033958882093429565, -0.01155772339552641, -0.0205853134393692, 0.019707510247826576, 0.05280580371618271, 0.01026683859527111, -0.010920886881649494, -0.03666113317012787, 0.02029271237552166, 0.00672551104798913, 0.029087942093610764, 0.03058536909520626, -0.03552515432238579, -0.03717748820781708, -0.009492307901382446, 0.015938127413392067, -0.0033111199736595154, 0.042168911546468735, -0.04213448613882065, 0.016488904133439064, -0.00019215361680835485, 0.03356301039457321, 0.023821130394935608, -0.041514862328767776, -0.056282587349414825, 0.030516522005200386, -0.057074327021837234, 0.008025001734495163, -0.004866636358201504, 0.02907072938978672, -0.04196237027645111, 0.014690271578729153, 0.03478504717350006, -0.022168798372149467, -0.026488959789276123, -0.08241009712219238, -0.014354641549289227, -0.015516437590122223, -0.060619961470365524, 0.032771266996860504, -0.025043169036507607, 0.04667840152978897, 0.0788300409913063, 0.05814145877957344, 0.0037822930607944727, -0.010060297325253487, -0.024423543363809586, -0.020395983010530472, 0.08736709505319595, 0.02354574203491211, 0.004716033115983009, -0.01128233503550291, -0.002990550361573696, -0.002015931997448206, -0.01869201473891735, -0.041032932698726654, -0.015111960470676422, 0.027315126731991768, 0.06158382073044777, 0.024716144427657127, 0.07235840708017349, 0.008571476675570011, -0.024974321946501732, -0.0016985895344987512, 0.012865820899605751, 0.003963016904890537, 0.019707510247826576, 0.022099951282143593, 0.01901903934776783, 0.0067814490757882595, 0.053253307938575745, -0.09796956926584244, -0.018537107855081558, -0.061136312782764435, 0.03483668342232704, -0.05686778575181961, -0.03240982070565224, 0.036695558577775955, 0.034475237131118774, 0.0021192028652876616, -0.00486233364790678, -0.055146608501672745, 0.030740274116396904, 0.013907134532928467, -0.026213571429252625, 0.053872935473918915, -0.00028829765506088734, 0.04075754061341286, -0.03213443234562874, 0.03717748820781708, -0.0021235058084130287, 0.0460587777197361, 0.00014119055413175374, 0.00534426374360919, -0.0291223656386137, -0.011359787546098232, -0.026833197101950645, 0.025043169036507607, 0.021394267678260803, 0.02421700209379196, -0.03845116123557091, -0.03519812971353531, 0.0758696123957634, -0.033769551664590836, 0.0015705768018960953, -0.05359754338860512, 0.019380487501621246, -0.05762510746717453, -0.011936383321881294, 0.04003464803099632, 0.007538768462836742, 0.005030148662626743, 0.013795257546007633, 0.023528531193733215, -0.028072446584701538, 0.019707510247826576, -0.00189329800195992, 0.03686767444014549, -0.06006918102502823, -0.07352881133556366, 0.013192844577133656, 0.007956154644489288, 0.005705711897462606, -0.00026637950213626027, 0.054251592606306076, -0.07325342297554016, 0.009380430914461613, -0.021549172699451447, 0.020137805491685867, -0.013958769850432873, 0.026007030159235, -0.030086226761341095, 0.03979368135333061, 0.024475179612636566, -0.0004727866325993091, -0.008605900220572948, 0.03146316856145859, -0.008244452066719532, 0.03285732492804527, 0.02199668064713478, -0.0707060769200325, 0.0712568536400795, -0.010809010826051235, 0.018296143040060997, -0.031032875180244446, -0.026919255033135414, -0.010559439659118652, 0.10685085505247116, -0.07284034043550491, 0.01441488228738308, -0.10671316087245941, 0.0055594113655388355, 0.01087785791605711, -0.06048226356506348, -0.018846921622753143, 0.005701408721506596, 0.06017245352268219, 0.03552515432238579, -0.01068852748721838, 0.024939898401498795, -0.010258233174681664, 0.008864076808094978, -0.041652556508779526, -0.039105210453271866, 0.007405376993119717, -0.028158504515886307, 0.06461309641599655, 0.05204848200082779, -0.008046516217291355, 0.07012087106704712, 0.002228928031399846, 0.028072446584701538, 0.00017709328676573932, -0.032065585255622864, 0.01357150450348854, 0.020981185138225555, 0.005447534844279289, -0.07435497641563416, 0.045611269772052765, 0.03337367996573448, 0.016299573704600334, -0.015094748698174953, 0.028846977278590202, -0.05800376459956169, -0.044096630066633224, 0.0021159755997359753, -0.026041453704237938, 0.05827915668487549, 0.06044784188270569, -0.055284302681684494, -0.02129099704325199, 0.09273717552423477, 0.007943245582282543, 0.0008595142862759531, -0.032444242388010025, -0.024526815861463547, 0.018055178225040436, 0.062272291630506516, -0.045232608914375305, 0.01836499013006687, 0.03158365190029144, 0.05290907248854637, -0.0712568536400795, -0.04664397984743118, -0.018089601770043373, -0.04619647189974785, 0.040378883481025696, 0.021583598107099533, -0.00021474409732036293, -0.0034939954057335854, -0.02703973837196827, -0.056557975709438324, -0.025938183069229126, -0.031876254826784134, 0.018055178225040436, -0.11125707626342773, -0.01043035089969635, -0.025077592581510544, 0.02557673491537571, 0.006105885840952396, -0.07621385157108307, 0.03316713869571686, 0.024750567972660065, 0.011643782258033752, -0.03179019317030907, -0.06220344454050064, 0.001999795902520418, -0.03356301039457321, 0.017185982316732407, -0.008984559215605259, 0.015301289968192577, 0.017642095685005188, -0.015034507028758526, -0.026592230424284935, 0.007031020242720842, 0.038106925785541534, 0.01958702877163887, -0.06733255833387375, 0.04657512903213501, -0.06210017576813698, -0.03714306280016899, 0.00221817079000175, -0.08096430450677872, 0.019328851252794266, -0.014259976334869862, -0.06409674137830734, 0.01907067373394966, 0.05098135024309158, -0.0008154090028256178, 0.014346035197377205, -0.061652667820453644, -0.005654076114296913, 0.0031669712625443935, 0.029845261946320534, 0.011187669821083546, -0.014939842745661736, -0.060619961470365524, 0.016841746866703033, -0.004505188670009375, 0.021463114768266678, 0.044234324246644974, 0.032874539494514465, 0.01741834171116352, -0.02297775261104107, 0.03378676250576973, 0.04685052111744881, 0.0020643402822315693, -0.000530607532709837, -0.032771266996860504, 0.06977663934230804, 0.09163562208414078, -0.008352026343345642, 0.0839935839176178, -0.03562842682003975, 0.007276288233697414, 0.016996651887893677, -0.038485586643218994, -0.05077480897307396, -0.011247911490499973, -0.02043040655553341, 0.04654070734977722, 0.036557864397764206, -0.030981240794062614, -0.00972466729581356, -0.017332281917333603, 0.02747003361582756, -0.05459582805633545, 0.003201394807547331, -0.06402789801359177, -0.04512934014201164, -0.013726410456001759, -0.023717859759926796, -0.010318473912775517, 0.007310712244361639, -0.0061962478794157505, -0.0357661210000515, 0.0017244071932509542, 0.002981944242492318, -0.0037026884965598583, 0.031738560646772385, 0.011635176837444305, 0.016273757442831993, -0.04733245074748993, 0.01788306050002575, -0.005240993108600378, 0.034716200083494186, 0.010774586349725723, -0.014931236393749714, -0.041273895651102066, -0.09170447289943695, -0.01425136998295784, -0.029707565903663635, -0.04240987449884415, -0.04048215225338936, 0.0231670830398798, 0.06344269216060638, 0.04499164596199989, 0.0016921351198107004, -0.044716257601976395, -0.03309829160571098, -0.07046511024236679, 0.018037965521216393, -0.0007395695429295301, -0.03838231414556503, 0.018657591193914413, 0.0031217902433127165, 0.015344319865107536, 0.015705768018960953, -0.013089573942124844, 0.030946817249059677, -0.0419967919588089, -0.0438900887966156, 0.027246279641985893, 0.03488831967115402, -0.04626531898975372, 0.022667940706014633, -0.06017245352268219, -0.00875220075249672, 0.004031863994896412, -0.01396737527102232, -0.022013891488313675, 0.02142869122326374, -0.008915712125599384, 0.015241049230098724, 0.02308102324604988, 0.000398291798774153, 0.02080906555056572, 0.028674859553575516, 0.005499170161783695, -0.032306548207998276, -0.04275410994887352, -0.03934617340564728, -0.004296495579183102, 0.010679922066628933, 0.027160219848155975, -0.008025001734495163, -0.012994908727705479, -0.035043224692344666, -0.021772926673293114, 0.05356312170624733, -0.05573180690407753, 0.04313277080655098, -0.024475179612636566, 0.010783192701637745, -0.04870939254760742, 0.02492268569767475, -0.02676434814929962, 0.008270270191133022, 0.002691495232284069, -0.07111915946006775, 0.032822903245687485, -0.033442527055740356, 0.07580076903104782, 0.02311544679105282, -0.051325589418411255, -0.01512056589126587, -0.03172134608030319, 0.02327035367488861, 0.017676519230008125, -0.004987119231373072, 0.03845116123557091, 0.07903658598661423, 0.002661374630406499, -0.07834811508655548, -0.0349571667611599, -0.02643732540309429, -0.03488831967115402, 0.02920842543244362, 0.018330566585063934, -0.03679882735013962, 0.009079224430024624, -0.006260792259126902, -0.05893320217728615, -0.00876510888338089, -0.03402772918343544, 0.044062208384275436, -0.024767780676484108, -0.06044784188270569, -0.012659278698265553, 0.005055966321378946, 0.028709283098578453, -0.004690215457230806, -0.011428635567426682, 0.046506281942129135, 0.023700648918747902, 0.02024107612669468, 0.023958826437592506, 0.011592146940529346, 0.0011209184303879738, -0.01663520559668541, -0.0034746320452541113, 0.02473335713148117, 0.035490732640028, 0.031600866466760635, 0.05838242545723915, 0.025507887825369835, -0.008287481963634491, 0.0016340452712029219, 0.018898556008934975, -0.037074215710163116, 0.0060026152059435844, -0.019707510247826576, 0.06017245352268219, -0.006815872620791197, 0.021118879318237305, 0.05380408838391304, -0.04870939254760742, -0.03340810537338257, 0.01929442770779133, -0.04946671426296234, 0.023614589124917984, -0.012185954488813877, 0.03438917547464371, 0.00020425565890036523, 0.013296115212142467, -0.008872683160007, -0.05001749098300934, 0.013631745241582394, 0.03893309086561203, 0.046988215297460556, -0.04481952637434006, -0.03328762203454971, -0.021273784339427948, -0.017779789865016937, 0.017710942775011063, 0.09191101044416428, -0.025284133851528168, 0.017762577161192894, 0.03347695246338844, 0.016437269747257233, 0.032719630748033524, -0.02581769973039627, -0.002736676251515746, -0.03586938977241516, 0.031738560646772385, 0.008050819858908653, -0.010628286749124527, 0.004655791912227869, 0.02387276664376259, -0.00421258807182312, 0.02034434676170349, 0.03642017021775246, 0.011024157516658306, -0.037728264927864075, 0.042685262858867645, -0.02278842404484749, -0.007048232015222311, 0.03941502049565315, -0.059346284717321396, 0.06058553606271744, -0.11566329747438431, -0.12144646048545837, -0.00384683720767498, 0.028330622240900993, 0.027762632817029953, 0.018055178225040436, -0.029242848977446556, 0.042031217366456985, -0.011815900914371014, 0.0031712742056697607, -0.011738447472453117, 0.020258288830518723, -0.0058477092534303665, 0.0146988769993186, 0.044062208384275436, 0.027504457160830498, 0.004290041048079729, -0.02769378572702408, 0.027762632817029953, 0.025043169036507607, -0.020791854709386826, 0.028571588918566704, 0.04922574758529663, -0.020757431164383888, 0.009991450235247612, 0.03703979402780533, -0.07710886746644974, 0.013778045773506165, 0.017917484045028687, 0.05294349789619446, -0.038244619965553284, 0.020550889894366264, 0.030602579936385155, 0.007185926660895348, -0.014647241681814194, 0.015482014045119286, 0.05191078782081604, -0.03635132312774658, -0.00018448897753842175, 0.006338245235383511, 0.04963883012533188, 0.015043113380670547, 0.03562842682003975, 0.016179092228412628, -0.036316897720098495, 0.0020578857511281967, -0.008390752598643303, -0.03464735299348831, -0.013296115212142467, -0.0030550945084542036, -0.03827904164791107, 0.02199668064713478, -0.057693954557180405, 0.003061549039557576, -0.005886435508728027, 0.006716905161738396, 0.02067137137055397, 0.02227206900715828, -0.0020901579409837723, 0.003044337034225464, 0.06154939532279968, 0.052564837038517, -0.06764237582683563, 0.11008667200803757, -0.018055178225040436, -0.026781560853123665, 0.004401918035000563, -0.04123947396874428, -0.02987968549132347, -0.012728125788271427, 0.0019481605850160122, 0.016368422657251358, 0.03148038312792778, -0.012487160973250866, 0.014475123956799507, -0.07401073724031448, 0.022237645462155342, 0.014346035197377205, -0.0211360901594162, 0.06079207733273506, 0.012685096822679043, 0.017642095685005188, -0.005869223736226559, 0.02907072938978672, -0.026540596038103104, -0.025421828031539917, -0.04691936820745468, 0.01807239092886448, -0.005916556343436241, -0.0009192177094519138, -0.03814134746789932, 0.036833252757787704, 0.007801248226314783, -0.03044767491519451, -0.0038511401508003473, -0.06344269216060638, 0.011695418506860733, -0.0026828893460333347, 0.04055099934339523, -0.0346817784011364, -0.01568855531513691, 0.0032035461626946926, -0.024664510041475296, -0.006019826978445053, 0.0019761298317462206, 0.04492279887199402, -0.03265078365802765, -0.025834912434220314, -0.031273841857910156, -0.015946732833981514, 0.014716088771820068, 0.019621452316641808, 0.013055150397121906, 0.01314120925962925, 0.042926229536533356, -0.006428607273846865, -0.0019750541541725397, -0.01793469488620758, 0.07012087106704712, 0.05734971910715103, -0.04808976873755455, -0.01760767214000225, -0.019604239612817764, -0.026643866673111916, 0.0007223577122204006, -0.005671287886798382, 0.0636492371559143, -0.029242848977446556, 0.04392451420426369, 0.002738827606663108, -0.008571476675570011, 0.012177348136901855, 0.009320189245045185, -0.0013274600496515632, -0.007233258802443743, 0.002459135837852955, 0.013270298019051552, -0.051463283598423004, 0.025748852640390396, -0.01967308670282364, 0.012710914015769958, 0.04667840152978897, 0.025404617190361023, 0.05542199686169624, 0.04623089358210564, 0.018571531400084496, 0.035938236862421036, -0.03375234082341194, -0.03562842682003975, 0.0744926705956459, -0.003556388197466731, -0.01658356934785843, -0.027676574885845184, 0.05993148684501648, 0.006445819046348333, -0.000022170277588884346, 0.026936467736959457, 0.026041453704237938, 0.012194559909403324, -0.047883227467536926, 0.06685063242912292 ]
18,599
pygal.graph.graph
_compute_x_labels
null
def _compute_x_labels(self): self._x_labels = self.x_labels and list( zip( map(self._x_label_format_if_value, self.x_labels), self._x_pos ) )
(self)
[ 0.03957996144890785, -0.028061440214514732, -0.015184280462563038, 0.035888563841581345, 0.04614244028925896, -0.01109127514064312, 0.026403728872537613, -0.021533139050006866, 0.10458952933549881, -0.030436920002102852, 0.028369056060910225, -0.06514628976583481, 0.10171844810247421, -0.058925606310367584, 0.004661241080611944, -0.02698478288948536, -0.022216729819774628, -0.002200310816988349, 0.007698951754719019, -0.009536104276776314, 0.005272200796753168, 0.02681388519704342, -0.00320433615706861, 0.006387310102581978, -0.0007380653987638652, 0.03353017196059227, -0.005007309373468161, -0.0024609300307929516, -0.000014269308849179652, -0.013389852829277515, -0.038862187415361404, 0.020986264571547508, 0.006934183184057474, -0.11245083808898926, -0.044980332255363464, 0.0013597066281363368, 0.010877653025090694, 0.01780756376683712, 0.040947142988443375, -0.015209915116429329, 0.033513084053993225, -0.08100561797618866, -0.03951159864664078, -0.003595265094190836, -0.03616200014948845, -0.0014483599225059152, -0.031940821558237076, -0.0029394442681223154, 0.039545778185129166, -0.03821277618408203, -0.007874121889472008, -0.053661949932575226, 0.03305165842175484, 0.021652767434716225, 0.01704706810414791, 0.039203982800245285, 0.062035948038101196, 0.05520002916455269, -0.04125475883483887, -0.03252187371253967, 0.007173440419137478, 0.09344698488712311, -0.03807605803012848, -0.02572013810276985, 0.016628367826342583, -0.026369549334049225, -0.004490342922508717, -0.022131280973553658, -0.045800644904375076, 0.0017484994605183601, -0.023994069546461105, -0.01738031953573227, 0.011569789610803127, -0.01594477705657482, -0.014782670885324478, -0.017687935382127762, -0.017756294459104538, 0.045287951827049255, 0.033427633345127106, -0.014381060376763344, -0.026711346581578255, 0.035341691225767136, -0.002894583623856306, 0.007489601615816355, 0.05619123950600624, -0.0425877645611763, 0.011868860572576523, 0.08264623582363129, 0.017790473997592926, 0.055781081318855286, -0.019020939245820045, 0.03582020476460457, 0.02554924041032791, 0.033000390976667404, -0.015030472539365292, 0.06309551745653152, 0.010544401593506336, -0.035170793533325195, -0.01194576546549797, 0.03241933509707451, 0.06302715837955475, -0.025805586948990822, -0.03893054649233818, 0.014338335953652859, -0.03646961599588394, 0.0034200947266072035, 0.0021116575226187706, -0.02741202712059021, -0.014398150146007538, -0.013201864436268806, -0.03705067187547684, -0.0377342626452446, 0.05649885535240173, -0.0025207444559782743, -0.002292168326675892, -0.05639631673693657, 0.001970666693523526, -0.011484340764582157, -0.021857844665646553, 0.005408919416368008, 0.00875851884484291, -0.012663536705076694, -0.009561738930642605, 0.021140072494745255, -0.053149253129959106, -0.006618021987378597, 0.10158172994852066, 0.053730309009552, -0.00934811681509018, -0.06237774342298508, 0.06668437272310257, -0.030522368848323822, -0.07635719329118729, 0.04607408121228218, 0.0385887511074543, -0.061010558158159256, 0.007113626226782799, -0.004990219604223967, -0.0029757600277662277, -0.007002542726695538, 0.026882244274020195, 0.025737227872014046, 0.0391698032617569, 0.06333477050065994, 0.011988489888608456, 0.045493029057979584, 0.025480881333351135, 0.05567854270339012, -0.027292398735880852, -0.04491197317838669, 0.024575121700763702, 0.006541118025779724, -0.020456481724977493, -0.08312474936246872, -0.04159655421972275, -0.018166448920965195, 0.007455422077327967, -0.03612782061100006, 0.055439285933971405, 0.05622541904449463, -0.020217224955558777, -0.04190417006611824, -0.0009474153630435467, 0.015919141471385956, -0.030248932540416718, 0.02184075489640236, -0.05010727047920227, -0.03358144313097, -0.003268422791734338, 0.03510243445634842, 0.04159655421972275, -0.03940906003117561, -0.01585078239440918, 0.02426750585436821, -0.023959890007972717, -0.03375234082341194, -0.05540510639548302, 0.041118040680885315, -0.017910102382302284, 0.06005353108048439, 0.06627421826124191, -0.012535362504422665, -0.03872546926140785, -0.07362282276153564, -0.05171371251344681, 0.03510243445634842, 0.013295858167111874, 0.034658100455999374, -0.01949945278465748, 0.01678217574954033, 0.012313195504248142, -0.036572154611349106, -0.028488684445619583, 0.030573638156056404, 0.0023519827518612146, 0.041664913296699524, -0.0048492285422980785, -0.025104904547333717, -0.013312948867678642, -0.046894390136003494, -0.011347622610628605, -0.007164895534515381, 0.01980707049369812, -0.003917834721505642, -0.04938950017094612, 0.008955051191151142, -0.01200557965785265, 0.031428128480911255, -0.03817859664559364, -0.03684559464454651, 0.015466262586414814, -0.026967693120241165, -0.07649391144514084, 0.05321761593222618, -0.023566823452711105, 0.04385240748524666, -0.004159228410571814, 0.02209710143506527, -0.04176745191216469, -0.024113697931170464, 0.02941153384745121, 0.0019418277079239488, 0.0002542106667533517, -0.02541252225637436, 0.03722156956791878, 0.008292822167277336, 0.027377847582101822, 0.015560256317257881, 0.022250909358263016, 0.009630098007619381, 0.043544791638851166, 0.0081817377358675, -0.028317786753177643, -0.007874121889472008, 0.001745295012369752, -0.023703541606664658, 0.07321266829967499, -0.0037896614521741867, 0.019362734630703926, 0.04474107548594475, -0.02192620374262333, -0.0041335937567055225, -0.008220190182328224, -0.04241686686873436, 0.0417332723736763, -0.009066134691238403, 0.024540942162275314, 0.031428128480911255, -0.055439285933971405, 0.013936725445091724, -0.01980707049369812, -0.026249920949339867, 0.0007882666541263461, -0.0674363225698471, 0.006378765217959881, -0.0786130428314209, -0.05154281482100487, 0.031804103404283524, 0.03616200014948845, 0.012133752927184105, -0.021413510665297508, 0.05103012174367905, -0.012210656888782978, -0.012689171358942986, 0.0036166273057460785, 0.04597154259681702, -0.01852533593773842, 0.036401256918907166, 0.004172045737504959, 0.027018962427973747, 0.04351061210036278, 0.05390120670199394, -0.0188671313226223, 0.04699692875146866, 0.013825641945004463, -0.003056936664506793, -0.030283112078905106, -0.051064301282167435, 0.0030462555587291718, 0.024506762623786926, 0.03896472603082657, -0.06388164311647415, -0.00996334943920374, -0.009279757738113403, -0.0048492285422980785, -0.044604357331991196, -0.015252639539539814, -0.047612160444259644, -0.01366328913718462, -0.06056622415781021, -0.032966211438179016, 0.06405254453420639, 0.05530256778001785, 0.01623530313372612, -0.018081000074744225, -0.045800644904375076, 0.06562480330467224, 0.0024417040403932333, -0.03705067187547684, 0.044604357331991196, -0.011424526572227478, 0.0027792274486273527, -0.022917412221431732, -0.04036609083414078, 0.025532150641083717, -0.018286077305674553, 0.06716288626194, 0.04378404840826988, 0.018251897767186165, -0.020507751032710075, -0.01763666607439518, 0.038349494338035583, 0.05608870089054108, -0.058071114122867584, 0.034948624670505524, -0.017277780920267105, 0.029992586001753807, 0.024660570546984673, -0.003956287167966366, 0.01772211492061615, -0.010450407862663269, -0.015184280462563038, -0.07246071845293045, 0.09795869141817093, -0.02541252225637436, 0.04901352524757385, 0.033632710576057434, -0.04221178591251373, -0.007267434149980545, -0.02852286398410797, 0.02061028964817524, -0.040776245296001434, -0.019482363015413284, -0.009655732661485672, 0.009664277546107769, -0.020456481724977493, 0.014457964338362217, 0.037084851413965225, 0.00990353524684906, -0.010339324362576008, -0.07040994614362717, -0.004238268360495567, -0.09925751388072968, 0.06671854853630066, 0.01402217522263527, -0.011398891918361187, -0.002371208742260933, 0.008878147229552269, -0.039203982800245285, 0.061215635389089584, -0.0411522202193737, 0.06706034392118454, -0.04070788621902466, -0.02435295470058918, 0.06336895376443863, -0.01109127514064312, -0.004095141775906086, -0.03783680126070976, 0.01657709851861, 0.07813452929258347, 0.05834455043077469, -0.05253402143716812, 0.013996540568768978, 0.002935171825811267, -0.04262194409966469, -0.017687935382127762, 0.02278069406747818, 0.04152819514274597, 0.0013105734251439571, 0.021157164126634598, -0.035170793533325195, 0.009553194046020508, -0.07170876860618591, -0.001155697274953127, -0.04122057929635048, 0.05865216627717018, -0.03204336017370224, -0.03489735722541809, -0.06541972607374191, -0.06408672034740448, -0.0007348610670305789, -0.01809808984398842, -0.041118040680885315, 0.05707990750670433, -0.0002695647708605975, 0.05130355805158615, 0.07177712768316269, -0.05759260058403015, 0.054755695164203644, 0.009997528977692127, 0.04508287459611893, -0.016841990873217583, 0.0005719739710912108, -0.014483598992228508, -0.010228240862488747, -0.04255358502268791, 0.04398912563920021, 0.023225028067827225, 0.027514565736055374, 0.009758271276950836, 0.008852512575685978, 0.046723492443561554, -0.03424794599413872, 0.019414003938436508, -0.027172770351171494, 0.04193834960460663, -0.012219201773405075, -0.00009646386752137914, -0.0551658496260643, 0.08579076081514359, -0.021481869742274284, 0.05092758312821388, 0.061728332191705704, -0.06665018945932388, -0.047065287828445435, -0.00904904492199421, -0.060326967388391495, 0.013637654483318329, 0.03711903095245361, -0.0482957549393177, -0.03653797507286072, -0.008826877921819687, 0.036743052303791046, 0.014295611530542374, 0.015714064240455627, -0.0031744290608912706, -0.01203121431171894, -0.006690653972327709, 0.018422797322273254, 0.04627915844321251, -0.056293778121471405, -0.009630098007619381, -0.01349239144474268, 0.007921119220554829, 0.030590727925300598, -0.04419420287013054, 0.0006093578995205462, 0.03575184568762779, -0.05335433408617973, 0.005280745681375265, -0.024934006854891777, -0.00943356566131115, 0.0926266759634018, -0.0052252039313316345, -0.029001377522945404, 0.051406096667051315, -0.09905243664979935, -0.017585396766662598, -0.05813947319984436, -0.00022577217896468937, -0.03506825491786003, 0.008015112951397896, 0.07034158706665039, -0.009484834969043732, 0.005648176651448011, -0.01179195661097765, -0.035375870764255524, -0.027001872658729553, 0.01755121722817421, 0.01302242185920477, -0.007092264015227556, 0.019772889092564583, -0.05619123950600624, 0.02324211783707142, 0.0002603523025754839, -0.05615705996751785, 0.015705520287156105, 0.02295159175992012, -0.0014900162350386381, 0.01304805651307106, 0.043749868869781494, -0.037084851413965225, 0.08100561797618866, -0.020217224955558777, -0.03735828772187233, -0.014030720107257366, -0.020456481724977493, 0.05099594220519066, 0.01866205409169197, -0.04884262755513191, -0.02315666899085045, 0.003580311546102166, 0.055268388241529465, -0.010903287678956985, 0.014611772261559963, 0.02983877807855606, 0.02455803193151951, -0.015782423317432404, -0.02481437847018242, -0.024882737547159195, -0.010339324362576008, 0.031257230788469315, 0.015423538163304329, -0.016098584979772568, -0.00613096309825778, -0.03433339297771454, 0.004930404946208, -0.02724112942814827, 0.03395741805434227, 0.004733872599899769, 0.03766590356826782, -0.010065888054668903, 0.005494368262588978, 0.0025143357925117016, 0.04908188432455063, 0.025480881333351135, 0.05899396538734436, 0.01963617093861103, -0.012757530435919762, -0.040605347603559494, -0.04412584379315376, -0.07047830522060394, -0.012748985551297665, 0.021772395819425583, -0.015902051702141762, -0.011715052649378777, -0.05957501754164696, 0.04067370668053627, 0.016303662210702896, 0.045493029057979584, -0.012415734119713306, -0.006669291760772467, -0.00030414489447139204, -0.0543113611638546, -0.02604484371840954, 0.06675273180007935, -0.017354683950543404, -0.027018962427973747, -0.049150243401527405, 0.023566823452711105, -0.04122057929635048, -0.03711903095245361, 0.05653303489089012, 0.009869354777038097, -0.013646199367940426, 0.043920766562223434, 0.02397697977721691, -0.016500195488333702, 0.013620564714074135, 0.02838614583015442, 0.04504869505763054, -0.04142565652728081, 0.022900322452187538, -0.03735828772187233, 0.018456976860761642, 0.005421736743301153, 0.02349846437573433, 0.022934501990675926, 0.02078118734061718, -0.012535362504422665, -0.005520002916455269, -0.011262173764407635, 0.00898923072963953, 0.013987995684146881, 0.059096504002809525, 0.05523420870304108, 0.003364552976563573, 0.05588361993432045, 0.015209915116429329, 0.00960446335375309, -0.019516542553901672, -0.026574626564979553, 0.11046841740608215, -0.052636560052633286, -0.06053204461932182, -0.01332149375230074, -0.08996066451072693, -0.020165955647826195, 0.006182232405990362, -0.013782917521893978, 0.02566886879503727, -0.012441368773579597, -0.04508287459611893, -0.041801631450653076, -0.02278069406747818, -0.018422797322273254, 0.0004865250375587493, -0.060326967388391495, 0.005169662181288004, -0.015184280462563038, -0.04084460437297821, 0.0016587779391556978, 0.04067370668053627, -0.06323223561048508, 0.052841637283563614, 0.03817859664559364, 0.01826898753643036, -0.007049539592117071, 0.006784647703170776, -0.008741429075598717, -0.07006815075874329, 0.011313443072140217, 0.035375870764255524, 0.025053635239601135, 0.01627802662551403, -0.03547840937972069, 0.032316796481609344, 0.0157226100564003, 0.008506444282829762, -0.02809561975300312, 0.059096504002809525, 0.044809434562921524, -0.008792698383331299, 0.02821524813771248, 0.005468733608722687, -0.06008771061897278, 0.004558701999485493, 0.0032556054648011923, -0.035888563841581345, -0.024250416085124016, 0.025993574410676956, 0.018884221091866493, 0.024318775162100792, -0.000007697916771576274, -0.031428128480911255, -0.02821524813771248, 0.01963617093861103, 0.00023538518871646374, -0.02703605219721794, -0.006921365857124329, -0.02120843343436718, -0.01670527271926403, -0.04679185152053833, 0.0048406836576759815, -0.0024331591557711363, 0.020336853340268135, 0.03441884368658066, -0.010441862978041172, 0.05731916427612305, 0.048637550324201584, 0.034572649747133255, 0.005156844854354858, 0.03476063907146454, -0.06107891723513603, -0.012501182965934277, 0.04122057929635048, 0.004511705134063959, -0.005780622363090515, 0.0011482203844934702, -0.03436757251620293, -0.014731401577591896, -0.05414046347141266, 0.021242612972855568, -0.0017784065566956997, 0.01772211492061615, -0.015466262586414814, -0.046005722135305405, -0.04398912563920021, 0.032197169959545135, 0.032026272267103195, 0.00655393535271287, -0.060019351541996, -0.01958490163087845, -0.004785141907632351, -0.025515060871839523, 0.030881255865097046, -0.06336895376443863, -0.002593375975266099, -0.02086663618683815, -0.08879856020212173, -0.05776349827647209, 0.00655393535271287, 0.022541437298059464, 0.011492885649204254, 0.024113697931170464, 0.03390614688396454, -0.007989478297531605, 0.020883725956082344, 0.005797712132334709, -0.05588361993432045, 0.011903040111064911, -0.023601002991199493, -0.015782423317432404, -0.00306548154912889, -0.027343668043613434, 0.0036315808538347483, -0.01772211492061615, 0.02635245956480503, 0.004994492046535015, -0.022336358204483986, 0.000505217001773417, -0.03862293064594269, -0.023310476914048195, 0.006579570006579161, -0.007476784288883209, -0.045458849519491196, 0.012065393850207329, 0.03561512753367424, 0.021328061819076538, 0.037426646798849106, 0.003954150713980198, 0.05499495193362236, 0.08339818567037582, -0.005058578681200743, -0.038691289722919464, 0.03698231279850006, -0.0188671313226223, -0.02554924041032791, 0.035341691225767136, -0.03306875005364418, -0.016799265518784523, -0.045834824442863464, -0.05776349827647209, 0.02804435044527054, -0.012475548312067986, 0.01992669887840748, -0.04641587659716606, 0.012757530435919762, -0.07068338245153427, 0.05895978584885597, 0.012535362504422665, 0.024079518392682076, -0.050722505897283554, -0.04867172986268997, -0.03616200014948845, 0.0014942887937650084, 0.03344472497701645, -0.013364218175411224, -0.003699940163642168, 0.033137109130620956, 0.03341054543852806, 0.06183087080717087, 0.02226799912750721, 0.044809434562921524, -0.0688718631863594, 0.03216299042105675, 0.020764097571372986, -0.04884262755513191, -0.02660880796611309, -0.0022708061151206493, 0.04610826075077057, 0.0706150233745575, -0.019858339801430702, 0.015218460001051426, -0.00604551425203681, 0.01908929832279682, 0.06453105807304382, 0.014551958069205284, -0.021259702742099762, 0.027394937351346016, 0.034282125532627106, -0.04771469905972481, -0.021789485588669777, 0.015278274193406105, -0.007421242538839579, 0.005178207065910101, 0.05034652724862099, 0.03520497307181358, -0.021413510665297508, 0.003894336521625519, 0.041801631450653076, 0.06969217211008072, 0.008301367051899433, -0.03481190651655197, 0.06794901192188263, -0.029035557061433792, -0.0076049575582146645, 0.0013970904983580112, 0.0029052647296339273, -0.029035557061433792, 0.006630839314311743, -0.041801631450653076, -0.06196758896112442, 0.0354442298412323, 0.009929169900715351, 0.006425762083381414, -0.026079023256897926, 0.08278295397758484 ]
18,600
pygal.graph.graph
_compute_x_labels_major
null
def _compute_x_labels_major(self): if self.x_labels_major_every: self._x_labels_major = [ self._x_labels[i][0] for i in range(0, len(self._x_labels), self.x_labels_major_every) ] elif self.x_labels_major_count: label_count = len(self._x_labels) major_count = self.x_labels_major_count if (major_count >= label_count): self._x_labels_major = [label[0] for label in self._x_labels] else: self._x_labels_major = [ self._x_labels[int( i * (label_count - 1) / (major_count - 1) )][0] for i in range(major_count) ] else: self._x_labels_major = self.x_labels_major and list( map(self._x_label_format_if_value, self.x_labels_major) ) or []
(self)
[ 0.00341106578707695, 0.004255812615156174, -0.03488483279943466, 0.04383273050189018, 0.07370468229055405, 0.0038687260821461678, 0.02393520250916481, -0.026963459327816963, 0.04352477192878723, -0.02165973372757435, 0.02648441307246685, -0.07959011197090149, 0.05789615958929062, -0.10846975445747375, 0.03698921203613281, -0.061181049793958664, -0.014208853244781494, -0.012557854875922203, 0.02169395051896572, -0.0004434920265339315, 0.02304554544389248, 0.0371260829269886, 0.0019001454347744584, -0.007065931800752878, -0.0012895753607153893, 0.023644354194402695, 0.02465377189218998, 0.022001909092068672, -0.009084769524633884, -0.049683939665555954, -0.032592251896858215, 0.06788769364356995, -0.011659643612802029, -0.06213914230465889, -0.03360167145729065, 0.01436283253133297, -0.0018498883582651615, 0.010376484133303165, 0.005834098905324936, -0.0054106563329696655, 0.03408071771264076, -0.07828984409570694, -0.030504979193210602, -0.026330433785915375, -0.03238694742321968, 0.013883786275982857, 0.013250760734081268, 0.0471518374979496, 0.029136275872588158, -0.049547068774700165, -0.032369837164878845, -0.06456858664751053, 0.016937706619501114, -0.005393547471612692, -0.04106110706925392, 0.04893115162849426, 0.0884866863489151, 0.02648441307246685, -0.02845192514359951, -0.01619347371160984, -0.007904263213276863, 0.06415797770023346, -0.02598825842142105, -0.005205350462347269, -0.018648585304617882, -0.0391107052564621, 0.007771669887006283, 0.006236155517399311, -0.04718605428934097, -0.0025342402514070272, -0.023610135540366173, -0.016364561393857002, 0.016663964837789536, -0.02044500969350338, -0.02111225202679634, -0.019606677815318108, -0.036886561661958694, 0.03363588824868202, 0.04058206081390381, 0.0024786365684121847, -0.04003457725048065, 0.037331387400627136, -0.003032533684745431, 0.007420939393341541, 0.023952312767505646, -0.058409422636032104, 0.004542384762316942, 0.085886150598526, -0.03534676879644394, 0.021762385964393616, -0.017570732161402702, 0.03928179293870926, 0.02241251990199089, 0.029940389096736908, -0.019606677815318108, 0.051565904170274734, -0.022070344537496567, -0.028571685776114464, 0.021539971232414246, 0.0332937128841877, 0.059607040137052536, -0.03344769403338432, -0.05467970669269562, -0.004007734823971987, -0.030265456065535545, -0.005556080956012011, -0.007895708084106445, -0.014097646810114384, -0.05868316441774368, 0.009948763996362686, -0.0179471243172884, -0.03028256632387638, 0.03801574185490608, -0.002142876386642456, 0.005072757601737976, -0.03520989790558815, 0.006621103268116713, 0.010171177797019482, 0.0319250114262104, -0.030299674719572067, -0.005141192581504583, -0.0003809379995800555, -0.011710969731211662, 0.011189151555299759, -0.05512453615665436, -0.008503071032464504, 0.06675851345062256, 0.02939290925860405, -0.021420210599899292, -0.021488646045327187, 0.030795829370617867, 0.022788913920521736, -0.03657860308885574, 0.02133466675877571, 0.030299674719572067, -0.09539863467216492, -0.03575738146901131, -0.04934176430106163, 0.00483323447406292, -0.05088155344128609, 0.0006501341704279184, 0.02384965866804123, 0.03924757242202759, 0.05645902082324028, 0.011214814148843288, 0.05423487722873688, 0.05526140704751015, 0.0324896015226841, -0.033259496092796326, -0.028058422729372978, 0.025474995374679565, 0.042121849954128265, 0.034611091017723083, -0.08629675954580307, -0.02254939079284668, 0.008485961705446243, -0.015004412271082401, -0.07137788832187653, 0.034833505749702454, 0.04420912265777588, -0.03454265370965004, -0.016313236206769943, 0.006689538713544607, 0.003973517566919327, -0.03794730454683304, 0.017964234575629234, -0.07028292864561081, -0.0898553878068924, -0.04249824583530426, 0.0507446825504303, 0.04410647228360176, 0.009059106931090355, -0.0413348451256752, 0.015235381200909615, -0.0026112296618521214, -0.013096782378852367, -0.047494012862443924, 0.004133912269026041, -0.0020680255256593227, 0.059880778193473816, 0.060599349439144135, -0.012746051885187626, -0.019658004865050316, -0.0716516301035881, -0.03917913883924484, 0.053482089191675186, -0.004061200190335512, -0.004764799028635025, -0.02540655992925167, 0.01199326477944851, 0.021197795867919922, -0.002339627593755722, -0.004418346099555492, 0.07452590763568878, -0.011154933832585812, 0.012267005629837513, -0.003609955543652177, -0.0103337112814188, -0.003257086733356118, -0.04143749922513962, 0.000467283942271024, 0.02188214845955372, 0.03301997110247612, 0.014345724135637283, 0.010034307837486267, 0.006402966100722551, 0.030881373211741447, 0.015132728032767773, -0.04003457725048065, -0.015902623534202576, -0.009444054216146469, -0.004210901912301779, -0.09902570396661758, 0.03976083919405937, -0.03685234114527702, 0.0035265502519905567, 0.02922181971371174, 0.009615141898393631, -0.01994885317981243, -0.0636104941368103, -0.01326787006109953, 0.04311416298151016, 0.037160299718379974, -0.03798152133822441, -0.0122841140255332, -0.02925603836774826, 0.032318513840436935, 0.03159994259476662, -0.00014128121256362647, 0.03668125346302986, 0.006355917081236839, -0.035449422895908356, -0.0201712679117918, 0.0001634691871004179, 0.009178868494927883, -0.017476633191108704, 0.06888000667095184, 0.0070017739199101925, -0.0019568183925002813, 0.045920003205537796, -0.0009532805997878313, -0.025868497788906097, -0.008331982418894768, -0.05112107843160629, 0.03163415938615799, -0.0117879593744874, 0.007224188186228275, 0.013909449800848961, -0.04756244644522667, 0.010025753639638424, -0.05998343229293823, -0.03341347351670265, 0.0371260829269886, -0.0710357129573822, -0.00445256382226944, -0.06672430038452148, -0.04585156962275505, 0.03681812435388565, 0.0034281746484339237, 0.017288437113165855, -0.05009454861283302, 0.08102724701166153, -0.015483458526432514, 0.005145469680428505, -0.012669062241911888, 0.008105291053652763, -0.021574189886450768, 0.07336250692605972, 0.02188214845955372, 0.058135684579610825, 0.019572461023926735, 0.020924055948853493, -0.02165973372757435, 0.005855484865605831, 0.01174518745392561, -0.016578420996665955, 0.010393592528998852, -0.04092423617839813, 0.019298719242215157, 0.06111261248588562, 0.006240432616323233, -0.06391845643520355, -0.009478271938860416, 0.0009142511989921331, 0.009837556630373001, -0.029204711318016052, -0.02061609737575054, -0.07678426802158356, -0.04396960139274597, -0.05748554691672325, -0.02562897466123104, 0.042703550308942795, 0.0535847432911396, 0.0009709240985102952, 0.002384538296610117, -0.07117258757352829, 0.036304861307144165, -0.020188376307487488, 0.013182326219975948, 0.02720298245549202, -0.00758347287774086, 0.023182416334748268, -0.013738362118601799, -0.05266086757183075, 0.046946533024311066, -0.06196805089712143, 0.04523565247654915, 0.028486141934990883, 0.004022705368697643, 0.00500859972089529, -0.010273830965161324, 0.05385848507285118, 0.07397842407226562, -0.035586293786764145, -0.006839240435510874, 0.0006303521222434938, 0.01969222165644169, 0.027408288791775703, 0.04626217857003212, 0.0120360367000103, 0.006129225715994835, 0.016338897868990898, -0.06675851345062256, 0.08198533952236176, -0.024978838860988617, 0.04427755996584892, 0.060154519975185394, -0.057998813688755035, -0.048109930008649826, -0.0321132056415081, 0.02631332539021969, -0.04208763316273689, -0.034611091017723083, 0.005928197409957647, 0.0055945757776498795, -0.02429448813199997, 0.04992346093058586, 0.011129270307719707, 0.011770850047469139, -0.038768526166677475, -0.05981234461069107, -0.017391089349985123, -0.0832856073975563, 0.05628793314099312, -0.02711743861436844, -0.02094116434454918, 0.05758820101618767, 0.010932519100606441, -0.06152322515845299, 0.011257587000727654, -0.029940389096736908, 0.01411475520581007, -0.03784465417265892, -0.0044782268814742565, 0.0629945769906044, -0.0007554601761512458, -0.023096872493624687, -0.052763521671295166, 0.021351775154471397, 0.08992382138967514, 0.07014605402946472, -0.038768526166677475, 0.03647594898939133, 0.009272966533899307, -0.03931600973010063, -0.013994993641972542, 0.02210456132888794, 0.04472238942980766, 0.01181362196803093, -0.0015440686838701367, -0.048520538955926895, 0.031291984021663666, -0.011223369278013706, 0.015072847716510296, -0.035552073270082474, 0.06634790450334549, -0.056253716349601746, -0.025936931371688843, -0.02523547224700451, -0.08691267669200897, 0.00547053711488843, -0.017433861270546913, 0.010675887577235699, 0.032900210469961166, -0.02080429345369339, 0.04769931733608246, 0.0561852790415287, -0.08930790424346924, 0.042429808527231216, 0.006355917081236839, 0.04971815645694733, -0.01839195378124714, -0.013207988813519478, -0.00487600639462471, -0.036441732197999954, -0.0001610632607480511, 0.054611269384622574, 0.020154159516096115, 0.04157437011599541, 0.007904263213276863, 0.005517586134374142, 0.03815261274576187, 0.01024816744029522, 0.017930015921592712, -0.05875159800052643, 0.009178868494927883, 0.061625875532627106, 0.004747690167278051, -0.057690855115652084, 0.09252435714006424, -0.0070146056823432446, 0.09101878851652145, 0.0539611354470253, -0.04657013714313507, 0.018083995208144188, 0.005372161511331797, -0.03171970322728157, 0.0012788823805749416, 0.025919822975993156, -0.040547844022512436, -0.03028256632387638, 0.027220090851187706, 0.013225098140537739, 0.05868316441774368, 0.05153168737888336, -0.02290867455303669, -0.005812712945044041, 0.011214814148843288, -0.01084697525948286, 0.03276333957910538, -0.056116845458745956, 0.0032399778719991446, -0.03842635080218315, 0.0009564885403960943, -0.00512408372014761, -0.02975219301879406, 0.03349901735782623, 0.0594017319381237, -0.04893115162849426, -0.06491076201200485, -0.034149155020713806, 0.009375618770718575, 0.05269508436322212, 0.003077444387599826, 0.0022626379504799843, 0.00036864104913547635, -0.06864048540592194, -0.002082995604723692, -0.0794532373547554, -0.011839285492897034, -0.06371314823627472, -0.012574964202940464, 0.05851207673549652, -0.019093414768576622, -0.0049187783151865005, -0.0060351272113621235, 0.026638392359018326, -0.031103787943720818, 0.03437156602740288, -0.000157721689902246, 0.027254309505224228, 0.033122625201940536, 0.016082266345620155, 0.012309777550399303, -0.004161714110523462, -0.07021449506282806, 0.0030667514074593782, -0.0007993014878593385, 0.00402484368532896, -0.009093323722481728, 0.05844363942742348, 0.01047058217227459, 0.07801610231399536, -0.004756244830787182, -0.03842635080218315, -0.01878545619547367, -0.011137825436890125, 0.03024834766983986, 0.01149711012840271, -0.07322563976049423, -0.03726295381784439, 0.020068615674972534, 0.06388423591852188, -0.008426081389188766, 0.013695590198040009, 0.020924055948853493, 0.009076215326786041, -0.042156070470809937, -0.0170489139854908, -0.038631659001111984, -0.02626199834048748, 0.03322527930140495, 0.02639886923134327, -0.002476498018950224, 0.04030831903219223, 0.007968421094119549, -0.000025746730898390524, -0.02088983729481697, 0.026415977627038956, 0.0513605996966362, 0.04078736528754234, -0.04342212155461311, -0.00923874881118536, -0.01181362196803093, 0.03767356649041176, 0.02504727430641651, 0.03870009258389473, 0.006013741251081228, -0.0002658546145539731, -0.0036976381670683622, -0.03565472736954689, -0.03623642772436142, -0.04581734910607338, 0.036133773624897, 0.005162578541785479, 0.01911052316427231, -0.04434599354863167, 0.016030939295887947, 0.057417113333940506, 0.05772507190704346, -0.02102670818567276, -0.014559583738446236, -0.009426945820450783, -0.019521133974194527, -0.02831505425274372, 0.06542403250932693, -0.037160299718379974, -0.044859256595373154, -0.02290867455303669, 0.04136906564235687, -0.03575738146901131, -0.012746051885187626, 0.0371260829269886, 0.07076197117567062, -0.03893961384892464, 0.0122841140255332, -0.01828930154442787, 0.024995949119329453, 0.04899958521127701, -0.007147199008613825, 0.01250652875751257, -0.030385218560695648, 0.04917067289352417, -0.008233606815338135, 0.00758347287774086, -0.04058206081390381, 0.048383671790361404, 0.043456338346004486, 0.014388496056199074, -0.029683757573366165, -0.020427899435162544, 0.027545157819986343, 0.02881120890378952, -0.02155708149075508, 0.018631476908922195, -0.009675023145973682, 0.015953950583934784, 0.007750283926725388, -0.0029063564725220203, 0.015620329417288303, -0.0060351272113621235, -0.009136096574366093, 0.11490266025066376, -0.05560358241200447, -0.04003457725048065, -0.010829866863787174, -0.051600124686956406, -0.01606515794992447, 0.005295171868056059, -0.010256722569465637, -0.007348227314651012, -0.029854845255613327, -0.01677517220377922, -0.044448647648096085, -0.008956453762948513, -0.01981198415160179, -0.0043734353967010975, -0.04260089620947838, -0.023832550272345543, -0.022532282397150993, -0.026723936200141907, -0.014131863601505756, 0.029803520068526268, -0.08410683274269104, 0.031343311071395874, 0.03620220720767975, 0.016569867730140686, -0.005633070599287748, -0.017570732161402702, -0.020598988980054855, -0.06487654894590378, -0.014739226549863815, 0.029375799000263214, 0.02643308788537979, 0.012754606083035469, 0.014995858073234558, -0.026552848517894745, 0.019623786211013794, 0.02894807979464531, -0.024037856608629227, 0.043456338346004486, 0.0652187243103981, -0.02008572407066822, 0.057827726006507874, 0.042703550308942795, -0.05139481648802757, 0.01386667788028717, -0.04013723134994507, -0.009632251225411892, -0.05875159800052643, 0.03344769403338432, 0.06258396804332733, -0.01106938999146223, -0.017014695331454277, -0.0157486442476511, 0.011257587000727654, 0.009905992075800896, -0.009255858138203621, -0.004781907889991999, -0.049991898238658905, 0.024585336446762085, -0.0017151565989479423, -0.005782772321254015, -0.02850325033068657, -0.020838512107729912, 0.027579376474022865, 0.015149837359786034, -0.022737586870789528, 0.04787040501832962, 0.028776992112398148, 0.04557782784104347, -0.020068615674972534, 0.01811821386218071, -0.024705098941922188, 0.011462892405688763, 0.008755424991250038, -0.030710285529494286, -0.021180687472224236, 0.03360167145729065, -0.01955535262823105, -0.004854620434343815, -0.011189151555299759, 0.009435500018298626, -0.009923100471496582, 0.0013344859471544623, -0.04934176430106163, -0.04017144814133644, -0.034782178699970245, 0.025526320561766624, 0.04003457725048065, -0.01767338439822197, -0.041813891381025314, -0.018905216827988625, 0.0048717292957007885, -0.011462892405688763, 0.026826588436961174, -0.04307994246482849, -0.005059925839304924, -0.015363696962594986, -0.07322563976049423, -0.027630703523755074, 0.0168607160449028, 0.03798152133822441, 0.017604948952794075, 0.006261818576604128, 0.018905216827988625, -0.014602355659008026, -0.0012136551085859537, 0.0017867997521534562, -0.033037081360816956, 0.03969240188598633, -0.013764024712145329, 0.005757109262049198, 0.003389679826796055, 0.0057913269847631454, 0.021539971232414246, -0.02590271458029747, 0.051429037004709244, 0.0340978279709816, -0.02232697606086731, 0.02886253595352173, -0.056116845458745956, -0.03125776723027229, -0.00411466509103775, -0.03182235732674599, -0.1149710938334465, 0.009332846850156784, 0.044311776757240295, -0.009230194613337517, 0.014935977756977081, 0.015603220090270042, 0.057690855115652084, 0.04571469873189926, -0.01357582863420248, -0.060599349439144135, 0.056390587240457535, -0.03271201625466347, 0.03047076240181923, 0.031172223389148712, -0.00973490346223116, 0.00970924086868763, -0.014944531954824924, -0.06282348930835724, 0.03055630624294281, -0.0051026977598667145, 0.06436328589916229, -0.010692995972931385, -0.00843463558703661, -0.07151476293802261, 0.02003439888358116, 0.009435500018298626, 0.05423487722873688, -0.03421758860349655, -0.03416626155376434, -0.012318331748247147, -0.005440596491098404, 0.02894807979464531, -0.03278044983744621, 0.02465377189218998, 0.056664325296878815, 0.004435454960912466, 0.06241288036108017, 0.04947863146662712, 0.021796604618430138, -0.04841788858175278, 0.04290885478258133, 0.08691267669200897, 0.00606079027056694, -0.01828930154442787, -0.007557809818536043, 0.05803303048014641, 0.0491364561021328, -0.005265231244266033, 0.0022989942226558924, 0.050299856811761856, 0.020342355594038963, 0.07247285544872284, 0.019315829500555992, 0.0014489010209217668, 0.013361968100070953, -0.03086426481604576, -0.0403425358235836, -0.03122354857623577, 0.017014695331454277, -0.01784447208046913, 0.011018063873052597, 0.027305634692311287, 0.0285887960344553, 0.005119806621223688, 0.005547526758164167, -0.02934158220887184, 0.007010328583419323, -0.025509212166070938, -0.0814378634095192, 0.019675113260746002, -0.042121849954128265, -0.007733175065368414, 0.019298719242215157, 0.00831915158778429, -0.02371278963983059, 0.03498748317360878, -0.031428854912519455, -0.05283195525407791, 0.07117258757352829, -0.042429808527231216, -0.00016935032908804715, -0.01753651350736618, 0.05423487722873688 ]
18,601
pygal.graph.graph
_compute_y_labels
null
def _compute_y_labels(self): y_pos = compute_scale( self._box.ymin, self._box.ymax, self.logarithmic, self.order_min, self.min_scale, self.max_scale ) if self.y_labels: self._y_labels = [] for i, y_label in enumerate(self.y_labels): if isinstance(y_label, dict): pos = self._adapt(y_label.get('value')) title = y_label.get('label', self._y_format(pos)) elif is_str(y_label): pos = self._adapt(y_pos[i % len(y_pos)]) title = y_label else: pos = self._adapt(y_label) title = self._y_format(pos) self._y_labels.append((title, pos)) self._box.ymin = min(self._box.ymin, min(cut(self._y_labels, 1))) self._box.ymax = max(self._box.ymax, max(cut(self._y_labels, 1))) else: self._y_labels = list(zip(map(self._y_format, y_pos), y_pos))
(self)
[ 0.06268659234046936, -0.01712782308459282, -0.017234373837709427, -0.01681705377995968, -0.012066724710166454, -0.019480790942907333, -0.0022774944081902504, -0.02628219686448574, 0.06044905260205269, 0.0004250878992024809, -0.022375384345650673, -0.034557536244392395, 0.04943894222378731, -0.05093063414096832, 0.0016770438523963094, 0.03512579947710037, 0.024257756769657135, -0.04453766718506813, -0.013478505425155163, -0.02194918692111969, -0.005300835240632296, -0.014242109842598438, 0.016515163704752922, -0.0036581975873559713, 0.019534064456820488, -0.02395586669445038, 0.0039445492438972, -0.04418250545859337, -0.036084745079278946, -0.022162284702062607, -0.06176316365599632, -0.006037801969796419, -0.0093053188174963, -0.05490848049521446, -0.015458549372851849, -0.023973625153303146, 0.03732782229781151, 0.03105916455388069, -0.014987955801188946, -0.016142241656780243, 0.024364307522773743, -0.05991630628705025, -0.021789362654089928, 0.0077825491316616535, -0.02157626301050186, 0.020297668874263763, -0.05963217467069626, 0.0011354174930602312, 0.013709362596273422, -0.023831559345126152, -0.014446329325437546, -0.08296650648117065, 0.040417756885290146, 0.026317713782191277, 0.027347691357135773, 0.03521459177136421, 0.04276184365153313, 0.06226039305329323, 0.005314153619110584, 0.01708342880010605, -0.03718575835227966, 0.06172764673829079, -0.051534414291381836, -0.021789362654089928, -0.030402109026908875, -0.018575120717287064, 0.0014828131534159184, 0.01441081240773201, -0.03592492267489433, 0.009172131307423115, -0.014002373442053795, -0.027986988425254822, 0.02780940569937229, -0.0004445109807420522, -0.03624457120895386, -0.018362021073698997, -0.07295085489749908, 0.016284307464957237, 0.03949432820081711, 0.0233876034617424, -0.051711998879909515, 0.06471103429794312, 0.0762183740735054, -0.05309714004397392, 0.03487718477845192, -0.030917098745703697, 0.0462779775261879, 0.10967490077018738, 0.03290602192282677, 0.02592703141272068, -0.01988922990858555, -0.054517801851034164, 0.05842461436986923, 0.032195691019296646, -0.06275762617588043, 0.007445142604410648, -0.03194707632064819, -0.004723692312836647, -0.020297668874263763, -0.0034339998383075, 0.04226461425423622, -0.04950997605919838, 0.012688263319432735, 0.05828254669904709, -0.04929687827825546, 0.030277801677584648, -0.048089317977428436, -0.016923604533076286, -0.04254874587059021, 0.01748298853635788, -0.007591648027300835, -0.00729419756680727, 0.015378637239336967, -0.02006681263446808, -0.009500659070909023, -0.014739340171217918, -0.05029134079813957, -0.04514145106077194, -0.013567295856773853, 0.011054505594074726, -0.065776526927948, 0.02059955894947052, -0.023920351639389992, -0.013611692003905773, -0.06403622031211853, 0.010814769193530083, 0.01770496740937233, 0.0744425505399704, -0.045105934143066406, -0.041057053953409195, 0.045390065759420395, -0.040240176022052765, -0.004188725259155035, 0.05448228493332863, 0.024186724796891212, -0.05870874598622322, 0.013132219202816486, 0.027969229966402054, 0.024346549063920975, 0.04180289804935455, 0.07241810858249664, 0.02889265865087509, 0.011986812576651573, -0.010068923234939575, 0.0116938017308712, 0.020741626620292664, 0.04482180252671242, 0.009562812745571136, -0.007067780010402203, -0.05725257098674774, -0.041057053953409195, -0.011764834634959698, 0.03125450387597084, -0.014490724541246891, 0.07302188873291016, -0.07167226076126099, 0.012111120857298374, -0.03530338406562805, 0.00397340627387166, 0.053985051810741425, 0.02203797735273838, -0.03375841677188873, -0.026992525905370712, -0.050646502524614334, -0.013593933545053005, 0.0648886114358902, 0.0069834282621741295, -0.0016215493669733405, 0.0006315274513326585, 0.007041142787784338, -0.052884042263031006, -0.07501081377267838, -0.0925559550523758, 0.04531903192400932, -0.0027525273617357016, -0.03322567045688629, -0.01657731831073761, 0.037434373050928116, 0.00012770672037731856, 0.05231577903032303, 0.008759252727031708, 0.019711647182703018, -0.04926136136054993, -0.01978268101811409, -0.027986988425254822, 0.030828306451439857, 0.016719384118914604, 0.018450813367962837, -0.06293520331382751, -0.001661505433730781, -0.06982540339231491, -0.007067780010402203, -0.02853749319911003, 0.024506373330950737, 0.025323251262307167, 0.058850809931755066, 0.005163208581507206, 0.04002707451581955, 0.013167736120522022, -0.06396518647670746, 0.022712791338562965, 0.025269977748394012, 0.03629784658551216, -0.015991296619176865, -0.012812570668756962, -0.011853625997900963, -0.015032351016998291, 0.052706461399793625, -0.043330106884241104, -0.03512579947710037, -0.009562812745571136, 0.036901626735925674, -0.0966048315167427, 0.008337493985891342, -0.006219823844730854, 0.049474459141492844, 0.014854769222438335, -0.003032219596207142, -0.055689845234155655, 0.009784790687263012, 0.04887067899107933, -0.006428483407944441, 0.01124984584748745, -0.02818232960999012, 0.02051076851785183, 0.001322989002801478, 0.06907955557107925, 0.045851778239011765, 0.07330601662397385, -0.01770496740937233, 0.012848087586462498, -0.01259947195649147, 0.00132631859742105, 0.003864637343212962, 0.0013696043752133846, 0.025891516357660294, 0.013718241825699806, -0.008856922388076782, -0.041518766433000565, 0.05519261211156845, -0.026033582165837288, -0.018202196806669235, -0.05640017241239548, 0.037363339215517044, 0.001194241689518094, -0.014446329325437546, 0.052173711359500885, 0.031396571546792984, -0.03885503113269806, -0.013034548610448837, 0.008399647660553455, -0.005278637167066336, 0.05359437316656113, -0.045851778239011765, 0.0181666798889637, -0.06428483128547668, -0.046384524554014206, -0.0005507829482667148, 0.05881529673933983, -0.007844703271985054, 0.013798153027892113, 0.029123514890670776, -0.10086680948734283, 0.03750540688633919, -0.013753757812082767, 0.05860219523310661, 0.009402988478541374, -0.016506284475326538, -0.04180289804935455, 0.04659762606024742, -0.007103296462446451, -0.014171076938509941, -0.03711472451686859, 0.016302065923810005, 0.005434021819382906, 0.047201406210660934, 0.03981397673487663, -0.04745002090930939, 0.014943559654057026, 0.0061177141033113, 0.03459305316209793, -0.049829624593257904, 0.01825547218322754, -0.04230013117194176, 0.06403622031211853, -0.0024350988678634167, -0.03450426459312439, -0.03732782229781151, -0.018379779532551765, -0.006779208779335022, -0.012723780237138271, -0.021984701976180077, 0.032888263463974, 0.041412219405174255, 0.041412219405174255, -0.0010394121054559946, 0.009687121026217937, 0.03921019658446312, -0.002534989034757018, -0.010006768628954887, -0.06506619602441788, 0.028395427390933037, 0.031840525567531586, 0.005789186805486679, 0.029389889910817146, -0.022961406037211418, 0.07085537910461426, -0.028661800548434258, 0.04780518636107445, -0.0016792636597529054, 0.025323251262307167, 0.038428835570812225, 0.06581204384565353, -0.02384931780397892, -0.011587252840399742, 0.03493046015501022, 0.0032342197373509407, 0.010770373046398163, -0.0031631868332624435, 0.002001131884753704, -0.018486328423023224, -0.051996130496263504, -0.014739340171217918, -0.03624457120895386, 0.05625810846686363, 0.04379182308912277, -0.02828887850046158, 0.009385230951011181, 0.042513228952884674, -0.036901626735925674, 0.06115938350558281, -0.06630927324295044, -0.006330812815576792, -0.0031587472185492516, 0.07387428730726242, -0.017234373837709427, 0.02612237259745598, 0.06325485557317734, -0.005371868144720793, -0.06307727098464966, -0.0714946761727333, -0.02871507592499256, -0.09596553444862366, 0.04926136136054993, 0.03260413184762001, 0.018557362258434296, 0.002790263621136546, 0.008887999691069126, -0.020475251600146294, 0.07501081377267838, -0.035179074853658676, 0.020457493141293526, -0.019463032484054565, -0.00920764822512865, -0.011755955405533314, -0.006339692045003176, 0.03487718477845192, -0.07863349467515945, 0.006304175592958927, 0.012741537764668465, -0.011338637210428715, -0.053345758467912674, -0.006646021734923124, 0.020528526976704597, -0.012040087953209877, 0.013229889795184135, 0.019747164100408554, 0.00360048352740705, 0.07007402181625366, 0.026353230699896812, -0.0036249009426683187, 0.028750592842698097, -0.0009578351164236665, -0.014659428037703037, -0.05508606508374214, 0.03567630797624588, -0.012848087586462498, -0.04091498628258705, -0.02393811009824276, -0.04443112015724182, 0.06293520331382751, -0.03198259323835373, -0.04560316354036331, 0.04879964515566826, 0.025678416714072227, -0.005820263642817736, 0.0354987233877182, -0.027418725192546844, -0.002377384575083852, -0.009820307604968548, 0.017829274758696556, 0.009225406683981419, 0.02205573581159115, 0.01681705377995968, 0.0005671538528986275, -0.045922812074422836, -0.008017846383154392, 0.0446087010204792, 0.01967613212764263, 0.007818065583705902, -0.032657407224178314, 0.04705933853983879, -0.0175273846834898, 0.002847977913916111, -0.004577186889946461, 0.00211323075927794, 0.04794725030660629, 0.10065370798110962, -0.012537318281829357, 0.04393388703465462, -0.015067867934703827, 0.018290989100933075, 0.04311700910329819, -0.05945459008216858, -0.044218022376298904, 0.005407384596765041, -0.0757211372256279, 0.00555832963436842, 0.05973872169852257, -0.057217054069042206, -0.030224526301026344, 0.01016659289598465, 0.025554109364748, 0.004790285602211952, 0.010628307238221169, 0.016080087050795555, -0.030277801677584648, -0.015076747164130211, 0.005926812998950481, 0.004020021762698889, -0.02367173507809639, 0.0013618351658806205, -0.047378987073898315, -0.009944614954292774, 0.02583824098110199, -0.08495542407035828, -0.011587252840399742, -0.03558751568198204, -0.039423294365406036, -0.025412043556571007, -0.005957889836281538, 0.007751472294330597, 0.044324569404125214, 0.043862856924533844, -0.014472967013716698, 0.008119955658912659, -0.05274197831749916, -0.009855823591351509, -0.022020218893885612, -0.054695382714271545, -0.047201406210660934, 0.015973538160324097, 0.038251250982284546, 0.002770285587757826, 0.03290602192282677, 0.0043951645493507385, -0.027702856808900833, -0.06240246072411537, 0.03679507598280907, -0.011649406515061855, 0.006139911711215973, -0.004892395343631506, 0.0005061098490841687, 0.057146020233631134, 0.0077781095169484615, -0.047378987073898315, 0.02954971417784691, -0.0337761752307415, 0.004317472223192453, 0.034557536244392395, 0.01499683503061533, -0.04911929368972778, 0.028413185849785805, -0.012199911288917065, -0.04002707451581955, 0.02413344942033291, 0.04180289804935455, 0.03036659210920334, -0.018504086881875992, -0.025998065248131752, 0.04531903192400932, -0.018734944984316826, -0.0018890328938141465, -0.01967613212764263, 0.016639472916722298, 0.03553424030542374, -0.01161388959735632, -0.03441547229886055, 0.001851296634413302, -0.03089934028685093, -0.03322567045688629, 0.05046892166137695, -0.017500746995210648, -0.003964527510106564, -0.03928123041987419, -0.032639648765325546, 0.021292131394147873, -0.03388272598385811, -0.022375384345650673, -0.0186106376349926, 0.028679559007287025, -0.02990487776696682, 0.050895120948553085, -0.019534064456820488, 0.04329459369182587, -0.016595076769590378, 0.02448861487209797, 0.01748298853635788, -0.0019722746219486, 0.029389889910817146, 0.007192087825387716, -0.047556571662425995, -0.012279823422431946, -0.05213819444179535, -0.03375841677188873, 0.02205573581159115, -0.05547674745321274, 0.043685272336006165, 0.05789186805486679, 0.0744425505399704, -0.0368305929005146, 0.00569151621311903, 0.009225406683981419, -0.04911929368972778, 0.01354953832924366, 0.06304175406694412, -0.019942505285143852, -0.0013041208731010556, 0.02990487776696682, 0.015325361862778664, 0.030242284759879112, -0.05224474519491196, 0.04059533774852753, 0.006832483224570751, -0.03878399729728699, 0.022535208612680435, 0.02962074615061283, -0.01616000011563301, -0.007551691960543394, 0.024009142071008682, 0.05121476948261261, 0.006703736260533333, 0.014029010199010372, 0.020457493141293526, 0.016506284475326538, 0.0848843902349472, 0.018362021073698997, -0.000733082415536046, 0.05995182320475578, -0.010557274334132671, 0.021718328818678856, 0.05295507609844208, 0.01812228560447693, -0.03963639587163925, -0.0012275384506210685, -0.0003246428386773914, 0.0005799175705760717, 0.06325485557317734, 0.024790504947304726, 0.006646021734923124, -0.043045975267887115, 0.024080175906419754, 0.04301046207547188, -0.06254452466964722, -0.015121142379939556, 0.03384720906615257, -0.09369248151779175, 0.04112808778882027, 0.00900786742568016, -0.008803647942841053, 0.034379955381155014, 0.004870197735726833, -0.0024972527753561735, -0.09120632708072662, 0.00717876898124814, 0.008852483704686165, -0.02322777919471264, -0.04418250545859337, -0.013078944757580757, -0.011631648056209087, -0.011267604306340218, 0.006357450503855944, 0.037434373050928116, -0.057146020233631134, 0.002001131884753704, 0.008381890133023262, 0.0009095549467019737, 0.01907235197722912, -0.017651692032814026, 0.03036659210920334, -0.059490106999874115, 0.09752826392650604, 0.012182153761386871, 0.00026193406665697694, 0.03397151455283165, 0.0057314722798764706, 0.007582768797874451, 0.01825547218322754, -0.03896158188581467, 0.03169846162199974, 0.011365273967385292, 0.04911929368972778, -0.045105934143066406, 0.035711824893951416, 0.0030233405996114016, -0.012768175452947617, 0.06513722985982895, -0.06694857031106949, -0.08559472113847733, 0.007032263558357954, 0.013798153027892113, 0.03169846162199974, 0.06602513790130615, -0.036724042147397995, -0.01647076942026615, -0.010184351354837418, 0.021292131394147873, -0.018770461902022362, -0.03390048071742058, -0.03651094436645508, 0.00689019775018096, 0.00024153983395081013, -0.0014694944256916642, 0.01084140595048666, -0.042051516473293304, -0.03413134068250656, 0.012848087586462498, -0.003247538348659873, 0.03132553771138191, 0.002109901048243046, -0.004577186889946461, 0.020723868161439896, 0.022162284702062607, -0.08602092415094376, -0.0393877774477005, 0.060662150382995605, 0.0018401977140456438, -0.0536654032766819, 0.022925889119505882, -0.003065516473725438, 0.02258848212659359, -0.053700920194387436, -0.002521670190617442, 0.057217054069042206, -0.025998065248131752, 0.03974294289946556, -0.046029362827539444, 0.011835867539048195, 0.017962461337447166, 0.021007999777793884, 0.036439910531044006, -0.07081986963748932, -0.017003515735268593, -0.005642681382596493, -0.0294431634247303, 0.015041230246424675, -0.025944789871573448, 0.001921219751238823, 0.005269757937639952, -0.06545687466859818, -0.03191155940294266, -0.04848000034689903, 0.024240000173449516, -0.0005782527150586247, 0.027223384007811546, 0.024985846132040024, -0.005189845804125071, 0.062011778354644775, 0.05952562391757965, -0.06506619602441788, 0.09674689918756485, -0.031378813087940216, 0.009553933516144753, -0.0027392087504267693, -0.07295085489749908, 0.0016936922911554575, -0.017962461337447166, 0.013851428404450417, 0.06918610632419586, 0.007724835071712732, -0.019107867032289505, -0.019747164100408554, -0.07135261595249176, 0.02610461413860321, 0.023511910811066628, 0.034095823764801025, 0.047734152525663376, 0.0419449657201767, 0.01647076942026615, -0.006353010889142752, -0.04148325324058533, 0.010006768628954887, -0.012865846045315266, -0.028857141733169556, 0.03578285500407219, -0.007578329648822546, 0.0020089009776711464, -0.027969229966402054, 0.05490848049521446, -0.023725010454654694, -0.0004506153636611998, -0.05362989008426666, -0.046029362827539444, 0.029052482917904854, -0.0016248790780082345, 0.03697265684604645, -0.055689845234155655, 0.016364218667149544, -0.06570549309253693, -0.011995691806077957, -0.001524988911114633, 0.021931428462266922, -0.005802505183964968, -0.07650250196456909, 0.005318593233823776, 0.0043907249346375465, 0.0093053188174963, -0.0037958240136504173, -0.009518417529761791, -0.022517450153827667, 0.03658197820186615, 0.07977002114057541, -0.031858284026384354, 0.003913472406566143, 0.007036703173071146, 0.05043340474367142, 0.019764922559261322, -0.03297705575823784, -0.027969229966402054, -0.01617775857448578, 0.0028679559472948313, 0.07870452851057053, -0.011010109446942806, -0.027844922617077827, -0.07106848061084747, 0.01101898867636919, 0.029105758294463158, -0.005922373384237289, -0.01859287917613983, 0.018734944984316826, 0.01021098904311657, -0.007618285715579987, 0.022357625886797905, 0.06329037249088287, -0.0012719340156763792, -0.059490106999874115, 0.034557536244392395, 0.014659428037703037, 0.05391402170062065, 0.0051987250335514545, 0.0397784598171711, 0.02999367006123066, -0.010956835001707077, 0.011729318648576736, 0.010876922868192196, -0.08381889760494232, 0.06279314309358597, 0.00005754086305387318, 0.011462944559752941, -0.02455964684486389, 0.01404676865786314, -0.04354320839047432, 0.0007469560368917882, 0.04148325324058533, 0.00555832963436842, 0.03125450387597084, -0.049829624593257904, 0.04514145106077194 ]
18,602
pygal.graph.graph
_compute_y_labels_major
null
def _compute_y_labels_major(self): if self.y_labels_major_every: self._y_labels_major = [ self._y_labels[i][1] for i in range(0, len(self._y_labels), self.y_labels_major_every) ] elif self.y_labels_major_count: label_count = len(self._y_labels) major_count = self.y_labels_major_count if (major_count >= label_count): self._y_labels_major = [label[1] for label in self._y_labels] else: self._y_labels_major = [ self._y_labels[int( i * (label_count - 1) / (major_count - 1) )][1] for i in range(major_count) ] elif self.y_labels_major: self._y_labels_major = list(map(self._adapt, self.y_labels_major)) elif self._y_labels: self._y_labels_major = majorize(cut(self._y_labels, 1)) else: self._y_labels_major = []
(self)
[ 0.00200932496227324, 0.018014345318078995, -0.0325540155172348, 0.0114192059263587, 0.05141172930598259, -0.0006999956676736474, 0.00553671270608902, -0.0022412510588765144, -0.0027514889370650053, 0.008644524961709976, 0.014058948494493961, -0.06669355928897858, 0.06254418939352036, -0.0862259715795517, 0.04490092769265175, -0.04355153813958168, -0.0038921444211155176, -0.021236013621091843, -0.003449376206845045, -0.004874668549746275, 0.008745728991925716, -0.0011543603613972664, 0.030782941728830338, -0.006329478695988655, -0.0040376256220042706, -0.010651741176843643, 0.023411903530359268, -0.010339695028960705, -0.034460026770830154, -0.04351780191063881, -0.05404303967952728, 0.05313219875097275, -0.01725531555712223, -0.026802243664860725, 0.015577011741697788, -0.0023614310193806887, 0.008863800205290318, 0.04763343930244446, -0.006228274665772915, -0.010575838387012482, 0.010550537146627903, -0.07003329694271088, -0.0031183541286736727, -0.006249358877539635, -0.02471069060266018, 0.024440811946988106, -0.029973307624459267, 0.014877015724778175, 0.043450333178043365, -0.055055081844329834, -0.021674564108252525, -0.08818258345127106, 0.03886241093277931, 0.018942050635814667, -0.018250489607453346, 0.06622127443552017, 0.08318984508514404, 0.0405491478741169, -0.022585401311516762, -0.00834512896835804, -0.03447689488530159, 0.014573403634130955, -0.039705779403448105, 0.0002174308756366372, -0.017322784289717674, -0.024558883160352707, -0.0038563013076782227, 0.033717863261699677, -0.03805277496576309, 0.0021052579395473003, -0.03203112632036209, -0.02776368334889412, 0.03154197335243225, -0.017044473439455032, -0.036703385412693024, -0.026448028162121773, -0.08096335083246231, 0.013763770461082458, 0.054650261998176575, 0.008391514420509338, -0.06534416973590851, 0.04635151848196983, 0.05373942479491234, -0.026549233123660088, 0.007290918845683336, -0.05262618139386177, 0.018621571362018585, 0.08345972001552582, -0.04662139713764191, 0.006995739880949259, -0.02373238280415535, 0.015248098410665989, 0.049927402287721634, 0.03839012235403061, -0.017272181808948517, 0.04655392840504646, -0.047194886952638626, -0.0007316219853237271, 0.018469765782356262, 0.012296309694647789, 0.0490165650844574, -0.05316593497991562, -0.037884101271629333, 0.015981828793883324, -0.037513021379709244, 0.022163717076182365, -0.025368517264723778, -0.0006377972313202918, -0.09810059517621994, -0.0047565968707203865, -0.014868582598865032, -0.022568535059690475, 0.023023953661322594, -0.013392687775194645, -0.021101074293255806, -0.02897813357412815, -0.020240837708115578, -0.017289049923419952, 0.032705821096897125, 0.0016382428584620357, -0.04712741822004318, 0.016993870958685875, -0.018874581903219223, -0.015332435257732868, -0.0410214327275753, -0.028320306912064552, 0.03154197335243225, 0.056640613824129105, -0.05303099751472473, -0.029163675382733345, -0.0020177585538476706, 0.022501064464449883, -0.00015839510888326913, 0.052120160311460495, 0.01762639731168747, -0.09000425785779953, -0.05019727721810341, -0.020696256309747696, 0.030394991859793663, -0.0405491478741169, 0.0279660914093256, 0.03511785343289375, 0.03508412092924118, 0.027780551463365555, 0.022501064464449883, 0.032182931900024414, 0.06345503032207489, 0.018756510689854622, -0.025351649150252342, -0.025334782898426056, -0.00406081834807992, 0.026481762528419495, 0.06291527301073074, -0.04884789139032364, 0.050332218408584595, -0.016066165640950203, -0.028995001688599586, -0.04432743415236473, 0.02906247042119503, 0.03194678947329521, -0.02747693844139576, -0.04058288037776947, -0.018014345318078995, -0.018014345318078995, -0.02869138866662979, 0.029973307624459267, -0.03903108462691307, -0.051917750388383865, -0.03660218417644501, 0.046790070831775665, 0.011984262615442276, -0.024896230548620224, -0.06638994812965393, 0.03398774191737175, 0.009614397771656513, -0.03508412092924118, -0.02543598599731922, -0.0065698386169970036, 0.009125244803726673, 0.08683319389820099, 0.053671956062316895, 0.0004691235953941941, -0.03435882180929184, -0.05168160796165466, 0.0006356888334266841, 0.0703706443309784, 0.01725531555712223, -0.009032473899424076, -0.03666965290904045, 0.01868904009461403, -0.00875416211783886, -0.0013072207802906632, -0.004710211884230375, 0.054650261998176575, 0.012878233566880226, 0.0031689561437815428, 0.021792635321617126, 0.02621188573539257, 0.005157196894288063, -0.046992480754852295, 0.016352910548448563, 0.022129982709884644, 0.04351780191063881, 0.015897491946816444, 0.04753223434090614, 0.03316124156117439, 0.03263835236430168, 0.034982915967702866, -0.03154197335243225, -0.03704073280096054, -0.015433639287948608, 0.014244490303099155, -0.12043298780918121, 0.017930008471012115, -0.01588062383234501, 0.019313132390379906, 0.03420701622962952, 0.0060553839430212975, -0.02214685082435608, -0.05987914651632309, -0.003213233081623912, 0.0474647656083107, 0.0354214683175087, -0.0214046873152256, -0.008412598632276058, -0.07016824185848236, 0.045002128928899765, 0.05023101344704628, 0.02577333338558674, 0.026599835604429245, -0.010171021334826946, -0.05083823949098587, 0.019920358434319496, -0.007349954452365637, 0.020932400599122047, 0.0037550972774624825, 0.03252027928829193, 0.0017489349702373147, -0.04905029758810997, 0.07522845268249512, -0.016749294474720955, -0.022770943120121956, -0.027713080868124962, -0.022399861365556717, -0.010626439936459064, 0.01803121343255043, 0.029973307624459267, 0.00871199369430542, -0.03277328982949257, 0.00427587702870369, -0.04277563840150833, -0.03481424227356911, 0.055055081844329834, -0.059777941554784775, -0.005949962884187698, -0.05147919803857803, -0.026835978031158447, -0.006042733788490295, 0.008399947546422482, 0.0081385038793087, -0.04024553298950195, 0.08028865605592728, -0.05596591904759407, 0.0228384118527174, -0.04648645967245102, 0.02243359573185444, -0.00275781424716115, 0.04513707011938095, -0.01412641815841198, 0.04847680777311325, -0.00425268430262804, -0.006143937818706036, -0.03127209469676018, -0.005460809450596571, -0.006907186005264521, 0.03940216451883316, 0.05265991389751434, -0.06426466256380081, 0.02840464375913143, 0.04648645967245102, 0.01771073415875435, -0.07360918074846268, 0.008872234262526035, -0.017238447442650795, 0.04446237534284592, -0.021067339926958084, -0.018655305728316307, -0.06126227229833603, -0.036163631826639175, -0.03150823712348938, -0.0010837282752618194, 0.008813198655843735, 0.06935860961675644, 0.02897813357412815, 0.06203816831111908, -0.0702357068657875, -0.004516236949712038, -0.011250532232224941, 0.036939531564712524, -0.0003020312578883022, -0.050129808485507965, 0.027864888310432434, -0.00946259219199419, -0.01771073415875435, 0.04533947631716728, -0.07522845268249512, 0.05738277733325958, 0.009386688470840454, -0.0003254874318372458, 0.006953571457415819, 0.03505038470029831, 0.04969125986099243, 0.04156118631362915, -0.012439682148396969, -0.0610598623752594, 0.01131800189614296, 0.005477676633745432, 0.034088946878910065, 0.05363821983337402, 0.016386644914746284, -0.008054167032241821, -0.011604747734963894, -0.027831152081489563, 0.008922835811972618, 0.022568535059690475, 0.05373942479491234, 0.05846228823065758, -0.03842385858297348, -0.03312750533223152, -0.022011911496520042, 0.059609267860651016, -0.049724992364645004, -0.02632995694875717, 0.007366821635514498, 0.05215389281511307, -0.03435882180929184, 0.04871295019984245, 0.016631221398711205, 0.01003608200699091, -0.05836108326911926, -0.0820428654551506, -0.033717863261699677, -0.08123323321342468, 0.05991288274526596, -0.0024520931765437126, -0.010339695028960705, 0.03277328982949257, 0.010432465001940727, -0.023428769782185555, 0.040650349110364914, -0.02393479086458683, -0.0038204581942409277, -0.01889144815504551, 0.0026376342866569757, 0.019346868619322777, 0.0028716688975691795, -0.01669025793671608, -0.05549363046884537, 0.02051071636378765, 0.041864801198244095, 0.016015563160181046, -0.04871295019984245, 0.02214685082435608, 0.018992653116583824, -0.033194974064826965, -0.0007737904088571668, 0.011824022978544235, 0.0298721045255661, 0.015652915462851524, -0.011166195385158062, -0.043416596949100494, 0.05262618139386177, 0.03586001694202423, 0.02951788902282715, -0.040852759033441544, 0.06676103174686432, -0.047397296875715256, -0.03582628443837166, -0.004849367309361696, -0.052322566509246826, 0.009285484440624714, -0.005102377850562334, -0.0012017997214570642, 0.03316124156117439, -0.005810807459056377, 0.02499743551015854, 0.031120289117097855, -0.08831752091646194, 0.0021674565505236387, -0.013198713771998882, 0.049724992364645004, -0.010154154151678085, -0.01647941581904888, 0.0029538972303271294, -0.02600947767496109, -0.010466200299561024, 0.021623961627483368, 0.038356389850378036, 0.04547441750764847, 0.034780506044626236, -0.007016824092715979, 0.03569134324789047, 0.043619006872177124, 0.02393479086458683, -0.04834187030792236, 0.01814928464591503, 0.10214876383543015, 0.06730078905820847, -0.05697796121239662, 0.08008625358343124, -0.018992653116583824, 0.09270303696393967, 0.04628404974937439, -0.03690579533576965, -0.003961722366511822, 0.021185411140322685, -0.018874581903219223, -0.023985393345355988, 0.06824535876512527, -0.018166152760386467, -0.013367386534810066, 0.03737808018922806, 0.004229492042213678, 0.03427448496222496, 0.03424075245857239, -0.03484797477722168, -0.010736078023910522, 0.011056558229029179, -0.01087101735174656, 0.00067416753154248, -0.04803825542330742, -0.014446898363530636, -0.048375602811574936, -0.023226361721754074, -0.01644568145275116, -0.02690344676375389, 0.039908185601234436, 0.026245620101690292, -0.024929964914917946, -0.07529591768980026, -0.039672043174505234, 0.008762596175074577, 0.03795157000422478, 0.036737121641635895, -0.005119245499372482, -0.04584549739956856, -0.05141172930598259, 0.0055071949027478695, -0.08575368672609329, -0.038693737238645554, -0.06227431073784828, 0.005127679090946913, 0.034578099846839905, -0.0017805612878873944, 0.0042864191345870495, -0.0018975785933434963, 0.034949179738759995, -0.056640613824129105, 0.04952258616685867, -0.010364996269345284, 0.0407852903008461, 0.02848898060619831, 0.04834187030792236, 0.04783584922552109, 0.001570773427374661, -0.06662609428167343, -0.007371038664132357, -0.018655305728316307, 0.007640916388481855, 0.006708994507789612, 0.037310611456632614, -0.0010795113630592823, 0.06541164219379425, 0.004739729687571526, -0.04159492254257202, 0.010373429395258427, 0.03203112632036209, 0.02417093515396118, 0.0034767857287079096, -0.07543085515499115, -0.01721314713358879, 0.03187932074069977, 0.016293874010443687, -0.021472156047821045, 0.03139016777276993, 0.01231317687779665, -0.021961309015750885, -0.07664530724287033, -0.014387862756848335, -0.018385428935289383, -0.024491414427757263, 0.04959005489945412, 0.019852889701724052, -0.017930008471012115, 0.008931269869208336, 0.02197817713022232, 0.017980610951781273, -0.01990349031984806, 0.012448115274310112, 0.0505683608353138, 0.04253949597477913, -0.04932017624378204, -0.017862539738416672, -0.030884146690368652, 0.020628787577152252, 0.01958301104605198, 0.028134765103459358, 0.0020883907563984394, -0.02401912771165371, 0.04851054400205612, 0.0037550972774624825, -0.029011867940425873, -0.049185238778591156, 0.013105942867696285, 0.028185367584228516, 0.046014171093702316, -0.05063582956790924, 0.00974933709949255, 0.08130069822072983, 0.06682850420475006, -0.05083823949098587, -0.006207190454006195, 0.013687866739928722, -0.027240794152021408, -0.002749380422756076, 0.0623755156993866, -0.027207059785723686, -0.03194678947329521, 0.03341425210237503, 0.030968481674790382, -0.01512159314006567, -0.02666730433702469, 0.02531791478395462, 0.06456827372312546, -0.06760440021753311, 0.0005350117571651936, -0.017930008471012115, 0.01503725629299879, 0.03402147442102432, -0.011503542773425579, 0.01823362149298191, -0.005448158830404282, 0.07145015895366669, 0.0037044950295239687, 0.013122810050845146, 0.0005152453086338937, 0.019178194925189018, 0.029888970777392387, 0.0201565008610487, 0.0034472676925361156, -0.044226232916116714, 0.04864548146724701, 0.013932444155216217, -0.020004695281386375, 0.010660175234079361, -0.02580706961452961, 0.031035952270030975, 0.02466008812189102, -0.01249871775507927, 0.042843107134103775, -0.032182931900024414, 0.008973438292741776, 0.09250063449144363, -0.08022119104862213, -0.013603529892861843, 0.030141981318593025, -0.04729609191417694, 0.012009563855826855, -0.007371038664132357, -0.0005268416134640574, -0.023428769782185555, -0.02186010591685772, -0.004406599327921867, -0.06902126222848892, -0.00838308036327362, -0.0018627896206453443, -0.01408424973487854, -0.04395635426044464, -0.0407852903008461, -0.025419119745492935, -0.041662391275167465, 0.010255358181893826, 0.036568447947502136, -0.05734904110431671, 0.009445724077522755, -0.007577663753181696, 0.01592279225587845, 0.03521905839443207, -0.03508412092924118, 0.0035337130539119244, -0.048004522919654846, 0.017558926716446877, 0.015770986676216125, 0.0015528518706560135, 0.014573403634130955, 0.005233100149780512, -0.05023101344704628, 0.023631177842617035, 0.018992653116583824, 0.007362605072557926, 0.03579254820942879, 0.03781663253903389, -0.05478520318865776, 0.04115637019276619, 0.04557562246918678, -0.03505038470029831, 0.041696127504110336, -0.07003329694271088, -0.05495387688279152, -0.06757066398859024, 0.01958301104605198, 0.07502604275941849, 0.014067382551729679, -0.03236847370862961, -0.012861366383731365, 0.018958918750286102, -0.003611724590882659, -0.011157762259244919, -0.026060080155730247, -0.04786958172917366, 0.0459129698574543, -0.005355388391762972, 0.05137799307703972, -0.025098638609051704, -0.049151502549648285, -0.011579446494579315, 0.01522279717028141, -0.028927531093358994, 0.03845759108662605, 0.029450420290231705, 0.016580620780587196, -0.022517932578921318, 0.009142111986875534, -0.02670103870332241, 0.020004695281386375, 0.012152936309576035, -0.03139016777276993, -0.041662391275167465, 0.05026474967598915, -0.012996304780244827, -0.008965004235506058, -0.016260139644145966, 0.0066415248438715935, 0.04081902280449867, -0.03525279462337494, -0.034544363617897034, -0.04628404974937439, -0.012954136356711388, 0.021219145506620407, 0.011908359825611115, -0.005448158830404282, -0.044597312808036804, -0.009479459375143051, 0.00969030149281025, -0.018301092088222504, 0.01631917618215084, -0.02120227739214897, 0.0039933486841619015, -0.00956379622220993, -0.08244767785072327, -0.014573403634130955, 0.00979150552302599, 0.05515628308057785, 0.013131244108080864, 0.013578228652477264, 0.03349858894944191, -0.01502038910984993, -0.006835499778389931, 0.01644568145275116, -0.06645742058753967, 0.07812963426113129, 0.011081858538091183, 0.004739729687571526, -0.010348128154873848, -0.006784897763282061, 0.0034620268270373344, -0.041831064969301224, 0.026835978031158447, 0.08278502523899078, -0.022298656404018402, 0.01900952123105526, -0.04469851776957512, -0.0304118599742651, 0.0011185171315446496, -0.005663217976689339, -0.08615849912166595, 0.03825518488883972, 0.04675633832812309, -0.006789114326238632, -0.030833544209599495, 0.011385471560060978, 0.040076859295368195, -0.00042616453720256686, -0.0356576107442379, -0.01518062874674797, 0.03724314272403717, -0.03012511506676674, 0.02336130104959011, 0.03815397992730141, -0.0005629482911899686, 0.000775371678173542, -0.025655262172222137, -0.06419719010591507, 0.004073468502610922, 0.0008222840842790902, 0.09094883501529694, -0.014092683792114258, -0.017407121136784554, -0.07549832761287689, -0.0227203406393528, 0.005169847514480352, 0.07145015895366669, -0.02779741771519184, -0.061397209763526917, 0.007699952460825443, -0.015290266834199429, -0.0019639937672764063, -0.04004312679171562, 0.026751641184091568, 0.02963596023619175, 0.0201565008610487, 0.058394819498062134, 0.008496935479342937, -0.00406081834807992, -0.02116854302585125, 0.043652743101119995, 0.08683319389820099, 0.0031984741799533367, -0.02344563789665699, -0.033970873802900314, 0.017356518656015396, 0.03903108462691307, 0.0005592585657723248, -0.01216980442404747, -0.023395035415887833, 0.012667391449213028, 0.040717821568250656, -0.02548658847808838, 0.026313090696930885, 0.025469722226262093, -0.038322653621435165, -0.027645612135529518, 0.0047945487312972546, 0.047363560646772385, -0.025739599019289017, -0.020055297762155533, 0.011039690114557743, 0.007379472255706787, 0.05556110292673111, -0.0064475503750145435, -0.016260139644145966, 0.010651741176843643, -0.03187932074069977, -0.06983089447021484, 0.02666730433702469, -0.06406225264072418, 0.04314672201871872, 0.022619137540459633, 0.00012215661990921944, -0.006291527301073074, 0.013907142914831638, -0.019802287220954895, -0.02332756668329239, 0.07603808492422104, -0.04732982814311981, 0.01933000050485134, -0.006894535385072231, 0.05397556722164154 ]